2016-09-18 22:42:07 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'languages' => [
|
|
|
|
1 => 'Français',
|
|
|
|
2 => 'English',
|
|
|
|
3 => 'Deutsch'
|
2017-09-21 15:57:50 +02:00
|
|
|
4 => 'Nederlands'
|
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
|
|
|
]
|
|
|
|
*/
|
|
|
|
|
2017-09-21 15:57:50 +02:00
|
|
|
'activeLanguages' => array('fr','en','de','ne',)
|
2016-09-18 22:42:07 +02:00
|
|
|
);
|