Updated language list

feature/internationalization
Juan Rocha 2021-02-19 10:25:59 +01:00
parent 55660c2941
commit cff3e7f80d
2 changed files with 36 additions and 4 deletions

View File

@ -6,7 +6,15 @@ return array(
2 => 'English',
3 => 'Deutsch',
4 => 'Nederlands',
5 => 'Spanish'
5 => 'Spanish',
6 => 'Italien',
7 => 'Japanese',
8 => 'Polish',
9 => 'Portuguese',
10 => 'Russian',
11 => 'Chinese',
],
'defaultLanguageIndex' => 1,
@ -32,5 +40,5 @@ return array(
]
*/
'activeLanguages' => array('fr','en','de','ne','es')
'activeLanguages' => array('fr','en','de','nl','es','it','ja','pl','pt','ru','zh'),
);

View File

@ -47,7 +47,7 @@ return [
'index' => 3,
'label' => 'Deutsch',
],
'ne' => [
'nl' => [
'index' => 4,
'label' => 'Nederlands',
],
@ -55,11 +55,35 @@ return [
'index' => 5,
'label' => 'Spanish',
],
'it' => [
'index' => 6,
'label' => 'Italian',
],
'ru' => [
'index' => 7,
'label' => 'Russian',
],
'pt' => [
'index' => 8,
'label' => 'Portuguese',
],
'pl' => [
'index' => 9,
'label' => 'Polish',
],
'jp' => [
'index' => 10,
'label' => 'Japanese',
],
'zh' => [
'index' => 11,
'label' => 'Chinese',
],
],
'defaultLanguageIndex' => 1,
'activeLanguages' => ['fr', 'en', 'de', 'nl', 'es'],
'activeLanguages' => array('fr','en','de','nl','es','it','ja','pl','pt','ru','zh'),
'appVersion' => $package_json['version'],