diff options
author | David Cabo <david@calibea.com> | 2012-03-20 21:58:16 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-05-08 13:38:51 +0100 |
commit | 28aaad29a3b0ffc62aa4fe9130da7fe3cd7a9188 (patch) | |
tree | b2fceb98e45ed73655be3ec96248ea9837b81eaa | |
parent | 7c4f966f098a7e72ea9efe34de531e2002e7054f (diff) |
I18n some strings in user/show
-rw-r--r-- | app/views/user/show.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/user/show.rhtml b/app/views/user/show.rhtml index bb509ec51..f8b820f03 100644 --- a/app/views/user/show.rhtml +++ b/app/views/user/show.rhtml @@ -1,7 +1,7 @@ <% if @show_requests %> - <% @title = h(@display_user.name) + " - Freedom of Information requests" %> + <% @title = h(@display_user.name) + _(" - Freedom of Information requests") %> <% else %> - <% @title = h(@display_user.name) + " - user profile" %> + <% @title = h(@display_user.name) + _(" - user profile") %> <% end %> <% if (@same_name_users.size >= 1) %> |