diff options
author | David Cabo <david@calibea.com> | 2012-03-22 00:13:43 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-05-08 13:39:16 +0100 |
commit | cb9974038b654457578dc3dadeb33d5e6f01f759 (patch) | |
tree | 931715ed411d9ee9bf140c7b7b7a4e8934b9f0ca | |
parent | 72e4db845154012dc2e5b18762942be2905cc899 (diff) |
I18n missing string in request view page
-rw-r--r-- | app/views/request/show.rhtml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/request/show.rhtml b/app/views/request/show.rhtml index c5d040fb7..611704ebe 100644 --- a/app/views/request/show.rhtml +++ b/app/views/request/show.rhtml @@ -1,4 +1,6 @@ -<% @title = "#{h(@info_request.title)} - a Freedom of Information request to #{h(@info_request.public_body.name)}" %> +<% @title = _("{{title}} - a Freedom of Information request to {{public_body}}", + :title => h(@info_request.title), + :public_body => (@info_request.public_body.name)) %> <% if @info_request.prominence == 'hidden' %> <p id="hidden_request"> |