diff options
| author | 2014-12-11 23:45:55 +0100 | |
|---|---|---|
| committer | 2014-12-11 23:45:55 +0100 | |
| commit | efdb80fda7fb39cb1148a549076c768e7fc5b641 (patch) | |
| tree | bf107d1c27d904a341b9666e492906f28b4cdbec /app/Controllers/errorController.php | |
| parent | 0b9fa9896ed3b12b7e0d6300f0122d25d9576aa3 (diff) | |
| parent | 9ddf3679c5c0a43bad1b2d02248047e2e4e26716 (diff) | |
Merge branch '334-new-i18n' into dev
Diffstat (limited to 'app/Controllers/errorController.php')
| -rw-r--r-- | app/Controllers/errorController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controllers/errorController.php b/app/Controllers/errorController.php index 6c080bea8..06fa186cf 100644 --- a/app/Controllers/errorController.php +++ b/app/Controllers/errorController.php @@ -37,11 +37,11 @@ class FreshRSS_error_Controller extends Minz_ActionController { if ($this->view->errorMessage == '') { switch($code_int) { case 403: - $this->view->errorMessage = _t('access_denied'); + $this->view->errorMessage = _t('feedback.access.denied'); break; case 404: default: - $this->view->errorMessage = _t('page_not_found'); + $this->view->errorMessage = _t('feedback.access.not_found'); break; } } |
