@@ -1,55 +1,58 | |||||
1 | # redMine - project management software |
|
1 | # redMine - project management software | |
2 | # Copyright (C) 2006-2007 Jean-Philippe Lang |
|
2 | # Copyright (C) 2006-2007 Jean-Philippe Lang | |
3 | # |
|
3 | # | |
4 | # This program is free software; you can redistribute it and/or |
|
4 | # This program is free software; you can redistribute it and/or | |
5 | # modify it under the terms of the GNU General Public License |
|
5 | # modify it under the terms of the GNU General Public License | |
6 | # as published by the Free Software Foundation; either version 2 |
|
6 | # as published by the Free Software Foundation; either version 2 | |
7 | # of the License, or (at your option) any later version. |
|
7 | # of the License, or (at your option) any later version. | |
8 |
# |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 |
# |
|
13 | # | |
14 | # You should have received a copy of the GNU General Public License |
|
14 | # You should have received a copy of the GNU General Public License | |
15 | # along with this program; if not, write to the Free Software |
|
15 | # along with this program; if not, write to the Free Software | |
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
17 |
|
17 | |||
18 | class SettingsController < ApplicationController |
|
18 | class SettingsController < ApplicationController | |
19 | before_filter :require_admin |
|
19 | before_filter :require_admin | |
20 |
|
20 | |||
21 | def index |
|
21 | def index | |
22 | edit |
|
22 | edit | |
23 | render :action => 'edit' |
|
23 | render :action => 'edit' | |
24 | end |
|
24 | end | |
25 |
|
25 | |||
26 | def edit |
|
26 | def edit | |
27 | @notifiables = %w(issue_added issue_updated news_added document_added file_added message_posted) |
|
27 | @notifiables = %w(issue_added issue_updated news_added document_added file_added message_posted) | |
28 | if request.post? && params[:settings] && params[:settings].is_a?(Hash) |
|
28 | if request.post? && params[:settings] && params[:settings].is_a?(Hash) | |
29 | settings = (params[:settings] || {}).dup.symbolize_keys |
|
29 | settings = (params[:settings] || {}).dup.symbolize_keys | |
30 | settings.each do |name, value| |
|
30 | settings.each do |name, value| | |
31 | # remove blank values in array settings |
|
31 | # remove blank values in array settings | |
32 | value.delete_if {|v| v.blank? } if value.is_a?(Array) |
|
32 | value.delete_if {|v| v.blank? } if value.is_a?(Array) | |
33 | Setting[name] = value |
|
33 | Setting[name] = value | |
34 | end |
|
34 | end | |
35 | flash[:notice] = l(:notice_successful_update) |
|
35 | flash[:notice] = l(:notice_successful_update) | |
36 | redirect_to :action => 'edit', :tab => params[:tab] |
|
36 | redirect_to :action => 'edit', :tab => params[:tab] | |
37 | return |
|
37 | return | |
38 | end |
|
38 | end | |
39 | @options = {} |
|
39 | @options = {} | |
40 | @options[:user_format] = User::USER_FORMATS.keys.collect {|f| [User.current.name(f), f.to_s] } |
|
40 | @options[:user_format] = User::USER_FORMATS.keys.collect {|f| [User.current.name(f), f.to_s] } | |
41 | @deliveries = ActionMailer::Base.perform_deliveries |
|
41 | @deliveries = ActionMailer::Base.perform_deliveries | |
|
42 | ||||
|
43 | @guessed_host_and_path = request.host_with_port | |||
|
44 | @guessed_host_and_path << ('/'+ request.relative_url_root.gsub(%r{^\/}, '')) unless request.relative_url_root.blank? | |||
42 | end |
|
45 | end | |
43 |
|
46 | |||
44 | def plugin |
|
47 | def plugin | |
45 | plugin_id = params[:id].to_sym |
|
48 | plugin_id = params[:id].to_sym | |
46 | @plugin = Redmine::Plugin.registered_plugins[plugin_id] |
|
49 | @plugin = Redmine::Plugin.registered_plugins[plugin_id] | |
47 | if request.post? |
|
50 | if request.post? | |
48 | Setting["plugin_#{plugin_id}"] = params[:settings] |
|
51 | Setting["plugin_#{plugin_id}"] = params[:settings] | |
49 | flash[:notice] = l(:notice_successful_update) |
|
52 | flash[:notice] = l(:notice_successful_update) | |
50 | redirect_to :action => 'plugin', :id => params[:id] |
|
53 | redirect_to :action => 'plugin', :id => params[:id] | |
51 | end |
|
54 | end | |
52 | @partial = @plugin.settings[:partial] |
|
55 | @partial = @plugin.settings[:partial] | |
53 | @settings = Setting["plugin_#{plugin_id}"] |
|
56 | @settings = Setting["plugin_#{plugin_id}"] | |
54 | end |
|
57 | end | |
55 | end |
|
58 | end |
@@ -1,242 +1,243 | |||||
1 | # redMine - project management software |
|
1 | # redMine - project management software | |
2 | # Copyright (C) 2006-2007 Jean-Philippe Lang |
|
2 | # Copyright (C) 2006-2007 Jean-Philippe Lang | |
3 | # |
|
3 | # | |
4 | # This program is free software; you can redistribute it and/or |
|
4 | # This program is free software; you can redistribute it and/or | |
5 | # modify it under the terms of the GNU General Public License |
|
5 | # modify it under the terms of the GNU General Public License | |
6 | # as published by the Free Software Foundation; either version 2 |
|
6 | # as published by the Free Software Foundation; either version 2 | |
7 | # of the License, or (at your option) any later version. |
|
7 | # of the License, or (at your option) any later version. | |
8 |
# |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 |
# |
|
13 | # | |
14 | # You should have received a copy of the GNU General Public License |
|
14 | # You should have received a copy of the GNU General Public License | |
15 | # along with this program; if not, write to the Free Software |
|
15 | # along with this program; if not, write to the Free Software | |
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
17 |
|
17 | |||
18 | class Mailer < ActionMailer::Base |
|
18 | class Mailer < ActionMailer::Base | |
19 | helper :application |
|
19 | helper :application | |
20 | helper :issues |
|
20 | helper :issues | |
21 | helper :custom_fields |
|
21 | helper :custom_fields | |
22 |
|
22 | |||
23 | include ActionController::UrlWriter |
|
23 | include ActionController::UrlWriter | |
24 |
|
24 | |||
25 |
def issue_add(issue) |
|
25 | def issue_add(issue) | |
26 | redmine_headers 'Project' => issue.project.identifier, |
|
26 | redmine_headers 'Project' => issue.project.identifier, | |
27 | 'Issue-Id' => issue.id, |
|
27 | 'Issue-Id' => issue.id, | |
28 | 'Issue-Author' => issue.author.login |
|
28 | 'Issue-Author' => issue.author.login | |
29 | redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to |
|
29 | redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to | |
30 |
recipients issue.recipients |
|
30 | recipients issue.recipients | |
31 | subject "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] (#{issue.status.name}) #{issue.subject}" |
|
31 | subject "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] (#{issue.status.name}) #{issue.subject}" | |
32 | body :issue => issue, |
|
32 | body :issue => issue, | |
33 | :issue_url => url_for(:controller => 'issues', :action => 'show', :id => issue) |
|
33 | :issue_url => url_for(:controller => 'issues', :action => 'show', :id => issue) | |
34 | end |
|
34 | end | |
35 |
|
35 | |||
36 | def issue_edit(journal) |
|
36 | def issue_edit(journal) | |
37 | issue = journal.journalized |
|
37 | issue = journal.journalized | |
38 | redmine_headers 'Project' => issue.project.identifier, |
|
38 | redmine_headers 'Project' => issue.project.identifier, | |
39 | 'Issue-Id' => issue.id, |
|
39 | 'Issue-Id' => issue.id, | |
40 | 'Issue-Author' => issue.author.login |
|
40 | 'Issue-Author' => issue.author.login | |
41 | redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to |
|
41 | redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to | |
42 | recipients issue.recipients |
|
42 | recipients issue.recipients | |
43 | # Watchers in cc |
|
43 | # Watchers in cc | |
44 | cc(issue.watcher_recipients - @recipients) |
|
44 | cc(issue.watcher_recipients - @recipients) | |
45 | s = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] " |
|
45 | s = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] " | |
46 | s << "(#{issue.status.name}) " if journal.new_value_for('status_id') |
|
46 | s << "(#{issue.status.name}) " if journal.new_value_for('status_id') | |
47 | s << issue.subject |
|
47 | s << issue.subject | |
48 | subject s |
|
48 | subject s | |
49 | body :issue => issue, |
|
49 | body :issue => issue, | |
50 | :journal => journal, |
|
50 | :journal => journal, | |
51 | :issue_url => url_for(:controller => 'issues', :action => 'show', :id => issue) |
|
51 | :issue_url => url_for(:controller => 'issues', :action => 'show', :id => issue) | |
52 | end |
|
52 | end | |
53 |
|
53 | |||
54 | def reminder(user, issues, days) |
|
54 | def reminder(user, issues, days) | |
55 | set_language_if_valid user.language |
|
55 | set_language_if_valid user.language | |
56 | recipients user.mail |
|
56 | recipients user.mail | |
57 | subject l(:mail_subject_reminder, issues.size) |
|
57 | subject l(:mail_subject_reminder, issues.size) | |
58 | body :issues => issues, |
|
58 | body :issues => issues, | |
59 | :days => days, |
|
59 | :days => days, | |
60 | :issues_url => url_for(:controller => 'issues', :action => 'index', :set_filter => 1, :assigned_to_id => user.id, :sort_key => 'issues.due_date', :sort_order => 'asc') |
|
60 | :issues_url => url_for(:controller => 'issues', :action => 'index', :set_filter => 1, :assigned_to_id => user.id, :sort_key => 'issues.due_date', :sort_order => 'asc') | |
61 | end |
|
61 | end | |
62 |
|
62 | |||
63 | def document_added(document) |
|
63 | def document_added(document) | |
64 | redmine_headers 'Project' => document.project.identifier |
|
64 | redmine_headers 'Project' => document.project.identifier | |
65 | recipients document.project.recipients |
|
65 | recipients document.project.recipients | |
66 | subject "[#{document.project.name}] #{l(:label_document_new)}: #{document.title}" |
|
66 | subject "[#{document.project.name}] #{l(:label_document_new)}: #{document.title}" | |
67 | body :document => document, |
|
67 | body :document => document, | |
68 | :document_url => url_for(:controller => 'documents', :action => 'show', :id => document) |
|
68 | :document_url => url_for(:controller => 'documents', :action => 'show', :id => document) | |
69 | end |
|
69 | end | |
70 |
|
70 | |||
71 | def attachments_added(attachments) |
|
71 | def attachments_added(attachments) | |
72 | container = attachments.first.container |
|
72 | container = attachments.first.container | |
73 | added_to = '' |
|
73 | added_to = '' | |
74 | added_to_url = '' |
|
74 | added_to_url = '' | |
75 | case container.class.name |
|
75 | case container.class.name | |
76 | when 'Version' |
|
76 | when 'Version' | |
77 | added_to_url = url_for(:controller => 'projects', :action => 'list_files', :id => container.project_id) |
|
77 | added_to_url = url_for(:controller => 'projects', :action => 'list_files', :id => container.project_id) | |
78 | added_to = "#{l(:label_version)}: #{container.name}" |
|
78 | added_to = "#{l(:label_version)}: #{container.name}" | |
79 | when 'Document' |
|
79 | when 'Document' | |
80 | added_to_url = url_for(:controller => 'documents', :action => 'show', :id => container.id) |
|
80 | added_to_url = url_for(:controller => 'documents', :action => 'show', :id => container.id) | |
81 | added_to = "#{l(:label_document)}: #{container.title}" |
|
81 | added_to = "#{l(:label_document)}: #{container.title}" | |
82 | end |
|
82 | end | |
83 | redmine_headers 'Project' => container.project.identifier |
|
83 | redmine_headers 'Project' => container.project.identifier | |
84 | recipients container.project.recipients |
|
84 | recipients container.project.recipients | |
85 | subject "[#{container.project.name}] #{l(:label_attachment_new)}" |
|
85 | subject "[#{container.project.name}] #{l(:label_attachment_new)}" | |
86 | body :attachments => attachments, |
|
86 | body :attachments => attachments, | |
87 | :added_to => added_to, |
|
87 | :added_to => added_to, | |
88 | :added_to_url => added_to_url |
|
88 | :added_to_url => added_to_url | |
89 | end |
|
89 | end | |
90 |
|
90 | |||
91 | def news_added(news) |
|
91 | def news_added(news) | |
92 | redmine_headers 'Project' => news.project.identifier |
|
92 | redmine_headers 'Project' => news.project.identifier | |
93 | recipients news.project.recipients |
|
93 | recipients news.project.recipients | |
94 | subject "[#{news.project.name}] #{l(:label_news)}: #{news.title}" |
|
94 | subject "[#{news.project.name}] #{l(:label_news)}: #{news.title}" | |
95 | body :news => news, |
|
95 | body :news => news, | |
96 | :news_url => url_for(:controller => 'news', :action => 'show', :id => news) |
|
96 | :news_url => url_for(:controller => 'news', :action => 'show', :id => news) | |
97 | end |
|
97 | end | |
98 |
|
98 | |||
99 | def message_posted(message, recipients) |
|
99 | def message_posted(message, recipients) | |
100 | redmine_headers 'Project' => message.project.identifier, |
|
100 | redmine_headers 'Project' => message.project.identifier, | |
101 | 'Topic-Id' => (message.parent_id || message.id) |
|
101 | 'Topic-Id' => (message.parent_id || message.id) | |
102 | recipients(recipients) |
|
102 | recipients(recipients) | |
103 | subject "[#{message.board.project.name} - #{message.board.name}] #{message.subject}" |
|
103 | subject "[#{message.board.project.name} - #{message.board.name}] #{message.subject}" | |
104 | body :message => message, |
|
104 | body :message => message, | |
105 | :message_url => url_for(:controller => 'messages', :action => 'show', :board_id => message.board_id, :id => message.root) |
|
105 | :message_url => url_for(:controller => 'messages', :action => 'show', :board_id => message.board_id, :id => message.root) | |
106 | end |
|
106 | end | |
107 |
|
107 | |||
108 | def account_information(user, password) |
|
108 | def account_information(user, password) | |
109 | set_language_if_valid user.language |
|
109 | set_language_if_valid user.language | |
110 | recipients user.mail |
|
110 | recipients user.mail | |
111 | subject l(:mail_subject_register, Setting.app_title) |
|
111 | subject l(:mail_subject_register, Setting.app_title) | |
112 | body :user => user, |
|
112 | body :user => user, | |
113 | :password => password, |
|
113 | :password => password, | |
114 | :login_url => url_for(:controller => 'account', :action => 'login') |
|
114 | :login_url => url_for(:controller => 'account', :action => 'login') | |
115 | end |
|
115 | end | |
116 |
|
116 | |||
117 | def account_activation_request(user) |
|
117 | def account_activation_request(user) | |
118 | # Send the email to all active administrators |
|
118 | # Send the email to all active administrators | |
119 | recipients User.find_active(:all, :conditions => {:admin => true}).collect { |u| u.mail }.compact |
|
119 | recipients User.find_active(:all, :conditions => {:admin => true}).collect { |u| u.mail }.compact | |
120 | subject l(:mail_subject_account_activation_request, Setting.app_title) |
|
120 | subject l(:mail_subject_account_activation_request, Setting.app_title) | |
121 | body :user => user, |
|
121 | body :user => user, | |
122 | :url => url_for(:controller => 'users', :action => 'index', :status => User::STATUS_REGISTERED, :sort_key => 'created_on', :sort_order => 'desc') |
|
122 | :url => url_for(:controller => 'users', :action => 'index', :status => User::STATUS_REGISTERED, :sort_key => 'created_on', :sort_order => 'desc') | |
123 | end |
|
123 | end | |
124 |
|
124 | |||
125 | def lost_password(token) |
|
125 | def lost_password(token) | |
126 | set_language_if_valid(token.user.language) |
|
126 | set_language_if_valid(token.user.language) | |
127 | recipients token.user.mail |
|
127 | recipients token.user.mail | |
128 | subject l(:mail_subject_lost_password, Setting.app_title) |
|
128 | subject l(:mail_subject_lost_password, Setting.app_title) | |
129 | body :token => token, |
|
129 | body :token => token, | |
130 | :url => url_for(:controller => 'account', :action => 'lost_password', :token => token.value) |
|
130 | :url => url_for(:controller => 'account', :action => 'lost_password', :token => token.value) | |
131 |
end |
|
131 | end | |
132 |
|
132 | |||
133 | def register(token) |
|
133 | def register(token) | |
134 | set_language_if_valid(token.user.language) |
|
134 | set_language_if_valid(token.user.language) | |
135 | recipients token.user.mail |
|
135 | recipients token.user.mail | |
136 | subject l(:mail_subject_register, Setting.app_title) |
|
136 | subject l(:mail_subject_register, Setting.app_title) | |
137 | body :token => token, |
|
137 | body :token => token, | |
138 | :url => url_for(:controller => 'account', :action => 'activate', :token => token.value) |
|
138 | :url => url_for(:controller => 'account', :action => 'activate', :token => token.value) | |
139 | end |
|
139 | end | |
140 |
|
140 | |||
141 | def test(user) |
|
141 | def test(user) | |
142 | set_language_if_valid(user.language) |
|
142 | set_language_if_valid(user.language) | |
143 | recipients user.mail |
|
143 | recipients user.mail | |
144 | subject 'Redmine test' |
|
144 | subject 'Redmine test' | |
145 | body :url => url_for(:controller => 'welcome') |
|
145 | body :url => url_for(:controller => 'welcome') | |
146 | end |
|
146 | end | |
147 |
|
147 | |||
148 | # Overrides default deliver! method to prevent from sending an email |
|
148 | # Overrides default deliver! method to prevent from sending an email | |
149 | # with no recipient, cc or bcc |
|
149 | # with no recipient, cc or bcc | |
150 | def deliver!(mail = @mail) |
|
150 | def deliver!(mail = @mail) | |
151 |
return false if (recipients.nil? || recipients.empty?) && |
|
151 | return false if (recipients.nil? || recipients.empty?) && | |
152 | (cc.nil? || cc.empty?) && |
|
152 | (cc.nil? || cc.empty?) && | |
153 | (bcc.nil? || bcc.empty?) |
|
153 | (bcc.nil? || bcc.empty?) | |
154 | super |
|
154 | super | |
155 | end |
|
155 | end | |
156 |
|
156 | |||
157 | # Sends reminders to issue assignees |
|
157 | # Sends reminders to issue assignees | |
158 | # Available options: |
|
158 | # Available options: | |
159 | # * :days => how many days in the future to remind about (defaults to 7) |
|
159 | # * :days => how many days in the future to remind about (defaults to 7) | |
160 | # * :tracker => id of tracker for filtering issues (defaults to all trackers) |
|
160 | # * :tracker => id of tracker for filtering issues (defaults to all trackers) | |
161 | # * :project => id or identifier of project to process (defaults to all projects) |
|
161 | # * :project => id or identifier of project to process (defaults to all projects) | |
162 | def self.reminders(options={}) |
|
162 | def self.reminders(options={}) | |
163 | days = options[:days] || 7 |
|
163 | days = options[:days] || 7 | |
164 | project = options[:project] ? Project.find(options[:project]) : nil |
|
164 | project = options[:project] ? Project.find(options[:project]) : nil | |
165 | tracker = options[:tracker] ? Tracker.find(options[:tracker]) : nil |
|
165 | tracker = options[:tracker] ? Tracker.find(options[:tracker]) : nil | |
166 |
|
166 | |||
167 | s = ARCondition.new ["#{IssueStatus.table_name}.is_closed = ? AND #{Issue.table_name}.due_date <= ?", false, days.day.from_now.to_date] |
|
167 | s = ARCondition.new ["#{IssueStatus.table_name}.is_closed = ? AND #{Issue.table_name}.due_date <= ?", false, days.day.from_now.to_date] | |
168 | s << "#{Issue.table_name}.assigned_to_id IS NOT NULL" |
|
168 | s << "#{Issue.table_name}.assigned_to_id IS NOT NULL" | |
169 | s << "#{Project.table_name}.status = #{Project::STATUS_ACTIVE}" |
|
169 | s << "#{Project.table_name}.status = #{Project::STATUS_ACTIVE}" | |
170 | s << "#{Issue.table_name}.project_id = #{project.id}" if project |
|
170 | s << "#{Issue.table_name}.project_id = #{project.id}" if project | |
171 | s << "#{Issue.table_name}.tracker_id = #{tracker.id}" if tracker |
|
171 | s << "#{Issue.table_name}.tracker_id = #{tracker.id}" if tracker | |
172 |
|
172 | |||
173 | issues_by_assignee = Issue.find(:all, :include => [:status, :assigned_to, :project, :tracker], |
|
173 | issues_by_assignee = Issue.find(:all, :include => [:status, :assigned_to, :project, :tracker], | |
174 | :conditions => s.conditions |
|
174 | :conditions => s.conditions | |
175 | ).group_by(&:assigned_to) |
|
175 | ).group_by(&:assigned_to) | |
176 | issues_by_assignee.each do |assignee, issues| |
|
176 | issues_by_assignee.each do |assignee, issues| | |
177 | deliver_reminder(assignee, issues, days) unless assignee.nil? |
|
177 | deliver_reminder(assignee, issues, days) unless assignee.nil? | |
178 | end |
|
178 | end | |
179 | end |
|
179 | end | |
180 |
|
180 | |||
181 | private |
|
181 | private | |
182 | def initialize_defaults(method_name) |
|
182 | def initialize_defaults(method_name) | |
183 | super |
|
183 | super | |
184 | set_language_if_valid Setting.default_language |
|
184 | set_language_if_valid Setting.default_language | |
185 | from Setting.mail_from |
|
185 | from Setting.mail_from | |
186 | default_url_options[:host] = Setting.host_name |
|
186 | default_url_options[:host] = Setting.host_name | |
187 | default_url_options[:protocol] = Setting.protocol |
|
187 | default_url_options[:protocol] = Setting.protocol | |
|
188 | default_url_options[:skip_relative_url_root] = true | |||
188 | # Common headers |
|
189 | # Common headers | |
189 | headers 'X-Mailer' => 'Redmine', |
|
190 | headers 'X-Mailer' => 'Redmine', | |
190 | 'X-Redmine-Host' => Setting.host_name, |
|
191 | 'X-Redmine-Host' => Setting.host_name, | |
191 | 'X-Redmine-Site' => Setting.app_title |
|
192 | 'X-Redmine-Site' => Setting.app_title | |
192 | end |
|
193 | end | |
193 |
|
194 | |||
194 | # Appends a Redmine header field (name is prepended with 'X-Redmine-') |
|
195 | # Appends a Redmine header field (name is prepended with 'X-Redmine-') | |
195 | def redmine_headers(h) |
|
196 | def redmine_headers(h) | |
196 | h.each { |k,v| headers["X-Redmine-#{k}"] = v } |
|
197 | h.each { |k,v| headers["X-Redmine-#{k}"] = v } | |
197 | end |
|
198 | end | |
198 |
|
199 | |||
199 | # Overrides the create_mail method |
|
200 | # Overrides the create_mail method | |
200 | def create_mail |
|
201 | def create_mail | |
201 | # Removes the current user from the recipients and cc |
|
202 | # Removes the current user from the recipients and cc | |
202 | # if he doesn't want to receive notifications about what he does |
|
203 | # if he doesn't want to receive notifications about what he does | |
203 | if User.current.pref[:no_self_notified] |
|
204 | if User.current.pref[:no_self_notified] | |
204 | recipients.delete(User.current.mail) if recipients |
|
205 | recipients.delete(User.current.mail) if recipients | |
205 | cc.delete(User.current.mail) if cc |
|
206 | cc.delete(User.current.mail) if cc | |
206 | end |
|
207 | end | |
207 | # Blind carbon copy recipients |
|
208 | # Blind carbon copy recipients | |
208 | if Setting.bcc_recipients? |
|
209 | if Setting.bcc_recipients? | |
209 | bcc([recipients, cc].flatten.compact.uniq) |
|
210 | bcc([recipients, cc].flatten.compact.uniq) | |
210 | recipients [] |
|
211 | recipients [] | |
211 | cc [] |
|
212 | cc [] | |
212 |
end |
|
213 | end | |
213 | super |
|
214 | super | |
214 | end |
|
215 | end | |
215 |
|
216 | |||
216 | # Renders a message with the corresponding layout |
|
217 | # Renders a message with the corresponding layout | |
217 | def render_message(method_name, body) |
|
218 | def render_message(method_name, body) | |
218 | layout = method_name.match(%r{text\.html\.(rhtml|rxml)}) ? 'layout.text.html.rhtml' : 'layout.text.plain.rhtml' |
|
219 | layout = method_name.match(%r{text\.html\.(rhtml|rxml)}) ? 'layout.text.html.rhtml' : 'layout.text.plain.rhtml' | |
219 | body[:content_for_layout] = render(:file => method_name, :body => body) |
|
220 | body[:content_for_layout] = render(:file => method_name, :body => body) | |
220 | ActionView::Base.new(template_root, body, self).render(:file => "mailer/#{layout}", :use_full_path => true) |
|
221 | ActionView::Base.new(template_root, body, self).render(:file => "mailer/#{layout}", :use_full_path => true) | |
221 | end |
|
222 | end | |
222 |
|
223 | |||
223 | # for the case of plain text only |
|
224 | # for the case of plain text only | |
224 | def body(*params) |
|
225 | def body(*params) | |
225 | value = super(*params) |
|
226 | value = super(*params) | |
226 | if Setting.plain_text_mail? |
|
227 | if Setting.plain_text_mail? | |
227 | templates = Dir.glob("#{template_path}/#{@template}.text.plain.{rhtml,erb}") |
|
228 | templates = Dir.glob("#{template_path}/#{@template}.text.plain.{rhtml,erb}") | |
228 | unless String === @body or templates.empty? |
|
229 | unless String === @body or templates.empty? | |
229 | template = File.basename(templates.first) |
|
230 | template = File.basename(templates.first) | |
230 | @body[:content_for_layout] = render(:file => template, :body => @body) |
|
231 | @body[:content_for_layout] = render(:file => template, :body => @body) | |
231 | @body = ActionView::Base.new(template_root, @body, self).render(:file => "mailer/layout.text.plain.rhtml", :use_full_path => true) |
|
232 | @body = ActionView::Base.new(template_root, @body, self).render(:file => "mailer/layout.text.plain.rhtml", :use_full_path => true) | |
232 | return @body |
|
233 | return @body | |
233 | end |
|
234 | end | |
234 | end |
|
235 | end | |
235 | return value |
|
236 | return value | |
236 | end |
|
237 | end | |
237 |
|
238 | |||
238 | # Makes partial rendering work with Rails 1.2 (retro-compatibility) |
|
239 | # Makes partial rendering work with Rails 1.2 (retro-compatibility) | |
239 | def self.controller_path |
|
240 | def self.controller_path | |
240 | '' |
|
241 | '' | |
241 | end unless respond_to?('controller_path') |
|
242 | end unless respond_to?('controller_path') | |
242 | end |
|
243 | end |
@@ -1,55 +1,56 | |||||
1 | <% form_tag({:action => 'edit'}) do %> |
|
1 | <% form_tag({:action => 'edit'}) do %> | |
2 |
|
2 | |||
3 | <div class="box tabular settings"> |
|
3 | <div class="box tabular settings"> | |
4 | <p><label><%= l(:setting_app_title) %></label> |
|
4 | <p><label><%= l(:setting_app_title) %></label> | |
5 | <%= text_field_tag 'settings[app_title]', Setting.app_title, :size => 30 %></p> |
|
5 | <%= text_field_tag 'settings[app_title]', Setting.app_title, :size => 30 %></p> | |
6 |
|
6 | |||
7 | <p><label><%= l(:setting_welcome_text) %></label> |
|
7 | <p><label><%= l(:setting_welcome_text) %></label> | |
8 | <%= text_area_tag 'settings[welcome_text]', Setting.welcome_text, :cols => 60, :rows => 5, :class => 'wiki-edit' %></p> |
|
8 | <%= text_area_tag 'settings[welcome_text]', Setting.welcome_text, :cols => 60, :rows => 5, :class => 'wiki-edit' %></p> | |
9 | <%= wikitoolbar_for 'settings[welcome_text]' %> |
|
9 | <%= wikitoolbar_for 'settings[welcome_text]' %> | |
10 |
|
10 | |||
11 | <p><label><%= l(:label_theme) %></label> |
|
11 | <p><label><%= l(:label_theme) %></label> | |
12 | <%= select_tag 'settings[ui_theme]', options_for_select( ([[l(:label_default), '']] + Redmine::Themes.themes.collect {|t| [t.name, t.id]}), Setting.ui_theme) %></p> |
|
12 | <%= select_tag 'settings[ui_theme]', options_for_select( ([[l(:label_default), '']] + Redmine::Themes.themes.collect {|t| [t.name, t.id]}), Setting.ui_theme) %></p> | |
13 |
|
13 | |||
14 | <p><label><%= l(:setting_default_language) %></label> |
|
14 | <p><label><%= l(:setting_default_language) %></label> | |
15 | <%= select_tag 'settings[default_language]', options_for_select( lang_options_for_select(false), Setting.default_language) %></p> |
|
15 | <%= select_tag 'settings[default_language]', options_for_select( lang_options_for_select(false), Setting.default_language) %></p> | |
16 |
|
16 | |||
17 | <p><label><%= l(:setting_date_format) %></label> |
|
17 | <p><label><%= l(:setting_date_format) %></label> | |
18 | <%= select_tag 'settings[date_format]', options_for_select( [[l(:label_language_based), '']] + Setting::DATE_FORMATS.collect {|f| [Date.today.strftime(f), f]}, Setting.date_format) %></p> |
|
18 | <%= select_tag 'settings[date_format]', options_for_select( [[l(:label_language_based), '']] + Setting::DATE_FORMATS.collect {|f| [Date.today.strftime(f), f]}, Setting.date_format) %></p> | |
19 |
|
19 | |||
20 | <p><label><%= l(:setting_time_format) %></label> |
|
20 | <p><label><%= l(:setting_time_format) %></label> | |
21 | <%= select_tag 'settings[time_format]', options_for_select( [[l(:label_language_based), '']] + Setting::TIME_FORMATS.collect {|f| [Time.now.strftime(f), f]}, Setting.time_format) %></p> |
|
21 | <%= select_tag 'settings[time_format]', options_for_select( [[l(:label_language_based), '']] + Setting::TIME_FORMATS.collect {|f| [Time.now.strftime(f), f]}, Setting.time_format) %></p> | |
22 |
|
22 | |||
23 | <p><label><%= l(:setting_user_format) %></label> |
|
23 | <p><label><%= l(:setting_user_format) %></label> | |
24 | <%= select_tag 'settings[user_format]', options_for_select( @options[:user_format], Setting.user_format.to_s ) %></p> |
|
24 | <%= select_tag 'settings[user_format]', options_for_select( @options[:user_format], Setting.user_format.to_s ) %></p> | |
25 |
|
25 | |||
26 | <p><label><%= l(:setting_attachment_max_size) %></label> |
|
26 | <p><label><%= l(:setting_attachment_max_size) %></label> | |
27 | <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p> |
|
27 | <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p> | |
28 |
|
28 | |||
29 | <p><label><%= l(:setting_per_page_options) %></label> |
|
29 | <p><label><%= l(:setting_per_page_options) %></label> | |
30 | <%= text_field_tag 'settings[per_page_options]', Setting.per_page_options_array.join(', '), :size => 20 %><br /><em><%= l(:text_comma_separated) %></em></p> |
|
30 | <%= text_field_tag 'settings[per_page_options]', Setting.per_page_options_array.join(', '), :size => 20 %><br /><em><%= l(:text_comma_separated) %></em></p> | |
31 |
|
31 | |||
32 | <p><label><%= l(:setting_activity_days_default) %></label> |
|
32 | <p><label><%= l(:setting_activity_days_default) %></label> | |
33 | <%= text_field_tag 'settings[activity_days_default]', Setting.activity_days_default, :size => 6 %> <%= l(:label_day_plural) %></p> |
|
33 | <%= text_field_tag 'settings[activity_days_default]', Setting.activity_days_default, :size => 6 %> <%= l(:label_day_plural) %></p> | |
34 |
|
34 | |||
35 | <p><label><%= l(:setting_host_name) %></label> |
|
35 | <p><label><%= l(:setting_host_name) %></label> | |
36 |
<%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %></ |
|
36 | <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %><br /> | |
|
37 | <em><%= l(:label_example) %>: <%= @guessed_host_and_path %></em></p> | |||
37 |
|
38 | |||
38 | <p><label><%= l(:setting_protocol) %></label> |
|
39 | <p><label><%= l(:setting_protocol) %></label> | |
39 | <%= select_tag 'settings[protocol]', options_for_select(['http', 'https'], Setting.protocol) %></p> |
|
40 | <%= select_tag 'settings[protocol]', options_for_select(['http', 'https'], Setting.protocol) %></p> | |
40 |
|
41 | |||
41 | <p><label><%= l(:setting_text_formatting) %></label> |
|
42 | <p><label><%= l(:setting_text_formatting) %></label> | |
42 | <%= select_tag 'settings[text_formatting]', options_for_select([[l(:label_none), "0"], *Redmine::WikiFormatting.format_names.collect{|name| [name, name]} ], Setting.text_formatting.to_sym) %></p> |
|
43 | <%= select_tag 'settings[text_formatting]', options_for_select([[l(:label_none), "0"], *Redmine::WikiFormatting.format_names.collect{|name| [name, name]} ], Setting.text_formatting.to_sym) %></p> | |
43 |
|
44 | |||
44 | <p><label><%= l(:setting_wiki_compression) %></label> |
|
45 | <p><label><%= l(:setting_wiki_compression) %></label> | |
45 | <%= select_tag 'settings[wiki_compression]', options_for_select( [[l(:label_none), 0], ["gzip", "gzip"]], Setting.wiki_compression) %></p> |
|
46 | <%= select_tag 'settings[wiki_compression]', options_for_select( [[l(:label_none), 0], ["gzip", "gzip"]], Setting.wiki_compression) %></p> | |
46 |
|
47 | |||
47 | <p><label><%= l(:setting_feeds_limit) %></label> |
|
48 | <p><label><%= l(:setting_feeds_limit) %></label> | |
48 | <%= text_field_tag 'settings[feeds_limit]', Setting.feeds_limit, :size => 6 %></p> |
|
49 | <%= text_field_tag 'settings[feeds_limit]', Setting.feeds_limit, :size => 6 %></p> | |
49 |
|
50 | |||
50 | <p><label><%= l(:setting_gravatar_enabled) %></label> |
|
51 | <p><label><%= l(:setting_gravatar_enabled) %></label> | |
51 | <%= check_box_tag 'settings[gravatar_enabled]', 1, Setting.gravatar_enabled? %><%= hidden_field_tag 'settings[gravatar_enabled]', 0 %></p> |
|
52 | <%= check_box_tag 'settings[gravatar_enabled]', 1, Setting.gravatar_enabled? %><%= hidden_field_tag 'settings[gravatar_enabled]', 0 %></p> | |
52 | </div> |
|
53 | </div> | |
53 |
|
54 | |||
54 | <%= submit_tag l(:button_save) %> |
|
55 | <%= submit_tag l(:button_save) %> | |
55 | <% end %> |
|
56 | <% end %> |
@@ -1,692 +1,693 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December |
|
4 | actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 day |
|
8 | actionview_datehelper_time_in_words_day: 1 day | |
9 | actionview_datehelper_time_in_words_day_plural: %d days |
|
9 | actionview_datehelper_time_in_words_day_plural: %d days | |
10 | actionview_datehelper_time_in_words_hour_about: about an hour |
|
10 | actionview_datehelper_time_in_words_hour_about: about an hour | |
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours | |
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour |
|
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour | |
13 | actionview_datehelper_time_in_words_minute: 1 minute |
|
13 | actionview_datehelper_time_in_words_minute: 1 minute | |
14 | actionview_datehelper_time_in_words_minute_half: half a minute |
|
14 | actionview_datehelper_time_in_words_minute_half: half a minute | |
15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute |
|
15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minute |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minute | |
18 | actionview_datehelper_time_in_words_second_less_than: less than a second |
|
18 | actionview_datehelper_time_in_words_second_less_than: less than a second | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds | |
20 | actionview_instancetag_blank_option: Please select |
|
20 | actionview_instancetag_blank_option: Please select | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: is not included in the list |
|
22 | activerecord_error_inclusion: is not included in the list | |
23 | activerecord_error_exclusion: is reserved |
|
23 | activerecord_error_exclusion: is reserved | |
24 | activerecord_error_invalid: is invalid |
|
24 | activerecord_error_invalid: is invalid | |
25 | activerecord_error_confirmation: doesn't match confirmation |
|
25 | activerecord_error_confirmation: doesn't match confirmation | |
26 | activerecord_error_accepted: must be accepted |
|
26 | activerecord_error_accepted: must be accepted | |
27 | activerecord_error_empty: can't be empty |
|
27 | activerecord_error_empty: can't be empty | |
28 | activerecord_error_blank: can't be blank |
|
28 | activerecord_error_blank: can't be blank | |
29 | activerecord_error_too_long: is too long |
|
29 | activerecord_error_too_long: is too long | |
30 | activerecord_error_too_short: is too short |
|
30 | activerecord_error_too_short: is too short | |
31 | activerecord_error_wrong_length: is the wrong length |
|
31 | activerecord_error_wrong_length: is the wrong length | |
32 | activerecord_error_taken: has already been taken |
|
32 | activerecord_error_taken: has already been taken | |
33 | activerecord_error_not_a_number: is not a number |
|
33 | activerecord_error_not_a_number: is not a number | |
34 | activerecord_error_not_a_date: is not a valid date |
|
34 | activerecord_error_not_a_date: is not a valid date | |
35 | activerecord_error_greater_than_start_date: must be greater than start date |
|
35 | activerecord_error_greater_than_start_date: must be greater than start date | |
36 | activerecord_error_not_same_project: doesn't belong to the same project |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
37 | activerecord_error_circular_dependency: This relation would create a circular dependency |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
38 |
|
38 | |||
39 | general_fmt_age: %d yr |
|
39 | general_fmt_age: %d yr | |
40 | general_fmt_age_plural: %d yrs |
|
40 | general_fmt_age_plural: %d yrs | |
41 | general_fmt_date: %%m/%%d/%%Y |
|
41 | general_fmt_date: %%m/%%d/%%Y | |
42 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p |
|
42 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p | |
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
44 | general_fmt_time: %%I:%%M %%p |
|
44 | general_fmt_time: %%I:%%M %%p | |
45 | general_text_No: 'No' |
|
45 | general_text_No: 'No' | |
46 | general_text_Yes: 'Yes' |
|
46 | general_text_Yes: 'Yes' | |
47 | general_text_no: 'no' |
|
47 | general_text_no: 'no' | |
48 | general_text_yes: 'yes' |
|
48 | general_text_yes: 'yes' | |
49 | general_lang_name: 'English' |
|
49 | general_lang_name: 'English' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_decimal_separator: '.' |
|
51 | general_csv_decimal_separator: '.' | |
52 | general_csv_encoding: ISO-8859-1 |
|
52 | general_csv_encoding: ISO-8859-1 | |
53 | general_pdf_encoding: ISO-8859-1 |
|
53 | general_pdf_encoding: ISO-8859-1 | |
54 | general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday |
|
54 | general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday | |
55 | general_first_day_of_week: '7' |
|
55 | general_first_day_of_week: '7' | |
56 |
|
56 | |||
57 | notice_account_updated: Account was successfully updated. |
|
57 | notice_account_updated: Account was successfully updated. | |
58 | notice_account_invalid_creditentials: Invalid user or password |
|
58 | notice_account_invalid_creditentials: Invalid user or password | |
59 | notice_account_password_updated: Password was successfully updated. |
|
59 | notice_account_password_updated: Password was successfully updated. | |
60 | notice_account_wrong_password: Wrong password |
|
60 | notice_account_wrong_password: Wrong password | |
61 | notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. |
|
61 | notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. | |
62 | notice_account_unknown_email: Unknown user. |
|
62 | notice_account_unknown_email: Unknown user. | |
63 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
63 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. | |
64 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
64 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. | |
65 | notice_account_activated: Your account has been activated. You can now log in. |
|
65 | notice_account_activated: Your account has been activated. You can now log in. | |
66 | notice_successful_create: Successful creation. |
|
66 | notice_successful_create: Successful creation. | |
67 | notice_successful_update: Successful update. |
|
67 | notice_successful_update: Successful update. | |
68 | notice_successful_delete: Successful deletion. |
|
68 | notice_successful_delete: Successful deletion. | |
69 | notice_successful_connection: Successful connection. |
|
69 | notice_successful_connection: Successful connection. | |
70 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. |
|
70 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. | |
71 | notice_locking_conflict: Data has been updated by another user. |
|
71 | notice_locking_conflict: Data has been updated by another user. | |
72 | notice_not_authorized: You are not authorized to access this page. |
|
72 | notice_not_authorized: You are not authorized to access this page. | |
73 | notice_email_sent: An email was sent to %s |
|
73 | notice_email_sent: An email was sent to %s | |
74 | notice_email_error: An error occurred while sending mail (%s) |
|
74 | notice_email_error: An error occurred while sending mail (%s) | |
75 | notice_feeds_access_key_reseted: Your RSS access key was reset. |
|
75 | notice_feeds_access_key_reseted: Your RSS access key was reset. | |
76 | notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s." |
|
76 | notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s." | |
77 | notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." |
|
77 | notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." | |
78 | notice_account_pending: "Your account was created and is now pending administrator approval." |
|
78 | notice_account_pending: "Your account was created and is now pending administrator approval." | |
79 | notice_default_data_loaded: Default configuration successfully loaded. |
|
79 | notice_default_data_loaded: Default configuration successfully loaded. | |
80 | notice_unable_delete_version: Unable to delete version. |
|
80 | notice_unable_delete_version: Unable to delete version. | |
81 |
|
81 | |||
82 | error_can_t_load_default_data: "Default configuration could not be loaded: %s" |
|
82 | error_can_t_load_default_data: "Default configuration could not be loaded: %s" | |
83 | error_scm_not_found: "The entry or revision was not found in the repository." |
|
83 | error_scm_not_found: "The entry or revision was not found in the repository." | |
84 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" |
|
84 | error_scm_command_failed: "An error occurred when trying to access the repository: %s" | |
85 | error_scm_annotate: "The entry does not exist or can not be annotated." |
|
85 | error_scm_annotate: "The entry does not exist or can not be annotated." | |
86 | error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' |
|
86 | error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' | |
87 |
|
87 | |||
88 | mail_subject_lost_password: Your %s password |
|
88 | mail_subject_lost_password: Your %s password | |
89 | mail_body_lost_password: 'To change your password, click on the following link:' |
|
89 | mail_body_lost_password: 'To change your password, click on the following link:' | |
90 | mail_subject_register: Your %s account activation |
|
90 | mail_subject_register: Your %s account activation | |
91 | mail_body_register: 'To activate your account, click on the following link:' |
|
91 | mail_body_register: 'To activate your account, click on the following link:' | |
92 | mail_body_account_information_external: You can use your "%s" account to log in. |
|
92 | mail_body_account_information_external: You can use your "%s" account to log in. | |
93 | mail_body_account_information: Your account information |
|
93 | mail_body_account_information: Your account information | |
94 | mail_subject_account_activation_request: %s account activation request |
|
94 | mail_subject_account_activation_request: %s account activation request | |
95 | mail_body_account_activation_request: 'A new user (%s) has registered. The account is pending your approval:' |
|
95 | mail_body_account_activation_request: 'A new user (%s) has registered. The account is pending your approval:' | |
96 | mail_subject_reminder: "%d issue(s) due in the next days" |
|
96 | mail_subject_reminder: "%d issue(s) due in the next days" | |
97 | mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:" |
|
97 | mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:" | |
98 |
|
98 | |||
99 | gui_validation_error: 1 error |
|
99 | gui_validation_error: 1 error | |
100 | gui_validation_error_plural: %d errors |
|
100 | gui_validation_error_plural: %d errors | |
101 |
|
101 | |||
102 | field_name: Name |
|
102 | field_name: Name | |
103 | field_description: Description |
|
103 | field_description: Description | |
104 | field_summary: Summary |
|
104 | field_summary: Summary | |
105 | field_is_required: Required |
|
105 | field_is_required: Required | |
106 | field_firstname: Firstname |
|
106 | field_firstname: Firstname | |
107 | field_lastname: Lastname |
|
107 | field_lastname: Lastname | |
108 | field_mail: Email |
|
108 | field_mail: Email | |
109 | field_filename: File |
|
109 | field_filename: File | |
110 | field_filesize: Size |
|
110 | field_filesize: Size | |
111 | field_downloads: Downloads |
|
111 | field_downloads: Downloads | |
112 | field_author: Author |
|
112 | field_author: Author | |
113 | field_created_on: Created |
|
113 | field_created_on: Created | |
114 | field_updated_on: Updated |
|
114 | field_updated_on: Updated | |
115 | field_field_format: Format |
|
115 | field_field_format: Format | |
116 | field_is_for_all: For all projects |
|
116 | field_is_for_all: For all projects | |
117 | field_possible_values: Possible values |
|
117 | field_possible_values: Possible values | |
118 | field_regexp: Regular expression |
|
118 | field_regexp: Regular expression | |
119 | field_min_length: Minimum length |
|
119 | field_min_length: Minimum length | |
120 | field_max_length: Maximum length |
|
120 | field_max_length: Maximum length | |
121 | field_value: Value |
|
121 | field_value: Value | |
122 | field_category: Category |
|
122 | field_category: Category | |
123 | field_title: Title |
|
123 | field_title: Title | |
124 | field_project: Project |
|
124 | field_project: Project | |
125 | field_issue: Issue |
|
125 | field_issue: Issue | |
126 | field_status: Status |
|
126 | field_status: Status | |
127 | field_notes: Notes |
|
127 | field_notes: Notes | |
128 | field_is_closed: Issue closed |
|
128 | field_is_closed: Issue closed | |
129 | field_is_default: Default value |
|
129 | field_is_default: Default value | |
130 | field_tracker: Tracker |
|
130 | field_tracker: Tracker | |
131 | field_subject: Subject |
|
131 | field_subject: Subject | |
132 | field_due_date: Due date |
|
132 | field_due_date: Due date | |
133 | field_assigned_to: Assigned to |
|
133 | field_assigned_to: Assigned to | |
134 | field_priority: Priority |
|
134 | field_priority: Priority | |
135 | field_fixed_version: Target version |
|
135 | field_fixed_version: Target version | |
136 | field_user: User |
|
136 | field_user: User | |
137 | field_role: Role |
|
137 | field_role: Role | |
138 | field_homepage: Homepage |
|
138 | field_homepage: Homepage | |
139 | field_is_public: Public |
|
139 | field_is_public: Public | |
140 | field_parent: Subproject of |
|
140 | field_parent: Subproject of | |
141 | field_is_in_chlog: Issues displayed in changelog |
|
141 | field_is_in_chlog: Issues displayed in changelog | |
142 | field_is_in_roadmap: Issues displayed in roadmap |
|
142 | field_is_in_roadmap: Issues displayed in roadmap | |
143 | field_login: Login |
|
143 | field_login: Login | |
144 | field_mail_notification: Email notifications |
|
144 | field_mail_notification: Email notifications | |
145 | field_admin: Administrator |
|
145 | field_admin: Administrator | |
146 | field_last_login_on: Last connection |
|
146 | field_last_login_on: Last connection | |
147 | field_language: Language |
|
147 | field_language: Language | |
148 | field_effective_date: Date |
|
148 | field_effective_date: Date | |
149 | field_password: Password |
|
149 | field_password: Password | |
150 | field_new_password: New password |
|
150 | field_new_password: New password | |
151 | field_password_confirmation: Confirmation |
|
151 | field_password_confirmation: Confirmation | |
152 | field_version: Version |
|
152 | field_version: Version | |
153 | field_type: Type |
|
153 | field_type: Type | |
154 | field_host: Host |
|
154 | field_host: Host | |
155 | field_port: Port |
|
155 | field_port: Port | |
156 | field_account: Account |
|
156 | field_account: Account | |
157 | field_base_dn: Base DN |
|
157 | field_base_dn: Base DN | |
158 | field_attr_login: Login attribute |
|
158 | field_attr_login: Login attribute | |
159 | field_attr_firstname: Firstname attribute |
|
159 | field_attr_firstname: Firstname attribute | |
160 | field_attr_lastname: Lastname attribute |
|
160 | field_attr_lastname: Lastname attribute | |
161 | field_attr_mail: Email attribute |
|
161 | field_attr_mail: Email attribute | |
162 | field_onthefly: On-the-fly user creation |
|
162 | field_onthefly: On-the-fly user creation | |
163 | field_start_date: Start |
|
163 | field_start_date: Start | |
164 | field_done_ratio: %% Done |
|
164 | field_done_ratio: %% Done | |
165 | field_auth_source: Authentication mode |
|
165 | field_auth_source: Authentication mode | |
166 | field_hide_mail: Hide my email address |
|
166 | field_hide_mail: Hide my email address | |
167 | field_comments: Comment |
|
167 | field_comments: Comment | |
168 | field_url: URL |
|
168 | field_url: URL | |
169 | field_start_page: Start page |
|
169 | field_start_page: Start page | |
170 | field_subproject: Subproject |
|
170 | field_subproject: Subproject | |
171 | field_hours: Hours |
|
171 | field_hours: Hours | |
172 | field_activity: Activity |
|
172 | field_activity: Activity | |
173 | field_spent_on: Date |
|
173 | field_spent_on: Date | |
174 | field_identifier: Identifier |
|
174 | field_identifier: Identifier | |
175 | field_is_filter: Used as a filter |
|
175 | field_is_filter: Used as a filter | |
176 | field_issue_to_id: Related issue |
|
176 | field_issue_to_id: Related issue | |
177 | field_delay: Delay |
|
177 | field_delay: Delay | |
178 | field_assignable: Issues can be assigned to this role |
|
178 | field_assignable: Issues can be assigned to this role | |
179 | field_redirect_existing_links: Redirect existing links |
|
179 | field_redirect_existing_links: Redirect existing links | |
180 | field_estimated_hours: Estimated time |
|
180 | field_estimated_hours: Estimated time | |
181 | field_column_names: Columns |
|
181 | field_column_names: Columns | |
182 | field_time_zone: Time zone |
|
182 | field_time_zone: Time zone | |
183 | field_searchable: Searchable |
|
183 | field_searchable: Searchable | |
184 | field_default_value: Default value |
|
184 | field_default_value: Default value | |
185 | field_comments_sorting: Display comments |
|
185 | field_comments_sorting: Display comments | |
186 | field_parent_title: Parent page |
|
186 | field_parent_title: Parent page | |
187 |
|
187 | |||
188 | setting_app_title: Application title |
|
188 | setting_app_title: Application title | |
189 | setting_app_subtitle: Application subtitle |
|
189 | setting_app_subtitle: Application subtitle | |
190 | setting_welcome_text: Welcome text |
|
190 | setting_welcome_text: Welcome text | |
191 | setting_default_language: Default language |
|
191 | setting_default_language: Default language | |
192 | setting_login_required: Authentication required |
|
192 | setting_login_required: Authentication required | |
193 | setting_self_registration: Self-registration |
|
193 | setting_self_registration: Self-registration | |
194 | setting_attachment_max_size: Attachment max. size |
|
194 | setting_attachment_max_size: Attachment max. size | |
195 | setting_issues_export_limit: Issues export limit |
|
195 | setting_issues_export_limit: Issues export limit | |
196 | setting_mail_from: Emission email address |
|
196 | setting_mail_from: Emission email address | |
197 | setting_bcc_recipients: Blind carbon copy recipients (bcc) |
|
197 | setting_bcc_recipients: Blind carbon copy recipients (bcc) | |
198 | setting_plain_text_mail: plain text mail (no HTML) |
|
198 | setting_plain_text_mail: plain text mail (no HTML) | |
199 | setting_host_name: Host name |
|
199 | setting_host_name: Host name and path | |
200 | setting_text_formatting: Text formatting |
|
200 | setting_text_formatting: Text formatting | |
201 | setting_wiki_compression: Wiki history compression |
|
201 | setting_wiki_compression: Wiki history compression | |
202 | setting_feeds_limit: Feed content limit |
|
202 | setting_feeds_limit: Feed content limit | |
203 | setting_default_projects_public: New projects are public by default |
|
203 | setting_default_projects_public: New projects are public by default | |
204 | setting_autofetch_changesets: Autofetch commits |
|
204 | setting_autofetch_changesets: Autofetch commits | |
205 | setting_sys_api_enabled: Enable WS for repository management |
|
205 | setting_sys_api_enabled: Enable WS for repository management | |
206 | setting_commit_ref_keywords: Referencing keywords |
|
206 | setting_commit_ref_keywords: Referencing keywords | |
207 | setting_commit_fix_keywords: Fixing keywords |
|
207 | setting_commit_fix_keywords: Fixing keywords | |
208 | setting_autologin: Autologin |
|
208 | setting_autologin: Autologin | |
209 | setting_date_format: Date format |
|
209 | setting_date_format: Date format | |
210 | setting_time_format: Time format |
|
210 | setting_time_format: Time format | |
211 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
211 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
212 | setting_issue_list_default_columns: Default columns displayed on the issue list |
|
212 | setting_issue_list_default_columns: Default columns displayed on the issue list | |
213 | setting_repositories_encodings: Repositories encodings |
|
213 | setting_repositories_encodings: Repositories encodings | |
214 | setting_commit_logs_encoding: Commit messages encoding |
|
214 | setting_commit_logs_encoding: Commit messages encoding | |
215 | setting_emails_footer: Emails footer |
|
215 | setting_emails_footer: Emails footer | |
216 | setting_protocol: Protocol |
|
216 | setting_protocol: Protocol | |
217 | setting_per_page_options: Objects per page options |
|
217 | setting_per_page_options: Objects per page options | |
218 | setting_user_format: Users display format |
|
218 | setting_user_format: Users display format | |
219 | setting_activity_days_default: Days displayed on project activity |
|
219 | setting_activity_days_default: Days displayed on project activity | |
220 | setting_display_subprojects_issues: Display subprojects issues on main projects by default |
|
220 | setting_display_subprojects_issues: Display subprojects issues on main projects by default | |
221 | setting_enabled_scm: Enabled SCM |
|
221 | setting_enabled_scm: Enabled SCM | |
222 | setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
222 | setting_mail_handler_api_enabled: Enable WS for incoming emails | |
223 | setting_mail_handler_api_key: API key |
|
223 | setting_mail_handler_api_key: API key | |
224 | setting_sequential_project_identifiers: Generate sequential project identifiers |
|
224 | setting_sequential_project_identifiers: Generate sequential project identifiers | |
225 | setting_gravatar_enabled: Use Gravatar user icons |
|
225 | setting_gravatar_enabled: Use Gravatar user icons | |
226 |
|
226 | |||
227 | permission_edit_project: Edit project |
|
227 | permission_edit_project: Edit project | |
228 | permission_select_project_modules: Select project modules |
|
228 | permission_select_project_modules: Select project modules | |
229 | permission_manage_members: Manage members |
|
229 | permission_manage_members: Manage members | |
230 | permission_manage_versions: Manage versions |
|
230 | permission_manage_versions: Manage versions | |
231 | permission_manage_categories: Manage issue categories |
|
231 | permission_manage_categories: Manage issue categories | |
232 | permission_add_issues: Add issues |
|
232 | permission_add_issues: Add issues | |
233 | permission_edit_issues: Edit issues |
|
233 | permission_edit_issues: Edit issues | |
234 | permission_manage_issue_relations: Manage issue relations |
|
234 | permission_manage_issue_relations: Manage issue relations | |
235 | permission_add_issue_notes: Add notes |
|
235 | permission_add_issue_notes: Add notes | |
236 | permission_edit_issue_notes: Edit notes |
|
236 | permission_edit_issue_notes: Edit notes | |
237 | permission_edit_own_issue_notes: Edit own notes |
|
237 | permission_edit_own_issue_notes: Edit own notes | |
238 | permission_move_issues: Move issues |
|
238 | permission_move_issues: Move issues | |
239 | permission_delete_issues: Delete issues |
|
239 | permission_delete_issues: Delete issues | |
240 | permission_manage_public_queries: Manage public queries |
|
240 | permission_manage_public_queries: Manage public queries | |
241 | permission_save_queries: Save queries |
|
241 | permission_save_queries: Save queries | |
242 | permission_view_gantt: View gantt chart |
|
242 | permission_view_gantt: View gantt chart | |
243 | permission_view_calendar: View calender |
|
243 | permission_view_calendar: View calender | |
244 | permission_view_issue_watchers: View watchers list |
|
244 | permission_view_issue_watchers: View watchers list | |
245 | permission_add_issue_watchers: Add watchers |
|
245 | permission_add_issue_watchers: Add watchers | |
246 | permission_log_time: Log spent time |
|
246 | permission_log_time: Log spent time | |
247 | permission_view_time_entries: View spent time |
|
247 | permission_view_time_entries: View spent time | |
248 | permission_edit_time_entries: Edit time logs |
|
248 | permission_edit_time_entries: Edit time logs | |
249 | permission_edit_own_time_entries: Edit own time logs |
|
249 | permission_edit_own_time_entries: Edit own time logs | |
250 | permission_manage_news: Manage news |
|
250 | permission_manage_news: Manage news | |
251 | permission_comment_news: Comment news |
|
251 | permission_comment_news: Comment news | |
252 | permission_manage_documents: Manage documents |
|
252 | permission_manage_documents: Manage documents | |
253 | permission_view_documents: View documents |
|
253 | permission_view_documents: View documents | |
254 | permission_manage_files: Manage files |
|
254 | permission_manage_files: Manage files | |
255 | permission_view_files: View files |
|
255 | permission_view_files: View files | |
256 | permission_manage_wiki: Manage wiki |
|
256 | permission_manage_wiki: Manage wiki | |
257 | permission_rename_wiki_pages: Rename wiki pages |
|
257 | permission_rename_wiki_pages: Rename wiki pages | |
258 | permission_delete_wiki_pages: Delete wiki pages |
|
258 | permission_delete_wiki_pages: Delete wiki pages | |
259 | permission_view_wiki_pages: View wiki |
|
259 | permission_view_wiki_pages: View wiki | |
260 | permission_view_wiki_edits: View wiki history |
|
260 | permission_view_wiki_edits: View wiki history | |
261 | permission_edit_wiki_pages: Edit wiki pages |
|
261 | permission_edit_wiki_pages: Edit wiki pages | |
262 | permission_delete_wiki_pages_attachments: Delete attachments |
|
262 | permission_delete_wiki_pages_attachments: Delete attachments | |
263 | permission_protect_wiki_pages: Protect wiki pages |
|
263 | permission_protect_wiki_pages: Protect wiki pages | |
264 | permission_manage_repository: Manage repository |
|
264 | permission_manage_repository: Manage repository | |
265 | permission_browse_repository: Browse repository |
|
265 | permission_browse_repository: Browse repository | |
266 | permission_view_changesets: View changesets |
|
266 | permission_view_changesets: View changesets | |
267 | permission_commit_access: Commit access |
|
267 | permission_commit_access: Commit access | |
268 | permission_manage_boards: Manage boards |
|
268 | permission_manage_boards: Manage boards | |
269 | permission_view_messages: View messages |
|
269 | permission_view_messages: View messages | |
270 | permission_add_messages: Post messages |
|
270 | permission_add_messages: Post messages | |
271 | permission_edit_messages: Edit messages |
|
271 | permission_edit_messages: Edit messages | |
272 | permission_delete_messages: Delete messages |
|
272 | permission_delete_messages: Delete messages | |
273 |
|
273 | |||
274 | project_module_issue_tracking: Issue tracking |
|
274 | project_module_issue_tracking: Issue tracking | |
275 | project_module_time_tracking: Time tracking |
|
275 | project_module_time_tracking: Time tracking | |
276 | project_module_news: News |
|
276 | project_module_news: News | |
277 | project_module_documents: Documents |
|
277 | project_module_documents: Documents | |
278 | project_module_files: Files |
|
278 | project_module_files: Files | |
279 | project_module_wiki: Wiki |
|
279 | project_module_wiki: Wiki | |
280 | project_module_repository: Repository |
|
280 | project_module_repository: Repository | |
281 | project_module_boards: Boards |
|
281 | project_module_boards: Boards | |
282 |
|
282 | |||
283 | label_user: User |
|
283 | label_user: User | |
284 | label_user_plural: Users |
|
284 | label_user_plural: Users | |
285 | label_user_new: New user |
|
285 | label_user_new: New user | |
286 | label_project: Project |
|
286 | label_project: Project | |
287 | label_project_new: New project |
|
287 | label_project_new: New project | |
288 | label_project_plural: Projects |
|
288 | label_project_plural: Projects | |
289 | label_project_all: All Projects |
|
289 | label_project_all: All Projects | |
290 | label_project_latest: Latest projects |
|
290 | label_project_latest: Latest projects | |
291 | label_issue: Issue |
|
291 | label_issue: Issue | |
292 | label_issue_new: New issue |
|
292 | label_issue_new: New issue | |
293 | label_issue_plural: Issues |
|
293 | label_issue_plural: Issues | |
294 | label_issue_view_all: View all issues |
|
294 | label_issue_view_all: View all issues | |
295 | label_issues_by: Issues by %s |
|
295 | label_issues_by: Issues by %s | |
296 | label_issue_added: Issue added |
|
296 | label_issue_added: Issue added | |
297 | label_issue_updated: Issue updated |
|
297 | label_issue_updated: Issue updated | |
298 | label_document: Document |
|
298 | label_document: Document | |
299 | label_document_new: New document |
|
299 | label_document_new: New document | |
300 | label_document_plural: Documents |
|
300 | label_document_plural: Documents | |
301 | label_document_added: Document added |
|
301 | label_document_added: Document added | |
302 | label_role: Role |
|
302 | label_role: Role | |
303 | label_role_plural: Roles |
|
303 | label_role_plural: Roles | |
304 | label_role_new: New role |
|
304 | label_role_new: New role | |
305 | label_role_and_permissions: Roles and permissions |
|
305 | label_role_and_permissions: Roles and permissions | |
306 | label_member: Member |
|
306 | label_member: Member | |
307 | label_member_new: New member |
|
307 | label_member_new: New member | |
308 | label_member_plural: Members |
|
308 | label_member_plural: Members | |
309 | label_tracker: Tracker |
|
309 | label_tracker: Tracker | |
310 | label_tracker_plural: Trackers |
|
310 | label_tracker_plural: Trackers | |
311 | label_tracker_new: New tracker |
|
311 | label_tracker_new: New tracker | |
312 | label_workflow: Workflow |
|
312 | label_workflow: Workflow | |
313 | label_issue_status: Issue status |
|
313 | label_issue_status: Issue status | |
314 | label_issue_status_plural: Issue statuses |
|
314 | label_issue_status_plural: Issue statuses | |
315 | label_issue_status_new: New status |
|
315 | label_issue_status_new: New status | |
316 | label_issue_category: Issue category |
|
316 | label_issue_category: Issue category | |
317 | label_issue_category_plural: Issue categories |
|
317 | label_issue_category_plural: Issue categories | |
318 | label_issue_category_new: New category |
|
318 | label_issue_category_new: New category | |
319 | label_custom_field: Custom field |
|
319 | label_custom_field: Custom field | |
320 | label_custom_field_plural: Custom fields |
|
320 | label_custom_field_plural: Custom fields | |
321 | label_custom_field_new: New custom field |
|
321 | label_custom_field_new: New custom field | |
322 | label_enumerations: Enumerations |
|
322 | label_enumerations: Enumerations | |
323 | label_enumeration_new: New value |
|
323 | label_enumeration_new: New value | |
324 | label_information: Information |
|
324 | label_information: Information | |
325 | label_information_plural: Information |
|
325 | label_information_plural: Information | |
326 | label_please_login: Please log in |
|
326 | label_please_login: Please log in | |
327 | label_register: Register |
|
327 | label_register: Register | |
328 | label_password_lost: Lost password |
|
328 | label_password_lost: Lost password | |
329 | label_home: Home |
|
329 | label_home: Home | |
330 | label_my_page: My page |
|
330 | label_my_page: My page | |
331 | label_my_account: My account |
|
331 | label_my_account: My account | |
332 | label_my_projects: My projects |
|
332 | label_my_projects: My projects | |
333 | label_administration: Administration |
|
333 | label_administration: Administration | |
334 | label_login: Sign in |
|
334 | label_login: Sign in | |
335 | label_logout: Sign out |
|
335 | label_logout: Sign out | |
336 | label_help: Help |
|
336 | label_help: Help | |
337 | label_reported_issues: Reported issues |
|
337 | label_reported_issues: Reported issues | |
338 | label_assigned_to_me_issues: Issues assigned to me |
|
338 | label_assigned_to_me_issues: Issues assigned to me | |
339 | label_last_login: Last connection |
|
339 | label_last_login: Last connection | |
340 | label_last_updates: Last updated |
|
340 | label_last_updates: Last updated | |
341 | label_last_updates_plural: %d last updated |
|
341 | label_last_updates_plural: %d last updated | |
342 | label_registered_on: Registered on |
|
342 | label_registered_on: Registered on | |
343 | label_activity: Activity |
|
343 | label_activity: Activity | |
344 | label_overall_activity: Overall activity |
|
344 | label_overall_activity: Overall activity | |
345 | label_new: New |
|
345 | label_new: New | |
346 | label_logged_as: Logged in as |
|
346 | label_logged_as: Logged in as | |
347 | label_environment: Environment |
|
347 | label_environment: Environment | |
348 | label_authentication: Authentication |
|
348 | label_authentication: Authentication | |
349 | label_auth_source: Authentication mode |
|
349 | label_auth_source: Authentication mode | |
350 | label_auth_source_new: New authentication mode |
|
350 | label_auth_source_new: New authentication mode | |
351 | label_auth_source_plural: Authentication modes |
|
351 | label_auth_source_plural: Authentication modes | |
352 | label_subproject_plural: Subprojects |
|
352 | label_subproject_plural: Subprojects | |
353 | label_and_its_subprojects: %s and its subprojects |
|
353 | label_and_its_subprojects: %s and its subprojects | |
354 | label_min_max_length: Min - Max length |
|
354 | label_min_max_length: Min - Max length | |
355 | label_list: List |
|
355 | label_list: List | |
356 | label_date: Date |
|
356 | label_date: Date | |
357 | label_integer: Integer |
|
357 | label_integer: Integer | |
358 | label_float: Float |
|
358 | label_float: Float | |
359 | label_boolean: Boolean |
|
359 | label_boolean: Boolean | |
360 | label_string: Text |
|
360 | label_string: Text | |
361 | label_text: Long text |
|
361 | label_text: Long text | |
362 | label_attribute: Attribute |
|
362 | label_attribute: Attribute | |
363 | label_attribute_plural: Attributes |
|
363 | label_attribute_plural: Attributes | |
364 | label_download: %d Download |
|
364 | label_download: %d Download | |
365 | label_download_plural: %d Downloads |
|
365 | label_download_plural: %d Downloads | |
366 | label_no_data: No data to display |
|
366 | label_no_data: No data to display | |
367 | label_change_status: Change status |
|
367 | label_change_status: Change status | |
368 | label_history: History |
|
368 | label_history: History | |
369 | label_attachment: File |
|
369 | label_attachment: File | |
370 | label_attachment_new: New file |
|
370 | label_attachment_new: New file | |
371 | label_attachment_delete: Delete file |
|
371 | label_attachment_delete: Delete file | |
372 | label_attachment_plural: Files |
|
372 | label_attachment_plural: Files | |
373 | label_file_added: File added |
|
373 | label_file_added: File added | |
374 | label_report: Report |
|
374 | label_report: Report | |
375 | label_report_plural: Reports |
|
375 | label_report_plural: Reports | |
376 | label_news: News |
|
376 | label_news: News | |
377 | label_news_new: Add news |
|
377 | label_news_new: Add news | |
378 | label_news_plural: News |
|
378 | label_news_plural: News | |
379 | label_news_latest: Latest news |
|
379 | label_news_latest: Latest news | |
380 | label_news_view_all: View all news |
|
380 | label_news_view_all: View all news | |
381 | label_news_added: News added |
|
381 | label_news_added: News added | |
382 | label_change_log: Change log |
|
382 | label_change_log: Change log | |
383 | label_settings: Settings |
|
383 | label_settings: Settings | |
384 | label_overview: Overview |
|
384 | label_overview: Overview | |
385 | label_version: Version |
|
385 | label_version: Version | |
386 | label_version_new: New version |
|
386 | label_version_new: New version | |
387 | label_version_plural: Versions |
|
387 | label_version_plural: Versions | |
388 | label_confirmation: Confirmation |
|
388 | label_confirmation: Confirmation | |
389 | label_export_to: 'Also available in:' |
|
389 | label_export_to: 'Also available in:' | |
390 | label_read: Read... |
|
390 | label_read: Read... | |
391 | label_public_projects: Public projects |
|
391 | label_public_projects: Public projects | |
392 | label_open_issues: open |
|
392 | label_open_issues: open | |
393 | label_open_issues_plural: open |
|
393 | label_open_issues_plural: open | |
394 | label_closed_issues: closed |
|
394 | label_closed_issues: closed | |
395 | label_closed_issues_plural: closed |
|
395 | label_closed_issues_plural: closed | |
396 | label_total: Total |
|
396 | label_total: Total | |
397 | label_permissions: Permissions |
|
397 | label_permissions: Permissions | |
398 | label_current_status: Current status |
|
398 | label_current_status: Current status | |
399 | label_new_statuses_allowed: New statuses allowed |
|
399 | label_new_statuses_allowed: New statuses allowed | |
400 | label_all: all |
|
400 | label_all: all | |
401 | label_none: none |
|
401 | label_none: none | |
402 | label_nobody: nobody |
|
402 | label_nobody: nobody | |
403 | label_next: Next |
|
403 | label_next: Next | |
404 | label_previous: Previous |
|
404 | label_previous: Previous | |
405 | label_used_by: Used by |
|
405 | label_used_by: Used by | |
406 | label_details: Details |
|
406 | label_details: Details | |
407 | label_add_note: Add a note |
|
407 | label_add_note: Add a note | |
408 | label_per_page: Per page |
|
408 | label_per_page: Per page | |
409 | label_calendar: Calendar |
|
409 | label_calendar: Calendar | |
410 | label_months_from: months from |
|
410 | label_months_from: months from | |
411 | label_gantt: Gantt |
|
411 | label_gantt: Gantt | |
412 | label_internal: Internal |
|
412 | label_internal: Internal | |
413 | label_last_changes: last %d changes |
|
413 | label_last_changes: last %d changes | |
414 | label_change_view_all: View all changes |
|
414 | label_change_view_all: View all changes | |
415 | label_personalize_page: Personalize this page |
|
415 | label_personalize_page: Personalize this page | |
416 | label_comment: Comment |
|
416 | label_comment: Comment | |
417 | label_comment_plural: Comments |
|
417 | label_comment_plural: Comments | |
418 | label_comment_add: Add a comment |
|
418 | label_comment_add: Add a comment | |
419 | label_comment_added: Comment added |
|
419 | label_comment_added: Comment added | |
420 | label_comment_delete: Delete comments |
|
420 | label_comment_delete: Delete comments | |
421 | label_query: Custom query |
|
421 | label_query: Custom query | |
422 | label_query_plural: Custom queries |
|
422 | label_query_plural: Custom queries | |
423 | label_query_new: New query |
|
423 | label_query_new: New query | |
424 | label_filter_add: Add filter |
|
424 | label_filter_add: Add filter | |
425 | label_filter_plural: Filters |
|
425 | label_filter_plural: Filters | |
426 | label_equals: is |
|
426 | label_equals: is | |
427 | label_not_equals: is not |
|
427 | label_not_equals: is not | |
428 | label_in_less_than: in less than |
|
428 | label_in_less_than: in less than | |
429 | label_in_more_than: in more than |
|
429 | label_in_more_than: in more than | |
430 | label_in: in |
|
430 | label_in: in | |
431 | label_today: today |
|
431 | label_today: today | |
432 | label_all_time: all time |
|
432 | label_all_time: all time | |
433 | label_yesterday: yesterday |
|
433 | label_yesterday: yesterday | |
434 | label_this_week: this week |
|
434 | label_this_week: this week | |
435 | label_last_week: last week |
|
435 | label_last_week: last week | |
436 | label_last_n_days: last %d days |
|
436 | label_last_n_days: last %d days | |
437 | label_this_month: this month |
|
437 | label_this_month: this month | |
438 | label_last_month: last month |
|
438 | label_last_month: last month | |
439 | label_this_year: this year |
|
439 | label_this_year: this year | |
440 | label_date_range: Date range |
|
440 | label_date_range: Date range | |
441 | label_less_than_ago: less than days ago |
|
441 | label_less_than_ago: less than days ago | |
442 | label_more_than_ago: more than days ago |
|
442 | label_more_than_ago: more than days ago | |
443 | label_ago: days ago |
|
443 | label_ago: days ago | |
444 | label_contains: contains |
|
444 | label_contains: contains | |
445 | label_not_contains: doesn't contain |
|
445 | label_not_contains: doesn't contain | |
446 | label_day_plural: days |
|
446 | label_day_plural: days | |
447 | label_repository: Repository |
|
447 | label_repository: Repository | |
448 | label_repository_plural: Repositories |
|
448 | label_repository_plural: Repositories | |
449 | label_browse: Browse |
|
449 | label_browse: Browse | |
450 | label_modification: %d change |
|
450 | label_modification: %d change | |
451 | label_modification_plural: %d changes |
|
451 | label_modification_plural: %d changes | |
452 | label_revision: Revision |
|
452 | label_revision: Revision | |
453 | label_revision_plural: Revisions |
|
453 | label_revision_plural: Revisions | |
454 | label_associated_revisions: Associated revisions |
|
454 | label_associated_revisions: Associated revisions | |
455 | label_added: added |
|
455 | label_added: added | |
456 | label_modified: modified |
|
456 | label_modified: modified | |
457 | label_copied: copied |
|
457 | label_copied: copied | |
458 | label_renamed: renamed |
|
458 | label_renamed: renamed | |
459 | label_deleted: deleted |
|
459 | label_deleted: deleted | |
460 | label_latest_revision: Latest revision |
|
460 | label_latest_revision: Latest revision | |
461 | label_latest_revision_plural: Latest revisions |
|
461 | label_latest_revision_plural: Latest revisions | |
462 | label_view_revisions: View revisions |
|
462 | label_view_revisions: View revisions | |
463 | label_max_size: Maximum size |
|
463 | label_max_size: Maximum size | |
464 | label_on: 'on' |
|
464 | label_on: 'on' | |
465 | label_sort_highest: Move to top |
|
465 | label_sort_highest: Move to top | |
466 | label_sort_higher: Move up |
|
466 | label_sort_higher: Move up | |
467 | label_sort_lower: Move down |
|
467 | label_sort_lower: Move down | |
468 | label_sort_lowest: Move to bottom |
|
468 | label_sort_lowest: Move to bottom | |
469 | label_roadmap: Roadmap |
|
469 | label_roadmap: Roadmap | |
470 | label_roadmap_due_in: Due in %s |
|
470 | label_roadmap_due_in: Due in %s | |
471 | label_roadmap_overdue: %s late |
|
471 | label_roadmap_overdue: %s late | |
472 | label_roadmap_no_issues: No issues for this version |
|
472 | label_roadmap_no_issues: No issues for this version | |
473 | label_search: Search |
|
473 | label_search: Search | |
474 | label_result_plural: Results |
|
474 | label_result_plural: Results | |
475 | label_all_words: All words |
|
475 | label_all_words: All words | |
476 | label_wiki: Wiki |
|
476 | label_wiki: Wiki | |
477 | label_wiki_edit: Wiki edit |
|
477 | label_wiki_edit: Wiki edit | |
478 | label_wiki_edit_plural: Wiki edits |
|
478 | label_wiki_edit_plural: Wiki edits | |
479 | label_wiki_page: Wiki page |
|
479 | label_wiki_page: Wiki page | |
480 | label_wiki_page_plural: Wiki pages |
|
480 | label_wiki_page_plural: Wiki pages | |
481 | label_index_by_title: Index by title |
|
481 | label_index_by_title: Index by title | |
482 | label_index_by_date: Index by date |
|
482 | label_index_by_date: Index by date | |
483 | label_current_version: Current version |
|
483 | label_current_version: Current version | |
484 | label_preview: Preview |
|
484 | label_preview: Preview | |
485 | label_feed_plural: Feeds |
|
485 | label_feed_plural: Feeds | |
486 | label_changes_details: Details of all changes |
|
486 | label_changes_details: Details of all changes | |
487 | label_issue_tracking: Issue tracking |
|
487 | label_issue_tracking: Issue tracking | |
488 | label_spent_time: Spent time |
|
488 | label_spent_time: Spent time | |
489 | label_f_hour: %.2f hour |
|
489 | label_f_hour: %.2f hour | |
490 | label_f_hour_plural: %.2f hours |
|
490 | label_f_hour_plural: %.2f hours | |
491 | label_time_tracking: Time tracking |
|
491 | label_time_tracking: Time tracking | |
492 | label_change_plural: Changes |
|
492 | label_change_plural: Changes | |
493 | label_statistics: Statistics |
|
493 | label_statistics: Statistics | |
494 | label_commits_per_month: Commits per month |
|
494 | label_commits_per_month: Commits per month | |
495 | label_commits_per_author: Commits per author |
|
495 | label_commits_per_author: Commits per author | |
496 | label_view_diff: View differences |
|
496 | label_view_diff: View differences | |
497 | label_diff_inline: inline |
|
497 | label_diff_inline: inline | |
498 | label_diff_side_by_side: side by side |
|
498 | label_diff_side_by_side: side by side | |
499 | label_options: Options |
|
499 | label_options: Options | |
500 | label_copy_workflow_from: Copy workflow from |
|
500 | label_copy_workflow_from: Copy workflow from | |
501 | label_permissions_report: Permissions report |
|
501 | label_permissions_report: Permissions report | |
502 | label_watched_issues: Watched issues |
|
502 | label_watched_issues: Watched issues | |
503 | label_related_issues: Related issues |
|
503 | label_related_issues: Related issues | |
504 | label_applied_status: Applied status |
|
504 | label_applied_status: Applied status | |
505 | label_loading: Loading... |
|
505 | label_loading: Loading... | |
506 | label_relation_new: New relation |
|
506 | label_relation_new: New relation | |
507 | label_relation_delete: Delete relation |
|
507 | label_relation_delete: Delete relation | |
508 | label_relates_to: related to |
|
508 | label_relates_to: related to | |
509 | label_duplicates: duplicates |
|
509 | label_duplicates: duplicates | |
510 | label_duplicated_by: duplicated by |
|
510 | label_duplicated_by: duplicated by | |
511 | label_blocks: blocks |
|
511 | label_blocks: blocks | |
512 | label_blocked_by: blocked by |
|
512 | label_blocked_by: blocked by | |
513 | label_precedes: precedes |
|
513 | label_precedes: precedes | |
514 | label_follows: follows |
|
514 | label_follows: follows | |
515 | label_end_to_start: end to start |
|
515 | label_end_to_start: end to start | |
516 | label_end_to_end: end to end |
|
516 | label_end_to_end: end to end | |
517 | label_start_to_start: start to start |
|
517 | label_start_to_start: start to start | |
518 | label_start_to_end: start to end |
|
518 | label_start_to_end: start to end | |
519 | label_stay_logged_in: Stay logged in |
|
519 | label_stay_logged_in: Stay logged in | |
520 | label_disabled: disabled |
|
520 | label_disabled: disabled | |
521 | label_show_completed_versions: Show completed versions |
|
521 | label_show_completed_versions: Show completed versions | |
522 | label_me: me |
|
522 | label_me: me | |
523 | label_board: Forum |
|
523 | label_board: Forum | |
524 | label_board_new: New forum |
|
524 | label_board_new: New forum | |
525 | label_board_plural: Forums |
|
525 | label_board_plural: Forums | |
526 | label_topic_plural: Topics |
|
526 | label_topic_plural: Topics | |
527 | label_message_plural: Messages |
|
527 | label_message_plural: Messages | |
528 | label_message_last: Last message |
|
528 | label_message_last: Last message | |
529 | label_message_new: New message |
|
529 | label_message_new: New message | |
530 | label_message_posted: Message added |
|
530 | label_message_posted: Message added | |
531 | label_reply_plural: Replies |
|
531 | label_reply_plural: Replies | |
532 | label_send_information: Send account information to the user |
|
532 | label_send_information: Send account information to the user | |
533 | label_year: Year |
|
533 | label_year: Year | |
534 | label_month: Month |
|
534 | label_month: Month | |
535 | label_week: Week |
|
535 | label_week: Week | |
536 | label_date_from: From |
|
536 | label_date_from: From | |
537 | label_date_to: To |
|
537 | label_date_to: To | |
538 | label_language_based: Based on user's language |
|
538 | label_language_based: Based on user's language | |
539 | label_sort_by: Sort by %s |
|
539 | label_sort_by: Sort by %s | |
540 | label_send_test_email: Send a test email |
|
540 | label_send_test_email: Send a test email | |
541 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
541 | label_feeds_access_key_created_on: RSS access key created %s ago | |
542 | label_module_plural: Modules |
|
542 | label_module_plural: Modules | |
543 | label_added_time_by: Added by %s %s ago |
|
543 | label_added_time_by: Added by %s %s ago | |
544 | label_updated_time: Updated %s ago |
|
544 | label_updated_time: Updated %s ago | |
545 | label_jump_to_a_project: Jump to a project... |
|
545 | label_jump_to_a_project: Jump to a project... | |
546 | label_file_plural: Files |
|
546 | label_file_plural: Files | |
547 | label_changeset_plural: Changesets |
|
547 | label_changeset_plural: Changesets | |
548 | label_default_columns: Default columns |
|
548 | label_default_columns: Default columns | |
549 | label_no_change_option: (No change) |
|
549 | label_no_change_option: (No change) | |
550 | label_bulk_edit_selected_issues: Bulk edit selected issues |
|
550 | label_bulk_edit_selected_issues: Bulk edit selected issues | |
551 | label_theme: Theme |
|
551 | label_theme: Theme | |
552 | label_default: Default |
|
552 | label_default: Default | |
553 | label_search_titles_only: Search titles only |
|
553 | label_search_titles_only: Search titles only | |
554 | label_user_mail_option_all: "For any event on all my projects" |
|
554 | label_user_mail_option_all: "For any event on all my projects" | |
555 | label_user_mail_option_selected: "For any event on the selected projects only..." |
|
555 | label_user_mail_option_selected: "For any event on the selected projects only..." | |
556 | label_user_mail_option_none: "Only for things I watch or I'm involved in" |
|
556 | label_user_mail_option_none: "Only for things I watch or I'm involved in" | |
557 | label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" |
|
557 | label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" | |
558 | label_registration_activation_by_email: account activation by email |
|
558 | label_registration_activation_by_email: account activation by email | |
559 | label_registration_manual_activation: manual account activation |
|
559 | label_registration_manual_activation: manual account activation | |
560 | label_registration_automatic_activation: automatic account activation |
|
560 | label_registration_automatic_activation: automatic account activation | |
561 | label_display_per_page: 'Per page: %s' |
|
561 | label_display_per_page: 'Per page: %s' | |
562 | label_age: Age |
|
562 | label_age: Age | |
563 | label_change_properties: Change properties |
|
563 | label_change_properties: Change properties | |
564 | label_general: General |
|
564 | label_general: General | |
565 | label_more: More |
|
565 | label_more: More | |
566 | label_scm: SCM |
|
566 | label_scm: SCM | |
567 | label_plugins: Plugins |
|
567 | label_plugins: Plugins | |
568 | label_ldap_authentication: LDAP authentication |
|
568 | label_ldap_authentication: LDAP authentication | |
569 | label_downloads_abbr: D/L |
|
569 | label_downloads_abbr: D/L | |
570 | label_optional_description: Optional description |
|
570 | label_optional_description: Optional description | |
571 | label_add_another_file: Add another file |
|
571 | label_add_another_file: Add another file | |
572 | label_preferences: Preferences |
|
572 | label_preferences: Preferences | |
573 | label_chronological_order: In chronological order |
|
573 | label_chronological_order: In chronological order | |
574 | label_reverse_chronological_order: In reverse chronological order |
|
574 | label_reverse_chronological_order: In reverse chronological order | |
575 | label_planning: Planning |
|
575 | label_planning: Planning | |
576 | label_incoming_emails: Incoming emails |
|
576 | label_incoming_emails: Incoming emails | |
577 | label_generate_key: Generate a key |
|
577 | label_generate_key: Generate a key | |
578 | label_issue_watchers: Watchers |
|
578 | label_issue_watchers: Watchers | |
|
579 | label_example: Example | |||
579 |
|
580 | |||
580 | button_login: Login |
|
581 | button_login: Login | |
581 | button_submit: Submit |
|
582 | button_submit: Submit | |
582 | button_save: Save |
|
583 | button_save: Save | |
583 | button_check_all: Check all |
|
584 | button_check_all: Check all | |
584 | button_uncheck_all: Uncheck all |
|
585 | button_uncheck_all: Uncheck all | |
585 | button_delete: Delete |
|
586 | button_delete: Delete | |
586 | button_create: Create |
|
587 | button_create: Create | |
587 | button_test: Test |
|
588 | button_test: Test | |
588 | button_edit: Edit |
|
589 | button_edit: Edit | |
589 | button_add: Add |
|
590 | button_add: Add | |
590 | button_change: Change |
|
591 | button_change: Change | |
591 | button_apply: Apply |
|
592 | button_apply: Apply | |
592 | button_clear: Clear |
|
593 | button_clear: Clear | |
593 | button_lock: Lock |
|
594 | button_lock: Lock | |
594 | button_unlock: Unlock |
|
595 | button_unlock: Unlock | |
595 | button_download: Download |
|
596 | button_download: Download | |
596 | button_list: List |
|
597 | button_list: List | |
597 | button_view: View |
|
598 | button_view: View | |
598 | button_move: Move |
|
599 | button_move: Move | |
599 | button_back: Back |
|
600 | button_back: Back | |
600 | button_cancel: Cancel |
|
601 | button_cancel: Cancel | |
601 | button_activate: Activate |
|
602 | button_activate: Activate | |
602 | button_sort: Sort |
|
603 | button_sort: Sort | |
603 | button_log_time: Log time |
|
604 | button_log_time: Log time | |
604 | button_rollback: Rollback to this version |
|
605 | button_rollback: Rollback to this version | |
605 | button_watch: Watch |
|
606 | button_watch: Watch | |
606 | button_unwatch: Unwatch |
|
607 | button_unwatch: Unwatch | |
607 | button_reply: Reply |
|
608 | button_reply: Reply | |
608 | button_archive: Archive |
|
609 | button_archive: Archive | |
609 | button_unarchive: Unarchive |
|
610 | button_unarchive: Unarchive | |
610 | button_reset: Reset |
|
611 | button_reset: Reset | |
611 | button_rename: Rename |
|
612 | button_rename: Rename | |
612 | button_change_password: Change password |
|
613 | button_change_password: Change password | |
613 | button_copy: Copy |
|
614 | button_copy: Copy | |
614 | button_annotate: Annotate |
|
615 | button_annotate: Annotate | |
615 | button_update: Update |
|
616 | button_update: Update | |
616 | button_configure: Configure |
|
617 | button_configure: Configure | |
617 | button_quote: Quote |
|
618 | button_quote: Quote | |
618 |
|
619 | |||
619 | status_active: active |
|
620 | status_active: active | |
620 | status_registered: registered |
|
621 | status_registered: registered | |
621 | status_locked: locked |
|
622 | status_locked: locked | |
622 |
|
623 | |||
623 | text_select_mail_notifications: Select actions for which email notifications should be sent. |
|
624 | text_select_mail_notifications: Select actions for which email notifications should be sent. | |
624 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
625 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
625 | text_min_max_length_info: 0 means no restriction |
|
626 | text_min_max_length_info: 0 means no restriction | |
626 | text_project_destroy_confirmation: Are you sure you want to delete this project and related data ? |
|
627 | text_project_destroy_confirmation: Are you sure you want to delete this project and related data ? | |
627 | text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.' |
|
628 | text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.' | |
628 | text_workflow_edit: Select a role and a tracker to edit the workflow |
|
629 | text_workflow_edit: Select a role and a tracker to edit the workflow | |
629 | text_are_you_sure: Are you sure ? |
|
630 | text_are_you_sure: Are you sure ? | |
630 | text_journal_changed: changed from %s to %s |
|
631 | text_journal_changed: changed from %s to %s | |
631 | text_journal_set_to: set to %s |
|
632 | text_journal_set_to: set to %s | |
632 | text_journal_deleted: deleted |
|
633 | text_journal_deleted: deleted | |
633 | text_tip_task_begin_day: task beginning this day |
|
634 | text_tip_task_begin_day: task beginning this day | |
634 | text_tip_task_end_day: task ending this day |
|
635 | text_tip_task_end_day: task ending this day | |
635 | text_tip_task_begin_end_day: task beginning and ending this day |
|
636 | text_tip_task_begin_end_day: task beginning and ending this day | |
636 | text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier can not be changed.' |
|
637 | text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier can not be changed.' | |
637 | text_caracters_maximum: %d characters maximum. |
|
638 | text_caracters_maximum: %d characters maximum. | |
638 | text_caracters_minimum: Must be at least %d characters long. |
|
639 | text_caracters_minimum: Must be at least %d characters long. | |
639 | text_length_between: Length between %d and %d characters. |
|
640 | text_length_between: Length between %d and %d characters. | |
640 | text_tracker_no_workflow: No workflow defined for this tracker |
|
641 | text_tracker_no_workflow: No workflow defined for this tracker | |
641 | text_unallowed_characters: Unallowed characters |
|
642 | text_unallowed_characters: Unallowed characters | |
642 | text_comma_separated: Multiple values allowed (comma separated). |
|
643 | text_comma_separated: Multiple values allowed (comma separated). | |
643 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
644 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
644 | text_issue_added: Issue %s has been reported by %s. |
|
645 | text_issue_added: Issue %s has been reported by %s. | |
645 | text_issue_updated: Issue %s has been updated by %s. |
|
646 | text_issue_updated: Issue %s has been updated by %s. | |
646 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
647 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
647 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
648 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
648 | text_issue_category_destroy_assignments: Remove category assignments |
|
649 | text_issue_category_destroy_assignments: Remove category assignments | |
649 | text_issue_category_reassign_to: Reassign issues to this category |
|
650 | text_issue_category_reassign_to: Reassign issues to this category | |
650 | text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)." |
|
651 | text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)." | |
651 | text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded." |
|
652 | text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded." | |
652 | text_load_default_configuration: Load the default configuration |
|
653 | text_load_default_configuration: Load the default configuration | |
653 | text_status_changed_by_changeset: Applied in changeset %s. |
|
654 | text_status_changed_by_changeset: Applied in changeset %s. | |
654 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
655 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' | |
655 | text_select_project_modules: 'Select modules to enable for this project:' |
|
656 | text_select_project_modules: 'Select modules to enable for this project:' | |
656 | text_default_administrator_account_changed: Default administrator account changed |
|
657 | text_default_administrator_account_changed: Default administrator account changed | |
657 | text_file_repository_writable: File repository writable |
|
658 | text_file_repository_writable: File repository writable | |
658 | text_rmagick_available: RMagick available (optional) |
|
659 | text_rmagick_available: RMagick available (optional) | |
659 | text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ? |
|
660 | text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ? | |
660 | text_destroy_time_entries: Delete reported hours |
|
661 | text_destroy_time_entries: Delete reported hours | |
661 | text_assign_time_entries_to_project: Assign reported hours to the project |
|
662 | text_assign_time_entries_to_project: Assign reported hours to the project | |
662 | text_reassign_time_entries: 'Reassign reported hours to this issue:' |
|
663 | text_reassign_time_entries: 'Reassign reported hours to this issue:' | |
663 | text_user_wrote: '%s wrote:' |
|
664 | text_user_wrote: '%s wrote:' | |
664 | text_enumeration_destroy_question: '%d objects are assigned to this value.' |
|
665 | text_enumeration_destroy_question: '%d objects are assigned to this value.' | |
665 | text_enumeration_category_reassign_to: 'Reassign them to this value:' |
|
666 | text_enumeration_category_reassign_to: 'Reassign them to this value:' | |
666 | text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them." |
|
667 | text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them." | |
667 |
|
668 | |||
668 | default_role_manager: Manager |
|
669 | default_role_manager: Manager | |
669 | default_role_developper: Developer |
|
670 | default_role_developper: Developer | |
670 | default_role_reporter: Reporter |
|
671 | default_role_reporter: Reporter | |
671 | default_tracker_bug: Bug |
|
672 | default_tracker_bug: Bug | |
672 | default_tracker_feature: Feature |
|
673 | default_tracker_feature: Feature | |
673 | default_tracker_support: Support |
|
674 | default_tracker_support: Support | |
674 | default_issue_status_new: New |
|
675 | default_issue_status_new: New | |
675 | default_issue_status_assigned: Assigned |
|
676 | default_issue_status_assigned: Assigned | |
676 | default_issue_status_resolved: Resolved |
|
677 | default_issue_status_resolved: Resolved | |
677 | default_issue_status_feedback: Feedback |
|
678 | default_issue_status_feedback: Feedback | |
678 | default_issue_status_closed: Closed |
|
679 | default_issue_status_closed: Closed | |
679 | default_issue_status_rejected: Rejected |
|
680 | default_issue_status_rejected: Rejected | |
680 | default_doc_category_user: User documentation |
|
681 | default_doc_category_user: User documentation | |
681 | default_doc_category_tech: Technical documentation |
|
682 | default_doc_category_tech: Technical documentation | |
682 | default_priority_low: Low |
|
683 | default_priority_low: Low | |
683 | default_priority_normal: Normal |
|
684 | default_priority_normal: Normal | |
684 | default_priority_high: High |
|
685 | default_priority_high: High | |
685 | default_priority_urgent: Urgent |
|
686 | default_priority_urgent: Urgent | |
686 | default_priority_immediate: Immediate |
|
687 | default_priority_immediate: Immediate | |
687 | default_activity_design: Design |
|
688 | default_activity_design: Design | |
688 | default_activity_development: Development |
|
689 | default_activity_development: Development | |
689 |
|
690 | |||
690 | enumeration_issue_priorities: Issue priorities |
|
691 | enumeration_issue_priorities: Issue priorities | |
691 | enumeration_doc_categories: Document categories |
|
692 | enumeration_doc_categories: Document categories | |
692 | enumeration_activities: Activities (time tracking) |
|
693 | enumeration_activities: Activities (time tracking) |
@@ -1,692 +1,693 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre |
|
4 | actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 jour |
|
8 | actionview_datehelper_time_in_words_day: 1 jour | |
9 | actionview_datehelper_time_in_words_day_plural: %d jours |
|
9 | actionview_datehelper_time_in_words_day_plural: %d jours | |
10 | actionview_datehelper_time_in_words_hour_about: environ une heure |
|
10 | actionview_datehelper_time_in_words_hour_about: environ une heure | |
11 | actionview_datehelper_time_in_words_hour_about_plural: environ %d heures |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: environ %d heures | |
12 | actionview_datehelper_time_in_words_hour_about_single: environ une heure |
|
12 | actionview_datehelper_time_in_words_hour_about_single: environ une heure | |
13 | actionview_datehelper_time_in_words_minute: 1 minute |
|
13 | actionview_datehelper_time_in_words_minute: 1 minute | |
14 | actionview_datehelper_time_in_words_minute_half: 30 secondes |
|
14 | actionview_datehelper_time_in_words_minute_half: 30 secondes | |
15 | actionview_datehelper_time_in_words_minute_less_than: moins d'une minute |
|
15 | actionview_datehelper_time_in_words_minute_less_than: moins d'une minute | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minute |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minute | |
18 | actionview_datehelper_time_in_words_second_less_than: moins d'une seconde |
|
18 | actionview_datehelper_time_in_words_second_less_than: moins d'une seconde | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes | |
20 | actionview_instancetag_blank_option: Choisir |
|
20 | actionview_instancetag_blank_option: Choisir | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: n'est pas inclus dans la liste |
|
22 | activerecord_error_inclusion: n'est pas inclus dans la liste | |
23 | activerecord_error_exclusion: est reservé |
|
23 | activerecord_error_exclusion: est reservé | |
24 | activerecord_error_invalid: est invalide |
|
24 | activerecord_error_invalid: est invalide | |
25 | activerecord_error_confirmation: ne correspond pas à la confirmation |
|
25 | activerecord_error_confirmation: ne correspond pas à la confirmation | |
26 | activerecord_error_accepted: doit être accepté |
|
26 | activerecord_error_accepted: doit être accepté | |
27 | activerecord_error_empty: doit être renseigné |
|
27 | activerecord_error_empty: doit être renseigné | |
28 | activerecord_error_blank: doit être renseigné |
|
28 | activerecord_error_blank: doit être renseigné | |
29 | activerecord_error_too_long: est trop long |
|
29 | activerecord_error_too_long: est trop long | |
30 | activerecord_error_too_short: est trop court |
|
30 | activerecord_error_too_short: est trop court | |
31 | activerecord_error_wrong_length: n'est pas de la bonne longueur |
|
31 | activerecord_error_wrong_length: n'est pas de la bonne longueur | |
32 | activerecord_error_taken: est déjà utilisé |
|
32 | activerecord_error_taken: est déjà utilisé | |
33 | activerecord_error_not_a_number: n'est pas un nombre |
|
33 | activerecord_error_not_a_number: n'est pas un nombre | |
34 | activerecord_error_not_a_date: n'est pas une date valide |
|
34 | activerecord_error_not_a_date: n'est pas une date valide | |
35 | activerecord_error_greater_than_start_date: doit être postérieur à la date de début |
|
35 | activerecord_error_greater_than_start_date: doit être postérieur à la date de début | |
36 | activerecord_error_not_same_project: n'appartient pas au même projet |
|
36 | activerecord_error_not_same_project: n'appartient pas au même projet | |
37 | activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire |
|
37 | activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire | |
38 |
|
38 | |||
39 | general_fmt_age: %d an |
|
39 | general_fmt_age: %d an | |
40 | general_fmt_age_plural: %d ans |
|
40 | general_fmt_age_plural: %d ans | |
41 | general_fmt_date: %%d/%%m/%%Y |
|
41 | general_fmt_date: %%d/%%m/%%Y | |
42 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M |
|
42 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M | |
43 | general_fmt_datetime_short: %%d/%%m %%H:%%M |
|
43 | general_fmt_datetime_short: %%d/%%m %%H:%%M | |
44 | general_fmt_time: %%H:%%M |
|
44 | general_fmt_time: %%H:%%M | |
45 | general_text_No: 'Non' |
|
45 | general_text_No: 'Non' | |
46 | general_text_Yes: 'Oui' |
|
46 | general_text_Yes: 'Oui' | |
47 | general_text_no: 'non' |
|
47 | general_text_no: 'non' | |
48 | general_text_yes: 'oui' |
|
48 | general_text_yes: 'oui' | |
49 | general_lang_name: 'Français' |
|
49 | general_lang_name: 'Français' | |
50 | general_csv_separator: ';' |
|
50 | general_csv_separator: ';' | |
51 | general_csv_decimal_separator: ',' |
|
51 | general_csv_decimal_separator: ',' | |
52 | general_csv_encoding: ISO-8859-1 |
|
52 | general_csv_encoding: ISO-8859-1 | |
53 | general_pdf_encoding: ISO-8859-1 |
|
53 | general_pdf_encoding: ISO-8859-1 | |
54 | general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche |
|
54 | general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche | |
55 | general_first_day_of_week: '1' |
|
55 | general_first_day_of_week: '1' | |
56 |
|
56 | |||
57 | notice_account_updated: Le compte a été mis à jour avec succès. |
|
57 | notice_account_updated: Le compte a été mis à jour avec succès. | |
58 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. |
|
58 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. | |
59 | notice_account_password_updated: Mot de passe mis à jour avec succès. |
|
59 | notice_account_password_updated: Mot de passe mis à jour avec succès. | |
60 | notice_account_wrong_password: Mot de passe incorrect |
|
60 | notice_account_wrong_password: Mot de passe incorrect | |
61 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé. |
|
61 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé. | |
62 | notice_account_unknown_email: Aucun compte ne correspond à cette adresse. |
|
62 | notice_account_unknown_email: Aucun compte ne correspond à cette adresse. | |
63 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. |
|
63 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. | |
64 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé. |
|
64 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé. | |
65 | notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter. |
|
65 | notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter. | |
66 | notice_successful_create: Création effectuée avec succès. |
|
66 | notice_successful_create: Création effectuée avec succès. | |
67 | notice_successful_update: Mise à jour effectuée avec succès. |
|
67 | notice_successful_update: Mise à jour effectuée avec succès. | |
68 | notice_successful_delete: Suppression effectuée avec succès. |
|
68 | notice_successful_delete: Suppression effectuée avec succès. | |
69 | notice_successful_connection: Connection réussie. |
|
69 | notice_successful_connection: Connection réussie. | |
70 | notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée." |
|
70 | notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée." | |
71 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. |
|
71 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. | |
72 | notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page." |
|
72 | notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page." | |
73 | notice_email_sent: "Un email a été envoyé à %s" |
|
73 | notice_email_sent: "Un email a été envoyé à %s" | |
74 | notice_email_error: "Erreur lors de l'envoi de l'email (%s)" |
|
74 | notice_email_error: "Erreur lors de l'envoi de l'email (%s)" | |
75 | notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée." |
|
75 | notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée." | |
76 | notice_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s." |
|
76 | notice_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s." | |
77 | notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour." |
|
77 | notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour." | |
78 | notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur." |
|
78 | notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur." | |
79 | notice_default_data_loaded: Paramétrage par défaut chargé avec succès. |
|
79 | notice_default_data_loaded: Paramétrage par défaut chargé avec succès. | |
80 | notice_unable_delete_version: Impossible de supprimer cette version. |
|
80 | notice_unable_delete_version: Impossible de supprimer cette version. | |
81 |
|
81 | |||
82 | error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s" |
|
82 | error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s" | |
83 | error_scm_not_found: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt." |
|
83 | error_scm_not_found: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt." | |
84 | error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt: %s" |
|
84 | error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt: %s" | |
85 | error_scm_annotate: "L'entrée n'existe pas ou ne peut pas être annotée." |
|
85 | error_scm_annotate: "L'entrée n'existe pas ou ne peut pas être annotée." | |
86 | error_issue_not_found_in_project: "La demande n'existe pas ou n'appartient pas à ce projet" |
|
86 | error_issue_not_found_in_project: "La demande n'existe pas ou n'appartient pas à ce projet" | |
87 |
|
87 | |||
88 | mail_subject_lost_password: Votre mot de passe %s |
|
88 | mail_subject_lost_password: Votre mot de passe %s | |
89 | mail_body_lost_password: 'Pour changer votre mot de passe, cliquez sur le lien suivant:' |
|
89 | mail_body_lost_password: 'Pour changer votre mot de passe, cliquez sur le lien suivant:' | |
90 | mail_subject_register: Activation de votre compte %s |
|
90 | mail_subject_register: Activation de votre compte %s | |
91 | mail_body_register: 'Pour activer votre compte, cliquez sur le lien suivant:' |
|
91 | mail_body_register: 'Pour activer votre compte, cliquez sur le lien suivant:' | |
92 | mail_body_account_information_external: Vous pouvez utiliser votre compte "%s" pour vous connecter. |
|
92 | mail_body_account_information_external: Vous pouvez utiliser votre compte "%s" pour vous connecter. | |
93 | mail_body_account_information: Paramètres de connexion de votre compte |
|
93 | mail_body_account_information: Paramètres de connexion de votre compte | |
94 | mail_subject_account_activation_request: "Demande d'activation d'un compte %s" |
|
94 | mail_subject_account_activation_request: "Demande d'activation d'un compte %s" | |
95 | mail_body_account_activation_request: "Un nouvel utilisateur (%s) s'est inscrit. Son compte nécessite votre approbation:" |
|
95 | mail_body_account_activation_request: "Un nouvel utilisateur (%s) s'est inscrit. Son compte nécessite votre approbation:" | |
96 | mail_subject_reminder: "%d demande(s) arrivent à échéance" |
|
96 | mail_subject_reminder: "%d demande(s) arrivent à échéance" | |
97 | mail_body_reminder: "%d demande(s) qui vous sont assignées arrivent à échéance dans les %d prochains jours:" |
|
97 | mail_body_reminder: "%d demande(s) qui vous sont assignées arrivent à échéance dans les %d prochains jours:" | |
98 |
|
98 | |||
99 | gui_validation_error: 1 erreur |
|
99 | gui_validation_error: 1 erreur | |
100 | gui_validation_error_plural: %d erreurs |
|
100 | gui_validation_error_plural: %d erreurs | |
101 |
|
101 | |||
102 | field_name: Nom |
|
102 | field_name: Nom | |
103 | field_description: Description |
|
103 | field_description: Description | |
104 | field_summary: Résumé |
|
104 | field_summary: Résumé | |
105 | field_is_required: Obligatoire |
|
105 | field_is_required: Obligatoire | |
106 | field_firstname: Prénom |
|
106 | field_firstname: Prénom | |
107 | field_lastname: Nom |
|
107 | field_lastname: Nom | |
108 | field_mail: Email |
|
108 | field_mail: Email | |
109 | field_filename: Fichier |
|
109 | field_filename: Fichier | |
110 | field_filesize: Taille |
|
110 | field_filesize: Taille | |
111 | field_downloads: Téléchargements |
|
111 | field_downloads: Téléchargements | |
112 | field_author: Auteur |
|
112 | field_author: Auteur | |
113 | field_created_on: Créé |
|
113 | field_created_on: Créé | |
114 | field_updated_on: Mis à jour |
|
114 | field_updated_on: Mis à jour | |
115 | field_field_format: Format |
|
115 | field_field_format: Format | |
116 | field_is_for_all: Pour tous les projets |
|
116 | field_is_for_all: Pour tous les projets | |
117 | field_possible_values: Valeurs possibles |
|
117 | field_possible_values: Valeurs possibles | |
118 | field_regexp: Expression régulière |
|
118 | field_regexp: Expression régulière | |
119 | field_min_length: Longueur minimum |
|
119 | field_min_length: Longueur minimum | |
120 | field_max_length: Longueur maximum |
|
120 | field_max_length: Longueur maximum | |
121 | field_value: Valeur |
|
121 | field_value: Valeur | |
122 | field_category: Catégorie |
|
122 | field_category: Catégorie | |
123 | field_title: Titre |
|
123 | field_title: Titre | |
124 | field_project: Projet |
|
124 | field_project: Projet | |
125 | field_issue: Demande |
|
125 | field_issue: Demande | |
126 | field_status: Statut |
|
126 | field_status: Statut | |
127 | field_notes: Notes |
|
127 | field_notes: Notes | |
128 | field_is_closed: Demande fermée |
|
128 | field_is_closed: Demande fermée | |
129 | field_is_default: Valeur par défaut |
|
129 | field_is_default: Valeur par défaut | |
130 | field_tracker: Tracker |
|
130 | field_tracker: Tracker | |
131 | field_subject: Sujet |
|
131 | field_subject: Sujet | |
132 | field_due_date: Date d'échéance |
|
132 | field_due_date: Date d'échéance | |
133 | field_assigned_to: Assigné à |
|
133 | field_assigned_to: Assigné à | |
134 | field_priority: Priorité |
|
134 | field_priority: Priorité | |
135 | field_fixed_version: Version cible |
|
135 | field_fixed_version: Version cible | |
136 | field_user: Utilisateur |
|
136 | field_user: Utilisateur | |
137 | field_role: Rôle |
|
137 | field_role: Rôle | |
138 | field_homepage: Site web |
|
138 | field_homepage: Site web | |
139 | field_is_public: Public |
|
139 | field_is_public: Public | |
140 | field_parent: Sous-projet de |
|
140 | field_parent: Sous-projet de | |
141 | field_is_in_chlog: Demandes affichées dans l'historique |
|
141 | field_is_in_chlog: Demandes affichées dans l'historique | |
142 | field_is_in_roadmap: Demandes affichées dans la roadmap |
|
142 | field_is_in_roadmap: Demandes affichées dans la roadmap | |
143 | field_login: Identifiant |
|
143 | field_login: Identifiant | |
144 | field_mail_notification: Notifications par mail |
|
144 | field_mail_notification: Notifications par mail | |
145 | field_admin: Administrateur |
|
145 | field_admin: Administrateur | |
146 | field_last_login_on: Dernière connexion |
|
146 | field_last_login_on: Dernière connexion | |
147 | field_language: Langue |
|
147 | field_language: Langue | |
148 | field_effective_date: Date |
|
148 | field_effective_date: Date | |
149 | field_password: Mot de passe |
|
149 | field_password: Mot de passe | |
150 | field_new_password: Nouveau mot de passe |
|
150 | field_new_password: Nouveau mot de passe | |
151 | field_password_confirmation: Confirmation |
|
151 | field_password_confirmation: Confirmation | |
152 | field_version: Version |
|
152 | field_version: Version | |
153 | field_type: Type |
|
153 | field_type: Type | |
154 | field_host: Hôte |
|
154 | field_host: Hôte | |
155 | field_port: Port |
|
155 | field_port: Port | |
156 | field_account: Compte |
|
156 | field_account: Compte | |
157 | field_base_dn: Base DN |
|
157 | field_base_dn: Base DN | |
158 | field_attr_login: Attribut Identifiant |
|
158 | field_attr_login: Attribut Identifiant | |
159 | field_attr_firstname: Attribut Prénom |
|
159 | field_attr_firstname: Attribut Prénom | |
160 | field_attr_lastname: Attribut Nom |
|
160 | field_attr_lastname: Attribut Nom | |
161 | field_attr_mail: Attribut Email |
|
161 | field_attr_mail: Attribut Email | |
162 | field_onthefly: Création des utilisateurs à la volée |
|
162 | field_onthefly: Création des utilisateurs à la volée | |
163 | field_start_date: Début |
|
163 | field_start_date: Début | |
164 | field_done_ratio: %% Réalisé |
|
164 | field_done_ratio: %% Réalisé | |
165 | field_auth_source: Mode d'authentification |
|
165 | field_auth_source: Mode d'authentification | |
166 | field_hide_mail: Cacher mon adresse mail |
|
166 | field_hide_mail: Cacher mon adresse mail | |
167 | field_comments: Commentaire |
|
167 | field_comments: Commentaire | |
168 | field_url: URL |
|
168 | field_url: URL | |
169 | field_start_page: Page de démarrage |
|
169 | field_start_page: Page de démarrage | |
170 | field_subproject: Sous-projet |
|
170 | field_subproject: Sous-projet | |
171 | field_hours: Heures |
|
171 | field_hours: Heures | |
172 | field_activity: Activité |
|
172 | field_activity: Activité | |
173 | label_overall_activity: Activité globale |
|
173 | label_overall_activity: Activité globale | |
174 | field_spent_on: Date |
|
174 | field_spent_on: Date | |
175 | field_identifier: Identifiant |
|
175 | field_identifier: Identifiant | |
176 | field_is_filter: Utilisé comme filtre |
|
176 | field_is_filter: Utilisé comme filtre | |
177 | field_issue_to_id: Demande liée |
|
177 | field_issue_to_id: Demande liée | |
178 | field_delay: Retard |
|
178 | field_delay: Retard | |
179 | field_assignable: Demandes assignables à ce rôle |
|
179 | field_assignable: Demandes assignables à ce rôle | |
180 | field_redirect_existing_links: Rediriger les liens existants |
|
180 | field_redirect_existing_links: Rediriger les liens existants | |
181 | field_estimated_hours: Temps estimé |
|
181 | field_estimated_hours: Temps estimé | |
182 | field_column_names: Colonnes |
|
182 | field_column_names: Colonnes | |
183 | field_time_zone: Fuseau horaire |
|
183 | field_time_zone: Fuseau horaire | |
184 | field_searchable: Utilisé pour les recherches |
|
184 | field_searchable: Utilisé pour les recherches | |
185 | field_default_value: Valeur par défaut |
|
185 | field_default_value: Valeur par défaut | |
186 | field_comments_sorting: Afficher les commentaires |
|
186 | field_comments_sorting: Afficher les commentaires | |
187 | field_parent_title: Page parent |
|
187 | field_parent_title: Page parent | |
188 |
|
188 | |||
189 | setting_app_title: Titre de l'application |
|
189 | setting_app_title: Titre de l'application | |
190 | setting_app_subtitle: Sous-titre de l'application |
|
190 | setting_app_subtitle: Sous-titre de l'application | |
191 | setting_welcome_text: Texte d'accueil |
|
191 | setting_welcome_text: Texte d'accueil | |
192 | setting_default_language: Langue par défaut |
|
192 | setting_default_language: Langue par défaut | |
193 | setting_login_required: Authentification obligatoire |
|
193 | setting_login_required: Authentification obligatoire | |
194 | setting_self_registration: Inscription des nouveaux utilisateurs |
|
194 | setting_self_registration: Inscription des nouveaux utilisateurs | |
195 | setting_attachment_max_size: Taille max des fichiers |
|
195 | setting_attachment_max_size: Taille max des fichiers | |
196 | setting_issues_export_limit: Limite export demandes |
|
196 | setting_issues_export_limit: Limite export demandes | |
197 | setting_mail_from: Adresse d'émission |
|
197 | setting_mail_from: Adresse d'émission | |
198 | setting_bcc_recipients: Destinataires en copie cachée (cci) |
|
198 | setting_bcc_recipients: Destinataires en copie cachée (cci) | |
199 | setting_plain_text_mail: Mail texte brut (non HTML) |
|
199 | setting_plain_text_mail: Mail texte brut (non HTML) | |
200 | setting_host_name: Nom d'hôte |
|
200 | setting_host_name: Nom d'hôte et chemin | |
201 | setting_text_formatting: Formatage du texte |
|
201 | setting_text_formatting: Formatage du texte | |
202 | setting_wiki_compression: Compression historique wiki |
|
202 | setting_wiki_compression: Compression historique wiki | |
203 | setting_feeds_limit: Limite du contenu des flux RSS |
|
203 | setting_feeds_limit: Limite du contenu des flux RSS | |
204 | setting_default_projects_public: Définir les nouveaux projects comme publics par défaut |
|
204 | setting_default_projects_public: Définir les nouveaux projects comme publics par défaut | |
205 | setting_autofetch_changesets: Récupération auto. des commits |
|
205 | setting_autofetch_changesets: Récupération auto. des commits | |
206 | setting_sys_api_enabled: Activer les WS pour la gestion des dépôts |
|
206 | setting_sys_api_enabled: Activer les WS pour la gestion des dépôts | |
207 | setting_commit_ref_keywords: Mot-clés de référencement |
|
207 | setting_commit_ref_keywords: Mot-clés de référencement | |
208 | setting_commit_fix_keywords: Mot-clés de résolution |
|
208 | setting_commit_fix_keywords: Mot-clés de résolution | |
209 | setting_autologin: Autologin |
|
209 | setting_autologin: Autologin | |
210 | setting_date_format: Format de date |
|
210 | setting_date_format: Format de date | |
211 | setting_time_format: Format d'heure |
|
211 | setting_time_format: Format d'heure | |
212 | setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets |
|
212 | setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets | |
213 | setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes |
|
213 | setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes | |
214 | setting_repositories_encodings: Encodages des dépôts |
|
214 | setting_repositories_encodings: Encodages des dépôts | |
215 | setting_commit_logs_encoding: Encodage des messages de commit |
|
215 | setting_commit_logs_encoding: Encodage des messages de commit | |
216 | setting_emails_footer: Pied-de-page des emails |
|
216 | setting_emails_footer: Pied-de-page des emails | |
217 | setting_protocol: Protocole |
|
217 | setting_protocol: Protocole | |
218 | setting_per_page_options: Options d'objets affichés par page |
|
218 | setting_per_page_options: Options d'objets affichés par page | |
219 | setting_user_format: Format d'affichage des utilisateurs |
|
219 | setting_user_format: Format d'affichage des utilisateurs | |
220 | setting_activity_days_default: Nombre de jours affichés sur l'activité des projets |
|
220 | setting_activity_days_default: Nombre de jours affichés sur l'activité des projets | |
221 | setting_display_subprojects_issues: Afficher par défaut les demandes des sous-projets sur les projets principaux |
|
221 | setting_display_subprojects_issues: Afficher par défaut les demandes des sous-projets sur les projets principaux | |
222 | setting_enabled_scm: SCM activés |
|
222 | setting_enabled_scm: SCM activés | |
223 | setting_mail_handler_api_enabled: "Activer le WS pour la réception d'emails" |
|
223 | setting_mail_handler_api_enabled: "Activer le WS pour la réception d'emails" | |
224 | setting_mail_handler_api_key: Clé de protection de l'API |
|
224 | setting_mail_handler_api_key: Clé de protection de l'API | |
225 | setting_sequential_project_identifiers: Générer des identifiants de projet séquentiels |
|
225 | setting_sequential_project_identifiers: Générer des identifiants de projet séquentiels | |
226 | setting_gravatar_enabled: Afficher les Gravatar des utilisateurs |
|
226 | setting_gravatar_enabled: Afficher les Gravatar des utilisateurs | |
227 |
|
227 | |||
228 | permission_edit_project: Modifier le projet |
|
228 | permission_edit_project: Modifier le projet | |
229 | permission_select_project_modules: Choisir les modules |
|
229 | permission_select_project_modules: Choisir les modules | |
230 | permission_manage_members: Gérer les members |
|
230 | permission_manage_members: Gérer les members | |
231 | permission_manage_versions: Gérer les versions |
|
231 | permission_manage_versions: Gérer les versions | |
232 | permission_manage_categories: Gérer les catégories de demandes |
|
232 | permission_manage_categories: Gérer les catégories de demandes | |
233 | permission_add_issues: Créer des demandes |
|
233 | permission_add_issues: Créer des demandes | |
234 | permission_edit_issues: Modifier les demandes |
|
234 | permission_edit_issues: Modifier les demandes | |
235 | permission_manage_issue_relations: Gérer les relations |
|
235 | permission_manage_issue_relations: Gérer les relations | |
236 | permission_add_issue_notes: Ajouter des notes |
|
236 | permission_add_issue_notes: Ajouter des notes | |
237 | permission_edit_issue_notes: Modifier les notes |
|
237 | permission_edit_issue_notes: Modifier les notes | |
238 | permission_edit_own_issue_notes: Modifier ses propres notes |
|
238 | permission_edit_own_issue_notes: Modifier ses propres notes | |
239 | permission_move_issues: Déplacer les demandes |
|
239 | permission_move_issues: Déplacer les demandes | |
240 | permission_delete_issues: Supprimer les demandes |
|
240 | permission_delete_issues: Supprimer les demandes | |
241 | permission_manage_public_queries: Gérer les requêtes publiques |
|
241 | permission_manage_public_queries: Gérer les requêtes publiques | |
242 | permission_save_queries: Sauvegarder les requêtes |
|
242 | permission_save_queries: Sauvegarder les requêtes | |
243 | permission_view_gantt: Voir le gantt |
|
243 | permission_view_gantt: Voir le gantt | |
244 | permission_view_calendar: Voir le calendrier |
|
244 | permission_view_calendar: Voir le calendrier | |
245 | permission_view_issue_watchers: Voir la liste des observateurs |
|
245 | permission_view_issue_watchers: Voir la liste des observateurs | |
246 | permission_add_issue_watchers: Ajouter des observateurs |
|
246 | permission_add_issue_watchers: Ajouter des observateurs | |
247 | permission_log_time: Saisir le temps passé |
|
247 | permission_log_time: Saisir le temps passé | |
248 | permission_view_time_entries: Voir le temps passé |
|
248 | permission_view_time_entries: Voir le temps passé | |
249 | permission_edit_time_entries: Modifier les temps passés |
|
249 | permission_edit_time_entries: Modifier les temps passés | |
250 | permission_edit_own_time_entries: Modifier son propre temps passé |
|
250 | permission_edit_own_time_entries: Modifier son propre temps passé | |
251 | permission_manage_news: Gérer les annonces |
|
251 | permission_manage_news: Gérer les annonces | |
252 | permission_comment_news: Commenter les annonces |
|
252 | permission_comment_news: Commenter les annonces | |
253 | permission_manage_documents: Gérer les documents |
|
253 | permission_manage_documents: Gérer les documents | |
254 | permission_view_documents: Voir les documents |
|
254 | permission_view_documents: Voir les documents | |
255 | permission_manage_files: Gérer les fichiers |
|
255 | permission_manage_files: Gérer les fichiers | |
256 | permission_view_files: Voir les fichiers |
|
256 | permission_view_files: Voir les fichiers | |
257 | permission_manage_wiki: Gérer le wiki |
|
257 | permission_manage_wiki: Gérer le wiki | |
258 | permission_rename_wiki_pages: Renommer les pages |
|
258 | permission_rename_wiki_pages: Renommer les pages | |
259 | permission_delete_wiki_pages: Supprimer les pages |
|
259 | permission_delete_wiki_pages: Supprimer les pages | |
260 | permission_view_wiki_pages: Voir le wiki |
|
260 | permission_view_wiki_pages: Voir le wiki | |
261 | permission_view_wiki_edits: "Voir l'historique des modifications" |
|
261 | permission_view_wiki_edits: "Voir l'historique des modifications" | |
262 | permission_edit_wiki_pages: Modifier les pages |
|
262 | permission_edit_wiki_pages: Modifier les pages | |
263 | permission_delete_wiki_pages_attachments: Supprimer les fichiers joints |
|
263 | permission_delete_wiki_pages_attachments: Supprimer les fichiers joints | |
264 | permission_protect_wiki_pages: Protéger les pages |
|
264 | permission_protect_wiki_pages: Protéger les pages | |
265 | permission_manage_repository: Gérer le dépôt de sources |
|
265 | permission_manage_repository: Gérer le dépôt de sources | |
266 | permission_browse_repository: Parcourir les sources |
|
266 | permission_browse_repository: Parcourir les sources | |
267 | permission_view_changesets: Voir les révisions |
|
267 | permission_view_changesets: Voir les révisions | |
268 | permission_commit_access: Droit de commit |
|
268 | permission_commit_access: Droit de commit | |
269 | permission_manage_boards: Gérer les forums |
|
269 | permission_manage_boards: Gérer les forums | |
270 | permission_view_messages: Voir les messages |
|
270 | permission_view_messages: Voir les messages | |
271 | permission_add_messages: Poster un message |
|
271 | permission_add_messages: Poster un message | |
272 | permission_edit_messages: Modifier les messages |
|
272 | permission_edit_messages: Modifier les messages | |
273 | permission_delete_messages: Supprimer les messages |
|
273 | permission_delete_messages: Supprimer les messages | |
274 |
|
274 | |||
275 | project_module_issue_tracking: Suivi des demandes |
|
275 | project_module_issue_tracking: Suivi des demandes | |
276 | project_module_time_tracking: Suivi du temps passé |
|
276 | project_module_time_tracking: Suivi du temps passé | |
277 | project_module_news: Publication d'annonces |
|
277 | project_module_news: Publication d'annonces | |
278 | project_module_documents: Publication de documents |
|
278 | project_module_documents: Publication de documents | |
279 | project_module_files: Publication de fichiers |
|
279 | project_module_files: Publication de fichiers | |
280 | project_module_wiki: Wiki |
|
280 | project_module_wiki: Wiki | |
281 | project_module_repository: Dépôt de sources |
|
281 | project_module_repository: Dépôt de sources | |
282 | project_module_boards: Forums de discussion |
|
282 | project_module_boards: Forums de discussion | |
283 |
|
283 | |||
284 | label_user: Utilisateur |
|
284 | label_user: Utilisateur | |
285 | label_user_plural: Utilisateurs |
|
285 | label_user_plural: Utilisateurs | |
286 | label_user_new: Nouvel utilisateur |
|
286 | label_user_new: Nouvel utilisateur | |
287 | label_project: Projet |
|
287 | label_project: Projet | |
288 | label_project_new: Nouveau projet |
|
288 | label_project_new: Nouveau projet | |
289 | label_project_plural: Projets |
|
289 | label_project_plural: Projets | |
290 | label_project_all: Tous les projets |
|
290 | label_project_all: Tous les projets | |
291 | label_project_latest: Derniers projets |
|
291 | label_project_latest: Derniers projets | |
292 | label_issue: Demande |
|
292 | label_issue: Demande | |
293 | label_issue_new: Nouvelle demande |
|
293 | label_issue_new: Nouvelle demande | |
294 | label_issue_plural: Demandes |
|
294 | label_issue_plural: Demandes | |
295 | label_issue_view_all: Voir toutes les demandes |
|
295 | label_issue_view_all: Voir toutes les demandes | |
296 | label_issue_added: Demande ajoutée |
|
296 | label_issue_added: Demande ajoutée | |
297 | label_issue_updated: Demande mise à jour |
|
297 | label_issue_updated: Demande mise à jour | |
298 | label_issues_by: Demandes par %s |
|
298 | label_issues_by: Demandes par %s | |
299 | label_document: Document |
|
299 | label_document: Document | |
300 | label_document_new: Nouveau document |
|
300 | label_document_new: Nouveau document | |
301 | label_document_plural: Documents |
|
301 | label_document_plural: Documents | |
302 | label_document_added: Document ajouté |
|
302 | label_document_added: Document ajouté | |
303 | label_role: Rôle |
|
303 | label_role: Rôle | |
304 | label_role_plural: Rôles |
|
304 | label_role_plural: Rôles | |
305 | label_role_new: Nouveau rôle |
|
305 | label_role_new: Nouveau rôle | |
306 | label_role_and_permissions: Rôles et permissions |
|
306 | label_role_and_permissions: Rôles et permissions | |
307 | label_member: Membre |
|
307 | label_member: Membre | |
308 | label_member_new: Nouveau membre |
|
308 | label_member_new: Nouveau membre | |
309 | label_member_plural: Membres |
|
309 | label_member_plural: Membres | |
310 | label_tracker: Tracker |
|
310 | label_tracker: Tracker | |
311 | label_tracker_plural: Trackers |
|
311 | label_tracker_plural: Trackers | |
312 | label_tracker_new: Nouveau tracker |
|
312 | label_tracker_new: Nouveau tracker | |
313 | label_workflow: Workflow |
|
313 | label_workflow: Workflow | |
314 | label_issue_status: Statut de demandes |
|
314 | label_issue_status: Statut de demandes | |
315 | label_issue_status_plural: Statuts de demandes |
|
315 | label_issue_status_plural: Statuts de demandes | |
316 | label_issue_status_new: Nouveau statut |
|
316 | label_issue_status_new: Nouveau statut | |
317 | label_issue_category: Catégorie de demandes |
|
317 | label_issue_category: Catégorie de demandes | |
318 | label_issue_category_plural: Catégories de demandes |
|
318 | label_issue_category_plural: Catégories de demandes | |
319 | label_issue_category_new: Nouvelle catégorie |
|
319 | label_issue_category_new: Nouvelle catégorie | |
320 | label_custom_field: Champ personnalisé |
|
320 | label_custom_field: Champ personnalisé | |
321 | label_custom_field_plural: Champs personnalisés |
|
321 | label_custom_field_plural: Champs personnalisés | |
322 | label_custom_field_new: Nouveau champ personnalisé |
|
322 | label_custom_field_new: Nouveau champ personnalisé | |
323 | label_enumerations: Listes de valeurs |
|
323 | label_enumerations: Listes de valeurs | |
324 | label_enumeration_new: Nouvelle valeur |
|
324 | label_enumeration_new: Nouvelle valeur | |
325 | label_information: Information |
|
325 | label_information: Information | |
326 | label_information_plural: Informations |
|
326 | label_information_plural: Informations | |
327 | label_please_login: Identification |
|
327 | label_please_login: Identification | |
328 | label_register: S'enregistrer |
|
328 | label_register: S'enregistrer | |
329 | label_password_lost: Mot de passe perdu |
|
329 | label_password_lost: Mot de passe perdu | |
330 | label_home: Accueil |
|
330 | label_home: Accueil | |
331 | label_my_page: Ma page |
|
331 | label_my_page: Ma page | |
332 | label_my_account: Mon compte |
|
332 | label_my_account: Mon compte | |
333 | label_my_projects: Mes projets |
|
333 | label_my_projects: Mes projets | |
334 | label_administration: Administration |
|
334 | label_administration: Administration | |
335 | label_login: Connexion |
|
335 | label_login: Connexion | |
336 | label_logout: Déconnexion |
|
336 | label_logout: Déconnexion | |
337 | label_help: Aide |
|
337 | label_help: Aide | |
338 | label_reported_issues: Demandes soumises |
|
338 | label_reported_issues: Demandes soumises | |
339 | label_assigned_to_me_issues: Demandes qui me sont assignées |
|
339 | label_assigned_to_me_issues: Demandes qui me sont assignées | |
340 | label_last_login: Dernière connexion |
|
340 | label_last_login: Dernière connexion | |
341 | label_last_updates: Dernière mise à jour |
|
341 | label_last_updates: Dernière mise à jour | |
342 | label_last_updates_plural: %d dernières mises à jour |
|
342 | label_last_updates_plural: %d dernières mises à jour | |
343 | label_registered_on: Inscrit le |
|
343 | label_registered_on: Inscrit le | |
344 | label_activity: Activité |
|
344 | label_activity: Activité | |
345 | label_new: Nouveau |
|
345 | label_new: Nouveau | |
346 | label_logged_as: Connecté en tant que |
|
346 | label_logged_as: Connecté en tant que | |
347 | label_environment: Environnement |
|
347 | label_environment: Environnement | |
348 | label_authentication: Authentification |
|
348 | label_authentication: Authentification | |
349 | label_auth_source: Mode d'authentification |
|
349 | label_auth_source: Mode d'authentification | |
350 | label_auth_source_new: Nouveau mode d'authentification |
|
350 | label_auth_source_new: Nouveau mode d'authentification | |
351 | label_auth_source_plural: Modes d'authentification |
|
351 | label_auth_source_plural: Modes d'authentification | |
352 | label_subproject_plural: Sous-projets |
|
352 | label_subproject_plural: Sous-projets | |
353 | label_and_its_subprojects: %s et ses sous-projets |
|
353 | label_and_its_subprojects: %s et ses sous-projets | |
354 | label_min_max_length: Longueurs mini - maxi |
|
354 | label_min_max_length: Longueurs mini - maxi | |
355 | label_list: Liste |
|
355 | label_list: Liste | |
356 | label_date: Date |
|
356 | label_date: Date | |
357 | label_integer: Entier |
|
357 | label_integer: Entier | |
358 | label_float: Nombre décimal |
|
358 | label_float: Nombre décimal | |
359 | label_boolean: Booléen |
|
359 | label_boolean: Booléen | |
360 | label_string: Texte |
|
360 | label_string: Texte | |
361 | label_text: Texte long |
|
361 | label_text: Texte long | |
362 | label_attribute: Attribut |
|
362 | label_attribute: Attribut | |
363 | label_attribute_plural: Attributs |
|
363 | label_attribute_plural: Attributs | |
364 | label_download: %d Téléchargement |
|
364 | label_download: %d Téléchargement | |
365 | label_download_plural: %d Téléchargements |
|
365 | label_download_plural: %d Téléchargements | |
366 | label_no_data: Aucune donnée à afficher |
|
366 | label_no_data: Aucune donnée à afficher | |
367 | label_change_status: Changer le statut |
|
367 | label_change_status: Changer le statut | |
368 | label_history: Historique |
|
368 | label_history: Historique | |
369 | label_attachment: Fichier |
|
369 | label_attachment: Fichier | |
370 | label_attachment_new: Nouveau fichier |
|
370 | label_attachment_new: Nouveau fichier | |
371 | label_attachment_delete: Supprimer le fichier |
|
371 | label_attachment_delete: Supprimer le fichier | |
372 | label_attachment_plural: Fichiers |
|
372 | label_attachment_plural: Fichiers | |
373 | label_file_added: Fichier ajouté |
|
373 | label_file_added: Fichier ajouté | |
374 | label_report: Rapport |
|
374 | label_report: Rapport | |
375 | label_report_plural: Rapports |
|
375 | label_report_plural: Rapports | |
376 | label_news: Annonce |
|
376 | label_news: Annonce | |
377 | label_news_new: Nouvelle annonce |
|
377 | label_news_new: Nouvelle annonce | |
378 | label_news_plural: Annonces |
|
378 | label_news_plural: Annonces | |
379 | label_news_latest: Dernières annonces |
|
379 | label_news_latest: Dernières annonces | |
380 | label_news_view_all: Voir toutes les annonces |
|
380 | label_news_view_all: Voir toutes les annonces | |
381 | label_news_added: Annonce ajoutée |
|
381 | label_news_added: Annonce ajoutée | |
382 | label_change_log: Historique |
|
382 | label_change_log: Historique | |
383 | label_settings: Configuration |
|
383 | label_settings: Configuration | |
384 | label_overview: Aperçu |
|
384 | label_overview: Aperçu | |
385 | label_version: Version |
|
385 | label_version: Version | |
386 | label_version_new: Nouvelle version |
|
386 | label_version_new: Nouvelle version | |
387 | label_version_plural: Versions |
|
387 | label_version_plural: Versions | |
388 | label_confirmation: Confirmation |
|
388 | label_confirmation: Confirmation | |
389 | label_export_to: 'Formats disponibles:' |
|
389 | label_export_to: 'Formats disponibles:' | |
390 | label_read: Lire... |
|
390 | label_read: Lire... | |
391 | label_public_projects: Projets publics |
|
391 | label_public_projects: Projets publics | |
392 | label_open_issues: ouvert |
|
392 | label_open_issues: ouvert | |
393 | label_open_issues_plural: ouverts |
|
393 | label_open_issues_plural: ouverts | |
394 | label_closed_issues: fermé |
|
394 | label_closed_issues: fermé | |
395 | label_closed_issues_plural: fermés |
|
395 | label_closed_issues_plural: fermés | |
396 | label_total: Total |
|
396 | label_total: Total | |
397 | label_permissions: Permissions |
|
397 | label_permissions: Permissions | |
398 | label_current_status: Statut actuel |
|
398 | label_current_status: Statut actuel | |
399 | label_new_statuses_allowed: Nouveaux statuts autorisés |
|
399 | label_new_statuses_allowed: Nouveaux statuts autorisés | |
400 | label_all: tous |
|
400 | label_all: tous | |
401 | label_none: aucun |
|
401 | label_none: aucun | |
402 | label_nobody: personne |
|
402 | label_nobody: personne | |
403 | label_next: Suivant |
|
403 | label_next: Suivant | |
404 | label_previous: Précédent |
|
404 | label_previous: Précédent | |
405 | label_used_by: Utilisé par |
|
405 | label_used_by: Utilisé par | |
406 | label_details: Détails |
|
406 | label_details: Détails | |
407 | label_add_note: Ajouter une note |
|
407 | label_add_note: Ajouter une note | |
408 | label_per_page: Par page |
|
408 | label_per_page: Par page | |
409 | label_calendar: Calendrier |
|
409 | label_calendar: Calendrier | |
410 | label_months_from: mois depuis |
|
410 | label_months_from: mois depuis | |
411 | label_gantt: Gantt |
|
411 | label_gantt: Gantt | |
412 | label_internal: Interne |
|
412 | label_internal: Interne | |
413 | label_last_changes: %d derniers changements |
|
413 | label_last_changes: %d derniers changements | |
414 | label_change_view_all: Voir tous les changements |
|
414 | label_change_view_all: Voir tous les changements | |
415 | label_personalize_page: Personnaliser cette page |
|
415 | label_personalize_page: Personnaliser cette page | |
416 | label_comment: Commentaire |
|
416 | label_comment: Commentaire | |
417 | label_comment_plural: Commentaires |
|
417 | label_comment_plural: Commentaires | |
418 | label_comment_add: Ajouter un commentaire |
|
418 | label_comment_add: Ajouter un commentaire | |
419 | label_comment_added: Commentaire ajouté |
|
419 | label_comment_added: Commentaire ajouté | |
420 | label_comment_delete: Supprimer les commentaires |
|
420 | label_comment_delete: Supprimer les commentaires | |
421 | label_query: Rapport personnalisé |
|
421 | label_query: Rapport personnalisé | |
422 | label_query_plural: Rapports personnalisés |
|
422 | label_query_plural: Rapports personnalisés | |
423 | label_query_new: Nouveau rapport |
|
423 | label_query_new: Nouveau rapport | |
424 | label_filter_add: Ajouter le filtre |
|
424 | label_filter_add: Ajouter le filtre | |
425 | label_filter_plural: Filtres |
|
425 | label_filter_plural: Filtres | |
426 | label_equals: égal |
|
426 | label_equals: égal | |
427 | label_not_equals: différent |
|
427 | label_not_equals: différent | |
428 | label_in_less_than: dans moins de |
|
428 | label_in_less_than: dans moins de | |
429 | label_in_more_than: dans plus de |
|
429 | label_in_more_than: dans plus de | |
430 | label_in: dans |
|
430 | label_in: dans | |
431 | label_today: aujourd'hui |
|
431 | label_today: aujourd'hui | |
432 | label_all_time: toute la période |
|
432 | label_all_time: toute la période | |
433 | label_yesterday: hier |
|
433 | label_yesterday: hier | |
434 | label_this_week: cette semaine |
|
434 | label_this_week: cette semaine | |
435 | label_last_week: la semaine dernière |
|
435 | label_last_week: la semaine dernière | |
436 | label_last_n_days: les %d derniers jours |
|
436 | label_last_n_days: les %d derniers jours | |
437 | label_this_month: ce mois-ci |
|
437 | label_this_month: ce mois-ci | |
438 | label_last_month: le mois dernier |
|
438 | label_last_month: le mois dernier | |
439 | label_this_year: cette année |
|
439 | label_this_year: cette année | |
440 | label_date_range: Période |
|
440 | label_date_range: Période | |
441 | label_less_than_ago: il y a moins de |
|
441 | label_less_than_ago: il y a moins de | |
442 | label_more_than_ago: il y a plus de |
|
442 | label_more_than_ago: il y a plus de | |
443 | label_ago: il y a |
|
443 | label_ago: il y a | |
444 | label_contains: contient |
|
444 | label_contains: contient | |
445 | label_not_contains: ne contient pas |
|
445 | label_not_contains: ne contient pas | |
446 | label_day_plural: jours |
|
446 | label_day_plural: jours | |
447 | label_repository: Dépôt |
|
447 | label_repository: Dépôt | |
448 | label_repository_plural: Dépôts |
|
448 | label_repository_plural: Dépôts | |
449 | label_browse: Parcourir |
|
449 | label_browse: Parcourir | |
450 | label_modification: %d modification |
|
450 | label_modification: %d modification | |
451 | label_modification_plural: %d modifications |
|
451 | label_modification_plural: %d modifications | |
452 | label_revision: Révision |
|
452 | label_revision: Révision | |
453 | label_revision_plural: Révisions |
|
453 | label_revision_plural: Révisions | |
454 | label_associated_revisions: Révisions associées |
|
454 | label_associated_revisions: Révisions associées | |
455 | label_added: ajouté |
|
455 | label_added: ajouté | |
456 | label_modified: modifié |
|
456 | label_modified: modifié | |
457 | label_copied: copié |
|
457 | label_copied: copié | |
458 | label_renamed: renommé |
|
458 | label_renamed: renommé | |
459 | label_deleted: supprimé |
|
459 | label_deleted: supprimé | |
460 | label_latest_revision: Dernière révision |
|
460 | label_latest_revision: Dernière révision | |
461 | label_latest_revision_plural: Dernières révisions |
|
461 | label_latest_revision_plural: Dernières révisions | |
462 | label_view_revisions: Voir les révisions |
|
462 | label_view_revisions: Voir les révisions | |
463 | label_max_size: Taille maximale |
|
463 | label_max_size: Taille maximale | |
464 | label_on: sur |
|
464 | label_on: sur | |
465 | label_sort_highest: Remonter en premier |
|
465 | label_sort_highest: Remonter en premier | |
466 | label_sort_higher: Remonter |
|
466 | label_sort_higher: Remonter | |
467 | label_sort_lower: Descendre |
|
467 | label_sort_lower: Descendre | |
468 | label_sort_lowest: Descendre en dernier |
|
468 | label_sort_lowest: Descendre en dernier | |
469 | label_roadmap: Roadmap |
|
469 | label_roadmap: Roadmap | |
470 | label_roadmap_due_in: Echéance dans %s |
|
470 | label_roadmap_due_in: Echéance dans %s | |
471 | label_roadmap_overdue: En retard de %s |
|
471 | label_roadmap_overdue: En retard de %s | |
472 | label_roadmap_no_issues: Aucune demande pour cette version |
|
472 | label_roadmap_no_issues: Aucune demande pour cette version | |
473 | label_search: Recherche |
|
473 | label_search: Recherche | |
474 | label_result_plural: Résultats |
|
474 | label_result_plural: Résultats | |
475 | label_all_words: Tous les mots |
|
475 | label_all_words: Tous les mots | |
476 | label_wiki: Wiki |
|
476 | label_wiki: Wiki | |
477 | label_wiki_edit: Révision wiki |
|
477 | label_wiki_edit: Révision wiki | |
478 | label_wiki_edit_plural: Révisions wiki |
|
478 | label_wiki_edit_plural: Révisions wiki | |
479 | label_wiki_page: Page wiki |
|
479 | label_wiki_page: Page wiki | |
480 | label_wiki_page_plural: Pages wiki |
|
480 | label_wiki_page_plural: Pages wiki | |
481 | label_index_by_title: Index par titre |
|
481 | label_index_by_title: Index par titre | |
482 | label_index_by_date: Index par date |
|
482 | label_index_by_date: Index par date | |
483 | label_current_version: Version actuelle |
|
483 | label_current_version: Version actuelle | |
484 | label_preview: Prévisualisation |
|
484 | label_preview: Prévisualisation | |
485 | label_feed_plural: Flux RSS |
|
485 | label_feed_plural: Flux RSS | |
486 | label_changes_details: Détails de tous les changements |
|
486 | label_changes_details: Détails de tous les changements | |
487 | label_issue_tracking: Suivi des demandes |
|
487 | label_issue_tracking: Suivi des demandes | |
488 | label_spent_time: Temps passé |
|
488 | label_spent_time: Temps passé | |
489 | label_f_hour: %.2f heure |
|
489 | label_f_hour: %.2f heure | |
490 | label_f_hour_plural: %.2f heures |
|
490 | label_f_hour_plural: %.2f heures | |
491 | label_time_tracking: Suivi du temps |
|
491 | label_time_tracking: Suivi du temps | |
492 | label_change_plural: Changements |
|
492 | label_change_plural: Changements | |
493 | label_statistics: Statistiques |
|
493 | label_statistics: Statistiques | |
494 | label_commits_per_month: Commits par mois |
|
494 | label_commits_per_month: Commits par mois | |
495 | label_commits_per_author: Commits par auteur |
|
495 | label_commits_per_author: Commits par auteur | |
496 | label_view_diff: Voir les différences |
|
496 | label_view_diff: Voir les différences | |
497 | label_diff_inline: en ligne |
|
497 | label_diff_inline: en ligne | |
498 | label_diff_side_by_side: côte à côte |
|
498 | label_diff_side_by_side: côte à côte | |
499 | label_options: Options |
|
499 | label_options: Options | |
500 | label_copy_workflow_from: Copier le workflow de |
|
500 | label_copy_workflow_from: Copier le workflow de | |
501 | label_permissions_report: Synthèse des permissions |
|
501 | label_permissions_report: Synthèse des permissions | |
502 | label_watched_issues: Demandes surveillées |
|
502 | label_watched_issues: Demandes surveillées | |
503 | label_related_issues: Demandes liées |
|
503 | label_related_issues: Demandes liées | |
504 | label_applied_status: Statut appliqué |
|
504 | label_applied_status: Statut appliqué | |
505 | label_loading: Chargement... |
|
505 | label_loading: Chargement... | |
506 | label_relation_new: Nouvelle relation |
|
506 | label_relation_new: Nouvelle relation | |
507 | label_relation_delete: Supprimer la relation |
|
507 | label_relation_delete: Supprimer la relation | |
508 | label_relates_to: lié à |
|
508 | label_relates_to: lié à | |
509 | label_duplicates: duplique |
|
509 | label_duplicates: duplique | |
510 | label_duplicated_by: dupliqué par |
|
510 | label_duplicated_by: dupliqué par | |
511 | label_blocks: bloque |
|
511 | label_blocks: bloque | |
512 | label_blocked_by: bloqué par |
|
512 | label_blocked_by: bloqué par | |
513 | label_precedes: précède |
|
513 | label_precedes: précède | |
514 | label_follows: suit |
|
514 | label_follows: suit | |
515 | label_end_to_start: fin à début |
|
515 | label_end_to_start: fin à début | |
516 | label_end_to_end: fin à fin |
|
516 | label_end_to_end: fin à fin | |
517 | label_start_to_start: début à début |
|
517 | label_start_to_start: début à début | |
518 | label_start_to_end: début à fin |
|
518 | label_start_to_end: début à fin | |
519 | label_stay_logged_in: Rester connecté |
|
519 | label_stay_logged_in: Rester connecté | |
520 | label_disabled: désactivé |
|
520 | label_disabled: désactivé | |
521 | label_show_completed_versions: Voir les versions passées |
|
521 | label_show_completed_versions: Voir les versions passées | |
522 | label_me: moi |
|
522 | label_me: moi | |
523 | label_board: Forum |
|
523 | label_board: Forum | |
524 | label_board_new: Nouveau forum |
|
524 | label_board_new: Nouveau forum | |
525 | label_board_plural: Forums |
|
525 | label_board_plural: Forums | |
526 | label_topic_plural: Discussions |
|
526 | label_topic_plural: Discussions | |
527 | label_message_plural: Messages |
|
527 | label_message_plural: Messages | |
528 | label_message_last: Dernier message |
|
528 | label_message_last: Dernier message | |
529 | label_message_new: Nouveau message |
|
529 | label_message_new: Nouveau message | |
530 | label_message_posted: Message ajouté |
|
530 | label_message_posted: Message ajouté | |
531 | label_reply_plural: Réponses |
|
531 | label_reply_plural: Réponses | |
532 | label_send_information: Envoyer les informations à l'utilisateur |
|
532 | label_send_information: Envoyer les informations à l'utilisateur | |
533 | label_year: Année |
|
533 | label_year: Année | |
534 | label_month: Mois |
|
534 | label_month: Mois | |
535 | label_week: Semaine |
|
535 | label_week: Semaine | |
536 | label_date_from: Du |
|
536 | label_date_from: Du | |
537 | label_date_to: Au |
|
537 | label_date_to: Au | |
538 | label_language_based: Basé sur la langue de l'utilisateur |
|
538 | label_language_based: Basé sur la langue de l'utilisateur | |
539 | label_sort_by: Trier par %s |
|
539 | label_sort_by: Trier par %s | |
540 | label_send_test_email: Envoyer un email de test |
|
540 | label_send_test_email: Envoyer un email de test | |
541 | label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s |
|
541 | label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s | |
542 | label_module_plural: Modules |
|
542 | label_module_plural: Modules | |
543 | label_added_time_by: Ajouté par %s il y a %s |
|
543 | label_added_time_by: Ajouté par %s il y a %s | |
544 | label_updated_time: Mis à jour il y a %s |
|
544 | label_updated_time: Mis à jour il y a %s | |
545 | label_jump_to_a_project: Aller à un projet... |
|
545 | label_jump_to_a_project: Aller à un projet... | |
546 | label_file_plural: Fichiers |
|
546 | label_file_plural: Fichiers | |
547 | label_changeset_plural: Révisions |
|
547 | label_changeset_plural: Révisions | |
548 | label_default_columns: Colonnes par défaut |
|
548 | label_default_columns: Colonnes par défaut | |
549 | label_no_change_option: (Pas de changement) |
|
549 | label_no_change_option: (Pas de changement) | |
550 | label_bulk_edit_selected_issues: Modifier les demandes sélectionnées |
|
550 | label_bulk_edit_selected_issues: Modifier les demandes sélectionnées | |
551 | label_theme: Thème |
|
551 | label_theme: Thème | |
552 | label_default: Défaut |
|
552 | label_default: Défaut | |
553 | label_search_titles_only: Uniquement dans les titres |
|
553 | label_search_titles_only: Uniquement dans les titres | |
554 | label_user_mail_option_all: "Pour tous les événements de tous mes projets" |
|
554 | label_user_mail_option_all: "Pour tous les événements de tous mes projets" | |
555 | label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..." |
|
555 | label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..." | |
556 | label_user_mail_option_none: "Seulement pour ce que je surveille ou à quoi je participe" |
|
556 | label_user_mail_option_none: "Seulement pour ce que je surveille ou à quoi je participe" | |
557 | label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements que j'effectue" |
|
557 | label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements que j'effectue" | |
558 | label_registration_activation_by_email: activation du compte par email |
|
558 | label_registration_activation_by_email: activation du compte par email | |
559 | label_registration_manual_activation: activation manuelle du compte |
|
559 | label_registration_manual_activation: activation manuelle du compte | |
560 | label_registration_automatic_activation: activation automatique du compte |
|
560 | label_registration_automatic_activation: activation automatique du compte | |
561 | label_display_per_page: 'Par page: %s' |
|
561 | label_display_per_page: 'Par page: %s' | |
562 | label_age: Age |
|
562 | label_age: Age | |
563 | label_change_properties: Changer les propriétés |
|
563 | label_change_properties: Changer les propriétés | |
564 | label_general: Général |
|
564 | label_general: Général | |
565 | label_more: Plus |
|
565 | label_more: Plus | |
566 | label_scm: SCM |
|
566 | label_scm: SCM | |
567 | label_plugins: Plugins |
|
567 | label_plugins: Plugins | |
568 | label_ldap_authentication: Authentification LDAP |
|
568 | label_ldap_authentication: Authentification LDAP | |
569 | label_downloads_abbr: D/L |
|
569 | label_downloads_abbr: D/L | |
570 | label_optional_description: Description facultative |
|
570 | label_optional_description: Description facultative | |
571 | label_add_another_file: Ajouter un autre fichier |
|
571 | label_add_another_file: Ajouter un autre fichier | |
572 | label_preferences: Préférences |
|
572 | label_preferences: Préférences | |
573 | label_chronological_order: Dans l'ordre chronologique |
|
573 | label_chronological_order: Dans l'ordre chronologique | |
574 | label_reverse_chronological_order: Dans l'ordre chronologique inverse |
|
574 | label_reverse_chronological_order: Dans l'ordre chronologique inverse | |
575 | label_planning: Planning |
|
575 | label_planning: Planning | |
576 | label_incoming_emails: Emails entrants |
|
576 | label_incoming_emails: Emails entrants | |
577 | label_generate_key: Générer une clé |
|
577 | label_generate_key: Générer une clé | |
578 | label_issue_watchers: Utilisateurs surveillant cette demande |
|
578 | label_issue_watchers: Utilisateurs surveillant cette demande | |
|
579 | label_example: Exemple | |||
579 |
|
580 | |||
580 | button_login: Connexion |
|
581 | button_login: Connexion | |
581 | button_submit: Soumettre |
|
582 | button_submit: Soumettre | |
582 | button_save: Sauvegarder |
|
583 | button_save: Sauvegarder | |
583 | button_check_all: Tout cocher |
|
584 | button_check_all: Tout cocher | |
584 | button_uncheck_all: Tout décocher |
|
585 | button_uncheck_all: Tout décocher | |
585 | button_delete: Supprimer |
|
586 | button_delete: Supprimer | |
586 | button_create: Créer |
|
587 | button_create: Créer | |
587 | button_test: Tester |
|
588 | button_test: Tester | |
588 | button_edit: Modifier |
|
589 | button_edit: Modifier | |
589 | button_add: Ajouter |
|
590 | button_add: Ajouter | |
590 | button_change: Changer |
|
591 | button_change: Changer | |
591 | button_apply: Appliquer |
|
592 | button_apply: Appliquer | |
592 | button_clear: Effacer |
|
593 | button_clear: Effacer | |
593 | button_lock: Verrouiller |
|
594 | button_lock: Verrouiller | |
594 | button_unlock: Déverrouiller |
|
595 | button_unlock: Déverrouiller | |
595 | button_download: Télécharger |
|
596 | button_download: Télécharger | |
596 | button_list: Lister |
|
597 | button_list: Lister | |
597 | button_view: Voir |
|
598 | button_view: Voir | |
598 | button_move: Déplacer |
|
599 | button_move: Déplacer | |
599 | button_back: Retour |
|
600 | button_back: Retour | |
600 | button_cancel: Annuler |
|
601 | button_cancel: Annuler | |
601 | button_activate: Activer |
|
602 | button_activate: Activer | |
602 | button_sort: Trier |
|
603 | button_sort: Trier | |
603 | button_log_time: Saisir temps |
|
604 | button_log_time: Saisir temps | |
604 | button_rollback: Revenir à cette version |
|
605 | button_rollback: Revenir à cette version | |
605 | button_watch: Surveiller |
|
606 | button_watch: Surveiller | |
606 | button_unwatch: Ne plus surveiller |
|
607 | button_unwatch: Ne plus surveiller | |
607 | button_reply: Répondre |
|
608 | button_reply: Répondre | |
608 | button_archive: Archiver |
|
609 | button_archive: Archiver | |
609 | button_unarchive: Désarchiver |
|
610 | button_unarchive: Désarchiver | |
610 | button_reset: Réinitialiser |
|
611 | button_reset: Réinitialiser | |
611 | button_rename: Renommer |
|
612 | button_rename: Renommer | |
612 | button_change_password: Changer de mot de passe |
|
613 | button_change_password: Changer de mot de passe | |
613 | button_copy: Copier |
|
614 | button_copy: Copier | |
614 | button_annotate: Annoter |
|
615 | button_annotate: Annoter | |
615 | button_update: Mettre à jour |
|
616 | button_update: Mettre à jour | |
616 | button_configure: Configurer |
|
617 | button_configure: Configurer | |
617 | button_quote: Citer |
|
618 | button_quote: Citer | |
618 |
|
619 | |||
619 | status_active: actif |
|
620 | status_active: actif | |
620 | status_registered: enregistré |
|
621 | status_registered: enregistré | |
621 | status_locked: vérouillé |
|
622 | status_locked: vérouillé | |
622 |
|
623 | |||
623 | text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyée |
|
624 | text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyée | |
624 | text_regexp_info: ex. ^[A-Z0-9]+$ |
|
625 | text_regexp_info: ex. ^[A-Z0-9]+$ | |
625 | text_min_max_length_info: 0 pour aucune restriction |
|
626 | text_min_max_length_info: 0 pour aucune restriction | |
626 | text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et toutes ses données ? |
|
627 | text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et toutes ses données ? | |
627 | text_subprojects_destroy_warning: 'Ses sous-projets: %s seront également supprimés.' |
|
628 | text_subprojects_destroy_warning: 'Ses sous-projets: %s seront également supprimés.' | |
628 | text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow |
|
629 | text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow | |
629 | text_are_you_sure: Etes-vous sûr ? |
|
630 | text_are_you_sure: Etes-vous sûr ? | |
630 | text_journal_changed: changé de %s à %s |
|
631 | text_journal_changed: changé de %s à %s | |
631 | text_journal_set_to: mis à %s |
|
632 | text_journal_set_to: mis à %s | |
632 | text_journal_deleted: supprimé |
|
633 | text_journal_deleted: supprimé | |
633 | text_tip_task_begin_day: tâche commençant ce jour |
|
634 | text_tip_task_begin_day: tâche commençant ce jour | |
634 | text_tip_task_end_day: tâche finissant ce jour |
|
635 | text_tip_task_end_day: tâche finissant ce jour | |
635 | text_tip_task_begin_end_day: tâche commençant et finissant ce jour |
|
636 | text_tip_task_begin_end_day: tâche commençant et finissant ce jour | |
636 | text_project_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres et tirets sont autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' |
|
637 | text_project_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres et tirets sont autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' | |
637 | text_caracters_maximum: %d caractères maximum. |
|
638 | text_caracters_maximum: %d caractères maximum. | |
638 | text_caracters_minimum: %d caractères minimum. |
|
639 | text_caracters_minimum: %d caractères minimum. | |
639 | text_length_between: Longueur comprise entre %d et %d caractères. |
|
640 | text_length_between: Longueur comprise entre %d et %d caractères. | |
640 | text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker |
|
641 | text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker | |
641 | text_unallowed_characters: Caractères non autorisés |
|
642 | text_unallowed_characters: Caractères non autorisés | |
642 | text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules). |
|
643 | text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules). | |
643 | text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits |
|
644 | text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits | |
644 | text_issue_added: La demande %s a été soumise par %s. |
|
645 | text_issue_added: La demande %s a été soumise par %s. | |
645 | text_issue_updated: La demande %s a été mise à jour par %s. |
|
646 | text_issue_updated: La demande %s a été mise à jour par %s. | |
646 | text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ? |
|
647 | text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ? | |
647 | text_issue_category_destroy_question: %d demandes sont affectées à cette catégories. Que voulez-vous faire ? |
|
648 | text_issue_category_destroy_question: %d demandes sont affectées à cette catégories. Que voulez-vous faire ? | |
648 | text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie |
|
649 | text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie | |
649 | text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie |
|
650 | text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie | |
650 | text_user_mail_option: "Pour les projets non sélectionnés, vous recevrez seulement des notifications pour ce que vous surveillez ou à quoi vous participez (exemple: demandes dont vous êtes l'auteur ou la personne assignée)." |
|
651 | text_user_mail_option: "Pour les projets non sélectionnés, vous recevrez seulement des notifications pour ce que vous surveillez ou à quoi vous participez (exemple: demandes dont vous êtes l'auteur ou la personne assignée)." | |
651 | text_no_configuration_data: "Les rôles, trackers, statuts et le workflow ne sont pas encore paramétrés.\nIl est vivement recommandé de charger le paramétrage par defaut. Vous pourrez le modifier une fois chargé." |
|
652 | text_no_configuration_data: "Les rôles, trackers, statuts et le workflow ne sont pas encore paramétrés.\nIl est vivement recommandé de charger le paramétrage par defaut. Vous pourrez le modifier une fois chargé." | |
652 | text_load_default_configuration: Charger le paramétrage par défaut |
|
653 | text_load_default_configuration: Charger le paramétrage par défaut | |
653 | text_status_changed_by_changeset: Appliqué par commit %s. |
|
654 | text_status_changed_by_changeset: Appliqué par commit %s. | |
654 | text_issues_destroy_confirmation: 'Etes-vous sûr de vouloir supprimer le(s) demandes(s) selectionnée(s) ?' |
|
655 | text_issues_destroy_confirmation: 'Etes-vous sûr de vouloir supprimer le(s) demandes(s) selectionnée(s) ?' | |
655 | text_select_project_modules: 'Selectionner les modules à activer pour ce project:' |
|
656 | text_select_project_modules: 'Selectionner les modules à activer pour ce project:' | |
656 | text_default_administrator_account_changed: Compte administrateur par défaut changé |
|
657 | text_default_administrator_account_changed: Compte administrateur par défaut changé | |
657 | text_file_repository_writable: Répertoire de stockage des fichiers accessible en écriture |
|
658 | text_file_repository_writable: Répertoire de stockage des fichiers accessible en écriture | |
658 | text_rmagick_available: Bibliothèque RMagick présente (optionnelle) |
|
659 | text_rmagick_available: Bibliothèque RMagick présente (optionnelle) | |
659 | text_destroy_time_entries_question: %.02f heures ont été enregistrées sur les demandes à supprimer. Que voulez-vous faire ? |
|
660 | text_destroy_time_entries_question: %.02f heures ont été enregistrées sur les demandes à supprimer. Que voulez-vous faire ? | |
660 | text_destroy_time_entries: Supprimer les heures |
|
661 | text_destroy_time_entries: Supprimer les heures | |
661 | text_assign_time_entries_to_project: Reporter les heures sur le projet |
|
662 | text_assign_time_entries_to_project: Reporter les heures sur le projet | |
662 | text_reassign_time_entries: 'Reporter les heures sur cette demande:' |
|
663 | text_reassign_time_entries: 'Reporter les heures sur cette demande:' | |
663 | text_user_wrote: '%s a écrit:' |
|
664 | text_user_wrote: '%s a écrit:' | |
664 | text_enumeration_destroy_question: 'Cette valeur est affectée à %d objets.' |
|
665 | text_enumeration_destroy_question: 'Cette valeur est affectée à %d objets.' | |
665 | text_enumeration_category_reassign_to: 'Réaffecter les objets à cette valeur:' |
|
666 | text_enumeration_category_reassign_to: 'Réaffecter les objets à cette valeur:' | |
666 | text_email_delivery_not_configured: "L'envoi de mail n'est pas configuré, les notifications sont désactivées.\nConfigurez votre serveur SMTP dans config/email.yml et redémarrez l'application pour les activer." |
|
667 | text_email_delivery_not_configured: "L'envoi de mail n'est pas configuré, les notifications sont désactivées.\nConfigurez votre serveur SMTP dans config/email.yml et redémarrez l'application pour les activer." | |
667 |
|
668 | |||
668 | default_role_manager: Manager |
|
669 | default_role_manager: Manager | |
669 | default_role_developper: Développeur |
|
670 | default_role_developper: Développeur | |
670 | default_role_reporter: Rapporteur |
|
671 | default_role_reporter: Rapporteur | |
671 | default_tracker_bug: Anomalie |
|
672 | default_tracker_bug: Anomalie | |
672 | default_tracker_feature: Evolution |
|
673 | default_tracker_feature: Evolution | |
673 | default_tracker_support: Assistance |
|
674 | default_tracker_support: Assistance | |
674 | default_issue_status_new: Nouveau |
|
675 | default_issue_status_new: Nouveau | |
675 | default_issue_status_assigned: Assigné |
|
676 | default_issue_status_assigned: Assigné | |
676 | default_issue_status_resolved: Résolu |
|
677 | default_issue_status_resolved: Résolu | |
677 | default_issue_status_feedback: Commentaire |
|
678 | default_issue_status_feedback: Commentaire | |
678 | default_issue_status_closed: Fermé |
|
679 | default_issue_status_closed: Fermé | |
679 | default_issue_status_rejected: Rejeté |
|
680 | default_issue_status_rejected: Rejeté | |
680 | default_doc_category_user: Documentation utilisateur |
|
681 | default_doc_category_user: Documentation utilisateur | |
681 | default_doc_category_tech: Documentation technique |
|
682 | default_doc_category_tech: Documentation technique | |
682 | default_priority_low: Bas |
|
683 | default_priority_low: Bas | |
683 | default_priority_normal: Normal |
|
684 | default_priority_normal: Normal | |
684 | default_priority_high: Haut |
|
685 | default_priority_high: Haut | |
685 | default_priority_urgent: Urgent |
|
686 | default_priority_urgent: Urgent | |
686 | default_priority_immediate: Immédiat |
|
687 | default_priority_immediate: Immédiat | |
687 | default_activity_design: Conception |
|
688 | default_activity_design: Conception | |
688 | default_activity_development: Développement |
|
689 | default_activity_development: Développement | |
689 |
|
690 | |||
690 | enumeration_issue_priorities: Priorités des demandes |
|
691 | enumeration_issue_priorities: Priorités des demandes | |
691 | enumeration_doc_categories: Catégories des documents |
|
692 | enumeration_doc_categories: Catégories des documents | |
692 | enumeration_activities: Activités (suivi du temps) |
|
693 | enumeration_activities: Activités (suivi du temps) |
General Comments 0
You need to be logged in to leave comments.
Login now