Merge branch 'refs/heads/pulls/663/add-alt-tags' into feature/2.4.0/accessibility-master

pull/41/head
Romano Licker 13 years ago
commit 50b324c5c0
  1. 4
      app/views/boards/show.rhtml
  2. 3
      app/views/my/_block.rhtml
  3. 4
      app/views/queries/_columns.rhtml
  4. 5
      config/locales/de.yml
  5. 5
      config/locales/en.yml
  6. 3
      public/stylesheets/application.css

@ -41,8 +41,8 @@
</tr></thead> </tr></thead>
<tbody> <tbody>
<% @topics.each do |topic| %> <% @topics.each do |topic| %>
<tr class="message <%= cycle 'odd', 'even' %> <%= topic.sticky? ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>"> <tr class="message <%= cycle 'odd', 'even' %>">
<td class="subject"><%= link_to h(topic.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => topic } %></td> <td class="subject"><%= image_tag('locked.png', :alt => l(:label_board_locked)) if topic.locked? %><%= image_tag 'bullet_go.png', :alt => l(:label_board_sticky) if topic.sticky? %><%= link_to h(topic.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => topic } %></td>
<td class="author" align="center"><%= link_to_user(topic.author) %></td> <td class="author" align="center"><%= link_to_user(topic.author) %></td>
<td class="created_on" align="center"><%= format_time(topic.created_on) %></td> <td class="created_on" align="center"><%= format_time(topic.created_on) %></td>
<td class="replies" align="center"><%= topic.replies_count %></td> <td class="replies" align="center"><%= topic.replies_count %></td>

@ -4,7 +4,8 @@
<%= link_to_remote "", { <%= link_to_remote "", {
:url => { :action => "remove_block", :block => block_name }, :url => { :action => "remove_block", :block => block_name },
:complete => "removeBlock('block_#{block_name.dasherize}')" }, :complete => "removeBlock('block_#{block_name.dasherize}')" },
:class => "close-icon" :class => "close-icon",
:title => l(:button_remove_widget)
%> %>
</div> </div>

@ -10,10 +10,10 @@
<td align="center" valign="middle"> <td align="center" valign="middle">
<input type="button" value="&#8594;" <input type="button" value="&#8594;"
onclick="moveOptions(this.form.available_columns, this.form.selected_columns);" onclick="moveOptions(this.form.available_columns, this.form.selected_columns);"
title="<%= l(:label_sort_right) %>"/><br /> title="<%= l(:label_add_columns) %>"/><br />
<input type="button" value="&#8592;" <input type="button" value="&#8592;"
onclick="moveOptions(this.form.selected_columns, this.form.available_columns);" onclick="moveOptions(this.form.selected_columns, this.form.available_columns);"
title="<%= l(:label_sort_left) %>" /> title="<%= l(:label_remove_columns) %>" />
</td> </td>
<td> <td>
<%= label_tag "selected_columns", l(:description_selected_columns) %> <%= label_tag "selected_columns", l(:description_selected_columns) %>

@ -658,8 +658,8 @@ de:
label_sort_higher: Eins höher label_sort_higher: Eins höher
label_sort_lower: Eins tiefer label_sort_lower: Eins tiefer
label_sort_lowest: Ans Ende label_sort_lowest: Ans Ende
label_sort_right: Eins nach rechts label_add_columns: Ausgewählte Spalten hinzufügen
label_sort_left: Eins nach links label_remove_columns: Ausgewählte Spalten entfernen
label_roadmap: Roadmap label_roadmap: Roadmap
label_roadmap_due_in: "Fällig in %{value}" label_roadmap_due_in: "Fällig in %{value}"
label_roadmap_overdue: "%{value} verspätet" label_roadmap_overdue: "%{value} verspätet"
@ -857,6 +857,7 @@ de:
button_quote: Zitieren button_quote: Zitieren
button_duplicate: Duplizieren button_duplicate: Duplizieren
button_show: Anzeigen button_show: Anzeigen
button_remove_widget: Infobox löschen
status_active: aktiv status_active: aktiv
status_registered: angemeldet status_registered: angemeldet

@ -658,8 +658,8 @@ en:
label_sort_higher: Move up label_sort_higher: Move up
label_sort_lower: Move down label_sort_lower: Move down
label_sort_lowest: Move to bottom label_sort_lowest: Move to bottom
label_sort_right: Move right label_add_columns: Add selected columns
label_sort_left: Move left label_remove_columns: Remove selected columns
label_roadmap: Roadmap label_roadmap: Roadmap
label_roadmap_due_in: "Due in %{value}" label_roadmap_due_in: "Due in %{value}"
label_roadmap_overdue: "%{value} late" label_roadmap_overdue: "%{value} late"
@ -875,6 +875,7 @@ en:
button_quote: Quote button_quote: Quote
button_duplicate: Duplicate button_duplicate: Duplicate
button_show: Show button_show: Show
button_remove_widget: Remove widget
status_active: active status_active: active
status_registered: registered status_registered: registered

@ -152,11 +152,8 @@ table.files tr.file td.digest { font-size: 80%; }
table.members td.roles, table.memberships td.roles { width: 45%; } table.members td.roles, table.memberships td.roles { width: 45%; }
tr.message { height: 2.6em; } tr.message { height: 2.6em; }
tr.message td.subject { padding-left: 20px; }
tr.message td.created_on { white-space: nowrap; } tr.message td.created_on { white-space: nowrap; }
tr.message td.last_message { font-size: 80%; white-space: nowrap; } tr.message td.last_message { font-size: 80%; white-space: nowrap; }
tr.message.locked td.subject { background: url(../images/locked.png) no-repeat 0 1px; }
tr.message.sticky td.subject { background: url(../images/bullet_go.png) no-repeat 0 1px; font-weight: bold; }
tr.version.closed, tr.version.closed a { color: #999; } tr.version.closed, tr.version.closed a { color: #999; }
tr.version td.name { padding-left: 20px; } tr.version td.name { padding-left: 20px; }

Loading…
Cancel
Save