45 lines
901 B
Plaintext
45 lines
901 B
Plaintext
<?php
|
|
|
|
return array(
|
|
'languages' => [
|
|
1 => 'Français',
|
|
2 => 'English',
|
|
3 => 'Deutsch',
|
|
4 => 'Nederlands',
|
|
5 => 'Spanish',
|
|
6 => 'Italien',
|
|
7 => 'Japanese',
|
|
8 => 'Polish',
|
|
9 => 'Portuguese',
|
|
10 => 'Russian',
|
|
11 => 'Chinese',
|
|
|
|
|
|
],
|
|
|
|
'defaultLanguageIndex' => 1,
|
|
|
|
/* Link with (ModuleCore)
|
|
config['languages'] = [
|
|
'fr' => array(
|
|
'index' => 1,
|
|
'label' => 'Français'
|
|
),
|
|
'en' => array(
|
|
'index' => 2,
|
|
'label' => 'English'
|
|
),
|
|
'de' => array(
|
|
'index' => 3,
|
|
'label' => 'Deutsch'
|
|
),
|
|
'ne' => array(
|
|
'index' => 4,
|
|
'label' => 'Nederlands',
|
|
),
|
|
]
|
|
*/
|
|
|
|
'activeLanguages' => array('fr','en','de','nl','es','it','ja','pl','pt','ru','zh'),
|
|
);
|