mirror of
https://github.com/ellite/Wallos.git
synced 2026-04-17 21:50:11 -04:00
7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
function translate(key) {
|
|
if (i18n[key]) {
|
|
return i18n[key];
|
|
} else {
|
|
return "[Translation Missing]";
|
|
}
|
|
} |