diff options
| author | 2014-12-11 00:00:15 +0100 | |
|---|---|---|
| committer | 2014-12-11 00:00:15 +0100 | |
| commit | d455837c6d6e3ad3d64d06f40c947c93fc4e2086 (patch) | |
| tree | 22749b7dbd363986320ce83abe7f40e80b370117 /app/Models/Context.php | |
| parent | 8a40a726575947c074216ad9084275e0195f9c30 (diff) | |
Fix i18n for normal view
Diffstat (limited to 'app/Models/Context.php')
| -rw-r--r-- | app/Models/Context.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Models/Context.php b/app/Models/Context.php index 3dc5349ad..c8a65063a 100644 --- a/app/Models/Context.php +++ b/app/Models/Context.php @@ -138,12 +138,12 @@ class FreshRSS_Context { switch($type) { case 'a': self::$current_get['all'] = true; - self::$name = _t('your_rss_feeds'); + self::$name = _t('index.feed.title'); self::$get_unread = self::$total_unread; break; case 's': self::$current_get['starred'] = true; - self::$name = _t('your_favorites'); + self::$name = _t('index.feed.title_fav'); self::$get_unread = self::$total_starred['unread']; // Update state if favorite is not yet enabled. |
