diff options
| author | 2014-10-05 15:55:20 +0200 | |
|---|---|---|
| committer | 2014-10-05 15:55:20 +0200 | |
| commit | 6c8b36f04ea1bc2c022c331bb0980b6c9dccb83c (patch) | |
| tree | 61a6b28b6041642faa32d04b4869afa774bda72d /app/views/index/logs.phtml | |
| parent | 5a9b08e084b376af9b65699f9868d66a46f8c170 (diff) | |
Let's begin the big refactoring!
Minz_Translate::t\s? replaces by _t
See https://github.com/marienfressinaud/FreshRSS/issues/655
Diffstat (limited to 'app/views/index/logs.phtml')
| -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 1b77b39af..18629ed9e 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 Minz_Translate::t ('back_to_rss_feeds'); ?></a> + <a href="<?php echo _url ('index', 'index'); ?>"><?php echo _t('back_to_rss_feeds'); ?></a> - <h1><?php echo Minz_Translate::t ('logs'); ?></h1> + <h1><?php echo _t('logs'); ?></h1> <form method="post" action="<?php echo _url ('index', 'logs'); ?>"><p> <input type="hidden" name="clearLogs" /> - <button type="submit" class="btn"><?php echo Minz_Translate::t ('clear_logs'); ?></button> + <button type="submit" class="btn"><?php echo _t('clear_logs'); ?></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 Minz_Translate::t ('logs_empty'); ?></p> + <p class="alert alert-warn"><?php echo _t('logs_empty'); ?></p> <?php } ?> </div> |
