mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
ea8b5c18db
Admins can now edit translations in different languages without having to change their locale. We display a warning when there's a fallback language set.
12 lines
380 B
JavaScript
12 lines
380 B
JavaScript
import RestModel from "discourse/models/rest";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import { getProperties } from "@ember/object";
|
|
|
|
export default RestModel.extend({
|
|
revert(locale) {
|
|
return ajax(`/admin/customize/site_texts/${this.id}?locale=${locale}`, {
|
|
type: "DELETE",
|
|
}).then((result) => getProperties(result.site_text, "value", "can_revert"));
|
|
},
|
|
});
|