diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-28 20:42:18 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-28 20:42:18 +0000 |
commit | 48d83884c36fae4882061360da25f4e2ed1def13 (patch) | |
tree | 740b426a9871b943eaf366927ad7f357c4dc7656 /app/views/common | |
parent | fe690dcf20cb5c7ec6c9ed222bf88c51fdbc30eb (diff) | |
download | redmine-48d83884c36fae4882061360da25f4e2ed1def13.tar.gz redmine-48d83884c36fae4882061360da25f4e2ed1def13.zip |
Hard-coded "Back" on 404 view (#12231).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10745 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/common')
-rw-r--r-- | app/views/common/error.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/common/error.html.erb b/app/views/common/error.html.erb index 77ead9df4..5bb43dea0 100644 --- a/app/views/common/error.html.erb +++ b/app/views/common/error.html.erb @@ -3,6 +3,6 @@ <% if @message.present? %> <p id="errorExplanation"><%=h @message %></p> <% end %> -<p><a href="javascript:history.back()">Back</a></p> +<p><a href="javascript:history.back()"><%= l(:button_back) %></a></p> <% html_title @status %> |