🧹Logo Cleanup + cs_cz

This commit is contained in:
jokob-sk
2024-08-16 08:01:39 +10:00
parent cec177a912
commit c9e92469a4
21 changed files with 1089 additions and 17 deletions

View File

@@ -12,7 +12,7 @@ var timerRefreshData = ''
var emptyArr = ['undefined', "", undefined, null, 'null'];
var UI_LANG = "English";
const allLanguages = ["en_us", "es_es", "de_de", "fr_fr", "it_it", "ru_ru", "nb_no", "pl_pl", "zh_cn"]; // needs to be same as in lang.php
const allLanguages = ["en_us", "es_es", "de_de", "fr_fr", "it_it", "ru_ru", "nb_no", "pl_pl", "zh_cn", "cs_cz"]; // needs to be same as in lang.php
var settingsJSON = {}
@@ -305,6 +305,9 @@ function getString(key) {
case 'Chinese (zh_cn)':
lang_code = 'zh_cn';
break;
case 'Czech (cs_cz)':
lang_code = 'cs_cz';
break;
}
let result = getCache(`pia_lang_${key}_${lang_code}`, true);