aboutsummaryrefslogtreecommitdiff
path: root/app/views/index/about.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/views/index/about.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/views/index/about.phtml')
-rw-r--r--app/views/index/about.phtml26
1 files changed, 13 insertions, 13 deletions
diff --git a/app/views/index/about.phtml b/app/views/index/about.phtml
index 76ff804d8..14c6455b6 100644
--- a/app/views/index/about.phtml
+++ b/app/views/index/about.phtml
@@ -1,27 +1,27 @@
<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 ('about_freshrss'); ?></h1>
+ <h1><?php echo _t('about_freshrss'); ?></h1>
<dl class="infos">
- <dt><?php echo Minz_Translate::t ('project_website'); ?></dt>
+ <dt><?php echo _t('project_website'); ?></dt>
<dd><a href="<?php echo FRESHRSS_WEBSITE; ?>"><?php echo FRESHRSS_WEBSITE; ?></a></dd>
- <dt><?php echo Minz_Translate::t ('lead_developer'); ?></dt>
- <dd><a href="mailto:contact@marienfressinaud.fr">Marien Fressinaud</a> — <a href="http://marienfressinaud.fr"><?php echo Minz_Translate::t ('website'); ?></a></dd>
+ <dt><?php echo _t('lead_developer'); ?></dt>
+ <dd><a href="mailto:contact@marienfressinaud.fr">Marien Fressinaud</a> — <a href="http://marienfressinaud.fr"><?php echo _t('website'); ?></a></dd>
- <dt><?php echo Minz_Translate::t ('bugs_reports'); ?></dt>
- <dd><?php echo Minz_Translate::t ('github_or_email'); ?></dd>
+ <dt><?php echo _t('bugs_reports'); ?></dt>
+ <dd><?php echo _t('github_or_email'); ?></dd>
- <dt><?php echo Minz_Translate::t ('license'); ?></dt>
- <dd><?php echo Minz_Translate::t ('agpl3'); ?></dd>
+ <dt><?php echo _t('license'); ?></dt>
+ <dd><?php echo _t('agpl3'); ?></dd>
- <dt><?php echo Minz_Translate::t ('version'); ?></dt>
+ <dt><?php echo _t('version'); ?></dt>
<dd><?php echo FRESHRSS_VERSION; ?></dd>
</dl>
- <p><?php echo Minz_Translate::t ('freshrss_description'); ?></p>
+ <p><?php echo _t('freshrss_description'); ?></p>
- <h1><?php echo Minz_Translate::t ('credits'); ?></h1>
- <p><?php echo Minz_Translate::t ('credits_content'); ?></p>
+ <h1><?php echo _t('credits'); ?></h1>
+ <p><?php echo _t('credits_content'); ?></p>
</div>