diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-04-23 07:55:42 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-04-23 07:55:42 +0100 |
commit | 6df23e10dfbf3351d3953f99062d46253b5ec94a (patch) | |
tree | 5627159a0ec0f8a41ee650241a8da731bd8e4526 | |
parent | a33c560ab2a3a6c1090dc0334b85c46b9f45c107 (diff) |
Missing i18n string on user page
-rw-r--r-- | app/views/user/show.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/user/show.rhtml b/app/views/user/show.rhtml index 8f1803442..bb509ec51 100644 --- a/app/views/user/show.rhtml +++ b/app/views/user/show.rhtml @@ -139,7 +139,7 @@ <% if !@xapian_requests.nil? %> <% if @xapian_requests.results.empty? %> <% if @page == 1 %> - <h2 class="foi_results" id="foi_requests"><%= @is_you ? 'Freedom of Information requests made by you' : 'Freedom of Information requests made by this person' %> <%= @match_phrase %> + <h2 class="foi_results" id="foi_requests"><%= @is_you ? _('Freedom of Information requests made by you') : _('Freedom of Information requests made by this person') %> <%= @match_phrase %> </h2> <p><%= @is_you ? _('You have made no Freedom of Information requests using this site.') : _('This person has made no Freedom of Information requests using this site.') %> <%= @page_desc %> |