feat: Updates on language elements (#916)

* Fix "Timers cannot be stopped from another thread" during shutdown

* Fix Language settings typo and add sorting

* Additional DE Translations

* Sort DE language file to compare with POEditor version

* Merge DE translation from git with POEditor one
This commit is contained in:
LordGrey 2020-08-03 09:52:26 +02:00 committed by GitHub
parent b7a9a10223
commit 11d7614591
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 866 additions and 862 deletions

View File

@ -25,6 +25,7 @@
for (var i = 0; i < availLang.length; i++)
lang.push($.i18n('general_speech_' + availLang[i]));
lang.sort();
for (key in libs)
libh += '<a href="' + libs[key] + '" target="_blank">' + key + '</a>, ';
libh += "<br/>" + $.i18n("about_credits");

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
var storedAccess;
var storedLang;
var availLang = ['en','de','es','it','cs','sv','nl','pl','ro','tr','vi','fr'];
var availLangText = ['English', 'Deutsch', 'Español', 'Italiano', 'Čeština', 'Svenska', 'Nederlands', 'Polski', 'Română', 'Türkçe', 'Tiếng Việt', 'français'];
var availLang = ['cs','de','en','es','fr','it','nl','pl','ro','sv','vi','tr'];
var availLangText = ['Čeština', 'Deutsch', 'English', 'Español', 'Français', 'Italiano', 'Nederlands', 'Polski', 'Română', 'Svenska', 'Tiếng Việt', 'Türkçe'];
var availAccess = ['default','advanced','expert'];
//$.i18n.debug = true;