2016-09-18 22:42:07 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'languages' => [
|
|
|
|
1 => 'Français',
|
|
|
|
2 => 'English',
|
2021-02-13 01:28:28 +01:00
|
|
|
3 => 'Deutsch',
|
|
|
|
4 => 'Nederlands',
|
2021-02-19 10:25:59 +01:00
|
|
|
5 => 'Spanish',
|
2022-02-25 10:29:04 +01:00
|
|
|
6 => 'Romanian',
|
|
|
|
7 => 'Italien',
|
|
|
|
8 => 'Japanese',
|
|
|
|
9 => 'Polish',
|
|
|
|
10 => 'Portuguese',
|
|
|
|
11 => 'Russian',
|
|
|
|
12 => 'Chinese',
|
2016-09-18 22:42:07 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
'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'
|
|
|
|
),
|
2017-09-21 15:57:50 +02:00
|
|
|
'ne' => array(
|
|
|
|
'index' => 4,
|
|
|
|
'label' => 'Nederlands',
|
|
|
|
),
|
2016-09-18 22:42:07 +02:00
|
|
|
]
|
|
|
|
*/
|
|
|
|
|
2022-03-08 12:59:30 +01:00
|
|
|
'activeLanguages' => array('fr','en','de','nl','es','ro','it','ja','pl','pt','zh'),
|
2016-09-18 22:42:07 +02:00
|
|
|
);
|