client: Translate protected switch

This commit is contained in:
Elian Doran 2024-09-08 22:04:22 +03:00
parent 38ac4318b9
commit a0fdaabb1f
No known key found for this signature in database
3 changed files with 17 additions and 4 deletions

View File

@ -1,3 +1,4 @@
import { t } from "../services/i18n.js";
import protectedSessionService from "../services/protected_session.js";
import SwitchWidget from "./switch.js";
@ -5,11 +6,11 @@ export default class ProtectedNoteSwitchWidget extends SwitchWidget {
doRender() {
super.doRender();
this.$switchOnName.text("Protect the note");
this.$switchOnButton.attr("title", "Note is not protected, click to make it protected");
this.$switchOnName.text(t("protect_note.toggle-on"));
this.$switchOnButton.attr("title", t("protect_note.toggle-on-hint"));
this.$switchOffName.text("Unprotect the note");
this.$switchOffButton.attr("title", "Note is protected, click to make it unprotected");
this.$switchOffName.text(t("protect_note.toggle-off"));
this.$switchOffButton.attr("title", t("protect_note.toggle-off-hint"));
}
switchOn() {

View File

@ -1299,5 +1299,11 @@
"launcher": "Launcher",
"doc": "Doc",
"widget": "Widget"
},
"protect_note": {
"toggle-on": "Protect the note",
"toggle-off": "Unprotect the note",
"toggle-on-hint": "Note is not protected, click to make it protected",
"toggle-off-hint": "Note is protected, click to make it unprotected"
}
}

View File

@ -1299,5 +1299,11 @@
"image": "Imagine",
"launcher": "Scurtătură",
"widget": "Widget"
},
"protect_note": {
"toggle-off": "Deprotejează notița",
"toggle-off-hint": "Notița este protejată, click pentru a o deproteja",
"toggle-on": "Protejează notița",
"toggle-on-hint": "Notița nu este protejată, clic pentru a o proteja"
}
}