diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-02-16 10:15:19 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-02-16 10:15:19 +0000 |
commit | abb0b15407b33cbe50dc263474631c5bfcf2bd5f (patch) | |
tree | 422896e7c0096762f52ed108f450bf15f85a415d /app/views/admin | |
parent | 384a444cee694c7a8fcaeb91b421164ac255ac56 (diff) | |
download | redmine-abb0b15407b33cbe50dc263474631c5bfcf2bd5f.tar.gz redmine-abb0b15407b33cbe50dc263474631c5bfcf2bd5f.zip |
Added translation support for project modules names and a few other strings.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1151 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/info.rhtml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/views/admin/info.rhtml b/app/views/admin/info.rhtml index 15ab94851..05c27f5ac 100644 --- a/app/views/admin/info.rhtml +++ b/app/views/admin/info.rhtml @@ -1,16 +1,16 @@ <h2><%=l(:label_information_plural)%></h2> -<p><%=l(:field_version)%>: <strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p> +<p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p> <table class="list"> -<tr class="odd"><td>Default administrator account changed</td><td><%= image_tag (@flags[:default_admin_changed] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr> -<tr class="even"><td>File repository writable</td><td><%= image_tag (@flags[:file_repository_writable] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr> -<tr class="odd"><td>RMagick available</td><td><%= image_tag (@flags[:rmagick_available] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr> +<tr class="odd"><td><%= l(:text_default_administrator_account_changed) %></td><td><%= image_tag (@flags[:default_admin_changed] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr> +<tr class="even"><td><%= l(:text_file_repository_writable) %></td><td><%= image_tag (@flags[:file_repository_writable] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr> +<tr class="odd"><td><%= l(:text_rmagick_available) %></td><td><%= image_tag (@flags[:rmagick_available] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr> </table> <% if @plugins.any? %> -<h3 class="icon22 icon22-plugin">Plugins</h3> +<h3 class="icon22 icon22-plugin"><%= l(:label_plugins) %></h3> <table class="list"> <% @plugins.keys.sort {|x,y| x.to_s <=> y.to_s}.each do |plugin| %> <tr class="<%= cycle('odd', 'even') %>"> @@ -18,7 +18,7 @@ <td><%=h @plugins[plugin].description %></td> <td><%=h @plugins[plugin].author %></td> <td><%=h @plugins[plugin].version %></td> - <td><%= link_to('Configure', :controller => 'settings', :action => 'plugin', :id => plugin.to_s) if @plugins[plugin].configurable? %></td> + <td><%= link_to(l(:button_configure), :controller => 'settings', :action => 'plugin', :id => plugin.to_s) if @plugins[plugin].configurable? %></td> </tr> <% end %> </table> |