diff options
| author | 2014-12-10 23:16:12 +0100 | |
|---|---|---|
| committer | 2014-12-10 23:16:12 +0100 | |
| commit | 8a40a726575947c074216ad9084275e0195f9c30 (patch) | |
| tree | a27fa1d9d267a7c435449a9e7ef5a1fecff3c479 /app/views/index | |
| parent | aa54f437950eb05d719d10b8be4e0f2648951845 (diff) | |
Fix i18n for logs, pagination and javascript vars
Logs first to avoid annoying message when refreshing log page
Diffstat (limited to 'app/views/index')
| -rw-r--r-- | app/views/index/logs.phtml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/index/logs.phtml b/app/views/index/logs.phtml index 101692daf..0262325f5 100644 --- a/app/views/index/logs.phtml +++ b/app/views/index/logs.phtml @@ -1,10 +1,10 @@ <div class="post content"> - <a href="<?php echo _url('index', 'index'); ?>"><?php echo _t('back_to_rss_feeds'); ?></a> + <a href="<?php echo _url('index', 'index'); ?>"><?php echo _t('gen.action.back_to_rss_feeds'); ?></a> - <h1><?php echo _t('logs'); ?></h1> + <h1><?php echo _t('index.logs'); ?></h1> <form method="post" action="<?php echo _url('index', 'logs'); ?>"><p> <input type="hidden" name="clearLogs" /> - <button type="submit" class="btn"><?php echo _t('clear_logs'); ?></button> + <button type="submit" class="btn"><?php echo _t('index.logs.clear'); ?></button> </p></form> <?php $items = $this->logsPaginator->items(); ?> @@ -20,6 +20,6 @@ <?php $this->logsPaginator->render('logs_pagination.phtml','page'); ?> </div> <?php } else { ?> - <p class="alert alert-warn"><?php echo _t('logs_empty'); ?></p> + <p class="alert alert-warn"><?php echo _t('index.logs.empty'); ?></p> <?php } ?> </div> |
