Translation for various hard-coded strings (#577).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1143 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
4dc7f662e3
commit
0b6a010a12
|
@ -95,6 +95,10 @@ module ApplicationHelper
|
||||||
l(:label_added_time_by, author || 'Anonymous', time_tag)
|
l(:label_added_time_by, author || 'Anonymous', time_tag)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def l_or_humanize(s)
|
||||||
|
l_has_string?("label_#{s}".to_sym) ? l("label_#{s}".to_sym) : s.to_s.humanize
|
||||||
|
end
|
||||||
|
|
||||||
def day_name(day)
|
def day_name(day)
|
||||||
l(:general_day_names).split(',')[day-1]
|
l(:general_day_names).split(',')[day-1]
|
||||||
end
|
end
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
:html => {:id => 'modules-form'} do |f| %>
|
:html => {:id => 'modules-form'} do |f| %>
|
||||||
|
|
||||||
<div class=box>
|
<div class=box>
|
||||||
<strong>Select modules to enable for this project:</strong>
|
<strong><%= l(:text_select_project_modules) %></strong>
|
||||||
<br />
|
<br />
|
||||||
<% Redmine::AccessControl.available_project_modules.each do |m| %>
|
<% 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) %> <%= m.to_s.humanize %></label></p>
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
<% remote_form_for :repository, @repository,
|
<% remote_form_for :repository, @repository,
|
||||||
:url => { :controller => 'repositories', :action => 'edit', :id => @project },
|
:url => { :controller => 'repositories', :action => 'edit', :id => @project },
|
||||||
:builder => TabularFormBuilder do |f| %>
|
:builder => TabularFormBuilder,
|
||||||
|
:lang => current_language do |f| %>
|
||||||
|
|
||||||
<%= error_messages_for 'repository' %>
|
<%= error_messages_for 'repository' %>
|
||||||
|
|
||||||
<div class="box tabular">
|
<div class="box tabular">
|
||||||
<p><label>SCM</label><%= scm_select_tag(@repository) %></p>
|
<p><label><%= l(:label_scm) %></label><%= scm_select_tag(@repository) %></p>
|
||||||
<%= repository_field_tags(f, @repository) if @repository %>
|
<%= repository_field_tags(f, @repository) if @repository %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<% remote_form_for :wiki, @wiki,
|
<% remote_form_for :wiki, @wiki,
|
||||||
:url => { :controller => 'wikis', :action => 'edit', :id => @project },
|
:url => { :controller => 'wikis', :action => 'edit', :id => @project },
|
||||||
:builder => TabularFormBuilder do |f| %>
|
:builder => TabularFormBuilder,
|
||||||
|
:lang => current_language do |f| %>
|
||||||
|
|
||||||
<%= error_messages_for 'wiki' %>
|
<%= error_messages_for 'wiki' %>
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<fieldset class="box"><legend><%=l(:text_select_mail_notifications)%></legend>
|
<fieldset class="box"><legend><%=l(:text_select_mail_notifications)%></legend>
|
||||||
<% @notifiables.each do |notifiable| %>
|
<% @notifiables.each do |notifiable| %>
|
||||||
<label><%= check_box_tag 'settings[notified_events][]', notifiable, Setting.notified_events.include?(notifiable) %>
|
<label><%= check_box_tag 'settings[notified_events][]', notifiable, Setting.notified_events.include?(notifiable) %>
|
||||||
<%= notifiable.humanize %></label><br />
|
<%= l_or_humanize(notifiable) %></label><br />
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= hidden_field_tag 'settings[notified_events][]', '' %>
|
<%= hidden_field_tag 'settings[notified_events][]', '' %>
|
||||||
<p><%= check_all_links('mail-options-form') %></p>
|
<p><%= check_all_links('mail-options-form') %></p>
|
||||||
|
|
|
@ -569,3 +569,11 @@ setting_user_format: Потребителски формат
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -569,3 +569,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -569,3 +569,11 @@ enumeration_activities: Aktivitäten (Zeiterfassung)
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -219,9 +219,12 @@ label_issue_new: New issue
|
||||||
label_issue_plural: Issues
|
label_issue_plural: Issues
|
||||||
label_issue_view_all: View all issues
|
label_issue_view_all: View all issues
|
||||||
label_issues_by: Issues by %s
|
label_issues_by: Issues by %s
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
label_document: Document
|
label_document: Document
|
||||||
label_document_new: New document
|
label_document_new: New document
|
||||||
label_document_plural: Documents
|
label_document_plural: Documents
|
||||||
|
label_document_added: Document added
|
||||||
label_role: Role
|
label_role: Role
|
||||||
label_role_plural: Roles
|
label_role_plural: Roles
|
||||||
label_role_new: New role
|
label_role_new: New role
|
||||||
|
@ -291,6 +294,7 @@ label_attachment: File
|
||||||
label_attachment_new: New file
|
label_attachment_new: New file
|
||||||
label_attachment_delete: Delete file
|
label_attachment_delete: Delete file
|
||||||
label_attachment_plural: Files
|
label_attachment_plural: Files
|
||||||
|
label_file_added: File added
|
||||||
label_report: Report
|
label_report: Report
|
||||||
label_report_plural: Reports
|
label_report_plural: Reports
|
||||||
label_news: News
|
label_news: News
|
||||||
|
@ -298,6 +302,7 @@ label_news_new: Add news
|
||||||
label_news_plural: News
|
label_news_plural: News
|
||||||
label_news_latest: Latest news
|
label_news_latest: Latest news
|
||||||
label_news_view_all: View all news
|
label_news_view_all: View all news
|
||||||
|
label_news_added: News added
|
||||||
label_change_log: Change log
|
label_change_log: Change log
|
||||||
label_settings: Settings
|
label_settings: Settings
|
||||||
label_overview: Overview
|
label_overview: Overview
|
||||||
|
@ -435,6 +440,7 @@ label_topic_plural: Topics
|
||||||
label_message_plural: Messages
|
label_message_plural: Messages
|
||||||
label_message_last: Last message
|
label_message_last: Last message
|
||||||
label_message_new: New message
|
label_message_new: New message
|
||||||
|
label_message_posted: Message added
|
||||||
label_reply_plural: Replies
|
label_reply_plural: Replies
|
||||||
label_send_information: Send account information to the user
|
label_send_information: Send account information to the user
|
||||||
label_year: Year
|
label_year: Year
|
||||||
|
@ -470,6 +476,7 @@ label_age: Age
|
||||||
label_change_properties: Change properties
|
label_change_properties: Change properties
|
||||||
label_general: General
|
label_general: General
|
||||||
label_more: More
|
label_more: More
|
||||||
|
label_scm: SCM
|
||||||
|
|
||||||
button_login: Login
|
button_login: Login
|
||||||
button_submit: Submit
|
button_submit: Submit
|
||||||
|
@ -543,6 +550,7 @@ text_no_configuration_data: "Roles, trackers, issue statuses and workflow have n
|
||||||
text_load_default_configuration: Load the default configuration
|
text_load_default_configuration: Load the default configuration
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
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_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:'
|
||||||
|
|
||||||
default_role_manager: Manager
|
default_role_manager: Manager
|
||||||
default_role_developper: Developer
|
default_role_developper: Developer
|
||||||
|
|
|
@ -572,3 +572,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -573,3 +573,11 @@ setting_user_format: Käyttäjien esitysmuoto
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
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_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
label_more: More
|
label_more: More
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
11
lang/fr.yml
11
lang/fr.yml
|
@ -68,7 +68,6 @@ notice_successful_delete: Suppression effectuée avec succès.
|
||||||
notice_successful_connection: Connection réussie.
|
notice_successful_connection: Connection réussie.
|
||||||
notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
|
notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
|
||||||
notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
|
notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
|
||||||
notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
|
|
||||||
notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
|
notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
|
||||||
notice_email_sent: "Un email a été envoyé à %s"
|
notice_email_sent: "Un email a été envoyé à %s"
|
||||||
notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
|
notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
|
||||||
|
@ -219,10 +218,13 @@ label_issue: Demande
|
||||||
label_issue_new: Nouvelle demande
|
label_issue_new: Nouvelle demande
|
||||||
label_issue_plural: Demandes
|
label_issue_plural: Demandes
|
||||||
label_issue_view_all: Voir toutes les demandes
|
label_issue_view_all: Voir toutes les demandes
|
||||||
|
label_issue_added: Demande ajoutée
|
||||||
|
label_issue_updated: Demande mise à jour
|
||||||
label_issues_by: Demandes par %s
|
label_issues_by: Demandes par %s
|
||||||
label_document: Document
|
label_document: Document
|
||||||
label_document_new: Nouveau document
|
label_document_new: Nouveau document
|
||||||
label_document_plural: Documents
|
label_document_plural: Documents
|
||||||
|
label_document_added: Document ajouté
|
||||||
label_role: Rôle
|
label_role: Rôle
|
||||||
label_role_plural: Rôles
|
label_role_plural: Rôles
|
||||||
label_role_new: Nouveau rôle
|
label_role_new: Nouveau rôle
|
||||||
|
@ -292,6 +294,7 @@ label_attachment: Fichier
|
||||||
label_attachment_new: Nouveau fichier
|
label_attachment_new: Nouveau fichier
|
||||||
label_attachment_delete: Supprimer le fichier
|
label_attachment_delete: Supprimer le fichier
|
||||||
label_attachment_plural: Fichiers
|
label_attachment_plural: Fichiers
|
||||||
|
label_file_added: Fichier ajouté
|
||||||
label_report: Rapport
|
label_report: Rapport
|
||||||
label_report_plural: Rapports
|
label_report_plural: Rapports
|
||||||
label_news: Annonce
|
label_news: Annonce
|
||||||
|
@ -299,6 +302,7 @@ label_news_new: Nouvelle annonce
|
||||||
label_news_plural: Annonces
|
label_news_plural: Annonces
|
||||||
label_news_latest: Dernières annonces
|
label_news_latest: Dernières annonces
|
||||||
label_news_view_all: Voir toutes les annonces
|
label_news_view_all: Voir toutes les annonces
|
||||||
|
label_news_added: Annonce ajoutée
|
||||||
label_change_log: Historique
|
label_change_log: Historique
|
||||||
label_settings: Configuration
|
label_settings: Configuration
|
||||||
label_overview: Aperçu
|
label_overview: Aperçu
|
||||||
|
@ -436,6 +440,7 @@ label_topic_plural: Discussions
|
||||||
label_message_plural: Messages
|
label_message_plural: Messages
|
||||||
label_message_last: Dernier message
|
label_message_last: Dernier message
|
||||||
label_message_new: Nouveau message
|
label_message_new: Nouveau message
|
||||||
|
label_message_posted: Message ajouté
|
||||||
label_reply_plural: Réponses
|
label_reply_plural: Réponses
|
||||||
label_send_information: Envoyer les informations à l'utilisateur
|
label_send_information: Envoyer les informations à l'utilisateur
|
||||||
label_year: Année
|
label_year: Année
|
||||||
|
@ -471,6 +476,7 @@ label_age: Age
|
||||||
label_change_properties: Changer les propriétés
|
label_change_properties: Changer les propriétés
|
||||||
label_general: Général
|
label_general: Général
|
||||||
label_more: Plus
|
label_more: Plus
|
||||||
|
label_scm: SCM
|
||||||
|
|
||||||
button_login: Connexion
|
button_login: Connexion
|
||||||
button_submit: Soumettre
|
button_submit: Soumettre
|
||||||
|
@ -513,7 +519,7 @@ status_active: actif
|
||||||
status_registered: enregistré
|
status_registered: enregistré
|
||||||
status_locked: vérouillé
|
status_locked: vérouillé
|
||||||
|
|
||||||
text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
|
text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyée
|
||||||
text_regexp_info: ex. ^[A-Z0-9]+$
|
text_regexp_info: ex. ^[A-Z0-9]+$
|
||||||
text_min_max_length_info: 0 pour aucune restriction
|
text_min_max_length_info: 0 pour aucune restriction
|
||||||
text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
|
text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
|
||||||
|
@ -544,6 +550,7 @@ text_no_configuration_data: "Les rôles, trackers, statuts et le workflow ne son
|
||||||
text_load_default_configuration: Charger le paramétrage par défaut
|
text_load_default_configuration: Charger le paramétrage par défaut
|
||||||
text_status_changed_by_changeset: Appliqué par commit %s.
|
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_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:'
|
||||||
|
|
||||||
default_role_manager: Manager
|
default_role_manager: Manager
|
||||||
default_role_developper: Développeur
|
default_role_developper: Développeur
|
||||||
|
|
|
@ -569,3 +569,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -569,3 +569,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -570,3 +570,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -569,3 +569,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -570,3 +570,11 @@ setting_user_format: Vartotojo atvaizdavimo formatas
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -570,3 +570,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -569,3 +569,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -569,3 +569,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -569,3 +569,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -569,3 +569,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -570,3 +570,11 @@ enumeration_activities: Действия (учет времени)
|
||||||
text_status_changed_by_changeset: Реализовано в %s редакции.
|
text_status_changed_by_changeset: Реализовано в %s редакции.
|
||||||
label_more: Больше
|
label_more: Больше
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -570,3 +570,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -570,3 +570,11 @@ setting_user_format: Users display format
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -569,3 +569,11 @@ enumeration_activities: 活動 (time tracking)
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
|
@ -572,3 +572,11 @@ setting_user_format: 用户显示格式
|
||||||
text_status_changed_by_changeset: Applied in changeset %s.
|
text_status_changed_by_changeset: Applied in changeset %s.
|
||||||
label_more: More
|
label_more: More
|
||||||
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
|
||||||
|
label_scm: SCM
|
||||||
|
text_select_project_modules: 'Select modules to enable for this project:'
|
||||||
|
label_issue_added: Issue added
|
||||||
|
label_issue_updated: Issue updated
|
||||||
|
label_document_added: Document added
|
||||||
|
label_message_posted: Message added
|
||||||
|
label_file_added: File added
|
||||||
|
label_news_added: News added
|
||||||
|
|
Loading…
Reference in New Issue