From ef5f5b35db25bd532c1f22424a7f17576cc219a4 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 29 Jan 2025 18:40:56 +0200 Subject: [PATCH] feat(i18n): translate template switch off button --- src/public/app/widgets/template_switch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/app/widgets/template_switch.ts b/src/public/app/widgets/template_switch.ts index cdf1ba8fe..50497941e 100644 --- a/src/public/app/widgets/template_switch.ts +++ b/src/public/app/widgets/template_switch.ts @@ -18,7 +18,7 @@ export default class TemplateSwitchWidget extends SwitchWidget { this.$switchOnName.text(t("template_switch.template")); this.$switchOnButton.attr("title", t("template_switch.toggle-on-hint")); - this.$switchOffName.text("Template"); + this.$switchOffName.text(t("template_switch.template")); this.$switchOffButton.attr("title", t("template_switch.toggle-off-hint")); this.$helpButton.attr("data-help-page", "template.html").show();