diff --git a/config/autoload/languages.local.php.dist b/config/autoload/languages.local.php.dist index bc71925..e9e35c2 100644 --- a/config/autoload/languages.local.php.dist +++ b/config/autoload/languages.local.php.dist @@ -4,8 +4,17 @@ return array( 'languages' => [ 1 => 'Français', 2 => 'English', - 3 => 'Deutsch' - 4 => 'Nederlands' + 3 => 'Deutsch', + 4 => 'Nederlands', + 5 => 'Spanish', + 6 => 'Italien', + 7 => 'Japanese', + 8 => 'Polish', + 9 => 'Portuguese', + 10 => 'Russian', + 11 => 'Chinese', + + ], 'defaultLanguageIndex' => 1, @@ -31,5 +40,5 @@ return array( ] */ - 'activeLanguages' => array('fr','en','de','ne',) + '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 470aef5..acf454b 100644 --- a/config/autoload/local.php.dist +++ b/config/autoload/local.php.dist @@ -47,15 +47,43 @@ return [ 'index' => 3, 'label' => 'Deutsch', ], - 'ne' => [ + 'nl' => [ 'index' => 4, 'label' => 'Nederlands', ], + 'es' => [ + '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',], + 'activeLanguages' => array('fr','en','de','nl','es','it','ja','pl','pt','ru','zh'), 'appVersion' => $package_json['version'],