diff --git a/app/views/admin/info.rhtml b/app/views/admin/info.rhtml
index 15ab9485..05c27f5a 100644
--- a/app/views/admin/info.rhtml
+++ b/app/views/admin/info.rhtml
@@ -1,16 +1,16 @@
<%=l(:label_information_plural)%>
-<%=l(:field_version)%>: <%= Redmine::Info.versioned_name %> (<%= @db_adapter_name %>)
+<%= Redmine::Info.versioned_name %> (<%= @db_adapter_name %>)
-Default administrator account changed | <%= image_tag (@flags[:default_admin_changed] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %> |
-File repository writable | <%= image_tag (@flags[:file_repository_writable] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %> |
-RMagick available | <%= image_tag (@flags[:rmagick_available] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %> |
+<%= l(:text_default_administrator_account_changed) %> | <%= image_tag (@flags[:default_admin_changed] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %> |
+<%= l(:text_file_repository_writable) %> | <%= image_tag (@flags[:file_repository_writable] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %> |
+<%= l(:text_rmagick_available) %> | <%= image_tag (@flags[:rmagick_available] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %> |
<% if @plugins.any? %>
-Plugins
+<%= l(:label_plugins) %>
<% @plugins.keys.sort {|x,y| x.to_s <=> y.to_s}.each do |plugin| %>
@@ -18,7 +18,7 @@
<%=h @plugins[plugin].description %> |
<%=h @plugins[plugin].author %> |
<%=h @plugins[plugin].version %> |
- <%= link_to('Configure', :controller => 'settings', :action => 'plugin', :id => plugin.to_s) if @plugins[plugin].configurable? %> |
+ <%= link_to(l(:button_configure), :controller => 'settings', :action => 'plugin', :id => plugin.to_s) if @plugins[plugin].configurable? %> |
<% end %>
diff --git a/app/views/projects/list_files.rhtml b/app/views/projects/list_files.rhtml
index 9b297de5..47b26238 100644
--- a/app/views/projects/list_files.rhtml
+++ b/app/views/projects/list_files.rhtml
@@ -12,7 +12,7 @@
<%=l(:field_filename)%> |
<%=l(:label_date)%> |
<%=l(:field_filesize)%> |
- D/L |
+ <%=l(:label_downloads_abbr)%> |
MD5 |
<% if delete_allowed %> | <% end %>
diff --git a/app/views/projects/settings/_modules.rhtml b/app/views/projects/settings/_modules.rhtml
index d600f209..b4decf78 100644
--- a/app/views/projects/settings/_modules.rhtml
+++ b/app/views/projects/settings/_modules.rhtml
@@ -4,9 +4,10 @@
<%= l(:text_select_project_modules) %>
-
+
<% Redmine::AccessControl.available_project_modules.each do |m| %>
-
+
<% end %>
diff --git a/app/views/settings/_authentication.rhtml b/app/views/settings/_authentication.rhtml
index a8fa63f0..6bf20cbc 100644
--- a/app/views/settings/_authentication.rhtml
+++ b/app/views/settings/_authentication.rhtml
@@ -20,7 +20,7 @@
- <%= link_to 'Manage LDAP authentication...', :controller => 'auth_sources', :action => 'list' %>
+ <%= link_to l(:label_ldap_authentication), :controller => 'auth_sources', :action => 'list' %>
<%= submit_tag l(:button_save) %>
diff --git a/lang/bg.yml b/lang/bg.yml
index 88ac9c88..a0f439ea 100644
--- a/lang/bg.yml
+++ b/lang/bg.yml
@@ -577,3 +577,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/cs.yml b/lang/cs.yml
index fd4ee522..d952ffd5 100644
--- a/lang/cs.yml
+++ b/lang/cs.yml
@@ -577,3 +577,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/de.yml b/lang/de.yml
index ba6589b2..15b033b0 100644
--- a/lang/de.yml
+++ b/lang/de.yml
@@ -577,3 +577,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/en.yml b/lang/en.yml
index c0b98623..509fe425 100644
--- a/lang/en.yml
+++ b/lang/en.yml
@@ -206,6 +206,15 @@ setting_protocol: Protocol
setting_per_page_options: Objects per page options
setting_user_format: Users display format
+project_module_issue_tracking: Issue tracking
+project_module_time_tracking: Time tracking
+project_module_news: News
+project_module_documents: Documents
+project_module_files: Files
+project_module_wiki: Wiki
+project_module_repository: Repository
+project_module_boards: Boards
+
label_user: User
label_user_plural: Users
label_user_new: New user
@@ -477,6 +486,9 @@ label_change_properties: Change properties
label_general: General
label_more: More
label_scm: SCM
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
button_login: Login
button_submit: Submit
@@ -514,6 +526,7 @@ button_change_password: Change password
button_copy: Copy
button_annotate: Annotate
button_update: Update
+button_configure: Configure
status_active: active
status_registered: registered
@@ -551,6 +564,9 @@ text_load_default_configuration: Load the default configuration
text_status_changed_by_changeset: Applied in changeset %s.
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
text_select_project_modules: 'Select modules to enable for this project:'
+text_default_administrator_account_changed: Default administrator account changed
+text_file_repository_writable: File repository writable
+text_rmagick_available: RMagick available (optional)
default_role_manager: Manager
default_role_developper: Developer
diff --git a/lang/es.yml b/lang/es.yml
index d76e7c8a..0b048af9 100644
--- a/lang/es.yml
+++ b/lang/es.yml
@@ -580,3 +580,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/fi.yml b/lang/fi.yml
index e0b1d5c4..aa6bb283 100644
--- a/lang/fi.yml
+++ b/lang/fi.yml
@@ -581,3 +581,18 @@ label_file_added: File added
label_scm: SCM
text_select_project_modules: 'Select modules to enable for this project:'
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/fr.yml b/lang/fr.yml
index 2f2c3cab..97469d7d 100644
--- a/lang/fr.yml
+++ b/lang/fr.yml
@@ -206,6 +206,15 @@ setting_protocol: Protocole
setting_per_page_options: Options d'objets affichés par page
setting_user_format: Format d'affichage des utilisateurs
+project_module_issue_tracking: Suivi des demandes
+project_module_time_tracking: Suivi du temps passé
+project_module_news: Publication d'annonces
+project_module_documents: Publication de documents
+project_module_files: Publication de fichiers
+project_module_wiki: Wiki
+project_module_repository: Dépôt de sources
+project_module_boards: Forums de discussion
+
label_user: Utilisateur
label_user_plural: Utilisateurs
label_user_new: Nouvel utilisateur
@@ -477,6 +486,9 @@ label_change_properties: Changer les propriétés
label_general: Général
label_more: Plus
label_scm: SCM
+label_plugins: Plugins
+label_ldap_authentication: Authentification LDAP
+label_downloads_abbr: D/L
button_login: Connexion
button_submit: Soumettre
@@ -514,6 +526,7 @@ button_change_password: Changer de mot de passe
button_copy: Copier
button_annotate: Annoter
button_update: Mettre à jour
+button_configure: Configurer
status_active: actif
status_registered: enregistré
@@ -551,6 +564,9 @@ text_load_default_configuration: Charger le paramétrage par défaut
text_status_changed_by_changeset: Appliqué par commit %s.
text_issues_destroy_confirmation: 'Etes-vous sûr de vouloir supprimer le(s) demandes(s) selectionnée(s) ?'
text_select_project_modules: 'Selectionner les modules à activer pour ce project:'
+text_default_administrator_account_changed: Compte administrateur par défaut changé
+text_file_repository_writable: Répertoire de stockage des fichiers accessible en écriture
+text_rmagick_available: Bibliothèque RMagick présente (optionnelle)
default_role_manager: Manager
default_role_developper: Développeur
diff --git a/lang/he.yml b/lang/he.yml
index 9cd91d38..578e3081 100644
--- a/lang/he.yml
+++ b/lang/he.yml
@@ -577,3 +577,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/it.yml b/lang/it.yml
index 78bfbb9c..650390a8 100644
--- a/lang/it.yml
+++ b/lang/it.yml
@@ -577,3 +577,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/ja.yml b/lang/ja.yml
index 0ef22d50..e926e925 100644
--- a/lang/ja.yml
+++ b/lang/ja.yml
@@ -578,3 +578,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/ko.yml b/lang/ko.yml
index 606cf7e1..cef2494a 100644
--- a/lang/ko.yml
+++ b/lang/ko.yml
@@ -577,3 +577,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/lt.yml b/lang/lt.yml
index 2447a279..e49346d3 100644
--- a/lang/lt.yml
+++ b/lang/lt.yml
@@ -578,3 +578,18 @@ label_document_added: Dokumentas pridėtas
label_message_posted: Pranešimas pridėtas
label_file_added: Byla pridėta
label_news_added: Naujiena pridėta
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/nl.yml b/lang/nl.yml
index 30ea9dd5..5f711eef 100644
--- a/lang/nl.yml
+++ b/lang/nl.yml
@@ -578,3 +578,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/pl.yml b/lang/pl.yml
index fce25d09..51b9930c 100644
--- a/lang/pl.yml
+++ b/lang/pl.yml
@@ -577,3 +577,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/pt-br.yml b/lang/pt-br.yml
index 4df1c9c1..3d47c141 100644
--- a/lang/pt-br.yml
+++ b/lang/pt-br.yml
@@ -577,3 +577,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/pt.yml b/lang/pt.yml
index 9aa017ee..578a556f 100644
--- a/lang/pt.yml
+++ b/lang/pt.yml
@@ -577,3 +577,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/ro.yml b/lang/ro.yml
index 16f05541..2139442b 100644
--- a/lang/ro.yml
+++ b/lang/ro.yml
@@ -577,3 +577,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/ru.yml b/lang/ru.yml
index d4bd0308..e4b3272f 100644
--- a/lang/ru.yml
+++ b/lang/ru.yml
@@ -581,3 +581,18 @@ label_news_added: Новость добавлена
label_calendar_filter: Включая
label_calendar_no_assigned: не мои
label_timelog_today: Расход времени за сегодня
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/sr.yml b/lang/sr.yml
index 55f66879..0972f507 100644
--- a/lang/sr.yml
+++ b/lang/sr.yml
@@ -578,3 +578,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/sv.yml b/lang/sv.yml
index b2d637dc..f370da42 100644
--- a/lang/sv.yml
+++ b/lang/sv.yml
@@ -578,3 +578,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/uk.yml b/lang/uk.yml
index dc146dcf..82d2856b 100644
--- a/lang/uk.yml
+++ b/lang/uk.yml
@@ -579,3 +579,18 @@ text_no_configuration_data: "Roles, trackers, issue statuses and workflow have n
label_news_added: News added
label_repository_plural: Repositories
error_can_t_load_default_data: "Default configuration could not be loaded: %s"
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/zh-tw.yml b/lang/zh-tw.yml
index 44bdfb12..439647ff 100644
--- a/lang/zh-tw.yml
+++ b/lang/zh-tw.yml
@@ -577,3 +577,18 @@ default_activity_development: 開發
enumeration_issue_priorities: 項目優先權
enumeration_doc_categories: 文件分類
enumeration_activities: 活動 (time tracking)
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L
diff --git a/lang/zh.yml b/lang/zh.yml
index 0edd41c5..70d97c78 100644
--- a/lang/zh.yml
+++ b/lang/zh.yml
@@ -580,3 +580,18 @@ label_document_added: Document added
label_message_posted: Message added
label_file_added: File added
label_news_added: News added
+project_module_boards: Boards
+project_module_issue_tracking: Issue tracking
+project_module_wiki: Wiki
+project_module_files: Files
+project_module_documents: Documents
+project_module_repository: Repository
+project_module_news: News
+project_module_time_tracking: Time tracking
+text_file_repository_writable: File repository writable
+text_default_administrator_account_changed: Default administrator account changed
+text_rmagick_available: RMagick available (optional)
+button_configure: Configure
+label_plugins: Plugins
+label_ldap_authentication: LDAP authentication
+label_downloads_abbr: D/L