mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
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:
parent
b7a9a10223
commit
11d7614591
@ -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
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user