@@ -1,376 +1,401 | |||
|
1 | 1 | # Redmine - project management software |
|
2 | 2 | # Copyright (C) 2006-2015 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 | require "digest/md5" |
|
19 | 19 | require "fileutils" |
|
20 | 20 | |
|
21 | 21 | class Attachment < ActiveRecord::Base |
|
22 | 22 | belongs_to :container, :polymorphic => true |
|
23 | 23 | belongs_to :author, :class_name => "User" |
|
24 | 24 | |
|
25 | 25 | validates_presence_of :filename, :author |
|
26 | 26 | validates_length_of :filename, :maximum => 255 |
|
27 | 27 | validates_length_of :disk_filename, :maximum => 255 |
|
28 | 28 | validates_length_of :description, :maximum => 255 |
|
29 | validate :validate_max_file_size | |
|
29 | validate :validate_max_file_size, :validate_file_extension | |
|
30 | 30 | attr_protected :id |
|
31 | 31 | |
|
32 | 32 | acts_as_event :title => :filename, |
|
33 | 33 | :url => Proc.new {|o| {:controller => 'attachments', :action => 'download', :id => o.id, :filename => o.filename}} |
|
34 | 34 | |
|
35 | 35 | acts_as_activity_provider :type => 'files', |
|
36 | 36 | :permission => :view_files, |
|
37 | 37 | :author_key => :author_id, |
|
38 | 38 | :scope => select("#{Attachment.table_name}.*"). |
|
39 | 39 | joins("LEFT JOIN #{Version.table_name} ON #{Attachment.table_name}.container_type='Version' AND #{Version.table_name}.id = #{Attachment.table_name}.container_id " + |
|
40 | 40 | "LEFT JOIN #{Project.table_name} ON #{Version.table_name}.project_id = #{Project.table_name}.id OR ( #{Attachment.table_name}.container_type='Project' AND #{Attachment.table_name}.container_id = #{Project.table_name}.id )") |
|
41 | 41 | |
|
42 | 42 | acts_as_activity_provider :type => 'documents', |
|
43 | 43 | :permission => :view_documents, |
|
44 | 44 | :author_key => :author_id, |
|
45 | 45 | :scope => select("#{Attachment.table_name}.*"). |
|
46 | 46 | joins("LEFT JOIN #{Document.table_name} ON #{Attachment.table_name}.container_type='Document' AND #{Document.table_name}.id = #{Attachment.table_name}.container_id " + |
|
47 | 47 | "LEFT JOIN #{Project.table_name} ON #{Document.table_name}.project_id = #{Project.table_name}.id") |
|
48 | 48 | |
|
49 | 49 | cattr_accessor :storage_path |
|
50 | 50 | @@storage_path = Redmine::Configuration['attachments_storage_path'] || File.join(Rails.root, "files") |
|
51 | 51 | |
|
52 | 52 | cattr_accessor :thumbnails_storage_path |
|
53 | 53 | @@thumbnails_storage_path = File.join(Rails.root, "tmp", "thumbnails") |
|
54 | 54 | |
|
55 | 55 | before_create :files_to_final_location |
|
56 | 56 | after_commit :delete_from_disk, :on => :destroy |
|
57 | 57 | |
|
58 | 58 | # Returns an unsaved copy of the attachment |
|
59 | 59 | def copy(attributes=nil) |
|
60 | 60 | copy = self.class.new |
|
61 | 61 | copy.attributes = self.attributes.dup.except("id", "downloads") |
|
62 | 62 | copy.attributes = attributes if attributes |
|
63 | 63 | copy |
|
64 | 64 | end |
|
65 | 65 | |
|
66 | 66 | def validate_max_file_size |
|
67 | 67 | if @temp_file && self.filesize > Setting.attachment_max_size.to_i.kilobytes |
|
68 | 68 | errors.add(:base, l(:error_attachment_too_big, :max_size => Setting.attachment_max_size.to_i.kilobytes)) |
|
69 | 69 | end |
|
70 | 70 | end |
|
71 | 71 | |
|
72 | def validate_file_extension | |
|
73 | if @temp_file | |
|
74 | extension = File.extname(filename) | |
|
75 | unless self.class.valid_extension?(extension) | |
|
76 | errors.add(:base, l(:error_attachment_extension_not_allowed, :extension => extension)) | |
|
77 | end | |
|
78 | end | |
|
79 | end | |
|
80 | ||
|
72 | 81 | def file=(incoming_file) |
|
73 | 82 | unless incoming_file.nil? |
|
74 | 83 | @temp_file = incoming_file |
|
75 | 84 | if @temp_file.size > 0 |
|
76 | 85 | if @temp_file.respond_to?(:original_filename) |
|
77 | 86 | self.filename = @temp_file.original_filename |
|
78 | 87 | self.filename.force_encoding("UTF-8") |
|
79 | 88 | end |
|
80 | 89 | if @temp_file.respond_to?(:content_type) |
|
81 | 90 | self.content_type = @temp_file.content_type.to_s.chomp |
|
82 | 91 | end |
|
83 | 92 | self.filesize = @temp_file.size |
|
84 | 93 | end |
|
85 | 94 | end |
|
86 | 95 | end |
|
87 | 96 | |
|
88 | 97 | def file |
|
89 | 98 | nil |
|
90 | 99 | end |
|
91 | 100 | |
|
92 | 101 | def filename=(arg) |
|
93 | 102 | write_attribute :filename, sanitize_filename(arg.to_s) |
|
94 | 103 | filename |
|
95 | 104 | end |
|
96 | 105 | |
|
97 | 106 | # Copies the temporary file to its final location |
|
98 | 107 | # and computes its MD5 hash |
|
99 | 108 | def files_to_final_location |
|
100 | 109 | if @temp_file && (@temp_file.size > 0) |
|
101 | 110 | self.disk_directory = target_directory |
|
102 | 111 | self.disk_filename = Attachment.disk_filename(filename, disk_directory) |
|
103 | 112 | logger.info("Saving attachment '#{self.diskfile}' (#{@temp_file.size} bytes)") if logger |
|
104 | 113 | path = File.dirname(diskfile) |
|
105 | 114 | unless File.directory?(path) |
|
106 | 115 | FileUtils.mkdir_p(path) |
|
107 | 116 | end |
|
108 | 117 | md5 = Digest::MD5.new |
|
109 | 118 | File.open(diskfile, "wb") do |f| |
|
110 | 119 | if @temp_file.respond_to?(:read) |
|
111 | 120 | buffer = "" |
|
112 | 121 | while (buffer = @temp_file.read(8192)) |
|
113 | 122 | f.write(buffer) |
|
114 | 123 | md5.update(buffer) |
|
115 | 124 | end |
|
116 | 125 | else |
|
117 | 126 | f.write(@temp_file) |
|
118 | 127 | md5.update(@temp_file) |
|
119 | 128 | end |
|
120 | 129 | end |
|
121 | 130 | self.digest = md5.hexdigest |
|
122 | 131 | end |
|
123 | 132 | @temp_file = nil |
|
124 | 133 | |
|
125 | 134 | if content_type.blank? && filename.present? |
|
126 | 135 | self.content_type = Redmine::MimeType.of(filename) |
|
127 | 136 | end |
|
128 | 137 | # Don't save the content type if it's longer than the authorized length |
|
129 | 138 | if self.content_type && self.content_type.length > 255 |
|
130 | 139 | self.content_type = nil |
|
131 | 140 | end |
|
132 | 141 | end |
|
133 | 142 | |
|
134 | 143 | # Deletes the file from the file system if it's not referenced by other attachments |
|
135 | 144 | def delete_from_disk |
|
136 | 145 | if Attachment.where("disk_filename = ? AND id <> ?", disk_filename, id).empty? |
|
137 | 146 | delete_from_disk! |
|
138 | 147 | end |
|
139 | 148 | end |
|
140 | 149 | |
|
141 | 150 | # Returns file's location on disk |
|
142 | 151 | def diskfile |
|
143 | 152 | File.join(self.class.storage_path, disk_directory.to_s, disk_filename.to_s) |
|
144 | 153 | end |
|
145 | 154 | |
|
146 | 155 | def title |
|
147 | 156 | title = filename.to_s |
|
148 | 157 | if description.present? |
|
149 | 158 | title << " (#{description})" |
|
150 | 159 | end |
|
151 | 160 | title |
|
152 | 161 | end |
|
153 | 162 | |
|
154 | 163 | def increment_download |
|
155 | 164 | increment!(:downloads) |
|
156 | 165 | end |
|
157 | 166 | |
|
158 | 167 | def project |
|
159 | 168 | container.try(:project) |
|
160 | 169 | end |
|
161 | 170 | |
|
162 | 171 | def visible?(user=User.current) |
|
163 | 172 | if container_id |
|
164 | 173 | container && container.attachments_visible?(user) |
|
165 | 174 | else |
|
166 | 175 | author == user |
|
167 | 176 | end |
|
168 | 177 | end |
|
169 | 178 | |
|
170 | 179 | def editable?(user=User.current) |
|
171 | 180 | if container_id |
|
172 | 181 | container && container.attachments_editable?(user) |
|
173 | 182 | else |
|
174 | 183 | author == user |
|
175 | 184 | end |
|
176 | 185 | end |
|
177 | 186 | |
|
178 | 187 | def deletable?(user=User.current) |
|
179 | 188 | if container_id |
|
180 | 189 | container && container.attachments_deletable?(user) |
|
181 | 190 | else |
|
182 | 191 | author == user |
|
183 | 192 | end |
|
184 | 193 | end |
|
185 | 194 | |
|
186 | 195 | def image? |
|
187 | 196 | !!(self.filename =~ /\.(bmp|gif|jpg|jpe|jpeg|png)$/i) |
|
188 | 197 | end |
|
189 | 198 | |
|
190 | 199 | def thumbnailable? |
|
191 | 200 | image? |
|
192 | 201 | end |
|
193 | 202 | |
|
194 | 203 | # Returns the full path the attachment thumbnail, or nil |
|
195 | 204 | # if the thumbnail cannot be generated. |
|
196 | 205 | def thumbnail(options={}) |
|
197 | 206 | if thumbnailable? && readable? |
|
198 | 207 | size = options[:size].to_i |
|
199 | 208 | if size > 0 |
|
200 | 209 | # Limit the number of thumbnails per image |
|
201 | 210 | size = (size / 50) * 50 |
|
202 | 211 | # Maximum thumbnail size |
|
203 | 212 | size = 800 if size > 800 |
|
204 | 213 | else |
|
205 | 214 | size = Setting.thumbnails_size.to_i |
|
206 | 215 | end |
|
207 | 216 | size = 100 unless size > 0 |
|
208 | 217 | target = File.join(self.class.thumbnails_storage_path, "#{id}_#{digest}_#{size}.thumb") |
|
209 | 218 | |
|
210 | 219 | begin |
|
211 | 220 | Redmine::Thumbnail.generate(self.diskfile, target, size) |
|
212 | 221 | rescue => e |
|
213 | 222 | logger.error "An error occured while generating thumbnail for #{disk_filename} to #{target}\nException was: #{e.message}" if logger |
|
214 | 223 | return nil |
|
215 | 224 | end |
|
216 | 225 | end |
|
217 | 226 | end |
|
218 | 227 | |
|
219 | 228 | # Deletes all thumbnails |
|
220 | 229 | def self.clear_thumbnails |
|
221 | 230 | Dir.glob(File.join(thumbnails_storage_path, "*.thumb")).each do |file| |
|
222 | 231 | File.delete file |
|
223 | 232 | end |
|
224 | 233 | end |
|
225 | 234 | |
|
226 | 235 | def is_text? |
|
227 | 236 | Redmine::MimeType.is_type?('text', filename) |
|
228 | 237 | end |
|
229 | 238 | |
|
230 | 239 | def is_diff? |
|
231 | 240 | self.filename =~ /\.(patch|diff)$/i |
|
232 | 241 | end |
|
233 | 242 | |
|
234 | 243 | # Returns true if the file is readable |
|
235 | 244 | def readable? |
|
236 | 245 | File.readable?(diskfile) |
|
237 | 246 | end |
|
238 | 247 | |
|
239 | 248 | # Returns the attachment token |
|
240 | 249 | def token |
|
241 | 250 | "#{id}.#{digest}" |
|
242 | 251 | end |
|
243 | 252 | |
|
244 | 253 | # Finds an attachment that matches the given token and that has no container |
|
245 | 254 | def self.find_by_token(token) |
|
246 | 255 | if token.to_s =~ /^(\d+)\.([0-9a-f]+)$/ |
|
247 | 256 | attachment_id, attachment_digest = $1, $2 |
|
248 | 257 | attachment = Attachment.where(:id => attachment_id, :digest => attachment_digest).first |
|
249 | 258 | if attachment && attachment.container.nil? |
|
250 | 259 | attachment |
|
251 | 260 | end |
|
252 | 261 | end |
|
253 | 262 | end |
|
254 | 263 | |
|
255 | 264 | # Bulk attaches a set of files to an object |
|
256 | 265 | # |
|
257 | 266 | # Returns a Hash of the results: |
|
258 | 267 | # :files => array of the attached files |
|
259 | 268 | # :unsaved => array of the files that could not be attached |
|
260 | 269 | def self.attach_files(obj, attachments) |
|
261 | 270 | result = obj.save_attachments(attachments, User.current) |
|
262 | 271 | obj.attach_saved_attachments |
|
263 | 272 | result |
|
264 | 273 | end |
|
265 | 274 | |
|
266 | 275 | # Updates the filename and description of a set of attachments |
|
267 | 276 | # with the given hash of attributes. Returns true if all |
|
268 | 277 | # attachments were updated. |
|
269 | 278 | # |
|
270 | 279 | # Example: |
|
271 | 280 | # Attachment.update_attachments(attachments, { |
|
272 | 281 | # 4 => {:filename => 'foo'}, |
|
273 | 282 | # 7 => {:filename => 'bar', :description => 'file description'} |
|
274 | 283 | # }) |
|
275 | 284 | # |
|
276 | 285 | def self.update_attachments(attachments, params) |
|
277 | 286 | params = params.transform_keys {|key| key.to_i} |
|
278 | 287 | |
|
279 | 288 | saved = true |
|
280 | 289 | transaction do |
|
281 | 290 | attachments.each do |attachment| |
|
282 | 291 | if p = params[attachment.id] |
|
283 | 292 | attachment.filename = p[:filename] if p.key?(:filename) |
|
284 | 293 | attachment.description = p[:description] if p.key?(:description) |
|
285 | 294 | saved &&= attachment.save |
|
286 | 295 | end |
|
287 | 296 | end |
|
288 | 297 | unless saved |
|
289 | 298 | raise ActiveRecord::Rollback |
|
290 | 299 | end |
|
291 | 300 | end |
|
292 | 301 | saved |
|
293 | 302 | end |
|
294 | 303 | |
|
295 | 304 | def self.latest_attach(attachments, filename) |
|
296 | 305 | attachments.sort_by(&:created_on).reverse.detect do |att| |
|
297 | 306 | filename.casecmp(att.filename) == 0 |
|
298 | 307 | end |
|
299 | 308 | end |
|
300 | 309 | |
|
301 | 310 | def self.prune(age=1.day) |
|
302 | 311 | Attachment.where("created_on < ? AND (container_type IS NULL OR container_type = '')", Time.now - age).destroy_all |
|
303 | 312 | end |
|
304 | 313 | |
|
305 | 314 | # Moves an existing attachment to its target directory |
|
306 | 315 | def move_to_target_directory! |
|
307 | 316 | return unless !new_record? & readable? |
|
308 | 317 | |
|
309 | 318 | src = diskfile |
|
310 | 319 | self.disk_directory = target_directory |
|
311 | 320 | dest = diskfile |
|
312 | 321 | |
|
313 | 322 | return if src == dest |
|
314 | 323 | |
|
315 | 324 | if !FileUtils.mkdir_p(File.dirname(dest)) |
|
316 | 325 | logger.error "Could not create directory #{File.dirname(dest)}" if logger |
|
317 | 326 | return |
|
318 | 327 | end |
|
319 | 328 | |
|
320 | 329 | if !FileUtils.mv(src, dest) |
|
321 | 330 | logger.error "Could not move attachment from #{src} to #{dest}" if logger |
|
322 | 331 | return |
|
323 | 332 | end |
|
324 | 333 | |
|
325 | 334 | update_column :disk_directory, disk_directory |
|
326 | 335 | end |
|
327 | 336 | |
|
328 | 337 | # Moves existing attachments that are stored at the root of the files |
|
329 | 338 | # directory (ie. created before Redmine 2.3) to their target subdirectories |
|
330 | 339 | def self.move_from_root_to_target_directory |
|
331 | 340 | Attachment.where("disk_directory IS NULL OR disk_directory = ''").find_each do |attachment| |
|
332 | 341 | attachment.move_to_target_directory! |
|
333 | 342 | end |
|
334 | 343 | end |
|
335 | 344 | |
|
345 | # Returns true if the extension is allowed, otherwise false | |
|
346 | def self.valid_extension?(extension) | |
|
347 | extension = extension.downcase.sub(/\A\.+/, '') | |
|
348 | ||
|
349 | denied, allowed = [:attachment_extensions_denied, :attachment_extensions_allowed].map do |setting| | |
|
350 | Setting.send(setting).to_s.split(",").map {|s| s.strip.downcase.sub(/\A\.+/, '')}.reject(&:blank?) | |
|
351 | end | |
|
352 | if denied.present? && denied.include?(extension) | |
|
353 | return false | |
|
354 | end | |
|
355 | unless allowed.blank? || allowed.include?(extension) | |
|
356 | return false | |
|
357 | end | |
|
358 | true | |
|
359 | end | |
|
360 | ||
|
336 | 361 | private |
|
337 | 362 | |
|
338 | 363 | # Physically deletes the file from the file system |
|
339 | 364 | def delete_from_disk! |
|
340 | 365 | if disk_filename.present? && File.exist?(diskfile) |
|
341 | 366 | File.delete(diskfile) |
|
342 | 367 | end |
|
343 | 368 | end |
|
344 | 369 | |
|
345 | 370 | def sanitize_filename(value) |
|
346 | 371 | # get only the filename, not the whole path |
|
347 | 372 | just_filename = value.gsub(/\A.*(\\|\/)/m, '') |
|
348 | 373 | |
|
349 | 374 | # Finally, replace invalid characters with underscore |
|
350 | 375 | just_filename.gsub(/[\/\?\%\*\:\|\"\'<>\n\r]+/, '_') |
|
351 | 376 | end |
|
352 | 377 | |
|
353 | 378 | # Returns the subdirectory in which the attachment will be saved |
|
354 | 379 | def target_directory |
|
355 | 380 | time = created_on || DateTime.now |
|
356 | 381 | time.strftime("%Y/%m") |
|
357 | 382 | end |
|
358 | 383 | |
|
359 | 384 | # Returns an ASCII or hashed filename that do not |
|
360 | 385 | # exists yet in the given subdirectory |
|
361 | 386 | def self.disk_filename(filename, directory=nil) |
|
362 | 387 | timestamp = DateTime.now.strftime("%y%m%d%H%M%S") |
|
363 | 388 | ascii = '' |
|
364 | 389 | if filename =~ %r{^[a-zA-Z0-9_\.\-]*$} |
|
365 | 390 | ascii = filename |
|
366 | 391 | else |
|
367 | 392 | ascii = Digest::MD5.hexdigest(filename) |
|
368 | 393 | # keep the extension if any |
|
369 | 394 | ascii << $1 if filename =~ %r{(\.[a-zA-Z0-9]+)$} |
|
370 | 395 | end |
|
371 | 396 | while File.exist?(File.join(storage_path, directory.to_s, "#{timestamp}_#{ascii}")) |
|
372 | 397 | timestamp.succ! |
|
373 | 398 | end |
|
374 | 399 | "#{timestamp}_#{ascii}" |
|
375 | 400 | end |
|
376 | 401 | end |
@@ -1,15 +1,21 | |||
|
1 | 1 | <%= form_tag({:action => 'edit', :tab => 'attachments'}) do %> |
|
2 | 2 | |
|
3 | 3 | <div class="box tabular settings"> |
|
4 | 4 | <p><%= setting_text_field :attachment_max_size, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %></p> |
|
5 | 5 | |
|
6 | <p><%= setting_text_area :attachment_extensions_allowed %> | |
|
7 | <em class="info"><%= l(:text_comma_separated) %> <%= l(:label_example) %>: txt, png</em></p> | |
|
8 | ||
|
9 | <p><%= setting_text_area :attachment_extensions_denied %> | |
|
10 | <em class="info"><%= l(:text_comma_separated) %> <%= l(:label_example) %>: js, swf</em></p> | |
|
11 | ||
|
6 | 12 | <p><%= setting_text_field :file_max_size_displayed, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %></p> |
|
7 | 13 | |
|
8 | 14 | <p><%= setting_text_field :diff_max_lines_displayed, :size => 6 %></p> |
|
9 | 15 | |
|
10 | 16 | <p><%= setting_text_field :repositories_encodings, :size => 60 %> |
|
11 | 17 | <em class="info"><%= l(:text_comma_separated) %></em></p> |
|
12 | 18 | </div> |
|
13 | 19 | |
|
14 | 20 | <%= submit_tag l(:button_save) %> |
|
15 | 21 | <% end %> |
@@ -1,1168 +1,1171 | |||
|
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: "cannot be empty" |
|
114 | 114 | blank: "cannot 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 | notice_import_finished: "All %{count} items have been imported." |
|
186 | 186 | notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported." |
|
187 | 187 | |
|
188 | 188 | error_can_t_load_default_data: "Default configuration could not be loaded: %{value}" |
|
189 | 189 | error_scm_not_found: "The entry or revision was not found in the repository." |
|
190 | 190 | error_scm_command_failed: "An error occurred when trying to access the repository: %{value}" |
|
191 | 191 | error_scm_annotate: "The entry does not exist or cannot be annotated." |
|
192 | 192 | error_scm_annotate_big_text_file: "The entry cannot be annotated, as it exceeds the maximum text file size." |
|
193 | 193 | error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' |
|
194 | 194 | error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' |
|
195 | 195 | error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' |
|
196 | 196 | error_can_not_delete_custom_field: Unable to delete custom field |
|
197 | 197 | error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted." |
|
198 | 198 | error_can_not_remove_role: "This role is in use and cannot be deleted." |
|
199 | 199 | error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened' |
|
200 | 200 | error_can_not_archive_project: This project cannot be archived |
|
201 | 201 | error_issue_done_ratios_not_updated: "Issue done ratios not updated." |
|
202 | 202 | error_workflow_copy_source: 'Please select a source tracker or role' |
|
203 | 203 | error_workflow_copy_target: 'Please select target tracker(s) and role(s)' |
|
204 | 204 | error_unable_delete_issue_status: 'Unable to delete issue status' |
|
205 | 205 | error_unable_to_connect: "Unable to connect (%{value})" |
|
206 | 206 | error_attachment_too_big: "This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})" |
|
207 | 207 | error_session_expired: "Your session has expired. Please login again." |
|
208 | 208 | warning_attachments_not_saved: "%{count} file(s) could not be saved." |
|
209 | 209 | error_password_expired: "Your password has expired or the administrator requires you to change it." |
|
210 | 210 | error_invalid_file_encoding: "The file is not a valid %{encoding} encoded file" |
|
211 | 211 | error_invalid_csv_file_or_settings: "The file is not a CSV file or does not match the settings below" |
|
212 | 212 | error_can_not_read_import_file: "An error occurred while reading the file to import" |
|
213 | error_attachment_extension_not_allowed: "Attachment extension %{extension} is not allowed" | |
|
213 | 214 | |
|
214 | 215 | mail_subject_lost_password: "Your %{value} password" |
|
215 | 216 | mail_body_lost_password: 'To change your password, click on the following link:' |
|
216 | 217 | mail_subject_register: "Your %{value} account activation" |
|
217 | 218 | mail_body_register: 'To activate your account, click on the following link:' |
|
218 | 219 | mail_body_account_information_external: "You can use your %{value} account to log in." |
|
219 | 220 | mail_body_account_information: Your account information |
|
220 | 221 | mail_subject_account_activation_request: "%{value} account activation request" |
|
221 | 222 | mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:" |
|
222 | 223 | mail_subject_reminder: "%{count} issue(s) due in the next %{days} days" |
|
223 | 224 | mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:" |
|
224 | 225 | mail_subject_wiki_content_added: "'%{id}' wiki page has been added" |
|
225 | 226 | mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." |
|
226 | 227 | mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" |
|
227 | 228 | mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." |
|
228 | 229 | |
|
229 | 230 | field_name: Name |
|
230 | 231 | field_description: Description |
|
231 | 232 | field_summary: Summary |
|
232 | 233 | field_is_required: Required |
|
233 | 234 | field_firstname: First name |
|
234 | 235 | field_lastname: Last name |
|
235 | 236 | field_mail: Email |
|
236 | 237 | field_address: Email |
|
237 | 238 | field_filename: File |
|
238 | 239 | field_filesize: Size |
|
239 | 240 | field_downloads: Downloads |
|
240 | 241 | field_author: Author |
|
241 | 242 | field_created_on: Created |
|
242 | 243 | field_updated_on: Updated |
|
243 | 244 | field_closed_on: Closed |
|
244 | 245 | field_field_format: Format |
|
245 | 246 | field_is_for_all: For all projects |
|
246 | 247 | field_possible_values: Possible values |
|
247 | 248 | field_regexp: Regular expression |
|
248 | 249 | field_min_length: Minimum length |
|
249 | 250 | field_max_length: Maximum length |
|
250 | 251 | field_value: Value |
|
251 | 252 | field_category: Category |
|
252 | 253 | field_title: Title |
|
253 | 254 | field_project: Project |
|
254 | 255 | field_issue: Issue |
|
255 | 256 | field_status: Status |
|
256 | 257 | field_notes: Notes |
|
257 | 258 | field_is_closed: Issue closed |
|
258 | 259 | field_is_default: Default value |
|
259 | 260 | field_tracker: Tracker |
|
260 | 261 | field_subject: Subject |
|
261 | 262 | field_due_date: Due date |
|
262 | 263 | field_assigned_to: Assignee |
|
263 | 264 | field_priority: Priority |
|
264 | 265 | field_fixed_version: Target version |
|
265 | 266 | field_user: User |
|
266 | 267 | field_principal: Principal |
|
267 | 268 | field_role: Role |
|
268 | 269 | field_homepage: Homepage |
|
269 | 270 | field_is_public: Public |
|
270 | 271 | field_parent: Subproject of |
|
271 | 272 | field_is_in_roadmap: Issues displayed in roadmap |
|
272 | 273 | field_login: Login |
|
273 | 274 | field_mail_notification: Email notifications |
|
274 | 275 | field_admin: Administrator |
|
275 | 276 | field_last_login_on: Last connection |
|
276 | 277 | field_language: Language |
|
277 | 278 | field_effective_date: Date |
|
278 | 279 | field_password: Password |
|
279 | 280 | field_new_password: New password |
|
280 | 281 | field_password_confirmation: Confirmation |
|
281 | 282 | field_version: Version |
|
282 | 283 | field_type: Type |
|
283 | 284 | field_host: Host |
|
284 | 285 | field_port: Port |
|
285 | 286 | field_account: Account |
|
286 | 287 | field_base_dn: Base DN |
|
287 | 288 | field_attr_login: Login attribute |
|
288 | 289 | field_attr_firstname: Firstname attribute |
|
289 | 290 | field_attr_lastname: Lastname attribute |
|
290 | 291 | field_attr_mail: Email attribute |
|
291 | 292 | field_onthefly: On-the-fly user creation |
|
292 | 293 | field_start_date: Start date |
|
293 | 294 | field_done_ratio: "% Done" |
|
294 | 295 | field_auth_source: Authentication mode |
|
295 | 296 | field_hide_mail: Hide my email address |
|
296 | 297 | field_comments: Comment |
|
297 | 298 | field_url: URL |
|
298 | 299 | field_start_page: Start page |
|
299 | 300 | field_subproject: Subproject |
|
300 | 301 | field_hours: Hours |
|
301 | 302 | field_activity: Activity |
|
302 | 303 | field_spent_on: Date |
|
303 | 304 | field_identifier: Identifier |
|
304 | 305 | field_is_filter: Used as a filter |
|
305 | 306 | field_issue_to: Related issue |
|
306 | 307 | field_delay: Delay |
|
307 | 308 | field_assignable: Issues can be assigned to this role |
|
308 | 309 | field_redirect_existing_links: Redirect existing links |
|
309 | 310 | field_estimated_hours: Estimated time |
|
310 | 311 | field_column_names: Columns |
|
311 | 312 | field_time_entries: Log time |
|
312 | 313 | field_time_zone: Time zone |
|
313 | 314 | field_searchable: Searchable |
|
314 | 315 | field_default_value: Default value |
|
315 | 316 | field_comments_sorting: Display comments |
|
316 | 317 | field_parent_title: Parent page |
|
317 | 318 | field_editable: Editable |
|
318 | 319 | field_watcher: Watcher |
|
319 | 320 | field_identity_url: OpenID URL |
|
320 | 321 | field_content: Content |
|
321 | 322 | field_group_by: Group results by |
|
322 | 323 | field_sharing: Sharing |
|
323 | 324 | field_parent_issue: Parent task |
|
324 | 325 | field_member_of_group: "Assignee's group" |
|
325 | 326 | field_assigned_to_role: "Assignee's role" |
|
326 | 327 | field_text: Text field |
|
327 | 328 | field_visible: Visible |
|
328 | 329 | field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text" |
|
329 | 330 | field_issues_visibility: Issues visibility |
|
330 | 331 | field_is_private: Private |
|
331 | 332 | field_commit_logs_encoding: Commit messages encoding |
|
332 | 333 | field_scm_path_encoding: Path encoding |
|
333 | 334 | field_path_to_repository: Path to repository |
|
334 | 335 | field_root_directory: Root directory |
|
335 | 336 | field_cvsroot: CVSROOT |
|
336 | 337 | field_cvs_module: Module |
|
337 | 338 | field_repository_is_default: Main repository |
|
338 | 339 | field_multiple: Multiple values |
|
339 | 340 | field_auth_source_ldap_filter: LDAP filter |
|
340 | 341 | field_core_fields: Standard fields |
|
341 | 342 | field_timeout: "Timeout (in seconds)" |
|
342 | 343 | field_board_parent: Parent forum |
|
343 | 344 | field_private_notes: Private notes |
|
344 | 345 | field_inherit_members: Inherit members |
|
345 | 346 | field_generate_password: Generate password |
|
346 | 347 | field_must_change_passwd: Must change password at next logon |
|
347 | 348 | field_default_status: Default status |
|
348 | 349 | field_users_visibility: Users visibility |
|
349 | 350 | field_time_entries_visibility: Time logs visibility |
|
350 | 351 | field_total_estimated_hours: Total estimated time |
|
351 | 352 | field_default_version: Default version |
|
352 | 353 | |
|
353 | 354 | setting_app_title: Application title |
|
354 | 355 | setting_app_subtitle: Application subtitle |
|
355 | 356 | setting_welcome_text: Welcome text |
|
356 | 357 | setting_default_language: Default language |
|
357 | 358 | setting_login_required: Authentication required |
|
358 | 359 | setting_self_registration: Self-registration |
|
359 | 360 | setting_attachment_max_size: Maximum attachment size |
|
360 | 361 | setting_issues_export_limit: Issues export limit |
|
361 | 362 | setting_mail_from: Emission email address |
|
362 | 363 | setting_bcc_recipients: Blind carbon copy recipients (bcc) |
|
363 | 364 | setting_plain_text_mail: Plain text mail (no HTML) |
|
364 | 365 | setting_host_name: Host name and path |
|
365 | 366 | setting_text_formatting: Text formatting |
|
366 | 367 | setting_wiki_compression: Wiki history compression |
|
367 | 368 | setting_feeds_limit: Maximum number of items in Atom feeds |
|
368 | 369 | setting_default_projects_public: New projects are public by default |
|
369 | 370 | setting_autofetch_changesets: Fetch commits automatically |
|
370 | 371 | setting_sys_api_enabled: Enable WS for repository management |
|
371 | 372 | setting_commit_ref_keywords: Referencing keywords |
|
372 | 373 | setting_commit_fix_keywords: Fixing keywords |
|
373 | 374 | setting_autologin: Autologin |
|
374 | 375 | setting_date_format: Date format |
|
375 | 376 | setting_time_format: Time format |
|
376 | 377 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
377 | 378 | setting_cross_project_subtasks: Allow cross-project subtasks |
|
378 | 379 | setting_issue_list_default_columns: Default columns displayed on the issue list |
|
379 | 380 | setting_repositories_encodings: Attachments and repositories encodings |
|
380 | 381 | setting_emails_header: Email header |
|
381 | 382 | setting_emails_footer: Email footer |
|
382 | 383 | setting_protocol: Protocol |
|
383 | 384 | setting_per_page_options: Objects per page options |
|
384 | 385 | setting_user_format: Users display format |
|
385 | 386 | setting_activity_days_default: Days displayed on project activity |
|
386 | 387 | setting_display_subprojects_issues: Display subprojects issues on main projects by default |
|
387 | 388 | setting_enabled_scm: Enabled SCM |
|
388 | 389 | setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" |
|
389 | 390 | setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
390 | 391 | setting_mail_handler_api_key: API key |
|
391 | 392 | setting_sequential_project_identifiers: Generate sequential project identifiers |
|
392 | 393 | setting_gravatar_enabled: Use Gravatar user icons |
|
393 | 394 | setting_gravatar_default: Default Gravatar image |
|
394 | 395 | setting_diff_max_lines_displayed: Maximum number of diff lines displayed |
|
395 | 396 | setting_file_max_size_displayed: Maximum size of text files displayed inline |
|
396 | 397 | setting_repository_log_display_limit: Maximum number of revisions displayed on file log |
|
397 | 398 | setting_openid: Allow OpenID login and registration |
|
398 | 399 | setting_password_max_age: Require password change after |
|
399 | 400 | setting_password_min_length: Minimum password length |
|
400 | 401 | setting_new_project_user_role_id: Role given to a non-admin user who creates a project |
|
401 | 402 | setting_default_projects_modules: Default enabled modules for new projects |
|
402 | 403 | setting_issue_done_ratio: Calculate the issue done ratio with |
|
403 | 404 | setting_issue_done_ratio_issue_field: Use the issue field |
|
404 | 405 | setting_issue_done_ratio_issue_status: Use the issue status |
|
405 | 406 | setting_start_of_week: Start calendars on |
|
406 | 407 | setting_rest_api_enabled: Enable REST web service |
|
407 | 408 | setting_cache_formatted_text: Cache formatted text |
|
408 | 409 | setting_default_notification_option: Default notification option |
|
409 | 410 | setting_commit_logtime_enabled: Enable time logging |
|
410 | 411 | setting_commit_logtime_activity_id: Activity for logged time |
|
411 | 412 | setting_gantt_items_limit: Maximum number of items displayed on the gantt chart |
|
412 | 413 | setting_issue_group_assignment: Allow issue assignment to groups |
|
413 | 414 | setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues |
|
414 | 415 | setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed |
|
415 | 416 | setting_unsubscribe: Allow users to delete their own account |
|
416 | 417 | setting_session_lifetime: Session maximum lifetime |
|
417 | 418 | setting_session_timeout: Session inactivity timeout |
|
418 | 419 | setting_thumbnails_enabled: Display attachment thumbnails |
|
419 | 420 | setting_thumbnails_size: Thumbnails size (in pixels) |
|
420 | 421 | setting_non_working_week_days: Non-working days |
|
421 | 422 | setting_jsonp_enabled: Enable JSONP support |
|
422 | 423 | setting_default_projects_tracker_ids: Default trackers for new projects |
|
423 | 424 | setting_mail_handler_excluded_filenames: Exclude attachments by name |
|
424 | 425 | setting_force_default_language_for_anonymous: Force default language for anonymous users |
|
425 | 426 | setting_force_default_language_for_loggedin: Force default language for logged-in users |
|
426 | 427 | setting_link_copied_issue: Link issues on copy |
|
427 | 428 | setting_max_additional_emails: Maximum number of additional email addresses |
|
428 | 429 | setting_search_results_per_page: Search results per page |
|
430 | setting_attachment_extensions_allowed: Allowed extensions | |
|
431 | setting_attachment_extensions_denied: Disallowed extensions | |
|
429 | 432 | |
|
430 | 433 | permission_add_project: Create project |
|
431 | 434 | permission_add_subprojects: Create subprojects |
|
432 | 435 | permission_edit_project: Edit project |
|
433 | 436 | permission_close_project: Close / reopen the project |
|
434 | 437 | permission_select_project_modules: Select project modules |
|
435 | 438 | permission_manage_members: Manage members |
|
436 | 439 | permission_manage_project_activities: Manage project activities |
|
437 | 440 | permission_manage_versions: Manage versions |
|
438 | 441 | permission_manage_categories: Manage issue categories |
|
439 | 442 | permission_view_issues: View Issues |
|
440 | 443 | permission_add_issues: Add issues |
|
441 | 444 | permission_edit_issues: Edit issues |
|
442 | 445 | permission_copy_issues: Copy issues |
|
443 | 446 | permission_manage_issue_relations: Manage issue relations |
|
444 | 447 | permission_set_issues_private: Set issues public or private |
|
445 | 448 | permission_set_own_issues_private: Set own issues public or private |
|
446 | 449 | permission_add_issue_notes: Add notes |
|
447 | 450 | permission_edit_issue_notes: Edit notes |
|
448 | 451 | permission_edit_own_issue_notes: Edit own notes |
|
449 | 452 | permission_view_private_notes: View private notes |
|
450 | 453 | permission_set_notes_private: Set notes as private |
|
451 | 454 | permission_move_issues: Move issues |
|
452 | 455 | permission_delete_issues: Delete issues |
|
453 | 456 | permission_manage_public_queries: Manage public queries |
|
454 | 457 | permission_save_queries: Save queries |
|
455 | 458 | permission_view_gantt: View gantt chart |
|
456 | 459 | permission_view_calendar: View calendar |
|
457 | 460 | permission_view_issue_watchers: View watchers list |
|
458 | 461 | permission_add_issue_watchers: Add watchers |
|
459 | 462 | permission_delete_issue_watchers: Delete watchers |
|
460 | 463 | permission_log_time: Log spent time |
|
461 | 464 | permission_view_time_entries: View spent time |
|
462 | 465 | permission_edit_time_entries: Edit time logs |
|
463 | 466 | permission_edit_own_time_entries: Edit own time logs |
|
464 | 467 | permission_manage_news: Manage news |
|
465 | 468 | permission_comment_news: Comment news |
|
466 | 469 | permission_view_documents: View documents |
|
467 | 470 | permission_add_documents: Add documents |
|
468 | 471 | permission_edit_documents: Edit documents |
|
469 | 472 | permission_delete_documents: Delete documents |
|
470 | 473 | permission_manage_files: Manage files |
|
471 | 474 | permission_view_files: View files |
|
472 | 475 | permission_manage_wiki: Manage wiki |
|
473 | 476 | permission_rename_wiki_pages: Rename wiki pages |
|
474 | 477 | permission_delete_wiki_pages: Delete wiki pages |
|
475 | 478 | permission_view_wiki_pages: View wiki |
|
476 | 479 | permission_view_wiki_edits: View wiki history |
|
477 | 480 | permission_edit_wiki_pages: Edit wiki pages |
|
478 | 481 | permission_delete_wiki_pages_attachments: Delete attachments |
|
479 | 482 | permission_protect_wiki_pages: Protect wiki pages |
|
480 | 483 | permission_manage_repository: Manage repository |
|
481 | 484 | permission_browse_repository: Browse repository |
|
482 | 485 | permission_view_changesets: View changesets |
|
483 | 486 | permission_commit_access: Commit access |
|
484 | 487 | permission_manage_boards: Manage forums |
|
485 | 488 | permission_view_messages: View messages |
|
486 | 489 | permission_add_messages: Post messages |
|
487 | 490 | permission_edit_messages: Edit messages |
|
488 | 491 | permission_edit_own_messages: Edit own messages |
|
489 | 492 | permission_delete_messages: Delete messages |
|
490 | 493 | permission_delete_own_messages: Delete own messages |
|
491 | 494 | permission_export_wiki_pages: Export wiki pages |
|
492 | 495 | permission_manage_subtasks: Manage subtasks |
|
493 | 496 | permission_manage_related_issues: Manage related issues |
|
494 | 497 | permission_import_issues: Import issues |
|
495 | 498 | |
|
496 | 499 | project_module_issue_tracking: Issue tracking |
|
497 | 500 | project_module_time_tracking: Time tracking |
|
498 | 501 | project_module_news: News |
|
499 | 502 | project_module_documents: Documents |
|
500 | 503 | project_module_files: Files |
|
501 | 504 | project_module_wiki: Wiki |
|
502 | 505 | project_module_repository: Repository |
|
503 | 506 | project_module_boards: Forums |
|
504 | 507 | project_module_calendar: Calendar |
|
505 | 508 | project_module_gantt: Gantt |
|
506 | 509 | |
|
507 | 510 | label_user: User |
|
508 | 511 | label_user_plural: Users |
|
509 | 512 | label_user_new: New user |
|
510 | 513 | label_user_anonymous: Anonymous |
|
511 | 514 | label_project: Project |
|
512 | 515 | label_project_new: New project |
|
513 | 516 | label_project_plural: Projects |
|
514 | 517 | label_x_projects: |
|
515 | 518 | zero: no projects |
|
516 | 519 | one: 1 project |
|
517 | 520 | other: "%{count} projects" |
|
518 | 521 | label_project_all: All Projects |
|
519 | 522 | label_project_latest: Latest projects |
|
520 | 523 | label_issue: Issue |
|
521 | 524 | label_issue_new: New issue |
|
522 | 525 | label_issue_plural: Issues |
|
523 | 526 | label_issue_view_all: View all issues |
|
524 | 527 | label_issues_by: "Issues by %{value}" |
|
525 | 528 | label_issue_added: Issue added |
|
526 | 529 | label_issue_updated: Issue updated |
|
527 | 530 | label_issue_note_added: Note added |
|
528 | 531 | label_issue_status_updated: Status updated |
|
529 | 532 | label_issue_assigned_to_updated: Assignee updated |
|
530 | 533 | label_issue_priority_updated: Priority updated |
|
531 | 534 | label_document: Document |
|
532 | 535 | label_document_new: New document |
|
533 | 536 | label_document_plural: Documents |
|
534 | 537 | label_document_added: Document added |
|
535 | 538 | label_role: Role |
|
536 | 539 | label_role_plural: Roles |
|
537 | 540 | label_role_new: New role |
|
538 | 541 | label_role_and_permissions: Roles and permissions |
|
539 | 542 | label_role_anonymous: Anonymous |
|
540 | 543 | label_role_non_member: Non member |
|
541 | 544 | label_member: Member |
|
542 | 545 | label_member_new: New member |
|
543 | 546 | label_member_plural: Members |
|
544 | 547 | label_tracker: Tracker |
|
545 | 548 | label_tracker_plural: Trackers |
|
546 | 549 | label_tracker_new: New tracker |
|
547 | 550 | label_workflow: Workflow |
|
548 | 551 | label_issue_status: Issue status |
|
549 | 552 | label_issue_status_plural: Issue statuses |
|
550 | 553 | label_issue_status_new: New status |
|
551 | 554 | label_issue_category: Issue category |
|
552 | 555 | label_issue_category_plural: Issue categories |
|
553 | 556 | label_issue_category_new: New category |
|
554 | 557 | label_custom_field: Custom field |
|
555 | 558 | label_custom_field_plural: Custom fields |
|
556 | 559 | label_custom_field_new: New custom field |
|
557 | 560 | label_enumerations: Enumerations |
|
558 | 561 | label_enumeration_new: New value |
|
559 | 562 | label_information: Information |
|
560 | 563 | label_information_plural: Information |
|
561 | 564 | label_please_login: Please log in |
|
562 | 565 | label_register: Register |
|
563 | 566 | label_login_with_open_id_option: or login with OpenID |
|
564 | 567 | label_password_lost: Lost password |
|
565 | 568 | label_password_required: Confirm your password to continue |
|
566 | 569 | label_home: Home |
|
567 | 570 | label_my_page: My page |
|
568 | 571 | label_my_account: My account |
|
569 | 572 | label_my_projects: My projects |
|
570 | 573 | label_my_page_block: My page block |
|
571 | 574 | label_administration: Administration |
|
572 | 575 | label_login: Sign in |
|
573 | 576 | label_logout: Sign out |
|
574 | 577 | label_help: Help |
|
575 | 578 | label_reported_issues: Reported issues |
|
576 | 579 | label_assigned_issues: Assigned issues |
|
577 | 580 | label_assigned_to_me_issues: Issues assigned to me |
|
578 | 581 | label_last_login: Last connection |
|
579 | 582 | label_registered_on: Registered on |
|
580 | 583 | label_activity: Activity |
|
581 | 584 | label_overall_activity: Overall activity |
|
582 | 585 | label_user_activity: "%{value}'s activity" |
|
583 | 586 | label_new: New |
|
584 | 587 | label_logged_as: Logged in as |
|
585 | 588 | label_environment: Environment |
|
586 | 589 | label_authentication: Authentication |
|
587 | 590 | label_auth_source: Authentication mode |
|
588 | 591 | label_auth_source_new: New authentication mode |
|
589 | 592 | label_auth_source_plural: Authentication modes |
|
590 | 593 | label_subproject_plural: Subprojects |
|
591 | 594 | label_subproject_new: New subproject |
|
592 | 595 | label_and_its_subprojects: "%{value} and its subprojects" |
|
593 | 596 | label_min_max_length: Min - Max length |
|
594 | 597 | label_list: List |
|
595 | 598 | label_date: Date |
|
596 | 599 | label_integer: Integer |
|
597 | 600 | label_float: Float |
|
598 | 601 | label_boolean: Boolean |
|
599 | 602 | label_string: Text |
|
600 | 603 | label_text: Long text |
|
601 | 604 | label_attribute: Attribute |
|
602 | 605 | label_attribute_plural: Attributes |
|
603 | 606 | label_no_data: No data to display |
|
604 | 607 | label_change_status: Change status |
|
605 | 608 | label_history: History |
|
606 | 609 | label_attachment: File |
|
607 | 610 | label_attachment_new: New file |
|
608 | 611 | label_attachment_delete: Delete file |
|
609 | 612 | label_attachment_plural: Files |
|
610 | 613 | label_file_added: File added |
|
611 | 614 | label_report: Report |
|
612 | 615 | label_report_plural: Reports |
|
613 | 616 | label_news: News |
|
614 | 617 | label_news_new: Add news |
|
615 | 618 | label_news_plural: News |
|
616 | 619 | label_news_latest: Latest news |
|
617 | 620 | label_news_view_all: View all news |
|
618 | 621 | label_news_added: News added |
|
619 | 622 | label_news_comment_added: Comment added to a news |
|
620 | 623 | label_settings: Settings |
|
621 | 624 | label_overview: Overview |
|
622 | 625 | label_version: Version |
|
623 | 626 | label_version_new: New version |
|
624 | 627 | label_version_plural: Versions |
|
625 | 628 | label_close_versions: Close completed versions |
|
626 | 629 | label_confirmation: Confirmation |
|
627 | 630 | label_export_to: 'Also available in:' |
|
628 | 631 | label_read: Read... |
|
629 | 632 | label_public_projects: Public projects |
|
630 | 633 | label_open_issues: open |
|
631 | 634 | label_open_issues_plural: open |
|
632 | 635 | label_closed_issues: closed |
|
633 | 636 | label_closed_issues_plural: closed |
|
634 | 637 | label_x_open_issues_abbr: |
|
635 | 638 | zero: 0 open |
|
636 | 639 | one: 1 open |
|
637 | 640 | other: "%{count} open" |
|
638 | 641 | label_x_closed_issues_abbr: |
|
639 | 642 | zero: 0 closed |
|
640 | 643 | one: 1 closed |
|
641 | 644 | other: "%{count} closed" |
|
642 | 645 | label_x_issues: |
|
643 | 646 | zero: 0 issues |
|
644 | 647 | one: 1 issue |
|
645 | 648 | other: "%{count} issues" |
|
646 | 649 | label_total: Total |
|
647 | 650 | label_total_plural: Totals |
|
648 | 651 | label_total_time: Total time |
|
649 | 652 | label_permissions: Permissions |
|
650 | 653 | label_current_status: Current status |
|
651 | 654 | label_new_statuses_allowed: New statuses allowed |
|
652 | 655 | label_all: all |
|
653 | 656 | label_any: any |
|
654 | 657 | label_none: none |
|
655 | 658 | label_nobody: nobody |
|
656 | 659 | label_next: Next |
|
657 | 660 | label_previous: Previous |
|
658 | 661 | label_used_by: Used by |
|
659 | 662 | label_details: Details |
|
660 | 663 | label_add_note: Add a note |
|
661 | 664 | label_calendar: Calendar |
|
662 | 665 | label_months_from: months from |
|
663 | 666 | label_gantt: Gantt |
|
664 | 667 | label_internal: Internal |
|
665 | 668 | label_last_changes: "last %{count} changes" |
|
666 | 669 | label_change_view_all: View all changes |
|
667 | 670 | label_personalize_page: Personalize this page |
|
668 | 671 | label_comment: Comment |
|
669 | 672 | label_comment_plural: Comments |
|
670 | 673 | label_x_comments: |
|
671 | 674 | zero: no comments |
|
672 | 675 | one: 1 comment |
|
673 | 676 | other: "%{count} comments" |
|
674 | 677 | label_comment_add: Add a comment |
|
675 | 678 | label_comment_added: Comment added |
|
676 | 679 | label_comment_delete: Delete comments |
|
677 | 680 | label_query: Custom query |
|
678 | 681 | label_query_plural: Custom queries |
|
679 | 682 | label_query_new: New query |
|
680 | 683 | label_my_queries: My custom queries |
|
681 | 684 | label_filter_add: Add filter |
|
682 | 685 | label_filter_plural: Filters |
|
683 | 686 | label_equals: is |
|
684 | 687 | label_not_equals: is not |
|
685 | 688 | label_in_less_than: in less than |
|
686 | 689 | label_in_more_than: in more than |
|
687 | 690 | label_in_the_next_days: in the next |
|
688 | 691 | label_in_the_past_days: in the past |
|
689 | 692 | label_greater_or_equal: '>=' |
|
690 | 693 | label_less_or_equal: '<=' |
|
691 | 694 | label_between: between |
|
692 | 695 | label_in: in |
|
693 | 696 | label_today: today |
|
694 | 697 | label_all_time: all time |
|
695 | 698 | label_yesterday: yesterday |
|
696 | 699 | label_this_week: this week |
|
697 | 700 | label_last_week: last week |
|
698 | 701 | label_last_n_weeks: "last %{count} weeks" |
|
699 | 702 | label_last_n_days: "last %{count} days" |
|
700 | 703 | label_this_month: this month |
|
701 | 704 | label_last_month: last month |
|
702 | 705 | label_this_year: this year |
|
703 | 706 | label_date_range: Date range |
|
704 | 707 | label_less_than_ago: less than days ago |
|
705 | 708 | label_more_than_ago: more than days ago |
|
706 | 709 | label_ago: days ago |
|
707 | 710 | label_contains: contains |
|
708 | 711 | label_not_contains: doesn't contain |
|
709 | 712 | label_any_issues_in_project: any issues in project |
|
710 | 713 | label_any_issues_not_in_project: any issues not in project |
|
711 | 714 | label_no_issues_in_project: no issues in project |
|
712 | 715 | label_day_plural: days |
|
713 | 716 | label_repository: Repository |
|
714 | 717 | label_repository_new: New repository |
|
715 | 718 | label_repository_plural: Repositories |
|
716 | 719 | label_browse: Browse |
|
717 | 720 | label_branch: Branch |
|
718 | 721 | label_tag: Tag |
|
719 | 722 | label_revision: Revision |
|
720 | 723 | label_revision_plural: Revisions |
|
721 | 724 | label_revision_id: "Revision %{value}" |
|
722 | 725 | label_associated_revisions: Associated revisions |
|
723 | 726 | label_added: added |
|
724 | 727 | label_modified: modified |
|
725 | 728 | label_copied: copied |
|
726 | 729 | label_renamed: renamed |
|
727 | 730 | label_deleted: deleted |
|
728 | 731 | label_latest_revision: Latest revision |
|
729 | 732 | label_latest_revision_plural: Latest revisions |
|
730 | 733 | label_view_revisions: View revisions |
|
731 | 734 | label_view_all_revisions: View all revisions |
|
732 | 735 | label_max_size: Maximum size |
|
733 | 736 | label_sort_highest: Move to top |
|
734 | 737 | label_sort_higher: Move up |
|
735 | 738 | label_sort_lower: Move down |
|
736 | 739 | label_sort_lowest: Move to bottom |
|
737 | 740 | label_roadmap: Roadmap |
|
738 | 741 | label_roadmap_due_in: "Due in %{value}" |
|
739 | 742 | label_roadmap_overdue: "%{value} late" |
|
740 | 743 | label_roadmap_no_issues: No issues for this version |
|
741 | 744 | label_search: Search |
|
742 | 745 | label_result_plural: Results |
|
743 | 746 | label_all_words: All words |
|
744 | 747 | label_wiki: Wiki |
|
745 | 748 | label_wiki_edit: Wiki edit |
|
746 | 749 | label_wiki_edit_plural: Wiki edits |
|
747 | 750 | label_wiki_page: Wiki page |
|
748 | 751 | label_wiki_page_plural: Wiki pages |
|
749 | 752 | label_index_by_title: Index by title |
|
750 | 753 | label_index_by_date: Index by date |
|
751 | 754 | label_current_version: Current version |
|
752 | 755 | label_preview: Preview |
|
753 | 756 | label_feed_plural: Feeds |
|
754 | 757 | label_changes_details: Details of all changes |
|
755 | 758 | label_issue_tracking: Issue tracking |
|
756 | 759 | label_spent_time: Spent time |
|
757 | 760 | label_total_spent_time: Total spent time |
|
758 | 761 | label_overall_spent_time: Overall spent time |
|
759 | 762 | label_f_hour: "%{value} hour" |
|
760 | 763 | label_f_hour_plural: "%{value} hours" |
|
761 | 764 | label_f_hour_short: "%{value} h" |
|
762 | 765 | label_time_tracking: Time tracking |
|
763 | 766 | label_change_plural: Changes |
|
764 | 767 | label_statistics: Statistics |
|
765 | 768 | label_commits_per_month: Commits per month |
|
766 | 769 | label_commits_per_author: Commits per author |
|
767 | 770 | label_diff: diff |
|
768 | 771 | label_view_diff: View differences |
|
769 | 772 | label_diff_inline: inline |
|
770 | 773 | label_diff_side_by_side: side by side |
|
771 | 774 | label_options: Options |
|
772 | 775 | label_copy_workflow_from: Copy workflow from |
|
773 | 776 | label_permissions_report: Permissions report |
|
774 | 777 | label_watched_issues: Watched issues |
|
775 | 778 | label_related_issues: Related issues |
|
776 | 779 | label_applied_status: Applied status |
|
777 | 780 | label_loading: Loading... |
|
778 | 781 | label_relation_new: New relation |
|
779 | 782 | label_relation_delete: Delete relation |
|
780 | 783 | label_relates_to: Related to |
|
781 | 784 | label_duplicates: Duplicates |
|
782 | 785 | label_duplicated_by: Duplicated by |
|
783 | 786 | label_blocks: Blocks |
|
784 | 787 | label_blocked_by: Blocked by |
|
785 | 788 | label_precedes: Precedes |
|
786 | 789 | label_follows: Follows |
|
787 | 790 | label_copied_to: Copied to |
|
788 | 791 | label_copied_from: Copied from |
|
789 | 792 | label_end_to_start: end to start |
|
790 | 793 | label_end_to_end: end to end |
|
791 | 794 | label_start_to_start: start to start |
|
792 | 795 | label_start_to_end: start to end |
|
793 | 796 | label_stay_logged_in: Stay logged in |
|
794 | 797 | label_disabled: disabled |
|
795 | 798 | label_show_completed_versions: Show completed versions |
|
796 | 799 | label_me: me |
|
797 | 800 | label_board: Forum |
|
798 | 801 | label_board_new: New forum |
|
799 | 802 | label_board_plural: Forums |
|
800 | 803 | label_board_locked: Locked |
|
801 | 804 | label_board_sticky: Sticky |
|
802 | 805 | label_topic_plural: Topics |
|
803 | 806 | label_message_plural: Messages |
|
804 | 807 | label_message_last: Last message |
|
805 | 808 | label_message_new: New message |
|
806 | 809 | label_message_posted: Message added |
|
807 | 810 | label_reply_plural: Replies |
|
808 | 811 | label_send_information: Send account information to the user |
|
809 | 812 | label_year: Year |
|
810 | 813 | label_month: Month |
|
811 | 814 | label_week: Week |
|
812 | 815 | label_date_from: From |
|
813 | 816 | label_date_to: To |
|
814 | 817 | label_language_based: Based on user's language |
|
815 | 818 | label_sort_by: "Sort by %{value}" |
|
816 | 819 | label_send_test_email: Send a test email |
|
817 | 820 | label_feeds_access_key: Atom access key |
|
818 | 821 | label_missing_feeds_access_key: Missing a Atom access key |
|
819 | 822 | label_feeds_access_key_created_on: "Atom access key created %{value} ago" |
|
820 | 823 | label_module_plural: Modules |
|
821 | 824 | label_added_time_by: "Added by %{author} %{age} ago" |
|
822 | 825 | label_updated_time_by: "Updated by %{author} %{age} ago" |
|
823 | 826 | label_updated_time: "Updated %{value} ago" |
|
824 | 827 | label_jump_to_a_project: Jump to a project... |
|
825 | 828 | label_file_plural: Files |
|
826 | 829 | label_changeset_plural: Changesets |
|
827 | 830 | label_default_columns: Default columns |
|
828 | 831 | label_no_change_option: (No change) |
|
829 | 832 | label_bulk_edit_selected_issues: Bulk edit selected issues |
|
830 | 833 | label_bulk_edit_selected_time_entries: Bulk edit selected time entries |
|
831 | 834 | label_theme: Theme |
|
832 | 835 | label_default: Default |
|
833 | 836 | label_search_titles_only: Search titles only |
|
834 | 837 | label_user_mail_option_all: "For any event on all my projects" |
|
835 | 838 | label_user_mail_option_selected: "For any event on the selected projects only..." |
|
836 | 839 | label_user_mail_option_none: "No events" |
|
837 | 840 | label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in" |
|
838 | 841 | label_user_mail_option_only_assigned: "Only for things I am assigned to" |
|
839 | 842 | label_user_mail_option_only_owner: "Only for things I am the owner of" |
|
840 | 843 | label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" |
|
841 | 844 | label_registration_activation_by_email: account activation by email |
|
842 | 845 | label_registration_manual_activation: manual account activation |
|
843 | 846 | label_registration_automatic_activation: automatic account activation |
|
844 | 847 | label_display_per_page: "Per page: %{value}" |
|
845 | 848 | label_age: Age |
|
846 | 849 | label_change_properties: Change properties |
|
847 | 850 | label_general: General |
|
848 | 851 | label_more: More |
|
849 | 852 | label_scm: SCM |
|
850 | 853 | label_plugins: Plugins |
|
851 | 854 | label_ldap_authentication: LDAP authentication |
|
852 | 855 | label_downloads_abbr: D/L |
|
853 | 856 | label_optional_description: Optional description |
|
854 | 857 | label_add_another_file: Add another file |
|
855 | 858 | label_preferences: Preferences |
|
856 | 859 | label_chronological_order: In chronological order |
|
857 | 860 | label_reverse_chronological_order: In reverse chronological order |
|
858 | 861 | label_planning: Planning |
|
859 | 862 | label_incoming_emails: Incoming emails |
|
860 | 863 | label_generate_key: Generate a key |
|
861 | 864 | label_issue_watchers: Watchers |
|
862 | 865 | label_example: Example |
|
863 | 866 | label_display: Display |
|
864 | 867 | label_sort: Sort |
|
865 | 868 | label_ascending: Ascending |
|
866 | 869 | label_descending: Descending |
|
867 | 870 | label_date_from_to: From %{start} to %{end} |
|
868 | 871 | label_wiki_content_added: Wiki page added |
|
869 | 872 | label_wiki_content_updated: Wiki page updated |
|
870 | 873 | label_group: Group |
|
871 | 874 | label_group_plural: Groups |
|
872 | 875 | label_group_new: New group |
|
873 | 876 | label_group_anonymous: Anonymous users |
|
874 | 877 | label_group_non_member: Non member users |
|
875 | 878 | label_time_entry_plural: Spent time |
|
876 | 879 | label_version_sharing_none: Not shared |
|
877 | 880 | label_version_sharing_descendants: With subprojects |
|
878 | 881 | label_version_sharing_hierarchy: With project hierarchy |
|
879 | 882 | label_version_sharing_tree: With project tree |
|
880 | 883 | label_version_sharing_system: With all projects |
|
881 | 884 | label_update_issue_done_ratios: Update issue done ratios |
|
882 | 885 | label_copy_source: Source |
|
883 | 886 | label_copy_target: Target |
|
884 | 887 | label_copy_same_as_target: Same as target |
|
885 | 888 | label_display_used_statuses_only: Only display statuses that are used by this tracker |
|
886 | 889 | label_api_access_key: API access key |
|
887 | 890 | label_missing_api_access_key: Missing an API access key |
|
888 | 891 | label_api_access_key_created_on: "API access key created %{value} ago" |
|
889 | 892 | label_profile: Profile |
|
890 | 893 | label_subtask_plural: Subtasks |
|
891 | 894 | label_project_copy_notifications: Send email notifications during the project copy |
|
892 | 895 | label_principal_search: "Search for user or group:" |
|
893 | 896 | label_user_search: "Search for user:" |
|
894 | 897 | label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author |
|
895 | 898 | label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee |
|
896 | 899 | label_issues_visibility_all: All issues |
|
897 | 900 | label_issues_visibility_public: All non private issues |
|
898 | 901 | label_issues_visibility_own: Issues created by or assigned to the user |
|
899 | 902 | label_git_report_last_commit: Report last commit for files and directories |
|
900 | 903 | label_parent_revision: Parent |
|
901 | 904 | label_child_revision: Child |
|
902 | 905 | label_export_options: "%{export_format} export options" |
|
903 | 906 | label_copy_attachments: Copy attachments |
|
904 | 907 | label_copy_subtasks: Copy subtasks |
|
905 | 908 | label_item_position: "%{position} of %{count}" |
|
906 | 909 | label_completed_versions: Completed versions |
|
907 | 910 | label_search_for_watchers: Search for watchers to add |
|
908 | 911 | label_session_expiration: Session expiration |
|
909 | 912 | label_show_closed_projects: View closed projects |
|
910 | 913 | label_status_transitions: Status transitions |
|
911 | 914 | label_fields_permissions: Fields permissions |
|
912 | 915 | label_readonly: Read-only |
|
913 | 916 | label_required: Required |
|
914 | 917 | label_hidden: Hidden |
|
915 | 918 | label_attribute_of_project: "Project's %{name}" |
|
916 | 919 | label_attribute_of_issue: "Issue's %{name}" |
|
917 | 920 | label_attribute_of_author: "Author's %{name}" |
|
918 | 921 | label_attribute_of_assigned_to: "Assignee's %{name}" |
|
919 | 922 | label_attribute_of_user: "User's %{name}" |
|
920 | 923 | label_attribute_of_fixed_version: "Target version's %{name}" |
|
921 | 924 | label_cross_project_descendants: With subprojects |
|
922 | 925 | label_cross_project_tree: With project tree |
|
923 | 926 | label_cross_project_hierarchy: With project hierarchy |
|
924 | 927 | label_cross_project_system: With all projects |
|
925 | 928 | label_gantt_progress_line: Progress line |
|
926 | 929 | label_visibility_private: to me only |
|
927 | 930 | label_visibility_roles: to these roles only |
|
928 | 931 | label_visibility_public: to any users |
|
929 | 932 | label_link: Link |
|
930 | 933 | label_only: only |
|
931 | 934 | label_drop_down_list: drop-down list |
|
932 | 935 | label_checkboxes: checkboxes |
|
933 | 936 | label_radio_buttons: radio buttons |
|
934 | 937 | label_link_values_to: Link values to URL |
|
935 | 938 | label_custom_field_select_type: Select the type of object to which the custom field is to be attached |
|
936 | 939 | label_check_for_updates: Check for updates |
|
937 | 940 | label_latest_compatible_version: Latest compatible version |
|
938 | 941 | label_unknown_plugin: Unknown plugin |
|
939 | 942 | label_add_projects: Add projects |
|
940 | 943 | label_users_visibility_all: All active users |
|
941 | 944 | label_users_visibility_members_of_visible_projects: Members of visible projects |
|
942 | 945 | label_edit_attachments: Edit attached files |
|
943 | 946 | label_link_copied_issue: Link copied issue |
|
944 | 947 | label_ask: Ask |
|
945 | 948 | label_search_attachments_yes: Search attachment filenames and descriptions |
|
946 | 949 | label_search_attachments_no: Do not search attachments |
|
947 | 950 | label_search_attachments_only: Search attachments only |
|
948 | 951 | label_search_open_issues_only: Open issues only |
|
949 | 952 | label_email_address_plural: Emails |
|
950 | 953 | label_email_address_add: Add email address |
|
951 | 954 | label_enable_notifications: Enable notifications |
|
952 | 955 | label_disable_notifications: Disable notifications |
|
953 | 956 | label_blank_value: blank |
|
954 | 957 | label_parent_task_attributes: Parent tasks attributes |
|
955 | 958 | label_parent_task_attributes_derived: Calculated from subtasks |
|
956 | 959 | label_parent_task_attributes_independent: Independent of subtasks |
|
957 | 960 | label_time_entries_visibility_all: All time entries |
|
958 | 961 | label_time_entries_visibility_own: Time entries created by the user |
|
959 | 962 | label_member_management: Member management |
|
960 | 963 | label_member_management_all_roles: All roles |
|
961 | 964 | label_member_management_selected_roles_only: Only these roles |
|
962 | 965 | label_import_issues: Import issues |
|
963 | 966 | label_select_file_to_import: Select the file to import |
|
964 | 967 | label_fields_separator: Field separator |
|
965 | 968 | label_fields_wrapper: Field wrapper |
|
966 | 969 | label_encoding: Encoding |
|
967 | 970 | label_comma_char: Comma |
|
968 | 971 | label_semi_colon_char: Semi colon |
|
969 | 972 | label_quote_char: Quote |
|
970 | 973 | label_double_quote_char: Double quote |
|
971 | 974 | label_fields_mapping: Fields mapping |
|
972 | 975 | label_file_content_preview: File content preview |
|
973 | 976 | label_create_missing_values: Create missing values |
|
974 | 977 | label_api: API |
|
975 | 978 | label_field_format_enumeration: Key/value list |
|
976 | 979 | |
|
977 | 980 | button_login: Login |
|
978 | 981 | button_submit: Submit |
|
979 | 982 | button_save: Save |
|
980 | 983 | button_check_all: Check all |
|
981 | 984 | button_uncheck_all: Uncheck all |
|
982 | 985 | button_collapse_all: Collapse all |
|
983 | 986 | button_expand_all: Expand all |
|
984 | 987 | button_delete: Delete |
|
985 | 988 | button_create: Create |
|
986 | 989 | button_create_and_continue: Create and continue |
|
987 | 990 | button_test: Test |
|
988 | 991 | button_edit: Edit |
|
989 | 992 | button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" |
|
990 | 993 | button_add: Add |
|
991 | 994 | button_change: Change |
|
992 | 995 | button_apply: Apply |
|
993 | 996 | button_clear: Clear |
|
994 | 997 | button_lock: Lock |
|
995 | 998 | button_unlock: Unlock |
|
996 | 999 | button_download: Download |
|
997 | 1000 | button_list: List |
|
998 | 1001 | button_view: View |
|
999 | 1002 | button_move: Move |
|
1000 | 1003 | button_move_and_follow: Move and follow |
|
1001 | 1004 | button_back: Back |
|
1002 | 1005 | button_cancel: Cancel |
|
1003 | 1006 | button_activate: Activate |
|
1004 | 1007 | button_sort: Sort |
|
1005 | 1008 | button_log_time: Log time |
|
1006 | 1009 | button_rollback: Rollback to this version |
|
1007 | 1010 | button_watch: Watch |
|
1008 | 1011 | button_unwatch: Unwatch |
|
1009 | 1012 | button_reply: Reply |
|
1010 | 1013 | button_archive: Archive |
|
1011 | 1014 | button_unarchive: Unarchive |
|
1012 | 1015 | button_reset: Reset |
|
1013 | 1016 | button_rename: Rename |
|
1014 | 1017 | button_change_password: Change password |
|
1015 | 1018 | button_copy: Copy |
|
1016 | 1019 | button_copy_and_follow: Copy and follow |
|
1017 | 1020 | button_annotate: Annotate |
|
1018 | 1021 | button_update: Update |
|
1019 | 1022 | button_configure: Configure |
|
1020 | 1023 | button_quote: Quote |
|
1021 | 1024 | button_duplicate: Duplicate |
|
1022 | 1025 | button_show: Show |
|
1023 | 1026 | button_hide: Hide |
|
1024 | 1027 | button_edit_section: Edit this section |
|
1025 | 1028 | button_export: Export |
|
1026 | 1029 | button_delete_my_account: Delete my account |
|
1027 | 1030 | button_close: Close |
|
1028 | 1031 | button_reopen: Reopen |
|
1029 | 1032 | button_import: Import |
|
1030 | 1033 | |
|
1031 | 1034 | status_active: active |
|
1032 | 1035 | status_registered: registered |
|
1033 | 1036 | status_locked: locked |
|
1034 | 1037 | |
|
1035 | 1038 | project_status_active: active |
|
1036 | 1039 | project_status_closed: closed |
|
1037 | 1040 | project_status_archived: archived |
|
1038 | 1041 | |
|
1039 | 1042 | version_status_open: open |
|
1040 | 1043 | version_status_locked: locked |
|
1041 | 1044 | version_status_closed: closed |
|
1042 | 1045 | |
|
1043 | 1046 | field_active: Active |
|
1044 | 1047 | |
|
1045 | 1048 | text_select_mail_notifications: Select actions for which email notifications should be sent. |
|
1046 | 1049 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
1047 | 1050 | text_min_max_length_info: 0 means no restriction |
|
1048 | 1051 | text_project_destroy_confirmation: Are you sure you want to delete this project and related data? |
|
1049 | 1052 | text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted." |
|
1050 | 1053 | text_workflow_edit: Select a role and a tracker to edit the workflow |
|
1051 | 1054 | text_are_you_sure: Are you sure? |
|
1052 | 1055 | text_journal_changed: "%{label} changed from %{old} to %{new}" |
|
1053 | 1056 | text_journal_changed_no_detail: "%{label} updated" |
|
1054 | 1057 | text_journal_set_to: "%{label} set to %{value}" |
|
1055 | 1058 | text_journal_deleted: "%{label} deleted (%{old})" |
|
1056 | 1059 | text_journal_added: "%{label} %{value} added" |
|
1057 | 1060 | text_tip_issue_begin_day: issue beginning this day |
|
1058 | 1061 | text_tip_issue_end_day: issue ending this day |
|
1059 | 1062 | text_tip_issue_begin_end_day: issue beginning and ending this day |
|
1060 | 1063 | 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.' |
|
1061 | 1064 | text_caracters_maximum: "%{count} characters maximum." |
|
1062 | 1065 | text_caracters_minimum: "Must be at least %{count} characters long." |
|
1063 | 1066 | text_length_between: "Length between %{min} and %{max} characters." |
|
1064 | 1067 | text_tracker_no_workflow: No workflow defined for this tracker |
|
1065 | 1068 | text_unallowed_characters: Unallowed characters |
|
1066 | 1069 | text_comma_separated: Multiple values allowed (comma separated). |
|
1067 | 1070 | text_line_separated: Multiple values allowed (one line for each value). |
|
1068 | 1071 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
1069 | 1072 | text_issue_added: "Issue %{id} has been reported by %{author}." |
|
1070 | 1073 | text_issue_updated: "Issue %{id} has been updated by %{author}." |
|
1071 | 1074 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content? |
|
1072 | 1075 | text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?" |
|
1073 | 1076 | text_issue_category_destroy_assignments: Remove category assignments |
|
1074 | 1077 | text_issue_category_reassign_to: Reassign issues to this category |
|
1075 | 1078 | 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)." |
|
1076 | 1079 | 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." |
|
1077 | 1080 | text_load_default_configuration: Load the default configuration |
|
1078 | 1081 | text_status_changed_by_changeset: "Applied in changeset %{value}." |
|
1079 | 1082 | text_time_logged_by_changeset: "Applied in changeset %{value}." |
|
1080 | 1083 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?' |
|
1081 | 1084 | text_issues_destroy_descendants_confirmation: "This will also delete %{count} subtask(s)." |
|
1082 | 1085 | text_time_entries_destroy_confirmation: 'Are you sure you want to delete the selected time entr(y/ies)?' |
|
1083 | 1086 | text_select_project_modules: 'Select modules to enable for this project:' |
|
1084 | 1087 | text_default_administrator_account_changed: Default administrator account changed |
|
1085 | 1088 | text_file_repository_writable: Attachments directory writable |
|
1086 | 1089 | text_plugin_assets_writable: Plugin assets directory writable |
|
1087 | 1090 | text_rmagick_available: RMagick available (optional) |
|
1088 | 1091 | text_convert_available: ImageMagick convert available (optional) |
|
1089 | 1092 | text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?" |
|
1090 | 1093 | text_destroy_time_entries: Delete reported hours |
|
1091 | 1094 | text_assign_time_entries_to_project: Assign reported hours to the project |
|
1092 | 1095 | text_reassign_time_entries: 'Reassign reported hours to this issue:' |
|
1093 | 1096 | text_user_wrote: "%{value} wrote:" |
|
1094 | 1097 | text_enumeration_destroy_question: "%{count} objects are assigned to the value β%{name}β." |
|
1095 | 1098 | text_enumeration_category_reassign_to: 'Reassign them to this value:' |
|
1096 | 1099 | 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." |
|
1097 | 1100 | 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." |
|
1098 | 1101 | text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' |
|
1099 | 1102 | text_custom_field_possible_values_info: 'One line for each value' |
|
1100 | 1103 | text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" |
|
1101 | 1104 | text_wiki_page_nullify_children: "Keep child pages as root pages" |
|
1102 | 1105 | text_wiki_page_destroy_children: "Delete child pages and all their descendants" |
|
1103 | 1106 | text_wiki_page_reassign_children: "Reassign child pages to this parent page" |
|
1104 | 1107 | 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?" |
|
1105 | 1108 | text_zoom_in: Zoom in |
|
1106 | 1109 | text_zoom_out: Zoom out |
|
1107 | 1110 | text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page." |
|
1108 | 1111 | text_scm_path_encoding_note: "Default: UTF-8" |
|
1109 | 1112 | text_subversion_repository_note: "Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://" |
|
1110 | 1113 | text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) |
|
1111 | 1114 | text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) |
|
1112 | 1115 | text_scm_command: Command |
|
1113 | 1116 | text_scm_command_version: Version |
|
1114 | 1117 | text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. |
|
1115 | 1118 | text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. |
|
1116 | 1119 | text_issue_conflict_resolution_overwrite: "Apply my changes anyway (previous notes will be kept but some changes may be overwritten)" |
|
1117 | 1120 | text_issue_conflict_resolution_add_notes: "Add my notes and discard my other changes" |
|
1118 | 1121 | text_issue_conflict_resolution_cancel: "Discard all my changes and redisplay %{link}" |
|
1119 | 1122 | text_account_destroy_confirmation: "Are you sure you want to proceed?\nYour account will be permanently deleted, with no way to reactivate it." |
|
1120 | 1123 | text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." |
|
1121 | 1124 | text_project_closed: This project is closed and read-only. |
|
1122 | 1125 | text_turning_multiple_off: "If you disable multiple values, multiple values will be removed in order to preserve only one value per item." |
|
1123 | 1126 | |
|
1124 | 1127 | default_role_manager: Manager |
|
1125 | 1128 | default_role_developer: Developer |
|
1126 | 1129 | default_role_reporter: Reporter |
|
1127 | 1130 | default_tracker_bug: Bug |
|
1128 | 1131 | default_tracker_feature: Feature |
|
1129 | 1132 | default_tracker_support: Support |
|
1130 | 1133 | default_issue_status_new: New |
|
1131 | 1134 | default_issue_status_in_progress: In Progress |
|
1132 | 1135 | default_issue_status_resolved: Resolved |
|
1133 | 1136 | default_issue_status_feedback: Feedback |
|
1134 | 1137 | default_issue_status_closed: Closed |
|
1135 | 1138 | default_issue_status_rejected: Rejected |
|
1136 | 1139 | default_doc_category_user: User documentation |
|
1137 | 1140 | default_doc_category_tech: Technical documentation |
|
1138 | 1141 | default_priority_low: Low |
|
1139 | 1142 | default_priority_normal: Normal |
|
1140 | 1143 | default_priority_high: High |
|
1141 | 1144 | default_priority_urgent: Urgent |
|
1142 | 1145 | default_priority_immediate: Immediate |
|
1143 | 1146 | default_activity_design: Design |
|
1144 | 1147 | default_activity_development: Development |
|
1145 | 1148 | |
|
1146 | 1149 | enumeration_issue_priorities: Issue priorities |
|
1147 | 1150 | enumeration_doc_categories: Document categories |
|
1148 | 1151 | enumeration_activities: Activities (time tracking) |
|
1149 | 1152 | enumeration_system_activity: System Activity |
|
1150 | 1153 | description_filter: Filter |
|
1151 | 1154 | description_search: Searchfield |
|
1152 | 1155 | description_choose_project: Projects |
|
1153 | 1156 | description_project_scope: Search scope |
|
1154 | 1157 | description_notes: Notes |
|
1155 | 1158 | description_message_content: Message content |
|
1156 | 1159 | description_query_sort_criteria_attribute: Sort attribute |
|
1157 | 1160 | description_query_sort_criteria_direction: Sort direction |
|
1158 | 1161 | description_user_mail_notification: Mail notification settings |
|
1159 | 1162 | description_available_columns: Available Columns |
|
1160 | 1163 | description_selected_columns: Selected Columns |
|
1161 | 1164 | description_all_columns: All Columns |
|
1162 | 1165 | description_issue_category_reassign: Choose issue category |
|
1163 | 1166 | description_wiki_subpages_reassign: Choose new parent page |
|
1164 | 1167 | description_date_range_list: Choose range from list |
|
1165 | 1168 | description_date_range_interval: Choose range by selecting start and end date |
|
1166 | 1169 | description_date_from: Enter start date |
|
1167 | 1170 | description_date_to: Enter end date |
|
1168 | 1171 | 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,1188 +1,1191 | |||
|
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: 'French (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 | notice_import_finished: "Les %{count} Γ©lΓ©ments ont Γ©tΓ© importΓ©(s)." |
|
206 | 206 | notice_import_finished_with_errors: "%{count} Γ©lΓ©ment(s) sur %{total} n'ont pas pu Γͺtre importΓ©(s)." |
|
207 | 207 | |
|
208 | 208 | error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramΓ©trage : %{value}" |
|
209 | 209 | error_scm_not_found: "L'entrΓ©e et/ou la rΓ©vision demandΓ©e n'existe pas dans le dΓ©pΓ΄t." |
|
210 | 210 | error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt : %{value}" |
|
211 | 211 | error_scm_annotate: "L'entrΓ©e n'existe pas ou ne peut pas Γͺtre annotΓ©e." |
|
212 | 212 | error_scm_annotate_big_text_file: Cette entrΓ©e ne peut pas Γͺtre annotΓ©e car elle excΓ¨de la taille maximale. |
|
213 | 213 | error_issue_not_found_in_project: "La demande n'existe pas ou n'appartient pas Γ ce projet" |
|
214 | 214 | error_no_tracker_in_project: "Aucun tracker n'est associΓ© Γ ce projet. VΓ©rifier la configuration du projet." |
|
215 | 215 | error_no_default_issue_status: "Aucun statut de demande n'est dΓ©fini par dΓ©faut. VΓ©rifier votre configuration (Administration -> Statuts de demandes)." |
|
216 | 216 | error_can_not_delete_custom_field: Impossible de supprimer le champ personnalisΓ© |
|
217 | 217 | error_can_not_delete_tracker: Ce tracker contient des demandes et ne peut pas Γͺtre supprimΓ©. |
|
218 | 218 | error_can_not_remove_role: Ce rΓ΄le est utilisΓ© et ne peut pas Γͺtre supprimΓ©. |
|
219 | 219 | error_can_not_reopen_issue_on_closed_version: 'Une demande assignΓ©e Γ une version fermΓ©e ne peut pas Γͺtre rΓ©ouverte' |
|
220 | 220 | error_can_not_archive_project: "Ce projet ne peut pas Γͺtre archivΓ©" |
|
221 | 221 | error_issue_done_ratios_not_updated: L'avancement des demandes n'a pas pu Γͺtre mis Γ jour. |
|
222 | 222 | error_workflow_copy_source: 'Veuillez sΓ©lectionner un tracker et/ou un rΓ΄le source' |
|
223 | 223 | error_workflow_copy_target: 'Veuillez sΓ©lectionner les trackers et rΓ΄les cibles' |
|
224 | 224 | error_unable_delete_issue_status: Impossible de supprimer le statut de demande |
|
225 | 225 | error_unable_to_connect: Connexion impossible (%{value}) |
|
226 | 226 | error_attachment_too_big: Ce fichier ne peut pas Γͺtre attachΓ© car il excΓ¨de la taille maximale autorisΓ©e (%{max_size}) |
|
227 | 227 | error_session_expired: "Votre session a expirΓ©. Veuillez vous reconnecter." |
|
228 | 228 | warning_attachments_not_saved: "%{count} fichier(s) n'ont pas pu Γͺtre sauvegardΓ©s." |
|
229 | 229 | error_password_expired: "Votre mot de passe a expirΓ© ou nΓ©cessite d'Γͺtre changΓ©." |
|
230 | 230 | error_invalid_file_encoding: "Le fichier n'est pas un fichier %{encoding} valide" |
|
231 | 231 | error_invalid_csv_file_or_settings: "Le fichier n'est pas un fichier CSV ou n'est pas conforme aux paramètres sélectionnés" |
|
232 | 232 | error_can_not_read_import_file: "Une erreur est survenue lors de la lecture du fichier Γ importer" |
|
233 | error_attachment_extension_not_allowed: "L'extension %{extension} n'est pas autorisΓ©e" | |
|
233 | 234 | |
|
234 | 235 | mail_subject_lost_password: "Votre mot de passe %{value}" |
|
235 | 236 | mail_body_lost_password: 'Pour changer votre mot de passe, cliquez sur le lien suivant :' |
|
236 | 237 | mail_subject_register: "Activation de votre compte %{value}" |
|
237 | 238 | mail_body_register: 'Pour activer votre compte, cliquez sur le lien suivant :' |
|
238 | 239 | mail_body_account_information_external: "Vous pouvez utiliser votre compte %{value} pour vous connecter." |
|
239 | 240 | mail_body_account_information: Paramètres de connexion de votre compte |
|
240 | 241 | mail_subject_account_activation_request: "Demande d'activation d'un compte %{value}" |
|
241 | 242 | mail_body_account_activation_request: "Un nouvel utilisateur (%{value}) s'est inscrit. Son compte nΓ©cessite votre approbation :" |
|
242 | 243 | mail_subject_reminder: "%{count} demande(s) arrivent Γ Γ©chΓ©ance (%{days})" |
|
243 | 244 | mail_body_reminder: "%{count} demande(s) qui vous sont assignΓ©es arrivent Γ Γ©chΓ©ance dans les %{days} prochains jours :" |
|
244 | 245 | mail_subject_wiki_content_added: "Page wiki '%{id}' ajoutΓ©e" |
|
245 | 246 | mail_body_wiki_content_added: "La page wiki '%{id}' a Γ©tΓ© ajoutΓ©e par %{author}." |
|
246 | 247 | mail_subject_wiki_content_updated: "Page wiki '%{id}' mise Γ jour" |
|
247 | 248 | mail_body_wiki_content_updated: "La page wiki '%{id}' a Γ©tΓ© mise Γ jour par %{author}." |
|
248 | 249 | |
|
249 | 250 | field_name: Nom |
|
250 | 251 | field_description: Description |
|
251 | 252 | field_summary: RΓ©sumΓ© |
|
252 | 253 | field_is_required: Obligatoire |
|
253 | 254 | field_firstname: PrΓ©nom |
|
254 | 255 | field_lastname: Nom |
|
255 | 256 | field_mail: Email |
|
256 | 257 | field_address: Email |
|
257 | 258 | field_filename: Fichier |
|
258 | 259 | field_filesize: Taille |
|
259 | 260 | field_downloads: TΓ©lΓ©chargements |
|
260 | 261 | field_author: Auteur |
|
261 | 262 | field_created_on: Créé |
|
262 | 263 | field_updated_on: Mis-Γ -jour |
|
263 | 264 | field_closed_on: FermΓ© |
|
264 | 265 | field_field_format: Format |
|
265 | 266 | field_is_for_all: Pour tous les projets |
|
266 | 267 | field_possible_values: Valeurs possibles |
|
267 | 268 | field_regexp: Expression régulière |
|
268 | 269 | field_min_length: Longueur minimum |
|
269 | 270 | field_max_length: Longueur maximum |
|
270 | 271 | field_value: Valeur |
|
271 | 272 | field_category: CatΓ©gorie |
|
272 | 273 | field_title: Titre |
|
273 | 274 | field_project: Projet |
|
274 | 275 | field_issue: Demande |
|
275 | 276 | field_status: Statut |
|
276 | 277 | field_notes: Notes |
|
277 | 278 | field_is_closed: Demande fermΓ©e |
|
278 | 279 | field_is_default: Valeur par dΓ©faut |
|
279 | 280 | field_tracker: Tracker |
|
280 | 281 | field_subject: Sujet |
|
281 | 282 | field_due_date: EchΓ©ance |
|
282 | 283 | field_assigned_to: AssignΓ© Γ |
|
283 | 284 | field_priority: PrioritΓ© |
|
284 | 285 | field_fixed_version: Version cible |
|
285 | 286 | field_user: Utilisateur |
|
286 | 287 | field_principal: Principal |
|
287 | 288 | field_role: RΓ΄le |
|
288 | 289 | field_homepage: Site web |
|
289 | 290 | field_is_public: Public |
|
290 | 291 | field_parent: Sous-projet de |
|
291 | 292 | field_is_in_roadmap: Demandes affichΓ©es dans la roadmap |
|
292 | 293 | field_login: Identifiant |
|
293 | 294 | field_mail_notification: Notifications par mail |
|
294 | 295 | field_admin: Administrateur |
|
295 | 296 | field_last_login_on: Dernière connexion |
|
296 | 297 | field_language: Langue |
|
297 | 298 | field_effective_date: Date |
|
298 | 299 | field_password: Mot de passe |
|
299 | 300 | field_new_password: Nouveau mot de passe |
|
300 | 301 | field_password_confirmation: Confirmation |
|
301 | 302 | field_version: Version |
|
302 | 303 | field_type: Type |
|
303 | 304 | field_host: HΓ΄te |
|
304 | 305 | field_port: Port |
|
305 | 306 | field_account: Compte |
|
306 | 307 | field_base_dn: Base DN |
|
307 | 308 | field_attr_login: Attribut Identifiant |
|
308 | 309 | field_attr_firstname: Attribut PrΓ©nom |
|
309 | 310 | field_attr_lastname: Attribut Nom |
|
310 | 311 | field_attr_mail: Attribut Email |
|
311 | 312 | field_onthefly: CrΓ©ation des utilisateurs Γ la volΓ©e |
|
312 | 313 | field_start_date: DΓ©but |
|
313 | 314 | field_done_ratio: "% rΓ©alisΓ©" |
|
314 | 315 | field_auth_source: Mode d'authentification |
|
315 | 316 | field_hide_mail: Cacher mon adresse mail |
|
316 | 317 | field_comments: Commentaire |
|
317 | 318 | field_url: URL |
|
318 | 319 | field_start_page: Page de dΓ©marrage |
|
319 | 320 | field_subproject: Sous-projet |
|
320 | 321 | field_hours: Heures |
|
321 | 322 | field_activity: ActivitΓ© |
|
322 | 323 | field_spent_on: Date |
|
323 | 324 | field_identifier: Identifiant |
|
324 | 325 | field_is_filter: UtilisΓ© comme filtre |
|
325 | 326 | field_issue_to: Demande liΓ©e |
|
326 | 327 | field_delay: Retard |
|
327 | 328 | field_assignable: Demandes assignables Γ ce rΓ΄le |
|
328 | 329 | field_redirect_existing_links: Rediriger les liens existants |
|
329 | 330 | field_estimated_hours: Temps estimΓ© |
|
330 | 331 | field_column_names: Colonnes |
|
331 | 332 | field_time_entries: Temps passΓ© |
|
332 | 333 | field_time_zone: Fuseau horaire |
|
333 | 334 | field_searchable: UtilisΓ© pour les recherches |
|
334 | 335 | field_default_value: Valeur par dΓ©faut |
|
335 | 336 | field_comments_sorting: Afficher les commentaires |
|
336 | 337 | field_parent_title: Page parent |
|
337 | 338 | field_editable: Modifiable |
|
338 | 339 | field_watcher: Observateur |
|
339 | 340 | field_identity_url: URL OpenID |
|
340 | 341 | field_content: Contenu |
|
341 | 342 | field_group_by: Grouper par |
|
342 | 343 | field_sharing: Partage |
|
343 | 344 | field_parent_issue: TΓ’che parente |
|
344 | 345 | field_member_of_group: Groupe de l'assignΓ© |
|
345 | 346 | field_assigned_to_role: RΓ΄le de l'assignΓ© |
|
346 | 347 | field_text: Champ texte |
|
347 | 348 | field_visible: Visible |
|
348 | 349 | field_warn_on_leaving_unsaved: "M'avertir lorsque je quitte une page contenant du texte non sauvegardΓ©" |
|
349 | 350 | field_issues_visibility: VisibilitΓ© des demandes |
|
350 | 351 | field_is_private: PrivΓ©e |
|
351 | 352 | field_commit_logs_encoding: Encodage des messages de commit |
|
352 | 353 | field_scm_path_encoding: Encodage des chemins |
|
353 | 354 | field_path_to_repository: Chemin du dΓ©pΓ΄t |
|
354 | 355 | field_root_directory: RΓ©pertoire racine |
|
355 | 356 | field_cvsroot: CVSROOT |
|
356 | 357 | field_cvs_module: Module |
|
357 | 358 | field_repository_is_default: DΓ©pΓ΄t principal |
|
358 | 359 | field_multiple: Valeurs multiples |
|
359 | 360 | field_auth_source_ldap_filter: Filtre LDAP |
|
360 | 361 | field_core_fields: Champs standards |
|
361 | 362 | field_timeout: "Timeout (en secondes)" |
|
362 | 363 | field_board_parent: Forum parent |
|
363 | 364 | field_private_notes: Notes privΓ©es |
|
364 | 365 | field_inherit_members: HΓ©riter les membres |
|
365 | 366 | field_generate_password: GΓ©nΓ©rer un mot de passe |
|
366 | 367 | field_must_change_passwd: Doit changer de mot de passe Γ la prochaine connexion |
|
367 | 368 | field_default_status: Statut par dΓ©faut |
|
368 | 369 | field_users_visibility: VisibilitΓ© des utilisateurs |
|
369 | 370 | field_time_entries_visibility: VisibilitΓ© du temps passΓ© |
|
370 | 371 | field_total_estimated_hours: Temps estimΓ© total |
|
371 | 372 | field_default_version: Version par dΓ©faut |
|
372 | 373 | |
|
373 | 374 | setting_app_title: Titre de l'application |
|
374 | 375 | setting_app_subtitle: Sous-titre de l'application |
|
375 | 376 | setting_welcome_text: Texte d'accueil |
|
376 | 377 | setting_default_language: Langue par dΓ©faut |
|
377 | 378 | setting_login_required: Authentification obligatoire |
|
378 | 379 | setting_self_registration: Inscription des nouveaux utilisateurs |
|
379 | 380 | setting_attachment_max_size: Taille maximale des fichiers |
|
380 | 381 | setting_issues_export_limit: Limite d'exportation des demandes |
|
381 | 382 | setting_mail_from: Adresse d'Γ©mission |
|
382 | 383 | setting_bcc_recipients: Destinataires en copie cachΓ©e (cci) |
|
383 | 384 | setting_plain_text_mail: Mail en texte brut (non HTML) |
|
384 | 385 | setting_host_name: Nom d'hΓ΄te et chemin |
|
385 | 386 | setting_text_formatting: Formatage du texte |
|
386 | 387 | setting_wiki_compression: Compression de l'historique des pages wiki |
|
387 | 388 | setting_feeds_limit: Nombre maximal d'Γ©lΓ©ments dans les flux Atom |
|
388 | 389 | setting_default_projects_public: DΓ©finir les nouveaux projets comme publics par dΓ©faut |
|
389 | 390 | setting_autofetch_changesets: RΓ©cupΓ©ration automatique des commits |
|
390 | 391 | setting_sys_api_enabled: Activer les WS pour la gestion des dΓ©pΓ΄ts |
|
391 | 392 | setting_commit_ref_keywords: Mots-clΓ©s de rΓ©fΓ©rencement |
|
392 | 393 | setting_commit_fix_keywords: Mots-clΓ©s de rΓ©solution |
|
393 | 394 | setting_autologin: DurΓ©e maximale de connexion automatique |
|
394 | 395 | setting_date_format: Format de date |
|
395 | 396 | setting_time_format: Format d'heure |
|
396 | 397 | setting_cross_project_issue_relations: Autoriser les relations entre demandes de diffΓ©rents projets |
|
397 | 398 | setting_cross_project_subtasks: Autoriser les sous-tΓ’ches dans des projets diffΓ©rents |
|
398 | 399 | setting_issue_list_default_columns: Colonnes affichΓ©es par dΓ©faut sur la liste des demandes |
|
399 | 400 | setting_repositories_encodings: Encodages des fichiers et des dΓ©pΓ΄ts |
|
400 | 401 | setting_emails_header: En-tΓͺte des emails |
|
401 | 402 | setting_emails_footer: Pied-de-page des emails |
|
402 | 403 | setting_protocol: Protocole |
|
403 | 404 | setting_per_page_options: Options d'objets affichΓ©s par page |
|
404 | 405 | setting_user_format: Format d'affichage des utilisateurs |
|
405 | 406 | setting_activity_days_default: Nombre de jours affichΓ©s sur l'activitΓ© des projets |
|
406 | 407 | setting_display_subprojects_issues: Afficher par dΓ©faut les demandes des sous-projets sur les projets principaux |
|
407 | 408 | setting_enabled_scm: SCM activΓ©s |
|
408 | 409 | setting_mail_handler_body_delimiters: "Tronquer les emails après l'une de ces lignes" |
|
409 | 410 | setting_mail_handler_api_enabled: "Activer le WS pour la rΓ©ception d'emails" |
|
410 | 411 | setting_mail_handler_api_key: ClΓ© de protection de l'API |
|
411 | 412 | setting_sequential_project_identifiers: GΓ©nΓ©rer des identifiants de projet sΓ©quentiels |
|
412 | 413 | setting_gravatar_enabled: Afficher les Gravatar des utilisateurs |
|
413 | 414 | setting_gravatar_default: Image Gravatar par dΓ©faut |
|
414 | 415 | setting_diff_max_lines_displayed: Nombre maximum de lignes de diff affichΓ©es |
|
415 | 416 | setting_file_max_size_displayed: Taille maximum des fichiers texte affichΓ©s en ligne |
|
416 | 417 | setting_repository_log_display_limit: "Nombre maximum de rΓ©visions affichΓ©es sur l'historique d'un fichier" |
|
417 | 418 | setting_openid: "Autoriser l'authentification et l'enregistrement OpenID" |
|
418 | 419 | setting_password_max_age: Expiration des mots de passe après |
|
419 | 420 | setting_password_min_length: Longueur minimum des mots de passe |
|
420 | 421 | setting_new_project_user_role_id: RΓ΄le donnΓ© Γ un utilisateur non-administrateur qui crΓ©e un projet |
|
421 | 422 | setting_default_projects_modules: Modules activΓ©s par dΓ©faut pour les nouveaux projets |
|
422 | 423 | setting_issue_done_ratio: Calcul de l'avancement des demandes |
|
423 | 424 | setting_issue_done_ratio_issue_field: 'Utiliser le champ % effectuΓ©' |
|
424 | 425 | setting_issue_done_ratio_issue_status: Utiliser le statut |
|
425 | 426 | setting_start_of_week: Jour de dΓ©but des calendriers |
|
426 | 427 | setting_rest_api_enabled: Activer l'API REST |
|
427 | 428 | setting_cache_formatted_text: Mettre en cache le texte formatΓ© |
|
428 | 429 | setting_default_notification_option: Option de notification par dΓ©faut |
|
429 | 430 | setting_commit_logtime_enabled: Permettre la saisie de temps |
|
430 | 431 | setting_commit_logtime_activity_id: ActivitΓ© pour le temps saisi |
|
431 | 432 | setting_gantt_items_limit: Nombre maximum d'Γ©lΓ©ments affichΓ©s sur le gantt |
|
432 | 433 | setting_issue_group_assignment: Permettre l'assignement des demandes aux groupes |
|
433 | 434 | 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 |
|
434 | 435 | setting_commit_cross_project_ref: Permettre le rΓ©fΓ©rencement et la rΓ©solution des demandes de tous les autres projets |
|
435 | 436 | setting_unsubscribe: Permettre aux utilisateurs de supprimer leur propre compte |
|
436 | 437 | setting_session_lifetime: DurΓ©e de vie maximale des sessions |
|
437 | 438 | setting_session_timeout: DurΓ©e maximale d'inactivitΓ© |
|
438 | 439 | setting_thumbnails_enabled: Afficher les vignettes des images |
|
439 | 440 | setting_thumbnails_size: Taille des vignettes (en pixels) |
|
440 | 441 | setting_non_working_week_days: Jours non travaillΓ©s |
|
441 | 442 | setting_jsonp_enabled: Activer le support JSONP |
|
442 | 443 | setting_default_projects_tracker_ids: Trackers par dΓ©faut pour les nouveaux projets |
|
443 | 444 | setting_mail_handler_excluded_filenames: Exclure les fichiers attachΓ©s par leur nom |
|
444 | 445 | setting_force_default_language_for_anonymous: Forcer la langue par dΓ©fault pour les utilisateurs anonymes |
|
445 | 446 | setting_force_default_language_for_loggedin: Forcer la langue par dΓ©fault pour les utilisateurs identifiΓ©s |
|
446 | 447 | setting_link_copied_issue: Lier les demandes lors de la copie |
|
447 | 448 | setting_max_additional_emails: Nombre maximal d'adresses email additionnelles |
|
448 | 449 | setting_search_results_per_page: RΓ©sultats de recherche affichΓ©s par page |
|
450 | setting_attachment_extensions_allowed: Extensions autorisΓ©es | |
|
451 | setting_attachment_extensions_denied: Extensions non autorisΓ©es | |
|
449 | 452 | |
|
450 | 453 | permission_add_project: CrΓ©er un projet |
|
451 | 454 | permission_add_subprojects: CrΓ©er des sous-projets |
|
452 | 455 | permission_edit_project: Modifier le projet |
|
453 | 456 | permission_close_project: Fermer / rΓ©ouvrir le projet |
|
454 | 457 | permission_select_project_modules: Choisir les modules |
|
455 | 458 | permission_manage_members: GΓ©rer les membres |
|
456 | 459 | permission_manage_project_activities: GΓ©rer les activitΓ©s |
|
457 | 460 | permission_manage_versions: GΓ©rer les versions |
|
458 | 461 | permission_manage_categories: GΓ©rer les catΓ©gories de demandes |
|
459 | 462 | permission_view_issues: Voir les demandes |
|
460 | 463 | permission_add_issues: CrΓ©er des demandes |
|
461 | 464 | permission_edit_issues: Modifier les demandes |
|
462 | 465 | permission_copy_issues: Copier les demandes |
|
463 | 466 | permission_manage_issue_relations: GΓ©rer les relations |
|
464 | 467 | permission_set_issues_private: Rendre les demandes publiques ou privΓ©es |
|
465 | 468 | permission_set_own_issues_private: Rendre ses propres demandes publiques ou privΓ©es |
|
466 | 469 | permission_add_issue_notes: Ajouter des notes |
|
467 | 470 | permission_edit_issue_notes: Modifier les notes |
|
468 | 471 | permission_edit_own_issue_notes: Modifier ses propres notes |
|
469 | 472 | permission_view_private_notes: Voir les notes privΓ©es |
|
470 | 473 | permission_set_notes_private: Rendre les notes privΓ©es |
|
471 | 474 | permission_move_issues: DΓ©placer les demandes |
|
472 | 475 | permission_delete_issues: Supprimer les demandes |
|
473 | 476 | permission_manage_public_queries: GΓ©rer les requΓͺtes publiques |
|
474 | 477 | permission_save_queries: Sauvegarder les requΓͺtes |
|
475 | 478 | permission_view_gantt: Voir le gantt |
|
476 | 479 | permission_view_calendar: Voir le calendrier |
|
477 | 480 | permission_view_issue_watchers: Voir la liste des observateurs |
|
478 | 481 | permission_add_issue_watchers: Ajouter des observateurs |
|
479 | 482 | permission_delete_issue_watchers: Supprimer des observateurs |
|
480 | 483 | permission_log_time: Saisir le temps passΓ© |
|
481 | 484 | permission_view_time_entries: Voir le temps passΓ© |
|
482 | 485 | permission_edit_time_entries: Modifier les temps passΓ©s |
|
483 | 486 | permission_edit_own_time_entries: Modifier son propre temps passΓ© |
|
484 | 487 | permission_manage_news: GΓ©rer les annonces |
|
485 | 488 | permission_comment_news: Commenter les annonces |
|
486 | 489 | permission_view_documents: Voir les documents |
|
487 | 490 | permission_add_documents: Ajouter des documents |
|
488 | 491 | permission_edit_documents: Modifier les documents |
|
489 | 492 | permission_delete_documents: Supprimer les documents |
|
490 | 493 | permission_manage_files: GΓ©rer les fichiers |
|
491 | 494 | permission_view_files: Voir les fichiers |
|
492 | 495 | permission_manage_wiki: GΓ©rer le wiki |
|
493 | 496 | permission_rename_wiki_pages: Renommer les pages |
|
494 | 497 | permission_delete_wiki_pages: Supprimer les pages |
|
495 | 498 | permission_view_wiki_pages: Voir le wiki |
|
496 | 499 | permission_view_wiki_edits: "Voir l'historique des modifications" |
|
497 | 500 | permission_edit_wiki_pages: Modifier les pages |
|
498 | 501 | permission_delete_wiki_pages_attachments: Supprimer les fichiers joints |
|
499 | 502 | permission_protect_wiki_pages: ProtΓ©ger les pages |
|
500 | 503 | permission_manage_repository: GΓ©rer le dΓ©pΓ΄t de sources |
|
501 | 504 | permission_browse_repository: Parcourir les sources |
|
502 | 505 | permission_view_changesets: Voir les rΓ©visions |
|
503 | 506 | permission_commit_access: Droit de commit |
|
504 | 507 | permission_manage_boards: GΓ©rer les forums |
|
505 | 508 | permission_view_messages: Voir les messages |
|
506 | 509 | permission_add_messages: Poster un message |
|
507 | 510 | permission_edit_messages: Modifier les messages |
|
508 | 511 | permission_edit_own_messages: Modifier ses propres messages |
|
509 | 512 | permission_delete_messages: Supprimer les messages |
|
510 | 513 | permission_delete_own_messages: Supprimer ses propres messages |
|
511 | 514 | permission_export_wiki_pages: Exporter les pages |
|
512 | 515 | permission_manage_subtasks: GΓ©rer les sous-tΓ’ches |
|
513 | 516 | permission_manage_related_issues: GΓ©rer les demandes associΓ©es |
|
514 | 517 | permission_import_issues: Importer des demandes |
|
515 | 518 | |
|
516 | 519 | project_module_issue_tracking: Suivi des demandes |
|
517 | 520 | project_module_time_tracking: Suivi du temps passΓ© |
|
518 | 521 | project_module_news: Publication d'annonces |
|
519 | 522 | project_module_documents: Publication de documents |
|
520 | 523 | project_module_files: Publication de fichiers |
|
521 | 524 | project_module_wiki: Wiki |
|
522 | 525 | project_module_repository: DΓ©pΓ΄t de sources |
|
523 | 526 | project_module_boards: Forums de discussion |
|
524 | 527 | project_module_calendar: Calendrier |
|
525 | 528 | project_module_gantt: Gantt |
|
526 | 529 | |
|
527 | 530 | label_user: Utilisateur |
|
528 | 531 | label_user_plural: Utilisateurs |
|
529 | 532 | label_user_new: Nouvel utilisateur |
|
530 | 533 | label_user_anonymous: Anonyme |
|
531 | 534 | label_project: Projet |
|
532 | 535 | label_project_new: Nouveau projet |
|
533 | 536 | label_project_plural: Projets |
|
534 | 537 | label_x_projects: |
|
535 | 538 | zero: aucun projet |
|
536 | 539 | one: un projet |
|
537 | 540 | other: "%{count} projets" |
|
538 | 541 | label_project_all: Tous les projets |
|
539 | 542 | label_project_latest: Derniers projets |
|
540 | 543 | label_issue: Demande |
|
541 | 544 | label_issue_new: Nouvelle demande |
|
542 | 545 | label_issue_plural: Demandes |
|
543 | 546 | label_issue_view_all: Voir toutes les demandes |
|
544 | 547 | label_issues_by: "Demandes par %{value}" |
|
545 | 548 | label_issue_added: Demande ajoutΓ©e |
|
546 | 549 | label_issue_updated: Demande mise Γ jour |
|
547 | 550 | label_issue_note_added: Note ajoutΓ©e |
|
548 | 551 | label_issue_status_updated: Statut changΓ© |
|
549 | 552 | label_issue_assigned_to_updated: AssignΓ© changΓ© |
|
550 | 553 | label_issue_priority_updated: PrioritΓ© changΓ©e |
|
551 | 554 | label_document: Document |
|
552 | 555 | label_document_new: Nouveau document |
|
553 | 556 | label_document_plural: Documents |
|
554 | 557 | label_document_added: Document ajoutΓ© |
|
555 | 558 | label_role: RΓ΄le |
|
556 | 559 | label_role_plural: RΓ΄les |
|
557 | 560 | label_role_new: Nouveau rΓ΄le |
|
558 | 561 | label_role_and_permissions: RΓ΄les et permissions |
|
559 | 562 | label_role_anonymous: Anonyme |
|
560 | 563 | label_role_non_member: Non membre |
|
561 | 564 | label_member: Membre |
|
562 | 565 | label_member_new: Nouveau membre |
|
563 | 566 | label_member_plural: Membres |
|
564 | 567 | label_tracker: Tracker |
|
565 | 568 | label_tracker_plural: Trackers |
|
566 | 569 | label_tracker_new: Nouveau tracker |
|
567 | 570 | label_workflow: Workflow |
|
568 | 571 | label_issue_status: Statut de demandes |
|
569 | 572 | label_issue_status_plural: Statuts de demandes |
|
570 | 573 | label_issue_status_new: Nouveau statut |
|
571 | 574 | label_issue_category: CatΓ©gorie de demandes |
|
572 | 575 | label_issue_category_plural: CatΓ©gories de demandes |
|
573 | 576 | label_issue_category_new: Nouvelle catΓ©gorie |
|
574 | 577 | label_custom_field: Champ personnalisΓ© |
|
575 | 578 | label_custom_field_plural: Champs personnalisΓ©s |
|
576 | 579 | label_custom_field_new: Nouveau champ personnalisΓ© |
|
577 | 580 | label_enumerations: Listes de valeurs |
|
578 | 581 | label_enumeration_new: Nouvelle valeur |
|
579 | 582 | label_information: Information |
|
580 | 583 | label_information_plural: Informations |
|
581 | 584 | label_please_login: Identification |
|
582 | 585 | label_register: S'enregistrer |
|
583 | 586 | label_login_with_open_id_option: S'authentifier avec OpenID |
|
584 | 587 | label_password_lost: Mot de passe perdu |
|
585 | 588 | label_password_required: Confirmez votre mot de passe pour continuer |
|
586 | 589 | label_home: Accueil |
|
587 | 590 | label_my_page: Ma page |
|
588 | 591 | label_my_account: Mon compte |
|
589 | 592 | label_my_projects: Mes projets |
|
590 | 593 | label_my_page_block: Blocs disponibles |
|
591 | 594 | label_administration: Administration |
|
592 | 595 | label_login: Connexion |
|
593 | 596 | label_logout: DΓ©connexion |
|
594 | 597 | label_help: Aide |
|
595 | 598 | label_reported_issues: Demandes soumises |
|
596 | 599 | label_assigned_issues: Demandes assignΓ©es |
|
597 | 600 | label_assigned_to_me_issues: Demandes qui me sont assignΓ©es |
|
598 | 601 | label_last_login: Dernière connexion |
|
599 | 602 | label_registered_on: Inscrit le |
|
600 | 603 | label_activity: ActivitΓ© |
|
601 | 604 | label_overall_activity: ActivitΓ© globale |
|
602 | 605 | label_user_activity: "ActivitΓ© de %{value}" |
|
603 | 606 | label_new: Nouveau |
|
604 | 607 | label_logged_as: ConnectΓ© en tant que |
|
605 | 608 | label_environment: Environnement |
|
606 | 609 | label_authentication: Authentification |
|
607 | 610 | label_auth_source: Mode d'authentification |
|
608 | 611 | label_auth_source_new: Nouveau mode d'authentification |
|
609 | 612 | label_auth_source_plural: Modes d'authentification |
|
610 | 613 | label_subproject_plural: Sous-projets |
|
611 | 614 | label_subproject_new: Nouveau sous-projet |
|
612 | 615 | label_and_its_subprojects: "%{value} et ses sous-projets" |
|
613 | 616 | label_min_max_length: Longueurs mini - maxi |
|
614 | 617 | label_list: Liste |
|
615 | 618 | label_date: Date |
|
616 | 619 | label_integer: Entier |
|
617 | 620 | label_float: Nombre dΓ©cimal |
|
618 | 621 | label_boolean: BoolΓ©en |
|
619 | 622 | label_string: Texte |
|
620 | 623 | label_text: Texte long |
|
621 | 624 | label_attribute: Attribut |
|
622 | 625 | label_attribute_plural: Attributs |
|
623 | 626 | label_no_data: Aucune donnΓ©e Γ afficher |
|
624 | 627 | label_change_status: Changer le statut |
|
625 | 628 | label_history: Historique |
|
626 | 629 | label_attachment: Fichier |
|
627 | 630 | label_attachment_new: Nouveau fichier |
|
628 | 631 | label_attachment_delete: Supprimer le fichier |
|
629 | 632 | label_attachment_plural: Fichiers |
|
630 | 633 | label_file_added: Fichier ajoutΓ© |
|
631 | 634 | label_report: Rapport |
|
632 | 635 | label_report_plural: Rapports |
|
633 | 636 | label_news: Annonce |
|
634 | 637 | label_news_new: Nouvelle annonce |
|
635 | 638 | label_news_plural: Annonces |
|
636 | 639 | label_news_latest: Dernières annonces |
|
637 | 640 | label_news_view_all: Voir toutes les annonces |
|
638 | 641 | label_news_added: Annonce ajoutΓ©e |
|
639 | 642 | label_news_comment_added: Commentaire ajoutΓ© Γ une annonce |
|
640 | 643 | label_settings: Configuration |
|
641 | 644 | label_overview: AperΓ§u |
|
642 | 645 | label_version: Version |
|
643 | 646 | label_version_new: Nouvelle version |
|
644 | 647 | label_version_plural: Versions |
|
645 | 648 | label_close_versions: Fermer les versions terminΓ©es |
|
646 | 649 | label_confirmation: Confirmation |
|
647 | 650 | label_export_to: 'Formats disponibles :' |
|
648 | 651 | label_read: Lire... |
|
649 | 652 | label_public_projects: Projets publics |
|
650 | 653 | label_open_issues: ouvert |
|
651 | 654 | label_open_issues_plural: ouverts |
|
652 | 655 | label_closed_issues: fermΓ© |
|
653 | 656 | label_closed_issues_plural: fermΓ©s |
|
654 | 657 | label_x_open_issues_abbr: |
|
655 | 658 | zero: 0 ouverte |
|
656 | 659 | one: 1 ouverte |
|
657 | 660 | other: "%{count} ouvertes" |
|
658 | 661 | label_x_closed_issues_abbr: |
|
659 | 662 | zero: 0 fermΓ©e |
|
660 | 663 | one: 1 fermΓ©e |
|
661 | 664 | other: "%{count} fermΓ©es" |
|
662 | 665 | label_x_issues: |
|
663 | 666 | zero: 0 demande |
|
664 | 667 | one: 1 demande |
|
665 | 668 | other: "%{count} demandes" |
|
666 | 669 | label_total: Total |
|
667 | 670 | label_total_plural: Totaux |
|
668 | 671 | label_total_time: Temps total |
|
669 | 672 | label_permissions: Permissions |
|
670 | 673 | label_current_status: Statut actuel |
|
671 | 674 | label_new_statuses_allowed: Nouveaux statuts autorisΓ©s |
|
672 | 675 | label_all: tous |
|
673 | 676 | label_any: tous |
|
674 | 677 | label_none: aucun |
|
675 | 678 | label_nobody: personne |
|
676 | 679 | label_next: Suivant |
|
677 | 680 | label_previous: PrΓ©cΓ©dent |
|
678 | 681 | label_used_by: UtilisΓ© par |
|
679 | 682 | label_details: DΓ©tails |
|
680 | 683 | label_add_note: Ajouter une note |
|
681 | 684 | label_calendar: Calendrier |
|
682 | 685 | label_months_from: mois depuis |
|
683 | 686 | label_gantt: Gantt |
|
684 | 687 | label_internal: Interne |
|
685 | 688 | label_last_changes: "%{count} derniers changements" |
|
686 | 689 | label_change_view_all: Voir tous les changements |
|
687 | 690 | label_personalize_page: Personnaliser cette page |
|
688 | 691 | label_comment: Commentaire |
|
689 | 692 | label_comment_plural: Commentaires |
|
690 | 693 | label_x_comments: |
|
691 | 694 | zero: aucun commentaire |
|
692 | 695 | one: un commentaire |
|
693 | 696 | other: "%{count} commentaires" |
|
694 | 697 | label_comment_add: Ajouter un commentaire |
|
695 | 698 | label_comment_added: Commentaire ajoutΓ© |
|
696 | 699 | label_comment_delete: Supprimer les commentaires |
|
697 | 700 | label_query: Rapport personnalisΓ© |
|
698 | 701 | label_query_plural: Rapports personnalisΓ©s |
|
699 | 702 | label_query_new: Nouveau rapport |
|
700 | 703 | label_my_queries: Mes rapports personnalisΓ©s |
|
701 | 704 | label_filter_add: Ajouter le filtre |
|
702 | 705 | label_filter_plural: Filtres |
|
703 | 706 | label_equals: Γ©gal |
|
704 | 707 | label_not_equals: diffΓ©rent |
|
705 | 708 | label_in_less_than: dans moins de |
|
706 | 709 | label_in_more_than: dans plus de |
|
707 | 710 | label_in_the_next_days: dans les prochains jours |
|
708 | 711 | label_in_the_past_days: dans les derniers jours |
|
709 | 712 | label_greater_or_equal: '>=' |
|
710 | 713 | label_less_or_equal: '<=' |
|
711 | 714 | label_between: entre |
|
712 | 715 | label_in: dans |
|
713 | 716 | label_today: aujourd'hui |
|
714 | 717 | label_all_time: toute la pΓ©riode |
|
715 | 718 | label_yesterday: hier |
|
716 | 719 | label_this_week: cette semaine |
|
717 | 720 | label_last_week: la semaine dernière |
|
718 | 721 | label_last_n_weeks: "les %{count} dernières semaines" |
|
719 | 722 | label_last_n_days: "les %{count} derniers jours" |
|
720 | 723 | label_this_month: ce mois-ci |
|
721 | 724 | label_last_month: le mois dernier |
|
722 | 725 | label_this_year: cette annΓ©e |
|
723 | 726 | label_date_range: PΓ©riode |
|
724 | 727 | label_less_than_ago: il y a moins de |
|
725 | 728 | label_more_than_ago: il y a plus de |
|
726 | 729 | label_ago: il y a |
|
727 | 730 | label_contains: contient |
|
728 | 731 | label_not_contains: ne contient pas |
|
729 | 732 | label_any_issues_in_project: une demande du projet |
|
730 | 733 | label_any_issues_not_in_project: une demande hors du projet |
|
731 | 734 | label_no_issues_in_project: aucune demande du projet |
|
732 | 735 | label_day_plural: jours |
|
733 | 736 | label_repository: DΓ©pΓ΄t |
|
734 | 737 | label_repository_new: Nouveau dΓ©pΓ΄t |
|
735 | 738 | label_repository_plural: DΓ©pΓ΄ts |
|
736 | 739 | label_browse: Parcourir |
|
737 | 740 | label_branch: Branche |
|
738 | 741 | label_tag: Tag |
|
739 | 742 | label_revision: RΓ©vision |
|
740 | 743 | label_revision_plural: RΓ©visions |
|
741 | 744 | label_revision_id: "RΓ©vision %{value}" |
|
742 | 745 | label_associated_revisions: RΓ©visions associΓ©es |
|
743 | 746 | label_added: ajoutΓ© |
|
744 | 747 | label_modified: modifiΓ© |
|
745 | 748 | label_copied: copiΓ© |
|
746 | 749 | label_renamed: renommΓ© |
|
747 | 750 | label_deleted: supprimΓ© |
|
748 | 751 | label_latest_revision: Dernière révision |
|
749 | 752 | label_latest_revision_plural: Dernières révisions |
|
750 | 753 | label_view_revisions: Voir les rΓ©visions |
|
751 | 754 | label_view_all_revisions: Voir toutes les rΓ©visions |
|
752 | 755 | label_max_size: Taille maximale |
|
753 | 756 | label_sort_highest: Remonter en premier |
|
754 | 757 | label_sort_higher: Remonter |
|
755 | 758 | label_sort_lower: Descendre |
|
756 | 759 | label_sort_lowest: Descendre en dernier |
|
757 | 760 | label_roadmap: Roadmap |
|
758 | 761 | label_roadmap_due_in: "ΓchΓ©ance dans %{value}" |
|
759 | 762 | label_roadmap_overdue: "En retard de %{value}" |
|
760 | 763 | label_roadmap_no_issues: Aucune demande pour cette version |
|
761 | 764 | label_search: Recherche |
|
762 | 765 | label_result_plural: RΓ©sultats |
|
763 | 766 | label_all_words: Tous les mots |
|
764 | 767 | label_wiki: Wiki |
|
765 | 768 | label_wiki_edit: RΓ©vision wiki |
|
766 | 769 | label_wiki_edit_plural: RΓ©visions wiki |
|
767 | 770 | label_wiki_page: Page wiki |
|
768 | 771 | label_wiki_page_plural: Pages wiki |
|
769 | 772 | label_index_by_title: Index par titre |
|
770 | 773 | label_index_by_date: Index par date |
|
771 | 774 | label_current_version: Version actuelle |
|
772 | 775 | label_preview: PrΓ©visualisation |
|
773 | 776 | label_feed_plural: Flux Atom |
|
774 | 777 | label_changes_details: DΓ©tails de tous les changements |
|
775 | 778 | label_issue_tracking: Suivi des demandes |
|
776 | 779 | label_spent_time: Temps passΓ© |
|
777 | 780 | label_total_spent_time: Temps passΓ© total |
|
778 | 781 | label_overall_spent_time: Temps passΓ© global |
|
779 | 782 | label_f_hour: "%{value} heure" |
|
780 | 783 | label_f_hour_plural: "%{value} heures" |
|
781 | 784 | label_f_hour_short: "%{value} h" |
|
782 | 785 | label_time_tracking: Suivi du temps |
|
783 | 786 | label_change_plural: Changements |
|
784 | 787 | label_statistics: Statistiques |
|
785 | 788 | label_commits_per_month: Commits par mois |
|
786 | 789 | label_commits_per_author: Commits par auteur |
|
787 | 790 | label_diff: diff |
|
788 | 791 | label_view_diff: Voir les diffΓ©rences |
|
789 | 792 | label_diff_inline: en ligne |
|
790 | 793 | label_diff_side_by_side: cΓ΄te Γ cΓ΄te |
|
791 | 794 | label_options: Options |
|
792 | 795 | label_copy_workflow_from: Copier le workflow de |
|
793 | 796 | label_permissions_report: Synthèse des permissions |
|
794 | 797 | label_watched_issues: Demandes surveillΓ©es |
|
795 | 798 | label_related_issues: Demandes liΓ©es |
|
796 | 799 | label_applied_status: Statut appliquΓ© |
|
797 | 800 | label_loading: Chargement... |
|
798 | 801 | label_relation_new: Nouvelle relation |
|
799 | 802 | label_relation_delete: Supprimer la relation |
|
800 | 803 | label_relates_to: LiΓ© Γ |
|
801 | 804 | label_duplicates: Duplique |
|
802 | 805 | label_duplicated_by: DupliquΓ© par |
|
803 | 806 | label_blocks: Bloque |
|
804 | 807 | label_blocked_by: BloquΓ© par |
|
805 | 808 | label_precedes: Précède |
|
806 | 809 | label_follows: Suit |
|
807 | 810 | label_copied_to: CopiΓ© vers |
|
808 | 811 | label_copied_from: CopiΓ© depuis |
|
809 | 812 | label_end_to_start: fin Γ dΓ©but |
|
810 | 813 | label_end_to_end: fin Γ fin |
|
811 | 814 | label_start_to_start: dΓ©but Γ dΓ©but |
|
812 | 815 | label_start_to_end: dΓ©but Γ fin |
|
813 | 816 | label_stay_logged_in: Rester connectΓ© |
|
814 | 817 | label_disabled: dΓ©sactivΓ© |
|
815 | 818 | label_show_completed_versions: Voir les versions passΓ©es |
|
816 | 819 | label_me: moi |
|
817 | 820 | label_board: Forum |
|
818 | 821 | label_board_new: Nouveau forum |
|
819 | 822 | label_board_plural: Forums |
|
820 | 823 | label_board_locked: VerrouillΓ© |
|
821 | 824 | label_board_sticky: Sticky |
|
822 | 825 | label_topic_plural: Discussions |
|
823 | 826 | label_message_plural: Messages |
|
824 | 827 | label_message_last: Dernier message |
|
825 | 828 | label_message_new: Nouveau message |
|
826 | 829 | label_message_posted: Message ajoutΓ© |
|
827 | 830 | label_reply_plural: RΓ©ponses |
|
828 | 831 | label_send_information: Envoyer les informations Γ l'utilisateur |
|
829 | 832 | label_year: AnnΓ©e |
|
830 | 833 | label_month: Mois |
|
831 | 834 | label_week: Semaine |
|
832 | 835 | label_date_from: Du |
|
833 | 836 | label_date_to: Au |
|
834 | 837 | label_language_based: BasΓ© sur la langue de l'utilisateur |
|
835 | 838 | label_sort_by: "Trier par %{value}" |
|
836 | 839 | label_send_test_email: Envoyer un email de test |
|
837 | 840 | label_feeds_access_key: Clé d'accès Atom |
|
838 | 841 | label_missing_feeds_access_key: Clé d'accès Atom manquante |
|
839 | 842 | label_feeds_access_key_created_on: "Clé d'accès Atom créée il y a %{value}" |
|
840 | 843 | label_module_plural: Modules |
|
841 | 844 | label_added_time_by: "AjoutΓ© par %{author} il y a %{age}" |
|
842 | 845 | label_updated_time_by: "Mis Γ jour par %{author} il y a %{age}" |
|
843 | 846 | label_updated_time: "Mis Γ jour il y a %{value}" |
|
844 | 847 | label_jump_to_a_project: Aller Γ un projet... |
|
845 | 848 | label_file_plural: Fichiers |
|
846 | 849 | label_changeset_plural: RΓ©visions |
|
847 | 850 | label_default_columns: Colonnes par dΓ©faut |
|
848 | 851 | label_no_change_option: (Pas de changement) |
|
849 | 852 | label_bulk_edit_selected_issues: Modifier les demandes sΓ©lectionnΓ©es |
|
850 | 853 | label_bulk_edit_selected_time_entries: Modifier les temps passΓ©s sΓ©lectionnΓ©s |
|
851 | 854 | label_theme: Thème |
|
852 | 855 | label_default: DΓ©faut |
|
853 | 856 | label_search_titles_only: Uniquement dans les titres |
|
854 | 857 | label_user_mail_option_all: "Pour tous les Γ©vΓ©nements de tous mes projets" |
|
855 | 858 | label_user_mail_option_selected: "Pour tous les Γ©vΓ©nements des projets sΓ©lectionnΓ©s..." |
|
856 | 859 | label_user_mail_option_none: Aucune notification |
|
857 | 860 | label_user_mail_option_only_my_events: Seulement pour ce que je surveille |
|
858 | 861 | label_user_mail_option_only_assigned: Seulement pour ce qui m'est assignΓ© |
|
859 | 862 | label_user_mail_option_only_owner: Seulement pour ce que j'ai créé |
|
860 | 863 | label_user_mail_no_self_notified: "Je ne veux pas Γͺtre notifiΓ© des changements que j'effectue" |
|
861 | 864 | label_registration_activation_by_email: activation du compte par email |
|
862 | 865 | label_registration_manual_activation: activation manuelle du compte |
|
863 | 866 | label_registration_automatic_activation: activation automatique du compte |
|
864 | 867 | label_display_per_page: "Par page : %{value}" |
|
865 | 868 | label_age: Γge |
|
866 | 869 | label_change_properties: Changer les propriΓ©tΓ©s |
|
867 | 870 | label_general: GΓ©nΓ©ral |
|
868 | 871 | label_more: Plus |
|
869 | 872 | label_scm: SCM |
|
870 | 873 | label_plugins: Plugins |
|
871 | 874 | label_ldap_authentication: Authentification LDAP |
|
872 | 875 | label_downloads_abbr: D/L |
|
873 | 876 | label_optional_description: Description facultative |
|
874 | 877 | label_add_another_file: Ajouter un autre fichier |
|
875 | 878 | label_preferences: PrΓ©fΓ©rences |
|
876 | 879 | label_chronological_order: Dans l'ordre chronologique |
|
877 | 880 | label_reverse_chronological_order: Dans l'ordre chronologique inverse |
|
878 | 881 | label_planning: Planning |
|
879 | 882 | label_incoming_emails: Emails entrants |
|
880 | 883 | label_generate_key: GΓ©nΓ©rer une clΓ© |
|
881 | 884 | label_issue_watchers: Observateurs |
|
882 | 885 | label_example: Exemple |
|
883 | 886 | label_display: Affichage |
|
884 | 887 | label_sort: Tri |
|
885 | 888 | label_ascending: Croissant |
|
886 | 889 | label_descending: DΓ©croissant |
|
887 | 890 | label_date_from_to: Du %{start} au %{end} |
|
888 | 891 | label_wiki_content_added: Page wiki ajoutΓ©e |
|
889 | 892 | label_wiki_content_updated: Page wiki mise Γ jour |
|
890 | 893 | label_group: Groupe |
|
891 | 894 | label_group_plural: Groupes |
|
892 | 895 | label_group_new: Nouveau groupe |
|
893 | 896 | label_group_anonymous: Utilisateurs anonymes |
|
894 | 897 | label_group_non_member: Utilisateurs non membres |
|
895 | 898 | label_time_entry_plural: Temps passΓ© |
|
896 | 899 | label_version_sharing_none: Non partagΓ© |
|
897 | 900 | label_version_sharing_descendants: Avec les sous-projets |
|
898 | 901 | label_version_sharing_hierarchy: Avec toute la hiΓ©rarchie |
|
899 | 902 | label_version_sharing_tree: Avec tout l'arbre |
|
900 | 903 | label_version_sharing_system: Avec tous les projets |
|
901 | 904 | label_update_issue_done_ratios: Mettre Γ jour l'avancement des demandes |
|
902 | 905 | label_copy_source: Source |
|
903 | 906 | label_copy_target: Cible |
|
904 | 907 | label_copy_same_as_target: Comme la cible |
|
905 | 908 | label_display_used_statuses_only: N'afficher que les statuts utilisΓ©s dans ce tracker |
|
906 | 909 | label_api_access_key: Clé d'accès API |
|
907 | 910 | label_missing_api_access_key: Clé d'accès API manquante |
|
908 | 911 | label_api_access_key_created_on: Clé d'accès API créée il y a %{value} |
|
909 | 912 | label_profile: Profil |
|
910 | 913 | label_subtask_plural: Sous-tΓ’ches |
|
911 | 914 | label_project_copy_notifications: Envoyer les notifications durant la copie du projet |
|
912 | 915 | label_principal_search: "Rechercher un utilisateur ou un groupe :" |
|
913 | 916 | label_user_search: "Rechercher un utilisateur :" |
|
914 | 917 | label_additional_workflow_transitions_for_author: Autorisations supplémentaires lorsque l'utilisateur a créé la demande |
|
915 | 918 | label_additional_workflow_transitions_for_assignee: Autorisations supplΓ©mentaires lorsque la demande est assignΓ©e Γ l'utilisateur |
|
916 | 919 | label_issues_visibility_all: Toutes les demandes |
|
917 | 920 | label_issues_visibility_public: Toutes les demandes non privΓ©es |
|
918 | 921 | label_issues_visibility_own: Demandes créées par ou assignées à l'utilisateur |
|
919 | 922 | label_git_report_last_commit: Afficher le dernier commit des fichiers et rΓ©pertoires |
|
920 | 923 | label_parent_revision: Parent |
|
921 | 924 | label_child_revision: Enfant |
|
922 | 925 | label_export_options: Options d'exportation %{export_format} |
|
923 | 926 | label_copy_attachments: Copier les fichiers |
|
924 | 927 | label_copy_subtasks: Copier les sous-tΓ’ches |
|
925 | 928 | label_item_position: "%{position} sur %{count}" |
|
926 | 929 | label_completed_versions: Versions passΓ©es |
|
927 | 930 | label_search_for_watchers: Rechercher des observateurs |
|
928 | 931 | label_session_expiration: Expiration des sessions |
|
929 | 932 | label_show_closed_projects: Voir les projets fermΓ©s |
|
930 | 933 | label_status_transitions: Changements de statut |
|
931 | 934 | label_fields_permissions: Permissions sur les champs |
|
932 | 935 | label_readonly: Lecture |
|
933 | 936 | label_required: Obligatoire |
|
934 | 937 | label_hidden: CachΓ© |
|
935 | 938 | label_attribute_of_project: "%{name} du projet" |
|
936 | 939 | label_attribute_of_issue: "%{name} de la demande" |
|
937 | 940 | label_attribute_of_author: "%{name} de l'auteur" |
|
938 | 941 | label_attribute_of_assigned_to: "%{name} de l'assignΓ©" |
|
939 | 942 | label_attribute_of_user: "%{name} de l'utilisateur" |
|
940 | 943 | label_attribute_of_fixed_version: "%{name} de la version cible" |
|
941 | 944 | label_cross_project_descendants: Avec les sous-projets |
|
942 | 945 | label_cross_project_tree: Avec tout l'arbre |
|
943 | 946 | label_cross_project_hierarchy: Avec toute la hiΓ©rarchie |
|
944 | 947 | label_cross_project_system: Avec tous les projets |
|
945 | 948 | label_gantt_progress_line: Ligne de progression |
|
946 | 949 | label_visibility_private: par moi uniquement |
|
947 | 950 | label_visibility_roles: par ces rΓ΄les uniquement |
|
948 | 951 | label_visibility_public: par tout le monde |
|
949 | 952 | label_link: Lien |
|
950 | 953 | label_only: seulement |
|
951 | 954 | label_drop_down_list: liste dΓ©roulante |
|
952 | 955 | label_checkboxes: cases Γ cocher |
|
953 | 956 | label_radio_buttons: boutons radio |
|
954 | 957 | label_link_values_to: Lier les valeurs vers l'URL |
|
955 | 958 | label_custom_field_select_type: Selectionner le type d'objet auquel attacher le champ personnalisΓ© |
|
956 | 959 | label_check_for_updates: VΓ©rifier les mises Γ jour |
|
957 | 960 | label_latest_compatible_version: Dernière version compatible |
|
958 | 961 | label_unknown_plugin: Plugin inconnu |
|
959 | 962 | label_add_projects: Ajouter des projets |
|
960 | 963 | label_users_visibility_all: Tous les utilisateurs actifs |
|
961 | 964 | label_users_visibility_members_of_visible_projects: Membres des projets visibles |
|
962 | 965 | label_edit_attachments: Modifier les fichiers attachΓ©s |
|
963 | 966 | label_link_copied_issue: Lier la demande copiΓ©e |
|
964 | 967 | label_ask: Demander |
|
965 | 968 | label_search_attachments_yes: Rechercher les noms et descriptions de fichiers |
|
966 | 969 | label_search_attachments_no: Ne pas rechercher les fichiers |
|
967 | 970 | label_search_attachments_only: Rechercher les fichiers uniquement |
|
968 | 971 | label_search_open_issues_only: Demandes ouvertes uniquement |
|
969 | 972 | label_email_address_plural: Emails |
|
970 | 973 | label_email_address_add: Ajouter une adresse email |
|
971 | 974 | label_enable_notifications: Activer les notifications |
|
972 | 975 | label_disable_notifications: DΓ©sactiver les notifications |
|
973 | 976 | label_blank_value: non renseignΓ© |
|
974 | 977 | label_parent_task_attributes: Attributs des tΓ’ches parentes |
|
975 | 978 | label_time_entries_visibility_all: Tous les temps passΓ©s |
|
976 | 979 | label_time_entries_visibility_own: Ses propres temps passΓ©s |
|
977 | 980 | label_member_management: Gestion des membres |
|
978 | 981 | label_member_management_all_roles: Tous les rΓ΄les |
|
979 | 982 | label_member_management_selected_roles_only: Ces rΓ΄les uniquement |
|
980 | 983 | label_import_issues: Importer des demandes |
|
981 | 984 | label_select_file_to_import: SΓ©lectionner le fichier Γ importer |
|
982 | 985 | label_fields_separator: SΓ©parateur de champs |
|
983 | 986 | label_fields_wrapper: DΓ©limiteur de texte |
|
984 | 987 | label_encoding: Encodage |
|
985 | 988 | label_comma_char: Virgule |
|
986 | 989 | label_semi_colon_char: Point virgule |
|
987 | 990 | label_quote_char: Apostrophe |
|
988 | 991 | label_double_quote_char: Double apostrophe |
|
989 | 992 | label_fields_mapping: Correspondance des champs |
|
990 | 993 | label_file_content_preview: AperΓ§u du contenu du fichier |
|
991 | 994 | label_create_missing_values: CrΓ©er les valeurs manquantes |
|
992 | 995 | label_api: API |
|
993 | 996 | label_field_format_enumeration: Liste clΓ©/valeur |
|
994 | 997 | |
|
995 | 998 | button_login: Connexion |
|
996 | 999 | button_submit: Soumettre |
|
997 | 1000 | button_save: Sauvegarder |
|
998 | 1001 | button_check_all: Tout cocher |
|
999 | 1002 | button_uncheck_all: Tout dΓ©cocher |
|
1000 | 1003 | button_collapse_all: Plier tout |
|
1001 | 1004 | button_expand_all: DΓ©plier tout |
|
1002 | 1005 | button_delete: Supprimer |
|
1003 | 1006 | button_create: CrΓ©er |
|
1004 | 1007 | button_create_and_continue: CrΓ©er et continuer |
|
1005 | 1008 | button_test: Tester |
|
1006 | 1009 | button_edit: Modifier |
|
1007 | 1010 | button_edit_associated_wikipage: "Modifier la page wiki associΓ©e: %{page_title}" |
|
1008 | 1011 | button_add: Ajouter |
|
1009 | 1012 | button_change: Changer |
|
1010 | 1013 | button_apply: Appliquer |
|
1011 | 1014 | button_clear: Effacer |
|
1012 | 1015 | button_lock: Verrouiller |
|
1013 | 1016 | button_unlock: DΓ©verrouiller |
|
1014 | 1017 | button_download: TΓ©lΓ©charger |
|
1015 | 1018 | button_list: Lister |
|
1016 | 1019 | button_view: Voir |
|
1017 | 1020 | button_move: DΓ©placer |
|
1018 | 1021 | button_move_and_follow: DΓ©placer et suivre |
|
1019 | 1022 | button_back: Retour |
|
1020 | 1023 | button_cancel: Annuler |
|
1021 | 1024 | button_activate: Activer |
|
1022 | 1025 | button_sort: Trier |
|
1023 | 1026 | button_log_time: Saisir temps |
|
1024 | 1027 | button_rollback: Revenir Γ cette version |
|
1025 | 1028 | button_watch: Surveiller |
|
1026 | 1029 | button_unwatch: Ne plus surveiller |
|
1027 | 1030 | button_reply: RΓ©pondre |
|
1028 | 1031 | button_archive: Archiver |
|
1029 | 1032 | button_unarchive: DΓ©sarchiver |
|
1030 | 1033 | button_reset: RΓ©initialiser |
|
1031 | 1034 | button_rename: Renommer |
|
1032 | 1035 | button_change_password: Changer de mot de passe |
|
1033 | 1036 | button_copy: Copier |
|
1034 | 1037 | button_copy_and_follow: Copier et suivre |
|
1035 | 1038 | button_annotate: Annoter |
|
1036 | 1039 | button_update: Mettre Γ jour |
|
1037 | 1040 | button_configure: Configurer |
|
1038 | 1041 | button_quote: Citer |
|
1039 | 1042 | button_duplicate: Dupliquer |
|
1040 | 1043 | button_show: Afficher |
|
1041 | 1044 | button_hide: Cacher |
|
1042 | 1045 | button_edit_section: Modifier cette section |
|
1043 | 1046 | button_export: Exporter |
|
1044 | 1047 | button_delete_my_account: Supprimer mon compte |
|
1045 | 1048 | button_close: Fermer |
|
1046 | 1049 | button_reopen: RΓ©ouvrir |
|
1047 | 1050 | button_import: Importer |
|
1048 | 1051 | |
|
1049 | 1052 | status_active: actif |
|
1050 | 1053 | status_registered: enregistrΓ© |
|
1051 | 1054 | status_locked: verrouillΓ© |
|
1052 | 1055 | |
|
1053 | 1056 | project_status_active: actif |
|
1054 | 1057 | project_status_closed: fermΓ© |
|
1055 | 1058 | project_status_archived: archivΓ© |
|
1056 | 1059 | |
|
1057 | 1060 | version_status_open: ouvert |
|
1058 | 1061 | version_status_locked: verrouillΓ© |
|
1059 | 1062 | version_status_closed: fermΓ© |
|
1060 | 1063 | |
|
1061 | 1064 | field_active: Actif |
|
1062 | 1065 | |
|
1063 | 1066 | text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyΓ©e |
|
1064 | 1067 | text_regexp_info: ex. ^[A-Z0-9]+$ |
|
1065 | 1068 | text_min_max_length_info: 0 pour aucune restriction |
|
1066 | 1069 | text_project_destroy_confirmation: Γtes-vous sΓ»r de vouloir supprimer ce projet et toutes ses donnΓ©es ? |
|
1067 | 1070 | text_subprojects_destroy_warning: "Ses sous-projets : %{value} seront Γ©galement supprimΓ©s." |
|
1068 | 1071 | text_workflow_edit: SΓ©lectionner un tracker et un rΓ΄le pour Γ©diter le workflow |
|
1069 | 1072 | text_are_you_sure: Γtes-vous sΓ»r ? |
|
1070 | 1073 | text_journal_changed: "%{label} changΓ© de %{old} Γ %{new}" |
|
1071 | 1074 | text_journal_changed_no_detail: "%{label} mis Γ jour" |
|
1072 | 1075 | text_journal_set_to: "%{label} mis Γ %{value}" |
|
1073 | 1076 | text_journal_deleted: "%{label} %{old} supprimΓ©" |
|
1074 | 1077 | text_journal_added: "%{label} %{value} ajoutΓ©" |
|
1075 | 1078 | text_tip_issue_begin_day: tΓ’che commenΓ§ant ce jour |
|
1076 | 1079 | text_tip_issue_end_day: tΓ’che finissant ce jour |
|
1077 | 1080 | text_tip_issue_begin_end_day: tΓ’che commenΓ§ant et finissant ce jour |
|
1078 | 1081 | 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Γ©.' |
|
1079 | 1082 | text_caracters_maximum: "%{count} caractères maximum." |
|
1080 | 1083 | text_caracters_minimum: "%{count} caractères minimum." |
|
1081 | 1084 | text_length_between: "Longueur comprise entre %{min} et %{max} caractères." |
|
1082 | 1085 | text_tracker_no_workflow: Aucun worflow n'est dΓ©fini pour ce tracker |
|
1083 | 1086 | text_unallowed_characters: Caractères non autorisés |
|
1084 | 1087 | text_comma_separated: Plusieurs valeurs possibles (sΓ©parΓ©es par des virgules). |
|
1085 | 1088 | text_line_separated: Plusieurs valeurs possibles (une valeur par ligne). |
|
1086 | 1089 | text_issues_ref_in_commit_messages: RΓ©fΓ©rencement et rΓ©solution des demandes dans les commentaires de commits |
|
1087 | 1090 | text_issue_added: "La demande %{id} a Γ©tΓ© soumise par %{author}." |
|
1088 | 1091 | text_issue_updated: "La demande %{id} a Γ©tΓ© mise Γ jour par %{author}." |
|
1089 | 1092 | text_wiki_destroy_confirmation: Etes-vous sΓ»r de vouloir supprimer ce wiki et tout son contenu ? |
|
1090 | 1093 | text_issue_category_destroy_question: "%{count} demandes sont affectΓ©es Γ cette catΓ©gorie. Que voulez-vous faire ?" |
|
1091 | 1094 | text_issue_category_destroy_assignments: N'affecter les demandes Γ aucune autre catΓ©gorie |
|
1092 | 1095 | text_issue_category_reassign_to: RΓ©affecter les demandes Γ cette catΓ©gorie |
|
1093 | 1096 | 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)." |
|
1094 | 1097 | 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Γ©." |
|
1095 | 1098 | text_load_default_configuration: Charger le paramΓ©trage par dΓ©faut |
|
1096 | 1099 | text_status_changed_by_changeset: "AppliquΓ© par commit %{value}." |
|
1097 | 1100 | text_time_logged_by_changeset: "AppliquΓ© par commit %{value}" |
|
1098 | 1101 | text_issues_destroy_confirmation: 'Γtes-vous sΓ»r de vouloir supprimer la ou les demandes(s) selectionnΓ©e(s) ?' |
|
1099 | 1102 | text_issues_destroy_descendants_confirmation: "Cela entrainera Γ©galement la suppression de %{count} sous-tΓ’che(s)." |
|
1100 | 1103 | text_time_entries_destroy_confirmation: "Etes-vous sΓ»r de vouloir supprimer les temps passΓ©s sΓ©lectionnΓ©s ?" |
|
1101 | 1104 | text_select_project_modules: 'SΓ©lectionner les modules Γ activer pour ce projet :' |
|
1102 | 1105 | text_default_administrator_account_changed: Compte administrateur par dΓ©faut changΓ© |
|
1103 | 1106 | text_file_repository_writable: RΓ©pertoire de stockage des fichiers accessible en Γ©criture |
|
1104 | 1107 | text_plugin_assets_writable: RΓ©pertoire public des plugins accessible en Γ©criture |
|
1105 | 1108 | text_rmagick_available: Bibliothèque RMagick présente (optionnelle) |
|
1106 | 1109 | text_convert_available: Binaire convert de ImageMagick prΓ©sent (optionel) |
|
1107 | 1110 | text_destroy_time_entries_question: "%{hours} heures ont Γ©tΓ© enregistrΓ©es sur les demandes Γ supprimer. Que voulez-vous faire ?" |
|
1108 | 1111 | text_destroy_time_entries: Supprimer les heures |
|
1109 | 1112 | text_assign_time_entries_to_project: Reporter les heures sur le projet |
|
1110 | 1113 | text_reassign_time_entries: 'Reporter les heures sur cette demande:' |
|
1111 | 1114 | text_user_wrote: "%{value} a Γ©crit :" |
|
1112 | 1115 | text_enumeration_destroy_question: "La valeur Β« %{name} Β» est affectΓ©e Γ %{count} objet(s)." |
|
1113 | 1116 | text_enumeration_category_reassign_to: 'RΓ©affecter les objets Γ cette valeur:' |
|
1114 | 1117 | 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." |
|
1115 | 1118 | 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." |
|
1116 | 1119 | text_diff_truncated: '... Ce diffΓ©rentiel a Γ©tΓ© tronquΓ© car il excΓ¨de la taille maximale pouvant Γͺtre affichΓ©e.' |
|
1117 | 1120 | text_custom_field_possible_values_info: 'Une ligne par valeur' |
|
1118 | 1121 | text_wiki_page_destroy_question: "Cette page possède %{descendants} sous-page(s) et descendante(s). Que voulez-vous faire ?" |
|
1119 | 1122 | text_wiki_page_nullify_children: "Conserver les sous-pages en tant que pages racines" |
|
1120 | 1123 | text_wiki_page_destroy_children: "Supprimer les sous-pages et toutes leurs descedantes" |
|
1121 | 1124 | text_wiki_page_reassign_children: "RΓ©affecter les sous-pages Γ cette page" |
|
1122 | 1125 | 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 ?" |
|
1123 | 1126 | text_zoom_in: Zoom avant |
|
1124 | 1127 | text_zoom_out: Zoom arrière |
|
1125 | 1128 | text_warn_on_leaving_unsaved: "Cette page contient du texte non sauvegardΓ© qui sera perdu si vous quittez la page." |
|
1126 | 1129 | text_scm_path_encoding_note: "DΓ©faut : UTF-8" |
|
1127 | 1130 | text_subversion_repository_note: "Exemples (en fonction des protocoles supportΓ©s) : file:///, http://, https://, svn://, svn+[tunnelscheme]://" |
|
1128 | 1131 | text_git_repository_note: "Chemin vers un dΓ©pΓ΄t vide et local (exemples : /gitrepo, c:\\gitrepo)" |
|
1129 | 1132 | text_mercurial_repository_note: "Chemin vers un dΓ©pΓ΄t local (exemples : /hgrepo, c:\\hgrepo)" |
|
1130 | 1133 | text_scm_command: Commande |
|
1131 | 1134 | text_scm_command_version: Version |
|
1132 | 1135 | text_scm_config: Vous pouvez configurer les commandes des SCM dans config/configuration.yml. Redémarrer l'application après modification. |
|
1133 | 1136 | text_scm_command_not_available: Ce SCM n'est pas disponible. Vérifier les paramètres dans la section administration. |
|
1134 | 1137 | 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)" |
|
1135 | 1138 | text_issue_conflict_resolution_add_notes: "Ajouter mes notes et ignorer mes autres changements" |
|
1136 | 1139 | text_issue_conflict_resolution_cancel: "Annuler ma mise Γ jour et rΓ©afficher %{link}" |
|
1137 | 1140 | text_account_destroy_confirmation: "Γtes-vous sΓ»r de vouloir continuer ?\nVotre compte sera dΓ©finitivement supprimΓ©, sans aucune possibilitΓ© de le rΓ©activer." |
|
1138 | 1141 | 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." |
|
1139 | 1142 | text_project_closed: Ce projet est fermΓ© et accessible en lecture seule. |
|
1140 | 1143 | 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." |
|
1141 | 1144 | |
|
1142 | 1145 | default_role_manager: Manager |
|
1143 | 1146 | default_role_developer: DΓ©veloppeur |
|
1144 | 1147 | default_role_reporter: Rapporteur |
|
1145 | 1148 | default_tracker_bug: Anomalie |
|
1146 | 1149 | default_tracker_feature: Evolution |
|
1147 | 1150 | default_tracker_support: Assistance |
|
1148 | 1151 | default_issue_status_new: Nouveau |
|
1149 | 1152 | default_issue_status_in_progress: En cours |
|
1150 | 1153 | default_issue_status_resolved: RΓ©solu |
|
1151 | 1154 | default_issue_status_feedback: Commentaire |
|
1152 | 1155 | default_issue_status_closed: FermΓ© |
|
1153 | 1156 | default_issue_status_rejected: RejetΓ© |
|
1154 | 1157 | default_doc_category_user: Documentation utilisateur |
|
1155 | 1158 | default_doc_category_tech: Documentation technique |
|
1156 | 1159 | default_priority_low: Bas |
|
1157 | 1160 | default_priority_normal: Normal |
|
1158 | 1161 | default_priority_high: Haut |
|
1159 | 1162 | default_priority_urgent: Urgent |
|
1160 | 1163 | default_priority_immediate: ImmΓ©diat |
|
1161 | 1164 | default_activity_design: Conception |
|
1162 | 1165 | default_activity_development: DΓ©veloppement |
|
1163 | 1166 | |
|
1164 | 1167 | enumeration_issue_priorities: PrioritΓ©s des demandes |
|
1165 | 1168 | enumeration_doc_categories: CatΓ©gories des documents |
|
1166 | 1169 | enumeration_activities: ActivitΓ©s (suivi du temps) |
|
1167 | 1170 | enumeration_system_activity: Activité système |
|
1168 | 1171 | description_filter: Filtre |
|
1169 | 1172 | description_search: Champ de recherche |
|
1170 | 1173 | description_choose_project: Projets |
|
1171 | 1174 | description_project_scope: Périmètre de recherche |
|
1172 | 1175 | description_notes: Notes |
|
1173 | 1176 | description_message_content: Contenu du message |
|
1174 | 1177 | description_query_sort_criteria_attribute: Critère de tri |
|
1175 | 1178 | description_query_sort_criteria_direction: Ordre de tri |
|
1176 | 1179 | description_user_mail_notification: Option de notification |
|
1177 | 1180 | description_available_columns: Colonnes disponibles |
|
1178 | 1181 | description_selected_columns: Colonnes sΓ©lectionnΓ©es |
|
1179 | 1182 | description_all_columns: Toutes les colonnes |
|
1180 | 1183 | description_issue_category_reassign: Choisir une catΓ©gorie |
|
1181 | 1184 | description_wiki_subpages_reassign: Choisir une nouvelle page parent |
|
1182 | 1185 | description_date_range_list: Choisir une pΓ©riode prΓ©dΓ©finie |
|
1183 | 1186 | description_date_range_interval: Choisir une pΓ©riode |
|
1184 | 1187 | description_date_from: Date de dΓ©but |
|
1185 | 1188 | description_date_to: Date de fin |
|
1186 | 1189 | 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Γ©.' |
|
1187 | 1190 | label_parent_task_attributes_derived: Calculated from subtasks |
|
1188 | 1191 | label_parent_task_attributes_independent: Independent of subtasks |
@@ -1,255 +1,259 | |||
|
1 | 1 | # Redmine - project management software |
|
2 | 2 | # Copyright (C) 2006-2015 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 password age in days |
|
40 | 40 | password_max_age: |
|
41 | 41 | format: int |
|
42 | 42 | default: 0 |
|
43 | 43 | # Maximum number of additional email addresses per user |
|
44 | 44 | max_additional_emails: |
|
45 | 45 | format: int |
|
46 | 46 | default: 5 |
|
47 | 47 | # Maximum lifetime of user sessions in minutes |
|
48 | 48 | session_lifetime: |
|
49 | 49 | format: int |
|
50 | 50 | default: 0 |
|
51 | 51 | # User session timeout in minutes |
|
52 | 52 | session_timeout: |
|
53 | 53 | format: int |
|
54 | 54 | default: 0 |
|
55 | 55 | attachment_max_size: |
|
56 | 56 | format: int |
|
57 | 57 | default: 5120 |
|
58 | attachment_extensions_allowed: | |
|
59 | default: | |
|
60 | attachment_extensions_denied: | |
|
61 | default: | |
|
58 | 62 | issues_export_limit: |
|
59 | 63 | format: int |
|
60 | 64 | default: 500 |
|
61 | 65 | activity_days_default: |
|
62 | 66 | format: int |
|
63 | 67 | default: 30 |
|
64 | 68 | per_page_options: |
|
65 | 69 | default: '25,50,100' |
|
66 | 70 | search_results_per_page: |
|
67 | 71 | default: 10 |
|
68 | 72 | mail_from: |
|
69 | 73 | default: redmine@example.net |
|
70 | 74 | bcc_recipients: |
|
71 | 75 | default: 1 |
|
72 | 76 | plain_text_mail: |
|
73 | 77 | default: 0 |
|
74 | 78 | text_formatting: |
|
75 | 79 | default: textile |
|
76 | 80 | cache_formatted_text: |
|
77 | 81 | default: 0 |
|
78 | 82 | wiki_compression: |
|
79 | 83 | default: "" |
|
80 | 84 | default_language: |
|
81 | 85 | default: en |
|
82 | 86 | force_default_language_for_anonymous: |
|
83 | 87 | default: 0 |
|
84 | 88 | force_default_language_for_loggedin: |
|
85 | 89 | default: 0 |
|
86 | 90 | host_name: |
|
87 | 91 | default: localhost:3000 |
|
88 | 92 | protocol: |
|
89 | 93 | default: http |
|
90 | 94 | feeds_limit: |
|
91 | 95 | format: int |
|
92 | 96 | default: 15 |
|
93 | 97 | gantt_items_limit: |
|
94 | 98 | format: int |
|
95 | 99 | default: 500 |
|
96 | 100 | # Maximum size of files that can be displayed |
|
97 | 101 | # inline through the file viewer (in KB) |
|
98 | 102 | file_max_size_displayed: |
|
99 | 103 | format: int |
|
100 | 104 | default: 512 |
|
101 | 105 | diff_max_lines_displayed: |
|
102 | 106 | format: int |
|
103 | 107 | default: 1500 |
|
104 | 108 | enabled_scm: |
|
105 | 109 | serialized: true |
|
106 | 110 | default: |
|
107 | 111 | - Subversion |
|
108 | 112 | - Darcs |
|
109 | 113 | - Mercurial |
|
110 | 114 | - Cvs |
|
111 | 115 | - Bazaar |
|
112 | 116 | - Git |
|
113 | 117 | autofetch_changesets: |
|
114 | 118 | default: 1 |
|
115 | 119 | sys_api_enabled: |
|
116 | 120 | default: 0 |
|
117 | 121 | sys_api_key: |
|
118 | 122 | default: '' |
|
119 | 123 | commit_cross_project_ref: |
|
120 | 124 | default: 0 |
|
121 | 125 | commit_ref_keywords: |
|
122 | 126 | default: 'refs,references,IssueID' |
|
123 | 127 | commit_update_keywords: |
|
124 | 128 | serialized: true |
|
125 | 129 | default: [] |
|
126 | 130 | commit_logtime_enabled: |
|
127 | 131 | default: 0 |
|
128 | 132 | commit_logtime_activity_id: |
|
129 | 133 | format: int |
|
130 | 134 | default: 0 |
|
131 | 135 | # autologin duration in days |
|
132 | 136 | # 0 means autologin is disabled |
|
133 | 137 | autologin: |
|
134 | 138 | format: int |
|
135 | 139 | default: 0 |
|
136 | 140 | # date format |
|
137 | 141 | date_format: |
|
138 | 142 | default: '' |
|
139 | 143 | time_format: |
|
140 | 144 | default: '' |
|
141 | 145 | user_format: |
|
142 | 146 | default: :firstname_lastname |
|
143 | 147 | format: symbol |
|
144 | 148 | cross_project_issue_relations: |
|
145 | 149 | default: 0 |
|
146 | 150 | # Enables subtasks to be in other projects |
|
147 | 151 | cross_project_subtasks: |
|
148 | 152 | default: 'tree' |
|
149 | 153 | parent_issue_dates: |
|
150 | 154 | default: 'derived' |
|
151 | 155 | parent_issue_priority: |
|
152 | 156 | default: 'derived' |
|
153 | 157 | parent_issue_done_ratio: |
|
154 | 158 | default: 'derived' |
|
155 | 159 | link_copied_issue: |
|
156 | 160 | default: 'ask' |
|
157 | 161 | issue_group_assignment: |
|
158 | 162 | default: 0 |
|
159 | 163 | default_issue_start_date_to_creation_date: |
|
160 | 164 | default: 1 |
|
161 | 165 | notified_events: |
|
162 | 166 | serialized: true |
|
163 | 167 | default: |
|
164 | 168 | - issue_added |
|
165 | 169 | - issue_updated |
|
166 | 170 | mail_handler_body_delimiters: |
|
167 | 171 | default: '' |
|
168 | 172 | mail_handler_excluded_filenames: |
|
169 | 173 | default: '' |
|
170 | 174 | mail_handler_api_enabled: |
|
171 | 175 | default: 0 |
|
172 | 176 | mail_handler_api_key: |
|
173 | 177 | default: |
|
174 | 178 | issue_list_default_columns: |
|
175 | 179 | serialized: true |
|
176 | 180 | default: |
|
177 | 181 | - tracker |
|
178 | 182 | - status |
|
179 | 183 | - priority |
|
180 | 184 | - subject |
|
181 | 185 | - assigned_to |
|
182 | 186 | - updated_on |
|
183 | 187 | issue_list_default_totals: |
|
184 | 188 | serialized: true |
|
185 | 189 | default: [] |
|
186 | 190 | display_subprojects_issues: |
|
187 | 191 | default: 1 |
|
188 | 192 | issue_done_ratio: |
|
189 | 193 | default: 'issue_field' |
|
190 | 194 | default_projects_public: |
|
191 | 195 | default: 1 |
|
192 | 196 | default_projects_modules: |
|
193 | 197 | serialized: true |
|
194 | 198 | default: |
|
195 | 199 | - issue_tracking |
|
196 | 200 | - time_tracking |
|
197 | 201 | - news |
|
198 | 202 | - documents |
|
199 | 203 | - files |
|
200 | 204 | - wiki |
|
201 | 205 | - repository |
|
202 | 206 | - boards |
|
203 | 207 | - calendar |
|
204 | 208 | - gantt |
|
205 | 209 | default_projects_tracker_ids: |
|
206 | 210 | serialized: true |
|
207 | 211 | default: |
|
208 | 212 | # Role given to a non-admin user who creates a project |
|
209 | 213 | new_project_user_role_id: |
|
210 | 214 | format: int |
|
211 | 215 | default: '' |
|
212 | 216 | sequential_project_identifiers: |
|
213 | 217 | default: 0 |
|
214 | 218 | # encodings used to convert repository files content to UTF-8 |
|
215 | 219 | # multiple values accepted, comma separated |
|
216 | 220 | repositories_encodings: |
|
217 | 221 | default: '' |
|
218 | 222 | # encoding used to convert commit logs to UTF-8 |
|
219 | 223 | commit_logs_encoding: |
|
220 | 224 | default: 'UTF-8' |
|
221 | 225 | repository_log_display_limit: |
|
222 | 226 | format: int |
|
223 | 227 | default: 100 |
|
224 | 228 | ui_theme: |
|
225 | 229 | default: '' |
|
226 | 230 | emails_footer: |
|
227 | 231 | default: |- |
|
228 | 232 | You have received this notification because you have either subscribed to it, or are involved in it. |
|
229 | 233 | To change your notification preferences, please click here: http://hostname/my/account |
|
230 | 234 | gravatar_enabled: |
|
231 | 235 | default: 0 |
|
232 | 236 | openid: |
|
233 | 237 | default: 0 |
|
234 | 238 | gravatar_default: |
|
235 | 239 | default: '' |
|
236 | 240 | start_of_week: |
|
237 | 241 | default: '' |
|
238 | 242 | rest_api_enabled: |
|
239 | 243 | default: 0 |
|
240 | 244 | jsonp_enabled: |
|
241 | 245 | default: 0 |
|
242 | 246 | default_notification_option: |
|
243 | 247 | default: 'only_my_events' |
|
244 | 248 | emails_header: |
|
245 | 249 | default: '' |
|
246 | 250 | thumbnails_enabled: |
|
247 | 251 | default: 0 |
|
248 | 252 | thumbnails_size: |
|
249 | 253 | format: int |
|
250 | 254 | default: 100 |
|
251 | 255 | non_working_week_days: |
|
252 | 256 | serialized: true |
|
253 | 257 | default: |
|
254 | 258 | - '6' |
|
255 | 259 | - '7' |
@@ -1,382 +1,421 | |||
|
1 | 1 | # encoding: utf-8 |
|
2 | 2 | # |
|
3 | 3 | # Redmine - project management software |
|
4 | 4 | # Copyright (C) 2006-2015 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 | require File.expand_path('../../test_helper', __FILE__) |
|
21 | 21 | |
|
22 | 22 | class AttachmentTest < ActiveSupport::TestCase |
|
23 | 23 | fixtures :users, :projects, :roles, :members, :member_roles, |
|
24 | 24 | :enabled_modules, :issues, :trackers, :attachments |
|
25 | 25 | |
|
26 | 26 | # TODO: remove this with Rails 5 that supports after_commit callbacks |
|
27 | 27 | # in transactional fixtures (https://github.com/rails/rails/pull/18458) |
|
28 | 28 | self.use_transactional_fixtures = false |
|
29 | 29 | |
|
30 | 30 | class MockFile |
|
31 | 31 | attr_reader :original_filename, :content_type, :content, :size |
|
32 | 32 | |
|
33 | 33 | def initialize(attributes) |
|
34 | 34 | @original_filename = attributes[:original_filename] |
|
35 | 35 | @content_type = attributes[:content_type] |
|
36 | 36 | @content = attributes[:content] || "Content" |
|
37 | 37 | @size = content.size |
|
38 | 38 | end |
|
39 | 39 | end |
|
40 | 40 | |
|
41 | 41 | def setup |
|
42 | 42 | set_tmp_attachments_directory |
|
43 | 43 | end |
|
44 | 44 | |
|
45 | 45 | def test_container_for_new_attachment_should_be_nil |
|
46 | 46 | assert_nil Attachment.new.container |
|
47 | 47 | end |
|
48 | 48 | |
|
49 | 49 | def test_filename_should_remove_eols |
|
50 | 50 | assert_equal "line_feed", Attachment.new(:filename => "line\nfeed").filename |
|
51 | 51 | assert_equal "line_feed", Attachment.new(:filename => "some\npath/line\nfeed").filename |
|
52 | 52 | assert_equal "carriage_return", Attachment.new(:filename => "carriage\rreturn").filename |
|
53 | 53 | assert_equal "carriage_return", Attachment.new(:filename => "some\rpath/carriage\rreturn").filename |
|
54 | 54 | end |
|
55 | 55 | |
|
56 | 56 | def test_create |
|
57 | 57 | a = Attachment.new(:container => Issue.find(1), |
|
58 | 58 | :file => uploaded_test_file("testfile.txt", "text/plain"), |
|
59 | 59 | :author => User.find(1)) |
|
60 | 60 | assert a.save |
|
61 | 61 | assert_equal 'testfile.txt', a.filename |
|
62 | 62 | assert_equal 59, a.filesize |
|
63 | 63 | assert_equal 'text/plain', a.content_type |
|
64 | 64 | assert_equal 0, a.downloads |
|
65 | 65 | assert_equal '1478adae0d4eb06d35897518540e25d6', a.digest |
|
66 | 66 | |
|
67 | 67 | assert a.disk_directory |
|
68 | 68 | assert_match %r{\A\d{4}/\d{2}\z}, a.disk_directory |
|
69 | 69 | |
|
70 | 70 | assert File.exist?(a.diskfile) |
|
71 | 71 | assert_equal 59, File.size(a.diskfile) |
|
72 | 72 | end |
|
73 | 73 | |
|
74 | 74 | def test_create_should_clear_content_type_if_too_long |
|
75 | 75 | a = Attachment.new(:container => Issue.find(1), |
|
76 | 76 | :file => uploaded_test_file("testfile.txt", "text/plain"), |
|
77 | 77 | :author => User.find(1), |
|
78 | 78 | :content_type => 'a'*300) |
|
79 | 79 | assert a.save |
|
80 | 80 | a.reload |
|
81 | 81 | assert_nil a.content_type |
|
82 | 82 | end |
|
83 | 83 | |
|
84 | 84 | def test_copy_should_preserve_attributes |
|
85 | 85 | a = Attachment.find(1) |
|
86 | 86 | copy = a.copy |
|
87 | 87 | |
|
88 | 88 | assert_save copy |
|
89 | 89 | copy = Attachment.order('id DESC').first |
|
90 | 90 | %w(filename filesize content_type author_id created_on description digest disk_filename disk_directory diskfile).each do |attribute| |
|
91 | 91 | assert_equal a.send(attribute), copy.send(attribute), "#{attribute} was different" |
|
92 | 92 | end |
|
93 | 93 | end |
|
94 | 94 | |
|
95 | 95 | def test_size_should_be_validated_for_new_file |
|
96 | 96 | with_settings :attachment_max_size => 0 do |
|
97 | 97 | a = Attachment.new(:container => Issue.find(1), |
|
98 | 98 | :file => uploaded_test_file("testfile.txt", "text/plain"), |
|
99 | 99 | :author => User.find(1)) |
|
100 | 100 | assert !a.save |
|
101 | 101 | end |
|
102 | 102 | end |
|
103 | 103 | |
|
104 | 104 | def test_size_should_not_be_validated_when_copying |
|
105 | 105 | a = Attachment.create!(:container => Issue.find(1), |
|
106 | 106 | :file => uploaded_test_file("testfile.txt", "text/plain"), |
|
107 | 107 | :author => User.find(1)) |
|
108 | 108 | with_settings :attachment_max_size => 0 do |
|
109 | 109 | copy = a.copy |
|
110 | 110 | assert copy.save |
|
111 | 111 | end |
|
112 | 112 | end |
|
113 | 113 | |
|
114 | 114 | def test_filesize_greater_than_2gb_should_be_supported |
|
115 | 115 | with_settings :attachment_max_size => (50.gigabyte / 1024) do |
|
116 | 116 | a = Attachment.create!(:container => Issue.find(1), |
|
117 | 117 | :file => uploaded_test_file("testfile.txt", "text/plain"), |
|
118 | 118 | :author => User.find(1)) |
|
119 | 119 | a.filesize = 20.gigabyte |
|
120 | 120 | a.save! |
|
121 | 121 | assert_equal 20.gigabyte, a.reload.filesize |
|
122 | 122 | end |
|
123 | 123 | end |
|
124 | 124 | |
|
125 | def test_extension_should_be_validated_against_allowed_extensions | |
|
126 | with_settings :attachment_extensions_allowed => "txt, png" do | |
|
127 | a = Attachment.new(:container => Issue.find(1), | |
|
128 | :file => mock_file_with_options(:original_filename => "test.png"), | |
|
129 | :author => User.find(1)) | |
|
130 | assert_save a | |
|
131 | ||
|
132 | a = Attachment.new(:container => Issue.find(1), | |
|
133 | :file => mock_file_with_options(:original_filename => "test.jpeg"), | |
|
134 | :author => User.find(1)) | |
|
135 | assert !a.save | |
|
136 | end | |
|
137 | end | |
|
138 | ||
|
139 | def test_extension_should_be_validated_against_denied_extensions | |
|
140 | with_settings :attachment_extensions_denied => "txt, png" do | |
|
141 | a = Attachment.new(:container => Issue.find(1), | |
|
142 | :file => mock_file_with_options(:original_filename => "test.jpeg"), | |
|
143 | :author => User.find(1)) | |
|
144 | assert_save a | |
|
145 | ||
|
146 | a = Attachment.new(:container => Issue.find(1), | |
|
147 | :file => mock_file_with_options(:original_filename => "test.png"), | |
|
148 | :author => User.find(1)) | |
|
149 | assert !a.save | |
|
150 | end | |
|
151 | end | |
|
152 | ||
|
153 | def test_valid_extension_should_be_case_insensitive | |
|
154 | with_settings :attachment_extensions_allowed => "txt, Png" do | |
|
155 | assert Attachment.valid_extension?(".pnG") | |
|
156 | assert !Attachment.valid_extension?(".jpeg") | |
|
157 | end | |
|
158 | with_settings :attachment_extensions_denied => "txt, Png" do | |
|
159 | assert !Attachment.valid_extension?(".pnG") | |
|
160 | assert Attachment.valid_extension?(".jpeg") | |
|
161 | end | |
|
162 | end | |
|
163 | ||
|
125 | 164 | def test_description_length_should_be_validated |
|
126 | 165 | a = Attachment.new(:description => 'a' * 300) |
|
127 | 166 | assert !a.save |
|
128 | 167 | assert_not_equal [], a.errors[:description] |
|
129 | 168 | end |
|
130 | 169 | |
|
131 | 170 | def test_destroy |
|
132 | 171 | a = Attachment.new(:container => Issue.find(1), |
|
133 | 172 | :file => uploaded_test_file("testfile.txt", "text/plain"), |
|
134 | 173 | :author => User.find(1)) |
|
135 | 174 | assert a.save |
|
136 | 175 | assert_equal 'testfile.txt', a.filename |
|
137 | 176 | assert_equal 59, a.filesize |
|
138 | 177 | assert_equal 'text/plain', a.content_type |
|
139 | 178 | assert_equal 0, a.downloads |
|
140 | 179 | assert_equal '1478adae0d4eb06d35897518540e25d6', a.digest |
|
141 | 180 | diskfile = a.diskfile |
|
142 | 181 | assert File.exist?(diskfile) |
|
143 | 182 | assert_equal 59, File.size(a.diskfile) |
|
144 | 183 | assert a.destroy |
|
145 | 184 | assert !File.exist?(diskfile) |
|
146 | 185 | end |
|
147 | 186 | |
|
148 | 187 | def test_destroy_should_not_delete_file_referenced_by_other_attachment |
|
149 | 188 | a = Attachment.create!(:container => Issue.find(1), |
|
150 | 189 | :file => uploaded_test_file("testfile.txt", "text/plain"), |
|
151 | 190 | :author => User.find(1)) |
|
152 | 191 | diskfile = a.diskfile |
|
153 | 192 | |
|
154 | 193 | copy = a.copy |
|
155 | 194 | copy.save! |
|
156 | 195 | |
|
157 | 196 | assert File.exists?(diskfile) |
|
158 | 197 | a.destroy |
|
159 | 198 | assert File.exists?(diskfile) |
|
160 | 199 | copy.destroy |
|
161 | 200 | assert !File.exists?(diskfile) |
|
162 | 201 | end |
|
163 | 202 | |
|
164 | 203 | def test_create_should_auto_assign_content_type |
|
165 | 204 | a = Attachment.new(:container => Issue.find(1), |
|
166 | 205 | :file => uploaded_test_file("testfile.txt", ""), |
|
167 | 206 | :author => User.find(1)) |
|
168 | 207 | assert a.save |
|
169 | 208 | assert_equal 'text/plain', a.content_type |
|
170 | 209 | end |
|
171 | 210 | |
|
172 | 211 | def test_identical_attachments_at_the_same_time_should_not_overwrite |
|
173 | 212 | a1 = Attachment.create!(:container => Issue.find(1), |
|
174 | 213 | :file => uploaded_test_file("testfile.txt", ""), |
|
175 | 214 | :author => User.find(1)) |
|
176 | 215 | a2 = Attachment.create!(:container => Issue.find(1), |
|
177 | 216 | :file => uploaded_test_file("testfile.txt", ""), |
|
178 | 217 | :author => User.find(1)) |
|
179 | 218 | assert a1.disk_filename != a2.disk_filename |
|
180 | 219 | end |
|
181 | 220 | |
|
182 | 221 | def test_filename_should_be_basenamed |
|
183 | 222 | a = Attachment.new(:file => MockFile.new(:original_filename => "path/to/the/file")) |
|
184 | 223 | assert_equal 'file', a.filename |
|
185 | 224 | end |
|
186 | 225 | |
|
187 | 226 | def test_filename_should_be_sanitized |
|
188 | 227 | a = Attachment.new(:file => MockFile.new(:original_filename => "valid:[] invalid:?%*|\"'<>chars")) |
|
189 | 228 | assert_equal 'valid_[] invalid_chars', a.filename |
|
190 | 229 | end |
|
191 | 230 | |
|
192 | 231 | def test_diskfilename |
|
193 | 232 | assert Attachment.disk_filename("test_file.txt") =~ /^\d{12}_test_file.txt$/ |
|
194 | 233 | assert_equal 'test_file.txt', Attachment.disk_filename("test_file.txt")[13..-1] |
|
195 | 234 | assert_equal '770c509475505f37c2b8fb6030434d6b.txt', Attachment.disk_filename("test_accentuΓ©.txt")[13..-1] |
|
196 | 235 | assert_equal 'f8139524ebb8f32e51976982cd20a85d', Attachment.disk_filename("test_accentuΓ©")[13..-1] |
|
197 | 236 | assert_equal 'cbb5b0f30978ba03731d61f9f6d10011', Attachment.disk_filename("test_accentuΓ©.Γ§a")[13..-1] |
|
198 | 237 | end |
|
199 | 238 | |
|
200 | 239 | def test_title |
|
201 | 240 | a = Attachment.new(:filename => "test.png") |
|
202 | 241 | assert_equal "test.png", a.title |
|
203 | 242 | |
|
204 | 243 | a = Attachment.new(:filename => "test.png", :description => "Cool image") |
|
205 | 244 | assert_equal "test.png (Cool image)", a.title |
|
206 | 245 | end |
|
207 | 246 | |
|
208 | 247 | def test_new_attachment_should_be_editable_by_author |
|
209 | 248 | user = User.find(1) |
|
210 | 249 | a = Attachment.new(:author => user) |
|
211 | 250 | assert_equal true, a.editable?(user) |
|
212 | 251 | end |
|
213 | 252 | |
|
214 | 253 | def test_prune_should_destroy_old_unattached_attachments |
|
215 | 254 | Attachment.create!(:file => uploaded_test_file("testfile.txt", ""), :author_id => 1, :created_on => 2.days.ago) |
|
216 | 255 | Attachment.create!(:file => uploaded_test_file("testfile.txt", ""), :author_id => 1, :created_on => 2.days.ago) |
|
217 | 256 | Attachment.create!(:file => uploaded_test_file("testfile.txt", ""), :author_id => 1) |
|
218 | 257 | |
|
219 | 258 | assert_difference 'Attachment.count', -2 do |
|
220 | 259 | Attachment.prune |
|
221 | 260 | end |
|
222 | 261 | end |
|
223 | 262 | |
|
224 | 263 | def test_move_from_root_to_target_directory_should_move_root_files |
|
225 | 264 | a = Attachment.find(20) |
|
226 | 265 | assert a.disk_directory.blank? |
|
227 | 266 | # Create a real file for this fixture |
|
228 | 267 | File.open(a.diskfile, "w") do |f| |
|
229 | 268 | f.write "test file at the root of files directory" |
|
230 | 269 | end |
|
231 | 270 | assert a.readable? |
|
232 | 271 | Attachment.move_from_root_to_target_directory |
|
233 | 272 | |
|
234 | 273 | a.reload |
|
235 | 274 | assert_equal '2012/05', a.disk_directory |
|
236 | 275 | assert a.readable? |
|
237 | 276 | end |
|
238 | 277 | |
|
239 | 278 | test "Attachmnet.attach_files should attach the file" do |
|
240 | 279 | issue = Issue.first |
|
241 | 280 | assert_difference 'Attachment.count' do |
|
242 | 281 | Attachment.attach_files(issue, |
|
243 | 282 | '1' => { |
|
244 | 283 | 'file' => uploaded_test_file('testfile.txt', 'text/plain'), |
|
245 | 284 | 'description' => 'test' |
|
246 | 285 | }) |
|
247 | 286 | end |
|
248 | 287 | attachment = Attachment.order('id DESC').first |
|
249 | 288 | assert_equal issue, attachment.container |
|
250 | 289 | assert_equal 'testfile.txt', attachment.filename |
|
251 | 290 | assert_equal 59, attachment.filesize |
|
252 | 291 | assert_equal 'test', attachment.description |
|
253 | 292 | assert_equal 'text/plain', attachment.content_type |
|
254 | 293 | assert File.exists?(attachment.diskfile) |
|
255 | 294 | assert_equal 59, File.size(attachment.diskfile) |
|
256 | 295 | end |
|
257 | 296 | |
|
258 | 297 | test "Attachmnet.attach_files should add unsaved files to the object as unsaved attachments" do |
|
259 | 298 | # Max size of 0 to force Attachment creation failures |
|
260 | 299 | with_settings(:attachment_max_size => 0) do |
|
261 | 300 | @project = Project.find(1) |
|
262 | 301 | response = Attachment.attach_files(@project, { |
|
263 | 302 | '1' => {'file' => mock_file, 'description' => 'test'}, |
|
264 | 303 | '2' => {'file' => mock_file, 'description' => 'test'} |
|
265 | 304 | }) |
|
266 | 305 | |
|
267 | 306 | assert response[:unsaved].present? |
|
268 | 307 | assert_equal 2, response[:unsaved].length |
|
269 | 308 | assert response[:unsaved].first.new_record? |
|
270 | 309 | assert response[:unsaved].second.new_record? |
|
271 | 310 | assert_equal response[:unsaved], @project.unsaved_attachments |
|
272 | 311 | end |
|
273 | 312 | end |
|
274 | 313 | |
|
275 | 314 | test "Attachment.attach_files should preserve the content_type of attachments added by token" do |
|
276 | 315 | @project = Project.find(1) |
|
277 | 316 | attachment = Attachment.create!(:file => uploaded_test_file("testfile.txt", ""), :author_id => 1, :created_on => 2.days.ago) |
|
278 | 317 | assert_equal 'text/plain', attachment.content_type |
|
279 | 318 | Attachment.attach_files(@project, { '1' => {'token' => attachment.token } }) |
|
280 | 319 | attachment.reload |
|
281 | 320 | assert_equal 'text/plain', attachment.content_type |
|
282 | 321 | end |
|
283 | 322 | |
|
284 | 323 | def test_update_attachments |
|
285 | 324 | attachments = Attachment.where(:id => [2, 3]).to_a |
|
286 | 325 | |
|
287 | 326 | assert Attachment.update_attachments(attachments, { |
|
288 | 327 | '2' => {:filename => 'newname.txt', :description => 'New description'}, |
|
289 | 328 | 3 => {:filename => 'othername.txt'} |
|
290 | 329 | }) |
|
291 | 330 | |
|
292 | 331 | attachment = Attachment.find(2) |
|
293 | 332 | assert_equal 'newname.txt', attachment.filename |
|
294 | 333 | assert_equal 'New description', attachment.description |
|
295 | 334 | |
|
296 | 335 | attachment = Attachment.find(3) |
|
297 | 336 | assert_equal 'othername.txt', attachment.filename |
|
298 | 337 | end |
|
299 | 338 | |
|
300 | 339 | def test_update_attachments_with_failure |
|
301 | 340 | attachments = Attachment.where(:id => [2, 3]).to_a |
|
302 | 341 | |
|
303 | 342 | assert !Attachment.update_attachments(attachments, { |
|
304 | 343 | '2' => {:filename => '', :description => 'New description'}, |
|
305 | 344 | 3 => {:filename => 'othername.txt'} |
|
306 | 345 | }) |
|
307 | 346 | |
|
308 | 347 | attachment = Attachment.find(3) |
|
309 | 348 | assert_equal 'logo.gif', attachment.filename |
|
310 | 349 | end |
|
311 | 350 | |
|
312 | 351 | def test_update_attachments_should_sanitize_filename |
|
313 | 352 | attachments = Attachment.where(:id => 2).to_a |
|
314 | 353 | |
|
315 | 354 | assert Attachment.update_attachments(attachments, { |
|
316 | 355 | 2 => {:filename => 'newname?.txt'}, |
|
317 | 356 | }) |
|
318 | 357 | |
|
319 | 358 | attachment = Attachment.find(2) |
|
320 | 359 | assert_equal 'newname_.txt', attachment.filename |
|
321 | 360 | end |
|
322 | 361 | |
|
323 | 362 | def test_latest_attach |
|
324 | 363 | set_fixtures_attachments_directory |
|
325 | 364 | a1 = Attachment.find(16) |
|
326 | 365 | assert_equal "testfile.png", a1.filename |
|
327 | 366 | assert a1.readable? |
|
328 | 367 | assert (! a1.visible?(User.anonymous)) |
|
329 | 368 | assert a1.visible?(User.find(2)) |
|
330 | 369 | a2 = Attachment.find(17) |
|
331 | 370 | assert_equal "testfile.PNG", a2.filename |
|
332 | 371 | assert a2.readable? |
|
333 | 372 | assert (! a2.visible?(User.anonymous)) |
|
334 | 373 | assert a2.visible?(User.find(2)) |
|
335 | 374 | assert a1.created_on < a2.created_on |
|
336 | 375 | |
|
337 | 376 | la1 = Attachment.latest_attach([a1, a2], "testfile.png") |
|
338 | 377 | assert_equal 17, la1.id |
|
339 | 378 | la2 = Attachment.latest_attach([a1, a2], "Testfile.PNG") |
|
340 | 379 | assert_equal 17, la2.id |
|
341 | 380 | |
|
342 | 381 | set_tmp_attachments_directory |
|
343 | 382 | end |
|
344 | 383 | |
|
345 | 384 | def test_latest_attach_should_not_error_with_string_with_invalid_encoding |
|
346 | 385 | string = "width:50\xFE-Image.jpg".force_encoding('UTF-8') |
|
347 | 386 | assert_equal false, string.valid_encoding? |
|
348 | 387 | |
|
349 | 388 | Attachment.latest_attach(Attachment.limit(2).to_a, string) |
|
350 | 389 | end |
|
351 | 390 | |
|
352 | 391 | def test_thumbnailable_should_be_true_for_images |
|
353 | 392 | assert_equal true, Attachment.new(:filename => 'test.jpg').thumbnailable? |
|
354 | 393 | end |
|
355 | 394 | |
|
356 | 395 | def test_thumbnailable_should_be_true_for_non_images |
|
357 | 396 | assert_equal false, Attachment.new(:filename => 'test.txt').thumbnailable? |
|
358 | 397 | end |
|
359 | 398 | |
|
360 | 399 | if convert_installed? |
|
361 | 400 | def test_thumbnail_should_generate_the_thumbnail |
|
362 | 401 | set_fixtures_attachments_directory |
|
363 | 402 | attachment = Attachment.find(16) |
|
364 | 403 | Attachment.clear_thumbnails |
|
365 | 404 | |
|
366 | 405 | assert_difference "Dir.glob(File.join(Attachment.thumbnails_storage_path, '*.thumb')).size" do |
|
367 | 406 | thumbnail = attachment.thumbnail |
|
368 | 407 | assert_equal "16_8e0294de2441577c529f170b6fb8f638_100.thumb", File.basename(thumbnail) |
|
369 | 408 | assert File.exists?(thumbnail) |
|
370 | 409 | end |
|
371 | 410 | end |
|
372 | 411 | |
|
373 | 412 | def test_thumbnail_should_return_nil_if_generation_fails |
|
374 | 413 | Redmine::Thumbnail.expects(:generate).raises(SystemCallError, 'Something went wrong') |
|
375 | 414 | set_fixtures_attachments_directory |
|
376 | 415 | attachment = Attachment.find(16) |
|
377 | 416 | assert_nil attachment.thumbnail |
|
378 | 417 | end |
|
379 | 418 | else |
|
380 | 419 | puts '(ImageMagick convert not available)' |
|
381 | 420 | end |
|
382 | 421 | end |
General Comments 0
You need to be logged in to leave comments.
Login now