aboutsummaryrefslogtreecommitdiff
path: root/app/layout/aside_stats.phtml
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-05 15:55:20 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-05 15:55:20 +0200
commit6c8b36f04ea1bc2c022c331bb0980b6c9dccb83c (patch)
tree61a6b28b6041642faa32d04b4869afa774bda72d /app/layout/aside_stats.phtml
parent5a9b08e084b376af9b65699f9868d66a46f8c170 (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/layout/aside_stats.phtml')
-rw-r--r--app/layout/aside_stats.phtml14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/layout/aside_stats.phtml b/app/layout/aside_stats.phtml
index fbfb9d84d..1cd31a99c 100644
--- a/app/layout/aside_stats.phtml
+++ b/app/layout/aside_stats.phtml
@@ -1,12 +1,12 @@
<ul class="nav nav-list aside">
- <li class="nav-header"><?php echo Minz_Translate::t ('stats'); ?></li>
- <li class="item<?php echo Minz_Request::actionName () == 'index' ? ' active' : ''; ?>">
- <a href="<?php echo _url ('stats', 'index'); ?>"><?php echo Minz_Translate::t ('stats_main'); ?></a>
+ <li class="nav-header"><?php echo _t('stats'); ?></li>
+ <li class="item<?php echo Minz_Request::actionName() == 'index' ? ' active' : ''; ?>">
+ <a href="<?php echo _url('stats', 'index'); ?>"><?php echo _t('stats_main'); ?></a>
</li>
- <li class="item<?php echo Minz_Request::actionName () == 'idle' ? ' active' : ''; ?>">
- <a href="<?php echo _url ('stats', 'idle'); ?>"><?php echo Minz_Translate::t ('stats_idle'); ?></a>
+ <li class="item<?php echo Minz_Request::actionName() == 'idle' ? ' active' : ''; ?>">
+ <a href="<?php echo _url('stats', 'idle'); ?>"><?php echo _t('stats_idle'); ?></a>
</li>
- <li class="item<?php echo Minz_Request::actionName () == 'repartition' ? ' active' : ''; ?>">
- <a href="<?php echo _url ('stats', 'repartition'); ?>"><?php echo Minz_Translate::t ('stats_repartition'); ?></a>
+ <li class="item<?php echo Minz_Request::actionName() == 'repartition' ? ' active' : ''; ?>">
+ <a href="<?php echo _url('stats', 'repartition'); ?>"><?php echo _t('stats_repartition'); ?></a>
</li>
</ul>