Bugs de slash
This commit is contained in:
parent
573e67e790
commit
9c2cea92b7
@ -891,8 +891,8 @@ if ($this->getData(['core', 'dataVersion']) < 12000) {
|
|||||||
helper::deleteCookie('ZWII_CONTENTSCRIPT');
|
helper::deleteCookie('ZWII_CONTENTSCRIPT');
|
||||||
|
|
||||||
// Nettoyage de fichiers inutiles
|
// Nettoyage de fichiers inutiles
|
||||||
if (file_exists('core\module\user\view\import\import.help.html')) {
|
if (file_exists('core/module/user/view/import/import.help.html')) {
|
||||||
unlink('core\module\user\view\import\import.help.html');
|
unlink('core/module/user/view/import/import.help.html');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Supprimer les fichier associés
|
// Supprimer les fichier associés
|
||||||
@ -932,8 +932,8 @@ if ($this->getData(['core', 'dataVersion']) < 12300) {
|
|||||||
// Valeur par défaut du délai de recherche de mise à jour en ligne
|
// Valeur par défaut du délai de recherche de mise à jour en ligne
|
||||||
$this->setData(['config', 'autoUpdateDelay', 86400]);
|
$this->setData(['config', 'autoUpdateDelay', 86400]);
|
||||||
// Changement de nom des fichiers de langue greque
|
// Changement de nom des fichiers de langue greque
|
||||||
if (file_exists('core\module\install\ressource\i18n\gr_GR.json')) {
|
if (file_exists('core/module/install/ressource/i18n/gr_GR.json')) {
|
||||||
unlink('core\module\install\ressource\i18n\gr_GR.json');
|
unlink('core/module/install/ressource/i18n/gr_GR.json');
|
||||||
}
|
}
|
||||||
if (file_exists(self::I18N_DIR . 'gr_GR.json')) {
|
if (file_exists(self::I18N_DIR . 'gr_GR.json')) {
|
||||||
rename(self::I18N_DIR . 'gr_GR.json', self::I18N_DIR . 'el_GR.json');
|
rename(self::I18N_DIR . 'gr_GR.json', self::I18N_DIR . 'el_GR.json');
|
||||||
|
@ -382,7 +382,7 @@ class install extends common
|
|||||||
$installedUI = $this->getData(['languages']);
|
$installedUI = $this->getData(['languages']);
|
||||||
|
|
||||||
// Langues disponibles avec la mise à jour
|
// Langues disponibles avec la mise à jour
|
||||||
$store = json_decode(file_get_contents('core\module\install\ressource\i18n\languages.json'), true);
|
$store = json_decode(file_get_contents('core/module/install/ressource/i18n/languages.json'), true);
|
||||||
$store = $store['languages'];
|
$store = $store['languages'];
|
||||||
|
|
||||||
foreach ($installedUI as $key => $value) {
|
foreach ($installedUI as $key => $value) {
|
||||||
|
@ -176,7 +176,7 @@ class translate extends common
|
|||||||
$installedUI = $this->getData(['languages']);
|
$installedUI = $this->getData(['languages']);
|
||||||
|
|
||||||
// Langues disponibles avec la mise à jour
|
// Langues disponibles avec la mise à jour
|
||||||
$store = json_decode(file_get_contents('core\module\install\ressource\i18n\languages.json'), true);
|
$store = json_decode(file_get_contents('core/module/install/ressource/i18n/languages.json'), true);
|
||||||
$store = $store['languages'];
|
$store = $store['languages'];
|
||||||
if ($installedUI) {
|
if ($installedUI) {
|
||||||
foreach($installedUI as $key => $value) {
|
foreach($installedUI as $key => $value) {
|
||||||
@ -202,7 +202,7 @@ class translate extends common
|
|||||||
}
|
}
|
||||||
self::$languagesInstalled[] = [
|
self::$languagesInstalled[] = [
|
||||||
template::flag($key, '20 %') . ' ' . $value . ' (' . $key . ')',
|
template::flag($key, '20 %') . ' ' . $value . ' (' . $key . ')',
|
||||||
$messageLocale,
|
$messageLocale,
|
||||||
template::button('translateContentLanguageLocaleEdit' . $key, [
|
template::button('translateContentLanguageLocaleEdit' . $key, [
|
||||||
'class' => file_exists(self::DATA_DIR . $key . '/locale.json') ? '' : ' disabled',
|
'class' => file_exists(self::DATA_DIR . $key . '/locale.json') ? '' : ' disabled',
|
||||||
'href' => helper::baseUrl() . $this->getUrl(0) . '/locale/' . $key,
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/locale/' . $key,
|
||||||
|
Loading…
Reference in New Issue
Block a user