diff options
| author | 2014-12-11 00:25:02 +0100 | |
|---|---|---|
| committer | 2014-12-11 00:25:02 +0100 | |
| commit | 57bffe83eb396580d08633af93d6cd10a443bf09 (patch) | |
| tree | 5ea391cbb5f782d584102eb3a90a4182137f7dbf /app/Controllers/indexController.php | |
| parent | d455837c6d6e3ad3d64d06f40c947c93fc4e2086 (diff) | |
Fix i18n for index Controller
Fix strings for:
- about page
- rss and reader views
- fix title of global view
Diffstat (limited to 'app/Controllers/indexController.php')
| -rwxr-xr-x | app/Controllers/indexController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controllers/indexController.php b/app/Controllers/indexController.php index 2759ab289..33cd2843c 100755 --- a/app/Controllers/indexController.php +++ b/app/Controllers/indexController.php @@ -98,7 +98,7 @@ class FreshRSS_index_Controller extends Minz_ActionController { $this->view->categories = FreshRSS_Context::$categories; $this->view->rss_title = FreshRSS_Context::$name . ' | ' . Minz_View::title(); - $title = _t('gen.title.global_view'); + $title = _t('index.feed.title_global'); if (FreshRSS_Context::$get_unread > 0) { $title = '(' . FreshRSS_Context::$get_unread . ') ' . $title; } @@ -206,7 +206,7 @@ class FreshRSS_index_Controller extends Minz_ActionController { * This action displays the about page of FreshRSS. */ public function aboutAction() { - Minz_View::prependTitle(_t('about') . ' · '); + Minz_View::prependTitle(_t('index.about.title') . ' · '); } /** |
