The requested changes are too big and content was truncated. Show full diff
@@ -1,489 +1,502 | |||
|
1 | 1 | # Redmine - project management software |
|
2 | 2 | # Copyright (C) 2006-2014 Jean-Philippe Lang |
|
3 | 3 | # |
|
4 | 4 | # This program is free software; you can redistribute it and/or |
|
5 | 5 | # modify it under the terms of the GNU General Public License |
|
6 | 6 | # as published by the Free Software Foundation; either version 2 |
|
7 | 7 | # of the License, or (at your option) any later version. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU General Public License |
|
15 | 15 | # along with this program; if not, write to the Free Software |
|
16 | 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
17 | 17 | |
|
18 | 18 | class IssuesController < ApplicationController |
|
19 | 19 | menu_item :new_issue, :only => [:new, :create] |
|
20 | 20 | default_search_scope :issues |
|
21 | 21 | |
|
22 | 22 | before_filter :find_issue, :only => [:show, :edit, :update] |
|
23 | 23 | before_filter :find_issues, :only => [:bulk_edit, :bulk_update, :destroy] |
|
24 | 24 | before_filter :find_project, :only => [:new, :create, :update_form] |
|
25 | 25 | before_filter :authorize, :except => [:index] |
|
26 | 26 | before_filter :find_optional_project, :only => [:index] |
|
27 | 27 | before_filter :build_new_issue_from_params, :only => [:new, :create, :update_form] |
|
28 | 28 | accept_rss_auth :index, :show |
|
29 | 29 | accept_api_auth :index, :show, :create, :update, :destroy |
|
30 | 30 | |
|
31 | 31 | rescue_from Query::StatementInvalid, :with => :query_statement_invalid |
|
32 | 32 | |
|
33 | 33 | helper :journals |
|
34 | 34 | helper :projects |
|
35 | 35 | include ProjectsHelper |
|
36 | 36 | helper :custom_fields |
|
37 | 37 | include CustomFieldsHelper |
|
38 | 38 | helper :issue_relations |
|
39 | 39 | include IssueRelationsHelper |
|
40 | 40 | helper :watchers |
|
41 | 41 | include WatchersHelper |
|
42 | 42 | helper :attachments |
|
43 | 43 | include AttachmentsHelper |
|
44 | 44 | helper :queries |
|
45 | 45 | include QueriesHelper |
|
46 | 46 | helper :repositories |
|
47 | 47 | include RepositoriesHelper |
|
48 | 48 | helper :sort |
|
49 | 49 | include SortHelper |
|
50 | 50 | include IssuesHelper |
|
51 | 51 | helper :timelog |
|
52 | 52 | include Redmine::Export::PDF |
|
53 | 53 | |
|
54 | 54 | def index |
|
55 | 55 | retrieve_query |
|
56 | 56 | sort_init(@query.sort_criteria.empty? ? [['id', 'desc']] : @query.sort_criteria) |
|
57 | 57 | sort_update(@query.sortable_columns) |
|
58 | 58 | @query.sort_criteria = sort_criteria.to_a |
|
59 | 59 | |
|
60 | 60 | if @query.valid? |
|
61 | 61 | case params[:format] |
|
62 | 62 | when 'csv', 'pdf' |
|
63 | 63 | @limit = Setting.issues_export_limit.to_i |
|
64 | 64 | if params[:columns] == 'all' |
|
65 | 65 | @query.column_names = @query.available_inline_columns.map(&:name) |
|
66 | 66 | end |
|
67 | 67 | when 'atom' |
|
68 | 68 | @limit = Setting.feeds_limit.to_i |
|
69 | 69 | when 'xml', 'json' |
|
70 | 70 | @offset, @limit = api_offset_and_limit |
|
71 | 71 | @query.column_names = %w(author) |
|
72 | 72 | else |
|
73 | 73 | @limit = per_page_option |
|
74 | 74 | end |
|
75 | 75 | |
|
76 | 76 | @issue_count = @query.issue_count |
|
77 | 77 | @issue_pages = Paginator.new @issue_count, @limit, params['page'] |
|
78 | 78 | @offset ||= @issue_pages.offset |
|
79 | 79 | @issues = @query.issues(:include => [:assigned_to, :tracker, :priority, :category, :fixed_version], |
|
80 | 80 | :order => sort_clause, |
|
81 | 81 | :offset => @offset, |
|
82 | 82 | :limit => @limit) |
|
83 | 83 | @issue_count_by_group = @query.issue_count_by_group |
|
84 | 84 | |
|
85 | 85 | respond_to do |format| |
|
86 | 86 | format.html { render :template => 'issues/index', :layout => !request.xhr? } |
|
87 | 87 | format.api { |
|
88 | 88 | Issue.load_visible_relations(@issues) if include_in_api_response?('relations') |
|
89 | 89 | } |
|
90 | 90 | format.atom { render_feed(@issues, :title => "#{@project || Setting.app_title}: #{l(:label_issue_plural)}") } |
|
91 | 91 | format.csv { send_data(query_to_csv(@issues, @query, params), :type => 'text/csv; header=present', :filename => 'issues.csv') } |
|
92 | 92 | format.pdf { send_data(issues_to_pdf(@issues, @project, @query), :type => 'application/pdf', :filename => 'issues.pdf') } |
|
93 | 93 | end |
|
94 | 94 | else |
|
95 | 95 | respond_to do |format| |
|
96 | 96 | format.html { render(:template => 'issues/index', :layout => !request.xhr?) } |
|
97 | 97 | format.any(:atom, :csv, :pdf) { render(:nothing => true) } |
|
98 | 98 | format.api { render_validation_errors(@query) } |
|
99 | 99 | end |
|
100 | 100 | end |
|
101 | 101 | rescue ActiveRecord::RecordNotFound |
|
102 | 102 | render_404 |
|
103 | 103 | end |
|
104 | 104 | |
|
105 | 105 | def show |
|
106 | 106 | @journals = @issue.journals.includes(:user, :details). |
|
107 | 107 | references(:user, :details). |
|
108 | 108 | reorder("#{Journal.table_name}.id ASC").to_a |
|
109 | 109 | @journals.each_with_index {|j,i| j.indice = i+1} |
|
110 | 110 | @journals.reject!(&:private_notes?) unless User.current.allowed_to?(:view_private_notes, @issue.project) |
|
111 | 111 | Journal.preload_journals_details_custom_fields(@journals) |
|
112 | 112 | @journals.select! {|journal| journal.notes? || journal.visible_details.any?} |
|
113 | 113 | @journals.reverse! if User.current.wants_comments_in_reverse_order? |
|
114 | 114 | |
|
115 | 115 | @changesets = @issue.changesets.visible.to_a |
|
116 | 116 | @changesets.reverse! if User.current.wants_comments_in_reverse_order? |
|
117 | 117 | |
|
118 | 118 | @relations = @issue.relations.select {|r| r.other_issue(@issue) && r.other_issue(@issue).visible? } |
|
119 | 119 | @allowed_statuses = @issue.new_statuses_allowed_to(User.current) |
|
120 | 120 | @edit_allowed = User.current.allowed_to?(:edit_issues, @project) |
|
121 | 121 | @priorities = IssuePriority.active |
|
122 | 122 | @time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project) |
|
123 | 123 | @relation = IssueRelation.new |
|
124 | 124 | |
|
125 | 125 | respond_to do |format| |
|
126 | 126 | format.html { |
|
127 | 127 | retrieve_previous_and_next_issue_ids |
|
128 | 128 | render :template => 'issues/show' |
|
129 | 129 | } |
|
130 | 130 | format.api |
|
131 | 131 | format.atom { render :template => 'journals/index', :layout => false, :content_type => 'application/atom+xml' } |
|
132 | 132 | format.pdf { |
|
133 | 133 | pdf = issue_to_pdf(@issue, :journals => @journals) |
|
134 | 134 | send_data(pdf, :type => 'application/pdf', :filename => "#{@project.identifier}-#{@issue.id}.pdf") |
|
135 | 135 | } |
|
136 | 136 | end |
|
137 | 137 | end |
|
138 | 138 | |
|
139 | 139 | # Add a new issue |
|
140 | 140 | # The new issue will be created from an existing one if copy_from parameter is given |
|
141 | 141 | def new |
|
142 | 142 | respond_to do |format| |
|
143 | 143 | format.html { render :action => 'new', :layout => !request.xhr? } |
|
144 | 144 | end |
|
145 | 145 | end |
|
146 | 146 | |
|
147 | 147 | def create |
|
148 | 148 | call_hook(:controller_issues_new_before_save, { :params => params, :issue => @issue }) |
|
149 | 149 | @issue.save_attachments(params[:attachments] || (params[:issue] && params[:issue][:uploads])) |
|
150 | 150 | if @issue.save |
|
151 | 151 | call_hook(:controller_issues_new_after_save, { :params => params, :issue => @issue}) |
|
152 | 152 | respond_to do |format| |
|
153 | 153 | format.html { |
|
154 | 154 | render_attachment_warning_if_needed(@issue) |
|
155 | 155 | flash[:notice] = l(:notice_issue_successful_create, :id => view_context.link_to("##{@issue.id}", issue_path(@issue), :title => @issue.subject)) |
|
156 | 156 | if params[:continue] |
|
157 | 157 | attrs = {:tracker_id => @issue.tracker, :parent_issue_id => @issue.parent_issue_id}.reject {|k,v| v.nil?} |
|
158 | 158 | redirect_to new_project_issue_path(@issue.project, :issue => attrs) |
|
159 | 159 | else |
|
160 | 160 | redirect_to issue_path(@issue) |
|
161 | 161 | end |
|
162 | 162 | } |
|
163 | 163 | format.api { render :action => 'show', :status => :created, :location => issue_url(@issue) } |
|
164 | 164 | end |
|
165 | 165 | return |
|
166 | 166 | else |
|
167 | 167 | respond_to do |format| |
|
168 | 168 | format.html { render :action => 'new' } |
|
169 | 169 | format.api { render_validation_errors(@issue) } |
|
170 | 170 | end |
|
171 | 171 | end |
|
172 | 172 | end |
|
173 | 173 | |
|
174 | 174 | def edit |
|
175 | 175 | return unless update_issue_from_params |
|
176 | 176 | |
|
177 | 177 | respond_to do |format| |
|
178 | 178 | format.html { } |
|
179 | 179 | format.xml { } |
|
180 | 180 | end |
|
181 | 181 | end |
|
182 | 182 | |
|
183 | 183 | def update |
|
184 | 184 | return unless update_issue_from_params |
|
185 | 185 | @issue.save_attachments(params[:attachments] || (params[:issue] && params[:issue][:uploads])) |
|
186 | 186 | saved = false |
|
187 | 187 | begin |
|
188 | 188 | saved = save_issue_with_child_records |
|
189 | 189 | rescue ActiveRecord::StaleObjectError |
|
190 | 190 | @conflict = true |
|
191 | 191 | if params[:last_journal_id] |
|
192 | 192 | @conflict_journals = @issue.journals_after(params[:last_journal_id]).to_a |
|
193 | 193 | @conflict_journals.reject!(&:private_notes?) unless User.current.allowed_to?(:view_private_notes, @issue.project) |
|
194 | 194 | end |
|
195 | 195 | end |
|
196 | 196 | |
|
197 | 197 | if saved |
|
198 | 198 | render_attachment_warning_if_needed(@issue) |
|
199 | 199 | flash[:notice] = l(:notice_successful_update) unless @issue.current_journal.new_record? |
|
200 | 200 | |
|
201 | 201 | respond_to do |format| |
|
202 | 202 | format.html { redirect_back_or_default issue_path(@issue) } |
|
203 | 203 | format.api { render_api_ok } |
|
204 | 204 | end |
|
205 | 205 | else |
|
206 | 206 | respond_to do |format| |
|
207 | 207 | format.html { render :action => 'edit' } |
|
208 | 208 | format.api { render_validation_errors(@issue) } |
|
209 | 209 | end |
|
210 | 210 | end |
|
211 | 211 | end |
|
212 | 212 | |
|
213 | 213 | # Updates the issue form when changing the project, status or tracker |
|
214 | 214 | # on issue creation/update |
|
215 | 215 | def update_form |
|
216 | 216 | end |
|
217 | 217 | |
|
218 | 218 | # Bulk edit/copy a set of issues |
|
219 | 219 | def bulk_edit |
|
220 | 220 | @issues.sort! |
|
221 | 221 | @copy = params[:copy].present? |
|
222 | 222 | @notes = params[:notes] |
|
223 | 223 | |
|
224 | 224 | if User.current.allowed_to?(:move_issues, @projects) |
|
225 | 225 | @allowed_projects = Issue.allowed_target_projects_on_move |
|
226 | 226 | if params[:issue] |
|
227 | 227 | @target_project = @allowed_projects.detect {|p| p.id.to_s == params[:issue][:project_id].to_s} |
|
228 | 228 | if @target_project |
|
229 | 229 | target_projects = [@target_project] |
|
230 | 230 | end |
|
231 | 231 | end |
|
232 | 232 | end |
|
233 | 233 | target_projects ||= @projects |
|
234 | 234 | |
|
235 | 235 | if @copy |
|
236 | 236 | # Copied issues will get their default statuses |
|
237 | 237 | @available_statuses = [] |
|
238 | 238 | else |
|
239 | 239 | @available_statuses = @issues.map(&:new_statuses_allowed_to).reduce(:&) |
|
240 | 240 | end |
|
241 | 241 | @custom_fields = target_projects.map{|p|p.all_issue_custom_fields.visible}.reduce(:&) |
|
242 | 242 | @assignables = target_projects.map(&:assignable_users).reduce(:&) |
|
243 | 243 | @trackers = target_projects.map(&:trackers).reduce(:&) |
|
244 | 244 | @versions = target_projects.map {|p| p.shared_versions.open}.reduce(:&) |
|
245 | 245 | @categories = target_projects.map {|p| p.issue_categories}.reduce(:&) |
|
246 | 246 | if @copy |
|
247 | 247 | @attachments_present = @issues.detect {|i| i.attachments.any?}.present? |
|
248 | 248 | @subtasks_present = @issues.detect {|i| !i.leaf?}.present? |
|
249 | 249 | end |
|
250 | 250 | |
|
251 | 251 | @safe_attributes = @issues.map(&:safe_attribute_names).reduce(:&) |
|
252 | 252 | |
|
253 | 253 | @issue_params = params[:issue] || {} |
|
254 | 254 | @issue_params[:custom_field_values] ||= {} |
|
255 | 255 | end |
|
256 | 256 | |
|
257 | 257 | def bulk_update |
|
258 | 258 | @issues.sort! |
|
259 | 259 | @copy = params[:copy].present? |
|
260 | 260 | attributes = parse_params_for_bulk_issue_attributes(params) |
|
261 | 261 | |
|
262 | 262 | unsaved_issues = [] |
|
263 | 263 | saved_issues = [] |
|
264 | 264 | |
|
265 | 265 | if @copy && params[:copy_subtasks].present? |
|
266 | 266 | # Descendant issues will be copied with the parent task |
|
267 | 267 | # Don't copy them twice |
|
268 | 268 | @issues.reject! {|issue| @issues.detect {|other| issue.is_descendant_of?(other)}} |
|
269 | 269 | end |
|
270 | 270 | |
|
271 | 271 | @issues.each do |orig_issue| |
|
272 | 272 | orig_issue.reload |
|
273 | 273 | if @copy |
|
274 | 274 | issue = orig_issue.copy({}, |
|
275 | 275 | :attachments => params[:copy_attachments].present?, |
|
276 | :subtasks => params[:copy_subtasks].present? | |
|
276 | :subtasks => params[:copy_subtasks].present?, | |
|
277 | :link => link_copy?(params[:link_copy]) | |
|
277 | 278 | ) |
|
278 | 279 | else |
|
279 | 280 | issue = orig_issue |
|
280 | 281 | end |
|
281 | 282 | journal = issue.init_journal(User.current, params[:notes]) |
|
282 | 283 | issue.safe_attributes = attributes |
|
283 | 284 | call_hook(:controller_issues_bulk_edit_before_save, { :params => params, :issue => issue }) |
|
284 | 285 | if issue.save |
|
285 | 286 | saved_issues << issue |
|
286 | 287 | else |
|
287 | 288 | unsaved_issues << orig_issue |
|
288 | 289 | end |
|
289 | 290 | end |
|
290 | 291 | |
|
291 | 292 | if unsaved_issues.empty? |
|
292 | 293 | flash[:notice] = l(:notice_successful_update) unless saved_issues.empty? |
|
293 | 294 | if params[:follow] |
|
294 | 295 | if @issues.size == 1 && saved_issues.size == 1 |
|
295 | 296 | redirect_to issue_path(saved_issues.first) |
|
296 | 297 | elsif saved_issues.map(&:project).uniq.size == 1 |
|
297 | 298 | redirect_to project_issues_path(saved_issues.map(&:project).first) |
|
298 | 299 | end |
|
299 | 300 | else |
|
300 | 301 | redirect_back_or_default _project_issues_path(@project) |
|
301 | 302 | end |
|
302 | 303 | else |
|
303 | 304 | @saved_issues = @issues |
|
304 | 305 | @unsaved_issues = unsaved_issues |
|
305 | 306 | @issues = Issue.visible.where(:id => @unsaved_issues.map(&:id)).to_a |
|
306 | 307 | bulk_edit |
|
307 | 308 | render :action => 'bulk_edit' |
|
308 | 309 | end |
|
309 | 310 | end |
|
310 | 311 | |
|
311 | 312 | def destroy |
|
312 | 313 | @hours = TimeEntry.where(:issue_id => @issues.map(&:id)).sum(:hours).to_f |
|
313 | 314 | if @hours > 0 |
|
314 | 315 | case params[:todo] |
|
315 | 316 | when 'destroy' |
|
316 | 317 | # nothing to do |
|
317 | 318 | when 'nullify' |
|
318 | 319 | TimeEntry.where(['issue_id IN (?)', @issues]).update_all('issue_id = NULL') |
|
319 | 320 | when 'reassign' |
|
320 | 321 | reassign_to = @project.issues.find_by_id(params[:reassign_to_id]) |
|
321 | 322 | if reassign_to.nil? |
|
322 | 323 | flash.now[:error] = l(:error_issue_not_found_in_project) |
|
323 | 324 | return |
|
324 | 325 | else |
|
325 | 326 | TimeEntry.where(['issue_id IN (?)', @issues]). |
|
326 | 327 | update_all("issue_id = #{reassign_to.id}") |
|
327 | 328 | end |
|
328 | 329 | else |
|
329 | 330 | # display the destroy form if it's a user request |
|
330 | 331 | return unless api_request? |
|
331 | 332 | end |
|
332 | 333 | end |
|
333 | 334 | @issues.each do |issue| |
|
334 | 335 | begin |
|
335 | 336 | issue.reload.destroy |
|
336 | 337 | rescue ::ActiveRecord::RecordNotFound # raised by #reload if issue no longer exists |
|
337 | 338 | # nothing to do, issue was already deleted (eg. by a parent) |
|
338 | 339 | end |
|
339 | 340 | end |
|
340 | 341 | respond_to do |format| |
|
341 | 342 | format.html { redirect_back_or_default _project_issues_path(@project) } |
|
342 | 343 | format.api { render_api_ok } |
|
343 | 344 | end |
|
344 | 345 | end |
|
345 | 346 | |
|
346 | 347 | private |
|
347 | 348 | |
|
348 | 349 | def find_project |
|
349 | 350 | project_id = params[:project_id] || (params[:issue] && params[:issue][:project_id]) |
|
350 | 351 | @project = Project.find(project_id) |
|
351 | 352 | rescue ActiveRecord::RecordNotFound |
|
352 | 353 | render_404 |
|
353 | 354 | end |
|
354 | 355 | |
|
355 | 356 | def retrieve_previous_and_next_issue_ids |
|
356 | 357 | retrieve_query_from_session |
|
357 | 358 | if @query |
|
358 | 359 | sort_init(@query.sort_criteria.empty? ? [['id', 'desc']] : @query.sort_criteria) |
|
359 | 360 | sort_update(@query.sortable_columns, 'issues_index_sort') |
|
360 | 361 | limit = 500 |
|
361 | 362 | issue_ids = @query.issue_ids(:order => sort_clause, :limit => (limit + 1), :include => [:assigned_to, :tracker, :priority, :category, :fixed_version]) |
|
362 | 363 | if (idx = issue_ids.index(@issue.id)) && idx < limit |
|
363 | 364 | if issue_ids.size < 500 |
|
364 | 365 | @issue_position = idx + 1 |
|
365 | 366 | @issue_count = issue_ids.size |
|
366 | 367 | end |
|
367 | 368 | @prev_issue_id = issue_ids[idx - 1] if idx > 0 |
|
368 | 369 | @next_issue_id = issue_ids[idx + 1] if idx < (issue_ids.size - 1) |
|
369 | 370 | end |
|
370 | 371 | end |
|
371 | 372 | end |
|
372 | 373 | |
|
373 | 374 | # Used by #edit and #update to set some common instance variables |
|
374 | 375 | # from the params |
|
375 | 376 | # TODO: Refactor, not everything in here is needed by #edit |
|
376 | 377 | def update_issue_from_params |
|
377 | 378 | @edit_allowed = User.current.allowed_to?(:edit_issues, @project) |
|
378 | 379 | @time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project) |
|
379 | 380 | if params[:time_entry] |
|
380 | 381 | @time_entry.attributes = params[:time_entry] |
|
381 | 382 | end |
|
382 | 383 | |
|
383 | 384 | @issue.init_journal(User.current) |
|
384 | 385 | |
|
385 | 386 | issue_attributes = params[:issue] |
|
386 | 387 | if issue_attributes && params[:conflict_resolution] |
|
387 | 388 | case params[:conflict_resolution] |
|
388 | 389 | when 'overwrite' |
|
389 | 390 | issue_attributes = issue_attributes.dup |
|
390 | 391 | issue_attributes.delete(:lock_version) |
|
391 | 392 | when 'add_notes' |
|
392 | 393 | issue_attributes = issue_attributes.slice(:notes) |
|
393 | 394 | when 'cancel' |
|
394 | 395 | redirect_to issue_path(@issue) |
|
395 | 396 | return false |
|
396 | 397 | end |
|
397 | 398 | end |
|
398 | 399 | @issue.safe_attributes = issue_attributes |
|
399 | 400 | @priorities = IssuePriority.active |
|
400 | 401 | @allowed_statuses = @issue.new_statuses_allowed_to(User.current) |
|
401 | 402 | true |
|
402 | 403 | end |
|
403 | 404 | |
|
404 | 405 | # TODO: Refactor, lots of extra code in here |
|
405 | 406 | # TODO: Changing tracker on an existing issue should not trigger this |
|
406 | 407 | def build_new_issue_from_params |
|
407 | 408 | if params[:id].blank? |
|
408 | 409 | @issue = Issue.new |
|
409 | 410 | @issue.init_journal(User.current) |
|
410 | 411 | if params[:copy_from] |
|
411 | 412 | begin |
|
412 | 413 | @copy_from = Issue.visible.find(params[:copy_from]) |
|
414 | @link_copy = link_copy?(params[:link_copy]) || request.get? | |
|
413 | 415 | @copy_attachments = params[:copy_attachments].present? || request.get? |
|
414 | 416 | @copy_subtasks = params[:copy_subtasks].present? || request.get? |
|
415 | @issue.copy_from(@copy_from, :attachments => @copy_attachments, :subtasks => @copy_subtasks) | |
|
417 | @issue.copy_from(@copy_from, :attachments => @copy_attachments, :subtasks => @copy_subtasks, :link => @link_copy) | |
|
416 | 418 | rescue ActiveRecord::RecordNotFound |
|
417 | 419 | render_404 |
|
418 | 420 | return |
|
419 | 421 | end |
|
420 | 422 | end |
|
421 | 423 | @issue.project = @project |
|
422 | 424 | @issue.author ||= User.current |
|
423 | 425 | @issue.start_date ||= Date.today if Setting.default_issue_start_date_to_creation_date? |
|
424 | 426 | else |
|
425 | 427 | @issue = @project.issues.visible.find(params[:id]) |
|
426 | 428 | end |
|
427 | 429 | |
|
428 | 430 | if attrs = params[:issue].deep_dup |
|
429 | 431 | if params[:was_default_status] == attrs[:status_id] |
|
430 | 432 | attrs.delete(:status_id) |
|
431 | 433 | end |
|
432 | 434 | @issue.safe_attributes = attrs |
|
433 | 435 | end |
|
434 | 436 | @issue.tracker ||= @project.trackers.first |
|
435 | 437 | if @issue.tracker.nil? |
|
436 | 438 | render_error l(:error_no_tracker_in_project) |
|
437 | 439 | return false |
|
438 | 440 | end |
|
439 | 441 | if @issue.status.nil? |
|
440 | 442 | render_error l(:error_no_default_issue_status) |
|
441 | 443 | return false |
|
442 | 444 | end |
|
443 | 445 | |
|
444 | 446 | @priorities = IssuePriority.active |
|
445 | 447 | @allowed_statuses = @issue.new_statuses_allowed_to(User.current, @issue.new_record?) |
|
446 | 448 | @available_watchers = @issue.watcher_users |
|
447 | 449 | if @issue.project.users.count <= 20 |
|
448 | 450 | @available_watchers = (@available_watchers + @issue.project.users.sort).uniq |
|
449 | 451 | end |
|
450 | 452 | end |
|
451 | 453 | |
|
452 | 454 | def parse_params_for_bulk_issue_attributes(params) |
|
453 | 455 | attributes = (params[:issue] || {}).reject {|k,v| v.blank?} |
|
454 | 456 | attributes.keys.each {|k| attributes[k] = '' if attributes[k] == 'none'} |
|
455 | 457 | if custom = attributes[:custom_field_values] |
|
456 | 458 | custom.reject! {|k,v| v.blank?} |
|
457 | 459 | custom.keys.each do |k| |
|
458 | 460 | if custom[k].is_a?(Array) |
|
459 | 461 | custom[k] << '' if custom[k].delete('__none__') |
|
460 | 462 | else |
|
461 | 463 | custom[k] = '' if custom[k] == '__none__' |
|
462 | 464 | end |
|
463 | 465 | end |
|
464 | 466 | end |
|
465 | 467 | attributes |
|
466 | 468 | end |
|
467 | 469 | |
|
468 | 470 | # Saves @issue and a time_entry from the parameters |
|
469 | 471 | def save_issue_with_child_records |
|
470 | 472 | Issue.transaction do |
|
471 | 473 | if params[:time_entry] && (params[:time_entry][:hours].present? || params[:time_entry][:comments].present?) && User.current.allowed_to?(:log_time, @issue.project) |
|
472 | 474 | time_entry = @time_entry || TimeEntry.new |
|
473 | 475 | time_entry.project = @issue.project |
|
474 | 476 | time_entry.issue = @issue |
|
475 | 477 | time_entry.user = User.current |
|
476 | 478 | time_entry.spent_on = User.current.today |
|
477 | 479 | time_entry.attributes = params[:time_entry] |
|
478 | 480 | @issue.time_entries << time_entry |
|
479 | 481 | end |
|
480 | 482 | |
|
481 | 483 | call_hook(:controller_issues_edit_before_save, { :params => params, :issue => @issue, :time_entry => time_entry, :journal => @issue.current_journal}) |
|
482 | 484 | if @issue.save |
|
483 | 485 | call_hook(:controller_issues_edit_after_save, { :params => params, :issue => @issue, :time_entry => time_entry, :journal => @issue.current_journal}) |
|
484 | 486 | else |
|
485 | 487 | raise ActiveRecord::Rollback |
|
486 | 488 | end |
|
487 | 489 | end |
|
488 | 490 | end |
|
491 | ||
|
492 | def link_copy?(param) | |
|
493 | case Setting.link_copied_issue | |
|
494 | when 'yes' | |
|
495 | true | |
|
496 | when 'no' | |
|
497 | false | |
|
498 | when 'ask' | |
|
499 | param == '1' | |
|
500 | end | |
|
501 | end | |
|
489 | 502 | end |
@@ -1,118 +1,128 | |||
|
1 | 1 | # encoding: utf-8 |
|
2 | 2 | # |
|
3 | 3 | # Redmine - project management software |
|
4 | 4 | # Copyright (C) 2006-2014 Jean-Philippe Lang |
|
5 | 5 | # |
|
6 | 6 | # This program is free software; you can redistribute it and/or |
|
7 | 7 | # modify it under the terms of the GNU General Public License |
|
8 | 8 | # as published by the Free Software Foundation; either version 2 |
|
9 | 9 | # of the License, or (at your option) any later version. |
|
10 | 10 | # |
|
11 | 11 | # This program is distributed in the hope that it will be useful, |
|
12 | 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 | 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
14 | 14 | # GNU General Public License for more details. |
|
15 | 15 | # |
|
16 | 16 | # You should have received a copy of the GNU General Public License |
|
17 | 17 | # along with this program; if not, write to the Free Software |
|
18 | 18 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
19 | 19 | |
|
20 | 20 | module SettingsHelper |
|
21 | 21 | def administration_settings_tabs |
|
22 | 22 | tabs = [{:name => 'general', :partial => 'settings/general', :label => :label_general}, |
|
23 | 23 | {:name => 'display', :partial => 'settings/display', :label => :label_display}, |
|
24 | 24 | {:name => 'authentication', :partial => 'settings/authentication', :label => :label_authentication}, |
|
25 | 25 | {:name => 'projects', :partial => 'settings/projects', :label => :label_project_plural}, |
|
26 | 26 | {:name => 'issues', :partial => 'settings/issues', :label => :label_issue_tracking}, |
|
27 | 27 | {:name => 'notifications', :partial => 'settings/notifications', :label => :field_mail_notification}, |
|
28 | 28 | {:name => 'mail_handler', :partial => 'settings/mail_handler', :label => :label_incoming_emails}, |
|
29 | 29 | {:name => 'repositories', :partial => 'settings/repositories', :label => :label_repository_plural} |
|
30 | 30 | ] |
|
31 | 31 | end |
|
32 | 32 | |
|
33 | 33 | def setting_select(setting, choices, options={}) |
|
34 | 34 | if blank_text = options.delete(:blank) |
|
35 | 35 | choices = [[blank_text.is_a?(Symbol) ? l(blank_text) : blank_text, '']] + choices |
|
36 | 36 | end |
|
37 | 37 | setting_label(setting, options).html_safe + |
|
38 | 38 | select_tag("settings[#{setting}]", |
|
39 | 39 | options_for_select(choices, Setting.send(setting).to_s), |
|
40 | 40 | options).html_safe |
|
41 | 41 | end |
|
42 | 42 | |
|
43 | 43 | def setting_multiselect(setting, choices, options={}) |
|
44 | 44 | setting_values = Setting.send(setting) |
|
45 | 45 | setting_values = [] unless setting_values.is_a?(Array) |
|
46 | 46 | |
|
47 | 47 | content_tag("label", l(options[:label] || "setting_#{setting}")) + |
|
48 | 48 | hidden_field_tag("settings[#{setting}][]", '').html_safe + |
|
49 | 49 | choices.collect do |choice| |
|
50 | 50 | text, value = (choice.is_a?(Array) ? choice : [choice, choice]) |
|
51 | 51 | content_tag( |
|
52 | 52 | 'label', |
|
53 | 53 | check_box_tag( |
|
54 | 54 | "settings[#{setting}][]", |
|
55 | 55 | value, |
|
56 | 56 | setting_values.include?(value), |
|
57 | 57 | :id => nil |
|
58 | 58 | ) + text.to_s, |
|
59 | 59 | :class => (options[:inline] ? 'inline' : 'block') |
|
60 | 60 | ) |
|
61 | 61 | end.join.html_safe |
|
62 | 62 | end |
|
63 | 63 | |
|
64 | 64 | def setting_text_field(setting, options={}) |
|
65 | 65 | setting_label(setting, options).html_safe + |
|
66 | 66 | text_field_tag("settings[#{setting}]", Setting.send(setting), options).html_safe |
|
67 | 67 | end |
|
68 | 68 | |
|
69 | 69 | def setting_text_area(setting, options={}) |
|
70 | 70 | setting_label(setting, options).html_safe + |
|
71 | 71 | text_area_tag("settings[#{setting}]", Setting.send(setting), options).html_safe |
|
72 | 72 | end |
|
73 | 73 | |
|
74 | 74 | def setting_check_box(setting, options={}) |
|
75 | 75 | setting_label(setting, options).html_safe + |
|
76 | 76 | hidden_field_tag("settings[#{setting}]", 0, :id => nil).html_safe + |
|
77 | 77 | check_box_tag("settings[#{setting}]", 1, Setting.send("#{setting}?"), options).html_safe |
|
78 | 78 | end |
|
79 | 79 | |
|
80 | 80 | def setting_label(setting, options={}) |
|
81 | 81 | label = options.delete(:label) |
|
82 | 82 | label != false ? label_tag("settings_#{setting}", l(label || "setting_#{setting}"), options[:label_options]).html_safe : '' |
|
83 | 83 | end |
|
84 | 84 | |
|
85 | 85 | # Renders a notification field for a Redmine::Notifiable option |
|
86 | 86 | def notification_field(notifiable) |
|
87 | 87 | tag_data = notifiable.parent.present? ? |
|
88 | 88 | {:parent_notifiable => notifiable.parent} : |
|
89 | 89 | {:disables => "input[data-parent-notifiable=#{notifiable.name}]"} |
|
90 | 90 | |
|
91 | 91 | tag = check_box_tag('settings[notified_events][]', |
|
92 | 92 | notifiable.name, |
|
93 | 93 | Setting.notified_events.include?(notifiable.name), |
|
94 | 94 | :id => nil, |
|
95 | 95 | :data => tag_data) |
|
96 | 96 | |
|
97 | 97 | text = l_or_humanize(notifiable.name, :prefix => 'label_') |
|
98 | 98 | |
|
99 | 99 | options = {} |
|
100 | 100 | if notifiable.parent.present? |
|
101 | 101 | options[:class] = "parent" |
|
102 | 102 | end |
|
103 | 103 | |
|
104 | 104 | content_tag(:label, tag + text, options) |
|
105 | 105 | end |
|
106 | 106 | |
|
107 | def link_copied_issue_options | |
|
108 | options = [ | |
|
109 | [:general_text_Yes, 'yes'], | |
|
110 | [:general_text_No, 'no'], | |
|
111 | [:label_ask, 'ask'] | |
|
112 | ] | |
|
113 | ||
|
114 | options.map {|label, value| [l(label), value.to_s]} | |
|
115 | end | |
|
116 | ||
|
107 | 117 | def cross_project_subtasks_options |
|
108 | 118 | options = [ |
|
109 | 119 | [:label_disabled, ''], |
|
110 | 120 | [:label_cross_project_system, 'system'], |
|
111 | 121 | [:label_cross_project_tree, 'tree'], |
|
112 | 122 | [:label_cross_project_hierarchy, 'hierarchy'], |
|
113 | 123 | [:label_cross_project_descendants, 'descendants'] |
|
114 | 124 | ] |
|
115 | 125 | |
|
116 | 126 | options.map {|label, value| [l(label), value.to_s]} |
|
117 | 127 | end |
|
118 | 128 | end |
@@ -1,198 +1,206 | |||
|
1 | 1 | <h2><%= @copy ? l(:button_copy) : l(:label_bulk_edit_selected_issues) %></h2> |
|
2 | 2 | |
|
3 | 3 | <% if @saved_issues && @unsaved_issues.present? %> |
|
4 | 4 | <div id="errorExplanation"> |
|
5 | 5 | <span> |
|
6 | 6 | <%= l(:notice_failed_to_save_issues, |
|
7 | 7 | :count => @unsaved_issues.size, |
|
8 | 8 | :total => @saved_issues.size, |
|
9 | 9 | :ids => @unsaved_issues.map {|i| "##{i.id}"}.join(', ')) %> |
|
10 | 10 | </span> |
|
11 | 11 | <ul> |
|
12 | 12 | <% bulk_edit_error_messages(@unsaved_issues).each do |message| %> |
|
13 | 13 | <li><%= message %></li> |
|
14 | 14 | <% end %> |
|
15 | 15 | </ul> |
|
16 | 16 | </div> |
|
17 | 17 | <% end %> |
|
18 | 18 | |
|
19 | 19 | <ul id="bulk-selection"> |
|
20 | 20 | <% @issues.each do |issue| %> |
|
21 | 21 | <%= content_tag 'li', link_to_issue(issue) %> |
|
22 | 22 | <% end %> |
|
23 | 23 | </ul> |
|
24 | 24 | |
|
25 | 25 | <%= form_tag(bulk_update_issues_path, :id => 'bulk_edit_form') do %> |
|
26 | 26 | <%= @issues.collect {|i| hidden_field_tag('ids[]', i.id, :id => nil)}.join("\n").html_safe %> |
|
27 | 27 | <div class="box tabular"> |
|
28 | 28 | <fieldset class="attributes"> |
|
29 | 29 | <legend><%= l(:label_change_properties) %></legend> |
|
30 | 30 | |
|
31 | 31 | <div class="splitcontentleft"> |
|
32 | 32 | <% if @allowed_projects.present? %> |
|
33 | 33 | <p> |
|
34 | 34 | <label for="issue_project_id"><%= l(:field_project) %></label> |
|
35 | 35 | <%= select_tag('issue[project_id]', |
|
36 | 36 | content_tag('option', l(:label_no_change_option), :value => '') + |
|
37 | 37 | project_tree_options_for_select(@allowed_projects, :selected => @target_project), |
|
38 | 38 | :onchange => "updateBulkEditFrom('#{escape_javascript url_for(:action => 'bulk_edit', :format => 'js')}')") %> |
|
39 | 39 | </p> |
|
40 | 40 | <% end %> |
|
41 | 41 | <p> |
|
42 | 42 | <label for="issue_tracker_id"><%= l(:field_tracker) %></label> |
|
43 | 43 | <%= select_tag('issue[tracker_id]', |
|
44 | 44 | content_tag('option', l(:label_no_change_option), :value => '') + |
|
45 | 45 | options_from_collection_for_select(@trackers, :id, :name, @issue_params[:tracker_id])) %> |
|
46 | 46 | </p> |
|
47 | 47 | <% if @available_statuses.any? %> |
|
48 | 48 | <p> |
|
49 | 49 | <label for='issue_status_id'><%= l(:field_status) %></label> |
|
50 | 50 | <%= select_tag('issue[status_id]', |
|
51 | 51 | content_tag('option', l(:label_no_change_option), :value => '') + |
|
52 | 52 | options_from_collection_for_select(@available_statuses, :id, :name, @issue_params[:status_id])) %> |
|
53 | 53 | </p> |
|
54 | 54 | <% end %> |
|
55 | 55 | |
|
56 | 56 | <% if @safe_attributes.include?('priority_id') -%> |
|
57 | 57 | <p> |
|
58 | 58 | <label for='issue_priority_id'><%= l(:field_priority) %></label> |
|
59 | 59 | <%= select_tag('issue[priority_id]', |
|
60 | 60 | content_tag('option', l(:label_no_change_option), :value => '') + |
|
61 | 61 | options_from_collection_for_select(IssuePriority.active, :id, :name, @issue_params[:priority_id])) %> |
|
62 | 62 | </p> |
|
63 | 63 | <% end %> |
|
64 | 64 | |
|
65 | 65 | <% if @safe_attributes.include?('assigned_to_id') -%> |
|
66 | 66 | <p> |
|
67 | 67 | <label for='issue_assigned_to_id'><%= l(:field_assigned_to) %></label> |
|
68 | 68 | <%= select_tag('issue[assigned_to_id]', |
|
69 | 69 | content_tag('option', l(:label_no_change_option), :value => '') + |
|
70 | 70 | content_tag('option', l(:label_nobody), :value => 'none', :selected => (@issue_params[:assigned_to_id] == 'none')) + |
|
71 | 71 | principals_options_for_select(@assignables, @issue_params[:assigned_to_id])) %> |
|
72 | 72 | </p> |
|
73 | 73 | <% end %> |
|
74 | 74 | |
|
75 | 75 | <% if @safe_attributes.include?('category_id') -%> |
|
76 | 76 | <p> |
|
77 | 77 | <label for='issue_category_id'><%= l(:field_category) %></label> |
|
78 | 78 | <%= select_tag('issue[category_id]', content_tag('option', l(:label_no_change_option), :value => '') + |
|
79 | 79 | content_tag('option', l(:label_none), :value => 'none', :selected => (@issue_params[:category_id] == 'none')) + |
|
80 | 80 | options_from_collection_for_select(@categories, :id, :name, @issue_params[:category_id])) %> |
|
81 | 81 | </p> |
|
82 | 82 | <% end %> |
|
83 | 83 | |
|
84 | 84 | <% if @safe_attributes.include?('fixed_version_id') -%> |
|
85 | 85 | <p> |
|
86 | 86 | <label for='issue_fixed_version_id'><%= l(:field_fixed_version) %></label> |
|
87 | 87 | <%= select_tag('issue[fixed_version_id]', content_tag('option', l(:label_no_change_option), :value => '') + |
|
88 | 88 | content_tag('option', l(:label_none), :value => 'none', :selected => (@issue_params[:fixed_version_id] == 'none')) + |
|
89 | 89 | version_options_for_select(@versions.sort, @issue_params[:fixed_version_id])) %> |
|
90 | 90 | </p> |
|
91 | 91 | <% end %> |
|
92 | 92 | |
|
93 | 93 | <% @custom_fields.each do |custom_field| %> |
|
94 | 94 | <p> |
|
95 | 95 | <label><%= h(custom_field.name) %></label> |
|
96 | 96 | <%= custom_field_tag_for_bulk_edit('issue', custom_field, @issues, @issue_params[:custom_field_values][custom_field.id.to_s]) %> |
|
97 | 97 | </p> |
|
98 | 98 | <% end %> |
|
99 | 99 | |
|
100 | <% if @copy && Setting.link_copied_issue == 'ask' %> | |
|
101 | <p> | |
|
102 | <label for='link_copy'><%= l(:label_link_copied_issue) %></label> | |
|
103 | <%= hidden_field_tag 'link_copy', '0' %> | |
|
104 | <%= check_box_tag 'link_copy', '1', params[:link_copy] != 0 %> | |
|
105 | </p> | |
|
106 | <% end %> | |
|
107 | ||
|
100 | 108 | <% if @copy && @attachments_present %> |
|
101 | 109 | <%= hidden_field_tag 'copy_attachments', '0' %> |
|
102 | 110 | <p> |
|
103 | 111 | <label for='copy_attachments'><%= l(:label_copy_attachments) %></label> |
|
104 | 112 | <%= check_box_tag 'copy_attachments', '1', params[:copy_attachments] != '0' %> |
|
105 | 113 | </p> |
|
106 | 114 | <% end %> |
|
107 | 115 | |
|
108 | 116 | <% if @copy && @subtasks_present %> |
|
109 | 117 | <%= hidden_field_tag 'copy_subtasks', '0' %> |
|
110 | 118 | <p> |
|
111 | 119 | <label for='copy_subtasks'><%= l(:label_copy_subtasks) %></label> |
|
112 | 120 | <%= check_box_tag 'copy_subtasks', '1', params[:copy_subtasks] != '0' %> |
|
113 | 121 | </p> |
|
114 | 122 | <% end %> |
|
115 | 123 | |
|
116 | 124 | <%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %> |
|
117 | 125 | </div> |
|
118 | 126 | |
|
119 | 127 | <div class="splitcontentright"> |
|
120 | 128 | <% if @safe_attributes.include?('is_private') %> |
|
121 | 129 | <p> |
|
122 | 130 | <label for='issue_is_private'><%= l(:field_is_private) %></label> |
|
123 | 131 | <%= select_tag('issue[is_private]', content_tag('option', l(:label_no_change_option), :value => '') + |
|
124 | 132 | content_tag('option', l(:general_text_Yes), :value => '1', :selected => (@issue_params[:is_private] == '1')) + |
|
125 | 133 | content_tag('option', l(:general_text_No), :value => '0', :selected => (@issue_params[:is_private] == '0'))) %> |
|
126 | 134 | </p> |
|
127 | 135 | <% end %> |
|
128 | 136 | |
|
129 | 137 | <% if @safe_attributes.include?('parent_issue_id') && @project %> |
|
130 | 138 | <p> |
|
131 | 139 | <label for='issue_parent_issue_id'><%= l(:field_parent_issue) %></label> |
|
132 | 140 | <%= text_field_tag 'issue[parent_issue_id]', '', :size => 10, :value => @issue_params[:parent_issue_id] %> |
|
133 | 141 | <label class="inline"><%= check_box_tag 'issue[parent_issue_id]', 'none', (@issue_params[:parent_issue_id] == 'none'), :id => nil, :data => {:disables => '#issue_parent_issue_id'} %><%= l(:button_clear) %></label> |
|
134 | 142 | </p> |
|
135 | 143 | <%= javascript_tag "observeAutocompleteField('issue_parent_issue_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project)}')" %> |
|
136 | 144 | <% end %> |
|
137 | 145 | |
|
138 | 146 | <% if @safe_attributes.include?('start_date') %> |
|
139 | 147 | <p> |
|
140 | 148 | <label for='issue_start_date'><%= l(:field_start_date) %></label> |
|
141 | 149 | <%= text_field_tag 'issue[start_date]', '', :value => @issue_params[:start_date], :size => 10 %><%= calendar_for('issue_start_date') %> |
|
142 | 150 | <label class="inline"><%= check_box_tag 'issue[start_date]', 'none', (@issue_params[:start_date] == 'none'), :id => nil, :data => {:disables => '#issue_start_date'} %><%= l(:button_clear) %></label> |
|
143 | 151 | </p> |
|
144 | 152 | <% end %> |
|
145 | 153 | |
|
146 | 154 | <% if @safe_attributes.include?('due_date') %> |
|
147 | 155 | <p> |
|
148 | 156 | <label for='issue_due_date'><%= l(:field_due_date) %></label> |
|
149 | 157 | <%= text_field_tag 'issue[due_date]', '', :value => @issue_params[:due_date], :size => 10 %><%= calendar_for('issue_due_date') %> |
|
150 | 158 | <label class="inline"><%= check_box_tag 'issue[due_date]', 'none', (@issue_params[:due_date] == 'none'), :id => nil, :data => {:disables => '#issue_due_date'} %><%= l(:button_clear) %></label> |
|
151 | 159 | </p> |
|
152 | 160 | <% end %> |
|
153 | 161 | |
|
154 | 162 | <% if @safe_attributes.include?('done_ratio') && Issue.use_field_for_done_ratio? %> |
|
155 | 163 | <p> |
|
156 | 164 | <label for='issue_done_ratio'><%= l(:field_done_ratio) %></label> |
|
157 | 165 | <%= select_tag 'issue[done_ratio]', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }, @issue_params[:done_ratio]) %> |
|
158 | 166 | </p> |
|
159 | 167 | <% end %> |
|
160 | 168 | </div> |
|
161 | 169 | </fieldset> |
|
162 | 170 | |
|
163 | 171 | <fieldset> |
|
164 | 172 | <legend><%= l(:field_notes) %></legend> |
|
165 | 173 | <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %> |
|
166 | 174 | <%= wikitoolbar_for 'notes' %> |
|
167 | 175 | </fieldset> |
|
168 | 176 | </div> |
|
169 | 177 | |
|
170 | 178 | <p> |
|
171 | 179 | <% if @copy %> |
|
172 | 180 | <%= hidden_field_tag 'copy', '1' %> |
|
173 | 181 | <%= submit_tag l(:button_copy) %> |
|
174 | 182 | <%= submit_tag l(:button_copy_and_follow), :name => 'follow' %> |
|
175 | 183 | <% elsif @target_project %> |
|
176 | 184 | <%= submit_tag l(:button_move) %> |
|
177 | 185 | <%= submit_tag l(:button_move_and_follow), :name => 'follow' %> |
|
178 | 186 | <% else %> |
|
179 | 187 | <%= submit_tag l(:button_submit) %> |
|
180 | 188 | <% end %> |
|
181 | 189 | </p> |
|
182 | 190 | |
|
183 | 191 | <% end %> |
|
184 | 192 | |
|
185 | 193 | <%= javascript_tag do %> |
|
186 | 194 | $(window).load(function(){ |
|
187 | 195 | $(document).on('change', 'input[data-disables]', function(){ |
|
188 | 196 | if ($(this).prop('checked')){ |
|
189 | 197 | $($(this).data('disables')).attr('disabled', true).val(''); |
|
190 | 198 | } else { |
|
191 | 199 | $($(this).data('disables')).attr('disabled', false); |
|
192 | 200 | } |
|
193 | 201 | }); |
|
194 | 202 | }); |
|
195 | 203 | $(document).ready(function(){ |
|
196 | 204 | $('input[data-disables]').trigger('change'); |
|
197 | 205 | }); |
|
198 | 206 | <% end %> |
@@ -1,53 +1,59 | |||
|
1 | 1 | <%= title l(:label_issue_new) %> |
|
2 | 2 | |
|
3 | 3 | <%= call_hook(:view_issues_new_top, {:issue => @issue}) %> |
|
4 | 4 | |
|
5 | 5 | <%= labelled_form_for @issue, :url => project_issues_path(@project), |
|
6 | 6 | :html => {:id => 'issue-form', :multipart => true} do |f| %> |
|
7 | 7 | <%= error_messages_for 'issue' %> |
|
8 | 8 | <%= hidden_field_tag 'copy_from', params[:copy_from] if params[:copy_from] %> |
|
9 | 9 | <div class="box tabular"> |
|
10 | 10 | <div id="all_attributes"> |
|
11 | 11 | <%= render :partial => 'issues/form', :locals => {:f => f} %> |
|
12 | 12 | </div> |
|
13 | 13 | |
|
14 | <% if @copy_from && Setting.link_copied_issue == 'ask' %> | |
|
15 | <p> | |
|
16 | <label for="link_copy"><%= l(:label_link_copied_issue) %></label> | |
|
17 | <%= check_box_tag 'link_copy', '1', @link_copy %> | |
|
18 | </p> | |
|
19 | <% end %> | |
|
14 | 20 | <% if @copy_from && @copy_from.attachments.any? %> |
|
15 | 21 | <p> |
|
16 | 22 | <label for="copy_attachments"><%= l(:label_copy_attachments) %></label> |
|
17 | 23 | <%= check_box_tag 'copy_attachments', '1', @copy_attachments %> |
|
18 | 24 | </p> |
|
19 | 25 | <% end %> |
|
20 | 26 | <% if @copy_from && !@copy_from.leaf? %> |
|
21 | 27 | <p> |
|
22 | 28 | <label for="copy_subtasks"><%= l(:label_copy_subtasks) %></label> |
|
23 | 29 | <%= check_box_tag 'copy_subtasks', '1', @copy_subtasks %> |
|
24 | 30 | </p> |
|
25 | 31 | <% end %> |
|
26 | 32 | |
|
27 | 33 | <p id="attachments_form"><label><%= l(:label_attachment_plural) %></label><%= render :partial => 'attachments/form', :locals => {:container => @issue} %></p> |
|
28 | 34 | |
|
29 | 35 | <% if @issue.safe_attribute? 'watcher_user_ids' -%> |
|
30 | 36 | <p id="watchers_form"><label><%= l(:label_issue_watchers) %></label> |
|
31 | 37 | <span id="watchers_inputs"> |
|
32 | 38 | <%= watchers_checkboxes(@issue, @available_watchers) %> |
|
33 | 39 | </span> |
|
34 | 40 | <span class="search_for_watchers"> |
|
35 | 41 | <%= link_to l(:label_search_for_watchers), |
|
36 | 42 | {:controller => 'watchers', :action => 'new', :project_id => @issue.project}, |
|
37 | 43 | :remote => true, |
|
38 | 44 | :method => 'get' %> |
|
39 | 45 | </span> |
|
40 | 46 | </p> |
|
41 | 47 | <% end %> |
|
42 | 48 | </div> |
|
43 | 49 | |
|
44 | 50 | <%= submit_tag l(:button_create) %> |
|
45 | 51 | <%= submit_tag l(:button_create_and_continue), :name => 'continue' %> |
|
46 | 52 | <%= preview_link preview_new_issue_path(:project_id => @project), 'issue-form' %> |
|
47 | 53 | <% end %> |
|
48 | 54 | |
|
49 | 55 | <div id="preview" class="wiki"></div> |
|
50 | 56 | |
|
51 | 57 | <% content_for :header_tags do %> |
|
52 | 58 | <%= robot_exclusion_tag %> |
|
53 | 59 | <% end %> |
@@ -1,31 +1,33 | |||
|
1 | 1 | <%= form_tag({:action => 'edit', :tab => 'issues'}) do %> |
|
2 | 2 | |
|
3 | 3 | <div class="box tabular settings"> |
|
4 | 4 | <p><%= setting_check_box :cross_project_issue_relations %></p> |
|
5 | 5 | |
|
6 | <p><%= setting_select :link_copied_issue, link_copied_issue_options %></p> | |
|
7 | ||
|
6 | 8 | <p><%= setting_select :cross_project_subtasks, cross_project_subtasks_options %></p> |
|
7 | 9 | |
|
8 | 10 | <p><%= setting_check_box :issue_group_assignment %></p> |
|
9 | 11 | |
|
10 | 12 | <p><%= setting_check_box :default_issue_start_date_to_creation_date %></p> |
|
11 | 13 | |
|
12 | 14 | <p><%= setting_check_box :display_subprojects_issues %></p> |
|
13 | 15 | |
|
14 | 16 | <p><%= setting_select :issue_done_ratio, Issue::DONE_RATIO_OPTIONS.collect {|i| [l("setting_issue_done_ratio_#{i}"), i]} %></p> |
|
15 | 17 | |
|
16 | 18 | <p><%= setting_multiselect :non_working_week_days, (1..7).map {|d| [day_name(d), d.to_s]}, :inline => true %></p> |
|
17 | 19 | |
|
18 | 20 | <p><%= setting_text_field :issues_export_limit, :size => 6 %></p> |
|
19 | 21 | |
|
20 | 22 | <p><%= setting_text_field :gantt_items_limit, :size => 6 %></p> |
|
21 | 23 | </div> |
|
22 | 24 | |
|
23 | 25 | <fieldset class="box"> |
|
24 | 26 | <legend><%= l(:setting_issue_list_default_columns) %></legend> |
|
25 | 27 | <%= render_query_columns_selection( |
|
26 | 28 | IssueQuery.new(:column_names => Setting.issue_list_default_columns), |
|
27 | 29 | :name => 'settings[issue_list_default_columns]') %> |
|
28 | 30 | </fieldset> |
|
29 | 31 | |
|
30 | 32 | <%= submit_tag l(:button_save) %> |
|
31 | 33 | <% end %> |
@@ -1,1118 +1,1121 | |||
|
1 | 1 | en: |
|
2 | 2 | # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) |
|
3 | 3 | direction: ltr |
|
4 | 4 | date: |
|
5 | 5 | formats: |
|
6 | 6 | # Use the strftime parameters for formats. |
|
7 | 7 | # When no format has been given, it uses default. |
|
8 | 8 | # You can provide other formats here if you like! |
|
9 | 9 | default: "%m/%d/%Y" |
|
10 | 10 | short: "%b %d" |
|
11 | 11 | long: "%B %d, %Y" |
|
12 | 12 | |
|
13 | 13 | day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday] |
|
14 | 14 | abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat] |
|
15 | 15 | |
|
16 | 16 | # Don't forget the nil at the beginning; there's no such thing as a 0th month |
|
17 | 17 | month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December] |
|
18 | 18 | abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec] |
|
19 | 19 | # Used in date_select and datime_select. |
|
20 | 20 | order: |
|
21 | 21 | - :year |
|
22 | 22 | - :month |
|
23 | 23 | - :day |
|
24 | 24 | |
|
25 | 25 | time: |
|
26 | 26 | formats: |
|
27 | 27 | default: "%m/%d/%Y %I:%M %p" |
|
28 | 28 | time: "%I:%M %p" |
|
29 | 29 | short: "%d %b %H:%M" |
|
30 | 30 | long: "%B %d, %Y %H:%M" |
|
31 | 31 | am: "am" |
|
32 | 32 | pm: "pm" |
|
33 | 33 | |
|
34 | 34 | datetime: |
|
35 | 35 | distance_in_words: |
|
36 | 36 | half_a_minute: "half a minute" |
|
37 | 37 | less_than_x_seconds: |
|
38 | 38 | one: "less than 1 second" |
|
39 | 39 | other: "less than %{count} seconds" |
|
40 | 40 | x_seconds: |
|
41 | 41 | one: "1 second" |
|
42 | 42 | other: "%{count} seconds" |
|
43 | 43 | less_than_x_minutes: |
|
44 | 44 | one: "less than a minute" |
|
45 | 45 | other: "less than %{count} minutes" |
|
46 | 46 | x_minutes: |
|
47 | 47 | one: "1 minute" |
|
48 | 48 | other: "%{count} minutes" |
|
49 | 49 | about_x_hours: |
|
50 | 50 | one: "about 1 hour" |
|
51 | 51 | other: "about %{count} hours" |
|
52 | 52 | x_hours: |
|
53 | 53 | one: "1 hour" |
|
54 | 54 | other: "%{count} hours" |
|
55 | 55 | x_days: |
|
56 | 56 | one: "1 day" |
|
57 | 57 | other: "%{count} days" |
|
58 | 58 | about_x_months: |
|
59 | 59 | one: "about 1 month" |
|
60 | 60 | other: "about %{count} months" |
|
61 | 61 | x_months: |
|
62 | 62 | one: "1 month" |
|
63 | 63 | other: "%{count} months" |
|
64 | 64 | about_x_years: |
|
65 | 65 | one: "about 1 year" |
|
66 | 66 | other: "about %{count} years" |
|
67 | 67 | over_x_years: |
|
68 | 68 | one: "over 1 year" |
|
69 | 69 | other: "over %{count} years" |
|
70 | 70 | almost_x_years: |
|
71 | 71 | one: "almost 1 year" |
|
72 | 72 | other: "almost %{count} years" |
|
73 | 73 | |
|
74 | 74 | number: |
|
75 | 75 | format: |
|
76 | 76 | separator: "." |
|
77 | 77 | delimiter: "" |
|
78 | 78 | precision: 3 |
|
79 | 79 | |
|
80 | 80 | human: |
|
81 | 81 | format: |
|
82 | 82 | delimiter: "" |
|
83 | 83 | precision: 3 |
|
84 | 84 | storage_units: |
|
85 | 85 | format: "%n %u" |
|
86 | 86 | units: |
|
87 | 87 | byte: |
|
88 | 88 | one: "Byte" |
|
89 | 89 | other: "Bytes" |
|
90 | 90 | kb: "KB" |
|
91 | 91 | mb: "MB" |
|
92 | 92 | gb: "GB" |
|
93 | 93 | tb: "TB" |
|
94 | 94 | |
|
95 | 95 | # Used in array.to_sentence. |
|
96 | 96 | support: |
|
97 | 97 | array: |
|
98 | 98 | sentence_connector: "and" |
|
99 | 99 | skip_last_comma: false |
|
100 | 100 | |
|
101 | 101 | activerecord: |
|
102 | 102 | errors: |
|
103 | 103 | template: |
|
104 | 104 | header: |
|
105 | 105 | one: "1 error prohibited this %{model} from being saved" |
|
106 | 106 | other: "%{count} errors prohibited this %{model} from being saved" |
|
107 | 107 | messages: |
|
108 | 108 | inclusion: "is not included in the list" |
|
109 | 109 | exclusion: "is reserved" |
|
110 | 110 | invalid: "is invalid" |
|
111 | 111 | confirmation: "doesn't match confirmation" |
|
112 | 112 | accepted: "must be accepted" |
|
113 | 113 | empty: "can't be empty" |
|
114 | 114 | blank: "can't be blank" |
|
115 | 115 | too_long: "is too long (maximum is %{count} characters)" |
|
116 | 116 | too_short: "is too short (minimum is %{count} characters)" |
|
117 | 117 | wrong_length: "is the wrong length (should be %{count} characters)" |
|
118 | 118 | taken: "has already been taken" |
|
119 | 119 | not_a_number: "is not a number" |
|
120 | 120 | not_a_date: "is not a valid date" |
|
121 | 121 | greater_than: "must be greater than %{count}" |
|
122 | 122 | greater_than_or_equal_to: "must be greater than or equal to %{count}" |
|
123 | 123 | equal_to: "must be equal to %{count}" |
|
124 | 124 | less_than: "must be less than %{count}" |
|
125 | 125 | less_than_or_equal_to: "must be less than or equal to %{count}" |
|
126 | 126 | odd: "must be odd" |
|
127 | 127 | even: "must be even" |
|
128 | 128 | greater_than_start_date: "must be greater than start date" |
|
129 | 129 | not_same_project: "doesn't belong to the same project" |
|
130 | 130 | circular_dependency: "This relation would create a circular dependency" |
|
131 | 131 | cant_link_an_issue_with_a_descendant: "An issue cannot be linked to one of its subtasks" |
|
132 | 132 | earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" |
|
133 | 133 | |
|
134 | 134 | actionview_instancetag_blank_option: Please select |
|
135 | 135 | |
|
136 | 136 | general_text_No: 'No' |
|
137 | 137 | general_text_Yes: 'Yes' |
|
138 | 138 | general_text_no: 'no' |
|
139 | 139 | general_text_yes: 'yes' |
|
140 | 140 | general_lang_name: 'English' |
|
141 | 141 | general_csv_separator: ',' |
|
142 | 142 | general_csv_decimal_separator: '.' |
|
143 | 143 | general_csv_encoding: ISO-8859-1 |
|
144 | 144 | general_pdf_fontname: freesans |
|
145 | 145 | general_first_day_of_week: '7' |
|
146 | 146 | |
|
147 | 147 | notice_account_updated: Account was successfully updated. |
|
148 | 148 | notice_account_invalid_creditentials: Invalid user or password |
|
149 | 149 | notice_account_password_updated: Password was successfully updated. |
|
150 | 150 | notice_account_wrong_password: Wrong password |
|
151 | 151 | notice_account_register_done: Account was successfully created. An email containing the instructions to activate your account was sent to %{email}. |
|
152 | 152 | notice_account_unknown_email: Unknown user. |
|
153 | 153 | notice_account_not_activated_yet: You haven't activated your account yet. If you want to receive a new activation email, please <a href="%{url}">click this link</a>. |
|
154 | 154 | notice_account_locked: Your account is locked. |
|
155 | 155 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
156 | 156 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
157 | 157 | notice_account_activated: Your account has been activated. You can now log in. |
|
158 | 158 | notice_successful_create: Successful creation. |
|
159 | 159 | notice_successful_update: Successful update. |
|
160 | 160 | notice_successful_delete: Successful deletion. |
|
161 | 161 | notice_successful_connection: Successful connection. |
|
162 | 162 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. |
|
163 | 163 | notice_locking_conflict: Data has been updated by another user. |
|
164 | 164 | notice_not_authorized: You are not authorized to access this page. |
|
165 | 165 | notice_not_authorized_archived_project: The project you're trying to access has been archived. |
|
166 | 166 | notice_email_sent: "An email was sent to %{value}" |
|
167 | 167 | notice_email_error: "An error occurred while sending mail (%{value})" |
|
168 | 168 | notice_feeds_access_key_reseted: Your Atom access key was reset. |
|
169 | 169 | notice_api_access_key_reseted: Your API access key was reset. |
|
170 | 170 | notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}." |
|
171 | 171 | notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." |
|
172 | 172 | notice_failed_to_save_members: "Failed to save member(s): %{errors}." |
|
173 | 173 | notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." |
|
174 | 174 | notice_account_pending: "Your account was created and is now pending administrator approval." |
|
175 | 175 | notice_default_data_loaded: Default configuration successfully loaded. |
|
176 | 176 | notice_unable_delete_version: Unable to delete version. |
|
177 | 177 | notice_unable_delete_time_entry: Unable to delete time log entry. |
|
178 | 178 | notice_issue_done_ratios_updated: Issue done ratios updated. |
|
179 | 179 | notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})" |
|
180 | 180 | notice_issue_successful_create: "Issue %{id} created." |
|
181 | 181 | notice_issue_update_conflict: "The issue has been updated by an other user while you were editing it." |
|
182 | 182 | notice_account_deleted: "Your account has been permanently deleted." |
|
183 | 183 | notice_user_successful_create: "User %{id} created." |
|
184 | 184 | notice_new_password_must_be_different: The new password must be different from the current password |
|
185 | 185 | |
|
186 | 186 | error_can_t_load_default_data: "Default configuration could not be loaded: %{value}" |
|
187 | 187 | error_scm_not_found: "The entry or revision was not found in the repository." |
|
188 | 188 | error_scm_command_failed: "An error occurred when trying to access the repository: %{value}" |
|
189 | 189 | error_scm_annotate: "The entry does not exist or cannot be annotated." |
|
190 | 190 | error_scm_annotate_big_text_file: "The entry cannot be annotated, as it exceeds the maximum text file size." |
|
191 | 191 | error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' |
|
192 | 192 | error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' |
|
193 | 193 | error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' |
|
194 | 194 | error_can_not_delete_custom_field: Unable to delete custom field |
|
195 | 195 | error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted." |
|
196 | 196 | error_can_not_remove_role: "This role is in use and cannot be deleted." |
|
197 | 197 | error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened' |
|
198 | 198 | error_can_not_archive_project: This project cannot be archived |
|
199 | 199 | error_issue_done_ratios_not_updated: "Issue done ratios not updated." |
|
200 | 200 | error_workflow_copy_source: 'Please select a source tracker or role' |
|
201 | 201 | error_workflow_copy_target: 'Please select target tracker(s) and role(s)' |
|
202 | 202 | error_unable_delete_issue_status: 'Unable to delete issue status' |
|
203 | 203 | error_unable_to_connect: "Unable to connect (%{value})" |
|
204 | 204 | error_attachment_too_big: "This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})" |
|
205 | 205 | error_session_expired: "Your session has expired. Please login again." |
|
206 | 206 | warning_attachments_not_saved: "%{count} file(s) could not be saved." |
|
207 | 207 | |
|
208 | 208 | mail_subject_lost_password: "Your %{value} password" |
|
209 | 209 | mail_body_lost_password: 'To change your password, click on the following link:' |
|
210 | 210 | mail_subject_register: "Your %{value} account activation" |
|
211 | 211 | mail_body_register: 'To activate your account, click on the following link:' |
|
212 | 212 | mail_body_account_information_external: "You can use your %{value} account to log in." |
|
213 | 213 | mail_body_account_information: Your account information |
|
214 | 214 | mail_subject_account_activation_request: "%{value} account activation request" |
|
215 | 215 | mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:" |
|
216 | 216 | mail_subject_reminder: "%{count} issue(s) due in the next %{days} days" |
|
217 | 217 | mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:" |
|
218 | 218 | mail_subject_wiki_content_added: "'%{id}' wiki page has been added" |
|
219 | 219 | mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." |
|
220 | 220 | mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" |
|
221 | 221 | mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." |
|
222 | 222 | |
|
223 | 223 | field_name: Name |
|
224 | 224 | field_description: Description |
|
225 | 225 | field_summary: Summary |
|
226 | 226 | field_is_required: Required |
|
227 | 227 | field_firstname: First name |
|
228 | 228 | field_lastname: Last name |
|
229 | 229 | field_mail: Email |
|
230 | 230 | field_filename: File |
|
231 | 231 | field_filesize: Size |
|
232 | 232 | field_downloads: Downloads |
|
233 | 233 | field_author: Author |
|
234 | 234 | field_created_on: Created |
|
235 | 235 | field_updated_on: Updated |
|
236 | 236 | field_closed_on: Closed |
|
237 | 237 | field_field_format: Format |
|
238 | 238 | field_is_for_all: For all projects |
|
239 | 239 | field_possible_values: Possible values |
|
240 | 240 | field_regexp: Regular expression |
|
241 | 241 | field_min_length: Minimum length |
|
242 | 242 | field_max_length: Maximum length |
|
243 | 243 | field_value: Value |
|
244 | 244 | field_category: Category |
|
245 | 245 | field_title: Title |
|
246 | 246 | field_project: Project |
|
247 | 247 | field_issue: Issue |
|
248 | 248 | field_status: Status |
|
249 | 249 | field_notes: Notes |
|
250 | 250 | field_is_closed: Issue closed |
|
251 | 251 | field_is_default: Default value |
|
252 | 252 | field_tracker: Tracker |
|
253 | 253 | field_subject: Subject |
|
254 | 254 | field_due_date: Due date |
|
255 | 255 | field_assigned_to: Assignee |
|
256 | 256 | field_priority: Priority |
|
257 | 257 | field_fixed_version: Target version |
|
258 | 258 | field_user: User |
|
259 | 259 | field_principal: Principal |
|
260 | 260 | field_role: Role |
|
261 | 261 | field_homepage: Homepage |
|
262 | 262 | field_is_public: Public |
|
263 | 263 | field_parent: Subproject of |
|
264 | 264 | field_is_in_roadmap: Issues displayed in roadmap |
|
265 | 265 | field_login: Login |
|
266 | 266 | field_mail_notification: Email notifications |
|
267 | 267 | field_admin: Administrator |
|
268 | 268 | field_last_login_on: Last connection |
|
269 | 269 | field_language: Language |
|
270 | 270 | field_effective_date: Date |
|
271 | 271 | field_password: Password |
|
272 | 272 | field_new_password: New password |
|
273 | 273 | field_password_confirmation: Confirmation |
|
274 | 274 | field_version: Version |
|
275 | 275 | field_type: Type |
|
276 | 276 | field_host: Host |
|
277 | 277 | field_port: Port |
|
278 | 278 | field_account: Account |
|
279 | 279 | field_base_dn: Base DN |
|
280 | 280 | field_attr_login: Login attribute |
|
281 | 281 | field_attr_firstname: Firstname attribute |
|
282 | 282 | field_attr_lastname: Lastname attribute |
|
283 | 283 | field_attr_mail: Email attribute |
|
284 | 284 | field_onthefly: On-the-fly user creation |
|
285 | 285 | field_start_date: Start date |
|
286 | 286 | field_done_ratio: "% Done" |
|
287 | 287 | field_auth_source: Authentication mode |
|
288 | 288 | field_hide_mail: Hide my email address |
|
289 | 289 | field_comments: Comment |
|
290 | 290 | field_url: URL |
|
291 | 291 | field_start_page: Start page |
|
292 | 292 | field_subproject: Subproject |
|
293 | 293 | field_hours: Hours |
|
294 | 294 | field_activity: Activity |
|
295 | 295 | field_spent_on: Date |
|
296 | 296 | field_identifier: Identifier |
|
297 | 297 | field_is_filter: Used as a filter |
|
298 | 298 | field_issue_to: Related issue |
|
299 | 299 | field_delay: Delay |
|
300 | 300 | field_assignable: Issues can be assigned to this role |
|
301 | 301 | field_redirect_existing_links: Redirect existing links |
|
302 | 302 | field_estimated_hours: Estimated time |
|
303 | 303 | field_column_names: Columns |
|
304 | 304 | field_time_entries: Log time |
|
305 | 305 | field_time_zone: Time zone |
|
306 | 306 | field_searchable: Searchable |
|
307 | 307 | field_default_value: Default value |
|
308 | 308 | field_comments_sorting: Display comments |
|
309 | 309 | field_parent_title: Parent page |
|
310 | 310 | field_editable: Editable |
|
311 | 311 | field_watcher: Watcher |
|
312 | 312 | field_identity_url: OpenID URL |
|
313 | 313 | field_content: Content |
|
314 | 314 | field_group_by: Group results by |
|
315 | 315 | field_sharing: Sharing |
|
316 | 316 | field_parent_issue: Parent task |
|
317 | 317 | field_member_of_group: "Assignee's group" |
|
318 | 318 | field_assigned_to_role: "Assignee's role" |
|
319 | 319 | field_text: Text field |
|
320 | 320 | field_visible: Visible |
|
321 | 321 | field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text" |
|
322 | 322 | field_issues_visibility: Issues visibility |
|
323 | 323 | field_is_private: Private |
|
324 | 324 | field_commit_logs_encoding: Commit messages encoding |
|
325 | 325 | field_scm_path_encoding: Path encoding |
|
326 | 326 | field_path_to_repository: Path to repository |
|
327 | 327 | field_root_directory: Root directory |
|
328 | 328 | field_cvsroot: CVSROOT |
|
329 | 329 | field_cvs_module: Module |
|
330 | 330 | field_repository_is_default: Main repository |
|
331 | 331 | field_multiple: Multiple values |
|
332 | 332 | field_auth_source_ldap_filter: LDAP filter |
|
333 | 333 | field_core_fields: Standard fields |
|
334 | 334 | field_timeout: "Timeout (in seconds)" |
|
335 | 335 | field_board_parent: Parent forum |
|
336 | 336 | field_private_notes: Private notes |
|
337 | 337 | field_inherit_members: Inherit members |
|
338 | 338 | field_generate_password: Generate password |
|
339 | 339 | field_must_change_passwd: Must change password at next logon |
|
340 | 340 | field_default_status: Default status |
|
341 | 341 | field_users_visibility: Users visibility |
|
342 | 342 | |
|
343 | 343 | setting_app_title: Application title |
|
344 | 344 | setting_app_subtitle: Application subtitle |
|
345 | 345 | setting_welcome_text: Welcome text |
|
346 | 346 | setting_default_language: Default language |
|
347 | 347 | setting_login_required: Authentication required |
|
348 | 348 | setting_self_registration: Self-registration |
|
349 | 349 | setting_attachment_max_size: Maximum attachment size |
|
350 | 350 | setting_issues_export_limit: Issues export limit |
|
351 | 351 | setting_mail_from: Emission email address |
|
352 | 352 | setting_bcc_recipients: Blind carbon copy recipients (bcc) |
|
353 | 353 | setting_plain_text_mail: Plain text mail (no HTML) |
|
354 | 354 | setting_host_name: Host name and path |
|
355 | 355 | setting_text_formatting: Text formatting |
|
356 | 356 | setting_wiki_compression: Wiki history compression |
|
357 | 357 | setting_feeds_limit: Maximum number of items in Atom feeds |
|
358 | 358 | setting_default_projects_public: New projects are public by default |
|
359 | 359 | setting_autofetch_changesets: Fetch commits automatically |
|
360 | 360 | setting_sys_api_enabled: Enable WS for repository management |
|
361 | 361 | setting_commit_ref_keywords: Referencing keywords |
|
362 | 362 | setting_commit_fix_keywords: Fixing keywords |
|
363 | 363 | setting_autologin: Autologin |
|
364 | 364 | setting_date_format: Date format |
|
365 | 365 | setting_time_format: Time format |
|
366 | 366 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
367 | 367 | setting_cross_project_subtasks: Allow cross-project subtasks |
|
368 | 368 | setting_issue_list_default_columns: Default columns displayed on the issue list |
|
369 | 369 | setting_repositories_encodings: Attachments and repositories encodings |
|
370 | 370 | setting_emails_header: Email header |
|
371 | 371 | setting_emails_footer: Email footer |
|
372 | 372 | setting_protocol: Protocol |
|
373 | 373 | setting_per_page_options: Objects per page options |
|
374 | 374 | setting_user_format: Users display format |
|
375 | 375 | setting_activity_days_default: Days displayed on project activity |
|
376 | 376 | setting_display_subprojects_issues: Display subprojects issues on main projects by default |
|
377 | 377 | setting_enabled_scm: Enabled SCM |
|
378 | 378 | setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" |
|
379 | 379 | setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
380 | 380 | setting_mail_handler_api_key: API key |
|
381 | 381 | setting_sequential_project_identifiers: Generate sequential project identifiers |
|
382 | 382 | setting_gravatar_enabled: Use Gravatar user icons |
|
383 | 383 | setting_gravatar_default: Default Gravatar image |
|
384 | 384 | setting_diff_max_lines_displayed: Maximum number of diff lines displayed |
|
385 | 385 | setting_file_max_size_displayed: Maximum size of text files displayed inline |
|
386 | 386 | setting_repository_log_display_limit: Maximum number of revisions displayed on file log |
|
387 | 387 | setting_openid: Allow OpenID login and registration |
|
388 | 388 | setting_password_min_length: Minimum password length |
|
389 | 389 | setting_new_project_user_role_id: Role given to a non-admin user who creates a project |
|
390 | 390 | setting_default_projects_modules: Default enabled modules for new projects |
|
391 | 391 | setting_issue_done_ratio: Calculate the issue done ratio with |
|
392 | 392 | setting_issue_done_ratio_issue_field: Use the issue field |
|
393 | 393 | setting_issue_done_ratio_issue_status: Use the issue status |
|
394 | 394 | setting_start_of_week: Start calendars on |
|
395 | 395 | setting_rest_api_enabled: Enable REST web service |
|
396 | 396 | setting_cache_formatted_text: Cache formatted text |
|
397 | 397 | setting_default_notification_option: Default notification option |
|
398 | 398 | setting_commit_logtime_enabled: Enable time logging |
|
399 | 399 | setting_commit_logtime_activity_id: Activity for logged time |
|
400 | 400 | setting_gantt_items_limit: Maximum number of items displayed on the gantt chart |
|
401 | 401 | setting_issue_group_assignment: Allow issue assignment to groups |
|
402 | 402 | setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues |
|
403 | 403 | setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed |
|
404 | 404 | setting_unsubscribe: Allow users to delete their own account |
|
405 | 405 | setting_session_lifetime: Session maximum lifetime |
|
406 | 406 | setting_session_timeout: Session inactivity timeout |
|
407 | 407 | setting_thumbnails_enabled: Display attachment thumbnails |
|
408 | 408 | setting_thumbnails_size: Thumbnails size (in pixels) |
|
409 | 409 | setting_non_working_week_days: Non-working days |
|
410 | 410 | setting_jsonp_enabled: Enable JSONP support |
|
411 | 411 | setting_default_projects_tracker_ids: Default trackers for new projects |
|
412 | 412 | setting_mail_handler_excluded_filenames: Exclude attachments by name |
|
413 | 413 | setting_force_default_language_for_anonymous: Force default language for anonymous users |
|
414 | 414 | setting_force_default_language_for_loggedin: Force default language for logged-in users |
|
415 | setting_link_copied_issue: Link issues on copy | |
|
415 | 416 | |
|
416 | 417 | permission_add_project: Create project |
|
417 | 418 | permission_add_subprojects: Create subprojects |
|
418 | 419 | permission_edit_project: Edit project |
|
419 | 420 | permission_close_project: Close / reopen the project |
|
420 | 421 | permission_select_project_modules: Select project modules |
|
421 | 422 | permission_manage_members: Manage members |
|
422 | 423 | permission_manage_project_activities: Manage project activities |
|
423 | 424 | permission_manage_versions: Manage versions |
|
424 | 425 | permission_manage_categories: Manage issue categories |
|
425 | 426 | permission_view_issues: View Issues |
|
426 | 427 | permission_add_issues: Add issues |
|
427 | 428 | permission_edit_issues: Edit issues |
|
428 | 429 | permission_manage_issue_relations: Manage issue relations |
|
429 | 430 | permission_set_issues_private: Set issues public or private |
|
430 | 431 | permission_set_own_issues_private: Set own issues public or private |
|
431 | 432 | permission_add_issue_notes: Add notes |
|
432 | 433 | permission_edit_issue_notes: Edit notes |
|
433 | 434 | permission_edit_own_issue_notes: Edit own notes |
|
434 | 435 | permission_view_private_notes: View private notes |
|
435 | 436 | permission_set_notes_private: Set notes as private |
|
436 | 437 | permission_move_issues: Move issues |
|
437 | 438 | permission_delete_issues: Delete issues |
|
438 | 439 | permission_manage_public_queries: Manage public queries |
|
439 | 440 | permission_save_queries: Save queries |
|
440 | 441 | permission_view_gantt: View gantt chart |
|
441 | 442 | permission_view_calendar: View calendar |
|
442 | 443 | permission_view_issue_watchers: View watchers list |
|
443 | 444 | permission_add_issue_watchers: Add watchers |
|
444 | 445 | permission_delete_issue_watchers: Delete watchers |
|
445 | 446 | permission_log_time: Log spent time |
|
446 | 447 | permission_view_time_entries: View spent time |
|
447 | 448 | permission_edit_time_entries: Edit time logs |
|
448 | 449 | permission_edit_own_time_entries: Edit own time logs |
|
449 | 450 | permission_manage_news: Manage news |
|
450 | 451 | permission_comment_news: Comment news |
|
451 | 452 | permission_view_documents: View documents |
|
452 | 453 | permission_add_documents: Add documents |
|
453 | 454 | permission_edit_documents: Edit documents |
|
454 | 455 | permission_delete_documents: Delete documents |
|
455 | 456 | permission_manage_files: Manage files |
|
456 | 457 | permission_view_files: View files |
|
457 | 458 | permission_manage_wiki: Manage wiki |
|
458 | 459 | permission_rename_wiki_pages: Rename wiki pages |
|
459 | 460 | permission_delete_wiki_pages: Delete wiki pages |
|
460 | 461 | permission_view_wiki_pages: View wiki |
|
461 | 462 | permission_view_wiki_edits: View wiki history |
|
462 | 463 | permission_edit_wiki_pages: Edit wiki pages |
|
463 | 464 | permission_delete_wiki_pages_attachments: Delete attachments |
|
464 | 465 | permission_protect_wiki_pages: Protect wiki pages |
|
465 | 466 | permission_manage_repository: Manage repository |
|
466 | 467 | permission_browse_repository: Browse repository |
|
467 | 468 | permission_view_changesets: View changesets |
|
468 | 469 | permission_commit_access: Commit access |
|
469 | 470 | permission_manage_boards: Manage forums |
|
470 | 471 | permission_view_messages: View messages |
|
471 | 472 | permission_add_messages: Post messages |
|
472 | 473 | permission_edit_messages: Edit messages |
|
473 | 474 | permission_edit_own_messages: Edit own messages |
|
474 | 475 | permission_delete_messages: Delete messages |
|
475 | 476 | permission_delete_own_messages: Delete own messages |
|
476 | 477 | permission_export_wiki_pages: Export wiki pages |
|
477 | 478 | permission_manage_subtasks: Manage subtasks |
|
478 | 479 | permission_manage_related_issues: Manage related issues |
|
479 | 480 | |
|
480 | 481 | project_module_issue_tracking: Issue tracking |
|
481 | 482 | project_module_time_tracking: Time tracking |
|
482 | 483 | project_module_news: News |
|
483 | 484 | project_module_documents: Documents |
|
484 | 485 | project_module_files: Files |
|
485 | 486 | project_module_wiki: Wiki |
|
486 | 487 | project_module_repository: Repository |
|
487 | 488 | project_module_boards: Forums |
|
488 | 489 | project_module_calendar: Calendar |
|
489 | 490 | project_module_gantt: Gantt |
|
490 | 491 | |
|
491 | 492 | label_user: User |
|
492 | 493 | label_user_plural: Users |
|
493 | 494 | label_user_new: New user |
|
494 | 495 | label_user_anonymous: Anonymous |
|
495 | 496 | label_project: Project |
|
496 | 497 | label_project_new: New project |
|
497 | 498 | label_project_plural: Projects |
|
498 | 499 | label_x_projects: |
|
499 | 500 | zero: no projects |
|
500 | 501 | one: 1 project |
|
501 | 502 | other: "%{count} projects" |
|
502 | 503 | label_project_all: All Projects |
|
503 | 504 | label_project_latest: Latest projects |
|
504 | 505 | label_issue: Issue |
|
505 | 506 | label_issue_new: New issue |
|
506 | 507 | label_issue_plural: Issues |
|
507 | 508 | label_issue_view_all: View all issues |
|
508 | 509 | label_issues_by: "Issues by %{value}" |
|
509 | 510 | label_issue_added: Issue added |
|
510 | 511 | label_issue_updated: Issue updated |
|
511 | 512 | label_issue_note_added: Note added |
|
512 | 513 | label_issue_status_updated: Status updated |
|
513 | 514 | label_issue_assigned_to_updated: Assignee updated |
|
514 | 515 | label_issue_priority_updated: Priority updated |
|
515 | 516 | label_document: Document |
|
516 | 517 | label_document_new: New document |
|
517 | 518 | label_document_plural: Documents |
|
518 | 519 | label_document_added: Document added |
|
519 | 520 | label_role: Role |
|
520 | 521 | label_role_plural: Roles |
|
521 | 522 | label_role_new: New role |
|
522 | 523 | label_role_and_permissions: Roles and permissions |
|
523 | 524 | label_role_anonymous: Anonymous |
|
524 | 525 | label_role_non_member: Non member |
|
525 | 526 | label_member: Member |
|
526 | 527 | label_member_new: New member |
|
527 | 528 | label_member_plural: Members |
|
528 | 529 | label_tracker: Tracker |
|
529 | 530 | label_tracker_plural: Trackers |
|
530 | 531 | label_tracker_new: New tracker |
|
531 | 532 | label_workflow: Workflow |
|
532 | 533 | label_issue_status: Issue status |
|
533 | 534 | label_issue_status_plural: Issue statuses |
|
534 | 535 | label_issue_status_new: New status |
|
535 | 536 | label_issue_category: Issue category |
|
536 | 537 | label_issue_category_plural: Issue categories |
|
537 | 538 | label_issue_category_new: New category |
|
538 | 539 | label_custom_field: Custom field |
|
539 | 540 | label_custom_field_plural: Custom fields |
|
540 | 541 | label_custom_field_new: New custom field |
|
541 | 542 | label_enumerations: Enumerations |
|
542 | 543 | label_enumeration_new: New value |
|
543 | 544 | label_information: Information |
|
544 | 545 | label_information_plural: Information |
|
545 | 546 | label_please_login: Please log in |
|
546 | 547 | label_register: Register |
|
547 | 548 | label_login_with_open_id_option: or login with OpenID |
|
548 | 549 | label_password_lost: Lost password |
|
549 | 550 | label_home: Home |
|
550 | 551 | label_my_page: My page |
|
551 | 552 | label_my_account: My account |
|
552 | 553 | label_my_projects: My projects |
|
553 | 554 | label_my_page_block: My page block |
|
554 | 555 | label_administration: Administration |
|
555 | 556 | label_login: Sign in |
|
556 | 557 | label_logout: Sign out |
|
557 | 558 | label_help: Help |
|
558 | 559 | label_reported_issues: Reported issues |
|
559 | 560 | label_assigned_to_me_issues: Issues assigned to me |
|
560 | 561 | label_last_login: Last connection |
|
561 | 562 | label_registered_on: Registered on |
|
562 | 563 | label_activity: Activity |
|
563 | 564 | label_overall_activity: Overall activity |
|
564 | 565 | label_user_activity: "%{value}'s activity" |
|
565 | 566 | label_new: New |
|
566 | 567 | label_logged_as: Logged in as |
|
567 | 568 | label_environment: Environment |
|
568 | 569 | label_authentication: Authentication |
|
569 | 570 | label_auth_source: Authentication mode |
|
570 | 571 | label_auth_source_new: New authentication mode |
|
571 | 572 | label_auth_source_plural: Authentication modes |
|
572 | 573 | label_subproject_plural: Subprojects |
|
573 | 574 | label_subproject_new: New subproject |
|
574 | 575 | label_and_its_subprojects: "%{value} and its subprojects" |
|
575 | 576 | label_min_max_length: Min - Max length |
|
576 | 577 | label_list: List |
|
577 | 578 | label_date: Date |
|
578 | 579 | label_integer: Integer |
|
579 | 580 | label_float: Float |
|
580 | 581 | label_boolean: Boolean |
|
581 | 582 | label_string: Text |
|
582 | 583 | label_text: Long text |
|
583 | 584 | label_attribute: Attribute |
|
584 | 585 | label_attribute_plural: Attributes |
|
585 | 586 | label_no_data: No data to display |
|
586 | 587 | label_change_status: Change status |
|
587 | 588 | label_history: History |
|
588 | 589 | label_attachment: File |
|
589 | 590 | label_attachment_new: New file |
|
590 | 591 | label_attachment_delete: Delete file |
|
591 | 592 | label_attachment_plural: Files |
|
592 | 593 | label_file_added: File added |
|
593 | 594 | label_report: Report |
|
594 | 595 | label_report_plural: Reports |
|
595 | 596 | label_news: News |
|
596 | 597 | label_news_new: Add news |
|
597 | 598 | label_news_plural: News |
|
598 | 599 | label_news_latest: Latest news |
|
599 | 600 | label_news_view_all: View all news |
|
600 | 601 | label_news_added: News added |
|
601 | 602 | label_news_comment_added: Comment added to a news |
|
602 | 603 | label_settings: Settings |
|
603 | 604 | label_overview: Overview |
|
604 | 605 | label_version: Version |
|
605 | 606 | label_version_new: New version |
|
606 | 607 | label_version_plural: Versions |
|
607 | 608 | label_close_versions: Close completed versions |
|
608 | 609 | label_confirmation: Confirmation |
|
609 | 610 | label_export_to: 'Also available in:' |
|
610 | 611 | label_read: Read... |
|
611 | 612 | label_public_projects: Public projects |
|
612 | 613 | label_open_issues: open |
|
613 | 614 | label_open_issues_plural: open |
|
614 | 615 | label_closed_issues: closed |
|
615 | 616 | label_closed_issues_plural: closed |
|
616 | 617 | label_x_open_issues_abbr_on_total: |
|
617 | 618 | zero: 0 open / %{total} |
|
618 | 619 | one: 1 open / %{total} |
|
619 | 620 | other: "%{count} open / %{total}" |
|
620 | 621 | label_x_open_issues_abbr: |
|
621 | 622 | zero: 0 open |
|
622 | 623 | one: 1 open |
|
623 | 624 | other: "%{count} open" |
|
624 | 625 | label_x_closed_issues_abbr: |
|
625 | 626 | zero: 0 closed |
|
626 | 627 | one: 1 closed |
|
627 | 628 | other: "%{count} closed" |
|
628 | 629 | label_x_issues: |
|
629 | 630 | zero: 0 issues |
|
630 | 631 | one: 1 issue |
|
631 | 632 | other: "%{count} issues" |
|
632 | 633 | label_total: Total |
|
633 | 634 | label_total_time: Total time |
|
634 | 635 | label_permissions: Permissions |
|
635 | 636 | label_current_status: Current status |
|
636 | 637 | label_new_statuses_allowed: New statuses allowed |
|
637 | 638 | label_all: all |
|
638 | 639 | label_any: any |
|
639 | 640 | label_none: none |
|
640 | 641 | label_nobody: nobody |
|
641 | 642 | label_next: Next |
|
642 | 643 | label_previous: Previous |
|
643 | 644 | label_used_by: Used by |
|
644 | 645 | label_details: Details |
|
645 | 646 | label_add_note: Add a note |
|
646 | 647 | label_per_page: Per page |
|
647 | 648 | label_calendar: Calendar |
|
648 | 649 | label_months_from: months from |
|
649 | 650 | label_gantt: Gantt |
|
650 | 651 | label_internal: Internal |
|
651 | 652 | label_last_changes: "last %{count} changes" |
|
652 | 653 | label_change_view_all: View all changes |
|
653 | 654 | label_personalize_page: Personalize this page |
|
654 | 655 | label_comment: Comment |
|
655 | 656 | label_comment_plural: Comments |
|
656 | 657 | label_x_comments: |
|
657 | 658 | zero: no comments |
|
658 | 659 | one: 1 comment |
|
659 | 660 | other: "%{count} comments" |
|
660 | 661 | label_comment_add: Add a comment |
|
661 | 662 | label_comment_added: Comment added |
|
662 | 663 | label_comment_delete: Delete comments |
|
663 | 664 | label_query: Custom query |
|
664 | 665 | label_query_plural: Custom queries |
|
665 | 666 | label_query_new: New query |
|
666 | 667 | label_my_queries: My custom queries |
|
667 | 668 | label_filter_add: Add filter |
|
668 | 669 | label_filter_plural: Filters |
|
669 | 670 | label_equals: is |
|
670 | 671 | label_not_equals: is not |
|
671 | 672 | label_in_less_than: in less than |
|
672 | 673 | label_in_more_than: in more than |
|
673 | 674 | label_in_the_next_days: in the next |
|
674 | 675 | label_in_the_past_days: in the past |
|
675 | 676 | label_greater_or_equal: '>=' |
|
676 | 677 | label_less_or_equal: '<=' |
|
677 | 678 | label_between: between |
|
678 | 679 | label_in: in |
|
679 | 680 | label_today: today |
|
680 | 681 | label_all_time: all time |
|
681 | 682 | label_yesterday: yesterday |
|
682 | 683 | label_this_week: this week |
|
683 | 684 | label_last_week: last week |
|
684 | 685 | label_last_n_weeks: "last %{count} weeks" |
|
685 | 686 | label_last_n_days: "last %{count} days" |
|
686 | 687 | label_this_month: this month |
|
687 | 688 | label_last_month: last month |
|
688 | 689 | label_this_year: this year |
|
689 | 690 | label_date_range: Date range |
|
690 | 691 | label_less_than_ago: less than days ago |
|
691 | 692 | label_more_than_ago: more than days ago |
|
692 | 693 | label_ago: days ago |
|
693 | 694 | label_contains: contains |
|
694 | 695 | label_not_contains: doesn't contain |
|
695 | 696 | label_any_issues_in_project: any issues in project |
|
696 | 697 | label_any_issues_not_in_project: any issues not in project |
|
697 | 698 | label_no_issues_in_project: no issues in project |
|
698 | 699 | label_day_plural: days |
|
699 | 700 | label_repository: Repository |
|
700 | 701 | label_repository_new: New repository |
|
701 | 702 | label_repository_plural: Repositories |
|
702 | 703 | label_browse: Browse |
|
703 | 704 | label_branch: Branch |
|
704 | 705 | label_tag: Tag |
|
705 | 706 | label_revision: Revision |
|
706 | 707 | label_revision_plural: Revisions |
|
707 | 708 | label_revision_id: "Revision %{value}" |
|
708 | 709 | label_associated_revisions: Associated revisions |
|
709 | 710 | label_added: added |
|
710 | 711 | label_modified: modified |
|
711 | 712 | label_copied: copied |
|
712 | 713 | label_renamed: renamed |
|
713 | 714 | label_deleted: deleted |
|
714 | 715 | label_latest_revision: Latest revision |
|
715 | 716 | label_latest_revision_plural: Latest revisions |
|
716 | 717 | label_view_revisions: View revisions |
|
717 | 718 | label_view_all_revisions: View all revisions |
|
718 | 719 | label_max_size: Maximum size |
|
719 | 720 | label_sort_highest: Move to top |
|
720 | 721 | label_sort_higher: Move up |
|
721 | 722 | label_sort_lower: Move down |
|
722 | 723 | label_sort_lowest: Move to bottom |
|
723 | 724 | label_roadmap: Roadmap |
|
724 | 725 | label_roadmap_due_in: "Due in %{value}" |
|
725 | 726 | label_roadmap_overdue: "%{value} late" |
|
726 | 727 | label_roadmap_no_issues: No issues for this version |
|
727 | 728 | label_search: Search |
|
728 | 729 | label_result_plural: Results |
|
729 | 730 | label_all_words: All words |
|
730 | 731 | label_wiki: Wiki |
|
731 | 732 | label_wiki_edit: Wiki edit |
|
732 | 733 | label_wiki_edit_plural: Wiki edits |
|
733 | 734 | label_wiki_page: Wiki page |
|
734 | 735 | label_wiki_page_plural: Wiki pages |
|
735 | 736 | label_index_by_title: Index by title |
|
736 | 737 | label_index_by_date: Index by date |
|
737 | 738 | label_current_version: Current version |
|
738 | 739 | label_preview: Preview |
|
739 | 740 | label_feed_plural: Feeds |
|
740 | 741 | label_changes_details: Details of all changes |
|
741 | 742 | label_issue_tracking: Issue tracking |
|
742 | 743 | label_spent_time: Spent time |
|
743 | 744 | label_overall_spent_time: Overall spent time |
|
744 | 745 | label_f_hour: "%{value} hour" |
|
745 | 746 | label_f_hour_plural: "%{value} hours" |
|
746 | 747 | label_time_tracking: Time tracking |
|
747 | 748 | label_change_plural: Changes |
|
748 | 749 | label_statistics: Statistics |
|
749 | 750 | label_commits_per_month: Commits per month |
|
750 | 751 | label_commits_per_author: Commits per author |
|
751 | 752 | label_diff: diff |
|
752 | 753 | label_view_diff: View differences |
|
753 | 754 | label_diff_inline: inline |
|
754 | 755 | label_diff_side_by_side: side by side |
|
755 | 756 | label_options: Options |
|
756 | 757 | label_copy_workflow_from: Copy workflow from |
|
757 | 758 | label_permissions_report: Permissions report |
|
758 | 759 | label_watched_issues: Watched issues |
|
759 | 760 | label_related_issues: Related issues |
|
760 | 761 | label_applied_status: Applied status |
|
761 | 762 | label_loading: Loading... |
|
762 | 763 | label_relation_new: New relation |
|
763 | 764 | label_relation_delete: Delete relation |
|
764 | 765 | label_relates_to: Related to |
|
765 | 766 | label_duplicates: Duplicates |
|
766 | 767 | label_duplicated_by: Duplicated by |
|
767 | 768 | label_blocks: Blocks |
|
768 | 769 | label_blocked_by: Blocked by |
|
769 | 770 | label_precedes: Precedes |
|
770 | 771 | label_follows: Follows |
|
771 | 772 | label_copied_to: Copied to |
|
772 | 773 | label_copied_from: Copied from |
|
773 | 774 | label_end_to_start: end to start |
|
774 | 775 | label_end_to_end: end to end |
|
775 | 776 | label_start_to_start: start to start |
|
776 | 777 | label_start_to_end: start to end |
|
777 | 778 | label_stay_logged_in: Stay logged in |
|
778 | 779 | label_disabled: disabled |
|
779 | 780 | label_show_completed_versions: Show completed versions |
|
780 | 781 | label_me: me |
|
781 | 782 | label_board: Forum |
|
782 | 783 | label_board_new: New forum |
|
783 | 784 | label_board_plural: Forums |
|
784 | 785 | label_board_locked: Locked |
|
785 | 786 | label_board_sticky: Sticky |
|
786 | 787 | label_topic_plural: Topics |
|
787 | 788 | label_message_plural: Messages |
|
788 | 789 | label_message_last: Last message |
|
789 | 790 | label_message_new: New message |
|
790 | 791 | label_message_posted: Message added |
|
791 | 792 | label_reply_plural: Replies |
|
792 | 793 | label_send_information: Send account information to the user |
|
793 | 794 | label_year: Year |
|
794 | 795 | label_month: Month |
|
795 | 796 | label_week: Week |
|
796 | 797 | label_date_from: From |
|
797 | 798 | label_date_to: To |
|
798 | 799 | label_language_based: Based on user's language |
|
799 | 800 | label_sort_by: "Sort by %{value}" |
|
800 | 801 | label_send_test_email: Send a test email |
|
801 | 802 | label_feeds_access_key: Atom access key |
|
802 | 803 | label_missing_feeds_access_key: Missing a Atom access key |
|
803 | 804 | label_feeds_access_key_created_on: "Atom access key created %{value} ago" |
|
804 | 805 | label_module_plural: Modules |
|
805 | 806 | label_added_time_by: "Added by %{author} %{age} ago" |
|
806 | 807 | label_updated_time_by: "Updated by %{author} %{age} ago" |
|
807 | 808 | label_updated_time: "Updated %{value} ago" |
|
808 | 809 | label_jump_to_a_project: Jump to a project... |
|
809 | 810 | label_file_plural: Files |
|
810 | 811 | label_changeset_plural: Changesets |
|
811 | 812 | label_default_columns: Default columns |
|
812 | 813 | label_no_change_option: (No change) |
|
813 | 814 | label_bulk_edit_selected_issues: Bulk edit selected issues |
|
814 | 815 | label_bulk_edit_selected_time_entries: Bulk edit selected time entries |
|
815 | 816 | label_theme: Theme |
|
816 | 817 | label_default: Default |
|
817 | 818 | label_search_titles_only: Search titles only |
|
818 | 819 | label_user_mail_option_all: "For any event on all my projects" |
|
819 | 820 | label_user_mail_option_selected: "For any event on the selected projects only..." |
|
820 | 821 | label_user_mail_option_none: "No events" |
|
821 | 822 | label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in" |
|
822 | 823 | label_user_mail_option_only_assigned: "Only for things I am assigned to" |
|
823 | 824 | label_user_mail_option_only_owner: "Only for things I am the owner of" |
|
824 | 825 | label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" |
|
825 | 826 | label_registration_activation_by_email: account activation by email |
|
826 | 827 | label_registration_manual_activation: manual account activation |
|
827 | 828 | label_registration_automatic_activation: automatic account activation |
|
828 | 829 | label_display_per_page: "Per page: %{value}" |
|
829 | 830 | label_age: Age |
|
830 | 831 | label_change_properties: Change properties |
|
831 | 832 | label_general: General |
|
832 | 833 | label_more: More |
|
833 | 834 | label_scm: SCM |
|
834 | 835 | label_plugins: Plugins |
|
835 | 836 | label_ldap_authentication: LDAP authentication |
|
836 | 837 | label_downloads_abbr: D/L |
|
837 | 838 | label_optional_description: Optional description |
|
838 | 839 | label_add_another_file: Add another file |
|
839 | 840 | label_preferences: Preferences |
|
840 | 841 | label_chronological_order: In chronological order |
|
841 | 842 | label_reverse_chronological_order: In reverse chronological order |
|
842 | 843 | label_planning: Planning |
|
843 | 844 | label_incoming_emails: Incoming emails |
|
844 | 845 | label_generate_key: Generate a key |
|
845 | 846 | label_issue_watchers: Watchers |
|
846 | 847 | label_example: Example |
|
847 | 848 | label_display: Display |
|
848 | 849 | label_sort: Sort |
|
849 | 850 | label_ascending: Ascending |
|
850 | 851 | label_descending: Descending |
|
851 | 852 | label_date_from_to: From %{start} to %{end} |
|
852 | 853 | label_wiki_content_added: Wiki page added |
|
853 | 854 | label_wiki_content_updated: Wiki page updated |
|
854 | 855 | label_group: Group |
|
855 | 856 | label_group_plural: Groups |
|
856 | 857 | label_group_new: New group |
|
857 | 858 | label_group_anonymous: Anonymous users |
|
858 | 859 | label_group_non_member: Non member users |
|
859 | 860 | label_time_entry_plural: Spent time |
|
860 | 861 | label_version_sharing_none: Not shared |
|
861 | 862 | label_version_sharing_descendants: With subprojects |
|
862 | 863 | label_version_sharing_hierarchy: With project hierarchy |
|
863 | 864 | label_version_sharing_tree: With project tree |
|
864 | 865 | label_version_sharing_system: With all projects |
|
865 | 866 | label_update_issue_done_ratios: Update issue done ratios |
|
866 | 867 | label_copy_source: Source |
|
867 | 868 | label_copy_target: Target |
|
868 | 869 | label_copy_same_as_target: Same as target |
|
869 | 870 | label_display_used_statuses_only: Only display statuses that are used by this tracker |
|
870 | 871 | label_api_access_key: API access key |
|
871 | 872 | label_missing_api_access_key: Missing an API access key |
|
872 | 873 | label_api_access_key_created_on: "API access key created %{value} ago" |
|
873 | 874 | label_profile: Profile |
|
874 | 875 | label_subtask_plural: Subtasks |
|
875 | 876 | label_project_copy_notifications: Send email notifications during the project copy |
|
876 | 877 | label_principal_search: "Search for user or group:" |
|
877 | 878 | label_user_search: "Search for user:" |
|
878 | 879 | label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author |
|
879 | 880 | label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee |
|
880 | 881 | label_issues_visibility_all: All issues |
|
881 | 882 | label_issues_visibility_public: All non private issues |
|
882 | 883 | label_issues_visibility_own: Issues created by or assigned to the user |
|
883 | 884 | label_git_report_last_commit: Report last commit for files and directories |
|
884 | 885 | label_parent_revision: Parent |
|
885 | 886 | label_child_revision: Child |
|
886 | 887 | label_export_options: "%{export_format} export options" |
|
887 | 888 | label_copy_attachments: Copy attachments |
|
888 | 889 | label_copy_subtasks: Copy subtasks |
|
889 | 890 | label_item_position: "%{position} of %{count}" |
|
890 | 891 | label_completed_versions: Completed versions |
|
891 | 892 | label_search_for_watchers: Search for watchers to add |
|
892 | 893 | label_session_expiration: Session expiration |
|
893 | 894 | label_show_closed_projects: View closed projects |
|
894 | 895 | label_status_transitions: Status transitions |
|
895 | 896 | label_fields_permissions: Fields permissions |
|
896 | 897 | label_readonly: Read-only |
|
897 | 898 | label_required: Required |
|
898 | 899 | label_hidden: Hidden |
|
899 | 900 | label_attribute_of_project: "Project's %{name}" |
|
900 | 901 | label_attribute_of_issue: "Issue's %{name}" |
|
901 | 902 | label_attribute_of_author: "Author's %{name}" |
|
902 | 903 | label_attribute_of_assigned_to: "Assignee's %{name}" |
|
903 | 904 | label_attribute_of_user: "User's %{name}" |
|
904 | 905 | label_attribute_of_fixed_version: "Target version's %{name}" |
|
905 | 906 | label_cross_project_descendants: With subprojects |
|
906 | 907 | label_cross_project_tree: With project tree |
|
907 | 908 | label_cross_project_hierarchy: With project hierarchy |
|
908 | 909 | label_cross_project_system: With all projects |
|
909 | 910 | label_gantt_progress_line: Progress line |
|
910 | 911 | label_visibility_private: to me only |
|
911 | 912 | label_visibility_roles: to these roles only |
|
912 | 913 | label_visibility_public: to any users |
|
913 | 914 | label_link: Link |
|
914 | 915 | label_only: only |
|
915 | 916 | label_drop_down_list: drop-down list |
|
916 | 917 | label_checkboxes: checkboxes |
|
917 | 918 | label_radio_buttons: radio buttons |
|
918 | 919 | label_link_values_to: Link values to URL |
|
919 | 920 | label_custom_field_select_type: Select the type of object to which the custom field is to be attached |
|
920 | 921 | label_check_for_updates: Check for updates |
|
921 | 922 | label_latest_compatible_version: Latest compatible version |
|
922 | 923 | label_unknown_plugin: Unknown plugin |
|
923 | 924 | label_add_projects: Add projects |
|
924 | 925 | label_users_visibility_all: All active users |
|
925 | 926 | label_users_visibility_members_of_visible_projects: Members of visible projects |
|
926 | 927 | label_edit_attachments: Edit attached files |
|
928 | label_link_copied_issue: Link copied issue | |
|
929 | label_ask: Ask | |
|
927 | 930 | |
|
928 | 931 | button_login: Login |
|
929 | 932 | button_submit: Submit |
|
930 | 933 | button_save: Save |
|
931 | 934 | button_check_all: Check all |
|
932 | 935 | button_uncheck_all: Uncheck all |
|
933 | 936 | button_collapse_all: Collapse all |
|
934 | 937 | button_expand_all: Expand all |
|
935 | 938 | button_delete: Delete |
|
936 | 939 | button_create: Create |
|
937 | 940 | button_create_and_continue: Create and continue |
|
938 | 941 | button_test: Test |
|
939 | 942 | button_edit: Edit |
|
940 | 943 | button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" |
|
941 | 944 | button_add: Add |
|
942 | 945 | button_change: Change |
|
943 | 946 | button_apply: Apply |
|
944 | 947 | button_clear: Clear |
|
945 | 948 | button_lock: Lock |
|
946 | 949 | button_unlock: Unlock |
|
947 | 950 | button_download: Download |
|
948 | 951 | button_list: List |
|
949 | 952 | button_view: View |
|
950 | 953 | button_move: Move |
|
951 | 954 | button_move_and_follow: Move and follow |
|
952 | 955 | button_back: Back |
|
953 | 956 | button_cancel: Cancel |
|
954 | 957 | button_activate: Activate |
|
955 | 958 | button_sort: Sort |
|
956 | 959 | button_log_time: Log time |
|
957 | 960 | button_rollback: Rollback to this version |
|
958 | 961 | button_watch: Watch |
|
959 | 962 | button_unwatch: Unwatch |
|
960 | 963 | button_reply: Reply |
|
961 | 964 | button_archive: Archive |
|
962 | 965 | button_unarchive: Unarchive |
|
963 | 966 | button_reset: Reset |
|
964 | 967 | button_rename: Rename |
|
965 | 968 | button_change_password: Change password |
|
966 | 969 | button_copy: Copy |
|
967 | 970 | button_copy_and_follow: Copy and follow |
|
968 | 971 | button_annotate: Annotate |
|
969 | 972 | button_update: Update |
|
970 | 973 | button_configure: Configure |
|
971 | 974 | button_quote: Quote |
|
972 | 975 | button_duplicate: Duplicate |
|
973 | 976 | button_show: Show |
|
974 | 977 | button_hide: Hide |
|
975 | 978 | button_edit_section: Edit this section |
|
976 | 979 | button_export: Export |
|
977 | 980 | button_delete_my_account: Delete my account |
|
978 | 981 | button_close: Close |
|
979 | 982 | button_reopen: Reopen |
|
980 | 983 | |
|
981 | 984 | status_active: active |
|
982 | 985 | status_registered: registered |
|
983 | 986 | status_locked: locked |
|
984 | 987 | |
|
985 | 988 | project_status_active: active |
|
986 | 989 | project_status_closed: closed |
|
987 | 990 | project_status_archived: archived |
|
988 | 991 | |
|
989 | 992 | version_status_open: open |
|
990 | 993 | version_status_locked: locked |
|
991 | 994 | version_status_closed: closed |
|
992 | 995 | |
|
993 | 996 | field_active: Active |
|
994 | 997 | |
|
995 | 998 | text_select_mail_notifications: Select actions for which email notifications should be sent. |
|
996 | 999 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
997 | 1000 | text_min_max_length_info: 0 means no restriction |
|
998 | 1001 | text_project_destroy_confirmation: Are you sure you want to delete this project and related data? |
|
999 | 1002 | text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted." |
|
1000 | 1003 | text_workflow_edit: Select a role and a tracker to edit the workflow |
|
1001 | 1004 | text_are_you_sure: Are you sure? |
|
1002 | 1005 | text_journal_changed: "%{label} changed from %{old} to %{new}" |
|
1003 | 1006 | text_journal_changed_no_detail: "%{label} updated" |
|
1004 | 1007 | text_journal_set_to: "%{label} set to %{value}" |
|
1005 | 1008 | text_journal_deleted: "%{label} deleted (%{old})" |
|
1006 | 1009 | text_journal_added: "%{label} %{value} added" |
|
1007 | 1010 | text_tip_issue_begin_day: issue beginning this day |
|
1008 | 1011 | text_tip_issue_end_day: issue ending this day |
|
1009 | 1012 | text_tip_issue_begin_end_day: issue beginning and ending this day |
|
1010 | 1013 | text_project_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter.<br />Once saved, the identifier cannot be changed.' |
|
1011 | 1014 | text_caracters_maximum: "%{count} characters maximum." |
|
1012 | 1015 | text_caracters_minimum: "Must be at least %{count} characters long." |
|
1013 | 1016 | text_length_between: "Length between %{min} and %{max} characters." |
|
1014 | 1017 | text_tracker_no_workflow: No workflow defined for this tracker |
|
1015 | 1018 | text_unallowed_characters: Unallowed characters |
|
1016 | 1019 | text_comma_separated: Multiple values allowed (comma separated). |
|
1017 | 1020 | text_line_separated: Multiple values allowed (one line for each value). |
|
1018 | 1021 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
1019 | 1022 | text_issue_added: "Issue %{id} has been reported by %{author}." |
|
1020 | 1023 | text_issue_updated: "Issue %{id} has been updated by %{author}." |
|
1021 | 1024 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content? |
|
1022 | 1025 | text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?" |
|
1023 | 1026 | text_issue_category_destroy_assignments: Remove category assignments |
|
1024 | 1027 | text_issue_category_reassign_to: Reassign issues to this category |
|
1025 | 1028 | 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)." |
|
1026 | 1029 | 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." |
|
1027 | 1030 | text_load_default_configuration: Load the default configuration |
|
1028 | 1031 | text_status_changed_by_changeset: "Applied in changeset %{value}." |
|
1029 | 1032 | text_time_logged_by_changeset: "Applied in changeset %{value}." |
|
1030 | 1033 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?' |
|
1031 | 1034 | text_issues_destroy_descendants_confirmation: "This will also delete %{count} subtask(s)." |
|
1032 | 1035 | text_time_entries_destroy_confirmation: 'Are you sure you want to delete the selected time entr(y/ies)?' |
|
1033 | 1036 | text_select_project_modules: 'Select modules to enable for this project:' |
|
1034 | 1037 | text_default_administrator_account_changed: Default administrator account changed |
|
1035 | 1038 | text_file_repository_writable: Attachments directory writable |
|
1036 | 1039 | text_plugin_assets_writable: Plugin assets directory writable |
|
1037 | 1040 | text_rmagick_available: RMagick available (optional) |
|
1038 | 1041 | text_convert_available: ImageMagick convert available (optional) |
|
1039 | 1042 | text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?" |
|
1040 | 1043 | text_destroy_time_entries: Delete reported hours |
|
1041 | 1044 | text_assign_time_entries_to_project: Assign reported hours to the project |
|
1042 | 1045 | text_reassign_time_entries: 'Reassign reported hours to this issue:' |
|
1043 | 1046 | text_user_wrote: "%{value} wrote:" |
|
1044 | 1047 | text_enumeration_destroy_question: "%{count} objects are assigned to this value." |
|
1045 | 1048 | text_enumeration_category_reassign_to: 'Reassign them to this value:' |
|
1046 | 1049 | text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/configuration.yml and restart the application to enable them." |
|
1047 | 1050 | text_repository_usernames_mapping: "Select or update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." |
|
1048 | 1051 | text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' |
|
1049 | 1052 | text_custom_field_possible_values_info: 'One line for each value' |
|
1050 | 1053 | text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" |
|
1051 | 1054 | text_wiki_page_nullify_children: "Keep child pages as root pages" |
|
1052 | 1055 | text_wiki_page_destroy_children: "Delete child pages and all their descendants" |
|
1053 | 1056 | text_wiki_page_reassign_children: "Reassign child pages to this parent page" |
|
1054 | 1057 | text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?" |
|
1055 | 1058 | text_zoom_in: Zoom in |
|
1056 | 1059 | text_zoom_out: Zoom out |
|
1057 | 1060 | text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page." |
|
1058 | 1061 | text_scm_path_encoding_note: "Default: UTF-8" |
|
1059 | 1062 | text_subversion_repository_note: "Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://" |
|
1060 | 1063 | text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) |
|
1061 | 1064 | text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) |
|
1062 | 1065 | text_scm_command: Command |
|
1063 | 1066 | text_scm_command_version: Version |
|
1064 | 1067 | text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. |
|
1065 | 1068 | text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. |
|
1066 | 1069 | text_issue_conflict_resolution_overwrite: "Apply my changes anyway (previous notes will be kept but some changes may be overwritten)" |
|
1067 | 1070 | text_issue_conflict_resolution_add_notes: "Add my notes and discard my other changes" |
|
1068 | 1071 | text_issue_conflict_resolution_cancel: "Discard all my changes and redisplay %{link}" |
|
1069 | 1072 | text_account_destroy_confirmation: "Are you sure you want to proceed?\nYour account will be permanently deleted, with no way to reactivate it." |
|
1070 | 1073 | text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." |
|
1071 | 1074 | text_project_closed: This project is closed and read-only. |
|
1072 | 1075 | text_turning_multiple_off: "If you disable multiple values, multiple values will be removed in order to preserve only one value per item." |
|
1073 | 1076 | |
|
1074 | 1077 | default_role_manager: Manager |
|
1075 | 1078 | default_role_developer: Developer |
|
1076 | 1079 | default_role_reporter: Reporter |
|
1077 | 1080 | default_tracker_bug: Bug |
|
1078 | 1081 | default_tracker_feature: Feature |
|
1079 | 1082 | default_tracker_support: Support |
|
1080 | 1083 | default_issue_status_new: New |
|
1081 | 1084 | default_issue_status_in_progress: In Progress |
|
1082 | 1085 | default_issue_status_resolved: Resolved |
|
1083 | 1086 | default_issue_status_feedback: Feedback |
|
1084 | 1087 | default_issue_status_closed: Closed |
|
1085 | 1088 | default_issue_status_rejected: Rejected |
|
1086 | 1089 | default_doc_category_user: User documentation |
|
1087 | 1090 | default_doc_category_tech: Technical documentation |
|
1088 | 1091 | default_priority_low: Low |
|
1089 | 1092 | default_priority_normal: Normal |
|
1090 | 1093 | default_priority_high: High |
|
1091 | 1094 | default_priority_urgent: Urgent |
|
1092 | 1095 | default_priority_immediate: Immediate |
|
1093 | 1096 | default_activity_design: Design |
|
1094 | 1097 | default_activity_development: Development |
|
1095 | 1098 | |
|
1096 | 1099 | enumeration_issue_priorities: Issue priorities |
|
1097 | 1100 | enumeration_doc_categories: Document categories |
|
1098 | 1101 | enumeration_activities: Activities (time tracking) |
|
1099 | 1102 | enumeration_system_activity: System Activity |
|
1100 | 1103 | description_filter: Filter |
|
1101 | 1104 | description_search: Searchfield |
|
1102 | 1105 | description_choose_project: Projects |
|
1103 | 1106 | description_project_scope: Search scope |
|
1104 | 1107 | description_notes: Notes |
|
1105 | 1108 | description_message_content: Message content |
|
1106 | 1109 | description_query_sort_criteria_attribute: Sort attribute |
|
1107 | 1110 | description_query_sort_criteria_direction: Sort direction |
|
1108 | 1111 | description_user_mail_notification: Mail notification settings |
|
1109 | 1112 | description_available_columns: Available Columns |
|
1110 | 1113 | description_selected_columns: Selected Columns |
|
1111 | 1114 | description_all_columns: All Columns |
|
1112 | 1115 | description_issue_category_reassign: Choose issue category |
|
1113 | 1116 | description_wiki_subpages_reassign: Choose new parent page |
|
1114 | 1117 | description_date_range_list: Choose range from list |
|
1115 | 1118 | description_date_range_interval: Choose range by selecting start and end date |
|
1116 | 1119 | description_date_from: Enter start date |
|
1117 | 1120 | description_date_to: Enter end date |
|
1118 | 1121 | text_repository_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.' |
@@ -1,1138 +1,1141 | |||
|
1 | 1 | # French translations for Ruby on Rails |
|
2 | 2 | # by Christian Lescuyer (christian@flyingcoders.com) |
|
3 | 3 | # contributor: Sebastien Grosjean - ZenCocoon.com |
|
4 | 4 | # contributor: Thibaut Cuvelier - Developpez.com |
|
5 | 5 | |
|
6 | 6 | fr: |
|
7 | 7 | direction: ltr |
|
8 | 8 | date: |
|
9 | 9 | formats: |
|
10 | 10 | default: "%d/%m/%Y" |
|
11 | 11 | short: "%e %b" |
|
12 | 12 | long: "%e %B %Y" |
|
13 | 13 | long_ordinal: "%e %B %Y" |
|
14 | 14 | only_day: "%e" |
|
15 | 15 | |
|
16 | 16 | day_names: [dimanche, lundi, mardi, mercredi, jeudi, vendredi, samedi] |
|
17 | 17 | abbr_day_names: [dim, lun, mar, mer, jeu, ven, sam] |
|
18 | 18 | |
|
19 | 19 | # Don't forget the nil at the beginning; there's no such thing as a 0th month |
|
20 | 20 | month_names: [~, janvier, février, mars, avril, mai, juin, juillet, août, septembre, octobre, novembre, décembre] |
|
21 | 21 | abbr_month_names: [~, jan., fév., mar., avr., mai, juin, juil., août, sept., oct., nov., déc.] |
|
22 | 22 | # Used in date_select and datime_select. |
|
23 | 23 | order: |
|
24 | 24 | - :day |
|
25 | 25 | - :month |
|
26 | 26 | - :year |
|
27 | 27 | |
|
28 | 28 | time: |
|
29 | 29 | formats: |
|
30 | 30 | default: "%d/%m/%Y %H:%M" |
|
31 | 31 | time: "%H:%M" |
|
32 | 32 | short: "%d %b %H:%M" |
|
33 | 33 | long: "%A %d %B %Y %H:%M:%S %Z" |
|
34 | 34 | long_ordinal: "%A %d %B %Y %H:%M:%S %Z" |
|
35 | 35 | only_second: "%S" |
|
36 | 36 | am: 'am' |
|
37 | 37 | pm: 'pm' |
|
38 | 38 | |
|
39 | 39 | datetime: |
|
40 | 40 | distance_in_words: |
|
41 | 41 | half_a_minute: "30 secondes" |
|
42 | 42 | less_than_x_seconds: |
|
43 | 43 | zero: "moins d'une seconde" |
|
44 | 44 | one: "moins d'une seconde" |
|
45 | 45 | other: "moins de %{count} secondes" |
|
46 | 46 | x_seconds: |
|
47 | 47 | one: "1 seconde" |
|
48 | 48 | other: "%{count} secondes" |
|
49 | 49 | less_than_x_minutes: |
|
50 | 50 | zero: "moins d'une minute" |
|
51 | 51 | one: "moins d'une minute" |
|
52 | 52 | other: "moins de %{count} minutes" |
|
53 | 53 | x_minutes: |
|
54 | 54 | one: "1 minute" |
|
55 | 55 | other: "%{count} minutes" |
|
56 | 56 | about_x_hours: |
|
57 | 57 | one: "environ une heure" |
|
58 | 58 | other: "environ %{count} heures" |
|
59 | 59 | x_hours: |
|
60 | 60 | one: "une heure" |
|
61 | 61 | other: "%{count} heures" |
|
62 | 62 | x_days: |
|
63 | 63 | one: "un jour" |
|
64 | 64 | other: "%{count} jours" |
|
65 | 65 | about_x_months: |
|
66 | 66 | one: "environ un mois" |
|
67 | 67 | other: "environ %{count} mois" |
|
68 | 68 | x_months: |
|
69 | 69 | one: "un mois" |
|
70 | 70 | other: "%{count} mois" |
|
71 | 71 | about_x_years: |
|
72 | 72 | one: "environ un an" |
|
73 | 73 | other: "environ %{count} ans" |
|
74 | 74 | over_x_years: |
|
75 | 75 | one: "plus d'un an" |
|
76 | 76 | other: "plus de %{count} ans" |
|
77 | 77 | almost_x_years: |
|
78 | 78 | one: "presqu'un an" |
|
79 | 79 | other: "presque %{count} ans" |
|
80 | 80 | prompts: |
|
81 | 81 | year: "Année" |
|
82 | 82 | month: "Mois" |
|
83 | 83 | day: "Jour" |
|
84 | 84 | hour: "Heure" |
|
85 | 85 | minute: "Minute" |
|
86 | 86 | second: "Seconde" |
|
87 | 87 | |
|
88 | 88 | number: |
|
89 | 89 | format: |
|
90 | 90 | precision: 3 |
|
91 | 91 | separator: ',' |
|
92 | 92 | delimiter: ' ' |
|
93 | 93 | currency: |
|
94 | 94 | format: |
|
95 | 95 | unit: '€' |
|
96 | 96 | precision: 2 |
|
97 | 97 | format: '%n %u' |
|
98 | 98 | human: |
|
99 | 99 | format: |
|
100 | 100 | precision: 3 |
|
101 | 101 | storage_units: |
|
102 | 102 | format: "%n %u" |
|
103 | 103 | units: |
|
104 | 104 | byte: |
|
105 | 105 | one: "octet" |
|
106 | 106 | other: "octets" |
|
107 | 107 | kb: "ko" |
|
108 | 108 | mb: "Mo" |
|
109 | 109 | gb: "Go" |
|
110 | 110 | tb: "To" |
|
111 | 111 | |
|
112 | 112 | support: |
|
113 | 113 | array: |
|
114 | 114 | sentence_connector: 'et' |
|
115 | 115 | skip_last_comma: true |
|
116 | 116 | word_connector: ", " |
|
117 | 117 | two_words_connector: " et " |
|
118 | 118 | last_word_connector: " et " |
|
119 | 119 | |
|
120 | 120 | activerecord: |
|
121 | 121 | errors: |
|
122 | 122 | template: |
|
123 | 123 | header: |
|
124 | 124 | one: "Impossible d'enregistrer %{model} : une erreur" |
|
125 | 125 | other: "Impossible d'enregistrer %{model} : %{count} erreurs." |
|
126 | 126 | body: "Veuillez vérifier les champs suivants :" |
|
127 | 127 | messages: |
|
128 | 128 | inclusion: "n'est pas inclus(e) dans la liste" |
|
129 | 129 | exclusion: "n'est pas disponible" |
|
130 | 130 | invalid: "n'est pas valide" |
|
131 | 131 | confirmation: "ne concorde pas avec la confirmation" |
|
132 | 132 | accepted: "doit être accepté(e)" |
|
133 | 133 | empty: "doit être renseigné(e)" |
|
134 | 134 | blank: "doit être renseigné(e)" |
|
135 | 135 | too_long: "est trop long (pas plus de %{count} caractères)" |
|
136 | 136 | too_short: "est trop court (au moins %{count} caractères)" |
|
137 | 137 | wrong_length: "ne fait pas la bonne longueur (doit comporter %{count} caractères)" |
|
138 | 138 | taken: "est déjà utilisé" |
|
139 | 139 | not_a_number: "n'est pas un nombre" |
|
140 | 140 | not_a_date: "n'est pas une date valide" |
|
141 | 141 | greater_than: "doit être supérieur à %{count}" |
|
142 | 142 | greater_than_or_equal_to: "doit être supérieur ou égal à %{count}" |
|
143 | 143 | equal_to: "doit être égal à %{count}" |
|
144 | 144 | less_than: "doit être inférieur à %{count}" |
|
145 | 145 | less_than_or_equal_to: "doit être inférieur ou égal à %{count}" |
|
146 | 146 | odd: "doit être impair" |
|
147 | 147 | even: "doit être pair" |
|
148 | 148 | greater_than_start_date: "doit être postérieure à la date de début" |
|
149 | 149 | not_same_project: "n'appartient pas au même projet" |
|
150 | 150 | circular_dependency: "Cette relation créerait une dépendance circulaire" |
|
151 | 151 | cant_link_an_issue_with_a_descendant: "Une demande ne peut pas être liée à l'une de ses sous-tâches" |
|
152 | 152 | earlier_than_minimum_start_date: "ne peut pas être antérieure au %{date} à cause des demandes qui précèdent" |
|
153 | 153 | |
|
154 | 154 | actionview_instancetag_blank_option: Choisir |
|
155 | 155 | |
|
156 | 156 | general_text_No: 'Non' |
|
157 | 157 | general_text_Yes: 'Oui' |
|
158 | 158 | general_text_no: 'non' |
|
159 | 159 | general_text_yes: 'oui' |
|
160 | 160 | general_lang_name: 'Français' |
|
161 | 161 | general_csv_separator: ';' |
|
162 | 162 | general_csv_decimal_separator: ',' |
|
163 | 163 | general_csv_encoding: ISO-8859-1 |
|
164 | 164 | general_pdf_fontname: freesans |
|
165 | 165 | general_first_day_of_week: '1' |
|
166 | 166 | |
|
167 | 167 | notice_account_updated: Le compte a été mis à jour avec succès. |
|
168 | 168 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. |
|
169 | 169 | notice_account_password_updated: Mot de passe mis à jour avec succès. |
|
170 | 170 | notice_account_wrong_password: Mot de passe incorrect |
|
171 | 171 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé à l'adresse %{email}. |
|
172 | 172 | notice_account_unknown_email: Aucun compte ne correspond à cette adresse. |
|
173 | 173 | notice_account_not_activated_yet: Vous n'avez pas encore activé votre compte. Si vous voulez recevoir un nouveau message d'activation, veuillez <a href="%{url}">cliquer sur ce lien</a>. |
|
174 | 174 | notice_account_locked: Votre compte est verrouillé. |
|
175 | 175 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. |
|
176 | 176 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé. |
|
177 | 177 | notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter. |
|
178 | 178 | notice_successful_create: Création effectuée avec succès. |
|
179 | 179 | notice_successful_update: Mise à jour effectuée avec succès. |
|
180 | 180 | notice_successful_delete: Suppression effectuée avec succès. |
|
181 | 181 | notice_successful_connection: Connexion réussie. |
|
182 | 182 | notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée." |
|
183 | 183 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. |
|
184 | 184 | notice_not_authorized: "Vous n'êtes pas autorisé à accéder à cette page." |
|
185 | 185 | notice_not_authorized_archived_project: Le projet auquel vous tentez d'accéder a été archivé. |
|
186 | 186 | notice_email_sent: "Un email a été envoyé à %{value}" |
|
187 | 187 | notice_email_error: "Erreur lors de l'envoi de l'email (%{value})" |
|
188 | 188 | notice_feeds_access_key_reseted: "Votre clé d'accès aux flux Atom a été réinitialisée." |
|
189 | 189 | notice_api_access_key_reseted: Votre clé d'accès API a été réinitialisée. |
|
190 | 190 | notice_failed_to_save_issues: "%{count} demande(s) sur les %{total} sélectionnées n'ont pas pu être mise(s) à jour : %{ids}." |
|
191 | 191 | notice_failed_to_save_time_entries: "%{count} temps passé(s) sur les %{total} sélectionnés n'ont pas pu être mis à jour: %{ids}." |
|
192 | 192 | notice_failed_to_save_members: "Erreur lors de la sauvegarde des membres: %{errors}." |
|
193 | 193 | notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour." |
|
194 | 194 | notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur." |
|
195 | 195 | notice_default_data_loaded: Paramétrage par défaut chargé avec succès. |
|
196 | 196 | notice_unable_delete_version: Impossible de supprimer cette version. |
|
197 | 197 | notice_unable_delete_time_entry: Impossible de supprimer le temps passé. |
|
198 | 198 | notice_issue_done_ratios_updated: L'avancement des demandes a été mis à jour. |
|
199 | 199 | notice_gantt_chart_truncated: "Le diagramme a été tronqué car il excède le nombre maximal d'éléments pouvant être affichés (%{max})" |
|
200 | 200 | notice_issue_successful_create: "Demande %{id} créée." |
|
201 | 201 | notice_issue_update_conflict: "La demande a été mise à jour par un autre utilisateur pendant que vous la modifiez." |
|
202 | 202 | notice_account_deleted: "Votre compte a été définitivement supprimé." |
|
203 | 203 | notice_user_successful_create: "Utilisateur %{id} créé." |
|
204 | 204 | notice_new_password_must_be_different: Votre nouveau mot de passe doit être différent de votre mot de passe actuel |
|
205 | 205 | |
|
206 | 206 | error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage : %{value}" |
|
207 | 207 | error_scm_not_found: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt." |
|
208 | 208 | error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt : %{value}" |
|
209 | 209 | error_scm_annotate: "L'entrée n'existe pas ou ne peut pas être annotée." |
|
210 | 210 | error_scm_annotate_big_text_file: Cette entrée ne peut pas être annotée car elle excède la taille maximale. |
|
211 | 211 | error_issue_not_found_in_project: "La demande n'existe pas ou n'appartient pas à ce projet" |
|
212 | 212 | error_no_tracker_in_project: "Aucun tracker n'est associé à ce projet. Vérifier la configuration du projet." |
|
213 | 213 | error_no_default_issue_status: "Aucun statut de demande n'est défini par défaut. Vérifier votre configuration (Administration -> Statuts de demandes)." |
|
214 | 214 | error_can_not_delete_custom_field: Impossible de supprimer le champ personnalisé |
|
215 | 215 | error_can_not_delete_tracker: Ce tracker contient des demandes et ne peut pas être supprimé. |
|
216 | 216 | error_can_not_remove_role: Ce rôle est utilisé et ne peut pas être supprimé. |
|
217 | 217 | error_can_not_reopen_issue_on_closed_version: 'Une demande assignée à une version fermée ne peut pas être réouverte' |
|
218 | 218 | error_can_not_archive_project: "Ce projet ne peut pas être archivé" |
|
219 | 219 | error_issue_done_ratios_not_updated: L'avancement des demandes n'a pas pu être mis à jour. |
|
220 | 220 | error_workflow_copy_source: 'Veuillez sélectionner un tracker et/ou un rôle source' |
|
221 | 221 | error_workflow_copy_target: 'Veuillez sélectionner les trackers et rôles cibles' |
|
222 | 222 | error_unable_delete_issue_status: Impossible de supprimer le statut de demande |
|
223 | 223 | error_unable_to_connect: Connexion impossible (%{value}) |
|
224 | 224 | error_attachment_too_big: Ce fichier ne peut pas être attaché car il excède la taille maximale autorisée (%{max_size}) |
|
225 | 225 | error_session_expired: "Votre session a expiré. Veuillez vous reconnecter." |
|
226 | 226 | warning_attachments_not_saved: "%{count} fichier(s) n'ont pas pu être sauvegardés." |
|
227 | 227 | |
|
228 | 228 | mail_subject_lost_password: "Votre mot de passe %{value}" |
|
229 | 229 | mail_body_lost_password: 'Pour changer votre mot de passe, cliquez sur le lien suivant :' |
|
230 | 230 | mail_subject_register: "Activation de votre compte %{value}" |
|
231 | 231 | mail_body_register: 'Pour activer votre compte, cliquez sur le lien suivant :' |
|
232 | 232 | mail_body_account_information_external: "Vous pouvez utiliser votre compte %{value} pour vous connecter." |
|
233 | 233 | mail_body_account_information: Paramètres de connexion de votre compte |
|
234 | 234 | mail_subject_account_activation_request: "Demande d'activation d'un compte %{value}" |
|
235 | 235 | mail_body_account_activation_request: "Un nouvel utilisateur (%{value}) s'est inscrit. Son compte nécessite votre approbation :" |
|
236 | 236 | mail_subject_reminder: "%{count} demande(s) arrivent à échéance (%{days})" |
|
237 | 237 | mail_body_reminder: "%{count} demande(s) qui vous sont assignées arrivent à échéance dans les %{days} prochains jours :" |
|
238 | 238 | mail_subject_wiki_content_added: "Page wiki '%{id}' ajoutée" |
|
239 | 239 | mail_body_wiki_content_added: "La page wiki '%{id}' a été ajoutée par %{author}." |
|
240 | 240 | mail_subject_wiki_content_updated: "Page wiki '%{id}' mise à jour" |
|
241 | 241 | mail_body_wiki_content_updated: "La page wiki '%{id}' a été mise à jour par %{author}." |
|
242 | 242 | |
|
243 | 243 | field_name: Nom |
|
244 | 244 | field_description: Description |
|
245 | 245 | field_summary: Résumé |
|
246 | 246 | field_is_required: Obligatoire |
|
247 | 247 | field_firstname: Prénom |
|
248 | 248 | field_lastname: Nom |
|
249 | 249 | field_mail: Email |
|
250 | 250 | field_filename: Fichier |
|
251 | 251 | field_filesize: Taille |
|
252 | 252 | field_downloads: Téléchargements |
|
253 | 253 | field_author: Auteur |
|
254 | 254 | field_created_on: Créé |
|
255 | 255 | field_updated_on: Mis-à-jour |
|
256 | 256 | field_closed_on: Fermé |
|
257 | 257 | field_field_format: Format |
|
258 | 258 | field_is_for_all: Pour tous les projets |
|
259 | 259 | field_possible_values: Valeurs possibles |
|
260 | 260 | field_regexp: Expression régulière |
|
261 | 261 | field_min_length: Longueur minimum |
|
262 | 262 | field_max_length: Longueur maximum |
|
263 | 263 | field_value: Valeur |
|
264 | 264 | field_category: Catégorie |
|
265 | 265 | field_title: Titre |
|
266 | 266 | field_project: Projet |
|
267 | 267 | field_issue: Demande |
|
268 | 268 | field_status: Statut |
|
269 | 269 | field_notes: Notes |
|
270 | 270 | field_is_closed: Demande fermée |
|
271 | 271 | field_is_default: Valeur par défaut |
|
272 | 272 | field_tracker: Tracker |
|
273 | 273 | field_subject: Sujet |
|
274 | 274 | field_due_date: Echéance |
|
275 | 275 | field_assigned_to: Assigné à |
|
276 | 276 | field_priority: Priorité |
|
277 | 277 | field_fixed_version: Version cible |
|
278 | 278 | field_user: Utilisateur |
|
279 | 279 | field_principal: Principal |
|
280 | 280 | field_role: Rôle |
|
281 | 281 | field_homepage: Site web |
|
282 | 282 | field_is_public: Public |
|
283 | 283 | field_parent: Sous-projet de |
|
284 | 284 | field_is_in_roadmap: Demandes affichées dans la roadmap |
|
285 | 285 | field_login: Identifiant |
|
286 | 286 | field_mail_notification: Notifications par mail |
|
287 | 287 | field_admin: Administrateur |
|
288 | 288 | field_last_login_on: Dernière connexion |
|
289 | 289 | field_language: Langue |
|
290 | 290 | field_effective_date: Date |
|
291 | 291 | field_password: Mot de passe |
|
292 | 292 | field_new_password: Nouveau mot de passe |
|
293 | 293 | field_password_confirmation: Confirmation |
|
294 | 294 | field_version: Version |
|
295 | 295 | field_type: Type |
|
296 | 296 | field_host: Hôte |
|
297 | 297 | field_port: Port |
|
298 | 298 | field_account: Compte |
|
299 | 299 | field_base_dn: Base DN |
|
300 | 300 | field_attr_login: Attribut Identifiant |
|
301 | 301 | field_attr_firstname: Attribut Prénom |
|
302 | 302 | field_attr_lastname: Attribut Nom |
|
303 | 303 | field_attr_mail: Attribut Email |
|
304 | 304 | field_onthefly: Création des utilisateurs à la volée |
|
305 | 305 | field_start_date: Début |
|
306 | 306 | field_done_ratio: "% réalisé" |
|
307 | 307 | field_auth_source: Mode d'authentification |
|
308 | 308 | field_hide_mail: Cacher mon adresse mail |
|
309 | 309 | field_comments: Commentaire |
|
310 | 310 | field_url: URL |
|
311 | 311 | field_start_page: Page de démarrage |
|
312 | 312 | field_subproject: Sous-projet |
|
313 | 313 | field_hours: Heures |
|
314 | 314 | field_activity: Activité |
|
315 | 315 | field_spent_on: Date |
|
316 | 316 | field_identifier: Identifiant |
|
317 | 317 | field_is_filter: Utilisé comme filtre |
|
318 | 318 | field_issue_to: Demande liée |
|
319 | 319 | field_delay: Retard |
|
320 | 320 | field_assignable: Demandes assignables à ce rôle |
|
321 | 321 | field_redirect_existing_links: Rediriger les liens existants |
|
322 | 322 | field_estimated_hours: Temps estimé |
|
323 | 323 | field_column_names: Colonnes |
|
324 | 324 | field_time_entries: Temps passé |
|
325 | 325 | field_time_zone: Fuseau horaire |
|
326 | 326 | field_searchable: Utilisé pour les recherches |
|
327 | 327 | field_default_value: Valeur par défaut |
|
328 | 328 | field_comments_sorting: Afficher les commentaires |
|
329 | 329 | field_parent_title: Page parent |
|
330 | 330 | field_editable: Modifiable |
|
331 | 331 | field_watcher: Observateur |
|
332 | 332 | field_identity_url: URL OpenID |
|
333 | 333 | field_content: Contenu |
|
334 | 334 | field_group_by: Grouper par |
|
335 | 335 | field_sharing: Partage |
|
336 | 336 | field_parent_issue: Tâche parente |
|
337 | 337 | field_member_of_group: Groupe de l'assigné |
|
338 | 338 | field_assigned_to_role: Rôle de l'assigné |
|
339 | 339 | field_text: Champ texte |
|
340 | 340 | field_visible: Visible |
|
341 | 341 | field_warn_on_leaving_unsaved: "M'avertir lorsque je quitte une page contenant du texte non sauvegardé" |
|
342 | 342 | field_issues_visibility: Visibilité des demandes |
|
343 | 343 | field_is_private: Privée |
|
344 | 344 | field_commit_logs_encoding: Encodage des messages de commit |
|
345 | 345 | field_scm_path_encoding: Encodage des chemins |
|
346 | 346 | field_path_to_repository: Chemin du dépôt |
|
347 | 347 | field_root_directory: Répertoire racine |
|
348 | 348 | field_cvsroot: CVSROOT |
|
349 | 349 | field_cvs_module: Module |
|
350 | 350 | field_repository_is_default: Dépôt principal |
|
351 | 351 | field_multiple: Valeurs multiples |
|
352 | 352 | field_auth_source_ldap_filter: Filtre LDAP |
|
353 | 353 | field_core_fields: Champs standards |
|
354 | 354 | field_timeout: "Timeout (en secondes)" |
|
355 | 355 | field_board_parent: Forum parent |
|
356 | 356 | field_private_notes: Notes privées |
|
357 | 357 | field_inherit_members: Hériter les membres |
|
358 | 358 | field_generate_password: Générer un mot de passe |
|
359 | 359 | field_must_change_passwd: Doit changer de mot de passe à la prochaine connexion |
|
360 | 360 | field_default_status: Statut par défaut |
|
361 | 361 | field_users_visibility: Visibilité des utilisateurs |
|
362 | 362 | |
|
363 | 363 | setting_app_title: Titre de l'application |
|
364 | 364 | setting_app_subtitle: Sous-titre de l'application |
|
365 | 365 | setting_welcome_text: Texte d'accueil |
|
366 | 366 | setting_default_language: Langue par défaut |
|
367 | 367 | setting_login_required: Authentification obligatoire |
|
368 | 368 | setting_self_registration: Inscription des nouveaux utilisateurs |
|
369 | 369 | setting_attachment_max_size: Taille maximale des fichiers |
|
370 | 370 | setting_issues_export_limit: Limite d'exportation des demandes |
|
371 | 371 | setting_mail_from: Adresse d'émission |
|
372 | 372 | setting_bcc_recipients: Destinataires en copie cachée (cci) |
|
373 | 373 | setting_plain_text_mail: Mail en texte brut (non HTML) |
|
374 | 374 | setting_host_name: Nom d'hôte et chemin |
|
375 | 375 | setting_text_formatting: Formatage du texte |
|
376 | 376 | setting_wiki_compression: Compression de l'historique des pages wiki |
|
377 | 377 | setting_feeds_limit: Nombre maximal d'éléments dans les flux Atom |
|
378 | 378 | setting_default_projects_public: Définir les nouveaux projets comme publics par défaut |
|
379 | 379 | setting_autofetch_changesets: Récupération automatique des commits |
|
380 | 380 | setting_sys_api_enabled: Activer les WS pour la gestion des dépôts |
|
381 | 381 | setting_commit_ref_keywords: Mots-clés de référencement |
|
382 | 382 | setting_commit_fix_keywords: Mots-clés de résolution |
|
383 | 383 | setting_autologin: Durée maximale de connexion automatique |
|
384 | 384 | setting_date_format: Format de date |
|
385 | 385 | setting_time_format: Format d'heure |
|
386 | 386 | setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets |
|
387 | 387 | setting_cross_project_subtasks: Autoriser les sous-tâches dans des projets différents |
|
388 | 388 | setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes |
|
389 | 389 | setting_repositories_encodings: Encodages des fichiers et des dépôts |
|
390 | 390 | setting_emails_header: En-tête des emails |
|
391 | 391 | setting_emails_footer: Pied-de-page des emails |
|
392 | 392 | setting_protocol: Protocole |
|
393 | 393 | setting_per_page_options: Options d'objets affichés par page |
|
394 | 394 | setting_user_format: Format d'affichage des utilisateurs |
|
395 | 395 | setting_activity_days_default: Nombre de jours affichés sur l'activité des projets |
|
396 | 396 | setting_display_subprojects_issues: Afficher par défaut les demandes des sous-projets sur les projets principaux |
|
397 | 397 | setting_enabled_scm: SCM activés |
|
398 | 398 | setting_mail_handler_body_delimiters: "Tronquer les emails après l'une de ces lignes" |
|
399 | 399 | setting_mail_handler_api_enabled: "Activer le WS pour la réception d'emails" |
|
400 | 400 | setting_mail_handler_api_key: Clé de protection de l'API |
|
401 | 401 | setting_sequential_project_identifiers: Générer des identifiants de projet séquentiels |
|
402 | 402 | setting_gravatar_enabled: Afficher les Gravatar des utilisateurs |
|
403 | 403 | setting_gravatar_default: Image Gravatar par défaut |
|
404 | 404 | setting_diff_max_lines_displayed: Nombre maximum de lignes de diff affichées |
|
405 | 405 | setting_file_max_size_displayed: Taille maximum des fichiers texte affichés en ligne |
|
406 | 406 | setting_repository_log_display_limit: "Nombre maximum de révisions affichées sur l'historique d'un fichier" |
|
407 | 407 | setting_openid: "Autoriser l'authentification et l'enregistrement OpenID" |
|
408 | 408 | setting_password_min_length: Longueur minimum des mots de passe |
|
409 | 409 | setting_new_project_user_role_id: Rôle donné à un utilisateur non-administrateur qui crée un projet |
|
410 | 410 | setting_default_projects_modules: Modules activés par défaut pour les nouveaux projets |
|
411 | 411 | setting_issue_done_ratio: Calcul de l'avancement des demandes |
|
412 | 412 | setting_issue_done_ratio_issue_field: 'Utiliser le champ % effectué' |
|
413 | 413 | setting_issue_done_ratio_issue_status: Utiliser le statut |
|
414 | 414 | setting_start_of_week: Jour de début des calendriers |
|
415 | 415 | setting_rest_api_enabled: Activer l'API REST |
|
416 | 416 | setting_cache_formatted_text: Mettre en cache le texte formaté |
|
417 | 417 | setting_default_notification_option: Option de notification par défaut |
|
418 | 418 | setting_commit_logtime_enabled: Permettre la saisie de temps |
|
419 | 419 | setting_commit_logtime_activity_id: Activité pour le temps saisi |
|
420 | 420 | setting_gantt_items_limit: Nombre maximum d'éléments affichés sur le gantt |
|
421 | 421 | setting_issue_group_assignment: Permettre l'assignement des demandes aux groupes |
|
422 | 422 | setting_default_issue_start_date_to_creation_date: Donner à la date de début d'une nouvelle demande la valeur de la date du jour |
|
423 | 423 | setting_commit_cross_project_ref: Permettre le référencement et la résolution des demandes de tous les autres projets |
|
424 | 424 | setting_unsubscribe: Permettre aux utilisateurs de supprimer leur propre compte |
|
425 | 425 | setting_session_lifetime: Durée de vie maximale des sessions |
|
426 | 426 | setting_session_timeout: Durée maximale d'inactivité |
|
427 | 427 | setting_thumbnails_enabled: Afficher les vignettes des images |
|
428 | 428 | setting_thumbnails_size: Taille des vignettes (en pixels) |
|
429 | 429 | setting_non_working_week_days: Jours non travaillés |
|
430 | 430 | setting_jsonp_enabled: Activer le support JSONP |
|
431 | 431 | setting_default_projects_tracker_ids: Trackers par défaut pour les nouveaux projets |
|
432 | 432 | setting_mail_handler_excluded_filenames: Exclure les fichiers attachés par leur nom |
|
433 | 433 | setting_force_default_language_for_anonymous: Forcer la langue par défault pour les utilisateurs anonymes |
|
434 | 434 | setting_force_default_language_for_loggedin: Forcer la langue par défault pour les utilisateurs identifiés |
|
435 | setting_link_copied_issue: Lier les demandes lors de la copie | |
|
435 | 436 | |
|
436 | 437 | permission_add_project: Créer un projet |
|
437 | 438 | permission_add_subprojects: Créer des sous-projets |
|
438 | 439 | permission_edit_project: Modifier le projet |
|
439 | 440 | permission_close_project: Fermer / réouvrir le projet |
|
440 | 441 | permission_select_project_modules: Choisir les modules |
|
441 | 442 | permission_manage_members: Gérer les membres |
|
442 | 443 | permission_manage_project_activities: Gérer les activités |
|
443 | 444 | permission_manage_versions: Gérer les versions |
|
444 | 445 | permission_manage_categories: Gérer les catégories de demandes |
|
445 | 446 | permission_view_issues: Voir les demandes |
|
446 | 447 | permission_add_issues: Créer des demandes |
|
447 | 448 | permission_edit_issues: Modifier les demandes |
|
448 | 449 | permission_manage_issue_relations: Gérer les relations |
|
449 | 450 | permission_set_issues_private: Rendre les demandes publiques ou privées |
|
450 | 451 | permission_set_own_issues_private: Rendre ses propres demandes publiques ou privées |
|
451 | 452 | permission_add_issue_notes: Ajouter des notes |
|
452 | 453 | permission_edit_issue_notes: Modifier les notes |
|
453 | 454 | permission_edit_own_issue_notes: Modifier ses propres notes |
|
454 | 455 | permission_view_private_notes: Voir les notes privées |
|
455 | 456 | permission_set_notes_private: Rendre les notes privées |
|
456 | 457 | permission_move_issues: Déplacer les demandes |
|
457 | 458 | permission_delete_issues: Supprimer les demandes |
|
458 | 459 | permission_manage_public_queries: Gérer les requêtes publiques |
|
459 | 460 | permission_save_queries: Sauvegarder les requêtes |
|
460 | 461 | permission_view_gantt: Voir le gantt |
|
461 | 462 | permission_view_calendar: Voir le calendrier |
|
462 | 463 | permission_view_issue_watchers: Voir la liste des observateurs |
|
463 | 464 | permission_add_issue_watchers: Ajouter des observateurs |
|
464 | 465 | permission_delete_issue_watchers: Supprimer des observateurs |
|
465 | 466 | permission_log_time: Saisir le temps passé |
|
466 | 467 | permission_view_time_entries: Voir le temps passé |
|
467 | 468 | permission_edit_time_entries: Modifier les temps passés |
|
468 | 469 | permission_edit_own_time_entries: Modifier son propre temps passé |
|
469 | 470 | permission_manage_news: Gérer les annonces |
|
470 | 471 | permission_comment_news: Commenter les annonces |
|
471 | 472 | permission_view_documents: Voir les documents |
|
472 | 473 | permission_add_documents: Ajouter des documents |
|
473 | 474 | permission_edit_documents: Modifier les documents |
|
474 | 475 | permission_delete_documents: Supprimer les documents |
|
475 | 476 | permission_manage_files: Gérer les fichiers |
|
476 | 477 | permission_view_files: Voir les fichiers |
|
477 | 478 | permission_manage_wiki: Gérer le wiki |
|
478 | 479 | permission_rename_wiki_pages: Renommer les pages |
|
479 | 480 | permission_delete_wiki_pages: Supprimer les pages |
|
480 | 481 | permission_view_wiki_pages: Voir le wiki |
|
481 | 482 | permission_view_wiki_edits: "Voir l'historique des modifications" |
|
482 | 483 | permission_edit_wiki_pages: Modifier les pages |
|
483 | 484 | permission_delete_wiki_pages_attachments: Supprimer les fichiers joints |
|
484 | 485 | permission_protect_wiki_pages: Protéger les pages |
|
485 | 486 | permission_manage_repository: Gérer le dépôt de sources |
|
486 | 487 | permission_browse_repository: Parcourir les sources |
|
487 | 488 | permission_view_changesets: Voir les révisions |
|
488 | 489 | permission_commit_access: Droit de commit |
|
489 | 490 | permission_manage_boards: Gérer les forums |
|
490 | 491 | permission_view_messages: Voir les messages |
|
491 | 492 | permission_add_messages: Poster un message |
|
492 | 493 | permission_edit_messages: Modifier les messages |
|
493 | 494 | permission_edit_own_messages: Modifier ses propres messages |
|
494 | 495 | permission_delete_messages: Supprimer les messages |
|
495 | 496 | permission_delete_own_messages: Supprimer ses propres messages |
|
496 | 497 | permission_export_wiki_pages: Exporter les pages |
|
497 | 498 | permission_manage_subtasks: Gérer les sous-tâches |
|
498 | 499 | permission_manage_related_issues: Gérer les demandes associées |
|
499 | 500 | |
|
500 | 501 | project_module_issue_tracking: Suivi des demandes |
|
501 | 502 | project_module_time_tracking: Suivi du temps passé |
|
502 | 503 | project_module_news: Publication d'annonces |
|
503 | 504 | project_module_documents: Publication de documents |
|
504 | 505 | project_module_files: Publication de fichiers |
|
505 | 506 | project_module_wiki: Wiki |
|
506 | 507 | project_module_repository: Dépôt de sources |
|
507 | 508 | project_module_boards: Forums de discussion |
|
508 | 509 | project_module_calendar: Calendrier |
|
509 | 510 | project_module_gantt: Gantt |
|
510 | 511 | |
|
511 | 512 | label_user: Utilisateur |
|
512 | 513 | label_user_plural: Utilisateurs |
|
513 | 514 | label_user_new: Nouvel utilisateur |
|
514 | 515 | label_user_anonymous: Anonyme |
|
515 | 516 | label_project: Projet |
|
516 | 517 | label_project_new: Nouveau projet |
|
517 | 518 | label_project_plural: Projets |
|
518 | 519 | label_x_projects: |
|
519 | 520 | zero: aucun projet |
|
520 | 521 | one: un projet |
|
521 | 522 | other: "%{count} projets" |
|
522 | 523 | label_project_all: Tous les projets |
|
523 | 524 | label_project_latest: Derniers projets |
|
524 | 525 | label_issue: Demande |
|
525 | 526 | label_issue_new: Nouvelle demande |
|
526 | 527 | label_issue_plural: Demandes |
|
527 | 528 | label_issue_view_all: Voir toutes les demandes |
|
528 | 529 | label_issues_by: "Demandes par %{value}" |
|
529 | 530 | label_issue_added: Demande ajoutée |
|
530 | 531 | label_issue_updated: Demande mise à jour |
|
531 | 532 | label_issue_note_added: Note ajoutée |
|
532 | 533 | label_issue_status_updated: Statut changé |
|
533 | 534 | label_issue_assigned_to_updated: Assigné changé |
|
534 | 535 | label_issue_priority_updated: Priorité changée |
|
535 | 536 | label_document: Document |
|
536 | 537 | label_document_new: Nouveau document |
|
537 | 538 | label_document_plural: Documents |
|
538 | 539 | label_document_added: Document ajouté |
|
539 | 540 | label_role: Rôle |
|
540 | 541 | label_role_plural: Rôles |
|
541 | 542 | label_role_new: Nouveau rôle |
|
542 | 543 | label_role_and_permissions: Rôles et permissions |
|
543 | 544 | label_role_anonymous: Anonyme |
|
544 | 545 | label_role_non_member: Non membre |
|
545 | 546 | label_member: Membre |
|
546 | 547 | label_member_new: Nouveau membre |
|
547 | 548 | label_member_plural: Membres |
|
548 | 549 | label_tracker: Tracker |
|
549 | 550 | label_tracker_plural: Trackers |
|
550 | 551 | label_tracker_new: Nouveau tracker |
|
551 | 552 | label_workflow: Workflow |
|
552 | 553 | label_issue_status: Statut de demandes |
|
553 | 554 | label_issue_status_plural: Statuts de demandes |
|
554 | 555 | label_issue_status_new: Nouveau statut |
|
555 | 556 | label_issue_category: Catégorie de demandes |
|
556 | 557 | label_issue_category_plural: Catégories de demandes |
|
557 | 558 | label_issue_category_new: Nouvelle catégorie |
|
558 | 559 | label_custom_field: Champ personnalisé |
|
559 | 560 | label_custom_field_plural: Champs personnalisés |
|
560 | 561 | label_custom_field_new: Nouveau champ personnalisé |
|
561 | 562 | label_enumerations: Listes de valeurs |
|
562 | 563 | label_enumeration_new: Nouvelle valeur |
|
563 | 564 | label_information: Information |
|
564 | 565 | label_information_plural: Informations |
|
565 | 566 | label_please_login: Identification |
|
566 | 567 | label_register: S'enregistrer |
|
567 | 568 | label_login_with_open_id_option: S'authentifier avec OpenID |
|
568 | 569 | label_password_lost: Mot de passe perdu |
|
569 | 570 | label_home: Accueil |
|
570 | 571 | label_my_page: Ma page |
|
571 | 572 | label_my_account: Mon compte |
|
572 | 573 | label_my_projects: Mes projets |
|
573 | 574 | label_my_page_block: Blocs disponibles |
|
574 | 575 | label_administration: Administration |
|
575 | 576 | label_login: Connexion |
|
576 | 577 | label_logout: Déconnexion |
|
577 | 578 | label_help: Aide |
|
578 | 579 | label_reported_issues: Demandes soumises |
|
579 | 580 | label_assigned_to_me_issues: Demandes qui me sont assignées |
|
580 | 581 | label_last_login: Dernière connexion |
|
581 | 582 | label_registered_on: Inscrit le |
|
582 | 583 | label_activity: Activité |
|
583 | 584 | label_overall_activity: Activité globale |
|
584 | 585 | label_user_activity: "Activité de %{value}" |
|
585 | 586 | label_new: Nouveau |
|
586 | 587 | label_logged_as: Connecté en tant que |
|
587 | 588 | label_environment: Environnement |
|
588 | 589 | label_authentication: Authentification |
|
589 | 590 | label_auth_source: Mode d'authentification |
|
590 | 591 | label_auth_source_new: Nouveau mode d'authentification |
|
591 | 592 | label_auth_source_plural: Modes d'authentification |
|
592 | 593 | label_subproject_plural: Sous-projets |
|
593 | 594 | label_subproject_new: Nouveau sous-projet |
|
594 | 595 | label_and_its_subprojects: "%{value} et ses sous-projets" |
|
595 | 596 | label_min_max_length: Longueurs mini - maxi |
|
596 | 597 | label_list: Liste |
|
597 | 598 | label_date: Date |
|
598 | 599 | label_integer: Entier |
|
599 | 600 | label_float: Nombre décimal |
|
600 | 601 | label_boolean: Booléen |
|
601 | 602 | label_string: Texte |
|
602 | 603 | label_text: Texte long |
|
603 | 604 | label_attribute: Attribut |
|
604 | 605 | label_attribute_plural: Attributs |
|
605 | 606 | label_no_data: Aucune donnée à afficher |
|
606 | 607 | label_change_status: Changer le statut |
|
607 | 608 | label_history: Historique |
|
608 | 609 | label_attachment: Fichier |
|
609 | 610 | label_attachment_new: Nouveau fichier |
|
610 | 611 | label_attachment_delete: Supprimer le fichier |
|
611 | 612 | label_attachment_plural: Fichiers |
|
612 | 613 | label_file_added: Fichier ajouté |
|
613 | 614 | label_report: Rapport |
|
614 | 615 | label_report_plural: Rapports |
|
615 | 616 | label_news: Annonce |
|
616 | 617 | label_news_new: Nouvelle annonce |
|
617 | 618 | label_news_plural: Annonces |
|
618 | 619 | label_news_latest: Dernières annonces |
|
619 | 620 | label_news_view_all: Voir toutes les annonces |
|
620 | 621 | label_news_added: Annonce ajoutée |
|
621 | 622 | label_news_comment_added: Commentaire ajouté à une annonce |
|
622 | 623 | label_settings: Configuration |
|
623 | 624 | label_overview: Aperçu |
|
624 | 625 | label_version: Version |
|
625 | 626 | label_version_new: Nouvelle version |
|
626 | 627 | label_version_plural: Versions |
|
627 | 628 | label_close_versions: Fermer les versions terminées |
|
628 | 629 | label_confirmation: Confirmation |
|
629 | 630 | label_export_to: 'Formats disponibles :' |
|
630 | 631 | label_read: Lire... |
|
631 | 632 | label_public_projects: Projets publics |
|
632 | 633 | label_open_issues: ouvert |
|
633 | 634 | label_open_issues_plural: ouverts |
|
634 | 635 | label_closed_issues: fermé |
|
635 | 636 | label_closed_issues_plural: fermés |
|
636 | 637 | label_x_open_issues_abbr_on_total: |
|
637 | 638 | zero: 0 ouverte sur %{total} |
|
638 | 639 | one: 1 ouverte sur %{total} |
|
639 | 640 | other: "%{count} ouvertes sur %{total}" |
|
640 | 641 | label_x_open_issues_abbr: |
|
641 | 642 | zero: 0 ouverte |
|
642 | 643 | one: 1 ouverte |
|
643 | 644 | other: "%{count} ouvertes" |
|
644 | 645 | label_x_closed_issues_abbr: |
|
645 | 646 | zero: 0 fermée |
|
646 | 647 | one: 1 fermée |
|
647 | 648 | other: "%{count} fermées" |
|
648 | 649 | label_x_issues: |
|
649 | 650 | zero: 0 demande |
|
650 | 651 | one: 1 demande |
|
651 | 652 | other: "%{count} demandes" |
|
652 | 653 | label_total: Total |
|
653 | 654 | label_total_time: Temps total |
|
654 | 655 | label_permissions: Permissions |
|
655 | 656 | label_current_status: Statut actuel |
|
656 | 657 | label_new_statuses_allowed: Nouveaux statuts autorisés |
|
657 | 658 | label_all: tous |
|
658 | 659 | label_any: tous |
|
659 | 660 | label_none: aucun |
|
660 | 661 | label_nobody: personne |
|
661 | 662 | label_next: Suivant |
|
662 | 663 | label_previous: Précédent |
|
663 | 664 | label_used_by: Utilisé par |
|
664 | 665 | label_details: Détails |
|
665 | 666 | label_add_note: Ajouter une note |
|
666 | 667 | label_per_page: Par page |
|
667 | 668 | label_calendar: Calendrier |
|
668 | 669 | label_months_from: mois depuis |
|
669 | 670 | label_gantt: Gantt |
|
670 | 671 | label_internal: Interne |
|
671 | 672 | label_last_changes: "%{count} derniers changements" |
|
672 | 673 | label_change_view_all: Voir tous les changements |
|
673 | 674 | label_personalize_page: Personnaliser cette page |
|
674 | 675 | label_comment: Commentaire |
|
675 | 676 | label_comment_plural: Commentaires |
|
676 | 677 | label_x_comments: |
|
677 | 678 | zero: aucun commentaire |
|
678 | 679 | one: un commentaire |
|
679 | 680 | other: "%{count} commentaires" |
|
680 | 681 | label_comment_add: Ajouter un commentaire |
|
681 | 682 | label_comment_added: Commentaire ajouté |
|
682 | 683 | label_comment_delete: Supprimer les commentaires |
|
683 | 684 | label_query: Rapport personnalisé |
|
684 | 685 | label_query_plural: Rapports personnalisés |
|
685 | 686 | label_query_new: Nouveau rapport |
|
686 | 687 | label_my_queries: Mes rapports personnalisés |
|
687 | 688 | label_filter_add: Ajouter le filtre |
|
688 | 689 | label_filter_plural: Filtres |
|
689 | 690 | label_equals: égal |
|
690 | 691 | label_not_equals: différent |
|
691 | 692 | label_in_less_than: dans moins de |
|
692 | 693 | label_in_more_than: dans plus de |
|
693 | 694 | label_in_the_next_days: dans les prochains jours |
|
694 | 695 | label_in_the_past_days: dans les derniers jours |
|
695 | 696 | label_greater_or_equal: '>=' |
|
696 | 697 | label_less_or_equal: '<=' |
|
697 | 698 | label_between: entre |
|
698 | 699 | label_in: dans |
|
699 | 700 | label_today: aujourd'hui |
|
700 | 701 | label_all_time: toute la période |
|
701 | 702 | label_yesterday: hier |
|
702 | 703 | label_this_week: cette semaine |
|
703 | 704 | label_last_week: la semaine dernière |
|
704 | 705 | label_last_n_weeks: "les %{count} dernières semaines" |
|
705 | 706 | label_last_n_days: "les %{count} derniers jours" |
|
706 | 707 | label_this_month: ce mois-ci |
|
707 | 708 | label_last_month: le mois dernier |
|
708 | 709 | label_this_year: cette année |
|
709 | 710 | label_date_range: Période |
|
710 | 711 | label_less_than_ago: il y a moins de |
|
711 | 712 | label_more_than_ago: il y a plus de |
|
712 | 713 | label_ago: il y a |
|
713 | 714 | label_contains: contient |
|
714 | 715 | label_not_contains: ne contient pas |
|
715 | 716 | label_any_issues_in_project: une demande du projet |
|
716 | 717 | label_any_issues_not_in_project: une demande hors du projet |
|
717 | 718 | label_no_issues_in_project: aucune demande du projet |
|
718 | 719 | label_day_plural: jours |
|
719 | 720 | label_repository: Dépôt |
|
720 | 721 | label_repository_new: Nouveau dépôt |
|
721 | 722 | label_repository_plural: Dépôts |
|
722 | 723 | label_browse: Parcourir |
|
723 | 724 | label_branch: Branche |
|
724 | 725 | label_tag: Tag |
|
725 | 726 | label_revision: Révision |
|
726 | 727 | label_revision_plural: Révisions |
|
727 | 728 | label_revision_id: "Révision %{value}" |
|
728 | 729 | label_associated_revisions: Révisions associées |
|
729 | 730 | label_added: ajouté |
|
730 | 731 | label_modified: modifié |
|
731 | 732 | label_copied: copié |
|
732 | 733 | label_renamed: renommé |
|
733 | 734 | label_deleted: supprimé |
|
734 | 735 | label_latest_revision: Dernière révision |
|
735 | 736 | label_latest_revision_plural: Dernières révisions |
|
736 | 737 | label_view_revisions: Voir les révisions |
|
737 | 738 | label_view_all_revisions: Voir toutes les révisions |
|
738 | 739 | label_max_size: Taille maximale |
|
739 | 740 | label_sort_highest: Remonter en premier |
|
740 | 741 | label_sort_higher: Remonter |
|
741 | 742 | label_sort_lower: Descendre |
|
742 | 743 | label_sort_lowest: Descendre en dernier |
|
743 | 744 | label_roadmap: Roadmap |
|
744 | 745 | label_roadmap_due_in: "Échéance dans %{value}" |
|
745 | 746 | label_roadmap_overdue: "En retard de %{value}" |
|
746 | 747 | label_roadmap_no_issues: Aucune demande pour cette version |
|
747 | 748 | label_search: Recherche |
|
748 | 749 | label_result_plural: Résultats |
|
749 | 750 | label_all_words: Tous les mots |
|
750 | 751 | label_wiki: Wiki |
|
751 | 752 | label_wiki_edit: Révision wiki |
|
752 | 753 | label_wiki_edit_plural: Révisions wiki |
|
753 | 754 | label_wiki_page: Page wiki |
|
754 | 755 | label_wiki_page_plural: Pages wiki |
|
755 | 756 | label_index_by_title: Index par titre |
|
756 | 757 | label_index_by_date: Index par date |
|
757 | 758 | label_current_version: Version actuelle |
|
758 | 759 | label_preview: Prévisualisation |
|
759 | 760 | label_feed_plural: Flux Atom |
|
760 | 761 | label_changes_details: Détails de tous les changements |
|
761 | 762 | label_issue_tracking: Suivi des demandes |
|
762 | 763 | label_spent_time: Temps passé |
|
763 | 764 | label_overall_spent_time: Temps passé global |
|
764 | 765 | label_f_hour: "%{value} heure" |
|
765 | 766 | label_f_hour_plural: "%{value} heures" |
|
766 | 767 | label_time_tracking: Suivi du temps |
|
767 | 768 | label_change_plural: Changements |
|
768 | 769 | label_statistics: Statistiques |
|
769 | 770 | label_commits_per_month: Commits par mois |
|
770 | 771 | label_commits_per_author: Commits par auteur |
|
771 | 772 | label_diff: diff |
|
772 | 773 | label_view_diff: Voir les différences |
|
773 | 774 | label_diff_inline: en ligne |
|
774 | 775 | label_diff_side_by_side: côte à côte |
|
775 | 776 | label_options: Options |
|
776 | 777 | label_copy_workflow_from: Copier le workflow de |
|
777 | 778 | label_permissions_report: Synthèse des permissions |
|
778 | 779 | label_watched_issues: Demandes surveillées |
|
779 | 780 | label_related_issues: Demandes liées |
|
780 | 781 | label_applied_status: Statut appliqué |
|
781 | 782 | label_loading: Chargement... |
|
782 | 783 | label_relation_new: Nouvelle relation |
|
783 | 784 | label_relation_delete: Supprimer la relation |
|
784 | 785 | label_relates_to: Lié à |
|
785 | 786 | label_duplicates: Duplique |
|
786 | 787 | label_duplicated_by: Dupliqué par |
|
787 | 788 | label_blocks: Bloque |
|
788 | 789 | label_blocked_by: Bloqué par |
|
789 | 790 | label_precedes: Précède |
|
790 | 791 | label_follows: Suit |
|
791 | 792 | label_copied_to: Copié vers |
|
792 | 793 | label_copied_from: Copié depuis |
|
793 | 794 | label_end_to_start: fin à début |
|
794 | 795 | label_end_to_end: fin à fin |
|
795 | 796 | label_start_to_start: début à début |
|
796 | 797 | label_start_to_end: début à fin |
|
797 | 798 | label_stay_logged_in: Rester connecté |
|
798 | 799 | label_disabled: désactivé |
|
799 | 800 | label_show_completed_versions: Voir les versions passées |
|
800 | 801 | label_me: moi |
|
801 | 802 | label_board: Forum |
|
802 | 803 | label_board_new: Nouveau forum |
|
803 | 804 | label_board_plural: Forums |
|
804 | 805 | label_board_locked: Verrouillé |
|
805 | 806 | label_board_sticky: Sticky |
|
806 | 807 | label_topic_plural: Discussions |
|
807 | 808 | label_message_plural: Messages |
|
808 | 809 | label_message_last: Dernier message |
|
809 | 810 | label_message_new: Nouveau message |
|
810 | 811 | label_message_posted: Message ajouté |
|
811 | 812 | label_reply_plural: Réponses |
|
812 | 813 | label_send_information: Envoyer les informations à l'utilisateur |
|
813 | 814 | label_year: Année |
|
814 | 815 | label_month: Mois |
|
815 | 816 | label_week: Semaine |
|
816 | 817 | label_date_from: Du |
|
817 | 818 | label_date_to: Au |
|
818 | 819 | label_language_based: Basé sur la langue de l'utilisateur |
|
819 | 820 | label_sort_by: "Trier par %{value}" |
|
820 | 821 | label_send_test_email: Envoyer un email de test |
|
821 | 822 | label_feeds_access_key: Clé d'accès Atom |
|
822 | 823 | label_missing_feeds_access_key: Clé d'accès Atom manquante |
|
823 | 824 | label_feeds_access_key_created_on: "Clé d'accès Atom créée il y a %{value}" |
|
824 | 825 | label_module_plural: Modules |
|
825 | 826 | label_added_time_by: "Ajouté par %{author} il y a %{age}" |
|
826 | 827 | label_updated_time_by: "Mis à jour par %{author} il y a %{age}" |
|
827 | 828 | label_updated_time: "Mis à jour il y a %{value}" |
|
828 | 829 | label_jump_to_a_project: Aller à un projet... |
|
829 | 830 | label_file_plural: Fichiers |
|
830 | 831 | label_changeset_plural: Révisions |
|
831 | 832 | label_default_columns: Colonnes par défaut |
|
832 | 833 | label_no_change_option: (Pas de changement) |
|
833 | 834 | label_bulk_edit_selected_issues: Modifier les demandes sélectionnées |
|
834 | 835 | label_bulk_edit_selected_time_entries: Modifier les temps passés sélectionnés |
|
835 | 836 | label_theme: Thème |
|
836 | 837 | label_default: Défaut |
|
837 | 838 | label_search_titles_only: Uniquement dans les titres |
|
838 | 839 | label_user_mail_option_all: "Pour tous les événements de tous mes projets" |
|
839 | 840 | label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..." |
|
840 | 841 | label_user_mail_option_none: Aucune notification |
|
841 | 842 | label_user_mail_option_only_my_events: Seulement pour ce que je surveille |
|
842 | 843 | label_user_mail_option_only_assigned: Seulement pour ce qui m'est assigné |
|
843 | 844 | label_user_mail_option_only_owner: Seulement pour ce que j'ai créé |
|
844 | 845 | label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements que j'effectue" |
|
845 | 846 | label_registration_activation_by_email: activation du compte par email |
|
846 | 847 | label_registration_manual_activation: activation manuelle du compte |
|
847 | 848 | label_registration_automatic_activation: activation automatique du compte |
|
848 | 849 | label_display_per_page: "Par page : %{value}" |
|
849 | 850 | label_age: Âge |
|
850 | 851 | label_change_properties: Changer les propriétés |
|
851 | 852 | label_general: Général |
|
852 | 853 | label_more: Plus |
|
853 | 854 | label_scm: SCM |
|
854 | 855 | label_plugins: Plugins |
|
855 | 856 | label_ldap_authentication: Authentification LDAP |
|
856 | 857 | label_downloads_abbr: D/L |
|
857 | 858 | label_optional_description: Description facultative |
|
858 | 859 | label_add_another_file: Ajouter un autre fichier |
|
859 | 860 | label_preferences: Préférences |
|
860 | 861 | label_chronological_order: Dans l'ordre chronologique |
|
861 | 862 | label_reverse_chronological_order: Dans l'ordre chronologique inverse |
|
862 | 863 | label_planning: Planning |
|
863 | 864 | label_incoming_emails: Emails entrants |
|
864 | 865 | label_generate_key: Générer une clé |
|
865 | 866 | label_issue_watchers: Observateurs |
|
866 | 867 | label_example: Exemple |
|
867 | 868 | label_display: Affichage |
|
868 | 869 | label_sort: Tri |
|
869 | 870 | label_ascending: Croissant |
|
870 | 871 | label_descending: Décroissant |
|
871 | 872 | label_date_from_to: Du %{start} au %{end} |
|
872 | 873 | label_wiki_content_added: Page wiki ajoutée |
|
873 | 874 | label_wiki_content_updated: Page wiki mise à jour |
|
874 | 875 | label_group: Groupe |
|
875 | 876 | label_group_plural: Groupes |
|
876 | 877 | label_group_new: Nouveau groupe |
|
877 | 878 | label_group_anonymous: Utilisateurs anonymes |
|
878 | 879 | label_group_non_member: Utilisateurs non membres |
|
879 | 880 | label_time_entry_plural: Temps passé |
|
880 | 881 | label_version_sharing_none: Non partagé |
|
881 | 882 | label_version_sharing_descendants: Avec les sous-projets |
|
882 | 883 | label_version_sharing_hierarchy: Avec toute la hiérarchie |
|
883 | 884 | label_version_sharing_tree: Avec tout l'arbre |
|
884 | 885 | label_version_sharing_system: Avec tous les projets |
|
885 | 886 | label_update_issue_done_ratios: Mettre à jour l'avancement des demandes |
|
886 | 887 | label_copy_source: Source |
|
887 | 888 | label_copy_target: Cible |
|
888 | 889 | label_copy_same_as_target: Comme la cible |
|
889 | 890 | label_display_used_statuses_only: N'afficher que les statuts utilisés dans ce tracker |
|
890 | 891 | label_api_access_key: Clé d'accès API |
|
891 | 892 | label_missing_api_access_key: Clé d'accès API manquante |
|
892 | 893 | label_api_access_key_created_on: Clé d'accès API créée il y a %{value} |
|
893 | 894 | label_profile: Profil |
|
894 | 895 | label_subtask_plural: Sous-tâches |
|
895 | 896 | label_project_copy_notifications: Envoyer les notifications durant la copie du projet |
|
896 | 897 | label_principal_search: "Rechercher un utilisateur ou un groupe :" |
|
897 | 898 | label_user_search: "Rechercher un utilisateur :" |
|
898 | 899 | label_additional_workflow_transitions_for_author: Autorisations supplémentaires lorsque l'utilisateur a créé la demande |
|
899 | 900 | label_additional_workflow_transitions_for_assignee: Autorisations supplémentaires lorsque la demande est assignée à l'utilisateur |
|
900 | 901 | label_issues_visibility_all: Toutes les demandes |
|
901 | 902 | label_issues_visibility_public: Toutes les demandes non privées |
|
902 | 903 | label_issues_visibility_own: Demandes créées par ou assignées à l'utilisateur |
|
903 | 904 | label_git_report_last_commit: Afficher le dernier commit des fichiers et répertoires |
|
904 | 905 | label_parent_revision: Parent |
|
905 | 906 | label_child_revision: Enfant |
|
906 | 907 | label_export_options: Options d'exportation %{export_format} |
|
907 | 908 | label_copy_attachments: Copier les fichiers |
|
908 | 909 | label_copy_subtasks: Copier les sous-tâches |
|
909 | 910 | label_item_position: "%{position} sur %{count}" |
|
910 | 911 | label_completed_versions: Versions passées |
|
911 | 912 | label_search_for_watchers: Rechercher des observateurs |
|
912 | 913 | label_session_expiration: Expiration des sessions |
|
913 | 914 | label_show_closed_projects: Voir les projets fermés |
|
914 | 915 | label_status_transitions: Changements de statut |
|
915 | 916 | label_fields_permissions: Permissions sur les champs |
|
916 | 917 | label_readonly: Lecture |
|
917 | 918 | label_required: Obligatoire |
|
918 | 919 | label_hidden: Caché |
|
919 | 920 | label_attribute_of_project: "%{name} du projet" |
|
920 | 921 | label_attribute_of_issue: "%{name} de la demande" |
|
921 | 922 | label_attribute_of_author: "%{name} de l'auteur" |
|
922 | 923 | label_attribute_of_assigned_to: "%{name} de l'assigné" |
|
923 | 924 | label_attribute_of_user: "%{name} de l'utilisateur" |
|
924 | 925 | label_attribute_of_fixed_version: "%{name} de la version cible" |
|
925 | 926 | label_cross_project_descendants: Avec les sous-projets |
|
926 | 927 | label_cross_project_tree: Avec tout l'arbre |
|
927 | 928 | label_cross_project_hierarchy: Avec toute la hiérarchie |
|
928 | 929 | label_cross_project_system: Avec tous les projets |
|
929 | 930 | label_gantt_progress_line: Ligne de progression |
|
930 | 931 | label_visibility_private: par moi uniquement |
|
931 | 932 | label_visibility_roles: par ces rôles uniquement |
|
932 | 933 | label_visibility_public: par tout le monde |
|
933 | 934 | label_link: Lien |
|
934 | 935 | label_only: seulement |
|
935 | 936 | label_drop_down_list: liste déroulante |
|
936 | 937 | label_checkboxes: cases à cocher |
|
937 | 938 | label_radio_buttons: boutons radio |
|
938 | 939 | label_link_values_to: Lier les valeurs vers l'URL |
|
939 | 940 | label_custom_field_select_type: Selectionner le type d'objet auquel attacher le champ personnalisé |
|
940 | 941 | label_check_for_updates: Vérifier les mises à jour |
|
941 | 942 | label_latest_compatible_version: Dernière version compatible |
|
942 | 943 | label_unknown_plugin: Plugin inconnu |
|
943 | 944 | label_add_projects: Ajouter des projets |
|
944 | 945 | label_users_visibility_all: Tous les utilisateurs actifs |
|
945 | 946 | label_users_visibility_members_of_visible_projects: Membres des projets visibles |
|
946 | 947 | label_edit_attachments: Modifier les fichiers attachés |
|
948 | label_link_copied_issue: Lier la demande copiée | |
|
949 | label_ask: Demander | |
|
947 | 950 | |
|
948 | 951 | button_login: Connexion |
|
949 | 952 | button_submit: Soumettre |
|
950 | 953 | button_save: Sauvegarder |
|
951 | 954 | button_check_all: Tout cocher |
|
952 | 955 | button_uncheck_all: Tout décocher |
|
953 | 956 | button_collapse_all: Plier tout |
|
954 | 957 | button_expand_all: Déplier tout |
|
955 | 958 | button_delete: Supprimer |
|
956 | 959 | button_create: Créer |
|
957 | 960 | button_create_and_continue: Créer et continuer |
|
958 | 961 | button_test: Tester |
|
959 | 962 | button_edit: Modifier |
|
960 | 963 | button_edit_associated_wikipage: "Modifier la page wiki associée: %{page_title}" |
|
961 | 964 | button_add: Ajouter |
|
962 | 965 | button_change: Changer |
|
963 | 966 | button_apply: Appliquer |
|
964 | 967 | button_clear: Effacer |
|
965 | 968 | button_lock: Verrouiller |
|
966 | 969 | button_unlock: Déverrouiller |
|
967 | 970 | button_download: Télécharger |
|
968 | 971 | button_list: Lister |
|
969 | 972 | button_view: Voir |
|
970 | 973 | button_move: Déplacer |
|
971 | 974 | button_move_and_follow: Déplacer et suivre |
|
972 | 975 | button_back: Retour |
|
973 | 976 | button_cancel: Annuler |
|
974 | 977 | button_activate: Activer |
|
975 | 978 | button_sort: Trier |
|
976 | 979 | button_log_time: Saisir temps |
|
977 | 980 | button_rollback: Revenir à cette version |
|
978 | 981 | button_watch: Surveiller |
|
979 | 982 | button_unwatch: Ne plus surveiller |
|
980 | 983 | button_reply: Répondre |
|
981 | 984 | button_archive: Archiver |
|
982 | 985 | button_unarchive: Désarchiver |
|
983 | 986 | button_reset: Réinitialiser |
|
984 | 987 | button_rename: Renommer |
|
985 | 988 | button_change_password: Changer de mot de passe |
|
986 | 989 | button_copy: Copier |
|
987 | 990 | button_copy_and_follow: Copier et suivre |
|
988 | 991 | button_annotate: Annoter |
|
989 | 992 | button_update: Mettre à jour |
|
990 | 993 | button_configure: Configurer |
|
991 | 994 | button_quote: Citer |
|
992 | 995 | button_duplicate: Dupliquer |
|
993 | 996 | button_show: Afficher |
|
994 | 997 | button_hide: Cacher |
|
995 | 998 | button_edit_section: Modifier cette section |
|
996 | 999 | button_export: Exporter |
|
997 | 1000 | button_delete_my_account: Supprimer mon compte |
|
998 | 1001 | button_close: Fermer |
|
999 | 1002 | button_reopen: Réouvrir |
|
1000 | 1003 | |
|
1001 | 1004 | status_active: actif |
|
1002 | 1005 | status_registered: enregistré |
|
1003 | 1006 | status_locked: verrouillé |
|
1004 | 1007 | |
|
1005 | 1008 | project_status_active: actif |
|
1006 | 1009 | project_status_closed: fermé |
|
1007 | 1010 | project_status_archived: archivé |
|
1008 | 1011 | |
|
1009 | 1012 | version_status_open: ouvert |
|
1010 | 1013 | version_status_locked: verrouillé |
|
1011 | 1014 | version_status_closed: fermé |
|
1012 | 1015 | |
|
1013 | 1016 | field_active: Actif |
|
1014 | 1017 | |
|
1015 | 1018 | text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyée |
|
1016 | 1019 | text_regexp_info: ex. ^[A-Z0-9]+$ |
|
1017 | 1020 | text_min_max_length_info: 0 pour aucune restriction |
|
1018 | 1021 | text_project_destroy_confirmation: Êtes-vous sûr de vouloir supprimer ce projet et toutes ses données ? |
|
1019 | 1022 | text_subprojects_destroy_warning: "Ses sous-projets : %{value} seront également supprimés." |
|
1020 | 1023 | text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow |
|
1021 | 1024 | text_are_you_sure: Êtes-vous sûr ? |
|
1022 | 1025 | text_journal_changed: "%{label} changé de %{old} à %{new}" |
|
1023 | 1026 | text_journal_changed_no_detail: "%{label} mis à jour" |
|
1024 | 1027 | text_journal_set_to: "%{label} mis à %{value}" |
|
1025 | 1028 | text_journal_deleted: "%{label} %{old} supprimé" |
|
1026 | 1029 | text_journal_added: "%{label} %{value} ajouté" |
|
1027 | 1030 | text_tip_issue_begin_day: tâche commençant ce jour |
|
1028 | 1031 | text_tip_issue_end_day: tâche finissant ce jour |
|
1029 | 1032 | text_tip_issue_begin_end_day: tâche commençant et finissant ce jour |
|
1030 | 1033 | text_project_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres, tirets et tirets bas sont autorisés, doit commencer par une minuscule.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' |
|
1031 | 1034 | text_caracters_maximum: "%{count} caractères maximum." |
|
1032 | 1035 | text_caracters_minimum: "%{count} caractères minimum." |
|
1033 | 1036 | text_length_between: "Longueur comprise entre %{min} et %{max} caractères." |
|
1034 | 1037 | text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker |
|
1035 | 1038 | text_unallowed_characters: Caractères non autorisés |
|
1036 | 1039 | text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules). |
|
1037 | 1040 | text_line_separated: Plusieurs valeurs possibles (une valeur par ligne). |
|
1038 | 1041 | text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits |
|
1039 | 1042 | text_issue_added: "La demande %{id} a été soumise par %{author}." |
|
1040 | 1043 | text_issue_updated: "La demande %{id} a été mise à jour par %{author}." |
|
1041 | 1044 | text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ? |
|
1042 | 1045 | text_issue_category_destroy_question: "%{count} demandes sont affectées à cette catégorie. Que voulez-vous faire ?" |
|
1043 | 1046 | text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie |
|
1044 | 1047 | text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie |
|
1045 | 1048 | 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)." |
|
1046 | 1049 | 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é." |
|
1047 | 1050 | text_load_default_configuration: Charger le paramétrage par défaut |
|
1048 | 1051 | text_status_changed_by_changeset: "Appliqué par commit %{value}." |
|
1049 | 1052 | text_time_logged_by_changeset: "Appliqué par commit %{value}" |
|
1050 | 1053 | text_issues_destroy_confirmation: 'Êtes-vous sûr de vouloir supprimer la ou les demandes(s) selectionnée(s) ?' |
|
1051 | 1054 | text_issues_destroy_descendants_confirmation: "Cela entrainera également la suppression de %{count} sous-tâche(s)." |
|
1052 | 1055 | text_time_entries_destroy_confirmation: "Etes-vous sûr de vouloir supprimer les temps passés sélectionnés ?" |
|
1053 | 1056 | text_select_project_modules: 'Sélectionner les modules à activer pour ce projet :' |
|
1054 | 1057 | text_default_administrator_account_changed: Compte administrateur par défaut changé |
|
1055 | 1058 | text_file_repository_writable: Répertoire de stockage des fichiers accessible en écriture |
|
1056 | 1059 | text_plugin_assets_writable: Répertoire public des plugins accessible en écriture |
|
1057 | 1060 | text_rmagick_available: Bibliothèque RMagick présente (optionnelle) |
|
1058 | 1061 | text_convert_available: Binaire convert de ImageMagick présent (optionel) |
|
1059 | 1062 | text_destroy_time_entries_question: "%{hours} heures ont été enregistrées sur les demandes à supprimer. Que voulez-vous faire ?" |
|
1060 | 1063 | text_destroy_time_entries: Supprimer les heures |
|
1061 | 1064 | text_assign_time_entries_to_project: Reporter les heures sur le projet |
|
1062 | 1065 | text_reassign_time_entries: 'Reporter les heures sur cette demande:' |
|
1063 | 1066 | text_user_wrote: "%{value} a écrit :" |
|
1064 | 1067 | text_enumeration_destroy_question: "Cette valeur est affectée à %{count} objets." |
|
1065 | 1068 | text_enumeration_category_reassign_to: 'Réaffecter les objets à cette valeur:' |
|
1066 | 1069 | 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/configuration.yml et redémarrez l'application pour les activer." |
|
1067 | 1070 | text_repository_usernames_mapping: "Vous pouvez sélectionner ou modifier l'utilisateur Redmine associé à chaque nom d'utilisateur figurant dans l'historique du dépôt.\nLes utilisateurs avec le même identifiant ou la même adresse mail seront automatiquement associés." |
|
1068 | 1071 | text_diff_truncated: '... Ce différentiel a été tronqué car il excède la taille maximale pouvant être affichée.' |
|
1069 | 1072 | text_custom_field_possible_values_info: 'Une ligne par valeur' |
|
1070 | 1073 | text_wiki_page_destroy_question: "Cette page possède %{descendants} sous-page(s) et descendante(s). Que voulez-vous faire ?" |
|
1071 | 1074 | text_wiki_page_nullify_children: "Conserver les sous-pages en tant que pages racines" |
|
1072 | 1075 | text_wiki_page_destroy_children: "Supprimer les sous-pages et toutes leurs descedantes" |
|
1073 | 1076 | text_wiki_page_reassign_children: "Réaffecter les sous-pages à cette page" |
|
1074 | 1077 | text_own_membership_delete_confirmation: "Vous allez supprimer tout ou partie de vos permissions sur ce projet et ne serez peut-être plus autorisé à modifier ce projet.\nEtes-vous sûr de vouloir continuer ?" |
|
1075 | 1078 | text_zoom_in: Zoom avant |
|
1076 | 1079 | text_zoom_out: Zoom arrière |
|
1077 | 1080 | text_warn_on_leaving_unsaved: "Cette page contient du texte non sauvegardé qui sera perdu si vous quittez la page." |
|
1078 | 1081 | text_scm_path_encoding_note: "Défaut : UTF-8" |
|
1079 | 1082 | text_subversion_repository_note: "Exemples (en fonction des protocoles supportés) : file:///, http://, https://, svn://, svn+[tunnelscheme]://" |
|
1080 | 1083 | text_git_repository_note: "Chemin vers un dépôt vide et local (exemples : /gitrepo, c:\\gitrepo)" |
|
1081 | 1084 | text_mercurial_repository_note: "Chemin vers un dépôt local (exemples : /hgrepo, c:\\hgrepo)" |
|
1082 | 1085 | text_scm_command: Commande |
|
1083 | 1086 | text_scm_command_version: Version |
|
1084 | 1087 | text_scm_config: Vous pouvez configurer les commandes des SCM dans config/configuration.yml. Redémarrer l'application après modification. |
|
1085 | 1088 | text_scm_command_not_available: Ce SCM n'est pas disponible. Vérifier les paramètres dans la section administration. |
|
1086 | 1089 | text_issue_conflict_resolution_overwrite: "Appliquer quand même ma mise à jour (les notes précédentes seront conservées mais des changements pourront être écrasés)" |
|
1087 | 1090 | text_issue_conflict_resolution_add_notes: "Ajouter mes notes et ignorer mes autres changements" |
|
1088 | 1091 | text_issue_conflict_resolution_cancel: "Annuler ma mise à jour et réafficher %{link}" |
|
1089 | 1092 | text_account_destroy_confirmation: "Êtes-vous sûr de vouloir continuer ?\nVotre compte sera définitivement supprimé, sans aucune possibilité de le réactiver." |
|
1090 | 1093 | text_session_expiration_settings: "Attention : le changement de ces paramètres peut entrainer l'expiration des sessions utilisateurs en cours, y compris la vôtre." |
|
1091 | 1094 | text_project_closed: Ce projet est fermé et accessible en lecture seule. |
|
1092 | 1095 | text_turning_multiple_off: "Si vous désactivez les valeurs multiples, les valeurs multiples seront supprimées pour n'en conserver qu'une par objet." |
|
1093 | 1096 | |
|
1094 | 1097 | default_role_manager: Manager |
|
1095 | 1098 | default_role_developer: Développeur |
|
1096 | 1099 | default_role_reporter: Rapporteur |
|
1097 | 1100 | default_tracker_bug: Anomalie |
|
1098 | 1101 | default_tracker_feature: Evolution |
|
1099 | 1102 | default_tracker_support: Assistance |
|
1100 | 1103 | default_issue_status_new: Nouveau |
|
1101 | 1104 | default_issue_status_in_progress: En cours |
|
1102 | 1105 | default_issue_status_resolved: Résolu |
|
1103 | 1106 | default_issue_status_feedback: Commentaire |
|
1104 | 1107 | default_issue_status_closed: Fermé |
|
1105 | 1108 | default_issue_status_rejected: Rejeté |
|
1106 | 1109 | default_doc_category_user: Documentation utilisateur |
|
1107 | 1110 | default_doc_category_tech: Documentation technique |
|
1108 | 1111 | default_priority_low: Bas |
|
1109 | 1112 | default_priority_normal: Normal |
|
1110 | 1113 | default_priority_high: Haut |
|
1111 | 1114 | default_priority_urgent: Urgent |
|
1112 | 1115 | default_priority_immediate: Immédiat |
|
1113 | 1116 | default_activity_design: Conception |
|
1114 | 1117 | default_activity_development: Développement |
|
1115 | 1118 | |
|
1116 | 1119 | enumeration_issue_priorities: Priorités des demandes |
|
1117 | 1120 | enumeration_doc_categories: Catégories des documents |
|
1118 | 1121 | enumeration_activities: Activités (suivi du temps) |
|
1119 | 1122 | enumeration_system_activity: Activité système |
|
1120 | 1123 | description_filter: Filtre |
|
1121 | 1124 | description_search: Champ de recherche |
|
1122 | 1125 | description_choose_project: Projets |
|
1123 | 1126 | description_project_scope: Périmètre de recherche |
|
1124 | 1127 | description_notes: Notes |
|
1125 | 1128 | description_message_content: Contenu du message |
|
1126 | 1129 | description_query_sort_criteria_attribute: Critère de tri |
|
1127 | 1130 | description_query_sort_criteria_direction: Ordre de tri |
|
1128 | 1131 | description_user_mail_notification: Option de notification |
|
1129 | 1132 | description_available_columns: Colonnes disponibles |
|
1130 | 1133 | description_selected_columns: Colonnes sélectionnées |
|
1131 | 1134 | description_all_columns: Toutes les colonnes |
|
1132 | 1135 | description_issue_category_reassign: Choisir une catégorie |
|
1133 | 1136 | description_wiki_subpages_reassign: Choisir une nouvelle page parent |
|
1134 | 1137 | description_date_range_list: Choisir une période prédéfinie |
|
1135 | 1138 | description_date_range_interval: Choisir une période |
|
1136 | 1139 | description_date_from: Date de début |
|
1137 | 1140 | description_date_to: Date de fin |
|
1138 | 1141 | text_repository_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres, tirets et tirets bas sont autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' |
@@ -1,234 +1,236 | |||
|
1 | 1 | # Redmine - project management software |
|
2 | 2 | # Copyright (C) 2006-2014 Jean-Philippe Lang |
|
3 | 3 | # |
|
4 | 4 | # This program is free software; you can redistribute it and/or |
|
5 | 5 | # modify it under the terms of the GNU General Public License |
|
6 | 6 | # as published by the Free Software Foundation; either version 2 |
|
7 | 7 | # of the License, or (at your option) any later version. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU General Public License |
|
15 | 15 | # along with this program; if not, write to the Free Software |
|
16 | 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
17 | 17 | |
|
18 | 18 | |
|
19 | 19 | # DO NOT MODIFY THIS FILE !!! |
|
20 | 20 | # Settings can be defined through the application in Admin -> Settings |
|
21 | 21 | |
|
22 | 22 | app_title: |
|
23 | 23 | default: Redmine |
|
24 | 24 | app_subtitle: |
|
25 | 25 | default: Project management |
|
26 | 26 | welcome_text: |
|
27 | 27 | default: |
|
28 | 28 | login_required: |
|
29 | 29 | default: 0 |
|
30 | 30 | self_registration: |
|
31 | 31 | default: '2' |
|
32 | 32 | lost_password: |
|
33 | 33 | default: 1 |
|
34 | 34 | unsubscribe: |
|
35 | 35 | default: 1 |
|
36 | 36 | password_min_length: |
|
37 | 37 | format: int |
|
38 | 38 | default: 8 |
|
39 | 39 | # Maximum lifetime of user sessions in minutes |
|
40 | 40 | session_lifetime: |
|
41 | 41 | format: int |
|
42 | 42 | default: 0 |
|
43 | 43 | # User session timeout in minutes |
|
44 | 44 | session_timeout: |
|
45 | 45 | format: int |
|
46 | 46 | default: 0 |
|
47 | 47 | attachment_max_size: |
|
48 | 48 | format: int |
|
49 | 49 | default: 5120 |
|
50 | 50 | issues_export_limit: |
|
51 | 51 | format: int |
|
52 | 52 | default: 500 |
|
53 | 53 | activity_days_default: |
|
54 | 54 | format: int |
|
55 | 55 | default: 30 |
|
56 | 56 | per_page_options: |
|
57 | 57 | default: '25,50,100' |
|
58 | 58 | mail_from: |
|
59 | 59 | default: redmine@example.net |
|
60 | 60 | bcc_recipients: |
|
61 | 61 | default: 1 |
|
62 | 62 | plain_text_mail: |
|
63 | 63 | default: 0 |
|
64 | 64 | text_formatting: |
|
65 | 65 | default: textile |
|
66 | 66 | cache_formatted_text: |
|
67 | 67 | default: 0 |
|
68 | 68 | wiki_compression: |
|
69 | 69 | default: "" |
|
70 | 70 | default_language: |
|
71 | 71 | default: en |
|
72 | 72 | force_default_language_for_anonymous: |
|
73 | 73 | default: 0 |
|
74 | 74 | force_default_language_for_loggedin: |
|
75 | 75 | default: 0 |
|
76 | 76 | host_name: |
|
77 | 77 | default: localhost:3000 |
|
78 | 78 | protocol: |
|
79 | 79 | default: http |
|
80 | 80 | feeds_limit: |
|
81 | 81 | format: int |
|
82 | 82 | default: 15 |
|
83 | 83 | gantt_items_limit: |
|
84 | 84 | format: int |
|
85 | 85 | default: 500 |
|
86 | 86 | # Maximum size of files that can be displayed |
|
87 | 87 | # inline through the file viewer (in KB) |
|
88 | 88 | file_max_size_displayed: |
|
89 | 89 | format: int |
|
90 | 90 | default: 512 |
|
91 | 91 | diff_max_lines_displayed: |
|
92 | 92 | format: int |
|
93 | 93 | default: 1500 |
|
94 | 94 | enabled_scm: |
|
95 | 95 | serialized: true |
|
96 | 96 | default: |
|
97 | 97 | - Subversion |
|
98 | 98 | - Darcs |
|
99 | 99 | - Mercurial |
|
100 | 100 | - Cvs |
|
101 | 101 | - Bazaar |
|
102 | 102 | - Git |
|
103 | 103 | autofetch_changesets: |
|
104 | 104 | default: 1 |
|
105 | 105 | sys_api_enabled: |
|
106 | 106 | default: 0 |
|
107 | 107 | sys_api_key: |
|
108 | 108 | default: '' |
|
109 | 109 | commit_cross_project_ref: |
|
110 | 110 | default: 0 |
|
111 | 111 | commit_ref_keywords: |
|
112 | 112 | default: 'refs,references,IssueID' |
|
113 | 113 | commit_update_keywords: |
|
114 | 114 | serialized: true |
|
115 | 115 | default: [] |
|
116 | 116 | commit_logtime_enabled: |
|
117 | 117 | default: 0 |
|
118 | 118 | commit_logtime_activity_id: |
|
119 | 119 | format: int |
|
120 | 120 | default: 0 |
|
121 | 121 | # autologin duration in days |
|
122 | 122 | # 0 means autologin is disabled |
|
123 | 123 | autologin: |
|
124 | 124 | format: int |
|
125 | 125 | default: 0 |
|
126 | 126 | # date format |
|
127 | 127 | date_format: |
|
128 | 128 | default: '' |
|
129 | 129 | time_format: |
|
130 | 130 | default: '' |
|
131 | 131 | user_format: |
|
132 | 132 | default: :firstname_lastname |
|
133 | 133 | format: symbol |
|
134 | 134 | cross_project_issue_relations: |
|
135 | 135 | default: 0 |
|
136 | 136 | # Enables subtasks to be in other projects |
|
137 | 137 | cross_project_subtasks: |
|
138 | 138 | default: 'tree' |
|
139 | link_copied_issue: | |
|
140 | default: 'ask' | |
|
139 | 141 | issue_group_assignment: |
|
140 | 142 | default: 0 |
|
141 | 143 | default_issue_start_date_to_creation_date: |
|
142 | 144 | default: 1 |
|
143 | 145 | notified_events: |
|
144 | 146 | serialized: true |
|
145 | 147 | default: |
|
146 | 148 | - issue_added |
|
147 | 149 | - issue_updated |
|
148 | 150 | mail_handler_body_delimiters: |
|
149 | 151 | default: '' |
|
150 | 152 | mail_handler_excluded_filenames: |
|
151 | 153 | default: '' |
|
152 | 154 | mail_handler_api_enabled: |
|
153 | 155 | default: 0 |
|
154 | 156 | mail_handler_api_key: |
|
155 | 157 | default: |
|
156 | 158 | issue_list_default_columns: |
|
157 | 159 | serialized: true |
|
158 | 160 | default: |
|
159 | 161 | - tracker |
|
160 | 162 | - status |
|
161 | 163 | - priority |
|
162 | 164 | - subject |
|
163 | 165 | - assigned_to |
|
164 | 166 | - updated_on |
|
165 | 167 | display_subprojects_issues: |
|
166 | 168 | default: 1 |
|
167 | 169 | issue_done_ratio: |
|
168 | 170 | default: 'issue_field' |
|
169 | 171 | default_projects_public: |
|
170 | 172 | default: 1 |
|
171 | 173 | default_projects_modules: |
|
172 | 174 | serialized: true |
|
173 | 175 | default: |
|
174 | 176 | - issue_tracking |
|
175 | 177 | - time_tracking |
|
176 | 178 | - news |
|
177 | 179 | - documents |
|
178 | 180 | - files |
|
179 | 181 | - wiki |
|
180 | 182 | - repository |
|
181 | 183 | - boards |
|
182 | 184 | - calendar |
|
183 | 185 | - gantt |
|
184 | 186 | default_projects_tracker_ids: |
|
185 | 187 | serialized: true |
|
186 | 188 | default: |
|
187 | 189 | # Role given to a non-admin user who creates a project |
|
188 | 190 | new_project_user_role_id: |
|
189 | 191 | format: int |
|
190 | 192 | default: '' |
|
191 | 193 | sequential_project_identifiers: |
|
192 | 194 | default: 0 |
|
193 | 195 | # encodings used to convert repository files content to UTF-8 |
|
194 | 196 | # multiple values accepted, comma separated |
|
195 | 197 | repositories_encodings: |
|
196 | 198 | default: '' |
|
197 | 199 | # encoding used to convert commit logs to UTF-8 |
|
198 | 200 | commit_logs_encoding: |
|
199 | 201 | default: 'UTF-8' |
|
200 | 202 | repository_log_display_limit: |
|
201 | 203 | format: int |
|
202 | 204 | default: 100 |
|
203 | 205 | ui_theme: |
|
204 | 206 | default: '' |
|
205 | 207 | emails_footer: |
|
206 | 208 | default: |- |
|
207 | 209 | You have received this notification because you have either subscribed to it, or are involved in it. |
|
208 | 210 | To change your notification preferences, please click here: http://hostname/my/account |
|
209 | 211 | gravatar_enabled: |
|
210 | 212 | default: 0 |
|
211 | 213 | openid: |
|
212 | 214 | default: 0 |
|
213 | 215 | gravatar_default: |
|
214 | 216 | default: '' |
|
215 | 217 | start_of_week: |
|
216 | 218 | default: '' |
|
217 | 219 | rest_api_enabled: |
|
218 | 220 | default: 0 |
|
219 | 221 | jsonp_enabled: |
|
220 | 222 | default: 0 |
|
221 | 223 | default_notification_option: |
|
222 | 224 | default: 'only_my_events' |
|
223 | 225 | emails_header: |
|
224 | 226 | default: '' |
|
225 | 227 | thumbnails_enabled: |
|
226 | 228 | default: 0 |
|
227 | 229 | thumbnails_size: |
|
228 | 230 | format: int |
|
229 | 231 | default: 100 |
|
230 | 232 | non_working_week_days: |
|
231 | 233 | serialized: true |
|
232 | 234 | default: |
|
233 | 235 | - '6' |
|
234 | 236 | - '7' |
|
1 | NO CONTENT: modified file | |
The requested commit or file is too big and content was truncated. Show full diff |
General Comments 0
You need to be logged in to leave comments.
Login now