Langue par défaut dans une variable

This commit is contained in:
Fred Tempez 2022-09-02 15:34:28 +02:00
parent e0414c83dc
commit e2d202506f
2 changed files with 5 additions and 1 deletions

View File

@ -888,6 +888,9 @@ if ($this->getData(['core', 'dataVersion']) < 11600) {
if (file_exists('core/vendor/i18n/translation.js')) {
unlink('core/vendor/i18n/translation.js');
}
// Langue de l'interface
$this->setData(['config', 'i18n', 'default', 'fr']);
// Mise à jour
$this->setData(['core', 'dataVersion', 11600]);
}

View File

@ -42,6 +42,7 @@ class init extends common {
'redirectLogin' => true
],
'i18n' => [
'default' => 'fr',
'fr'=> 'none',
'de'=> 'none',
'en'=> 'none',
@ -52,7 +53,7 @@ class init extends common {
]
],
'core' => [
'dataVersion' => 11400,
'dataVersion' => 11600,
'lastBackup' => 0,
'lastClearTmp' => 0,
'lastAutoUpdate' => 0,