Merge pull request #205 from opf/feature/rails3_added_hooks_for_admin_info

Added hooks to admin info view
pull/207/merge
sschu 12 years ago
commit c3b21f0859
  1. 7
      app/views/admin/info.html.erb
  2. 2
      config/locales/de.yml
  3. 2
      config/locales/en.yml

@ -10,10 +10,13 @@ See doc/COPYRIGHT.rdoc for more details.
++#%>
<h2><%=l(:label_information_plural)%></h2>
<%= content_tag :h2, I18n.t('label_information_plural') %>
<%= call_hook(:view_admin_info_top) %>
<%= content_tag :h3, I18n.t('label_core_version') %>
<p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p>
<%= content_tag :h3, I18n.t('label_system') %>
<table class="list">
<% @checklist.each do |label, result| %>
<tr class="<%= cycle 'odd', 'even' %>">
@ -22,5 +25,5 @@ See doc/COPYRIGHT.rdoc for more details.
</tr>
<% end %>
</table>
<%= call_hook(:view_admin_info_bottom) %>
<% html_title(l(:label_information_plural)) -%>

@ -624,6 +624,7 @@ de:
label_copy_source: "Quelle"
label_copy_target: "Ziel"
label_copy_workflow_from: "Workflow kopieren von"
label_core_version: "Core Version"
label_current_status: "Gegenwärtiger Status"
label_current_version: "Gegenwärtige Version"
label_custom_field_new: "Neues Feld"
@ -870,6 +871,7 @@ de:
label_subtask_plural: "Unteraufgaben"
label_sum_for: "Summe für %{value}"
label_summary: "Zusammenfassung"
label_system: "System"
label_table_of_contents: "Inhaltsverzeichnis"
label_tag: "Markierung"
label_text: "Langer Text"

@ -610,6 +610,7 @@ en:
label_copy_source: "Source"
label_copy_target: "Target"
label_copy_workflow_from: "Copy workflow from"
label_core_version: "Core version"
label_current_status: "Current status"
label_current_version: "Current version"
label_custom_field_new: "New custom field"
@ -859,6 +860,7 @@ en:
label_subtask_plural: "Subtasks"
label_sum_for: "Sum for %{value}"
label_summary: "Summary"
label_system: "System"
label_table_of_contents: "Table of Contents"
label_tag: "Tag"
label_text: "Long text"

Loading…
Cancel
Save