diff options
author | Go MAEDA <maeda@farend.jp> | 2024-08-24 05:48:56 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-08-24 05:48:56 +0000 |
commit | 546c1c03493193f2a11fe0f10a15e0af35d037dd (patch) | |
tree | 84c29b784b409c0c778163dd3812e5cbdd4c9aaa /app/views | |
parent | 6cc799ac2910e00d642a7035930b08b876d62142 (diff) | |
download | redmine-546c1c03493193f2a11fe0f10a15e0af35d037dd.tar.gz redmine-546c1c03493193f2a11fe0f10a15e0af35d037dd.zip |
Fix untranslated string "OK" in repositories diff view (#39887).
git-svn-id: https://svn.redmine.org/redmine/trunk@22981 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/repositories/diff.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/repositories/diff.html.erb b/app/views/repositories/diff.html.erb index 3551c38c4..8af09e70e 100644 --- a/app/views/repositories/diff.html.erb +++ b/app/views/repositories/diff.html.erb @@ -23,7 +23,7 @@ :rev => nil}, :method => :get) do %> <%= text_field_tag 'rev', @rev, :size => 8 %> - <%= submit_tag 'OK', :name => nil %> + <%= submit_tag l(:button_view), :name => nil %> <% end %> </div> <%= render :partial => 'changeset' %> |