diff options
author | Faton Selishta <fatonselishta@gmail.com> | 2011-04-26 14:34:02 +0000 |
---|---|---|
committer | Faton Selishta <fatonselishta@gmail.com> | 2011-04-26 14:34:02 +0000 |
commit | d0a0fa8ee8009be149ca75345b2849ab924bf73a (patch) | |
tree | b592a486d1305b84600755aac33af85cb7d5a69a /app/controllers/request_controller.rb | |
parent | c91b6efa75f16a5afb98af13b7cdc071e47c089f (diff) |
added i18n strings in controller's template
Diffstat (limited to 'app/controllers/request_controller.rb')
-rw-r--r-- | app/controllers/request_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb index 02abc12a8..6b1373e07 100644 --- a/app/controllers/request_controller.rb +++ b/app/controllers/request_controller.rb @@ -119,12 +119,12 @@ class RequestController < ApplicationController end if @view == 'recent' - @title = "Recently sent Freedom of Information requests" + @title = _("Recently sent Freedom of Information requests") query = "variety:sent"; sortby = "newest" @track_thing = TrackThing.create_track_for_all_new_requests elsif @view == 'successful' - @title = "Recently successful responses" + @title = _("Recently successful responses") query = 'variety:response (status:successful OR status:partially_successful)' sortby = "described" @track_thing = TrackThing.create_track_for_all_successful_requests |