Project

General

Profile

Defect #31698 ยป fix_some_unlocalized_string.patch

Kam Nazir, 2020-05-12 05:44

View differences:

app/views/imports/show.html.erb (date 1589254309101)
12 12
  <table id="unsaved-items" class="list">
13 13
    <thead>
14 14
    <tr>
15
      <th>Position</th>
16
      <th>Message</th>
15
      <th><%= l(:label_position) %></th>
16
      <th><%= l(:label_message) %></th>
17 17
    </tr>
18 18
    </thead>
19 19
    <tbody>
app/views/repositories/revisions.html.erb (date 1589254092940)
5 5
       :method => :get
6 6
     ) do %>
7 7
  <%= l(:label_revision) %>: <%= text_field_tag 'rev', nil, :size => 8 %>
8
  <%= submit_tag 'OK' %>
8
  <%= submit_tag l(:label_ok) %>
9 9
<% end %>
10 10
</div>
11 11

  
config/locales/en.yml (date 1589254309093)
1077 1077
  label_display_type_list: List
1078 1078
  label_display_type_board: Board
1079 1079
  label_my_bookmarks: My bookmarks
1080
  label_ok: OK
1081
  label_position: Position
1082
  label_message: Message
1080 1083

  
1081 1084
  button_login: Login
1082 1085
  button_submit: Submit
app/helpers/issues_helper.rb (date 1589253948876)
551 551
      unless no_html
552 552
        diff_link =
553 553
          link_to(
554
            'diff',
554
            l(:label_diff),
555 555
            diff_journal_url(detail.journal_id, :detail_id => detail.id,
556 556
                             :only_path => options[:only_path]),
557 557
            :title => l(:label_view_diff))
app/views/repositories/revision.html.erb (date 1589254136026)
22 22
               :rev        => nil},
23 23
               :method     => :get) do %>
24 24
    <%= text_field_tag 'rev', @rev, :size => 8 %>
25
    <%= submit_tag 'OK', :name => nil %>
25
    <%= submit_tag l(:label_ok), :name => nil %>
26 26
  <% end %>
27 27
</div>
    (1-1/1)