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