]> source.dussan.org Git - redmine.git/commitdiff
Added translation support for project modules names and a few other strings.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 16 Feb 2008 10:15:19 +0000 (10:15 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 16 Feb 2008 10:15:19 +0000 (10:15 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1151 e93f8b46-1217-0410-a6f0-8f06a7374b81

27 files changed:
app/views/admin/info.rhtml
app/views/projects/list_files.rhtml
app/views/projects/settings/_modules.rhtml
app/views/settings/_authentication.rhtml
lang/bg.yml
lang/cs.yml
lang/de.yml
lang/en.yml
lang/es.yml
lang/fi.yml
lang/fr.yml
lang/he.yml
lang/it.yml
lang/ja.yml
lang/ko.yml
lang/lt.yml
lang/nl.yml
lang/pl.yml
lang/pt-br.yml
lang/pt.yml
lang/ro.yml
lang/ru.yml
lang/sr.yml
lang/sv.yml
lang/uk.yml
lang/zh-tw.yml
lang/zh.yml

index 15ab94851ce34335b2f26798cd9be2ace7e1f5ff..05c27f5acfea5af6baaf0eaf6e3e2e87cc39d1e4 100644 (file)
@@ -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? %>
 &nbsp;
-<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>
index 9b297de59b4d1be7a3daf29c46ceceae86f08ba1..47b262388d386951e290e26c23c711876e49e65f 100644 (file)
@@ -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>
index d600f2090f483b5d9c6010bc19950353afed28a1..b4decf78a79a42b128d59e069545f3548689ee9c 100644 (file)
@@ -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>
 
index a8fa63f0da7042bb5682fa4c7a1ec1295f363695..6bf20cbce5499b665261bb857be19015a50a2542 100644 (file)
@@ -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) %>
index 88ac9c889676c14fb8f4536f032e576d95248b58..a0f439eab2b8e780dad6fe008b1fb6799fd2c5e5 100644 (file)
@@ -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
index fd4ee522384b5d290feb27301374b2d18e824c2d..d952ffd57f7c5705ee976079a2e64b1b49b569f1 100644 (file)
@@ -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
index ba6589b241854d03eb661ffacefd8d41cd51d066..15b033b049bd85f6efde4efae83a6722fe0a4f72 100644 (file)
@@ -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
index c0b9862384487b84c2f441839a5dd44aab1e6247..509fe4252313e9ee9154c4e076b11ad1e1ea35ad 100644 (file)
@@ -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
index d76e7c8a62e89cb916c258003f3f13e2e436b57b..0b048af9b63a64a9630912b1a10bd189e48b85ca 100644 (file)
@@ -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
index e0b1d5c4a281deb1d22dd7af54cf514202d2f1bd..aa6bb28348ca6d269e87641165dad365734a0167 100644 (file)
@@ -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
index 2f2c3cab1734ff82416450b0332e291e98283fa6..97469d7dfc0b5d84cdc329b4c9386c3a68a099c0 100644 (file)
@@ -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
index 9cd91d3877c4e89ae3d7c2ae307bf61ae20c7ac2..578e30814843666e7d64ecc59336dffaa6f94f75 100644 (file)
@@ -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
index 78bfbb9c32bba24507d25f01803ff09f4f9d3c00..650390a88e91954608245d67884ed681be390ab7 100644 (file)
@@ -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
index 0ef22d50b8689d98af4739034cac0ffaa03b3801..e926e9255da5b42307e2efcd8752f1ca62640f47 100644 (file)
@@ -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
index 606cf7e1125c656a19b9b49a3bb51c8898f1adf2..cef2494a44d6b1f662fe240a0cb469c926acd2c4 100644 (file)
@@ -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
index 2447a279d0b46a5486298e6168f72c971bbd26ad..e49346d3e1d2cc9f616fd365b9af7363214a837e 100644 (file)
@@ -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
index 30ea9dd5d11e482b3f96fe41087ce7cc815ef4f4..5f711eef2aa6f1c7054b25b6442edc00ed0bb668 100644 (file)
@@ -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
index fce25d09b53d70e905021aab30b4ae2c4ec25cc2..51b9930cb94d927855cab74480f67bf915e9b0f9 100644 (file)
@@ -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
index 4df1c9c1e141bb212c48e054b231c6eba6487642..3d47c141776015dc4dcffb2b3a1138e79990f109 100644 (file)
@@ -577,3 +577,18 @@ label_document_added: Document added
 label_message_posted: Message added\r
 label_file_added: File added\r
 label_news_added: News added\r
+project_module_boards: Boards\r
+project_module_issue_tracking: Issue tracking\r
+project_module_wiki: Wiki\r
+project_module_files: Files\r
+project_module_documents: Documents\r
+project_module_repository: Repository\r
+project_module_news: News\r
+project_module_time_tracking: Time tracking\r
+text_file_repository_writable: File repository writable\r
+text_default_administrator_account_changed: Default administrator account changed\r
+text_rmagick_available: RMagick available (optional)\r
+button_configure: Configure\r
+label_plugins: Plugins\r
+label_ldap_authentication: LDAP authentication\r
+label_downloads_abbr: D/L\r
index 9aa017ee975743ff2c4a492b4dcf76a78725b0fa..578a556fec6d7b39ef7d0a8b6cacfa1ba4f27c44 100644 (file)
@@ -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
index 16f0554134d9a25a5c008b742eeacc5ccd8884a4..2139442b5e97a65495631d445edadd1ce590dad0 100644 (file)
@@ -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
index d4bd03080aa2fdf92fe5039cb6cb349a386d0d86..e4b3272f6a6f5142719fcd90679ee18dcbf84b96 100644 (file)
@@ -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
index 55f668790aa455c6b0ba27f9474840ca5ad06128..0972f507dd1b424fa4d49623c391659976b728b9 100644 (file)
@@ -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
index b2d637dca65471656983cf75c9434af90cd65360..f370da42bcf12fa91861aedf46a2c5f5d1f44455 100644 (file)
@@ -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
index dc146dcfdfbeb22b5cf007a0721e451f35cb7e2b..82d2856b505290ebefafc9d34c9d1ea9df105bbe 100644 (file)
@@ -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
index 44bdfb12aded0d77d1e4eada4555c9d612eacc18..439647ff88d19f13f2a5e211864280b2855e16a3 100644 (file)
@@ -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
index 0edd41c52be163852b8a83a3bc98aa1d89e04a37..70d97c78115c3ad3411185c63808cd401ccfd9a6 100644 (file)
@@ -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