Adapte le message lors de la mise à jour
This commit is contained in:
parent
41af5dace0
commit
02e950c8f0
@ -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'
|
||||
]);
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
<div id="updateContainer">
|
||||
<p><strong>
|
||||
<?php echo helper::translate('Mise à jour'); ?>
|
||||
<?php echo helper::translate('Version'); ?>
|
||||
|
||||
<?php echo self::ZWII_VERSION; ?>
|
||||
<?php echo helper::translate('vers'); ?>
|
||||
|
Loading…
Reference in New Issue
Block a user