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 | |
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
-rw-r--r-- | app/views/admin/info.rhtml | 12 | ||||
-rw-r--r-- | app/views/projects/list_files.rhtml | 2 | ||||
-rw-r--r-- | app/views/projects/settings/_modules.rhtml | 5 | ||||
-rw-r--r-- | app/views/settings/_authentication.rhtml | 2 | ||||
-rw-r--r-- | lang/bg.yml | 15 | ||||
-rw-r--r-- | lang/cs.yml | 15 | ||||
-rw-r--r-- | lang/de.yml | 15 | ||||
-rw-r--r-- | lang/en.yml | 16 | ||||
-rw-r--r-- | lang/es.yml | 15 | ||||
-rw-r--r-- | lang/fi.yml | 15 | ||||
-rw-r--r-- | lang/fr.yml | 16 | ||||
-rw-r--r-- | lang/he.yml | 15 | ||||
-rw-r--r-- | lang/it.yml | 15 | ||||
-rw-r--r-- | lang/ja.yml | 15 | ||||
-rw-r--r-- | lang/ko.yml | 15 | ||||
-rw-r--r-- | lang/lt.yml | 15 | ||||
-rw-r--r-- | lang/nl.yml | 15 | ||||
-rw-r--r-- | lang/pl.yml | 15 | ||||
-rw-r--r-- | lang/pt-br.yml | 15 | ||||
-rw-r--r-- | lang/pt.yml | 15 | ||||
-rw-r--r-- | lang/ro.yml | 15 | ||||
-rw-r--r-- | lang/ru.yml | 15 | ||||
-rw-r--r-- | lang/sr.yml | 15 | ||||
-rw-r--r-- | lang/sv.yml | 15 | ||||
-rw-r--r-- | lang/uk.yml | 15 | ||||
-rw-r--r-- | lang/zh-tw.yml | 15 | ||||
-rw-r--r-- | lang/zh.yml | 15 |
27 files changed, 358 insertions, 10 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> diff --git a/app/views/projects/list_files.rhtml b/app/views/projects/list_files.rhtml index 9b297de59..47b262388 100644 --- a/app/views/projects/list_files.rhtml +++ b/app/views/projects/list_files.rhtml @@ -12,7 +12,7 @@ <th><%=l(:field_filename)%></th> <th><%=l(:label_date)%></th> <th><%=l(:field_filesize)%></th> - <th>D/L</th> + <th><%=l(:label_downloads_abbr)%></th> <th>MD5</th> <% if delete_allowed %><th></th><% end %> </tr></thead> diff --git a/app/views/projects/settings/_modules.rhtml b/app/views/projects/settings/_modules.rhtml index d600f2090..b4decf78a 100644 --- a/app/views/projects/settings/_modules.rhtml +++ b/app/views/projects/settings/_modules.rhtml @@ -4,9 +4,10 @@ <div class=box> <strong><%= l(:text_select_project_modules) %></strong> -<br /> + <% Redmine::AccessControl.available_project_modules.each do |m| %> -<p><label><%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %> <%= m.to_s.humanize %></label></p> +<p><label><%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) -%> + <%= (l_has_string?("project_module_#{m}".to_sym) ? l("project_module_#{m}".to_sym) : m.to_s.humanize) %></label></p> <% end %> </div> diff --git a/app/views/settings/_authentication.rhtml b/app/views/settings/_authentication.rhtml index a8fa63f0d..6bf20cbce 100644 --- a/app/views/settings/_authentication.rhtml +++ b/app/views/settings/_authentication.rhtml @@ -20,7 +20,7 @@ </div> <div style="float:right;"> - <%= link_to 'Manage LDAP authentication...', :controller => 'auth_sources', :action => 'list' %> + <%= link_to l(:label_ldap_authentication), :controller => 'auth_sources', :action => 'list' %> </div> <%= submit_tag l(:button_save) %> diff --git a/lang/bg.yml b/lang/bg.yml index 88ac9c889..a0f439eab 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 fd4ee5223..d952ffd57 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 ba6589b24..15b033b04 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 c0b986238..509fe4252 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 d76e7c8a6..0b048af9b 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 e0b1d5c4a..aa6bb2834 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 2f2c3cab1..97469d7df 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 9cd91d387..578e30814 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 78bfbb9c3..650390a88 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 0ef22d50b..e926e9255 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 606cf7e11..cef2494a4 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 2447a279d..e49346d3e 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 30ea9dd5d..5f711eef2 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 fce25d09b..51b9930cb 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 4df1c9c1e..3d47c1417 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 9aa017ee9..578a556fe 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 16f055413..2139442b5 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 d4bd03080..e4b3272f6 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 55f668790..0972f507d 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 b2d637dca..f370da42b 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 dc146dcfd..82d2856b5 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 44bdfb12a..439647ff8 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 0edd41c52..70d97c781 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 |