1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-08 06:28:27 -04:00

i18n: term overhaul

- Delete ~160-ish useless terms
- Add context to more terms
- Add a mechanism to duplicate the same terms with different contexts
- sync
This commit is contained in:
bbedward
2026-07-16 12:15:20 -04:00
parent 6c45413d7a
commit 3c0f2cbc48
83 changed files with 19570 additions and 20947 deletions
+4 -4
View File
@@ -1956,7 +1956,7 @@ Singleton {
function applyGtkColors() {
if (!matugenAvailable) {
if (typeof ToastService !== "undefined") {
ToastService.showError(I18n.tr("matugen not available or disabled - cannot apply GTK colors"));
ToastService.showError(I18n.tr("matugen not available or disabled - cannot apply %1 colors").arg("GTK"));
}
return;
}
@@ -1969,7 +1969,7 @@ Singleton {
}
} else {
if (typeof ToastService !== "undefined") {
ToastService.showError(I18n.tr("Failed to apply GTK colors"));
ToastService.showError(I18n.tr("Failed to apply %1 colors").arg("GTK"));
}
}
});
@@ -1978,7 +1978,7 @@ Singleton {
function applyQtColors() {
if (!matugenAvailable) {
if (typeof ToastService !== "undefined") {
ToastService.showError(I18n.tr("matugen not available or disabled - cannot apply Qt colors"));
ToastService.showError(I18n.tr("matugen not available or disabled - cannot apply %1 colors").arg("Qt"));
}
return;
}
@@ -1990,7 +1990,7 @@ Singleton {
}
} else {
if (typeof ToastService !== "undefined") {
ToastService.showError(I18n.tr("Failed to apply Qt colors"));
ToastService.showError(I18n.tr("Failed to apply %1 colors").arg("Qt"));
}
}
});