@@ -95,6 +95,10 module ApplicationHelper | |||||
95 | l(:label_added_time_by, author || 'Anonymous', time_tag) |
|
95 | l(:label_added_time_by, author || 'Anonymous', time_tag) | |
96 | end |
|
96 | end | |
97 |
|
97 | |||
|
98 | def l_or_humanize(s) | |||
|
99 | l_has_string?("label_#{s}".to_sym) ? l("label_#{s}".to_sym) : s.to_s.humanize | |||
|
100 | end | |||
|
101 | ||||
98 | def day_name(day) |
|
102 | def day_name(day) | |
99 | l(:general_day_names).split(',')[day-1] |
|
103 | l(:general_day_names).split(',')[day-1] | |
100 | end |
|
104 | end |
@@ -3,7 +3,7 | |||||
3 | :html => {:id => 'modules-form'} do |f| %> |
|
3 | :html => {:id => 'modules-form'} do |f| %> | |
4 |
|
4 | |||
5 | <div class=box> |
|
5 | <div class=box> | |
6 | <strong>Select modules to enable for this project:</strong> |
|
6 | <strong><%= l(:text_select_project_modules) %></strong> | |
7 | <br /> |
|
7 | <br /> | |
8 | <% Redmine::AccessControl.available_project_modules.each do |m| %> |
|
8 | <% Redmine::AccessControl.available_project_modules.each do |m| %> | |
9 | <p><label><%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %> <%= m.to_s.humanize %></label></p> |
|
9 | <p><label><%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %> <%= m.to_s.humanize %></label></p> |
@@ -1,11 +1,12 | |||||
1 | <% remote_form_for :repository, @repository, |
|
1 | <% remote_form_for :repository, @repository, | |
2 | :url => { :controller => 'repositories', :action => 'edit', :id => @project }, |
|
2 | :url => { :controller => 'repositories', :action => 'edit', :id => @project }, | |
3 |
:builder => TabularFormBuilder |
|
3 | :builder => TabularFormBuilder, | |
|
4 | :lang => current_language do |f| %> | |||
4 |
|
5 | |||
5 | <%= error_messages_for 'repository' %> |
|
6 | <%= error_messages_for 'repository' %> | |
6 |
|
7 | |||
7 | <div class="box tabular"> |
|
8 | <div class="box tabular"> | |
8 |
<p><label> |
|
9 | <p><label><%= l(:label_scm) %></label><%= scm_select_tag(@repository) %></p> | |
9 | <%= repository_field_tags(f, @repository) if @repository %> |
|
10 | <%= repository_field_tags(f, @repository) if @repository %> | |
10 | </div> |
|
11 | </div> | |
11 |
|
12 |
@@ -1,6 +1,7 | |||||
1 | <% remote_form_for :wiki, @wiki, |
|
1 | <% remote_form_for :wiki, @wiki, | |
2 | :url => { :controller => 'wikis', :action => 'edit', :id => @project }, |
|
2 | :url => { :controller => 'wikis', :action => 'edit', :id => @project }, | |
3 |
:builder => TabularFormBuilder |
|
3 | :builder => TabularFormBuilder, | |
|
4 | :lang => current_language do |f| %> | |||
4 |
|
5 | |||
5 | <%= error_messages_for 'wiki' %> |
|
6 | <%= error_messages_for 'wiki' %> | |
6 |
|
7 |
@@ -12,7 +12,7 | |||||
12 | <fieldset class="box"><legend><%=l(:text_select_mail_notifications)%></legend> |
|
12 | <fieldset class="box"><legend><%=l(:text_select_mail_notifications)%></legend> | |
13 | <% @notifiables.each do |notifiable| %> |
|
13 | <% @notifiables.each do |notifiable| %> | |
14 | <label><%= check_box_tag 'settings[notified_events][]', notifiable, Setting.notified_events.include?(notifiable) %> |
|
14 | <label><%= check_box_tag 'settings[notified_events][]', notifiable, Setting.notified_events.include?(notifiable) %> | |
15 |
<%= notifiable |
|
15 | <%= l_or_humanize(notifiable) %></label><br /> | |
16 | <% end %> |
|
16 | <% end %> | |
17 | <%= hidden_field_tag 'settings[notified_events][]', '' %> |
|
17 | <%= hidden_field_tag 'settings[notified_events][]', '' %> | |
18 | <p><%= check_all_links('mail-options-form') %></p> |
|
18 | <p><%= check_all_links('mail-options-form') %></p> |
@@ -569,3 +569,11 setting_user_format: Потребителски формат | |||||
569 | text_status_changed_by_changeset: Applied in changeset %s. |
|
569 | text_status_changed_by_changeset: Applied in changeset %s. | |
570 | label_more: More |
|
570 | label_more: More | |
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
572 | label_scm: SCM | |||
|
573 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
574 | label_issue_added: Issue added | |||
|
575 | label_issue_updated: Issue updated | |||
|
576 | label_document_added: Document added | |||
|
577 | label_message_posted: Message added | |||
|
578 | label_file_added: File added | |||
|
579 | label_news_added: News added |
@@ -569,3 +569,11 setting_user_format: Users display format | |||||
569 | text_status_changed_by_changeset: Applied in changeset %s. |
|
569 | text_status_changed_by_changeset: Applied in changeset %s. | |
570 | label_more: More |
|
570 | label_more: More | |
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
572 | label_scm: SCM | |||
|
573 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
574 | label_issue_added: Issue added | |||
|
575 | label_issue_updated: Issue updated | |||
|
576 | label_document_added: Document added | |||
|
577 | label_message_posted: Message added | |||
|
578 | label_file_added: File added | |||
|
579 | label_news_added: News added |
@@ -569,3 +569,11 enumeration_activities: Aktivitäten (Zeiterfassung) | |||||
569 | text_status_changed_by_changeset: Applied in changeset %s. |
|
569 | text_status_changed_by_changeset: Applied in changeset %s. | |
570 | label_more: More |
|
570 | label_more: More | |
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
572 | label_scm: SCM | |||
|
573 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
574 | label_issue_added: Issue added | |||
|
575 | label_issue_updated: Issue updated | |||
|
576 | label_document_added: Document added | |||
|
577 | label_message_posted: Message added | |||
|
578 | label_file_added: File added | |||
|
579 | label_news_added: News added |
@@ -219,9 +219,12 label_issue_new: New issue | |||||
219 | label_issue_plural: Issues |
|
219 | label_issue_plural: Issues | |
220 | label_issue_view_all: View all issues |
|
220 | label_issue_view_all: View all issues | |
221 | label_issues_by: Issues by %s |
|
221 | label_issues_by: Issues by %s | |
|
222 | label_issue_added: Issue added | |||
|
223 | label_issue_updated: Issue updated | |||
222 | label_document: Document |
|
224 | label_document: Document | |
223 | label_document_new: New document |
|
225 | label_document_new: New document | |
224 | label_document_plural: Documents |
|
226 | label_document_plural: Documents | |
|
227 | label_document_added: Document added | |||
225 | label_role: Role |
|
228 | label_role: Role | |
226 | label_role_plural: Roles |
|
229 | label_role_plural: Roles | |
227 | label_role_new: New role |
|
230 | label_role_new: New role | |
@@ -291,6 +294,7 label_attachment: File | |||||
291 | label_attachment_new: New file |
|
294 | label_attachment_new: New file | |
292 | label_attachment_delete: Delete file |
|
295 | label_attachment_delete: Delete file | |
293 | label_attachment_plural: Files |
|
296 | label_attachment_plural: Files | |
|
297 | label_file_added: File added | |||
294 | label_report: Report |
|
298 | label_report: Report | |
295 | label_report_plural: Reports |
|
299 | label_report_plural: Reports | |
296 | label_news: News |
|
300 | label_news: News | |
@@ -298,6 +302,7 label_news_new: Add news | |||||
298 | label_news_plural: News |
|
302 | label_news_plural: News | |
299 | label_news_latest: Latest news |
|
303 | label_news_latest: Latest news | |
300 | label_news_view_all: View all news |
|
304 | label_news_view_all: View all news | |
|
305 | label_news_added: News added | |||
301 | label_change_log: Change log |
|
306 | label_change_log: Change log | |
302 | label_settings: Settings |
|
307 | label_settings: Settings | |
303 | label_overview: Overview |
|
308 | label_overview: Overview | |
@@ -435,6 +440,7 label_topic_plural: Topics | |||||
435 | label_message_plural: Messages |
|
440 | label_message_plural: Messages | |
436 | label_message_last: Last message |
|
441 | label_message_last: Last message | |
437 | label_message_new: New message |
|
442 | label_message_new: New message | |
|
443 | label_message_posted: Message added | |||
438 | label_reply_plural: Replies |
|
444 | label_reply_plural: Replies | |
439 | label_send_information: Send account information to the user |
|
445 | label_send_information: Send account information to the user | |
440 | label_year: Year |
|
446 | label_year: Year | |
@@ -470,6 +476,7 label_age: Age | |||||
470 | label_change_properties: Change properties |
|
476 | label_change_properties: Change properties | |
471 | label_general: General |
|
477 | label_general: General | |
472 | label_more: More |
|
478 | label_more: More | |
|
479 | label_scm: SCM | |||
473 |
|
480 | |||
474 | button_login: Login |
|
481 | button_login: Login | |
475 | button_submit: Submit |
|
482 | button_submit: Submit | |
@@ -543,6 +550,7 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have n | |||||
543 | text_load_default_configuration: Load the default configuration |
|
550 | text_load_default_configuration: Load the default configuration | |
544 | text_status_changed_by_changeset: Applied in changeset %s. |
|
551 | text_status_changed_by_changeset: Applied in changeset %s. | |
545 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
552 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
553 | text_select_project_modules: 'Select modules to enable for this project:' | |||
546 |
|
554 | |||
547 | default_role_manager: Manager |
|
555 | default_role_manager: Manager | |
548 | default_role_developper: Developer |
|
556 | default_role_developper: Developer |
@@ -572,3 +572,11 setting_user_format: Users display format | |||||
572 | text_status_changed_by_changeset: Applied in changeset %s. |
|
572 | text_status_changed_by_changeset: Applied in changeset %s. | |
573 | label_more: More |
|
573 | label_more: More | |
574 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
574 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
575 | label_scm: SCM | |||
|
576 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
577 | label_issue_added: Issue added | |||
|
578 | label_issue_updated: Issue updated | |||
|
579 | label_document_added: Document added | |||
|
580 | label_message_posted: Message added | |||
|
581 | label_file_added: File added | |||
|
582 | label_news_added: News added |
@@ -573,3 +573,11 setting_user_format: Käyttäjien esitysmuoto | |||||
573 | text_status_changed_by_changeset: Applied in changeset %s. |
|
573 | text_status_changed_by_changeset: Applied in changeset %s. | |
574 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
574 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
575 | label_more: More |
|
575 | label_more: More | |
|
576 | label_scm: SCM | |||
|
577 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
578 | label_issue_added: Issue added | |||
|
579 | label_issue_updated: Issue updated | |||
|
580 | label_document_added: Document added | |||
|
581 | label_message_posted: Message added | |||
|
582 | label_file_added: File added | |||
|
583 | label_news_added: News added |
@@ -68,7 +68,6 notice_successful_delete: Suppression effectuée avec succès. | |||||
68 | notice_successful_connection: Connection réussie. |
|
68 | notice_successful_connection: Connection réussie. | |
69 | notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée." |
|
69 | notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée." | |
70 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. |
|
70 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. | |
71 | notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt." |
|
|||
72 | notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page." |
|
71 | notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page." | |
73 | notice_email_sent: "Un email a été envoyé à %s" |
|
72 | notice_email_sent: "Un email a été envoyé à %s" | |
74 | notice_email_error: "Erreur lors de l'envoi de l'email (%s)" |
|
73 | notice_email_error: "Erreur lors de l'envoi de l'email (%s)" | |
@@ -219,10 +218,13 label_issue: Demande | |||||
219 | label_issue_new: Nouvelle demande |
|
218 | label_issue_new: Nouvelle demande | |
220 | label_issue_plural: Demandes |
|
219 | label_issue_plural: Demandes | |
221 | label_issue_view_all: Voir toutes les demandes |
|
220 | label_issue_view_all: Voir toutes les demandes | |
|
221 | label_issue_added: Demande ajoutée | |||
|
222 | label_issue_updated: Demande mise à jour | |||
222 | label_issues_by: Demandes par %s |
|
223 | label_issues_by: Demandes par %s | |
223 | label_document: Document |
|
224 | label_document: Document | |
224 | label_document_new: Nouveau document |
|
225 | label_document_new: Nouveau document | |
225 | label_document_plural: Documents |
|
226 | label_document_plural: Documents | |
|
227 | label_document_added: Document ajouté | |||
226 | label_role: Rôle |
|
228 | label_role: Rôle | |
227 | label_role_plural: Rôles |
|
229 | label_role_plural: Rôles | |
228 | label_role_new: Nouveau rôle |
|
230 | label_role_new: Nouveau rôle | |
@@ -292,6 +294,7 label_attachment: Fichier | |||||
292 | label_attachment_new: Nouveau fichier |
|
294 | label_attachment_new: Nouveau fichier | |
293 | label_attachment_delete: Supprimer le fichier |
|
295 | label_attachment_delete: Supprimer le fichier | |
294 | label_attachment_plural: Fichiers |
|
296 | label_attachment_plural: Fichiers | |
|
297 | label_file_added: Fichier ajouté | |||
295 | label_report: Rapport |
|
298 | label_report: Rapport | |
296 | label_report_plural: Rapports |
|
299 | label_report_plural: Rapports | |
297 | label_news: Annonce |
|
300 | label_news: Annonce | |
@@ -299,6 +302,7 label_news_new: Nouvelle annonce | |||||
299 | label_news_plural: Annonces |
|
302 | label_news_plural: Annonces | |
300 | label_news_latest: Dernières annonces |
|
303 | label_news_latest: Dernières annonces | |
301 | label_news_view_all: Voir toutes les annonces |
|
304 | label_news_view_all: Voir toutes les annonces | |
|
305 | label_news_added: Annonce ajoutée | |||
302 | label_change_log: Historique |
|
306 | label_change_log: Historique | |
303 | label_settings: Configuration |
|
307 | label_settings: Configuration | |
304 | label_overview: Aperçu |
|
308 | label_overview: Aperçu | |
@@ -436,6 +440,7 label_topic_plural: Discussions | |||||
436 | label_message_plural: Messages |
|
440 | label_message_plural: Messages | |
437 | label_message_last: Dernier message |
|
441 | label_message_last: Dernier message | |
438 | label_message_new: Nouveau message |
|
442 | label_message_new: Nouveau message | |
|
443 | label_message_posted: Message ajouté | |||
439 | label_reply_plural: Réponses |
|
444 | label_reply_plural: Réponses | |
440 | label_send_information: Envoyer les informations à l'utilisateur |
|
445 | label_send_information: Envoyer les informations à l'utilisateur | |
441 | label_year: Année |
|
446 | label_year: Année | |
@@ -471,6 +476,7 label_age: Age | |||||
471 | label_change_properties: Changer les propriétés |
|
476 | label_change_properties: Changer les propriétés | |
472 | label_general: Général |
|
477 | label_general: Général | |
473 | label_more: Plus |
|
478 | label_more: Plus | |
|
479 | label_scm: SCM | |||
474 |
|
480 | |||
475 | button_login: Connexion |
|
481 | button_login: Connexion | |
476 | button_submit: Soumettre |
|
482 | button_submit: Soumettre | |
@@ -513,7 +519,7 status_active: actif | |||||
513 | status_registered: enregistré |
|
519 | status_registered: enregistré | |
514 | status_locked: vérouillé |
|
520 | status_locked: vérouillé | |
515 |
|
521 | |||
516 |
text_select_mail_notifications: |
|
522 | text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyée | |
517 | text_regexp_info: ex. ^[A-Z0-9]+$ |
|
523 | text_regexp_info: ex. ^[A-Z0-9]+$ | |
518 | text_min_max_length_info: 0 pour aucune restriction |
|
524 | text_min_max_length_info: 0 pour aucune restriction | |
519 | text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ? |
|
525 | 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 | |||||
544 | text_load_default_configuration: Charger le paramétrage par défaut |
|
550 | text_load_default_configuration: Charger le paramétrage par défaut | |
545 | text_status_changed_by_changeset: Appliqué par commit %s. |
|
551 | text_status_changed_by_changeset: Appliqué par commit %s. | |
546 | text_issues_destroy_confirmation: 'Etes-vous sûr de vouloir supprimer le(s) demandes(s) selectionnée(s) ?' |
|
552 | text_issues_destroy_confirmation: 'Etes-vous sûr de vouloir supprimer le(s) demandes(s) selectionnée(s) ?' | |
|
553 | text_select_project_modules: 'Selectionner les modules à activer pour ce project:' | |||
547 |
|
554 | |||
548 | default_role_manager: Manager |
|
555 | default_role_manager: Manager | |
549 | default_role_developper: Développeur |
|
556 | default_role_developper: Développeur |
@@ -569,3 +569,11 setting_user_format: Users display format | |||||
569 | text_status_changed_by_changeset: Applied in changeset %s. |
|
569 | text_status_changed_by_changeset: Applied in changeset %s. | |
570 | label_more: More |
|
570 | label_more: More | |
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
572 | label_scm: SCM | |||
|
573 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
574 | label_issue_added: Issue added | |||
|
575 | label_issue_updated: Issue updated | |||
|
576 | label_document_added: Document added | |||
|
577 | label_message_posted: Message added | |||
|
578 | label_file_added: File added | |||
|
579 | label_news_added: News added |
@@ -569,3 +569,11 setting_user_format: Users display format | |||||
569 | text_status_changed_by_changeset: Applied in changeset %s. |
|
569 | text_status_changed_by_changeset: Applied in changeset %s. | |
570 | label_more: More |
|
570 | label_more: More | |
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
572 | label_scm: SCM | |||
|
573 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
574 | label_issue_added: Issue added | |||
|
575 | label_issue_updated: Issue updated | |||
|
576 | label_document_added: Document added | |||
|
577 | label_message_posted: Message added | |||
|
578 | label_file_added: File added | |||
|
579 | label_news_added: News added |
@@ -570,3 +570,11 setting_user_format: Users display format | |||||
570 | text_status_changed_by_changeset: Applied in changeset %s. |
|
570 | text_status_changed_by_changeset: Applied in changeset %s. | |
571 | label_more: More |
|
571 | label_more: More | |
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
573 | label_scm: SCM | |||
|
574 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
575 | label_issue_added: Issue added | |||
|
576 | label_issue_updated: Issue updated | |||
|
577 | label_document_added: Document added | |||
|
578 | label_message_posted: Message added | |||
|
579 | label_file_added: File added | |||
|
580 | label_news_added: News added |
@@ -569,3 +569,11 setting_user_format: Users display format | |||||
569 | text_status_changed_by_changeset: Applied in changeset %s. |
|
569 | text_status_changed_by_changeset: Applied in changeset %s. | |
570 | label_more: More |
|
570 | label_more: More | |
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
572 | label_scm: SCM | |||
|
573 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
574 | label_issue_added: Issue added | |||
|
575 | label_issue_updated: Issue updated | |||
|
576 | label_document_added: Document added | |||
|
577 | label_message_posted: Message added | |||
|
578 | label_file_added: File added | |||
|
579 | label_news_added: News added |
@@ -570,3 +570,11 setting_user_format: Vartotojo atvaizdavimo formatas | |||||
570 | text_status_changed_by_changeset: Applied in changeset %s. |
|
570 | text_status_changed_by_changeset: Applied in changeset %s. | |
571 | label_more: More |
|
571 | label_more: More | |
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
573 | label_scm: SCM | |||
|
574 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
575 | label_issue_added: Issue added | |||
|
576 | label_issue_updated: Issue updated | |||
|
577 | label_document_added: Document added | |||
|
578 | label_message_posted: Message added | |||
|
579 | label_file_added: File added | |||
|
580 | label_news_added: News added |
@@ -570,3 +570,11 setting_user_format: Users display format | |||||
570 | text_status_changed_by_changeset: Applied in changeset %s. |
|
570 | text_status_changed_by_changeset: Applied in changeset %s. | |
571 | label_more: More |
|
571 | label_more: More | |
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
573 | label_scm: SCM | |||
|
574 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
575 | label_issue_added: Issue added | |||
|
576 | label_issue_updated: Issue updated | |||
|
577 | label_document_added: Document added | |||
|
578 | label_message_posted: Message added | |||
|
579 | label_file_added: File added | |||
|
580 | label_news_added: News added |
@@ -569,3 +569,11 setting_user_format: Users display format | |||||
569 | text_status_changed_by_changeset: Applied in changeset %s. |
|
569 | text_status_changed_by_changeset: Applied in changeset %s. | |
570 | label_more: More |
|
570 | label_more: More | |
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
572 | label_scm: SCM | |||
|
573 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
574 | label_issue_added: Issue added | |||
|
575 | label_issue_updated: Issue updated | |||
|
576 | label_document_added: Document added | |||
|
577 | label_message_posted: Message added | |||
|
578 | label_file_added: File added | |||
|
579 | label_news_added: News added |
@@ -569,3 +569,11 setting_user_format: Users display format | |||||
569 | text_status_changed_by_changeset: Applied in changeset %s. |
|
569 | text_status_changed_by_changeset: Applied in changeset %s. | |
570 | label_more: More |
|
570 | label_more: More | |
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
572 | label_scm: SCM | |||
|
573 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
574 | label_issue_added: Issue added | |||
|
575 | label_issue_updated: Issue updated | |||
|
576 | label_document_added: Document added | |||
|
577 | label_message_posted: Message added | |||
|
578 | label_file_added: File added | |||
|
579 | label_news_added: News added |
@@ -569,3 +569,11 setting_user_format: Users display format | |||||
569 | text_status_changed_by_changeset: Applied in changeset %s. |
|
569 | text_status_changed_by_changeset: Applied in changeset %s. | |
570 | label_more: More |
|
570 | label_more: More | |
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
572 | label_scm: SCM | |||
|
573 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
574 | label_issue_added: Issue added | |||
|
575 | label_issue_updated: Issue updated | |||
|
576 | label_document_added: Document added | |||
|
577 | label_message_posted: Message added | |||
|
578 | label_file_added: File added | |||
|
579 | label_news_added: News added |
@@ -569,3 +569,11 setting_user_format: Users display format | |||||
569 | text_status_changed_by_changeset: Applied in changeset %s. |
|
569 | text_status_changed_by_changeset: Applied in changeset %s. | |
570 | label_more: More |
|
570 | label_more: More | |
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
572 | label_scm: SCM | |||
|
573 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
574 | label_issue_added: Issue added | |||
|
575 | label_issue_updated: Issue updated | |||
|
576 | label_document_added: Document added | |||
|
577 | label_message_posted: Message added | |||
|
578 | label_file_added: File added | |||
|
579 | label_news_added: News added |
@@ -570,3 +570,11 enumeration_activities: Действия (учет времени) | |||||
570 | text_status_changed_by_changeset: Реализовано в %s редакции. |
|
570 | text_status_changed_by_changeset: Реализовано в %s редакции. | |
571 | label_more: Больше |
|
571 | label_more: Больше | |
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
573 | label_scm: SCM | |||
|
574 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
575 | label_issue_added: Issue added | |||
|
576 | label_issue_updated: Issue updated | |||
|
577 | label_document_added: Document added | |||
|
578 | label_message_posted: Message added | |||
|
579 | label_file_added: File added | |||
|
580 | label_news_added: News added |
@@ -570,3 +570,11 setting_user_format: Users display format | |||||
570 | text_status_changed_by_changeset: Applied in changeset %s. |
|
570 | text_status_changed_by_changeset: Applied in changeset %s. | |
571 | label_more: More |
|
571 | label_more: More | |
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
573 | label_scm: SCM | |||
|
574 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
575 | label_issue_added: Issue added | |||
|
576 | label_issue_updated: Issue updated | |||
|
577 | label_document_added: Document added | |||
|
578 | label_message_posted: Message added | |||
|
579 | label_file_added: File added | |||
|
580 | label_news_added: News added |
@@ -570,3 +570,11 setting_user_format: Users display format | |||||
570 | text_status_changed_by_changeset: Applied in changeset %s. |
|
570 | text_status_changed_by_changeset: Applied in changeset %s. | |
571 | label_more: More |
|
571 | label_more: More | |
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
572 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
573 | label_scm: SCM | |||
|
574 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
575 | label_issue_added: Issue added | |||
|
576 | label_issue_updated: Issue updated | |||
|
577 | label_document_added: Document added | |||
|
578 | label_message_posted: Message added | |||
|
579 | label_file_added: File added | |||
|
580 | label_news_added: News added |
@@ -569,3 +569,11 enumeration_activities: 活動 (time tracking) | |||||
569 | text_status_changed_by_changeset: Applied in changeset %s. |
|
569 | text_status_changed_by_changeset: Applied in changeset %s. | |
570 | label_more: More |
|
570 | label_more: More | |
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
571 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
572 | label_scm: SCM | |||
|
573 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
574 | label_issue_added: Issue added | |||
|
575 | label_issue_updated: Issue updated | |||
|
576 | label_document_added: Document added | |||
|
577 | label_message_posted: Message added | |||
|
578 | label_file_added: File added | |||
|
579 | label_news_added: News added |
@@ -572,3 +572,11 setting_user_format: 用户显示格式 | |||||
572 | text_status_changed_by_changeset: Applied in changeset %s. |
|
572 | text_status_changed_by_changeset: Applied in changeset %s. | |
573 | label_more: More |
|
573 | label_more: More | |
574 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
574 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
|
575 | label_scm: SCM | |||
|
576 | text_select_project_modules: 'Select modules to enable for this project:' | |||
|
577 | label_issue_added: Issue added | |||
|
578 | label_issue_updated: Issue updated | |||
|
579 | label_document_added: Document added | |||
|
580 | label_message_posted: Message added | |||
|
581 | label_file_added: File added | |||
|
582 | label_news_added: News added |
General Comments 0
You need to be logged in to leave comments.
Login now