Adapte le message lors de la mise à jour

This commit is contained in:
Fred Tempez 2023-11-03 11:42:15 +01:00
parent 41af5dace0
commit 02e950c8f0
2 changed files with 8 additions and 2 deletions

View File

@ -38,6 +38,8 @@ class install extends common
// Fichiers des Interface
public static $i18nFiles = [];
public static $updateButtonText = 'Réinstaller';
/**
* Pré-installation - choix de la langue
*/
@ -446,10 +448,14 @@ class install extends common
} else {
// Nouvelle version
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');
}
// Valeurs en sortie
$this->addOutput([
'display' => self::DISPLAY_LAYOUT_LIGHT,
'title' => helper::translate('Mise à jour'),
'title' => helper::translate(self::$updateButtonText),
'view' => 'update'
]);
}

View File

@ -1,6 +1,6 @@
<div id="updateContainer">
<p><strong>
<?php echo helper::translate('Mise à jour'); ?>
<?php echo helper::translate('Version'); ?>
&nbsp;
<?php echo self::ZWII_VERSION; ?>
<?php echo helper::translate('vers'); ?>