This commit is contained in:
Markos Gogoulos
2026-03-13 18:54:51 +02:00
parent 04693f11c8
commit a40a0037bd
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
// check templates/config/installation/translations.html for more
export function translateString(str) {
return window.TRANSLATION?.[str] ?? str;
return window.TRANSLATION?.[str] || str;
}