1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 19:47:14 +00:00

Use label_view instead of the untranslated string "OK" in the repository browser (#38509).

Patch by Go MAEDA.


git-svn-id: https://svn.redmine.org/redmine/trunk@22231 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2023-05-05 21:50:55 +00:00
parent d459904ded
commit e575b7a6fc
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,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>

View File

@ -5,7 +5,7 @@
:method => :get
) do %>
<%= l(:label_revision) %>: <%= text_field_tag 'rev', nil, :size => 8 %>
<%= submit_tag 'OK' %>
<%= submit_tag l(:button_view) %>
<% end %>
</div>