diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-05-08 22:12:59 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-05-08 22:12:59 +0100 |
commit | c9d00f403ce61a9067f31ac840d9044ac8a0a344 (patch) | |
tree | 01cfe609ef8437d2375ae7d250664fbd74c1011f | |
parent | cb87eeb053257e34c5af67f52689cd4d7dd37d1a (diff) |
Move angle brackets to within translation string to avoid double escaping and to allow them to be replaced with suitable localised alternatives.
-rw-r--r-- | app/views/user/set_crop_profile_photo.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/user/set_crop_profile_photo.html.erb b/app/views/user/set_crop_profile_photo.html.erb index 0167b6f0d..0a22d36dc 100644 --- a/app/views/user/set_crop_profile_photo.html.erb +++ b/app/views/user/set_crop_profile_photo.html.erb @@ -37,7 +37,7 @@ <p> <%= hidden_field_tag 'submitted_crop_profile_photo', 1 %> - <%= submit_tag _("Done") + " >>" %> + <%= submit_tag _("Done >>") %> </p> <% end %> |