aboutsummaryrefslogtreecommitdiff
path: root/app/views/index/reader.phtml
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-12-11 00:25:02 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-12-11 00:25:02 +0100
commit57bffe83eb396580d08633af93d6cd10a443bf09 (patch)
tree5ea391cbb5f782d584102eb3a90a4182137f7dbf /app/views/index/reader.phtml
parentd455837c6d6e3ad3d64d06f40c947c93fc4e2086 (diff)
Fix i18n for index Controller
Fix strings for: - about page - rss and reader views - fix title of global view
Diffstat (limited to 'app/views/index/reader.phtml')
-rw-r--r--app/views/index/reader.phtml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/index/reader.phtml b/app/views/index/reader.phtml
index f07868488..d87550f77 100644
--- a/app/views/index/reader.phtml
+++ b/app/views/index/reader.phtml
@@ -23,7 +23,7 @@ if (!empty($this->entries)) {
<div class="author"><?php
$author = $item->author();
- echo $author != '' ? _t('by_author', $author) . ' — ' : '',
+ echo $author != '' ? _t('index.entry.by_author', $author) . ' — ' : '',
$item->date();
?></div>
@@ -38,7 +38,7 @@ if (!empty($this->entries)) {
<?php } else { ?>
<div id="stream" class="prompt alert alert-warn reader">
- <h2><?php echo _t('no_feed_to_display'); ?></h2>
- <a href="<?php echo _url('subscription', 'index'); ?>"><?php echo _t('think_to_add'); ?></a><br /><br />
+ <h2><?php echo _t('index.feed.empty'); ?></h2>
+ <a href="<?php echo _url('subscription', 'index'); ?>"><?php echo _t('index.feed.add'); ?></a><br /><br />
</div>
<?php } ?>