From cff3e7f80d16d00ca9acf156323dea4ca279b726 Mon Sep 17 00:00:00 2001 From: Juan Rocha Date: Fri, 19 Feb 2021 10:25:59 +0100 Subject: [PATCH] Updated language list --- config/autoload/languages.local.php.dist | 12 ++++++++-- config/autoload/local.php.dist | 28 ++++++++++++++++++++++-- 2 files changed, 36 insertions(+), 4 deletions(-) diff --git a/config/autoload/languages.local.php.dist b/config/autoload/languages.local.php.dist index f960b73..e9e35c2 100644 --- a/config/autoload/languages.local.php.dist +++ b/config/autoload/languages.local.php.dist @@ -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'), ); diff --git a/config/autoload/local.php.dist b/config/autoload/local.php.dist index fd45eed..6b02034 100644 --- a/config/autoload/local.php.dist +++ b/config/autoload/local.php.dist @@ -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'],