mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-06 22:23:10 -04:00
Add translations for update system
This commit is contained in:
@@ -11,6 +11,7 @@ class FreshRSS_update_Controller extends Minz_ActionController {
|
||||
}
|
||||
|
||||
Minz_View::prependTitle(_t('update_system') . ' · ');
|
||||
$this->view->last_update_time = 'unknown'; // TODO
|
||||
}
|
||||
|
||||
public function indexAction() {
|
||||
@@ -61,7 +62,7 @@ class FreshRSS_update_Controller extends Minz_ActionController {
|
||||
$this->view->message = array(
|
||||
'status' => 'bad',
|
||||
'title' => _t('damn'),
|
||||
'body' => _t('update_problem')
|
||||
'body' => _t('update_problem', 'Cannot save the update script')
|
||||
);
|
||||
}
|
||||
} else {
|
||||
@@ -88,6 +89,8 @@ class FreshRSS_update_Controller extends Minz_ActionController {
|
||||
if ($res === true) {
|
||||
@unlink(UPDATE_FILENAME);
|
||||
|
||||
// TODO: record last update
|
||||
|
||||
Minz_Session::_param('notification', array(
|
||||
'type' => 'good',
|
||||
'content' => Minz_Translate::t('update_finished')
|
||||
@@ -97,7 +100,7 @@ class FreshRSS_update_Controller extends Minz_ActionController {
|
||||
} else {
|
||||
Minz_Session::_param('notification', array(
|
||||
'type' => 'bad',
|
||||
'content' => Minz_Translate::t('update_failed', $res)
|
||||
'content' => Minz_Translate::t('update_problem', $res)
|
||||
));
|
||||
|
||||
Minz_Request::forward(array('c' => 'update'), true);
|
||||
|
||||
@@ -192,6 +192,7 @@ return array (
|
||||
|
||||
'informations' => 'Information',
|
||||
'damn' => 'Damn!',
|
||||
'ok' => 'Ok!',
|
||||
'feed_in_error' => 'This feed has encountered a problem. Please verify that it is always reachable then actualize it.',
|
||||
'feed_empty' => 'This feed is empty. Please verify that it is still maintained.',
|
||||
'feed_description' => 'Description',
|
||||
@@ -409,5 +410,13 @@ return array (
|
||||
'stats_top_feed' => 'Top ten feeds',
|
||||
'stats_entry_count' => 'Entry count',
|
||||
|
||||
'update' => 'Update',
|
||||
'update_system' => 'Update system',
|
||||
'update_check' => 'Check for new updates',
|
||||
'update_last' => 'Last update: %s',
|
||||
'update_can_apply' => 'There is an available update. <a class="btn" href="%s">Apply</a>',
|
||||
'update_server_not_found' => 'Update server cannot be found. [%s]',
|
||||
'no_update' => 'No update to apply',
|
||||
'update_problem' => 'Update has encountered an error: %s',
|
||||
'update_finished' => 'Update is now finished!',
|
||||
);
|
||||
|
||||
@@ -192,6 +192,7 @@ return array (
|
||||
|
||||
'informations' => 'Informations',
|
||||
'damn' => 'Arf !',
|
||||
'ok' => 'Ok !',
|
||||
'feed_in_error' => 'Ce flux a rencontré un problème. Veuillez vérifier qu’il est toujours accessible puis actualisez-le.',
|
||||
'feed_empty' => 'Ce flux est vide. Veuillez vérifier qu’il est toujours maintenu.',
|
||||
'feed_description' => 'Description',
|
||||
@@ -409,5 +410,13 @@ return array (
|
||||
'stats_top_feed' => 'Les dix plus gros flux',
|
||||
'stats_entry_count' => 'Nombre d’articles',
|
||||
|
||||
'update_can_apply' => 'Il y’a une mise à jour à appliquer. <a class="btn" href="%s">Appliquer</a>',
|
||||
'update' => 'Mise à jour',
|
||||
'update_system' => 'Système de mise à jour',
|
||||
'update_check' => 'Vérifier les mises à jour',
|
||||
'update_last' => 'Dernière mise à jour : %s',
|
||||
'update_can_apply' => 'Il y’a une mise à jour à appliquer. <a class="btn" href="%s">Appliquer la mise à jour</a>',
|
||||
'update_server_not_found' => 'Le serveur de mise à jour n’a pas été trouvé. [%s]',
|
||||
'no_update' => 'Aucune mise à jour à appliquer',
|
||||
'update_problem' => 'La mise à jour a rencontré un problème : %s',
|
||||
'update_finished' => 'La mise à jour est terminée !',
|
||||
);
|
||||
|
||||
@@ -12,8 +12,10 @@
|
||||
|
||||
<?php if (empty($this->message) || $this->message['status'] !== 'good') { ?>
|
||||
<p>
|
||||
<a href="<?php echo _url('update', 'check'); ?>" class="btn"><?php echo _t('update_check'); ?></a>
|
||||
<?php echo _i('help'); ?> <?php echo _t('update_last', $this->last_update_time); ?>
|
||||
</p>
|
||||
<p>
|
||||
<a href="<?php echo _url('update', 'check'); ?>" class="btn"><?php echo _t('update_check'); ?></a>
|
||||
</p>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user