mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
24 lines
623 B
JavaScript
24 lines
623 B
JavaScript
import SiteSettingComponent from "./site-setting";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import { url } from "discourse/lib/computed";
|
|
import { alias } from "@ember/object/computed";
|
|
|
|
export default class ThemeTranslation extends SiteSettingComponent {
|
|
@alias("translation") setting;
|
|
@alias("translation.key") settingName;
|
|
@url("model.id", "/admin/themes/%@") updateUrl;
|
|
|
|
type = "string";
|
|
|
|
_save() {
|
|
const translations = {
|
|
[this.get("translation.key")]: this.get("buffered.value"),
|
|
};
|
|
|
|
return ajax(this.updateUrl, {
|
|
type: "PUT",
|
|
data: { theme: { translations } },
|
|
});
|
|
}
|
|
}
|