2023-10-10 19:38:59 +01:00
|
|
|
import { alias } from "@ember/object/computed";
|
2023-06-19 10:37:43 -04:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
import { url } from "discourse/lib/computed";
|
2023-10-10 19:38:59 +01:00
|
|
|
import SiteSettingComponent from "./site-setting";
|
2018-03-05 03:04:23 +03:00
|
|
|
|
2023-02-13 10:53:15 +00:00
|
|
|
export default class ThemeTranslation extends SiteSettingComponent {
|
|
|
|
@alias("translation") setting;
|
|
|
|
@alias("translation.key") settingName;
|
2023-06-19 10:37:43 -04:00
|
|
|
@url("model.id", "/admin/themes/%@") updateUrl;
|
2019-01-17 11:46:11 +00:00
|
|
|
|
2023-02-23 15:32:53 +00:00
|
|
|
type = "string";
|
|
|
|
|
2018-03-05 03:04:23 +03:00
|
|
|
_save() {
|
2023-06-19 10:37:43 -04:00
|
|
|
const translations = {
|
|
|
|
[this.get("translation.key")]: this.get("buffered.value"),
|
|
|
|
};
|
|
|
|
|
|
|
|
return ajax(this.updateUrl, {
|
|
|
|
type: "PUT",
|
2024-03-18 17:00:28 +01:00
|
|
|
data: { theme: { translations, locale: this.get("model.locale") } },
|
2023-06-19 10:37:43 -04:00
|
|
|
});
|
2023-02-13 10:53:15 +00:00
|
|
|
}
|
|
|
|
}
|