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