diff --git a/core/core.js.php b/core/core.js.php index 02ebebb..12799ff 100644 --- a/core/core.js.php +++ b/core/core.js.php @@ -291,7 +291,7 @@ core.start = function () { }); // Confirmation de mise à jour $("#barUpdate").on("click", function () { - message = ""; + message = ""; return core.confirm(message, function () { $(location).attr("href", $("#barUpdate").attr("href")); }); diff --git a/core/module/config/config.php b/core/module/config/config.php index 9d9e7a6..6399212 100644 --- a/core/module/config/config.php +++ b/core/module/config/config.php @@ -607,7 +607,7 @@ class config extends common // Variable de version if (helper::checkNewVersion(common::ZWII_UPDATE_CHANNEL)) { - self::$updateButtonText = helper::translate('Mettre à jour'); + self::$updateButtonText = helper::translate('Mise à jour'); } diff --git a/core/module/install/install.php b/core/module/install/install.php index 6eb9cfb..7b5af8c 100644 --- a/core/module/install/install.php +++ b/core/module/install/install.php @@ -421,7 +421,7 @@ class install extends common self::$newVersion = helper::getUrlContents(common::ZWII_UPDATE_URL . common::ZWII_UPDATE_CHANNEL . '/version'); // Variable de version if (helper::checkNewVersion(common::ZWII_UPDATE_CHANNEL)) { - self::$updateButtonText = helper::translate('Mettre à jour'); + self::$updateButtonText = helper::translate('Mise à jour'); } // Valeurs en sortie $this->addOutput([ diff --git a/core/module/language/language.php b/core/module/language/language.php index d4ae845..b6b3d9f 100644 --- a/core/module/language/language.php +++ b/core/module/language/language.php @@ -271,7 +271,7 @@ class language extends common 'class' => isset($storeUI[$file]['version']) && version_compare($installedUI[$file]['version'], $storeUI[$file]['version']) < 0 ? 'buttonGreen' : '', 'href' => helper::baseUrl() . $this->getUrl(0) . '/update/' . $file, 'value' => template::ico('update'), - 'help' => 'Mettre à jour', + 'help' => 'Mise à jour', ]), template::button('translateContentLanguageUIDelete' . $file, [ 'class' => 'translateDelete buttonRed' . (in_array($file, $usersUI) ? ' disabled' : ''),