31 lines
561 B
Plaintext
31 lines
561 B
Plaintext
|
<?php
|
||
|
|
||
|
return array(
|
||
|
'languages' => [
|
||
|
1 => 'Français',
|
||
|
2 => 'English',
|
||
|
3 => 'Deutsch'
|
||
|
],
|
||
|
|
||
|
'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'
|
||
|
),
|
||
|
]
|
||
|
*/
|
||
|
|
||
|
'activeLanguages' => array('fr','en','de',)
|
||
|
);
|