##// END OF EJS Templates
Added an option to see all versions in the roadmap view (including completed ones)....
Jean-Philippe Lang -
r513:8e24c6458da0
parent child
Show More
@@ -1,670 +1,671
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require 'csv'
19 19
20 20 class ProjectsController < ApplicationController
21 21 layout 'base'
22 22 before_filter :find_project, :authorize, :except => [ :index, :list, :add ]
23 23 before_filter :require_admin, :only => [ :add, :destroy ]
24 24
25 25 cache_sweeper :issue_sweeper, :only => [ :add_issue ]
26 26
27 27 helper :sort
28 28 include SortHelper
29 29 helper :custom_fields
30 30 include CustomFieldsHelper
31 31 helper :ifpdf
32 32 include IfpdfHelper
33 33 helper IssuesHelper
34 34 helper :queries
35 35 include QueriesHelper
36 36
37 37 def index
38 38 list
39 39 render :action => 'list' unless request.xhr?
40 40 end
41 41
42 42 # Lists public projects
43 43 def list
44 44 sort_init "#{Project.table_name}.name", "asc"
45 45 sort_update
46 46 @project_count = Project.count(:all, :conditions => Project.visible_by(logged_in_user))
47 47 @project_pages = Paginator.new self, @project_count,
48 48 15,
49 49 params['page']
50 50 @projects = Project.find :all, :order => sort_clause,
51 51 :conditions => Project.visible_by(logged_in_user),
52 52 :include => :parent,
53 53 :limit => @project_pages.items_per_page,
54 54 :offset => @project_pages.current.offset
55 55
56 56 render :action => "list", :layout => false if request.xhr?
57 57 end
58 58
59 59 # Add a new project
60 60 def add
61 61 @custom_fields = IssueCustomField.find(:all)
62 62 @root_projects = Project.find(:all, :conditions => "parent_id is null")
63 63 @project = Project.new(params[:project])
64 64 if request.get?
65 65 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project) }
66 66 else
67 67 @project.custom_fields = CustomField.find(params[:custom_field_ids]) if params[:custom_field_ids]
68 68 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) }
69 69 @project.custom_values = @custom_values
70 70 if params[:repository_enabled] && params[:repository_enabled] == "1"
71 71 @project.repository = Repository.new
72 72 @project.repository.attributes = params[:repository]
73 73 end
74 74 if "1" == params[:wiki_enabled]
75 75 @project.wiki = Wiki.new
76 76 @project.wiki.attributes = params[:wiki]
77 77 end
78 78 if @project.save
79 79 flash[:notice] = l(:notice_successful_create)
80 80 redirect_to :controller => 'admin', :action => 'projects'
81 81 end
82 82 end
83 83 end
84 84
85 85 # Show @project
86 86 def show
87 87 @custom_values = @project.custom_values.find(:all, :include => :custom_field)
88 88 @members_by_role = @project.members.find(:all, :include => [:user, :role], :order => 'position').group_by {|m| m.role}
89 89 @subprojects = @project.children if @project.children.size > 0
90 90 @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC")
91 91 @trackers = Tracker.find(:all, :order => 'position')
92 92 @open_issues_by_tracker = Issue.count(:group => :tracker, :joins => "INNER JOIN #{IssueStatus.table_name} ON #{IssueStatus.table_name}.id = #{Issue.table_name}.status_id", :conditions => ["project_id=? and #{IssueStatus.table_name}.is_closed=?", @project.id, false])
93 93 @total_issues_by_tracker = Issue.count(:group => :tracker, :conditions => ["project_id=?", @project.id])
94 94 end
95 95
96 96 def settings
97 97 @root_projects = Project::find(:all, :conditions => ["parent_id is null and id <> ?", @project.id])
98 98 @custom_fields = IssueCustomField.find(:all)
99 99 @issue_category ||= IssueCategory.new
100 100 @member ||= @project.members.new
101 101 @custom_values ||= ProjectCustomField.find(:all).collect { |x| @project.custom_values.find_by_custom_field_id(x.id) || CustomValue.new(:custom_field => x) }
102 102 end
103 103
104 104 # Edit @project
105 105 def edit
106 106 if request.post?
107 107 @project.custom_fields = IssueCustomField.find(params[:custom_field_ids]) if params[:custom_field_ids]
108 108 if params[:custom_fields]
109 109 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) }
110 110 @project.custom_values = @custom_values
111 111 end
112 112 if params[:repository_enabled]
113 113 case params[:repository_enabled]
114 114 when "0"
115 115 @project.repository = nil
116 116 when "1"
117 117 @project.repository ||= Repository.new
118 118 @project.repository.update_attributes params[:repository]
119 119 end
120 120 end
121 121 if params[:wiki_enabled]
122 122 case params[:wiki_enabled]
123 123 when "0"
124 124 @project.wiki.destroy if @project.wiki
125 125 when "1"
126 126 @project.wiki ||= Wiki.new
127 127 @project.wiki.update_attributes params[:wiki]
128 128 end
129 129 end
130 130 @project.attributes = params[:project]
131 131 if @project.save
132 132 flash[:notice] = l(:notice_successful_update)
133 133 redirect_to :action => 'settings', :id => @project
134 134 else
135 135 settings
136 136 render :action => 'settings'
137 137 end
138 138 end
139 139 end
140 140
141 141 # Delete @project
142 142 def destroy
143 143 if request.post? and params[:confirm]
144 144 @project.destroy
145 145 redirect_to :controller => 'admin', :action => 'projects'
146 146 end
147 147 end
148 148
149 149 # Add a new issue category to @project
150 150 def add_issue_category
151 151 if request.post?
152 152 @issue_category = @project.issue_categories.build(params[:issue_category])
153 153 if @issue_category.save
154 154 flash[:notice] = l(:notice_successful_create)
155 155 redirect_to :action => 'settings', :tab => 'categories', :id => @project
156 156 else
157 157 settings
158 158 render :action => 'settings'
159 159 end
160 160 end
161 161 end
162 162
163 163 # Add a new version to @project
164 164 def add_version
165 165 @version = @project.versions.build(params[:version])
166 166 if request.post? and @version.save
167 167 flash[:notice] = l(:notice_successful_create)
168 168 redirect_to :action => 'settings', :tab => 'versions', :id => @project
169 169 end
170 170 end
171 171
172 172 # Add a new member to @project
173 173 def add_member
174 174 @member = @project.members.build(params[:member])
175 175 if request.post? && @member.save
176 176 respond_to do |format|
177 177 format.html { redirect_to :action => 'settings', :tab => 'members', :id => @project }
178 178 format.js { render(:update) {|page| page.replace_html "tab-content-members", :partial => 'members'} }
179 179 end
180 180 else
181 181 settings
182 182 render :action => 'settings'
183 183 end
184 184 end
185 185
186 186 # Show members list of @project
187 187 def list_members
188 188 @members = @project.members.find(:all)
189 189 end
190 190
191 191 # Add a new document to @project
192 192 def add_document
193 193 @categories = Enumeration::get_values('DCAT')
194 194 @document = @project.documents.build(params[:document])
195 195 if request.post? and @document.save
196 196 # Save the attachments
197 197 params[:attachments].each { |a|
198 198 Attachment.create(:container => @document, :file => a, :author => logged_in_user) unless a.size == 0
199 199 } if params[:attachments] and params[:attachments].is_a? Array
200 200 flash[:notice] = l(:notice_successful_create)
201 201 Mailer.deliver_document_add(@document) if Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled?
202 202 redirect_to :action => 'list_documents', :id => @project
203 203 end
204 204 end
205 205
206 206 # Show documents list of @project
207 207 def list_documents
208 208 @documents = @project.documents.find :all, :include => :category
209 209 end
210 210
211 211 # Add a new issue to @project
212 212 def add_issue
213 213 @tracker = Tracker.find(params[:tracker_id])
214 214 @priorities = Enumeration::get_values('IPRI')
215 215
216 216 default_status = IssueStatus.default
217 217 @issue = Issue.new(:project => @project, :tracker => @tracker)
218 218 @issue.status = default_status
219 219 @allowed_statuses = ([default_status] + default_status.find_new_statuses_allowed_to(logged_in_user.role_for_project(@project), @issue.tracker))if logged_in_user
220 220 if request.get?
221 221 @issue.start_date = Date.today
222 222 @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue) }
223 223 else
224 224 @issue.attributes = params[:issue]
225 225
226 226 requested_status = IssueStatus.find_by_id(params[:issue][:status_id])
227 227 @issue.status = (@allowed_statuses.include? requested_status) ? requested_status : default_status
228 228
229 229 @issue.author_id = self.logged_in_user.id if self.logged_in_user
230 230 # Multiple file upload
231 231 @attachments = []
232 232 params[:attachments].each { |a|
233 233 @attachments << Attachment.new(:container => @issue, :file => a, :author => logged_in_user) unless a.size == 0
234 234 } if params[:attachments] and params[:attachments].is_a? Array
235 235 @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue, :value => params["custom_fields"][x.id.to_s]) }
236 236 @issue.custom_values = @custom_values
237 237 if @issue.save
238 238 @attachments.each(&:save)
239 239 flash[:notice] = l(:notice_successful_create)
240 240 Mailer.deliver_issue_add(@issue) if Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled?
241 241 redirect_to :action => 'list_issues', :id => @project
242 242 end
243 243 end
244 244 end
245 245
246 246 # Show filtered/sorted issues list of @project
247 247 def list_issues
248 248 sort_init "#{Issue.table_name}.id", "desc"
249 249 sort_update
250 250
251 251 retrieve_query
252 252
253 253 @results_per_page_options = [ 15, 25, 50, 100 ]
254 254 if params[:per_page] and @results_per_page_options.include? params[:per_page].to_i
255 255 @results_per_page = params[:per_page].to_i
256 256 session[:results_per_page] = @results_per_page
257 257 else
258 258 @results_per_page = session[:results_per_page] || 25
259 259 end
260 260
261 261 if @query.valid?
262 262 @issue_count = Issue.count(:include => [:status, :project, :custom_values], :conditions => @query.statement)
263 263 @issue_pages = Paginator.new self, @issue_count, @results_per_page, params['page']
264 264 @issues = Issue.find :all, :order => sort_clause,
265 265 :include => [ :assigned_to, :status, :tracker, :project, :priority, :custom_values ],
266 266 :conditions => @query.statement,
267 267 :limit => @issue_pages.items_per_page,
268 268 :offset => @issue_pages.current.offset
269 269 end
270 270 @trackers = Tracker.find :all, :order => 'position'
271 271 render :layout => false if request.xhr?
272 272 end
273 273
274 274 # Export filtered/sorted issues list to CSV
275 275 def export_issues_csv
276 276 sort_init "#{Issue.table_name}.id", "desc"
277 277 sort_update
278 278
279 279 retrieve_query
280 280 render :action => 'list_issues' and return unless @query.valid?
281 281
282 282 @issues = Issue.find :all, :order => sort_clause,
283 283 :include => [ :assigned_to, :author, :status, :tracker, :priority, :project, {:custom_values => :custom_field} ],
284 284 :conditions => @query.statement,
285 285 :limit => Setting.issues_export_limit
286 286
287 287 ic = Iconv.new(l(:general_csv_encoding), 'UTF-8')
288 288 export = StringIO.new
289 289 CSV::Writer.generate(export, l(:general_csv_separator)) do |csv|
290 290 # csv header fields
291 291 headers = [ "#", l(:field_status),
292 292 l(:field_project),
293 293 l(:field_tracker),
294 294 l(:field_priority),
295 295 l(:field_subject),
296 296 l(:field_assigned_to),
297 297 l(:field_author),
298 298 l(:field_start_date),
299 299 l(:field_due_date),
300 300 l(:field_done_ratio),
301 301 l(:field_created_on),
302 302 l(:field_updated_on)
303 303 ]
304 304 for custom_field in @project.all_custom_fields
305 305 headers << custom_field.name
306 306 end
307 307 csv << headers.collect {|c| ic.iconv(c) }
308 308 # csv lines
309 309 @issues.each do |issue|
310 310 fields = [issue.id, issue.status.name,
311 311 issue.project.name,
312 312 issue.tracker.name,
313 313 issue.priority.name,
314 314 issue.subject,
315 315 (issue.assigned_to ? issue.assigned_to.name : ""),
316 316 issue.author.name,
317 317 issue.start_date ? l_date(issue.start_date) : nil,
318 318 issue.due_date ? l_date(issue.due_date) : nil,
319 319 issue.done_ratio,
320 320 l_datetime(issue.created_on),
321 321 l_datetime(issue.updated_on)
322 322 ]
323 323 for custom_field in @project.all_custom_fields
324 324 fields << (show_value issue.custom_value_for(custom_field))
325 325 end
326 326 csv << fields.collect {|c| ic.iconv(c.to_s) }
327 327 end
328 328 end
329 329 export.rewind
330 330 send_data(export.read, :type => 'text/csv; header=present', :filename => 'export.csv')
331 331 end
332 332
333 333 # Export filtered/sorted issues to PDF
334 334 def export_issues_pdf
335 335 sort_init "#{Issue.table_name}.id", "desc"
336 336 sort_update
337 337
338 338 retrieve_query
339 339 render :action => 'list_issues' and return unless @query.valid?
340 340
341 341 @issues = Issue.find :all, :order => sort_clause,
342 342 :include => [ :author, :status, :tracker, :priority, :project, :custom_values ],
343 343 :conditions => @query.statement,
344 344 :limit => Setting.issues_export_limit
345 345
346 346 @options_for_rfpdf ||= {}
347 347 @options_for_rfpdf[:file_name] = "export.pdf"
348 348 render :layout => false
349 349 end
350 350
351 351 def move_issues
352 352 @issues = @project.issues.find(params[:issue_ids]) if params[:issue_ids]
353 353 redirect_to :action => 'list_issues', :id => @project and return unless @issues
354 354 @projects = []
355 355 # find projects to which the user is allowed to move the issue
356 356 @logged_in_user.memberships.each {|m| @projects << m.project if Permission.allowed_to_role("projects/move_issues", m.role)}
357 357 # issue can be moved to any tracker
358 358 @trackers = Tracker.find(:all)
359 359 if request.post? and params[:new_project_id] and params[:new_tracker_id]
360 360 new_project = Project.find(params[:new_project_id])
361 361 new_tracker = Tracker.find(params[:new_tracker_id])
362 362 @issues.each { |i|
363 363 # project dependent properties
364 364 unless i.project_id == new_project.id
365 365 i.category = nil
366 366 i.fixed_version = nil
367 367 # delete issue relations
368 368 i.relations_from.clear
369 369 i.relations_to.clear
370 370 end
371 371 # move the issue
372 372 i.project = new_project
373 373 i.tracker = new_tracker
374 374 i.save
375 375 }
376 376 flash[:notice] = l(:notice_successful_update)
377 377 redirect_to :action => 'list_issues', :id => @project
378 378 end
379 379 end
380 380
381 381 def add_query
382 382 @query = Query.new(params[:query])
383 383 @query.project = @project
384 384 @query.user = logged_in_user
385 385
386 386 params[:fields].each do |field|
387 387 @query.add_filter(field, params[:operators][field], params[:values][field])
388 388 end if params[:fields]
389 389
390 390 if request.post? and @query.save
391 391 flash[:notice] = l(:notice_successful_create)
392 392 redirect_to :controller => 'reports', :action => 'issue_report', :id => @project
393 393 end
394 394 render :layout => false if request.xhr?
395 395 end
396 396
397 397 # Add a news to @project
398 398 def add_news
399 399 @news = News.new(:project => @project)
400 400 if request.post?
401 401 @news.attributes = params[:news]
402 402 @news.author_id = self.logged_in_user.id if self.logged_in_user
403 403 if @news.save
404 404 flash[:notice] = l(:notice_successful_create)
405 405 redirect_to :action => 'list_news', :id => @project
406 406 end
407 407 end
408 408 end
409 409
410 410 # Show news list of @project
411 411 def list_news
412 412 @news_pages, @news = paginate :news, :per_page => 10, :conditions => ["project_id=?", @project.id], :include => :author, :order => "#{News.table_name}.created_on DESC"
413 413 render :action => "list_news", :layout => false if request.xhr?
414 414 end
415 415
416 416 def add_file
417 417 if request.post?
418 418 @version = @project.versions.find_by_id(params[:version_id])
419 419 # Save the attachments
420 420 @attachments = []
421 421 params[:attachments].each { |file|
422 422 next unless file.size > 0
423 423 a = Attachment.create(:container => @version, :file => file, :author => logged_in_user)
424 424 @attachments << a unless a.new_record?
425 425 } if params[:attachments] and params[:attachments].is_a? Array
426 426 Mailer.deliver_attachments_add(@attachments) if !@attachments.empty? and Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled?
427 427 redirect_to :controller => 'projects', :action => 'list_files', :id => @project
428 428 end
429 429 @versions = @project.versions
430 430 end
431 431
432 432 def list_files
433 433 @versions = @project.versions
434 434 end
435 435
436 436 # Show changelog for @project
437 437 def changelog
438 438 @trackers = Tracker.find(:all, :conditions => ["is_in_chlog=?", true], :order => 'position')
439 439 retrieve_selected_tracker_ids(@trackers)
440 440
441 441 @fixed_issues = @project.issues.find(:all,
442 442 :include => [ :fixed_version, :status, :tracker ],
443 443 :conditions => [ "#{IssueStatus.table_name}.is_closed=? and #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')}) and #{Issue.table_name}.fixed_version_id is not null", true],
444 444 :order => "#{Version.table_name}.effective_date DESC, #{Issue.table_name}.id DESC"
445 445 ) unless @selected_tracker_ids.empty?
446 446 @fixed_issues ||= []
447 447 end
448 448
449 449 def roadmap
450 450 @trackers = Tracker.find(:all, :conditions => ["is_in_roadmap=?", true], :order => 'position')
451 retrieve_selected_tracker_ids(@trackers)
451 retrieve_selected_tracker_ids(@trackers)
452 conditions = ("1" == params[:completed] ? nil : [ "#{Version.table_name}.effective_date > ?", Date.today])
452 453
453 454 @versions = @project.versions.find(:all,
454 :conditions => [ "#{Version.table_name}.effective_date>?", Date.today],
455 :conditions => conditions,
455 456 :order => "#{Version.table_name}.effective_date ASC"
456 457 )
457 458 end
458 459
459 460 def activity
460 461 if params[:year] and params[:year].to_i > 1900
461 462 @year = params[:year].to_i
462 463 if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13
463 464 @month = params[:month].to_i
464 465 end
465 466 end
466 467 @year ||= Date.today.year
467 468 @month ||= Date.today.month
468 469
469 470 @date_from = Date.civil(@year, @month, 1)
470 471 @date_to = @date_from >> 1
471 472
472 473 @events_by_day = {}
473 474
474 475 unless params[:show_issues] == "0"
475 476 @project.issues.find(:all, :include => [:author], :conditions => ["#{Issue.table_name}.created_on>=? and #{Issue.table_name}.created_on<=?", @date_from, @date_to] ).each { |i|
476 477 @events_by_day[i.created_on.to_date] ||= []
477 478 @events_by_day[i.created_on.to_date] << i
478 479 }
479 480 @show_issues = 1
480 481 end
481 482
482 483 unless params[:show_news] == "0"
483 484 @project.news.find(:all, :conditions => ["#{News.table_name}.created_on>=? and #{News.table_name}.created_on<=?", @date_from, @date_to], :include => :author ).each { |i|
484 485 @events_by_day[i.created_on.to_date] ||= []
485 486 @events_by_day[i.created_on.to_date] << i
486 487 }
487 488 @show_news = 1
488 489 end
489 490
490 491 unless params[:show_files] == "0"
491 492 Attachment.find(:all, :select => "#{Attachment.table_name}.*", :joins => "LEFT JOIN #{Version.table_name} ON #{Version.table_name}.id = #{Attachment.table_name}.container_id", :conditions => ["#{Attachment.table_name}.container_type='Version' and #{Version.table_name}.project_id=? and #{Attachment.table_name}.created_on>=? and #{Attachment.table_name}.created_on<=?", @project.id, @date_from, @date_to], :include => :author ).each { |i|
492 493 @events_by_day[i.created_on.to_date] ||= []
493 494 @events_by_day[i.created_on.to_date] << i
494 495 }
495 496 @show_files = 1
496 497 end
497 498
498 499 unless params[:show_documents] == "0"
499 500 @project.documents.find(:all, :conditions => ["#{Document.table_name}.created_on>=? and #{Document.table_name}.created_on<=?", @date_from, @date_to] ).each { |i|
500 501 @events_by_day[i.created_on.to_date] ||= []
501 502 @events_by_day[i.created_on.to_date] << i
502 503 }
503 504 Attachment.find(:all, :select => "attachments.*", :joins => "LEFT JOIN #{Document.table_name} ON #{Document.table_name}.id = #{Attachment.table_name}.container_id", :conditions => ["#{Attachment.table_name}.container_type='Document' and #{Document.table_name}.project_id=? and #{Attachment.table_name}.created_on>=? and #{Attachment.table_name}.created_on<=?", @project.id, @date_from, @date_to], :include => :author ).each { |i|
504 505 @events_by_day[i.created_on.to_date] ||= []
505 506 @events_by_day[i.created_on.to_date] << i
506 507 }
507 508 @show_documents = 1
508 509 end
509 510
510 511 unless params[:show_wiki_edits] == "0"
511 512 select = "#{WikiContent.versioned_table_name}.updated_on, #{WikiContent.versioned_table_name}.comments, " +
512 513 "#{WikiContent.versioned_table_name}.#{WikiContent.version_column}, #{WikiPage.table_name}.title"
513 514 joins = "LEFT JOIN #{WikiPage.table_name} ON #{WikiPage.table_name}.id = #{WikiContent.versioned_table_name}.page_id " +
514 515 "LEFT JOIN #{Wiki.table_name} ON #{Wiki.table_name}.id = #{WikiPage.table_name}.wiki_id "
515 516 conditions = ["#{Wiki.table_name}.project_id = ? AND #{WikiContent.versioned_table_name}.updated_on BETWEEN ? AND ?",
516 517 @project.id, @date_from, @date_to]
517 518
518 519 WikiContent.versioned_class.find(:all, :select => select, :joins => joins, :conditions => conditions).each { |i|
519 520 # We provide this alias so all events can be treated in the same manner
520 521 def i.created_on
521 522 self.updated_on
522 523 end
523 524
524 525 @events_by_day[i.created_on.to_date] ||= []
525 526 @events_by_day[i.created_on.to_date] << i
526 527 }
527 528 @show_wiki_edits = 1
528 529 end
529 530
530 531 unless @project.repository.nil? || params[:show_changesets] == "0"
531 532 @project.repository.changesets.find(:all, :conditions => ["#{Changeset.table_name}.committed_on BETWEEN ? AND ?", @date_from, @date_to]).each { |i|
532 533 def i.created_on
533 534 self.committed_on
534 535 end
535 536 @events_by_day[i.created_on.to_date] ||= []
536 537 @events_by_day[i.created_on.to_date] << i
537 538 }
538 539 @show_changesets = 1
539 540 end
540 541
541 542 render :layout => false if request.xhr?
542 543 end
543 544
544 545 def calendar
545 546 @trackers = Tracker.find(:all, :order => 'position')
546 547 retrieve_selected_tracker_ids(@trackers)
547 548
548 549 if params[:year] and params[:year].to_i > 1900
549 550 @year = params[:year].to_i
550 551 if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13
551 552 @month = params[:month].to_i
552 553 end
553 554 end
554 555 @year ||= Date.today.year
555 556 @month ||= Date.today.month
556 557
557 558 @date_from = Date.civil(@year, @month, 1)
558 559 @date_to = (@date_from >> 1)-1
559 560 # start on monday
560 561 @date_from = @date_from - (@date_from.cwday-1)
561 562 # finish on sunday
562 563 @date_to = @date_to + (7-@date_to.cwday)
563 564
564 565 @events = []
565 566 @project.issues_with_subprojects(params[:with_subprojects]) do
566 567 @events += Issue.find(:all,
567 568 :include => [:tracker, :status, :assigned_to, :priority, :project],
568 569 :conditions => ["((start_date>=? and start_date<=?) or (due_date>=? and due_date<=?)) and #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')})", @date_from, @date_to, @date_from, @date_to]
569 570 ) unless @selected_tracker_ids.empty?
570 571 end
571 572 @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to])
572 573
573 574 @ending_events_by_days = @events.group_by {|event| event.due_date}
574 575 @starting_events_by_days = @events.group_by {|event| event.start_date}
575 576
576 577 render :layout => false if request.xhr?
577 578 end
578 579
579 580 def gantt
580 581 @trackers = Tracker.find(:all, :order => 'position')
581 582 retrieve_selected_tracker_ids(@trackers)
582 583
583 584 if params[:year] and params[:year].to_i >0
584 585 @year_from = params[:year].to_i
585 586 if params[:month] and params[:month].to_i >=1 and params[:month].to_i <= 12
586 587 @month_from = params[:month].to_i
587 588 else
588 589 @month_from = 1
589 590 end
590 591 else
591 592 @month_from ||= (Date.today << 1).month
592 593 @year_from ||= (Date.today << 1).year
593 594 end
594 595
595 596 @zoom = (params[:zoom].to_i > 0 and params[:zoom].to_i < 5) ? params[:zoom].to_i : 2
596 597 @months = (params[:months].to_i > 0 and params[:months].to_i < 25) ? params[:months].to_i : 6
597 598
598 599 @date_from = Date.civil(@year_from, @month_from, 1)
599 600 @date_to = (@date_from >> @months) - 1
600 601
601 602 @events = []
602 603 @project.issues_with_subprojects(params[:with_subprojects]) do
603 604 @events += Issue.find(:all,
604 605 :order => "start_date, due_date",
605 606 :include => [:tracker, :status, :assigned_to, :priority, :project],
606 607 :conditions => ["(((start_date>=? and start_date<=?) or (due_date>=? and due_date<=?) or (start_date<? and due_date>?)) and start_date is not null and due_date is not null and #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')}))", @date_from, @date_to, @date_from, @date_to, @date_from, @date_to]
607 608 ) unless @selected_tracker_ids.empty?
608 609 end
609 610 @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to])
610 611 @events.sort! {|x,y| x.start_date <=> y.start_date }
611 612
612 613 if params[:output]=='pdf'
613 614 @options_for_rfpdf ||= {}
614 615 @options_for_rfpdf[:file_name] = "gantt.pdf"
615 616 render :template => "projects/gantt.rfpdf", :layout => false
616 617 else
617 618 render :template => "projects/gantt.rhtml"
618 619 end
619 620 end
620 621
621 622 def feeds
622 623 @queries = @project.queries.find :all, :conditions => ["is_public=? or user_id=?", true, (logged_in_user ? logged_in_user.id : 0)]
623 624 @key = logged_in_user.get_or_create_rss_key.value if logged_in_user
624 625 end
625 626
626 627 private
627 628 # Find project of id params[:id]
628 629 # if not found, redirect to project list
629 630 # Used as a before_filter
630 631 def find_project
631 632 @project = Project.find(params[:id])
632 633 @html_title = @project.name
633 634 rescue ActiveRecord::RecordNotFound
634 635 render_404
635 636 end
636 637
637 638 def retrieve_selected_tracker_ids(selectable_trackers)
638 639 if ids = params[:tracker_ids]
639 640 @selected_tracker_ids = (ids.is_a? Array) ? ids.collect { |id| id.to_i.to_s } : ids.split('/').collect { |id| id.to_i.to_s }
640 641 else
641 642 @selected_tracker_ids = selectable_trackers.collect {|t| t.id.to_s }
642 643 end
643 644 end
644 645
645 646 # Retrieve query from session or build a new query
646 647 def retrieve_query
647 648 if params[:query_id]
648 649 @query = @project.queries.find(params[:query_id])
649 650 session[:query] = @query
650 651 else
651 652 if params[:set_filter] or !session[:query] or session[:query].project_id != @project.id
652 653 # Give it a name, required to be valid
653 654 @query = Query.new(:name => "_")
654 655 @query.project = @project
655 656 if params[:fields] and params[:fields].is_a? Array
656 657 params[:fields].each do |field|
657 658 @query.add_filter(field, params[:operators][field], params[:values][field])
658 659 end
659 660 else
660 661 @query.available_filters.keys.each do |field|
661 662 @query.add_short_filter(field, params[field]) if params[field]
662 663 end
663 664 end
664 665 session[:query] = @query
665 666 else
666 667 @query = session[:query]
667 668 end
668 669 end
669 670 end
670 671 end
@@ -1,19 +1,28
1 1 # redMine - project management software
2 2 # Copyright (C) 2006 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 module ProjectsHelper
19 def link_to_version(version, options = {})
20 return '' unless version && version.is_a?(Version)
21 link_to version.name, {:controller => 'projects',
22 :action => 'roadmap',
23 :id => version.project_id,
24 :completed => (version.completed? ? 1 : nil),
25 :anchor => version.name
26 }, options
27 end
19 28 end
@@ -1,40 +1,44
1 1 # redMine - project management software
2 2 # Copyright (C) 2006 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 class Version < ActiveRecord::Base
19 19 before_destroy :check_integrity
20 20 belongs_to :project
21 21 has_many :fixed_issues, :class_name => 'Issue', :foreign_key => 'fixed_version_id'
22 22 has_many :attachments, :as => :container, :dependent => :destroy
23 23
24 24 validates_presence_of :name
25 25 validates_uniqueness_of :name, :scope => [:project_id]
26 26 validates_format_of :effective_date, :with => /^\d{4}-\d{2}-\d{2}$/, :message => :activerecord_error_not_a_date
27 27
28 28 def start_date
29 29 effective_date
30 30 end
31 31
32 32 def due_date
33 33 effective_date
34 34 end
35 35
36 def completed?
37 effective_date && effective_date <= Date.today
38 end
39
36 40 private
37 41 def check_integrity
38 42 raise "Can't delete version" if self.fixed_issues.find(:first)
39 43 end
40 44 end
@@ -1,92 +1,92
1 1 <% cache(:year => @year, :month => @month, :tracker_ids => @selected_tracker_ids, :subprojects => params[:with_subprojects], :lang => current_language) do %>
2 2 <h2><%= l(:label_calendar) %></h2>
3 3
4 4 <% form_tag do %>
5 5 <table width="100%">
6 6 <tr>
7 7 <td align="left" style="width:15%">
8 8 <%= link_to_remote ('&#171; ' + (@month==1 ? "#{month_name(12)} #{@year-1}" : "#{month_name(@month-1)}")),
9 9 {:update => "content", :url => { :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1), :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects] }},
10 10 {:href => url_for(:action => 'calendar', :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1), :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects])}
11 11 %>
12 12 </td>
13 13 <td align="center" style="width:55%">
14 14 <%= select_month(@month, :prefix => "month", :discard_type => true) %>
15 15 <%= select_year(@year, :prefix => "year", :discard_type => true) %>
16 16 <%= submit_tag l(:button_submit), :class => "button-small" %>
17 17 </td>
18 18 <td align="left" style="width:15%">
19 19 <%= toggle_link l(:label_options), "trackerselect" %>
20 20 <div id="trackerselect" class="rightbox overlay" style="width:140px; display:none;">
21 21 <p><strong><%=l(:label_tracker_plural)%></strong></p>
22 22 <% @trackers.each do |tracker| %>
23 23 <%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
24 24 <%= tracker.name %><br />
25 25 <% end %>
26 26 <% if @project.children.any? %>
27 27 <p><strong><%=l(:label_subproject_plural)%></strong></p>
28 28 <%= check_box_tag "with_subprojects", 1, params[:with_subprojects] %> <%= l(:general_text_Yes) %>
29 29 <% end %>
30 30 <p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
31 31 </div>
32 32 </td>
33 33 <td align="right" style="width:15%">
34 34 <%= link_to_remote ((@month==12 ? "#{month_name(1)} #{@year+1}" : "#{month_name(@month+1)}") + ' &#187;'),
35 35 {:update => "content", :url => { :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1), :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects] }},
36 36 {:href => url_for(:action => 'calendar', :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1), :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects])}
37 37 %>&nbsp;
38 38 </td>
39 39 </tr>
40 40 </table>
41 41 <% end %>
42 42
43 43 <table class="list with-cells">
44 44 <thead>
45 45 <tr>
46 46 <th></th>
47 47 <% 1.upto(7) do |d| %>
48 48 <th style="width:14%"><%= day_name(d) %></th>
49 49 <% end %>
50 50 </tr>
51 51 </thead>
52 52 <tbody>
53 53 <tr style="height:100px">
54 54 <% day = @date_from
55 55 while day <= @date_to
56 56 if day.cwday == 1 %>
57 57 <th><%= day.cweek %></th>
58 58 <% end %>
59 59 <td valign="top" class="<%= day.month==@month ? "even" : "odd" %>" style="width:14%; <%= Date.today == day ? 'background:#FDFED0;' : '' %>">
60 60 <p class="textright"><%= day==Date.today ? "<b>#{day.day}</b>" : day.day %></p>
61 61 <% ((@ending_events_by_days[day] || []) + (@starting_events_by_days[day] || [])).uniq.each do |i| %>
62 62 <% if i.is_a? Issue %>
63 63 <div class="tooltip">
64 64 <%= if day == i.start_date and day == i.due_date
65 65 image_tag('arrow_bw.png')
66 66 elsif day == i.start_date
67 67 image_tag('arrow_from.png')
68 68 elsif day == i.due_date
69 69 image_tag('arrow_to.png')
70 70 end %>
71 71 <small><%= link_to_issue i %><%= " (#{i.project.name})" unless @project && @project == i.project %>: <%=h i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small>
72 72 <span class="tip">
73 73 <%= render :partial => "issues/tooltip", :locals => { :issue => i }%>
74 74 </span>
75 75 </div>
76 76 <% else %>
77 <%= image_tag('milestone.png') %> <small><%= "#{l(:label_version)}: #{i.name}" %></small>
77 <small><%= link_to_version i, :class => "icon icon-package" %></small>
78 78 <% end %>
79 79 <% end %>
80 80 </td>
81 81 <%= '</tr><tr style="height:100px">' if day.cwday >= 7 and day!=@date_to %>
82 82 <%
83 83 day = day + 1
84 84 end %>
85 85 </tr>
86 86 </tbody>
87 87 </table>
88 88
89 89 <%= image_tag 'arrow_from.png' %>&nbsp;&nbsp;<%= l(:text_tip_task_begin_day) %><br />
90 90 <%= image_tag 'arrow_to.png' %>&nbsp;&nbsp;<%= l(:text_tip_task_end_day) %><br />
91 91 <%= image_tag 'arrow_bw.png' %>&nbsp;&nbsp;<%= l(:text_tip_task_begin_end_day) %><br />
92 92 <% end %>
@@ -1,30 +1,27
1 1 <h2><%=l(:label_change_log)%></h2>
2 2
3 <div>
4
5 3 <div class="rightbox" style="width:140px;">
6 4 <% form_tag do %>
7 <p><strong><%=l(:label_tracker_plural)%></strong></p>
5 <p><strong><%=l(:label_tracker_plural)%></strong><br />
8 6 <% @trackers.each do |tracker| %>
9 7 <%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
10 8 <%= tracker.name %><br />
11 <% end %>
9 <% end %></p>
12 10 <p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
13 11 <% end %>
14 12 </div>
15 13
16 14 <% if @fixed_issues.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
17 15
18 16 <% ver_id = nil
19 17 @fixed_issues.each do |issue| %>
20 18 <% unless ver_id == issue.fixed_version_id %>
21 19 <% if ver_id %></ul><% end %>
22 20 <h3 class="icon22 icon22-package"><%= issue.fixed_version.name %></h3>
23 21 <p><%= format_date(issue.fixed_version.effective_date) %><br />
24 22 <%=h issue.fixed_version.description %></p>
25 23 <ul>
26 24 <% ver_id = issue.fixed_version_id
27 25 end %>
28 26 <li><%= link_to_issue issue %>: <%=h issue.subject %></li>
29 27 <% end %>
30 </div> No newline at end of file
@@ -1,244 +1,244
1 1 <% zoom = 1
2 2 @zoom.times { zoom = zoom * 2 }
3 3
4 4 subject_width = 330
5 5 header_heigth = 18
6 6
7 7 headers_height = header_heigth
8 8 show_weeks = false
9 9 show_days = false
10 10
11 11 if @zoom >1
12 12 show_weeks = true
13 13 headers_height = 2*header_heigth
14 14 if @zoom > 2
15 15 show_days = true
16 16 headers_height = 3*header_heigth
17 17 end
18 18 end
19 19
20 20 g_width = (@date_to - @date_from + 1)*zoom
21 21 g_height = [(20 * @events.length + 6)+150, 206].max
22 22 t_height = g_height + headers_height
23 23 %>
24 24
25 25 <% cache(:year => @year_from, :month => @month_from, :months => @months, :zoom => @zoom, :tracker_ids => @selected_tracker_ids, :subprojects => params[:with_subprojects], :lang => current_language) do %>
26 26 <div class="contextual">
27 27 <%= l(:label_export_to) %>
28 28 <%= link_to 'PDF', {:zoom => @zoom, :year => @year_from, :month => @month_from, :months => @months, :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects], :output => 'pdf'}, :class => 'icon icon-pdf' %>
29 29 </div>
30 30
31 31 <h2><%= l(:label_gantt) %></h2>
32 32
33 33 <% form_tag do %>
34 34 <table width="100%">
35 35 <tr>
36 36 <td align="left">
37 37 <input type="text" name="months" size="2" value="<%= @months %>" />
38 38 <%= l(:label_months_from) %>
39 39 <%= select_month(@month_from, :prefix => "month", :discard_type => true) %>
40 40 <%= select_year(@year_from, :prefix => "year", :discard_type => true) %>
41 41 <%= hidden_field_tag 'zoom', @zoom %>
42 42 <%= submit_tag l(:button_submit), :class => "button-small" %>
43 43 </td>
44 44 <td>
45 45 <%= toggle_link l(:label_options), "trackerselect" %>
46 46 <div id="trackerselect" class="rightbox overlay" style="width:140px; display: none;">
47 47 <p><strong><%=l(:label_tracker_plural)%></strong></p>
48 48 <% @trackers.each do |tracker| %>
49 49 <%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
50 50 <%= tracker.name %><br />
51 51 <% end %>
52 52 <% if @project.children.any? %>
53 53 <p><strong><%=l(:label_subproject_plural)%></strong></p>
54 54 <%= check_box_tag "with_subprojects", 1, params[:with_subprojects] %> <%= l(:general_text_Yes) %>
55 55 <% end %>
56 56 <p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
57 57 </div>
58 58 </td>
59 59 <td align="right">
60 60 <%= if @zoom < 4
61 61 link_to image_tag('zoom_in.png'), {:zoom => (@zoom+1), :year => @year_from, :month => @month_from, :months => @months, :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects]}
62 62 else
63 63 image_tag 'zoom_in_g.png'
64 64 end %>
65 65 <%= if @zoom > 1
66 66 link_to image_tag('zoom_out.png'),{:zoom => (@zoom-1), :year => @year_from, :month => @month_from, :months => @months, :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects]}
67 67 else
68 68 image_tag 'zoom_out_g.png'
69 69 end %>
70 70 </td>
71 71 </tr>
72 72 </table>
73 73 <% end %>
74 74
75 75 <table width="100%" style="border:0; border-collapse: collapse;">
76 76 <tr>
77 77 <td style="width:<%= subject_width %>px;">
78 78
79 79 <div style="position:relative;height:<%= t_height + 24 %>px;width:<%= subject_width + 1 %>px;">
80 80 <div style="right:-2px;width:<%= subject_width %>px;height:<%= headers_height %>px;background: #eee;" class="gantt_hdr"></div>
81 81 <div style="right:-2px;width:<%= subject_width %>px;height:<%= t_height %>px;border-left: 1px solid #c0c0c0;overflow:hidden;" class="gantt_hdr"></div>
82 82 <%
83 83 #
84 84 # Tasks subjects
85 85 #
86 86 top = headers_height + 8
87 87 @events.each do |i| %>
88 88 <div style="position: absolute;line-height:1.2em;height:16px;top:<%= top %>px;left:4px;overflow:hidden;"><small>
89 89 <% if i.is_a? Issue %>
90 90 <%= link_to_issue i %><%= " (#{i.project.name})" unless @project && @project == i.project %>:
91 91 <%=h i.subject %>
92 92 <% else %>
93 <strong><%= "#{l(:label_version)}: #{i.name}" %></strong>
93 <%= link_to_version i, :class => "icon icon-package" %>
94 94 <% end %>
95 95 </small></div>
96 96 <% top = top + 20
97 97 end %>
98 98 </div>
99 99 </td>
100 100 <td>
101 101
102 102 <div style="position:relative;height:<%= t_height + 24 %>px;overflow:auto;">
103 103 <div style="width:<%= g_width-1 %>px;height:<%= headers_height %>px;background: #eee;" class="gantt_hdr">&nbsp;</div>
104 104 <%
105 105 #
106 106 # Months headers
107 107 #
108 108 month_f = @date_from
109 109 left = 0
110 110 height = (show_weeks ? header_heigth : header_heigth + g_height)
111 111 @months.times do
112 112 width = ((month_f >> 1) - month_f) * zoom - 1
113 113 %>
114 114 <div style="left:<%= left %>px;width:<%= width %>px;height:<%= height %>px;" class="gantt_hdr">
115 115 <%= link_to "#{month_f.year}-#{month_f.month}", { :year => month_f.year, :month => month_f.month, :zoom => @zoom, :months => @months, :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects] }, :title => "#{month_name(month_f.month)} #{month_f.year}"%>
116 116 </div>
117 117 <%
118 118 left = left + width + 1
119 119 month_f = month_f >> 1
120 120 end %>
121 121
122 122 <%
123 123 #
124 124 # Weeks headers
125 125 #
126 126 if show_weeks
127 127 left = 0
128 128 height = (show_days ? header_heigth-1 : header_heigth-1 + g_height)
129 129 if @date_from.cwday == 1
130 130 # @date_from is monday
131 131 week_f = @date_from
132 132 else
133 133 # find next monday after @date_from
134 134 week_f = @date_from + (7 - @date_from.cwday + 1)
135 135 width = (7 - @date_from.cwday + 1) * zoom-1
136 136 %>
137 137 <div style="left:<%= left %>px;top:19px;width:<%= width %>px;height:<%= height %>px;" class="gantt_hdr">&nbsp;</div>
138 138 <%
139 139 left = left + width+1
140 140 end %>
141 141 <%
142 142 while week_f <= @date_to
143 143 width = (week_f + 6 <= @date_to) ? 7 * zoom -1 : (@date_to - week_f + 1) * zoom-1
144 144 %>
145 145 <div style="left:<%= left %>px;top:19px;width:<%= width %>px;height:<%= height %>px;" class="gantt_hdr">
146 146 <small><%= week_f.cweek if width >= 16 %></small>
147 147 </div>
148 148 <%
149 149 left = left + width+1
150 150 week_f = week_f+7
151 151 end
152 152 end %>
153 153
154 154 <%
155 155 #
156 156 # Days headers
157 157 #
158 158 if show_days
159 159 left = 0
160 160 height = g_height + header_heigth - 1
161 161 wday = @date_from.cwday
162 162 (@date_to - @date_from + 1).to_i.times do
163 163 width = zoom - 1
164 164 %>
165 165 <div style="left:<%= left %>px;top:37px;width:<%= width %>px;height:<%= height %>px;font-size:0.7em;<%= "background:#f1f1f1;" if wday > 5 %>" class="gantt_hdr">
166 166 <%= day_name(wday).first %>
167 167 </div>
168 168 <%
169 169 left = left + width+1
170 170 wday = wday + 1
171 171 wday = 1 if wday > 7
172 172 end
173 173 end %>
174 174
175 175 <%
176 176 #
177 177 # Tasks
178 178 #
179 179 top = headers_height + 10
180 180 @events.each do |i|
181 181 if i.is_a? Issue
182 182 i_start_date = (i.start_date >= @date_from ? i.start_date : @date_from )
183 183 i_end_date = (i.due_date <= @date_to ? i.due_date : @date_to )
184 184
185 185 i_done_date = i.start_date + ((i.due_date - i.start_date+1)*i.done_ratio/100).floor
186 186 i_done_date = (i_done_date <= @date_from ? @date_from : i_done_date )
187 187 i_done_date = (i_done_date >= @date_to ? @date_to : i_done_date )
188 188
189 189 i_late_date = [i_end_date, Date.today].min if i_start_date < Date.today
190 190
191 191 i_left = ((i_start_date - @date_from)*zoom).floor
192 192 i_width = ((i_end_date - i_start_date + 1)*zoom).floor - 2 # total width of the issue (- 2 for left and right borders)
193 193 d_width = ((i_done_date - i_start_date)*zoom).floor - 2 # done width
194 194 l_width = i_late_date ? ((i_late_date - i_start_date+1)*zoom).floor - 2 : 0 # delay width
195 195 %>
196 196 <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= i_width %>px;" class="task task_todo">&nbsp;</div>
197 197 <% if l_width > 0 %>
198 198 <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= l_width %>px;" class="task task_late">&nbsp;</div>
199 199 <% end %>
200 200 <% if d_width > 0 %>
201 201 <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= d_width %>px;" class="task task_done">&nbsp;</div>
202 202 <% end %>
203 203 <div style="top:<%= top %>px;left:<%= i_left + i_width + 5 %>px;background:#fff;" class="task">
204 204 <%= i.status.name %>
205 205 <%= (i.done_ratio).to_i %>%
206 206 </div>
207 207 <% # === tooltip === %>
208 208 <div class="tooltip" style="position: absolute;top:<%= top %>px;left:<%= i_left %>px;width:<%= i_width %>px;height:12px;">
209 209 <span class="tip">
210 210 <%= render :partial => "issues/tooltip", :locals => { :issue => i }%>
211 211 </span></div>
212 212 <% else
213 213 i_left = ((i.start_date - @date_from)*zoom).floor
214 214 %>
215 215 <div style="top:<%= top %>px;left:<%= i_left %>px;width:15px;" class="task milestone">&nbsp;</div>
216 216 <div style="top:<%= top %>px;left:<%= i_left + 12 %>px;background:#fff;" class="task">
217 217 <strong><%= i.name %></strong>
218 218 </div>
219 219 <% end %>
220 220 <% top = top + 20
221 221 end %>
222 222
223 223 <% end # cache
224 224 %>
225 225
226 226 <%
227 227 #
228 228 # Today red line (excluded from cache)
229 229 #
230 230 if Date.today >= @date_from and Date.today <= @date_to %>
231 231 <div style="position: absolute;height:<%= g_height %>px;top:<%= headers_height + 1 %>px;left:<%= ((Date.today-@date_from+1)*zoom).floor()-1 %>px;width:10px;border-left: 1px dashed red;">&nbsp;</div>
232 232 <% end %>
233 233
234 234 </div>
235 235 </td>
236 236 </tr>
237 237 </table>
238 238
239 239 <table width="100%">
240 240 <tr>
241 241 <td align="left"><%= link_to ('&#171; ' + l(:label_previous)), :year => (@date_from << @months).year, :month => (@date_from << @months).month, :zoom => @zoom, :months => @months, :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects] %></td>
242 242 <td align="right"><%= link_to (l(:label_next) + ' &#187;'), :year => (@date_from >> @months).year, :month => (@date_from >> @months).month, :zoom => @zoom, :months => @months, :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects] %></td>
243 243 </tr>
244 244 </table>
@@ -1,59 +1,61
1 1 <h2><%=l(:label_roadmap)%></h2>
2 2
3 <div>
4
5 <div class="rightbox" style="width:140px;">
3 <div class="rightbox">
6 4 <% form_tag do %>
7 <p><strong><%=l(:label_tracker_plural)%></strong></p>
5 <p><strong><%=l(:label_tracker_plural)%></strong><br />
8 6 <% @trackers.each do |tracker| %>
9 7 <%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
10 8 <%= tracker.name %><br />
11 <% end %>
9 <% end %></p>
10 <p class="small"><label for="completed"><%= check_box_tag "completed", 1, params[:completed] %> <%= l(:label_show_completed_versions) %></label></p>
12 11 <p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
13 12 <% end %>
14 13 </div>
15 14
16 15 <% if @versions.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
17 16
18 17 <% @versions.each do |version| %>
19 <h3 class="icon22 icon22-package"><%= version.name %></h3>
18 <a name="<%= version.name %>"><h3 class="icon22 icon22-package"><%= version.name %></h3></a>
19 <% if version.completed? %>
20 <p><%= format_date(version.effective_date) %></p>
21 <% else %>
22 <p><strong><%=l(:label_roadmap_due_in)%> <%= distance_of_time_in_words Time.now, version.effective_date %> (<%= format_date(version.effective_date) %>)</strong></p>
23 <% end %>
20 24 <p><%=h version.description %></p>
21 <p><strong><%=l(:label_roadmap_due_in)%> <%= distance_of_time_in_words Time.now, version.effective_date %> (<%= format_date(version.effective_date) %>)</strong></p>
22 25 <% issues = version.fixed_issues.find(:all,
23 :include => :status,
26 :include => [:status, :tracker],
24 27 :conditions => ["tracker_id in (#{@selected_tracker_ids.join(',')})"],
25 :order => "position")
28 :order => "#{Tracker.table_name}.position")
26 29
27 30 total = issues.size
28 31 complete = issues.inject(0) {|c,i| i.status.is_closed? ? c + 1 : c }
29 32 percentComplete = total == 0 ? 100 : (100 / total * complete).floor
30 33 percentIncomplete = 100 - percentComplete
31 34 %>
32 35 <table class="progress">
33 36 <tr>
34 37 <% if percentComplete > 0 %>
35 38 <td class="closed" style="width: <%= percentComplete %>%"></td>
36 39 <% end; if percentIncomplete > 0 %>
37 40 <td class="open" style="width: <%= percentIncomplete %>%"></td>
38 41 <% end %>
39 42 </tr>
40 43 </table>
41 44 <em><%= link_to(complete, :controller => 'projects', :action => 'list_issues', :id => @project, :status_id => 'c', :fixed_version_id => version, :set_filter => 1) %> <%= lwr(:label_closed_issues, complete) %> (<%= percentComplete %>%) &#160;
42 45 <%= link_to((total - complete), :controller => 'projects', :action => 'list_issues', :id => @project, :status_id => 'o', :fixed_version_id => version, :set_filter => 1) %> <%= lwr(:label_open_issues, total - complete)%> (<%= percentIncomplete %>%)</em>
43 46 <br />
44 47 <br />
45 48 <ul>
46 49 <% if total == 0 %>
47 50 <li><%=l(:label_roadmap_no_issues)%></li>
48 51 <% else %>
49 52 <% issues.each do |issue| %>
50 53 <li>
51 54 <%= link = link_to_issue(issue)
52 55 issue.status.is_closed? ? content_tag("del", link) : link %>: <%=h issue.subject %>
53 56 <%= content_tag "em", "(#{l(:label_closed_issues)})" if issue.status.is_closed? %>
54 57 </li>
55 58 <% end %>
56 59 <% end %>
57 60 </ul>
58 61 <% end %>
59 </div>
@@ -1,463 +1,464
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
5 5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 ден
9 9 actionview_datehelper_time_in_words_day_plural: %d дни
10 10 actionview_datehelper_time_in_words_hour_about: около час
11 11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
12 12 actionview_datehelper_time_in_words_hour_about_single: около час
13 13 actionview_datehelper_time_in_words_minute: 1 минута
14 14 actionview_datehelper_time_in_words_minute_half: половин минута
15 15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
16 16 actionview_datehelper_time_in_words_minute_plural: %d минути
17 17 actionview_datehelper_time_in_words_minute_single: 1 минута
18 18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
19 19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
20 20 actionview_instancetag_blank_option: Изберете
21 21
22 22 activerecord_error_inclusion: не съществува в списъка
23 23 activerecord_error_exclusion: е запазено
24 24 activerecord_error_invalid: е невалидно
25 25 activerecord_error_confirmation: липсва одобрение
26 26 activerecord_error_accepted: трябва да се приеме
27 27 activerecord_error_empty: не може да е празно
28 28 activerecord_error_blank: не може да е празно
29 29 activerecord_error_too_long: е прекалено дълго
30 30 activerecord_error_too_short: е прекалено късо
31 31 activerecord_error_wrong_length: е с грешна дължина
32 32 activerecord_error_taken: вече съществува
33 33 activerecord_error_not_a_number: не е число
34 34 activerecord_error_not_a_date: е невалидна дата
35 35 activerecord_error_greater_than_start_date: трябва да е след началната дата
36 36 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%d.%%m.%%Y
42 42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
43 43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'Не'
46 46 general_text_Yes: 'Да'
47 47 general_text_no: 'не'
48 48 general_text_yes: 'да'
49 49 general_lang_bg: 'Bulgarian'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
54 54
55 55 notice_account_updated: Профилът е обновен успешно.
56 56 notice_account_invalid_creditentials: Невалиден потребител или парола.
57 57 notice_account_password_updated: Паролата е успешно променена.
58 58 notice_account_wrong_password: Грешна парола
59 59 notice_account_register_done: Акаунтът е създаден успешно.
60 60 notice_account_unknown_email: Непознат потребител.
61 61 notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата.
62 62 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
63 63 notice_account_activated: Акаунтът ви е активиран. Вече може да влезете.
64 64 notice_successful_create: Успешно създаване.
65 65 notice_successful_update: Успешно обновяване.
66 66 notice_successful_delete: Успешно изтриване.
67 67 notice_successful_connection: Успешно свързване.
68 68 notice_file_not_found: Несъществуваща или преместена страница.
69 69 notice_locking_conflict: Друг потребител променя тези данни в момента.
70 70 notice_scm_error: Несъществуващ обект в склада.
71 71 notice_not_authorized: Нямате право на достъп до тази страница.
72 72
73 73 mail_subject_lost_password: Вашата парола
74 74 mail_subject_register: Активация на акаунт
75 75
76 76 gui_validation_error: 1 грешка
77 77 gui_validation_error_plural: %d грешки
78 78
79 79 field_name: Име
80 80 field_description: Описание
81 81 field_summary: Тема
82 82 field_is_required: Задължително
83 83 field_firstname: Име
84 84 field_lastname: Фамилия
85 85 field_mail: Email
86 86 field_filename: Файл
87 87 field_filesize: Големина
88 88 field_downloads: Downloads
89 89 field_author: Автор
90 90 field_created_on: Създадена
91 91 field_updated_on: Обновена
92 92 field_field_format: Формат
93 93 field_is_for_all: За всички проекти
94 94 field_possible_values: Възможни стойности
95 95 field_regexp: Регулярен израз
96 96 field_min_length: Мин. дължина
97 97 field_max_length: Макс. дължина
98 98 field_value: Стойност
99 99 field_category: Категория
100 100 field_title: Заглавие
101 101 field_project: Проект
102 102 field_issue: Задача
103 103 field_status: Статус
104 104 field_notes: Бележка
105 105 field_is_closed: Затворена задача
106 106 field_is_default: Статус по подразбиране
107 107 field_html_color: Цвят
108 108 field_tracker: Тракер
109 109 field_subject: Тема
110 110 field_due_date: Крайна дата
111 111 field_assigned_to: Възложена на
112 112 field_priority: Приоритет
113 113 field_fixed_version: Версия
114 114 field_user: Потребител
115 115 field_role: Роля
116 116 field_homepage: Начална страница
117 117 field_is_public: Публичен
118 118 field_parent: Подпроект на
119 119 field_is_in_chlog: Да се вижда ли в Изменения
120 120 field_is_in_roadmap: Да се вижда ли в Пътна карта
121 121 field_login: Потребител
122 122 field_mail_notification: Известия по пощата
123 123 field_admin: Администратор
124 124 field_last_login_on: Последно свързване
125 125 field_language: Език
126 126 field_effective_date: Дата
127 127 field_password: Парола
128 128 field_new_password: Нова парола
129 129 field_password_confirmation: Потвърждение
130 130 field_version: Версия
131 131 field_type: Type
132 132 field_host: Хост
133 133 field_port: Порт
134 134 field_account: Акаунт
135 135 field_base_dn: Base DN
136 136 field_attr_login: Login attribute
137 137 field_attr_firstname: Firstname attribute
138 138 field_attr_lastname: Lastname attribute
139 139 field_attr_mail: Email attribute
140 140 field_onthefly: Динамично създаване на потребител
141 141 field_start_date: Начална дата
142 142 field_done_ratio: %% Прогрес
143 143 field_auth_source: Начин на оторизация
144 144 field_hide_mail: Скрий e-mail адреса ми
145 145 field_comments: Коментар
146 146 field_url: Адрес
147 147 field_start_page: Начална страница
148 148 field_subproject: Подпроект
149 149 field_hours: Часове
150 150 field_activity: Дейност
151 151 field_spent_on: Дата
152 152 field_identifier: Идентификатор
153 153 field_is_filter: Използва се за филтър
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Заглавие
158 158 setting_app_subtitle: Описание
159 159 setting_welcome_text: Допълнителен текст
160 160 setting_default_language: Език по подразбиране
161 161 setting_login_required: Изискване за вход
162 162 setting_self_registration: Регистрация от потребители
163 163 setting_attachment_max_size: Максимално голям приложен файл
164 164 setting_issues_export_limit: Лимит за експорт на задачи
165 165 setting_mail_from: E-mail адрес за емисии
166 166 setting_host_name: Хост
167 167 setting_text_formatting: Форматиране на текста
168 168 setting_wiki_compression: Wiki компресиране на историята
169 169 setting_feeds_limit: Лимит на Feeds
170 170 setting_autofetch_changesets: Автоматично обработване на commits в SVN склада
171 171 setting_sys_api_enabled: Разрешаване на WS за управление на SVN склада
172 172 setting_commit_ref_keywords: Отбелязващи ключови думи
173 173 setting_commit_fix_keywords: Приключващи ключови думи
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Потребител
177 177 label_user_plural: Потребители
178 178 label_user_new: Нов потребител
179 179 label_project: Проект
180 180 label_project_new: Нов проект
181 181 label_project_plural: Проекти
182 182 label_project_latest: Последни проекти
183 183 label_issue: Задача
184 184 label_issue_new: Нова задача
185 185 label_issue_plural: Задачи
186 186 label_issue_view_all: Всички задачи
187 187 label_document: Документ
188 188 label_document_new: Нов документ
189 189 label_document_plural: Документи
190 190 label_role: Роля
191 191 label_role_plural: Роли
192 192 label_role_new: Нова роля
193 193 label_role_and_permissions: Роли и права
194 194 label_member: Член
195 195 label_member_new: Нов член
196 196 label_member_plural: Членове
197 197 label_tracker: Тракер
198 198 label_tracker_plural: Тракери
199 199 label_tracker_new: Нов тракер
200 200 label_workflow: Workflow
201 201 label_issue_status: Статус на задача
202 202 label_issue_status_plural: Статуси на задачи
203 203 label_issue_status_new: Нов статус
204 204 label_issue_category: Категория задача
205 205 label_issue_category_plural: Категории задачи
206 206 label_issue_category_new: Нова категория
207 207 label_custom_field: Измислено поле
208 208 label_custom_field_plural: Измислени полета
209 209 label_custom_field_new: Ново измислено поле
210 210 label_enumerations: Списъци
211 211 label_enumeration_new: Нова стойност
212 212 label_information: Информация
213 213 label_information_plural: Информация
214 214 label_please_login: Вход
215 215 label_register: Регистрация
216 216 label_password_lost: Забравена парола
217 217 label_home: Начало
218 218 label_my_page: Моята страница
219 219 label_my_account: Моят профил
220 220 label_my_projects: Моите проекти
221 221 label_administration: Администрация
222 222 label_login: Вход
223 223 label_logout: Изход
224 224 label_help: Помощ
225 225 label_reported_issues: Публикувани задачи
226 226 label_assigned_to_me_issues: Назначени на мен
227 227 label_last_login: Последно свързване
228 228 label_last_updates: Последно обновена
229 229 label_last_updates_plural: %d последно обновени
230 230 label_registered_on: Регистрация
231 231 label_activity: Дейност
232 232 label_new: Нов
233 233 label_logged_as: Логнат като
234 234 label_environment: Среда
235 235 label_authentication: Оторизация
236 236 label_auth_source: Начин на оторозация
237 237 label_auth_source_new: Нов начин на оторизация
238 238 label_auth_source_plural: Начини на оторизация
239 239 label_subproject_plural: Подпроекти
240 240 label_min_max_length: Мин. - Макс. дължина
241 241 label_list: Списък
242 242 label_date: Дата
243 243 label_integer: Число
244 244 label_boolean: Чекбокс
245 245 label_string: Текст
246 246 label_text: Дълъг текст
247 247 label_attribute: Атрибут
248 248 label_attribute_plural: Атрибути
249 249 label_download: %d Download
250 250 label_download_plural: %d Downloads
251 251 label_no_data: Няма изходни данни
252 252 label_change_status: Промяна на статуса
253 253 label_history: История
254 254 label_attachment: Файл
255 255 label_attachment_new: Нов файл
256 256 label_attachment_delete: Изтриване
257 257 label_attachment_plural: Файлове
258 258 label_report: Доклад
259 259 label_report_plural: Доклади
260 260 label_news: Новини
261 261 label_news_new: Добави
262 262 label_news_plural: Новини
263 263 label_news_latest: Последни новини
264 264 label_news_view_all: Виж всички
265 265 label_change_log: Изменения
266 266 label_settings: Настройки
267 267 label_overview: Общ изглед
268 268 label_version: Версия
269 269 label_version_new: Нова версия
270 270 label_version_plural: Версии
271 271 label_confirmation: Одобрение
272 272 label_export_to: Експорт към
273 273 label_read: Read...
274 274 label_public_projects: Публични проекти
275 275 label_open_issues: отворена
276 276 label_open_issues_plural: отворени
277 277 label_closed_issues: затворена
278 278 label_closed_issues_plural: затворени
279 279 label_total: Общо
280 280 label_permissions: Права
281 281 label_current_status: Текущ статус
282 282 label_new_statuses_allowed: Позволени статуси
283 283 label_all: всички
284 284 label_none: никакви
285 285 label_next: Следващ
286 286 label_previous: Предишен
287 287 label_used_by: Използва се от
288 288 label_details: Детайли...
289 289 label_add_note: Добавяне на бележка
290 290 label_per_page: На страница
291 291 label_calendar: Календар
292 292 label_months_from: месеци от
293 293 label_gantt: Gantt
294 294 label_internal: Вътрешен
295 295 label_last_changes: последни %d промени
296 296 label_change_view_all: Виж всички промени
297 297 label_personalize_page: Персонализиране
298 298 label_comment: Коментар
299 299 label_comment_plural: Коментари
300 300 label_comment_add: Добавяне на коментар
301 301 label_comment_added: Добавен коментар
302 302 label_comment_delete: Изтриване на коментари
303 303 label_query: Измислена заявка
304 304 label_query_plural: Измислени заявки
305 305 label_query_new: Нова заявка
306 306 label_filter_add: Добави филтър
307 307 label_filter_plural: Филтри
308 308 label_equals: е
309 309 label_not_equals: не е
310 310 label_in_less_than: по-малко от
311 311 label_in_more_than: повече от
312 312 label_in: в следващите
313 313 label_today: днес
314 314 label_less_than_ago: преди по-малко от
315 315 label_more_than_ago: преди повече от
316 316 label_ago: преди дни
317 317 label_contains: съдържа
318 318 label_not_contains: не съдържа
319 319 label_day_plural: дни
320 320 label_repository: SVN Склад
321 321 label_browse: Разглеждане
322 322 label_modification: %d промяна
323 323 label_modification_plural: %d промени
324 324 label_revision: Ревизия
325 325 label_revision_plural: Ревизии
326 326 label_added: добавено
327 327 label_modified: променено
328 328 label_deleted: изтрито
329 329 label_latest_revision: Последна ревизия
330 330 label_latest_revision_plural: Последни ревизии
331 331 label_view_revisions: Виж ревизиите
332 332 label_max_size: Максимална големина
333 333 label_on: 'от'
334 334 label_sort_highest: Премести най-горе
335 335 label_sort_higher: Премести по-горе
336 336 label_sort_lower: Премести по-долу
337 337 label_sort_lowest: Премести най-долу
338 338 label_roadmap: Пътна карта
339 339 label_roadmap_due_in: Излиза след
340 340 label_roadmap_no_issues: Няма задачи за тази версия
341 341 label_search: Търсене
342 342 label_result: %d резултат
343 343 label_result_plural: %d резултати
344 344 label_all_words: Всички думи
345 345 label_wiki: Wiki
346 346 label_wiki_edit: Wiki редакция
347 347 label_wiki_edit_plural: Wiki редакции
348 348 label_page_index: Индекс
349 349 label_current_version: Текуща версия
350 350 label_preview: Преглед
351 351 label_feed_plural: Feeds
352 352 label_changes_details: Подробни промени
353 353 label_issue_tracking: Тракинг
354 354 label_spent_time: Отделено време
355 355 label_f_hour: %.2f час
356 356 label_f_hour_plural: %.2f часа
357 357 label_time_tracking: Отделяне на време
358 358 label_change_plural: Промени
359 359 label_statistics: Статистики
360 360 label_commits_per_month: Commits за месец
361 361 label_commits_per_author: Commits за автор
362 362 label_view_diff: Виж разликите
363 363 label_diff_inline: хоризонтално
364 364 label_diff_side_by_side: вертикално
365 365 label_options: Опции
366 366 label_copy_workflow_from: Копирай workflow от
367 367 label_permissions_report: Справка за права
368 368 label_watched_issues: Наблюдавани задачи
369 369 label_related_issues: Свързани задачи
370 370 label_applied_status: Промени статуса на
371 371 label_loading: Зареждане...
372 372 label_relation_new: New relation
373 373 label_relation_delete: Delete relation
374 374 label_relates_to: related tp
375 375 label_duplicates: duplicates
376 376 label_blocks: blocks
377 377 label_blocked_by: blocked by
378 378 label_precedes: precedes
379 379 label_follows: follows
380 380 label_end_to_start: start to end
381 381 label_end_to_end: end to end
382 382 label_start_to_start: start to start
383 383 label_start_to_end: start to end
384 384 label_stay_logged_in: Stay logged in
385 385 label_disabled: disabled
386 label_show_completed_versions: Show completed versions
386 387
387 388 button_login: Вход
388 389 button_submit: Изпращане
389 390 button_save: Запис
390 391 button_check_all: Маркирай всички
391 392 button_uncheck_all: Изчисти всички
392 393 button_delete: Изтриване
393 394 button_create: Създаване
394 395 button_test: Тест
395 396 button_edit: Редакция
396 397 button_add: Добавяне
397 398 button_change: Промяна
398 399 button_apply: Приложи
399 400 button_clear: Изчисти
400 401 button_lock: Заключване
401 402 button_unlock: Отключване
402 403 button_download: Download
403 404 button_list: Списък
404 405 button_view: Преглед
405 406 button_move: Преместване
406 407 button_back: Назад
407 408 button_cancel: Отказ
408 409 button_activate: Активация
409 410 button_sort: Сортиране
410 411 button_log_time: Отделяне на време
411 412 button_rollback: Върни се към тази ревизия
412 413 button_watch: Наблюдавай
413 414 button_unwatch: Спри наблюдението
414 415
415 416 status_active: активен
416 417 status_registered: регистриран
417 418 status_locked: заключен
418 419
419 420 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
420 421 text_regexp_info: пр. ^[A-Z0-9]+$
421 422 text_min_max_length_info: 0 - без ограничения
422 423 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
423 424 text_workflow_edit: Изберете роля и тракер за да редактирате workflow
424 425 text_are_you_sure: Сигурни ли сте?
425 426 text_journal_changed: промяна от %s на %s
426 427 text_journal_set_to: установено на %s
427 428 text_journal_deleted: изтрито
428 429 text_tip_task_begin_day: задача започваща този ден
429 430 text_tip_task_end_day: задача завършваща този ден
430 431 text_tip_task_begin_end_day: задача започваща и завършваща този ден
431 432 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
432 433 text_caracters_maximum: До %d символа.
433 434 text_length_between: От %d до %d символа.
434 435 text_tracker_no_workflow: Няма дефиниран workflow за този тракер
435 436 text_unallowed_characters: Непозволени символи
436 437 text_coma_separated: Позволено е изброяване (с разделител запетая).
437 438 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
438 439
439 440 default_role_manager: Мениджър
440 441 default_role_developper: Разработчик
441 442 default_role_reporter: Публикуващ
442 443 default_tracker_bug: Бъг
443 444 default_tracker_feature: Функционалност
444 445 default_tracker_support: Поддръжка
445 446 default_issue_status_new: Нова
446 447 default_issue_status_assigned: Възложена
447 448 default_issue_status_resolved: Приключена
448 449 default_issue_status_feedback: Обратна връзка
449 450 default_issue_status_closed: Затворена
450 451 default_issue_status_rejected: Отхвърлена
451 452 default_doc_category_user: Документация за потребителя
452 453 default_doc_category_tech: Техническа документация
453 454 default_priority_low: Нисък
454 455 default_priority_normal: Нормален
455 456 default_priority_high: Висок
456 457 default_priority_urgent: Спешен
457 458 default_priority_immediate: Веднага
458 459 default_activity_design: Дизайн
459 460 default_activity_development: Разработка
460 461
461 462 enumeration_issue_priorities: Приоритети на задачи
462 463 enumeration_doc_categories: Категории документи
463 464 enumeration_activities: Дейности (time tracking)
@@ -1,463 +1,464
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 Tag
9 9 actionview_datehelper_time_in_words_day_plural: %d Tage
10 10 actionview_datehelper_time_in_words_hour_about: ungefähr eine Stunde
11 11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
12 12 actionview_datehelper_time_in_words_hour_about_single: ungefähr eine Stunde
13 13 actionview_datehelper_time_in_words_minute: 1 Minute
14 14 actionview_datehelper_time_in_words_minute_half: halbe Minute
15 15 actionview_datehelper_time_in_words_minute_less_than: weniger als eine Minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
17 17 actionview_datehelper_time_in_words_minute_single: 1 Minute
18 18 actionview_datehelper_time_in_words_second_less_than: Weniger als eine Sekunde
19 19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
20 20 actionview_instancetag_blank_option: Bitte auswählen
21 21
22 22 activerecord_error_inclusion: ist nicht inbegriffen
23 23 activerecord_error_exclusion: ist reserviert
24 24 activerecord_error_invalid: ist unzulässig
25 25 activerecord_error_confirmation: Bestätigung nötig
26 26 activerecord_error_accepted: muss angenommen werden
27 27 activerecord_error_empty: darf nicht leer sein
28 28 activerecord_error_blank: darf nicht leer sein
29 29 activerecord_error_too_long: ist zu lang
30 30 activerecord_error_too_short: ist zu kurz
31 31 activerecord_error_wrong_length: hat die falsche Länge
32 32 activerecord_error_taken: ist bereits vergeben
33 33 activerecord_error_not_a_number: ist keine Zahl
34 34 activerecord_error_not_a_date: ist kein gültiges Datum
35 35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
36 36 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d Jahr
40 40 general_fmt_age_plural: %d Jahre
41 41 general_fmt_date: %%d.%%m.%%y
42 42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
43 43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'Nein'
46 46 general_text_Yes: 'Ja'
47 47 general_text_no: 'nein'
48 48 general_text_yes: 'ja'
49 49 general_lang_de: 'Deutsch'
50 50 general_csv_separator: ';'
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
54 54
55 55 notice_account_updated: Konto wurde erfolgreich aktualisiert.
56 56 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
57 57 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
58 58 notice_account_wrong_password: Falsches Kennwort
59 59 notice_account_register_done: Konto wurde erfolgreich angelegt.
60 60 notice_account_unknown_email: Unbekannter Benutzer.
61 61 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
62 62 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
63 63 notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen.
64 64 notice_successful_create: Erfolgreich angelegt
65 65 notice_successful_update: Erfolgreiche Aktualisierung.
66 66 notice_successful_delete: Erfolgreiche Löschung.
67 67 notice_successful_connection: Verbindung erfolgreich.
68 68 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
69 69 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
70 70 notice_scm_error: Eintrag und/oder Revision besteht nicht im SVN.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72
73 73 mail_subject_lost_password: Ihr redMine Kennwort
74 74 mail_subject_register: redMine Kontoaktivierung
75 75
76 76 gui_validation_error: 1 Fehler
77 77 gui_validation_error_plural: %d Fehler
78 78
79 79 field_name: Name
80 80 field_description: Beschreibung
81 81 field_summary: Zusammenfassung
82 82 field_is_required: Erforderlich
83 83 field_firstname: Vorname
84 84 field_lastname: Nachname
85 85 field_mail: Email
86 86 field_filename: Datei
87 87 field_filesize: Größe
88 88 field_downloads: Downloads
89 89 field_author: Autor
90 90 field_created_on: Angelegt
91 91 field_updated_on: Aktualisiert
92 92 field_field_format: Format
93 93 field_is_for_all: Für alle Projekte
94 94 field_possible_values: Mögliche Werte
95 95 field_regexp: Regulärer Ausdruck
96 96 field_min_length: Minimale Länge
97 97 field_max_length: Maximale Länge
98 98 field_value: Wert
99 99 field_category: Kategorie
100 100 field_title: Titel
101 101 field_project: Projekt
102 102 field_issue: Ticket
103 103 field_status: Status
104 104 field_notes: Kommentare
105 105 field_is_closed: Problem erledigt
106 106 field_is_default: Default
107 107 field_html_color: Farbe
108 108 field_tracker: Tracker
109 109 field_subject: Thema
110 110 field_due_date: Abgabedatum
111 111 field_assigned_to: Zugewiesen an
112 112 field_priority: Priorität
113 113 field_fixed_version: Erledigt in Version
114 114 field_user: Benutzer
115 115 field_role: Rolle
116 116 field_homepage: Startseite
117 117 field_is_public: Öffentlich
118 118 field_parent: Unterprojekt von
119 119 field_is_in_chlog: Ansicht im Change-Log
120 120 field_is_in_roadmap: Ansicht in der Roadmap
121 121 field_login: Mitgliedsname
122 122 field_mail_notification: Mailbenachrichtigung
123 123 field_admin: Administrator
124 124 field_last_login_on: Letzte Anmeldung
125 125 field_language: Sprache
126 126 field_effective_date: Datum
127 127 field_password: Kennwort
128 128 field_new_password: Neues Kennwort
129 129 field_password_confirmation: Bestätigung
130 130 field_version: Version
131 131 field_type: Typ
132 132 field_host: Host
133 133 field_port: Port
134 134 field_account: Konto
135 135 field_base_dn: Base DN
136 136 field_attr_login: Mitgliedsnameattribut
137 137 field_attr_firstname: Vornamensattribut
138 138 field_attr_lastname: Namenattribut
139 139 field_attr_mail: Emailattribut
140 140 field_onthefly: On-the-fly Benutzerkreation
141 141 field_start_date: Beginn
142 142 field_done_ratio: %% erledigt
143 143 field_auth_source: Authentifizierungs-Modus
144 144 field_hide_mail: Email Adresse nicht anzeigen
145 145 field_comments: Kommentar
146 146 field_url: URL
147 147 field_start_page: Hauptseite
148 148 field_subproject: Subprojekt von
149 149 field_hours: Stunden
150 150 field_activity: Aktivität
151 151 field_spent_on: Datum
152 152 field_identifier: Identifier
153 153 field_is_filter: Used as a filter
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Applikation Titel
158 158 setting_app_subtitle: Applikation Untertitel
159 159 setting_welcome_text: Willkommenstext
160 160 setting_default_language: Default Sprache
161 161 setting_login_required: Authent. erfordert
162 162 setting_self_registration: Anmeldung ermöglicht
163 163 setting_attachment_max_size: max. Dateigröße
164 164 setting_issues_export_limit: Limit Export Tickets
165 165 setting_mail_from: Mail Absender
166 166 setting_host_name: Host Name
167 167 setting_text_formatting: Textformatierung
168 168 setting_wiki_compression: Wiki-Historie komprimieren
169 169 setting_feeds_limit: Limit Feed Inhalt
170 170 setting_autofetch_changesets: Autofetch SVN commits
171 171 setting_sys_api_enabled: Enable WS for repository management
172 172 setting_commit_ref_keywords: Referencing keywords
173 173 setting_commit_fix_keywords: Fixing keywords
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Benutzer
177 177 label_user_plural: Benutzer
178 178 label_user_new: Neuer Benutzer
179 179 label_project: Projekt
180 180 label_project_new: Neues Projekt
181 181 label_project_plural: Projekte
182 182 label_project_latest: Neueste Projekte
183 183 label_issue: Ticket
184 184 label_issue_new: Neues Ticket
185 185 label_issue_plural: Tickets
186 186 label_issue_view_all: Alle Tickets ansehen
187 187 label_document: Dokument
188 188 label_document_new: Neues Dokument
189 189 label_document_plural: Dokumente
190 190 label_role: Rolle
191 191 label_role_plural: Rollen
192 192 label_role_new: Neue Rolle
193 193 label_role_and_permissions: Rollen und Rechte
194 194 label_member: Mitglied
195 195 label_member_new: Neues Mitglied
196 196 label_member_plural: Mitglieder
197 197 label_tracker: Tracker
198 198 label_tracker_plural: Tracker
199 199 label_tracker_new: Neuer Tracker
200 200 label_workflow: Workflow
201 201 label_issue_status: Ticket-Status
202 202 label_issue_status_plural: Ticket-Status
203 203 label_issue_status_new: Neuer Status
204 204 label_issue_category: Ticket-Kategorie
205 205 label_issue_category_plural: Ticket-Kategorien
206 206 label_issue_category_new: Neue Kategorie
207 207 label_custom_field: Benutzerdefiniertes Feld
208 208 label_custom_field_plural: Benutzerdefinierte Felder
209 209 label_custom_field_new: Neues Feld
210 210 label_enumerations: Aufzählungen
211 211 label_enumeration_new: Neuer Wert
212 212 label_information: Information
213 213 label_information_plural: Informationen
214 214 label_please_login: Anmelden
215 215 label_register: Anmelden
216 216 label_password_lost: Kennwort vergessen
217 217 label_home: Hauptseite
218 218 label_my_page: Meine Seite
219 219 label_my_account: Mein Konto
220 220 label_my_projects: Meine Projekte
221 221 label_administration: Administration
222 222 label_login: Einloggen
223 223 label_logout: Abmelden
224 224 label_help: Hilfe
225 225 label_reported_issues: Gemeldete Tickets
226 226 label_assigned_to_me_issues: Mir zugewiesen
227 227 label_last_login: Letzte Anmeldung
228 228 label_last_updates: zuletzt aktualisiert
229 229 label_last_updates_plural: %d zuletzt aktualisierten
230 230 label_registered_on: Angemeldet am
231 231 label_activity: Aktivität
232 232 label_new: Neu
233 233 label_logged_as: Angemeldet als
234 234 label_environment: Environment
235 235 label_authentication: Authentifizierung
236 236 label_auth_source: Authentifizierungs-Modus
237 237 label_auth_source_new: Neuer Authentifizierungs-Modus
238 238 label_auth_source_plural: Authentifizierungs-Arten
239 239 label_subproject_plural: Sub Projekte
240 240 label_min_max_length: Min - Max Länge
241 241 label_list: Liste
242 242 label_date: Datum
243 243 label_integer: Zahl
244 244 label_boolean: Boolean
245 245 label_string: Text
246 246 label_text: Langer Text
247 247 label_attribute: Attribut
248 248 label_attribute_plural: Attribute
249 249 label_download: %d Download
250 250 label_download_plural: %d Downloads
251 251 label_no_data: Nichts anzuzeigen
252 252 label_change_status: Statuswechsel
253 253 label_history: Historie
254 254 label_attachment: Datei
255 255 label_attachment_new: Neue Datei
256 256 label_attachment_delete: Anhang löschen
257 257 label_attachment_plural: Dateien
258 258 label_report: Bericht
259 259 label_report_plural: Berichte
260 260 label_news: News
261 261 label_news_new: News hinzufügen
262 262 label_news_plural: News
263 263 label_news_latest: Letzte News
264 264 label_news_view_all: Alle News anzeigen
265 265 label_change_log: Change-Log
266 266 label_settings: Konfiguration
267 267 label_overview: Übersicht
268 268 label_version: Version
269 269 label_version_new: Neue Version
270 270 label_version_plural: Versionen
271 271 label_confirmation: Bestätigung
272 272 label_export_to: Export zu
273 273 label_read: Lesen...
274 274 label_public_projects: Öffentliche Projekte
275 275 label_open_issues: offen
276 276 label_open_issues_plural: offen
277 277 label_closed_issues: geschlossen
278 278 label_closed_issues_plural: geschlossen
279 279 label_total: Gesamtzahl
280 280 label_permissions: Berechtigungen
281 281 label_current_status: Gegenwärtiger Status
282 282 label_new_statuses_allowed: Neue Berechtigungen
283 283 label_all: alle
284 284 label_none: kein
285 285 label_next: Weiter
286 286 label_previous: Zurück
287 287 label_used_by: Benutzt von
288 288 label_details: Details...
289 289 label_add_note: Kommentar hinzufügen
290 290 label_per_page: Pro Seite
291 291 label_calendar: Kalender
292 292 label_months_from: Monate ab
293 293 label_gantt: Gantt
294 294 label_internal: Intern
295 295 label_last_changes: %d letzte Änderungen
296 296 label_change_view_all: Alle Änderungen ansehen
297 297 label_personalize_page: Diese Seite anpassen
298 298 label_comment: Kommentar
299 299 label_comment_plural: Kommentare
300 300 label_comment_add: Kommentar hinzufügen
301 301 label_comment_added: Kommentar hinzugefügt
302 302 label_comment_delete: Kommentar löschen
303 303 label_query: Benutzerdefinierte Abfrage
304 304 label_query_plural: Benutzerdefinierte Berichte
305 305 label_query_new: Neuer Bericht
306 306 label_filter_add: Filter hinzufügen
307 307 label_filter_plural: Filter
308 308 label_equals: ist
309 309 label_not_equals: ist nicht
310 310 label_in_less_than: in weniger als
311 311 label_in_more_than: in mehr als
312 312 label_in: an
313 313 label_today: heute
314 314 label_less_than_ago: vor weniger als
315 315 label_more_than_ago: vor mehr als
316 316 label_ago: vor
317 317 label_contains: enthält
318 318 label_not_contains: enthält nicht
319 319 label_day_plural: Tage
320 320 label_repository: SVN Projektarchiv
321 321 label_browse: Codebrowser
322 322 label_modification: %d Änderung
323 323 label_modification_plural: %d Änderungen
324 324 label_revision: Revision
325 325 label_revision_plural: Revisionen
326 326 label_added: hinzugefügt
327 327 label_modified: geändert
328 328 label_deleted: gelöscht
329 329 label_latest_revision: Aktuellste Revision
330 330 label_latest_revision_plural: Aktuellste Revisionen
331 331 label_view_revisions: Revisionen anzeigen
332 332 label_max_size: Maximale Größe
333 333 label_on: von
334 334 label_sort_highest: Anfang
335 335 label_sort_higher: eins höher
336 336 label_sort_lower: eins tiefer
337 337 label_sort_lowest: Ende
338 338 label_roadmap: Roadmap
339 339 label_roadmap_due_in: Fällig in
340 340 label_roadmap_no_issues: Keine Tickets für diese Version
341 341 label_search: Suche
342 342 label_result: %d Resultat
343 343 label_result_plural: %d Resultate
344 344 label_all_words: Alle Wörter
345 345 label_wiki: Wiki
346 346 label_wiki_edit: Wiki Bearbeitung
347 347 label_wiki_edit_plural: Wiki Bearbeitungen
348 348 label_page_index: Index
349 349 label_current_version: Gegenwärtige Version
350 350 label_preview: Vorschau
351 351 label_feed_plural: Feeds
352 352 label_changes_details: Details aller Änderungen
353 353 label_issue_tracking: Tickets
354 354 label_spent_time: Aufgewendete Zeit
355 355 label_f_hour: %.2f Stunde
356 356 label_f_hour_plural: %.2f Stunden
357 357 label_time_tracking: Zeiterfassung
358 358 label_change_plural: Änderungen
359 359 label_statistics: Statistiken
360 360 label_commits_per_month: Übertragungen pro Monat
361 361 label_commits_per_author: Übertragungen pro Autor
362 362 label_view_diff: View differences
363 363 label_diff_inline: inline
364 364 label_diff_side_by_side: side by side
365 365 label_options: Options
366 366 label_copy_workflow_from: Copy workflow from
367 367 label_permissions_report: Permissions report
368 368 label_watched_issues: Watched issues
369 369 label_related_issues: Related issues
370 370 label_applied_status: Applied status
371 371 label_loading: Loading...
372 372 label_relation_new: New relation
373 373 label_relation_delete: Delete relation
374 374 label_relates_to: related tp
375 375 label_duplicates: duplicates
376 376 label_blocks: blocks
377 377 label_blocked_by: blocked by
378 378 label_precedes: precedes
379 379 label_follows: follows
380 380 label_end_to_start: start to end
381 381 label_end_to_end: end to end
382 382 label_start_to_start: start to start
383 383 label_start_to_end: start to end
384 384 label_stay_logged_in: Stay logged in
385 385 label_disabled: disabled
386 label_show_completed_versions: Show completed versions
386 387
387 388 button_login: Einloggen
388 389 button_submit: OK
389 390 button_save: Speichern
390 391 button_check_all: Alles auswählen
391 392 button_uncheck_all: Alles abwählen
392 393 button_delete: Löschen
393 394 button_create: Anlegen
394 395 button_test: Testen
395 396 button_edit: Bearbeiten
396 397 button_add: Hinzufügen
397 398 button_change: Wechseln
398 399 button_apply: Anwenden
399 400 button_clear: Zurücksetzen
400 401 button_lock: Sperren
401 402 button_unlock: Entsperren
402 403 button_download: Download
403 404 button_list: Liste
404 405 button_view: Siehe
405 406 button_move: Verschieben
406 407 button_back: Zurück
407 408 button_cancel: Abbrechen
408 409 button_activate: Aktivieren
409 410 button_sort: Sortieren
410 411 button_log_time: Log time
411 412 button_rollback: Rollback to this version
412 413 button_watch: Watch
413 414 button_unwatch: Unwatch
414 415
415 416 status_active: aktiv
416 417 status_registered: angemeldet
417 418 status_locked: gesperrt
418 419
419 420 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
420 421 text_regexp_info: eg. ^[A-Z0-9]+$
421 422 text_min_max_length_info: 0 heißt keine Beschränkung
422 423 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
423 424 text_workflow_edit: Workflow zum Bearbeiten auswählen
424 425 text_are_you_sure: Sind Sie sicher?
425 426 text_journal_changed: geändert von %s zu %s
426 427 text_journal_set_to: gestellt zu %s
427 428 text_journal_deleted: gelöscht
428 429 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
429 430 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
430 431 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
431 432 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
432 433 text_caracters_maximum: %d characters maximum.
433 434 text_length_between: Length between %d and %d characters.
434 435 text_tracker_no_workflow: No workflow defined for this tracker
435 436 text_unallowed_characters: Unallowed characters
436 437 text_coma_separated: Multiple values allowed (coma separated).
437 438 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
438 439
439 440 default_role_manager: Manager
440 441 default_role_developper: Developer
441 442 default_role_reporter: Reporter
442 443 default_tracker_bug: Fehler
443 444 default_tracker_feature: Feature
444 445 default_tracker_support: Support
445 446 default_issue_status_new: Neu
446 447 default_issue_status_assigned: Zugewiesen
447 448 default_issue_status_resolved: Gelöst
448 449 default_issue_status_feedback: Feedback
449 450 default_issue_status_closed: Erledigt
450 451 default_issue_status_rejected: Abgewiesen
451 452 default_doc_category_user: Benutzerdokumentation
452 453 default_doc_category_tech: Technische Dokumentation
453 454 default_priority_low: Niedrig
454 455 default_priority_normal: Normal
455 456 default_priority_high: Hoch
456 457 default_priority_urgent: Dringend
457 458 default_priority_immediate: Sofort
458 459 default_activity_design: Design
459 460 default_activity_development: Development
460 461
461 462 enumeration_issue_priorities: Ticket-Prioritäten
462 463 enumeration_doc_categories: Dokumentenkategorien
463 464 enumeration_activities: Aktivitäten (Zeiterfassung)
@@ -1,463 +1,464
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 day
9 9 actionview_datehelper_time_in_words_day_plural: %d days
10 10 actionview_datehelper_time_in_words_hour_about: about an hour
11 11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 13 actionview_datehelper_time_in_words_minute: 1 minute
14 14 actionview_datehelper_time_in_words_minute_half: half a minute
15 15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 20 actionview_instancetag_blank_option: Please select
21 21
22 22 activerecord_error_inclusion: is not included in the list
23 23 activerecord_error_exclusion: is reserved
24 24 activerecord_error_invalid: is invalid
25 25 activerecord_error_confirmation: doesn't match confirmation
26 26 activerecord_error_accepted: must be accepted
27 27 activerecord_error_empty: can't be empty
28 28 activerecord_error_blank: can't be blank
29 29 activerecord_error_too_long: is too long
30 30 activerecord_error_too_short: is too short
31 31 activerecord_error_wrong_length: is the wrong length
32 32 activerecord_error_taken: has already been taken
33 33 activerecord_error_not_a_number: is not a number
34 34 activerecord_error_not_a_date: is not a valid date
35 35 activerecord_error_greater_than_start_date: must be greater than start date
36 36 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'No'
46 46 general_text_Yes: 'Yes'
47 47 general_text_no: 'no'
48 48 general_text_yes: 'yes'
49 49 general_lang_en: 'English'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
54 54
55 55 notice_account_updated: Account was successfully updated.
56 56 notice_account_invalid_creditentials: Invalid user or password
57 57 notice_account_password_updated: Password was successfully updated.
58 58 notice_account_wrong_password: Wrong password
59 59 notice_account_register_done: Account was successfully created.
60 60 notice_account_unknown_email: Unknown user.
61 61 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 62 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 63 notice_account_activated: Your account has been activated. You can now log in.
64 64 notice_successful_create: Successful creation.
65 65 notice_successful_update: Successful update.
66 66 notice_successful_delete: Successful deletion.
67 67 notice_successful_connection: Successful connection.
68 68 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
69 69 notice_locking_conflict: Data have been updated by another user.
70 70 notice_scm_error: Entry and/or revision doesn't exist in the repository.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72
73 73 mail_subject_lost_password: Your redMine password
74 74 mail_subject_register: redMine account activation
75 75
76 76 gui_validation_error: 1 error
77 77 gui_validation_error_plural: %d errors
78 78
79 79 field_name: Name
80 80 field_description: Description
81 81 field_summary: Summary
82 82 field_is_required: Required
83 83 field_firstname: Firstname
84 84 field_lastname: Lastname
85 85 field_mail: Email
86 86 field_filename: File
87 87 field_filesize: Size
88 88 field_downloads: Downloads
89 89 field_author: Author
90 90 field_created_on: Created
91 91 field_updated_on: Updated
92 92 field_field_format: Format
93 93 field_is_for_all: For all projects
94 94 field_possible_values: Possible values
95 95 field_regexp: Regular expression
96 96 field_min_length: Minimum length
97 97 field_max_length: Maximum length
98 98 field_value: Value
99 99 field_category: Category
100 100 field_title: Title
101 101 field_project: Project
102 102 field_issue: Issue
103 103 field_status: Status
104 104 field_notes: Notes
105 105 field_is_closed: Issue closed
106 106 field_is_default: Default status
107 107 field_html_color: Color
108 108 field_tracker: Tracker
109 109 field_subject: Subject
110 110 field_due_date: Due date
111 111 field_assigned_to: Assigned to
112 112 field_priority: Priority
113 113 field_fixed_version: Fixed version
114 114 field_user: User
115 115 field_role: Role
116 116 field_homepage: Homepage
117 117 field_is_public: Public
118 118 field_parent: Subproject of
119 119 field_is_in_chlog: Issues displayed in changelog
120 120 field_is_in_roadmap: Issues displayed in roadmap
121 121 field_login: Login
122 122 field_mail_notification: Mail notifications
123 123 field_admin: Administrator
124 124 field_last_login_on: Last connection
125 125 field_language: Language
126 126 field_effective_date: Date
127 127 field_password: Password
128 128 field_new_password: New password
129 129 field_password_confirmation: Confirmation
130 130 field_version: Version
131 131 field_type: Type
132 132 field_host: Host
133 133 field_port: Port
134 134 field_account: Account
135 135 field_base_dn: Base DN
136 136 field_attr_login: Login attribute
137 137 field_attr_firstname: Firstname attribute
138 138 field_attr_lastname: Lastname attribute
139 139 field_attr_mail: Email attribute
140 140 field_onthefly: On-the-fly user creation
141 141 field_start_date: Start
142 142 field_done_ratio: %% Done
143 143 field_auth_source: Authentication mode
144 144 field_hide_mail: Hide my email address
145 145 field_comments: Comment
146 146 field_url: URL
147 147 field_start_page: Start page
148 148 field_subproject: Subproject
149 149 field_hours: Hours
150 150 field_activity: Activity
151 151 field_spent_on: Date
152 152 field_identifier: Identifier
153 153 field_is_filter: Used as a filter
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Application title
158 158 setting_app_subtitle: Application subtitle
159 159 setting_welcome_text: Welcome text
160 160 setting_default_language: Default language
161 161 setting_login_required: Authent. required
162 162 setting_self_registration: Self-registration enabled
163 163 setting_attachment_max_size: Attachment max. size
164 164 setting_issues_export_limit: Issues export limit
165 165 setting_mail_from: Emission mail address
166 166 setting_host_name: Host name
167 167 setting_text_formatting: Text formatting
168 168 setting_wiki_compression: Wiki history compression
169 169 setting_feeds_limit: Feed content limit
170 170 setting_autofetch_changesets: Autofetch SVN commits
171 171 setting_sys_api_enabled: Enable WS for repository management
172 172 setting_commit_ref_keywords: Referencing keywords
173 173 setting_commit_fix_keywords: Fixing keywords
174 174 setting_autologin: Autologin
175 175
176 176 label_user: User
177 177 label_user_plural: Users
178 178 label_user_new: New user
179 179 label_project: Project
180 180 label_project_new: New project
181 181 label_project_plural: Projects
182 182 label_project_latest: Latest projects
183 183 label_issue: Issue
184 184 label_issue_new: New issue
185 185 label_issue_plural: Issues
186 186 label_issue_view_all: View all issues
187 187 label_document: Document
188 188 label_document_new: New document
189 189 label_document_plural: Documents
190 190 label_role: Role
191 191 label_role_plural: Roles
192 192 label_role_new: New role
193 193 label_role_and_permissions: Roles and permissions
194 194 label_member: Member
195 195 label_member_new: New member
196 196 label_member_plural: Members
197 197 label_tracker: Tracker
198 198 label_tracker_plural: Trackers
199 199 label_tracker_new: New tracker
200 200 label_workflow: Workflow
201 201 label_issue_status: Issue status
202 202 label_issue_status_plural: Issue statuses
203 203 label_issue_status_new: New status
204 204 label_issue_category: Issue category
205 205 label_issue_category_plural: Issue categories
206 206 label_issue_category_new: New category
207 207 label_custom_field: Custom field
208 208 label_custom_field_plural: Custom fields
209 209 label_custom_field_new: New custom field
210 210 label_enumerations: Enumerations
211 211 label_enumeration_new: New value
212 212 label_information: Information
213 213 label_information_plural: Information
214 214 label_please_login: Please login
215 215 label_register: Register
216 216 label_password_lost: Lost password
217 217 label_home: Home
218 218 label_my_page: My page
219 219 label_my_account: My account
220 220 label_my_projects: My projects
221 221 label_administration: Administration
222 222 label_login: Login
223 223 label_logout: Logout
224 224 label_help: Help
225 225 label_reported_issues: Reported issues
226 226 label_assigned_to_me_issues: Issues assigned to me
227 227 label_last_login: Last connection
228 228 label_last_updates: Last updated
229 229 label_last_updates_plural: %d last updated
230 230 label_registered_on: Registered on
231 231 label_activity: Activity
232 232 label_new: New
233 233 label_logged_as: Logged as
234 234 label_environment: Environment
235 235 label_authentication: Authentication
236 236 label_auth_source: Authentication mode
237 237 label_auth_source_new: New authentication mode
238 238 label_auth_source_plural: Authentication modes
239 239 label_subproject_plural: Subprojects
240 240 label_min_max_length: Min - Max length
241 241 label_list: List
242 242 label_date: Date
243 243 label_integer: Integer
244 244 label_boolean: Boolean
245 245 label_string: Text
246 246 label_text: Long text
247 247 label_attribute: Attribute
248 248 label_attribute_plural: Attributes
249 249 label_download: %d Download
250 250 label_download_plural: %d Downloads
251 251 label_no_data: No data to display
252 252 label_change_status: Change status
253 253 label_history: History
254 254 label_attachment: File
255 255 label_attachment_new: New file
256 256 label_attachment_delete: Delete file
257 257 label_attachment_plural: Files
258 258 label_report: Report
259 259 label_report_plural: Reports
260 260 label_news: News
261 261 label_news_new: Add news
262 262 label_news_plural: News
263 263 label_news_latest: Latest news
264 264 label_news_view_all: View all news
265 265 label_change_log: Change log
266 266 label_settings: Settings
267 267 label_overview: Overview
268 268 label_version: Version
269 269 label_version_new: New version
270 270 label_version_plural: Versions
271 271 label_confirmation: Confirmation
272 272 label_export_to: Export to
273 273 label_read: Read...
274 274 label_public_projects: Public projects
275 275 label_open_issues: open
276 276 label_open_issues_plural: open
277 277 label_closed_issues: closed
278 278 label_closed_issues_plural: closed
279 279 label_total: Total
280 280 label_permissions: Permissions
281 281 label_current_status: Current status
282 282 label_new_statuses_allowed: New statuses allowed
283 283 label_all: all
284 284 label_none: none
285 285 label_next: Next
286 286 label_previous: Previous
287 287 label_used_by: Used by
288 288 label_details: Details...
289 289 label_add_note: Add a note
290 290 label_per_page: Per page
291 291 label_calendar: Calendar
292 292 label_months_from: months from
293 293 label_gantt: Gantt
294 294 label_internal: Internal
295 295 label_last_changes: last %d changes
296 296 label_change_view_all: View all changes
297 297 label_personalize_page: Personalize this page
298 298 label_comment: Comment
299 299 label_comment_plural: Comments
300 300 label_comment_add: Add a comment
301 301 label_comment_added: Comment added
302 302 label_comment_delete: Delete comments
303 303 label_query: Custom query
304 304 label_query_plural: Custom queries
305 305 label_query_new: New query
306 306 label_filter_add: Add filter
307 307 label_filter_plural: Filters
308 308 label_equals: is
309 309 label_not_equals: is not
310 310 label_in_less_than: in less than
311 311 label_in_more_than: in more than
312 312 label_in: in
313 313 label_today: today
314 314 label_less_than_ago: less than days ago
315 315 label_more_than_ago: more than days ago
316 316 label_ago: days ago
317 317 label_contains: contains
318 318 label_not_contains: doesn't contain
319 319 label_day_plural: days
320 320 label_repository: SVN Repository
321 321 label_browse: Browse
322 322 label_modification: %d change
323 323 label_modification_plural: %d changes
324 324 label_revision: Revision
325 325 label_revision_plural: Revisions
326 326 label_added: added
327 327 label_modified: modified
328 328 label_deleted: deleted
329 329 label_latest_revision: Latest revision
330 330 label_latest_revision_plural: Latest revisions
331 331 label_view_revisions: View revisions
332 332 label_max_size: Maximum size
333 333 label_on: 'on'
334 334 label_sort_highest: Move to top
335 335 label_sort_higher: Move up
336 336 label_sort_lower: Move down
337 337 label_sort_lowest: Move to bottom
338 338 label_roadmap: Roadmap
339 339 label_roadmap_due_in: Due in
340 340 label_roadmap_no_issues: No issues for this version
341 341 label_search: Search
342 342 label_result: %d result
343 343 label_result_plural: %d results
344 344 label_all_words: All words
345 345 label_wiki: Wiki
346 346 label_wiki_edit: Wiki edit
347 347 label_wiki_edit_plural: Wiki edits
348 348 label_page_index: Index
349 349 label_current_version: Current version
350 350 label_preview: Preview
351 351 label_feed_plural: Feeds
352 352 label_changes_details: Details of all changes
353 353 label_issue_tracking: Issue tracking
354 354 label_spent_time: Spent time
355 355 label_f_hour: %.2f hour
356 356 label_f_hour_plural: %.2f hours
357 357 label_time_tracking: Time tracking
358 358 label_change_plural: Changes
359 359 label_statistics: Statistics
360 360 label_commits_per_month: Commits per month
361 361 label_commits_per_author: Commits per author
362 362 label_view_diff: View differences
363 363 label_diff_inline: inline
364 364 label_diff_side_by_side: side by side
365 365 label_options: Options
366 366 label_copy_workflow_from: Copy workflow from
367 367 label_permissions_report: Permissions report
368 368 label_watched_issues: Watched issues
369 369 label_related_issues: Related issues
370 370 label_applied_status: Applied status
371 371 label_loading: Loading...
372 372 label_relation_new: New relation
373 373 label_relation_delete: Delete relation
374 374 label_relates_to: related tp
375 375 label_duplicates: duplicates
376 376 label_blocks: blocks
377 377 label_blocked_by: blocked by
378 378 label_precedes: precedes
379 379 label_follows: follows
380 380 label_end_to_start: start to end
381 381 label_end_to_end: end to end
382 382 label_start_to_start: start to start
383 383 label_start_to_end: start to end
384 384 label_stay_logged_in: Stay logged in
385 385 label_disabled: disabled
386 label_show_completed_versions: Show completed versions
386 387
387 388 button_login: Login
388 389 button_submit: Submit
389 390 button_save: Save
390 391 button_check_all: Check all
391 392 button_uncheck_all: Uncheck all
392 393 button_delete: Delete
393 394 button_create: Create
394 395 button_test: Test
395 396 button_edit: Edit
396 397 button_add: Add
397 398 button_change: Change
398 399 button_apply: Apply
399 400 button_clear: Clear
400 401 button_lock: Lock
401 402 button_unlock: Unlock
402 403 button_download: Download
403 404 button_list: List
404 405 button_view: View
405 406 button_move: Move
406 407 button_back: Back
407 408 button_cancel: Cancel
408 409 button_activate: Activate
409 410 button_sort: Sort
410 411 button_log_time: Log time
411 412 button_rollback: Rollback to this version
412 413 button_watch: Watch
413 414 button_unwatch: Unwatch
414 415
415 416 status_active: active
416 417 status_registered: registered
417 418 status_locked: locked
418 419
419 420 text_select_mail_notifications: Select actions for which mail notifications should be sent.
420 421 text_regexp_info: eg. ^[A-Z0-9]+$
421 422 text_min_max_length_info: 0 means no restriction
422 423 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
423 424 text_workflow_edit: Select a role and a tracker to edit the workflow
424 425 text_are_you_sure: Are you sure ?
425 426 text_journal_changed: changed from %s to %s
426 427 text_journal_set_to: set to %s
427 428 text_journal_deleted: deleted
428 429 text_tip_task_begin_day: task beginning this day
429 430 text_tip_task_end_day: task ending this day
430 431 text_tip_task_begin_end_day: task beginning and ending this day
431 432 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
432 433 text_caracters_maximum: %d characters maximum.
433 434 text_length_between: Length between %d and %d characters.
434 435 text_tracker_no_workflow: No workflow defined for this tracker
435 436 text_unallowed_characters: Unallowed characters
436 437 text_coma_separated: Multiple values allowed (coma separated).
437 438 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
438 439
439 440 default_role_manager: Manager
440 441 default_role_developper: Developer
441 442 default_role_reporter: Reporter
442 443 default_tracker_bug: Bug
443 444 default_tracker_feature: Feature
444 445 default_tracker_support: Support
445 446 default_issue_status_new: New
446 447 default_issue_status_assigned: Assigned
447 448 default_issue_status_resolved: Resolved
448 449 default_issue_status_feedback: Feedback
449 450 default_issue_status_closed: Closed
450 451 default_issue_status_rejected: Rejected
451 452 default_doc_category_user: User documentation
452 453 default_doc_category_tech: Technical documentation
453 454 default_priority_low: Low
454 455 default_priority_normal: Normal
455 456 default_priority_high: High
456 457 default_priority_urgent: Urgent
457 458 default_priority_immediate: Immediate
458 459 default_activity_design: Design
459 460 default_activity_development: Development
460 461
461 462 enumeration_issue_priorities: Issue priorities
462 463 enumeration_doc_categories: Document categories
463 464 enumeration_activities: Activities (time tracking)
@@ -1,463 +1,464
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
5 5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 day
9 9 actionview_datehelper_time_in_words_day_plural: %d days
10 10 actionview_datehelper_time_in_words_hour_about: about an hour
11 11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 13 actionview_datehelper_time_in_words_minute: 1 minute
14 14 actionview_datehelper_time_in_words_minute_half: half a minute
15 15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 20 actionview_instancetag_blank_option: Please select
21 21
22 22 activerecord_error_inclusion: is not included in the list
23 23 activerecord_error_exclusion: is reserved
24 24 activerecord_error_invalid: is invalid
25 25 activerecord_error_confirmation: doesn't match confirmation
26 26 activerecord_error_accepted: must be accepted
27 27 activerecord_error_empty: can't be empty
28 28 activerecord_error_blank: can't be blank
29 29 activerecord_error_too_long: is too long
30 30 activerecord_error_too_short: is too short
31 31 activerecord_error_wrong_length: is the wrong length
32 32 activerecord_error_taken: has already been taken
33 33 activerecord_error_not_a_number: is not a number
34 34 activerecord_error_not_a_date: no es una fecha válida
35 35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
36 36 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d año
40 40 general_fmt_age_plural: %d años
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'No'
46 46 general_text_Yes: 'Sí'
47 47 general_text_no: 'no'
48 48 general_text_yes: 'sí'
49 49 general_lang_es: 'Español'
50 50 general_csv_separator: ';'
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
54 54
55 55 notice_account_updated: Account was successfully updated.
56 56 notice_account_invalid_creditentials: Invalid user or password
57 57 notice_account_password_updated: Password was successfully updated.
58 58 notice_account_wrong_password: Wrong password
59 59 notice_account_register_done: Account was successfully created.
60 60 notice_account_unknown_email: Unknown user.
61 61 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 62 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 63 notice_account_activated: Your account has been activated. You can now log in.
64 64 notice_successful_create: Successful creation.
65 65 notice_successful_update: Successful update.
66 66 notice_successful_delete: Successful deletion.
67 67 notice_successful_connection: Successful connection.
68 68 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
69 69 notice_locking_conflict: Data have been updated by another user.
70 70 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72
73 73 mail_subject_lost_password: Tu contraseña del redMine
74 74 mail_subject_register: Activación de la cuenta del redMine
75 75
76 76 gui_validation_error: 1 error
77 77 gui_validation_error_plural: %d errores
78 78
79 79 field_name: Nombre
80 80 field_description: Descripción
81 81 field_summary: Resumen
82 82 field_is_required: Obligatorio
83 83 field_firstname: Nombre
84 84 field_lastname: Apellido
85 85 field_mail: Email
86 86 field_filename: Fichero
87 87 field_filesize: Tamaño
88 88 field_downloads: Telecargas
89 89 field_author: Autor
90 90 field_created_on: Creado
91 91 field_updated_on: Actualizado
92 92 field_field_format: Formato
93 93 field_is_for_all: Para todos los proyectos
94 94 field_possible_values: Valores posibles
95 95 field_regexp: Expresión regular
96 96 field_min_length: Longitud mínima
97 97 field_max_length: Longitud máxima
98 98 field_value: Valor
99 99 field_category: Categoría
100 100 field_title: Título
101 101 field_project: Proyecto
102 102 field_issue: Petición
103 103 field_status: Estatuto
104 104 field_notes: Notas
105 105 field_is_closed: Petición resuelta
106 106 field_is_default: Estatuto por defecto
107 107 field_html_color: Color
108 108 field_tracker: Tracker
109 109 field_subject: Tema
110 110 field_due_date: Fecha debida
111 111 field_assigned_to: Asignado a
112 112 field_priority: Prioridad
113 113 field_fixed_version: Versión corregida
114 114 field_user: Usuario
115 115 field_role: Papel
116 116 field_homepage: Sitio web
117 117 field_is_public: Público
118 118 field_parent: Proyecto secundario de
119 119 field_is_in_chlog: Consultar las peticiones en el histórico
120 120 field_is_in_roadmap: Consultar las peticiones en el roadmap
121 121 field_login: Identificador
122 122 field_mail_notification: Notificación por mail
123 123 field_admin: Administrador
124 124 field_last_login_on: Última conexión
125 125 field_language: Lengua
126 126 field_effective_date: Fecha
127 127 field_password: Contraseña
128 128 field_new_password: Nueva contraseña
129 129 field_password_confirmation: Confirmación
130 130 field_version: Versión
131 131 field_type: Tipo
132 132 field_host: Anfitrión
133 133 field_port: Puerto
134 134 field_account: Cuenta
135 135 field_base_dn: Base DN
136 136 field_attr_login: Cualidad del identificador
137 137 field_attr_firstname: Cualidad del nombre
138 138 field_attr_lastname: Cualidad del apellido
139 139 field_attr_mail: Cualidad del Email
140 140 field_onthefly: Creación del usuario On-the-fly
141 141 field_start_date: Comienzo
142 142 field_done_ratio: %% Realizado
143 143 field_auth_source: Modo de la autentificación
144 144 field_hide_mail: Ocultar mi email address
145 145 field_comments: Comentario
146 146 field_url: URL
147 147 field_start_page: Página principal
148 148 field_subproject: Proyecto secundario
149 149 field_hours: Hours
150 150 field_activity: Activity
151 151 field_spent_on: Fecha
152 152 field_identifier: Identifier
153 153 field_is_filter: Used as a filter
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Título del aplicación
158 158 setting_app_subtitle: Subtítulo del aplicación
159 159 setting_welcome_text: Texto acogida
160 160 setting_default_language: Lengua del defecto
161 161 setting_login_required: Autentif. requerida
162 162 setting_self_registration: Registro permitido
163 163 setting_attachment_max_size: Tamaño máximo del fichero
164 164 setting_issues_export_limit: Issues export limit
165 165 setting_mail_from: Email de la emisión
166 166 setting_host_name: Nombre de anfitrión
167 167 setting_text_formatting: Formato de texto
168 168 setting_wiki_compression: Compresión de la historia de Wiki
169 169 setting_feeds_limit: Feed content limit
170 170 setting_autofetch_changesets: Autofetch SVN commits
171 171 setting_sys_api_enabled: Enable WS for repository management
172 172 setting_commit_ref_keywords: Referencing keywords
173 173 setting_commit_fix_keywords: Fixing keywords
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Usuario
177 177 label_user_plural: Usuarios
178 178 label_user_new: Nuevo usuario
179 179 label_project: Proyecto
180 180 label_project_new: Nuevo proyecto
181 181 label_project_plural: Proyectos
182 182 label_project_latest: Los proyectos más últimos
183 183 label_issue: Petición
184 184 label_issue_new: Nueva petición
185 185 label_issue_plural: Peticiones
186 186 label_issue_view_all: Ver todas las peticiones
187 187 label_document: Documento
188 188 label_document_new: Nuevo documento
189 189 label_document_plural: Documentos
190 190 label_role: Papel
191 191 label_role_plural: Papeles
192 192 label_role_new: Nuevo papel
193 193 label_role_and_permissions: Papeles y permisos
194 194 label_member: Miembro
195 195 label_member_new: Nuevo miembro
196 196 label_member_plural: Miembros
197 197 label_tracker: Tracker
198 198 label_tracker_plural: Trackers
199 199 label_tracker_new: Nuevo tracker
200 200 label_workflow: Workflow
201 201 label_issue_status: Estatuto de petición
202 202 label_issue_status_plural: Estatutos de las peticiones
203 203 label_issue_status_new: Nuevo estatuto
204 204 label_issue_category: Categoría de las peticiones
205 205 label_issue_category_plural: Categorías de las peticiones
206 206 label_issue_category_new: Nueva categoría
207 207 label_custom_field: Campo personalizado
208 208 label_custom_field_plural: Campos personalizados
209 209 label_custom_field_new: Nuevo campo personalizado
210 210 label_enumerations: Listas de valores
211 211 label_enumeration_new: Nuevo valor
212 212 label_information: Informacion
213 213 label_information_plural: Informaciones
214 214 label_please_login: Conexión
215 215 label_register: Registrar
216 216 label_password_lost: ¿Olvidaste la contraseña?
217 217 label_home: Acogida
218 218 label_my_page: Mi página
219 219 label_my_account: Mi cuenta
220 220 label_my_projects: Mis proyectos
221 221 label_administration: Administración
222 222 label_login: Conexión
223 223 label_logout: Desconexión
224 224 label_help: Ayuda
225 225 label_reported_issues: Peticiones registradas
226 226 label_assigned_to_me_issues: Peticiones que me están asignadas
227 227 label_last_login: Última conexión
228 228 label_last_updates: Actualizado
229 229 label_last_updates_plural: %d Actualizados
230 230 label_registered_on: Inscrito el
231 231 label_activity: Actividad
232 232 label_new: Nuevo
233 233 label_logged_as: Conectado como
234 234 label_environment: Environment
235 235 label_authentication: Autentificación
236 236 label_auth_source: Modo de la autentificación
237 237 label_auth_source_new: Nuevo modo de la autentificación
238 238 label_auth_source_plural: Modos de la autentificación
239 239 label_subproject_plural: Proyectos secundarios
240 240 label_min_max_length: Longitud mín - máx
241 241 label_list: Lista
242 242 label_date: Fecha
243 243 label_integer: Número
244 244 label_boolean: Boleano
245 245 label_string: Texto
246 246 label_text: Texto largo
247 247 label_attribute: Cualidad
248 248 label_attribute_plural: Cualidades
249 249 label_download: %d Telecarga
250 250 label_download_plural: %d Telecargas
251 251 label_no_data: Ningunos datos a exhibir
252 252 label_change_status: Cambiar el estatuto
253 253 label_history: Histórico
254 254 label_attachment: Fichero
255 255 label_attachment_new: Nuevo fichero
256 256 label_attachment_delete: Suprimir el fichero
257 257 label_attachment_plural: Ficheros
258 258 label_report: Informe
259 259 label_report_plural: Informes
260 260 label_news: Noticia
261 261 label_news_new: Nueva noticia
262 262 label_news_plural: Noticias
263 263 label_news_latest: Últimas noticias
264 264 label_news_view_all: Ver todas las noticias
265 265 label_change_log: Cambios
266 266 label_settings: Configuración
267 267 label_overview: Vistazo
268 268 label_version: Versión
269 269 label_version_new: Nueva versión
270 270 label_version_plural: Versiónes
271 271 label_confirmation: Confirmación
272 272 label_export_to: Exportar a
273 273 label_read: Leer...
274 274 label_public_projects: Proyectos publicos
275 275 label_open_issues: abierta
276 276 label_open_issues_plural: abiertas
277 277 label_closed_issues: cerrada
278 278 label_closed_issues_plural: cerradas
279 279 label_total: Total
280 280 label_permissions: Permisos
281 281 label_current_status: Estado actual
282 282 label_new_statuses_allowed: Nuevos estatutos autorizados
283 283 label_all: todos
284 284 label_none: ninguno
285 285 label_next: Próximo
286 286 label_previous: Precedente
287 287 label_used_by: Utilizado por
288 288 label_details: Detalles...
289 289 label_add_note: Agregar una nota
290 290 label_per_page: Por la página
291 291 label_calendar: Calendario
292 292 label_months_from: meses de
293 293 label_gantt: Gantt
294 294 label_internal: Interno
295 295 label_last_changes: %d cambios del último
296 296 label_change_view_all: Ver todos los cambios
297 297 label_personalize_page: Personalizar esta página
298 298 label_comment: Comentario
299 299 label_comment_plural: Comentarios
300 300 label_comment_add: Agregar un comentario
301 301 label_comment_added: Comentario agregó
302 302 label_comment_delete: Suprimir comentarios
303 303 label_query: Pregunta personalizada
304 304 label_query_plural: Preguntas personalizadas
305 305 label_query_new: Nueva preguntas
306 306 label_filter_add: Agregar el filtro
307 307 label_filter_plural: Filtros
308 308 label_equals: igual
309 309 label_not_equals: no igual
310 310 label_in_less_than: en menos que
311 311 label_in_more_than: en más que
312 312 label_in: en
313 313 label_today: hoy
314 314 label_less_than_ago: hace menos de
315 315 label_more_than_ago: hace más de
316 316 label_ago: hace
317 317 label_contains: contiene
318 318 label_not_contains: no contiene
319 319 label_day_plural: días
320 320 label_repository: Depósito SVN
321 321 label_browse: Hojear
322 322 label_modification: %d modificación
323 323 label_modification_plural: %d modificaciones
324 324 label_revision: Revisión
325 325 label_revision_plural: Revisiones
326 326 label_added: agregado
327 327 label_modified: modificado
328 328 label_deleted: suprimido
329 329 label_latest_revision: La revisión más última
330 330 label_latest_revision_plural: Latest revisions
331 331 label_view_revisions: Ver las revisiones
332 332 label_max_size: Tamaño máximo
333 333 label_on: en
334 334 label_sort_highest: Primero
335 335 label_sort_higher: Subir
336 336 label_sort_lower: Bajar
337 337 label_sort_lowest: Último
338 338 label_roadmap: Roadmap
339 339 label_roadmap_due_in: Due in
340 340 label_roadmap_no_issues: No issues for this version
341 341 label_search: Búsqueda
342 342 label_result: %d resultado
343 343 label_result_plural: %d resultados
344 344 label_all_words: Todas las palabras
345 345 label_wiki: Wiki
346 346 label_wiki_edit: Wiki edit
347 347 label_wiki_edit_plural: Wiki edits
348 348 label_page_index: Índice
349 349 label_current_version: Versión actual
350 350 label_preview: Previo
351 351 label_feed_plural: Feeds
352 352 label_changes_details: Detalles de todos los cambios
353 353 label_issue_tracking: Issue tracking
354 354 label_spent_time: Spent time
355 355 label_f_hour: %.2f hour
356 356 label_f_hour_plural: %.2f hours
357 357 label_time_tracking: Time tracking
358 358 label_change_plural: Changes
359 359 label_statistics: Statistics
360 360 label_commits_per_month: Commits per month
361 361 label_commits_per_author: Commits per author
362 362 label_view_diff: View differences
363 363 label_diff_inline: inline
364 364 label_diff_side_by_side: side by side
365 365 label_options: Options
366 366 label_copy_workflow_from: Copy workflow from
367 367 label_permissions_report: Permissions report
368 368 label_watched_issues: Watched issues
369 369 label_related_issues: Related issues
370 370 label_applied_status: Applied status
371 371 label_loading: Loading...
372 372 label_relation_new: New relation
373 373 label_relation_delete: Delete relation
374 374 label_relates_to: related tp
375 375 label_duplicates: duplicates
376 376 label_blocks: blocks
377 377 label_blocked_by: blocked by
378 378 label_precedes: precedes
379 379 label_follows: follows
380 380 label_end_to_start: start to end
381 381 label_end_to_end: end to end
382 382 label_start_to_start: start to start
383 383 label_start_to_end: start to end
384 384 label_stay_logged_in: Stay logged in
385 385 label_disabled: disabled
386 label_show_completed_versions: Show completed versions
386 387
387 388 button_login: Conexión
388 389 button_submit: Someter
389 390 button_save: Validar
390 391 button_check_all: Seleccionar todo
391 392 button_uncheck_all: No seleccionar nada
392 393 button_delete: Suprimir
393 394 button_create: Crear
394 395 button_test: Testar
395 396 button_edit: Modificar
396 397 button_add: Añadir
397 398 button_change: Cambiar
398 399 button_apply: Aplicar
399 400 button_clear: Anular
400 401 button_lock: Bloquear
401 402 button_unlock: Desbloquear
402 403 button_download: Telecargar
403 404 button_list: Listar
404 405 button_view: Ver
405 406 button_move: Mover
406 407 button_back: Atrás
407 408 button_cancel: Cancelar
408 409 button_activate: Activar
409 410 button_sort: Clasificar
410 411 button_log_time: Log time
411 412 button_rollback: Rollback to this version
412 413 button_watch: Watch
413 414 button_unwatch: Unwatch
414 415
415 416 status_active: active
416 417 status_registered: registered
417 418 status_locked: locked
418 419
419 420 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
420 421 text_regexp_info: eg. ^[A-Z0-9]+$
421 422 text_min_max_length_info: 0 para ninguna restricción
422 423 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
423 424 text_workflow_edit: Seleccionar un workflow para actualizar
424 425 text_are_you_sure: ¿ Estás seguro ?
425 426 text_journal_changed: cambiado de %s a %s
426 427 text_journal_set_to: fijado a %s
427 428 text_journal_deleted: suprimido
428 429 text_tip_task_begin_day: tarea que comienza este día
429 430 text_tip_task_end_day: tarea que termina este día
430 431 text_tip_task_begin_end_day: tarea que comienza y termina este día
431 432 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
432 433 text_caracters_maximum: %d characters maximum.
433 434 text_length_between: Length between %d and %d characters.
434 435 text_tracker_no_workflow: No workflow defined for this tracker
435 436 text_unallowed_characters: Unallowed characters
436 437 text_coma_separated: Multiple values allowed (coma separated).
437 438 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
438 439
439 440 default_role_manager: Manager
440 441 default_role_developper: Desarrollador
441 442 default_role_reporter: Informador
442 443 default_tracker_bug: Anomalía
443 444 default_tracker_feature: Evolución
444 445 default_tracker_support: Asistencia
445 446 default_issue_status_new: Nuevo
446 447 default_issue_status_assigned: Asignada
447 448 default_issue_status_resolved: Resuelta
448 449 default_issue_status_feedback: Comentario
449 450 default_issue_status_closed: Cerrada
450 451 default_issue_status_rejected: Rechazada
451 452 default_doc_category_user: Documentación del usuario
452 453 default_doc_category_tech: Documentación tecnica
453 454 default_priority_low: Bajo
454 455 default_priority_normal: Normal
455 456 default_priority_high: Alto
456 457 default_priority_urgent: Urgente
457 458 default_priority_immediate: Ahora
458 459 default_activity_design: Design
459 460 default_activity_development: Development
460 461
461 462 enumeration_issue_priorities: Prioridad de las peticiones
462 463 enumeration_doc_categories: Categorías del documento
463 464 enumeration_activities: Activities (time tracking)
@@ -1,463 +1,464
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
5 5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 jour
9 9 actionview_datehelper_time_in_words_day_plural: %d jours
10 10 actionview_datehelper_time_in_words_hour_about: about an hour
11 11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 13 actionview_datehelper_time_in_words_minute: 1 minute
14 14 actionview_datehelper_time_in_words_minute_half: 30 secondes
15 15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
19 19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
20 20 actionview_instancetag_blank_option: Choisir
21 21
22 22 activerecord_error_inclusion: n'est pas inclus dans la liste
23 23 activerecord_error_exclusion: est reservé
24 24 activerecord_error_invalid: est invalide
25 25 activerecord_error_confirmation: ne correspond pas à la confirmation
26 26 activerecord_error_accepted: doit être accepté
27 27 activerecord_error_empty: doit être renseigné
28 28 activerecord_error_blank: doit être renseigné
29 29 activerecord_error_too_long: est trop long
30 30 activerecord_error_too_short: est trop court
31 31 activerecord_error_wrong_length: n'est pas de la bonne longueur
32 32 activerecord_error_taken: est déjà utilisé
33 33 activerecord_error_not_a_number: n'est pas un nombre
34 34 activerecord_error_not_a_date: n'est pas une date valide
35 35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
36 36 activerecord_error_not_same_project: n'appartient pas au même projet
37 37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
38 38
39 39 general_fmt_age: %d an
40 40 general_fmt_age_plural: %d ans
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'Non'
46 46 general_text_Yes: 'Oui'
47 47 general_text_no: 'non'
48 48 general_text_yes: 'oui'
49 49 general_lang_fr: 'Français'
50 50 general_csv_separator: ';'
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
54 54
55 55 notice_account_updated: Le compte a été mis à jour avec succès.
56 56 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
57 57 notice_account_password_updated: Mot de passe mis à jour avec succès.
58 58 notice_account_wrong_password: Mot de passe incorrect
59 59 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
60 60 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
61 61 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
62 62 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
63 63 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
64 64 notice_successful_create: Création effectuée avec succès.
65 65 notice_successful_update: Mise à jour effectuée avec succès.
66 66 notice_successful_delete: Suppression effectuée avec succès.
67 67 notice_successful_connection: Connection réussie.
68 68 notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
69 69 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
70 70 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
71 71 notice_not_authorized: Vous n'êtes pas autorisés à accéder à cette page.
72 72
73 73 mail_subject_lost_password: Votre mot de passe redMine
74 74 mail_subject_register: Activation de votre compte redMine
75 75
76 76 gui_validation_error: 1 erreur
77 77 gui_validation_error_plural: %d erreurs
78 78
79 79 field_name: Nom
80 80 field_description: Description
81 81 field_summary: Résumé
82 82 field_is_required: Obligatoire
83 83 field_firstname: Prénom
84 84 field_lastname: Nom
85 85 field_mail: Email
86 86 field_filename: Fichier
87 87 field_filesize: Taille
88 88 field_downloads: Téléchargements
89 89 field_author: Auteur
90 90 field_created_on: Créé
91 91 field_updated_on: Mis à jour
92 92 field_field_format: Format
93 93 field_is_for_all: Pour tous les projets
94 94 field_possible_values: Valeurs possibles
95 95 field_regexp: Expression régulière
96 96 field_min_length: Longueur minimum
97 97 field_max_length: Longueur maximum
98 98 field_value: Valeur
99 99 field_category: Catégorie
100 100 field_title: Titre
101 101 field_project: Projet
102 102 field_issue: Demande
103 103 field_status: Statut
104 104 field_notes: Notes
105 105 field_is_closed: Demande fermée
106 106 field_is_default: Statut par défaut
107 107 field_html_color: Couleur
108 108 field_tracker: Tracker
109 109 field_subject: Sujet
110 110 field_due_date: Date d'échéance
111 111 field_assigned_to: Assigné à
112 112 field_priority: Priorité
113 113 field_fixed_version: Version corrigée
114 114 field_user: Utilisateur
115 115 field_role: Rôle
116 116 field_homepage: Site web
117 117 field_is_public: Public
118 118 field_parent: Sous-projet de
119 119 field_is_in_chlog: Demandes affichées dans l'historique
120 120 field_is_in_roadmap: Demandes affichées dans la roadmap
121 121 field_login: Identifiant
122 122 field_mail_notification: Notifications par mail
123 123 field_admin: Administrateur
124 124 field_last_login_on: Dernière connexion
125 125 field_language: Langue
126 126 field_effective_date: Date
127 127 field_password: Mot de passe
128 128 field_new_password: Nouveau mot de passe
129 129 field_password_confirmation: Confirmation
130 130 field_version: Version
131 131 field_type: Type
132 132 field_host: Hôte
133 133 field_port: Port
134 134 field_account: Compte
135 135 field_base_dn: Base DN
136 136 field_attr_login: Attribut Identifiant
137 137 field_attr_firstname: Attribut Prénom
138 138 field_attr_lastname: Attribut Nom
139 139 field_attr_mail: Attribut Email
140 140 field_onthefly: Création des utilisateurs à la volée
141 141 field_start_date: Début
142 142 field_done_ratio: %% Réalisé
143 143 field_auth_source: Mode d'authentification
144 144 field_hide_mail: Cacher mon adresse mail
145 145 field_comments: Commentaire
146 146 field_url: URL
147 147 field_start_page: Page de démarrage
148 148 field_subproject: Sous-projet
149 149 field_hours: Heures
150 150 field_activity: Activité
151 151 field_spent_on: Date
152 152 field_identifier: Identifiant
153 153 field_is_filter: Utilisé comme filtre
154 154 field_issue_to_id: Demande liée
155 155 field_delay: Retard
156 156
157 157 setting_app_title: Titre de l'application
158 158 setting_app_subtitle: Sous-titre de l'application
159 159 setting_welcome_text: Texte d'accueil
160 160 setting_default_language: Langue par défaut
161 161 setting_login_required: Authentif. obligatoire
162 162 setting_self_registration: Enregistrement autorisé
163 163 setting_attachment_max_size: Taille max des fichiers
164 164 setting_issues_export_limit: Limite export demandes
165 165 setting_mail_from: Adresse d'émission
166 166 setting_host_name: Nom d'hôte
167 167 setting_text_formatting: Formatage du texte
168 168 setting_wiki_compression: Compression historique wiki
169 169 setting_feeds_limit: Limite du contenu des flux RSS
170 170 setting_autofetch_changesets: Récupération auto. des commits SVN
171 171 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
172 172 setting_commit_ref_keywords: Mot-clés de référencement
173 173 setting_commit_fix_keywords: Mot-clés de résolution
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Utilisateur
177 177 label_user_plural: Utilisateurs
178 178 label_user_new: Nouvel utilisateur
179 179 label_project: Projet
180 180 label_project_new: Nouveau projet
181 181 label_project_plural: Projets
182 182 label_project_latest: Derniers projets
183 183 label_issue: Demande
184 184 label_issue_new: Nouvelle demande
185 185 label_issue_plural: Demandes
186 186 label_issue_view_all: Voir toutes les demandes
187 187 label_document: Document
188 188 label_document_new: Nouveau document
189 189 label_document_plural: Documents
190 190 label_role: Rôle
191 191 label_role_plural: Rôles
192 192 label_role_new: Nouveau rôle
193 193 label_role_and_permissions: Rôles et permissions
194 194 label_member: Membre
195 195 label_member_new: Nouveau membre
196 196 label_member_plural: Membres
197 197 label_tracker: Tracker
198 198 label_tracker_plural: Trackers
199 199 label_tracker_new: Nouveau tracker
200 200 label_workflow: Workflow
201 201 label_issue_status: Statut de demandes
202 202 label_issue_status_plural: Statuts de demandes
203 203 label_issue_status_new: Nouveau statut
204 204 label_issue_category: Catégorie de demandes
205 205 label_issue_category_plural: Catégories de demandes
206 206 label_issue_category_new: Nouvelle catégorie
207 207 label_custom_field: Champ personnalisé
208 208 label_custom_field_plural: Champs personnalisés
209 209 label_custom_field_new: Nouveau champ personnalisé
210 210 label_enumerations: Listes de valeurs
211 211 label_enumeration_new: Nouvelle valeur
212 212 label_information: Information
213 213 label_information_plural: Informations
214 214 label_please_login: Identification
215 215 label_register: S'enregistrer
216 216 label_password_lost: Mot de passe perdu
217 217 label_home: Accueil
218 218 label_my_page: Ma page
219 219 label_my_account: Mon compte
220 220 label_my_projects: Mes projets
221 221 label_administration: Administration
222 222 label_login: Connexion
223 223 label_logout: Déconnexion
224 224 label_help: Aide
225 225 label_reported_issues: Demandes soumises
226 226 label_assigned_to_me_issues: Demandes qui me sont assignées
227 227 label_last_login: Dernière connexion
228 228 label_last_updates: Dernière mise à jour
229 229 label_last_updates_plural: %d dernières mises à jour
230 230 label_registered_on: Inscrit le
231 231 label_activity: Activité
232 232 label_new: Nouveau
233 233 label_logged_as: Connecté en tant que
234 234 label_environment: Environnement
235 235 label_authentication: Authentification
236 236 label_auth_source: Mode d'authentification
237 237 label_auth_source_new: Nouveau mode d'authentification
238 238 label_auth_source_plural: Modes d'authentification
239 239 label_subproject_plural: Sous-projets
240 240 label_min_max_length: Longueurs mini - maxi
241 241 label_list: Liste
242 242 label_date: Date
243 243 label_integer: Entier
244 244 label_boolean: Booléen
245 245 label_string: Texte
246 246 label_text: Texte long
247 247 label_attribute: Attribut
248 248 label_attribute_plural: Attributs
249 249 label_download: %d Téléchargement
250 250 label_download_plural: %d Téléchargements
251 251 label_no_data: Aucune donnée à afficher
252 252 label_change_status: Changer le statut
253 253 label_history: Historique
254 254 label_attachment: Fichier
255 255 label_attachment_new: Nouveau fichier
256 256 label_attachment_delete: Supprimer le fichier
257 257 label_attachment_plural: Fichiers
258 258 label_report: Rapport
259 259 label_report_plural: Rapports
260 260 label_news: Annonce
261 261 label_news_new: Nouvelle annonce
262 262 label_news_plural: Annonces
263 263 label_news_latest: Dernières annonces
264 264 label_news_view_all: Voir toutes les annonces
265 265 label_change_log: Historique
266 266 label_settings: Configuration
267 267 label_overview: Aperçu
268 268 label_version: Version
269 269 label_version_new: Nouvelle version
270 270 label_version_plural: Versions
271 271 label_confirmation: Confirmation
272 272 label_export_to: Exporter en
273 273 label_read: Lire...
274 274 label_public_projects: Projets publics
275 275 label_open_issues: ouvert
276 276 label_open_issues_plural: ouverts
277 277 label_closed_issues: fermé
278 278 label_closed_issues_plural: fermés
279 279 label_total: Total
280 280 label_permissions: Permissions
281 281 label_current_status: Statut actuel
282 282 label_new_statuses_allowed: Nouveaux statuts autorisés
283 283 label_all: tous
284 284 label_none: aucun
285 285 label_next: Suivant
286 286 label_previous: Précédent
287 287 label_used_by: Utilisé par
288 288 label_details: Détails...
289 289 label_add_note: Ajouter une note
290 290 label_per_page: Par page
291 291 label_calendar: Calendrier
292 292 label_months_from: mois depuis
293 293 label_gantt: Gantt
294 294 label_internal: Interne
295 295 label_last_changes: %d derniers changements
296 296 label_change_view_all: Voir tous les changements
297 297 label_personalize_page: Personnaliser cette page
298 298 label_comment: Commentaire
299 299 label_comment_plural: Commentaires
300 300 label_comment_add: Ajouter un commentaire
301 301 label_comment_added: Commentaire ajouté
302 302 label_comment_delete: Supprimer les commentaires
303 303 label_query: Rapport personnalisé
304 304 label_query_plural: Rapports personnalisés
305 305 label_query_new: Nouveau rapport
306 306 label_filter_add: Ajouter le filtre
307 307 label_filter_plural: Filtres
308 308 label_equals: égal
309 309 label_not_equals: différent
310 310 label_in_less_than: dans moins de
311 311 label_in_more_than: dans plus de
312 312 label_in: dans
313 313 label_today: aujourd'hui
314 314 label_less_than_ago: il y a moins de
315 315 label_more_than_ago: il y a plus de
316 316 label_ago: il y a
317 317 label_contains: contient
318 318 label_not_contains: ne contient pas
319 319 label_day_plural: jours
320 320 label_repository: Dépôt SVN
321 321 label_browse: Parcourir
322 322 label_modification: %d modification
323 323 label_modification_plural: %d modifications
324 324 label_revision: Révision
325 325 label_revision_plural: Révisions
326 326 label_added: ajouté
327 327 label_modified: modifié
328 328 label_deleted: supprimé
329 329 label_latest_revision: Dernière révision
330 330 label_latest_revision_plural: Dernières révisions
331 331 label_view_revisions: Voir les révisions
332 332 label_max_size: Taille maximale
333 333 label_on: sur
334 334 label_sort_highest: Remonter en premier
335 335 label_sort_higher: Remonter
336 336 label_sort_lower: Descendre
337 337 label_sort_lowest: Descendre en dernier
338 338 label_roadmap: Roadmap
339 339 label_roadmap_due_in: Echéance dans
340 340 label_roadmap_no_issues: Aucune demande pour cette version
341 341 label_search: Recherche
342 342 label_result: %d résultat
343 343 label_result_plural: %d résultats
344 344 label_all_words: Tous les mots
345 345 label_wiki: Wiki
346 346 label_wiki_edit: Révision wiki
347 347 label_wiki_edit_plural: Révisions wiki
348 348 label_page_index: Index
349 349 label_current_version: Version actuelle
350 350 label_preview: Prévisualisation
351 351 label_feed_plural: Flux RSS
352 352 label_changes_details: Détails de tous les changements
353 353 label_issue_tracking: Suivi des demandes
354 354 label_spent_time: Temps passé
355 355 label_f_hour: %.2f heure
356 356 label_f_hour_plural: %.2f heures
357 357 label_time_tracking: Suivi du temps
358 358 label_change_plural: Changements
359 359 label_statistics: Statistiques
360 360 label_commits_per_month: Commits par mois
361 361 label_commits_per_author: Commits par auteur
362 362 label_view_diff: Voir les différences
363 363 label_diff_inline: en ligne
364 364 label_diff_side_by_side: côte à côte
365 365 label_options: Options
366 366 label_copy_workflow_from: Copier le workflow de
367 367 label_permissions_report: Synthèse des permissions
368 368 label_watched_issues: Demandes surveillées
369 369 label_related_issues: Demandes liées
370 370 label_applied_status: Statut appliqué
371 371 label_loading: Chargement...
372 372 label_relation_new: Nouvelle relation
373 373 label_relation_delete: Supprimer la relation
374 374 label_relates_to: lié à
375 375 label_duplicates: doublon de
376 376 label_blocks: bloque
377 377 label_blocked_by: bloqué par
378 378 label_precedes: précède
379 379 label_follows: suit
380 380 label_end_to_start: début à fin
381 381 label_end_to_end: fin à fin
382 382 label_start_to_start: début à début
383 383 label_start_to_end: début à fin
384 384 label_stay_logged_in: Rester connecté
385 385 label_disabled: désactivé
386 label_show_completed_versions: Voire les versions passées
386 387
387 388 button_login: Connexion
388 389 button_submit: Soumettre
389 390 button_save: Sauvegarder
390 391 button_check_all: Tout cocher
391 392 button_uncheck_all: Tout décocher
392 393 button_delete: Supprimer
393 394 button_create: Créer
394 395 button_test: Tester
395 396 button_edit: Modifier
396 397 button_add: Ajouter
397 398 button_change: Changer
398 399 button_apply: Appliquer
399 400 button_clear: Effacer
400 401 button_lock: Verrouiller
401 402 button_unlock: Déverrouiller
402 403 button_download: Télécharger
403 404 button_list: Lister
404 405 button_view: Voir
405 406 button_move: Déplacer
406 407 button_back: Retour
407 408 button_cancel: Annuler
408 409 button_activate: Activer
409 410 button_sort: Trier
410 411 button_log_time: Saisir temps
411 412 button_rollback: Revenir à cette version
412 413 button_watch: Surveiller
413 414 button_unwatch: Ne plus surveiller
414 415
415 416 status_active: actif
416 417 status_registered: enregistré
417 418 status_locked: vérouillé
418 419
419 420 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
420 421 text_regexp_info: ex. ^[A-Z0-9]+$
421 422 text_min_max_length_info: 0 pour aucune restriction
422 423 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
423 424 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
424 425 text_are_you_sure: Etes-vous sûr ?
425 426 text_journal_changed: changé de %s à %s
426 427 text_journal_set_to: mis à %s
427 428 text_journal_deleted: supprimé
428 429 text_tip_task_begin_day: tâche commençant ce jour
429 430 text_tip_task_end_day: tâche finissant ce jour
430 431 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
431 432 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
432 433 text_caracters_maximum: %d caractères maximum.
433 434 text_length_between: Longueur comprise entre %d et %d caractères.
434 435 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
435 436 text_unallowed_characters: Caractères non autorisés
436 437 text_coma_separated: Plusieurs valeurs possibles (séparées par des virgules).
437 438 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires SVN
438 439
439 440 default_role_manager: Manager
440 441 default_role_developper: Développeur
441 442 default_role_reporter: Rapporteur
442 443 default_tracker_bug: Anomalie
443 444 default_tracker_feature: Evolution
444 445 default_tracker_support: Assistance
445 446 default_issue_status_new: Nouveau
446 447 default_issue_status_assigned: Assigné
447 448 default_issue_status_resolved: Résolu
448 449 default_issue_status_feedback: Commentaire
449 450 default_issue_status_closed: Fermé
450 451 default_issue_status_rejected: Rejeté
451 452 default_doc_category_user: Documentation utilisateur
452 453 default_doc_category_tech: Documentation technique
453 454 default_priority_low: Bas
454 455 default_priority_normal: Normal
455 456 default_priority_high: Haut
456 457 default_priority_urgent: Urgent
457 458 default_priority_immediate: Immédiat
458 459 default_activity_design: Conception
459 460 default_activity_development: Développement
460 461
461 462 enumeration_issue_priorities: Priorités des demandes
462 463 enumeration_doc_categories: Catégories des documents
463 464 enumeration_activities: Activités (suivi du temps)
@@ -1,463 +1,464
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
5 5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 giorno
9 9 actionview_datehelper_time_in_words_day_plural: %d giorni
10 10 actionview_datehelper_time_in_words_hour_about: circa un'ora
11 11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
12 12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
13 13 actionview_datehelper_time_in_words_minute: 1 minuto
14 14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
15 15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
16 16 actionview_datehelper_time_in_words_minute_plural: %d minuti
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
19 19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
20 20 actionview_instancetag_blank_option: Scegli
21 21
22 22 activerecord_error_inclusion: non è incluso nella lista
23 23 activerecord_error_exclusion: e' riservato
24 24 activerecord_error_invalid: non e' valido
25 25 activerecord_error_confirmation: non coincide con la conferma
26 26 activerecord_error_accepted: deve essere accettato
27 27 activerecord_error_empty: non puo' essere vuoto
28 28 activerecord_error_blank: non puo' essere blank
29 29 activerecord_error_too_long: e' troppo lungo/a
30 30 activerecord_error_too_short: e' troppo corto/a
31 31 activerecord_error_wrong_length: e' della lunghezza sbagliata
32 32 activerecord_error_taken: e' gia' stato/a preso/a
33 33 activerecord_error_not_a_number: non e' un numero
34 34 activerecord_error_not_a_date: non e' una data valida
35 35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
36 36 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'No'
46 46 general_text_Yes: 'Si'
47 47 general_text_no: 'no'
48 48 general_text_yes: 'si'
49 49 general_lang_it: 'Italiano'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
54 54
55 55 notice_account_updated: L'utenza è stata aggiornata.
56 56 notice_account_invalid_creditentials: Nome utente o password non validi.
57 57 notice_account_password_updated: La password è stata aggiornata.
58 58 notice_account_wrong_password: Password errata
59 59 notice_account_register_done: L'utenza è stata creata.
60 60 notice_account_unknown_email: Utente sconosciuto.
61 61 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
62 62 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
63 63 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
64 64 notice_successful_create: Creazione effettuata.
65 65 notice_successful_update: Modifica effettuata.
66 66 notice_successful_delete: Eliminazione effettuata.
67 67 notice_successful_connection: Connessione effettuata.
68 68 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
69 69 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
70 70 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72
73 73 mail_subject_lost_password: Password redMine
74 74 mail_subject_register: Attivazione utenza redMine
75 75
76 76 gui_validation_error: 1 errore
77 77 gui_validation_error_plural: %d errori
78 78
79 79 field_name: Nome
80 80 field_description: Descrizione
81 81 field_summary: Sommario
82 82 field_is_required: Richiesto
83 83 field_firstname: Nome
84 84 field_lastname: Cognome
85 85 field_mail: Email
86 86 field_filename: File
87 87 field_filesize: Dimensione
88 88 field_downloads: Download
89 89 field_author: Autore
90 90 field_created_on: Creato
91 91 field_updated_on: Aggiornato
92 92 field_field_format: Formato
93 93 field_is_for_all: Per tutti i progetti
94 94 field_possible_values: Valori possibili
95 95 field_regexp: Espressione regolare
96 96 field_min_length: Lunghezza minima
97 97 field_max_length: Lunghezza massima
98 98 field_value: Valore
99 99 field_category: Categoria
100 100 field_title: Titolo
101 101 field_project: Progetto
102 102 field_issue: Issue
103 103 field_status: Stato
104 104 field_notes: Note
105 105 field_is_closed: Chiude il contesto
106 106 field_is_default: Stato predefinito
107 107 field_html_color: Colore
108 108 field_tracker: Tracker
109 109 field_subject: Oggetto
110 110 field_due_date: Data ultima
111 111 field_assigned_to: Assegnato a
112 112 field_priority: Priorita'
113 113 field_fixed_version: Versione di fix
114 114 field_user: Utente
115 115 field_role: Ruolo
116 116 field_homepage: Homepage
117 117 field_is_public: Pubblico
118 118 field_parent: Sottoprogetto di
119 119 field_is_in_chlog: Contesti mostrati nel changelog
120 120 field_is_in_roadmap: Contesti mostrati nel roadmap
121 121 field_login: Login
122 122 field_mail_notification: Notifiche via e-mail
123 123 field_admin: Amministratore
124 124 field_last_login_on: Ultima connessione
125 125 field_language: Lingua
126 126 field_effective_date: Data
127 127 field_password: Password
128 128 field_new_password: Nuova password
129 129 field_password_confirmation: Conferma
130 130 field_version: Versione
131 131 field_type: Tipo
132 132 field_host: Host
133 133 field_port: Porta
134 134 field_account: Utenza
135 135 field_base_dn: DN base
136 136 field_attr_login: Attributo login
137 137 field_attr_firstname: Attributo nome
138 138 field_attr_lastname: Attributo cognome
139 139 field_attr_mail: Attributo e-mail
140 140 field_onthefly: Creazione utenza "al volo"
141 141 field_start_date: Inizio
142 142 field_done_ratio: %% completo
143 143 field_auth_source: Modalità di autenticazione
144 144 field_hide_mail: Nascondi il mio indirizzo di e-mail
145 145 field_comments: Commento
146 146 field_url: URL
147 147 field_start_page: Pagina principale
148 148 field_subproject: Sottoprogetto
149 149 field_hours: Hours
150 150 field_activity: Activity
151 151 field_spent_on: Data
152 152 field_identifier: Identifier
153 153 field_is_filter: Used as a filter
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Titolo applicazione
158 158 setting_app_subtitle: Sottotitolo applicazione
159 159 setting_welcome_text: Testo di benvenuto
160 160 setting_default_language: Lingua di default
161 161 setting_login_required: Autenticazione richiesta
162 162 setting_self_registration: Auto-registrazione abilitata
163 163 setting_attachment_max_size: Massima dimensione allegati
164 164 setting_issues_export_limit: Limite esportazione contesti
165 165 setting_mail_from: Indirizzo sorgente e-mail
166 166 setting_host_name: Nome host
167 167 setting_text_formatting: Formattazione testo
168 168 setting_wiki_compression: Compressione di storia di Wiki
169 169 setting_feeds_limit: Limite contenuti del feed
170 170 setting_autofetch_changesets: Acquisisci automaticamente le commit SVN
171 171 setting_sys_api_enabled: Abilita WS per la gestione del repository
172 172 setting_commit_ref_keywords: Referencing keywords
173 173 setting_commit_fix_keywords: Fixing keywords
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Utente
177 177 label_user_plural: Utenti
178 178 label_user_new: Nuovo utente
179 179 label_project: Progetto
180 180 label_project_new: Nuovo progetto
181 181 label_project_plural: Progetti
182 182 label_project_latest: Ultimi progetti registrati
183 183 label_issue: Contesto
184 184 label_issue_new: Nuovo contesto
185 185 label_issue_plural: Contesti
186 186 label_issue_view_all: Mostra tutti i contesti
187 187 label_document: Documento
188 188 label_document_new: Nuovo documento
189 189 label_document_plural: Documenti
190 190 label_role: Ruolo
191 191 label_role_plural: Ruoli
192 192 label_role_new: Nuovo ruolo
193 193 label_role_and_permissions: Ruoli e permessi
194 194 label_member: Membro
195 195 label_member_new: Nuovo membro
196 196 label_member_plural: Membri
197 197 label_tracker: Tracker
198 198 label_tracker_plural: Tracker
199 199 label_tracker_new: Nuovo tracker
200 200 label_workflow: Workflow
201 201 label_issue_status: Stato contesti
202 202 label_issue_status_plural: Stati contesto
203 203 label_issue_status_new: Nuovo stato
204 204 label_issue_category: Categorie contesti
205 205 label_issue_category_plural: Categorie contesto
206 206 label_issue_category_new: Nuova categoria
207 207 label_custom_field: Campo personalizzato
208 208 label_custom_field_plural: Campi personalizzati
209 209 label_custom_field_new: Nuovo campo personalizzato
210 210 label_enumerations: Enumerazioni
211 211 label_enumeration_new: Nuovo valore
212 212 label_information: Informazione
213 213 label_information_plural: Informazioni
214 214 label_please_login: Autenticarsi
215 215 label_register: Registrati
216 216 label_password_lost: Password dimenticata
217 217 label_home: Home
218 218 label_my_page: Pagina personale
219 219 label_my_account: La mia utenza
220 220 label_my_projects: I miei progetti
221 221 label_administration: Amministrazione
222 222 label_login: Login
223 223 label_logout: Logout
224 224 label_help: Aiuto
225 225 label_reported_issues: Contesti segnalati
226 226 label_assigned_to_me_issues: I miei contesti
227 227 label_last_login: Ultimo collegamento
228 228 label_last_updates: Ultimo aggiornamento
229 229 label_last_updates_plural: %d ultimo aggiornamento
230 230 label_registered_on: Registrato il
231 231 label_activity: Attività
232 232 label_new: Nuovo
233 233 label_logged_as: Autenticato come
234 234 label_environment: Ambiente
235 235 label_authentication: Autenticazione
236 236 label_auth_source: Modalità di autenticazione
237 237 label_auth_source_new: Nuova modalità di autenticazione
238 238 label_auth_source_plural: Modalità di autenticazione
239 239 label_subproject_plural: Sottoprogetti
240 240 label_min_max_length: Lunghezza minima - massima
241 241 label_list: Elenco
242 242 label_date: Data
243 243 label_integer: Intero
244 244 label_boolean: Booleano
245 245 label_string: Testo
246 246 label_text: Testo esteso
247 247 label_attribute: Attributo
248 248 label_attribute_plural: Attributi
249 249 label_download: %d Download
250 250 label_download_plural: %d Download
251 251 label_no_data: Nessun dato disponibile
252 252 label_change_status: Cambia stato
253 253 label_history: Cronologia
254 254 label_attachment: File
255 255 label_attachment_new: Nuovo file
256 256 label_attachment_delete: Elimina file
257 257 label_attachment_plural: File
258 258 label_report: Report
259 259 label_report_plural: Report
260 260 label_news: Notizia
261 261 label_news_new: Aggiungi notizia
262 262 label_news_plural: Notizie
263 263 label_news_latest: Utime notizie
264 264 label_news_view_all: Tutte le notizie
265 265 label_change_log: Change log
266 266 label_settings: Impostazioni
267 267 label_overview: Panoramica
268 268 label_version: Versione
269 269 label_version_new: Nuova versione
270 270 label_version_plural: Versioni
271 271 label_confirmation: Conferma
272 272 label_export_to: Esporta su
273 273 label_read: Leggi...
274 274 label_public_projects: Progetti pubblici
275 275 label_open_issues: aperta
276 276 label_open_issues_plural: aperte
277 277 label_closed_issues: chiusa
278 278 label_closed_issues_plural: chiuse
279 279 label_total: Totale
280 280 label_permissions: Permessi
281 281 label_current_status: Stato attuale
282 282 label_new_statuses_allowed: Nuovi stati possibili
283 283 label_all: tutti
284 284 label_none: nessuno
285 285 label_next: Successivo
286 286 label_previous: Precedente
287 287 label_used_by: Usato da
288 288 label_details: Dettagli...
289 289 label_add_note: Aggiungi una nota
290 290 label_per_page: Per pagina
291 291 label_calendar: Calendario
292 292 label_months_from: mesi da
293 293 label_gantt: Gantt
294 294 label_internal: Interno
295 295 label_last_changes: ultime %d modifiche
296 296 label_change_view_all: Tutte le modifiche
297 297 label_personalize_page: Personalizza la pagina
298 298 label_comment: Commento
299 299 label_comment_plural: Commenti
300 300 label_comment_add: Aggiungi un commento
301 301 label_comment_added: Commento aggiunto
302 302 label_comment_delete: Elimina commenti
303 303 label_query: Custom query
304 304 label_query_plural: Query personalizzate
305 305 label_query_new: Nuova query
306 306 label_filter_add: Aggiungi filtro
307 307 label_filter_plural: Filtri
308 308 label_equals: è
309 309 label_not_equals: non è
310 310 label_in_less_than: è minore di
311 311 label_in_more_than: è maggiore di
312 312 label_in: in
313 313 label_today: oggi
314 314 label_less_than_ago: meno di giorni fa
315 315 label_more_than_ago: più di giorni fa
316 316 label_ago: giorni fa
317 317 label_contains: contiene
318 318 label_not_contains: non contiene
319 319 label_day_plural: giorni
320 320 label_repository: SVN Repository
321 321 label_browse: Browse
322 322 label_modification: %d modifica
323 323 label_modification_plural: %d modifiche
324 324 label_revision: Versione
325 325 label_revision_plural: Versioni
326 326 label_added: aggiunto
327 327 label_modified: modificato
328 328 label_deleted: eliminato
329 329 label_latest_revision: Ultima versione
330 330 label_latest_revision_plural: Ultime versioni
331 331 label_view_revisions: Mostra versioni
332 332 label_max_size: Dimensione massima
333 333 label_on: 'on'
334 334 label_sort_highest: Sposta in cima
335 335 label_sort_higher: Su
336 336 label_sort_lower: Giù
337 337 label_sort_lowest: Sposta in fondo
338 338 label_roadmap: Roadmap
339 339 label_roadmap_due_in: Da ultimare in
340 340 label_roadmap_no_issues: Nessun contesto per questa versione
341 341 label_search: Ricerca
342 342 label_result: %d risultato
343 343 label_result_plural: %d risultati
344 344 label_all_words: Tutte le parole
345 345 label_wiki: Wiki
346 346 label_wiki_edit: Modifica Wiki
347 347 label_wiki_edit_plural: Modfiche wiki
348 348 label_page_index: Indice
349 349 label_current_version: Versione corrente
350 350 label_preview: Anteprima
351 351 label_feed_plural: Feed
352 352 label_changes_details: Particolari di tutti i cambiamenti
353 353 label_issue_tracking: tracking dei contesti
354 354 label_spent_time: Tempo impiegato
355 355 label_f_hour: %.2f ora
356 356 label_f_hour_plural: %.2f ore
357 357 label_time_tracking: Tracking del tempo
358 358 label_change_plural: Modifiche
359 359 label_statistics: Statistiche
360 360 label_commits_per_month: Commit per mese
361 361 label_commits_per_author: Commit per autore
362 362 label_view_diff: mostra differenze
363 363 label_diff_inline: inline
364 364 label_diff_side_by_side: side by side
365 365 label_options: Opzioni
366 366 label_copy_workflow_from: Copia workflow da
367 367 label_permissions_report: Report permessi
368 368 label_watched_issues: Watched issues
369 369 label_related_issues: Related issues
370 370 label_applied_status: Applied status
371 371 label_loading: Loading...
372 372 label_relation_new: New relation
373 373 label_relation_delete: Delete relation
374 374 label_relates_to: related tp
375 375 label_duplicates: duplicates
376 376 label_blocks: blocks
377 377 label_blocked_by: blocked by
378 378 label_precedes: precedes
379 379 label_follows: follows
380 380 label_end_to_start: start to end
381 381 label_end_to_end: end to end
382 382 label_start_to_start: start to start
383 383 label_start_to_end: start to end
384 384 label_stay_logged_in: Stay logged in
385 385 label_disabled: disabled
386 label_show_completed_versions: Show completed versions
386 387
387 388 button_login: Login
388 389 button_submit: Invia
389 390 button_save: Salva
390 391 button_check_all: Seleziona tutti
391 392 button_uncheck_all: Deseleziona tutti
392 393 button_delete: Elimina
393 394 button_create: Crea
394 395 button_test: Test
395 396 button_edit: Modifica
396 397 button_add: Aggiungi
397 398 button_change: Modifica
398 399 button_apply: Applica
399 400 button_clear: Pulisci
400 401 button_lock: Blocca
401 402 button_unlock: Sblocca
402 403 button_download: Scarica
403 404 button_list: Elenca
404 405 button_view: Mostra
405 406 button_move: Sposta
406 407 button_back: Indietro
407 408 button_cancel: Annulla
408 409 button_activate: Attiva
409 410 button_sort: Ordina
410 411 button_log_time: Registra tempo
411 412 button_rollback: Ripristina questa versione
412 413 button_watch: Watch
413 414 button_unwatch: Unwatch
414 415
415 416 status_active: attivo
416 417 status_registered: registrato
417 418 status_locked: bloccato
418 419
419 420 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
420 421 text_regexp_info: eg. ^[A-Z0-9]+$
421 422 text_min_max_length_info: 0 significa nessuna restrizione
422 423 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
423 424 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
424 425 text_are_you_sure: Sei sicuro ?
425 426 text_journal_changed: cambiato da %s a %s
426 427 text_journal_set_to: impostato a %s
427 428 text_journal_deleted: cancellato
428 429 text_tip_task_begin_day: attività che iniziano in questa giornata
429 430 text_tip_task_end_day: attività che terminano in questa giornata
430 431 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
431 432 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
432 433 text_caracters_maximum: massimo %d caratteri.
433 434 text_length_between: Lunghezza compresa tra %d e %d caratteri.
434 435 text_tracker_no_workflow: Nessun workflow definito per questo tracker
435 436 text_unallowed_characters: Unallowed characters
436 437 text_coma_separated: Multiple values allowed (coma separated).
437 438 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
438 439
439 440 default_role_manager: Manager
440 441 default_role_developper: Sviluppatore
441 442 default_role_reporter: Reporter
442 443 default_tracker_bug: Contesto
443 444 default_tracker_feature: Funzione
444 445 default_tracker_support: Supporto
445 446 default_issue_status_new: Nuovo/a
446 447 default_issue_status_assigned: Assegnato/a
447 448 default_issue_status_resolved: Risolto/a
448 449 default_issue_status_feedback: Feedback
449 450 default_issue_status_closed: Chiuso/a
450 451 default_issue_status_rejected: Rifiutato/a
451 452 default_doc_category_user: Documentazione utente
452 453 default_doc_category_tech: Documentazione tecnica
453 454 default_priority_low: Bassa
454 455 default_priority_normal: Normale
455 456 default_priority_high: Alta
456 457 default_priority_urgent: Urgente
457 458 default_priority_immediate: Immediata
458 459 default_activity_design: Design
459 460 default_activity_development: Development
460 461
461 462 enumeration_issue_priorities: Priorità contesti
462 463 enumeration_doc_categories: Categorie di documenti
463 464 enumeration_activities: Attività (time tracking)
@@ -1,464 +1,465
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月
5 5 actionview_datehelper_select_month_names_abbr: 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_select_year_suffix:
9 9 actionview_datehelper_time_in_words_day: 1日
10 10 actionview_datehelper_time_in_words_day_plural: %d日間
11 11 actionview_datehelper_time_in_words_hour_about: 約1時間
12 12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
13 13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
14 14 actionview_datehelper_time_in_words_minute: 1分
15 15 actionview_datehelper_time_in_words_minute_half: 約30秒
16 16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
17 17 actionview_datehelper_time_in_words_minute_plural: %d分
18 18 actionview_datehelper_time_in_words_minute_single: 1分
19 19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
20 20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
21 21 actionview_instancetag_blank_option: 選んでください
22 22
23 23 activerecord_error_inclusion: がリストに含まれていません
24 24 activerecord_error_exclusion: が予約されています
25 25 activerecord_error_invalid: が無効です
26 26 activerecord_error_confirmation: 確認のパスワードと合っていません
27 27 activerecord_error_accepted: を承諾してください
28 28 activerecord_error_empty: が空です
29 29 activerecord_error_blank: が空白です
30 30 activerecord_error_too_long: が長すぎます
31 31 activerecord_error_too_short: が短かすぎます
32 32 activerecord_error_wrong_length: の長さが間違っています
33 33 activerecord_error_taken: はすでに登録されています
34 34 activerecord_error_not_a_number: が数字ではありません
35 35 activerecord_error_not_a_date: の日付が間違っています
36 36 activerecord_error_greater_than_start_date: を開始日より後にしてください
37 37 activerecord_error_not_same_project: doesn't belong to the same project
38 38 activerecord_error_circular_dependency: This relation would create a circular dependency
39 39
40 40 general_fmt_age: %d歳
41 41 general_fmt_age_plural: %d歳
42 42 general_fmt_date: %%Y年%%m月%%d日
43 43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
44 44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
45 45 general_fmt_time: %%H:%%M %%p
46 46 general_text_No: 'いいえ'
47 47 general_text_Yes: 'はい'
48 48 general_text_no: 'いいえ'
49 49 general_text_yes: 'はい'
50 50 general_lang_ja: 'Japanese (日本語)'
51 51 general_csv_separator: ','
52 52 general_csv_encoding: SJIS
53 53 general_pdf_encoding: SJIS
54 54 general_day_names: 日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日
55 55
56 56 notice_account_updated: アカウントが更新されました。
57 57 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
58 58 notice_account_password_updated: パスワードが更新されました。
59 59 notice_account_wrong_password: パスワードが違います
60 60 notice_account_register_done: アカウントが作成されました。
61 61 notice_account_unknown_email: ユーザが存在しません。
62 62 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
63 63 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
64 64 notice_account_activated: アカウントが有効になりました。ログインできます。
65 65 notice_successful_create: 作成しました。
66 66 notice_successful_update: 更新しました。
67 67 notice_successful_delete: 削除しました。
68 68 notice_successful_connection: 接続しました。
69 69 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
70 70 notice_locking_conflict: 別のユーザがデータを更新しています。
71 71 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
72 72 notice_not_authorized: You are not authorized to access this page.
73 73
74 74 mail_subject_lost_password: redMine パスワード
75 75 mail_subject_register: redMine アカウントが有効になりました
76 76
77 77 gui_validation_error: 1 件のエラー
78 78 gui_validation_error_plural: %d 件のエラー
79 79
80 80 field_name: 名前
81 81 field_description: 説明
82 82 field_summary: サマリ
83 83 field_is_required: 必須
84 84 field_firstname: 名前
85 85 field_lastname: 苗字
86 86 field_mail: メールアドレス
87 87 field_filename: ファイル
88 88 field_filesize: サイズ
89 89 field_downloads: ダウンロード
90 90 field_author: 起票者
91 91 field_created_on: 作成日
92 92 field_updated_on: 更新日
93 93 field_field_format: 書式
94 94 field_is_for_all: 全プロジェクト向け
95 95 field_possible_values: 選択肢
96 96 field_regexp: 正規表現
97 97 field_min_length: 最小値
98 98 field_max_length: 最大値
99 99 field_value:
100 100 field_category: カテゴリ
101 101 field_title: タイトル
102 102 field_project: プロジェクト
103 103 field_issue: 問題
104 104 field_status: ステータス
105 105 field_notes: 注記
106 106 field_is_closed: 終了した問題
107 107 field_is_default: デフォルトのステータス
108 108 field_html_color:
109 109 field_tracker: トラッカー
110 110 field_subject: 題名
111 111 field_due_date: 期限日
112 112 field_assigned_to: 担当者
113 113 field_priority: 優先度
114 114 field_fixed_version: 修正されたバージョン
115 115 field_user: ユーザ
116 116 field_role: 役割
117 117 field_homepage: ホームページ
118 118 field_is_public: 公開
119 119 field_parent: 親プロジェクト名
120 120 field_is_in_chlog: 変更記録に表示されている問題
121 121 field_is_in_roadmap: ロードマップに表示されている問題
122 122 field_login: ログイン
123 123 field_mail_notification: メール通知
124 124 field_admin: 管理者
125 125 field_last_login_on: 最終接続日
126 126 field_language: 言語
127 127 field_effective_date: 日付
128 128 field_password: パスワード
129 129 field_new_password: 新しいパスワード
130 130 field_password_confirmation: パスワードの確認
131 131 field_version: バージョン
132 132 field_type: タイプ
133 133 field_host: ホスト
134 134 field_port: ポート
135 135 field_account: アカウント
136 136 field_base_dn: Base DN
137 137 field_attr_login: ログイン名属性
138 138 field_attr_firstname: 名前属性
139 139 field_attr_lastname: 苗字属性
140 140 field_attr_mail: メール属性
141 141 field_onthefly: あわせてユーザを作成
142 142 field_start_date: 開始日
143 143 field_done_ratio: 進捗 %%
144 144 field_auth_source: 認証モード
145 145 field_hide_mail: メールアドレスを隠す
146 146 field_comments: コメント
147 147 field_url: URL
148 148 field_start_page: メインページ
149 149 field_subproject: サブプロジェクト
150 150 field_hours: 時間
151 151 field_activity: 活動
152 152 field_spent_on: 日付
153 153 field_identifier: 識別子
154 154 field_is_filter: Used as a filter
155 155 field_issue_to_id: Related issue
156 156 field_delay: Delay
157 157
158 158 setting_app_title: アプリケーションのタイトル
159 159 setting_app_subtitle: アプリケーションのサブタイトル
160 160 setting_welcome_text: ウェルカムメッセージ
161 161 setting_default_language: 既定の言語
162 162 setting_login_required: 認証が必要
163 163 setting_self_registration: ユーザは自分で登録できる
164 164 setting_attachment_max_size: 添付の最大サイズ
165 165 setting_issues_export_limit: 出力する問題数の上限
166 166 setting_mail_from: 送信元メールアドレス
167 167 setting_host_name: ホスト名
168 168 setting_text_formatting: テキストの書式
169 169 setting_wiki_compression: Wiki履歴を圧縮する
170 170 setting_feeds_limit: フィード内容の上限
171 171 setting_autofetch_changesets: SVNコミットを自動取得する
172 172 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
173 173 setting_commit_ref_keywords: Referencing keywords
174 174 setting_commit_fix_keywords: Fixing keywords
175 175 setting_autologin: Autologin
176 176
177 177 label_user: ユーザ
178 178 label_user_plural: ユーザ
179 179 label_user_new: 新しいユーザ
180 180 label_project: プロジェクト
181 181 label_project_new: 新しいプロジェクト
182 182 label_project_plural: プロジェクト
183 183 label_project_latest: 最近のプロジェクト
184 184 label_issue: 問題
185 185 label_issue_new: 新しい問題
186 186 label_issue_plural: 問題
187 187 label_issue_view_all: 問題を全て見る
188 188 label_document: 文書
189 189 label_document_new: 新しい文書
190 190 label_document_plural: 文書
191 191 label_role: ロール
192 192 label_role_plural: ロール
193 193 label_role_new: 新しいロール
194 194 label_role_and_permissions: ロールと権限
195 195 label_member: メンバー
196 196 label_member_new: 新しいメンバー
197 197 label_member_plural: メンバー
198 198 label_tracker: トラッカー
199 199 label_tracker_plural: トラッカー
200 200 label_tracker_new: 新しいトラッカーを作成
201 201 label_workflow: ワークフロー
202 202 label_issue_status: 問題のステータス
203 203 label_issue_status_plural: 問題のステータス
204 204 label_issue_status_new: 新しいステータス
205 205 label_issue_category: 問題のカテゴリ
206 206 label_issue_category_plural: 問題のカテゴリ
207 207 label_issue_category_new: 新しいカテゴリ
208 208 label_custom_field: カスタムフィールド
209 209 label_custom_field_plural: カスタムフィールド
210 210 label_custom_field_new: 新しいカスタムフィールドを作成
211 211 label_enumerations: 列挙項目
212 212 label_enumeration_new: 新しい値
213 213 label_information: 情報
214 214 label_information_plural: 情報
215 215 label_please_login: ログインしてください
216 216 label_register: 登録する
217 217 label_password_lost: パスワードの再発行
218 218 label_home: ホーム
219 219 label_my_page: マイページ
220 220 label_my_account: マイアカウント
221 221 label_my_projects: マイプロジェクト
222 222 label_administration: 管理
223 223 label_login: ログイン
224 224 label_logout: ログアウト
225 225 label_help: ヘルプ
226 226 label_reported_issues: 報告した問題
227 227 label_assigned_to_me_issues: 担当している問題
228 228 label_last_login: 最近の接続
229 229 label_last_updates: 最近の更新 1 件
230 230 label_last_updates_plural: 最近の更新 %d 件
231 231 label_registered_on: 登録日
232 232 label_activity: 活動
233 233 label_new: 新しく作成
234 234 label_logged_as: ログイン中:
235 235 label_environment: 環境
236 236 label_authentication: 認証
237 237 label_auth_source: 認証モード
238 238 label_auth_source_new: 新しい認証モード
239 239 label_auth_source_plural: 認証モード
240 240 label_subproject_plural: サブプロジェクト
241 241 label_min_max_length: 最小値 - 最大値の長さ
242 242 label_list: リストから選択
243 243 label_date: 日付
244 244 label_integer: 整数
245 245 label_boolean: 真偽値
246 246 label_string: テキスト
247 247 label_text: 長いテキスト
248 248 label_attribute: 属性
249 249 label_attribute_plural: 属性
250 250 label_download: %d ダウンロード
251 251 label_download_plural: %d ダウンロード
252 252 label_no_data: 表示するデータがありません
253 253 label_change_status: ステータスの変更
254 254 label_history: 履歴
255 255 label_attachment: ファイル
256 256 label_attachment_new: 新しいファイル
257 257 label_attachment_delete: ファイルを削除
258 258 label_attachment_plural: ファイル
259 259 label_report: レポート
260 260 label_report_plural: レポート
261 261 label_news: ニュース
262 262 label_news_new: ニュースを追加
263 263 label_news_plural: ニュース
264 264 label_news_latest: 最新ニュース
265 265 label_news_view_all: 全てのニュースを見る
266 266 label_change_log: 変更記録
267 267 label_settings: 設定
268 268 label_overview: 概要
269 269 label_version: バージョン
270 270 label_version_new: 新しいバージョン
271 271 label_version_plural: バージョン
272 272 label_confirmation: 確認
273 273 label_export_to: 他の形式に出力
274 274 label_read: 読む...
275 275 label_public_projects: 公開プロジェクト
276 276 label_open_issues: 未完了
277 277 label_open_issues_plural: 未完了
278 278 label_closed_issues: 終了
279 279 label_closed_issues_plural: 終了
280 280 label_total: 合計
281 281 label_permissions: 権限
282 282 label_current_status: 現在のステータス
283 283 label_new_statuses_allowed: ステータスの移行先
284 284 label_all: 全て
285 285 label_none: なし
286 286 label_next:
287 287 label_previous:
288 288 label_used_by: 使用中
289 289 label_details: 詳細...
290 290 label_add_note: 注記を追加
291 291 label_per_page: ページ毎
292 292 label_calendar: カレンダー
293 293 label_months_from: ヶ月 from
294 294 label_gantt: ガントチャート
295 295 label_internal: Internal
296 296 label_last_changes: 最新の変更 %d 件
297 297 label_change_view_all: 全ての変更を見る
298 298 label_personalize_page: このページをパーソナライズする
299 299 label_comment: コメント
300 300 label_comment_plural: コメント
301 301 label_comment_add: コメント追加
302 302 label_comment_added: 追加されたコメント
303 303 label_comment_delete: コメント削除
304 304 label_query: カスタムクエリ
305 305 label_query_plural: カスタムクエリ
306 306 label_query_new: 新しいクエリ
307 307 label_filter_add: フィルタ追加
308 308 label_filter_plural: フィルタ
309 309 label_equals: 等しい
310 310 label_not_equals: 等しくない
311 311 label_in_less_than: 残日数がこれより多い
312 312 label_in_more_than: 残日数がこれより少ない
313 313 label_in: 残日数
314 314 label_today: 今日
315 315 label_less_than_ago: 経過日数がこれより少ない
316 316 label_more_than_ago: 経過日数がこれより多い
317 317 label_ago: 日前
318 318 label_contains: 含む
319 319 label_not_contains: 含まない
320 320 label_day_plural:
321 321 label_repository: SVNリポジトリ
322 322 label_browse: ブラウズ
323 323 label_modification: %d 点の変更
324 324 label_modification_plural: %d 点の変更
325 325 label_revision: リビジョン
326 326 label_revision_plural: リビジョン
327 327 label_added: 追加
328 328 label_modified: 変更
329 329 label_deleted: 削除
330 330 label_latest_revision: 最新リビジョン
331 331 label_latest_revision_plural: 最新リビジョン
332 332 label_view_revisions: リビジョンを見る
333 333 label_max_size: 最大サイズ
334 334 label_on:
335 335 label_sort_highest: 一番上へ
336 336 label_sort_higher: 上へ
337 337 label_sort_lower: 下へ
338 338 label_sort_lowest: 一番下へ
339 339 label_roadmap: ロードマップ
340 340 label_roadmap_due_in: 期日まで
341 341 label_roadmap_no_issues: このバージョンに向けての問題はありません
342 342 label_search: 検索
343 343 label_result: %d 件の結果
344 344 label_result_plural: %d 件の結果
345 345 label_all_words: すべての単語
346 346 label_wiki: Wiki
347 347 label_wiki_edit: Wiki編集
348 348 label_wiki_edit_plural: Wiki編集
349 349 label_page_index: 索引
350 350 label_current_version: 最新版
351 351 label_preview: プレビュー
352 352 label_feed_plural: フィード
353 353 label_changes_details: 全変更の詳細
354 354 label_issue_tracking: 問題トラッキング
355 355 label_spent_time: 経過時間
356 356 label_f_hour: %.2f 時間
357 357 label_f_hour_plural: %.2f 時間
358 358 label_time_tracking: 時間トラッキング
359 359 label_change_plural: 変更
360 360 label_statistics: 統計
361 361 label_commits_per_month: 月別のコミット
362 362 label_commits_per_author: 起票者別のコミット
363 363 label_view_diff: 差分を見る
364 364 label_diff_inline: インライン
365 365 label_diff_side_by_side: 横に並べる
366 366 label_options: オプション
367 367 label_copy_workflow_from: ワークフローをここからコピー
368 368 label_permissions_report: 権限レポート
369 369 label_watched_issues: Watched issues
370 370 label_related_issues: Related issues
371 371 label_applied_status: Applied status
372 372 label_loading: Loading...
373 373 label_relation_new: New relation
374 374 label_relation_delete: Delete relation
375 375 label_relates_to: related tp
376 376 label_duplicates: duplicates
377 377 label_blocks: blocks
378 378 label_blocked_by: blocked by
379 379 label_precedes: precedes
380 380 label_follows: follows
381 381 label_end_to_start: start to end
382 382 label_end_to_end: end to end
383 383 label_start_to_start: start to start
384 384 label_start_to_end: start to end
385 385 label_stay_logged_in: Stay logged in
386 386 label_disabled: disabled
387 label_show_completed_versions: Show completed versions
387 388
388 389 button_login: ログイン
389 390 button_submit: 変更
390 391 button_save: 保存
391 392 button_check_all: チェックを全部つける
392 393 button_uncheck_all: チェックを全部外す
393 394 button_delete: 削除
394 395 button_create: 作成
395 396 button_test: テスト
396 397 button_edit: 編集
397 398 button_add: 追加
398 399 button_change: 変更
399 400 button_apply: 適用
400 401 button_clear: クリア
401 402 button_lock: ロック
402 403 button_unlock: アンロック
403 404 button_download: ダウンロード
404 405 button_list: 一覧
405 406 button_view: 見る
406 407 button_move: 移動
407 408 button_back: 戻る
408 409 button_cancel: キャンセル
409 410 button_activate: 有効にする
410 411 button_sort: ソート
411 412 button_log_time: 時間を記録
412 413 button_rollback: このバージョンにロールバック
413 414 button_watch: Watch
414 415 button_unwatch: Unwatch
415 416
416 417 status_active: 有効
417 418 status_registered: 登録
418 419 status_locked: ロック
419 420
420 421 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
421 422 text_regexp_info: 例) ^[A-Z0-9]+$
422 423 text_min_max_length_info: 0だと無制限になります
423 424 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
424 425 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
425 426 text_are_you_sure: 本当に?
426 427 text_journal_changed: %s から %s への変更
427 428 text_journal_set_to: %s にセット
428 429 text_journal_deleted: 削除
429 430 text_tip_task_begin_day: この日に開始するタスク
430 431 text_tip_task_end_day: この日に終了するタスク
431 432 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
432 433 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
433 434 text_caracters_maximum: 最大 %d 文字です。
434 435 text_length_between: 長さは %d から %d 文字までです。
435 436 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
436 437 text_unallowed_characters: Unallowed characters
437 438 text_coma_separated: Multiple values allowed (coma separated).
438 439 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
439 440
440 441 default_role_manager: 管理者
441 442 default_role_developper: 開発者
442 443 default_role_reporter: 報告者
443 444 default_tracker_bug: バグ
444 445 default_tracker_feature: 機能
445 446 default_tracker_support: サポート
446 447 default_issue_status_new: 新規
447 448 default_issue_status_assigned: 担当
448 449 default_issue_status_resolved: 解決
449 450 default_issue_status_feedback: フィードバック
450 451 default_issue_status_closed: 終了
451 452 default_issue_status_rejected: 却下
452 453 default_doc_category_user: ユーザ文書
453 454 default_doc_category_tech: 技術文書
454 455 default_priority_low: 低め
455 456 default_priority_normal: 通常
456 457 default_priority_high: 高め
457 458 default_priority_urgent: 急いで
458 459 default_priority_immediate: 今すぐ
459 460 default_activity_design: デザイン作業
460 461 default_activity_development: 開発作業
461 462
462 463 enumeration_issue_priorities: 問題の優先度
463 464 enumeration_doc_categories: 文書カテゴリ
464 465 enumeration_activities: 作業分類 (時間トラッキング)
@@ -1,463 +1,464
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
5 5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 dia
9 9 actionview_datehelper_time_in_words_day_plural: %d dias
10 10 actionview_datehelper_time_in_words_hour_about: sobre uma hora
11 11 actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas
12 12 actionview_datehelper_time_in_words_hour_about_single: sobre uma hora
13 13 actionview_datehelper_time_in_words_minute: 1 minuto
14 14 actionview_datehelper_time_in_words_minute_half: meio minuto
15 15 actionview_datehelper_time_in_words_minute_less_than: menos que um minuto
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 18 actionview_datehelper_time_in_words_second_less_than: menos que um segundo
19 19 actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos
20 20 actionview_instancetag_blank_option: Selecione
21 21
22 22 activerecord_error_inclusion: nao esta incluido na lista
23 23 activerecord_error_exclusion: esta reservado
24 24 activerecord_error_invalid: e invalido
25 25 activerecord_error_confirmation: confirmacao nao confere
26 26 activerecord_error_accepted: deve ser aceito
27 27 activerecord_error_empty: nao pode ser vazio
28 28 activerecord_error_blank: nao pode estar em branco
29 29 activerecord_error_too_long: e muito longo
30 30 activerecord_error_too_short: e muito comprido
31 31 activerecord_error_wrong_length: esta com o comprimento errado
32 32 activerecord_error_taken: ja esta examinado
33 33 activerecord_error_not_a_number: nao e um numero
34 34 activerecord_error_not_a_date: nao e uma data valida
35 35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 36 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Nao'
46 46 general_text_Yes: 'Sim'
47 47 general_text_no: 'nao'
48 48 general_text_yes: 'sim'
49 49 general_lang_pt: 'Portugues'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
54 54
55 55 notice_account_updated: Conta foi alterada com sucesso.
56 56 notice_account_invalid_creditentials: Usuario ou senha invalido.
57 57 notice_account_password_updated: Senha foi alterada com sucesso.
58 58 notice_account_wrong_password: Senha errada.
59 59 notice_account_register_done: Conta foi criada com sucesso.
60 60 notice_account_unknown_email: Usuario desconhecido.
61 61 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
62 62 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
63 63 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
64 64 notice_successful_create: Criado com sucesso.
65 65 notice_successful_update: Alterado com sucesso.
66 66 notice_successful_delete: Apagado com sucesso.
67 67 notice_successful_connection: Conectado com sucesso.
68 68 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
69 69 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
70 70 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72
73 73 mail_subject_lost_password: Sua senha do redMine.
74 74 mail_subject_register: Ativacao de conta do redMine.
75 75
76 76 gui_validation_error: 1 erro
77 77 gui_validation_error_plural: %d erros
78 78
79 79 field_name: Nome
80 80 field_description: Descricao
81 81 field_summary: Sumario
82 82 field_is_required: Obrigatorio
83 83 field_firstname: Primeiro nome
84 84 field_lastname: Ultimo nome
85 85 field_mail: Email
86 86 field_filename: Arquivo
87 87 field_filesize: Tamanho
88 88 field_downloads: Downloads
89 89 field_author: Autor
90 90 field_created_on: Criado
91 91 field_updated_on: Alterado
92 92 field_field_format: Formato
93 93 field_is_for_all: Para todos os projetos
94 94 field_possible_values: Possiveis valores
95 95 field_regexp: Expressao regular
96 96 field_min_length: Tamanho minimo
97 97 field_max_length: Tamanho maximo
98 98 field_value: Valor
99 99 field_category: Categoria
100 100 field_title: Titulo
101 101 field_project: Projeto
102 102 field_issue: Tarefa
103 103 field_status: Status
104 104 field_notes: Notas
105 105 field_is_closed: Tarefa fechada
106 106 field_is_default: Status padrao
107 107 field_html_color: Cor
108 108 field_tracker: Tipo
109 109 field_subject: Titulo
110 110 field_due_date: Data devida
111 111 field_assigned_to: Atribuido para
112 112 field_priority: Prioridade
113 113 field_fixed_version: Versao corrigida
114 114 field_user: Usuario
115 115 field_role: Regra
116 116 field_homepage: Pagina inicial
117 117 field_is_public: Publico
118 118 field_parent: Sub-projeto de
119 119 field_is_in_chlog: Tarefas mostradas no changelog
120 120 field_is_in_roadmap: Tarefas mostradas no roadmap
121 121 field_login: Login
122 122 field_mail_notification: Notificacoes por email
123 123 field_admin: Administrador
124 124 field_last_login_on: Ultima conexao
125 125 field_language: Lingua
126 126 field_effective_date: Data
127 127 field_password: Senha
128 128 field_new_password: Nova senha
129 129 field_password_confirmation: Confirmacao
130 130 field_version: Versao
131 131 field_type: Tipo
132 132 field_host: Servidor
133 133 field_port: Porta
134 134 field_account: Conta
135 135 field_base_dn: Base DN
136 136 field_attr_login: Atributo login
137 137 field_attr_firstname: Atributo primeiro nome
138 138 field_attr_lastname: Atributo ultimo nome
139 139 field_attr_mail: Atributo email
140 140 field_onthefly: Criacao de usuario on-the-fly
141 141 field_start_date: Inicio
142 142 field_done_ratio: %% Terminado
143 143 field_auth_source: Modo de autenticacao
144 144 field_hide_mail: Esconder meu email
145 145 field_comments: Comentario
146 146 field_url: URL
147 147 field_start_page: Pagina inicial
148 148 field_subproject: Sub-projeto
149 149 field_hours: Horas
150 150 field_activity: Atividade
151 151 field_spent_on: Data
152 152 field_identifier: Identificador
153 153 field_is_filter: Used as a filter
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Titulo da aplicacao
158 158 setting_app_subtitle: Sub-titulo da aplicacao
159 159 setting_welcome_text: Texto de boa-vinda
160 160 setting_default_language: Lingua padrao
161 161 setting_login_required: Autenticacao obrigatoria
162 162 setting_self_registration: Registro de si mesmo permitido
163 163 setting_attachment_max_size: Tamanho maximo do anexo
164 164 setting_issues_export_limit: Limite de exportacao das tarefas
165 165 setting_mail_from: Email enviado de
166 166 setting_host_name: Servidor
167 167 setting_text_formatting: Formato do texto
168 168 setting_wiki_compression: Compactacao do historio do Wiki
169 169 setting_feeds_limit: Limite do Feed
170 170 setting_autofetch_changesets: Autofetch SVN commits
171 171 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
172 172 setting_commit_ref_keywords: Referencing keywords
173 173 setting_commit_fix_keywords: Fixing keywords
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Usuario
177 177 label_user_plural: Usuarios
178 178 label_user_new: Novo usuario
179 179 label_project: Projeto
180 180 label_project_new: Novo projeto
181 181 label_project_plural: Projetos
182 182 label_project_latest: Ultimos projetos
183 183 label_issue: Tarefa
184 184 label_issue_new: Nova tarefa
185 185 label_issue_plural: Tarefas
186 186 label_issue_view_all: Ver todas as tarefas
187 187 label_document: Documento
188 188 label_document_new: Novo documento
189 189 label_document_plural: Documentos
190 190 label_role: Regra
191 191 label_role_plural: Regras
192 192 label_role_new: Nova regra
193 193 label_role_and_permissions: Regras e permissoes
194 194 label_member: Membro
195 195 label_member_new: Novo membro
196 196 label_member_plural: Membros
197 197 label_tracker: Tipo
198 198 label_tracker_plural: Tipos
199 199 label_tracker_new: Novo tipo
200 200 label_workflow: Workflow
201 201 label_issue_status: Status da tarefa
202 202 label_issue_status_plural: Status das tarefas
203 203 label_issue_status_new: Novo status
204 204 label_issue_category: Categoria de tarefa
205 205 label_issue_category_plural: Categorias de tarefa
206 206 label_issue_category_new: Nova categoria
207 207 label_custom_field: Campo personalizado
208 208 label_custom_field_plural: Campos personalizado
209 209 label_custom_field_new: Novo campo personalizado
210 210 label_enumerations: Enumeracao
211 211 label_enumeration_new: Novo valor
212 212 label_information: Informacao
213 213 label_information_plural: Informacoes
214 214 label_please_login: Efetue login
215 215 label_register: Registre-se
216 216 label_password_lost: Perdi a senha
217 217 label_home: Pagina inicial
218 218 label_my_page: Minha pagina
219 219 label_my_account: Minha conta
220 220 label_my_projects: Meus projetos
221 221 label_administration: Administracao
222 222 label_login: Login
223 223 label_logout: Logout
224 224 label_help: Ajuda
225 225 label_reported_issues: Tarefas reportadas
226 226 label_assigned_to_me_issues: Tarefas atribuidas a mim
227 227 label_last_login: Utima conexao
228 228 label_last_updates: Ultima alteracao
229 229 label_last_updates_plural: %d Ultimas alteracoes
230 230 label_registered_on: Registrado em
231 231 label_activity: Atividade
232 232 label_new: Novo
233 233 label_logged_as: Logado como
234 234 label_environment: Ambiente
235 235 label_authentication: Autenticacao
236 236 label_auth_source: Modo de autenticacao
237 237 label_auth_source_new: Novo modo de autenticacao
238 238 label_auth_source_plural: Modos de autenticacao
239 239 label_subproject_plural: Sub-projetos
240 240 label_min_max_length: Tamanho min-max
241 241 label_list: Lista
242 242 label_date: Data
243 243 label_integer: Inteiro
244 244 label_boolean: Boleano
245 245 label_string: Texto
246 246 label_text: Texto longo
247 247 label_attribute: Atributo
248 248 label_attribute_plural: Atributos
249 249 label_download: %d Download
250 250 label_download_plural: %d Downloads
251 251 label_no_data: Sem dados para mostrar
252 252 label_change_status: Mudar status
253 253 label_history: Historico
254 254 label_attachment: Arquivo
255 255 label_attachment_new: Novo arquivo
256 256 label_attachment_delete: Apagar arquivo
257 257 label_attachment_plural: Arquivos
258 258 label_report: Relatorio
259 259 label_report_plural: Relatorio
260 260 label_news: Noticias
261 261 label_news_new: Adicionar noticias
262 262 label_news_plural: Noticias
263 263 label_news_latest: Ultimas noticias
264 264 label_news_view_all: Ver todas as noticias
265 265 label_change_log: Change log
266 266 label_settings: Ajustes
267 267 label_overview: Visao geral
268 268 label_version: Versao
269 269 label_version_new: Nova versao
270 270 label_version_plural: Versoes
271 271 label_confirmation: Confirmacao
272 272 label_export_to: Exportar para
273 273 label_read: Ler...
274 274 label_public_projects: Projetos publicos
275 275 label_open_issues: Aberto
276 276 label_open_issues_plural: Abertos
277 277 label_closed_issues: Fechado
278 278 label_closed_issues_plural: Fechados
279 279 label_total: Total
280 280 label_permissions: Permissoes
281 281 label_current_status: Status atual
282 282 label_new_statuses_allowed: Novo status permitido
283 283 label_all: todos
284 284 label_none: nenhum
285 285 label_next: Proximo
286 286 label_previous: Anterior
287 287 label_used_by: Usado por
288 288 label_details: Detalhes...
289 289 label_add_note: Adicionar nota
290 290 label_per_page: Por pagina
291 291 label_calendar: Calendario
292 292 label_months_from: Meses de
293 293 label_gantt: Gantt
294 294 label_internal: Interno
295 295 label_last_changes: utlimas %d mudancas
296 296 label_change_view_all: Mostrar todas as mudancas
297 297 label_personalize_page: Personalizar esta pagina
298 298 label_comment: Comentario
299 299 label_comment_plural: Comentarios
300 300 label_comment_add: Adicionar comentario
301 301 label_comment_added: Comentario adicionado
302 302 label_comment_delete: Apagar comentario
303 303 label_query: Consulta personalizada
304 304 label_query_plural: Consultas personalizadas
305 305 label_query_new: Nova consulta
306 306 label_filter_add: Adicionar filtro
307 307 label_filter_plural: Filtros
308 308 label_equals: e
309 309 label_not_equals: nao e
310 310 label_in_less_than: e maior que
311 311 label_in_more_than: e menor que
312 312 label_in: em
313 313 label_today: hoje
314 314 label_less_than_ago: faz menos de
315 315 label_more_than_ago: faz mais de
316 316 label_ago: dias atras
317 317 label_contains: contem
318 318 label_not_contains: nao contem
319 319 label_day_plural: dias
320 320 label_repository: SVN Repository
321 321 label_browse: Browse
322 322 label_modification: %d change
323 323 label_modification_plural: %d changes
324 324 label_revision: Revision
325 325 label_revision_plural: Revisions
326 326 label_added: added
327 327 label_modified: modified
328 328 label_deleted: deleted
329 329 label_latest_revision: Latest revision
330 330 label_latest_revision_plural: Latest revisions
331 331 label_view_revisions: View revisions
332 332 label_max_size: Maximum size
333 333 label_on: 'em'
334 334 label_sort_highest: Mover para o inicio
335 335 label_sort_higher: Mover para cima
336 336 label_sort_lower: Mover para baixo
337 337 label_sort_lowest: Mover para o fim
338 338 label_roadmap: Roadmap
339 339 label_roadmap_due_in: Due in
340 340 label_roadmap_no_issues: Sem tarefas para essa versao
341 341 label_search: Busca
342 342 label_result: %d resultado
343 343 label_result_plural: %d resultados
344 344 label_all_words: Todas as palavras
345 345 label_wiki: Wiki
346 346 label_wiki_edit: Wiki edit
347 347 label_wiki_edit_plural: Wiki edits
348 348 label_page_index: Index
349 349 label_current_version: Versao atual
350 350 label_preview: Previa
351 351 label_feed_plural: Feeds
352 352 label_changes_details: Detalhes de todas as mudancas
353 353 label_issue_tracking: Tarefas
354 354 label_spent_time: Tempo gasto
355 355 label_f_hour: %.2f hora
356 356 label_f_hour_plural: %.2f horas
357 357 label_time_tracking: Tempo trabalhado
358 358 label_change_plural: Mudancas
359 359 label_statistics: Estatisticas
360 360 label_commits_per_month: Commits por mes
361 361 label_commits_per_author: Commits por autor
362 362 label_view_diff: Ver diferencas
363 363 label_diff_inline: inline
364 364 label_diff_side_by_side: side by side
365 365 label_options: Opcoes
366 366 label_copy_workflow_from: Copiar workflow de
367 367 label_permissions_report: Relatorio de permissoes
368 368 label_watched_issues: Watched issues
369 369 label_related_issues: Related issues
370 370 label_applied_status: Applied status
371 371 label_loading: Loading...
372 372 label_relation_new: New relation
373 373 label_relation_delete: Delete relation
374 374 label_relates_to: related tp
375 375 label_duplicates: duplicates
376 376 label_blocks: blocks
377 377 label_blocked_by: blocked by
378 378 label_precedes: precedes
379 379 label_follows: follows
380 380 label_end_to_start: start to end
381 381 label_end_to_end: end to end
382 382 label_start_to_start: start to start
383 383 label_start_to_end: start to end
384 384 label_stay_logged_in: Stay logged in
385 385 label_disabled: disabled
386 label_show_completed_versions: Show completed versions
386 387
387 388 button_login: Login
388 389 button_submit: Enviar
389 390 button_save: Salvar
390 391 button_check_all: Marcar todos
391 392 button_uncheck_all: Desmarcar todos
392 393 button_delete: Apagar
393 394 button_create: Criar
394 395 button_test: Testar
395 396 button_edit: Editar
396 397 button_add: Adicionar
397 398 button_change: Mudar
398 399 button_apply: Aplicar
399 400 button_clear: Limpar
400 401 button_lock: Bloquear
401 402 button_unlock: Desbloquear
402 403 button_download: Download
403 404 button_list: Listar
404 405 button_view: Ver
405 406 button_move: Mover
406 407 button_back: Voltar
407 408 button_cancel: Cancelar
408 409 button_activate: Ativar
409 410 button_sort: Ordenar
410 411 button_log_time: Tempo de trabalho
411 412 button_rollback: Voltar para esta versao
412 413 button_watch: Watch
413 414 button_unwatch: Unwatch
414 415
415 416 status_active: ativo
416 417 status_registered: registrado
417 418 status_locked: bloqueado
418 419
419 420 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
420 421 text_regexp_info: eg. ^[A-Z0-9]+$
421 422 text_min_max_length_info: 0 siginifica sem restricao
422 423 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
423 424 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
424 425 text_are_you_sure: Voce tem certeza ?
425 426 text_journal_changed: alterado de %s para %s
426 427 text_journal_set_to: setar para %s
427 428 text_journal_deleted: apagado
428 429 text_tip_task_begin_day: tarefa comeca neste dia
429 430 text_tip_task_end_day: tarefa termina neste dia
430 431 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
431 432 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
432 433 text_caracters_maximum: %d maximo de caracteres
433 434 text_length_between: Tamanho entre %d e %d caracteres.
434 435 text_tracker_no_workflow: Sem workflow definido para este tipo.
435 436 text_unallowed_characters: Unallowed characters
436 437 text_coma_separated: Multiple values allowed (coma separated).
437 438 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
438 439
439 440 default_role_manager: Analista de Negocio ou Gerente de Projeto
440 441 default_role_developper: Desenvolvedor
441 442 default_role_reporter: Analista de Suporte
442 443 default_tracker_bug: Bug
443 444 default_tracker_feature: Implementacao
444 445 default_tracker_support: Suporte
445 446 default_issue_status_new: Novo
446 447 default_issue_status_assigned: Atribuido
447 448 default_issue_status_resolved: Resolvido
448 449 default_issue_status_feedback: Feedback
449 450 default_issue_status_closed: Fechado
450 451 default_issue_status_rejected: Rejeitado
451 452 default_doc_category_user: Documentacao do usuario
452 453 default_doc_category_tech: Documentacao do tecnica
453 454 default_priority_low: Baixo
454 455 default_priority_normal: Normal
455 456 default_priority_high: Alto
456 457 default_priority_urgent: Urgente
457 458 default_priority_immediate: Imediato
458 459 default_activity_design: Design
459 460 default_activity_development: Desenvolvimento
460 461
461 462 enumeration_issue_priorities: Prioridade das tarefas
462 463 enumeration_doc_categories: Categorias de documento
463 464 enumeration_activities: Atividades (time tracking)
@@ -1,466 +1,467
1 1 # translated by andy wu
2 2 # email:andywu.zh@gmail.com
3 3
4 4 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
5 5
6 6 actionview_datehelper_select_day_prefix:
7 7 actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月
8 8 actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二
9 9 actionview_datehelper_select_month_prefix:
10 10 actionview_datehelper_select_year_prefix:
11 11 actionview_datehelper_time_in_words_day: 1 天
12 12 actionview_datehelper_time_in_words_day_plural: %d 天
13 13 actionview_datehelper_time_in_words_hour_about: 约1小时
14 14 actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时
15 15 actionview_datehelper_time_in_words_hour_about_single: 约1小时
16 16 actionview_datehelper_time_in_words_minute: 1分钟
17 17 actionview_datehelper_time_in_words_minute_half: 半分钟
18 18 actionview_datehelper_time_in_words_minute_less_than: 1分钟以内
19 19 actionview_datehelper_time_in_words_minute_plural: %d 分钟
20 20 actionview_datehelper_time_in_words_minute_single: 1分钟
21 21 actionview_datehelper_time_in_words_second_less_than: 1秒以内
22 22 actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内
23 23 actionview_instancetag_blank_option: 请选择
24 24
25 25 activerecord_error_inclusion: 未包含在列表中
26 26 activerecord_error_exclusion: 保留的
27 27 activerecord_error_invalid: 无效的
28 28 activerecord_error_confirmation: 和确认输入不匹配
29 29 activerecord_error_accepted: 必需被接受
30 30 activerecord_error_empty: 不能为空
31 31 activerecord_error_blank: 不能是空格
32 32 activerecord_error_too_long: 太长
33 33 activerecord_error_too_short: 太短
34 34 activerecord_error_wrong_length: 长度有问题
35 35 activerecord_error_taken: has already been taken
36 36 activerecord_error_not_a_number: 不是数字
37 37 activerecord_error_not_a_date: 不是有效的日期
38 38 activerecord_error_greater_than_start_date: 必需大于开始日期
39 39 activerecord_error_not_same_project: doesn't belong to the same project
40 40 activerecord_error_circular_dependency: This relation would create a circular dependency
41 41
42 42 general_fmt_age: %d yr
43 43 general_fmt_age_plural: %d yrs
44 44 general_fmt_date: %%m/%%d/%%Y
45 45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
46 46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
47 47 general_fmt_time: %%I:%%M %%p
48 48 general_text_No: '否'
49 49 general_text_Yes: '是'
50 50 general_text_no: '否'
51 51 general_text_yes: '是'
52 52 general_lang_zh: 'Chinese (简体中文)'
53 53 general_csv_separator: ','
54 54 general_csv_encoding: gb2312
55 55 general_pdf_encoding: Big5
56 56 general_day_names: 一,二,三,四,五,六,日
57 57
58 58 notice_account_updated: 帐户更新成功。
59 59 notice_account_invalid_creditentials: 用户名或密码不正确
60 60 notice_account_password_updated: 成功更新口令
61 61 notice_account_wrong_password: 错误的口令
62 62 notice_account_register_done: 帐户已创建成功
63 63 notice_account_unknown_email: 未知用户
64 64 notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。
65 65 notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导
66 66 notice_account_activated: 您的帐号已被激活。您现在可以登录了。
67 67 notice_successful_create: 创建成功
68 68 notice_successful_update: 更新成功
69 69 notice_successful_delete: 删除成功
70 70 notice_successful_connection: 连接成功
71 71 notice_file_not_found: 您访问的页面不存在或已被删除。
72 72 notice_locking_conflict: 数据已被另一个用户更新
73 73 notice_scm_error: 在版本库中不存在该条目或修订
74 74 notice_not_authorized: You are not authorized to access this page.
75 75
76 76 mail_subject_lost_password: 您的redMine口令
77 77 mail_subject_register: redMine帐户激活
78 78
79 79 gui_validation_error: 1 个错误
80 80 gui_validation_error_plural: %d 个错误
81 81
82 82 field_name: 名称
83 83 field_description: 描述
84 84 field_summary: 摘要
85 85 field_is_required: 必填
86 86 field_firstname: 名字
87 87 field_lastname:
88 88 field_mail: 邮件地址
89 89 field_filename: 文件
90 90 field_filesize: 大小
91 91 field_downloads: 下载次数
92 92 field_author: 作者
93 93 field_created_on: 创建于
94 94 field_updated_on: 更新于
95 95 field_field_format: 格式
96 96 field_is_for_all: 应用于所有项目
97 97 field_possible_values: 可能的值
98 98 field_regexp: 正则表达式
99 99 field_min_length: 最小长度
100 100 field_max_length: 最大长度
101 101 field_value:
102 102 field_category: 分类
103 103 field_title: 标题
104 104 field_project: 项目
105 105 field_issue: 任务
106 106 field_status: 状态
107 107 field_notes: 说明
108 108 field_is_closed: 已关闭的任务
109 109 field_is_default: 默认状态
110 110 field_html_color: 颜色
111 111 field_tracker: 跟踪
112 112 field_subject: 主题
113 113 field_due_date: 到期日
114 114 field_assigned_to: 指派
115 115 field_priority: 优先级
116 116 field_fixed_version: 修订版本
117 117 field_user: 用户
118 118 field_role: 角色
119 119 field_homepage: 主页
120 120 field_is_public: 公开
121 121 field_parent: 上级项目
122 122 field_is_in_chlog: 在更新日志中显示任务
123 123 field_is_in_roadmap: 在路线图中显示任务
124 124 field_login: 登录名
125 125 field_mail_notification: 邮件通知
126 126 field_admin: 管理员
127 127 field_last_login_on: 最后登录
128 128 field_language: 语言
129 129 field_effective_date: 日期
130 130 field_password: 口令
131 131 field_new_password: 新口令
132 132 field_password_confirmation: 确认
133 133 field_version: 版本
134 134 field_type: 类别
135 135 field_host: 主机
136 136 field_port: 端口
137 137 field_account: 帐号
138 138 field_base_dn: Base DN
139 139 field_attr_login: 登录名属性
140 140 field_attr_firstname: 名字属性
141 141 field_attr_lastname: 姓属性
142 142 field_attr_mail: 邮件属性
143 143 field_onthefly: On-the-fly user creation
144 144 field_start_date: 开始
145 145 field_done_ratio: %% 完成
146 146 field_auth_source: 认证模式
147 147 field_hide_mail: 隐藏我的邮件
148 148 field_comments: 注释
149 149 field_url: URL
150 150 field_start_page: 起始页
151 151 field_subproject: 子项目
152 152 field_hours: Hours
153 153 field_activity: 活动
154 154 field_spent_on: 日期
155 155 field_identifier: Identifier
156 156 field_is_filter: Used as a filter
157 157 field_issue_to_id: Related issue
158 158 field_delay: Delay
159 159
160 160 setting_app_title: 应用程序标题
161 161 setting_app_subtitle: 应用程序子标题
162 162 setting_welcome_text: 欢迎文字
163 163 setting_default_language: 默认语言
164 164 setting_login_required: 要求认证
165 165 setting_self_registration: 允许自注册
166 166 setting_attachment_max_size: 附件最大尺寸
167 167 setting_issues_export_limit: Issues export limit
168 168 setting_mail_from: Emission mail address
169 169 setting_host_name: 主机名称
170 170 setting_text_formatting: 文本格式
171 171 setting_wiki_compression: Wiki history compression
172 172 setting_feeds_limit: Feed content limit
173 173 setting_autofetch_changesets: Autofetch SVN commits
174 174 setting_sys_api_enabled: Enable WS for repository management
175 175 setting_commit_ref_keywords: Referencing keywords
176 176 setting_commit_fix_keywords: Fixing keywords
177 177 setting_autologin: Autologin
178 178
179 179 label_user: 用户
180 180 label_user_plural: 用户列表
181 181 label_user_new: 新建用户
182 182 label_project: 项目
183 183 label_project_new: 新建项目
184 184 label_project_plural: 项目列表
185 185 label_project_latest: 最近的项目列表
186 186 label_issue: 任务
187 187 label_issue_new: 新建任务
188 188 label_issue_plural: 任务列表
189 189 label_issue_view_all: 查看所有任务
190 190 label_document: 文档
191 191 label_document_new: 新建文档
192 192 label_document_plural: 文档列表
193 193 label_role: 角色
194 194 label_role_plural: 角色列表
195 195 label_role_new: 新建角色
196 196 label_role_and_permissions: 角色和权限
197 197 label_member: 成员
198 198 label_member_new: 新建成员
199 199 label_member_plural: 成员列表
200 200 label_tracker: 跟踪标签
201 201 label_tracker_plural: 跟踪标签列表
202 202 label_tracker_new: 新建跟踪标签
203 203 label_workflow: 工作流
204 204 label_issue_status: 任务状态列表
205 205 label_issue_status_plural: 任务状态列表
206 206 label_issue_status_new: 新建任务状态列表
207 207 label_issue_category: 任务类别
208 208 label_issue_category_plural: 任务类别列表
209 209 label_issue_category_new: 新建任务类别
210 210 label_custom_field: 自定义字段
211 211 label_custom_field_plural: 自定义字段列表
212 212 label_custom_field_new: 新建自定义字段
213 213 label_enumerations: 枚举列表
214 214 label_enumeration_new: 新建枚举值
215 215 label_information: 信息
216 216 label_information_plural: 信息
217 217 label_please_login: 请登录
218 218 label_register: 注册
219 219 label_password_lost: 忘记口令
220 220 label_home: 主页
221 221 label_my_page: 我的工作台
222 222 label_my_account: 我的帐号
223 223 label_my_projects: 我的项目列表
224 224 label_administration: 管理
225 225 label_login: 登录
226 226 label_logout: 退出
227 227 label_help: 帮助
228 228 label_reported_issues: 已报告的问题
229 229 label_assigned_to_me_issues: 分配给我的任务
230 230 label_last_login: 最后登录
231 231 label_last_updates: 最后更新
232 232 label_last_updates_plural: %d 最后更新
233 233 label_registered_on: 注册于
234 234 label_activity: 活动
235 235 label_new: 新建
236 236 label_logged_as: 登录为
237 237 label_environment: 环境
238 238 label_authentication: 认证
239 239 label_auth_source: 认证模式
240 240 label_auth_source_new: 新建认证模式
241 241 label_auth_source_plural: 认证模式列表
242 242 label_subproject_plural: 子项目列表
243 243 label_min_max_length: 最小 - 最大 长度
244 244 label_list: list
245 245 label_date: Date
246 246 label_integer: Integer
247 247 label_boolean: Boolean
248 248 label_string: Text
249 249 label_text: Long text
250 250 label_attribute: 属性
251 251 label_attribute_plural: 属性
252 252 label_download: %d 个下载次数
253 253 label_download_plural: %d 个下载次数
254 254 label_no_data: 没有数据用于显示
255 255 label_change_status: 改变状态
256 256 label_history: 历史记录
257 257 label_attachment: 文件
258 258 label_attachment_new: 新建文件
259 259 label_attachment_delete: 删除文件
260 260 label_attachment_plural: 文件列表
261 261 label_report: 报表
262 262 label_report_plural: 报表列表
263 263 label_news: 新闻
264 264 label_news_new: 增加新闻
265 265 label_news_plural: 新闻列表
266 266 label_news_latest: 最近的新闻
267 267 label_news_view_all: 查看所有新闻
268 268 label_change_log: 更新日志
269 269 label_settings: 配置
270 270 label_overview: 概述
271 271 label_version: 版本
272 272 label_version_new: 新建版本
273 273 label_version_plural: 版本列表
274 274 label_confirmation: 确认
275 275 label_export_to: 导出
276 276 label_read: 读取...
277 277 label_public_projects: 公开的项目列表
278 278 label_open_issues: 打开
279 279 label_open_issues_plural: 打开
280 280 label_closed_issues: 已关闭
281 281 label_closed_issues_plural: 已关闭
282 282 label_total: 合计
283 283 label_permissions: 权限列表
284 284 label_current_status: 当前状态
285 285 label_new_statuses_allowed: New statuses allowed
286 286 label_all: 全部
287 287 label_none:
288 288 label_next: 下一个
289 289 label_previous: 上一个
290 290 label_used_by: 使用中
291 291 label_details: 详情...
292 292 label_add_note: 添加说明
293 293 label_per_page: 每面
294 294 label_calendar: 日历
295 295 label_months_from: months from
296 296 label_gantt: 甘特图(Gantt)
297 297 label_internal: 内部
298 298 label_last_changes: 最近的 %d 次更改
299 299 label_change_view_all: 查看所有更改
300 300 label_personalize_page: 个性化定制本页
301 301 label_comment: 注释
302 302 label_comment_plural: 注释列表
303 303 label_comment_add: 添加注释
304 304 label_comment_added: 已加入注释
305 305 label_comment_delete: 删除注释
306 306 label_query: 自定义查询
307 307 label_query_plural: 自定义查询列表
308 308 label_query_new: 新建查询
309 309 label_filter_add: 增加过滤器
310 310 label_filter_plural: 过滤器列表
311 311 label_equals: 等于
312 312 label_not_equals: 不等于
313 313 label_in_less_than: 剩余天数小于
314 314 label_in_more_than: 剩余天数大于
315 315 label_in: 剩余天数
316 316 label_today: 今天
317 317 label_less_than_ago: 之前天数少于
318 318 label_more_than_ago: 之前天数大于
319 319 label_ago: 之前天数
320 320 label_contains: 包含
321 321 label_not_contains: 不包含
322 322 label_day_plural: 天数
323 323 label_repository: SVN 版本库
324 324 label_browse: 浏览
325 325 label_modification: %d 个更新
326 326 label_modification_plural: %d 个更新
327 327 label_revision: 修订
328 328 label_revision_plural: 修订
329 329 label_added: 已增加
330 330 label_modified: 已修改
331 331 label_deleted: 已删除
332 332 label_latest_revision: 最近的版本
333 333 label_latest_revision_plural: 最近的版本列表
334 334 label_view_revisions: 查看修订列表
335 335 label_max_size: 最大尺寸
336 336 label_on: 'on'
337 337 label_sort_highest: 置顶
338 338 label_sort_higher: 上移
339 339 label_sort_lower: 下移
340 340 label_sort_lowest: 置底
341 341 label_roadmap: 路线图
342 342 label_roadmap_due_in: Due in
343 343 label_roadmap_no_issues: 该版本没有任务
344 344 label_search: 查找
345 345 label_result: %d 个结果
346 346 label_result_plural: %d 个结果
347 347 label_all_words: 所有单词
348 348 label_wiki: Wiki
349 349 label_wiki_edit: Wiki edit
350 350 label_wiki_edit_plural: Wiki edits
351 351 label_page_index: 索引
352 352 label_current_version: 当前版本
353 353 label_preview: 预览
354 354 label_feed_plural: Feeds
355 355 label_changes_details: 所有更改的详情
356 356 label_issue_tracking: 任务跟踪
357 357 label_spent_time: 耗时
358 358 label_f_hour: %.2f 小时
359 359 label_f_hour_plural: %.2f 小时
360 360 label_time_tracking: 时间跟踪
361 361 label_change_plural: 更改列表
362 362 label_statistics: 统计
363 363 label_commits_per_month: Commits per month
364 364 label_commits_per_author: Commits per author
365 365 label_view_diff: View differences
366 366 label_diff_inline: inline
367 367 label_diff_side_by_side: side by side
368 368 label_options: Options
369 369 label_copy_workflow_from: Copy workflow from
370 370 label_permissions_report: Permissions report
371 371 label_watched_issues: Watched issues
372 372 label_related_issues: Related issues
373 373 label_applied_status: Applied status
374 374 label_loading: Loading...
375 375 label_relation_new: New relation
376 376 label_relation_delete: Delete relation
377 377 label_relates_to: related tp
378 378 label_duplicates: duplicates
379 379 label_blocks: blocks
380 380 label_blocked_by: blocked by
381 381 label_precedes: precedes
382 382 label_follows: follows
383 383 label_end_to_start: start to end
384 384 label_end_to_end: end to end
385 385 label_start_to_start: start to start
386 386 label_start_to_end: start to end
387 387 label_stay_logged_in: Stay logged in
388 388 label_disabled: disabled
389 label_show_completed_versions: Show completed versions
389 390
390 391 button_login: 登录
391 392 button_submit: 提交
392 393 button_save: 保存
393 394 button_check_all: 全选
394 395 button_uncheck_all: 清除
395 396 button_delete: 删除
396 397 button_create: 创建
397 398 button_test: 测试
398 399 button_edit: 编辑
399 400 button_add: 新增
400 401 button_change: 修改
401 402 button_apply: 应用
402 403 button_clear: 清除
403 404 button_lock: 锁定
404 405 button_unlock: 解锁
405 406 button_download: 下载
406 407 button_list: 列表
407 408 button_view: 查看
408 409 button_move: 移动
409 410 button_back: 返回
410 411 button_cancel: 取消
411 412 button_activate: 激活
412 413 button_sort: 排序
413 414 button_log_time: 登记工时
414 415 button_rollback: Rollback to this version
415 416 button_watch: Watch
416 417 button_unwatch: Unwatch
417 418
418 419 status_active: 激活
419 420 status_registered: 已注册
420 421 status_locked: 已锁定
421 422
422 423 text_select_mail_notifications: 选择需要发送邮件通知的动作。
423 424 text_regexp_info: eg. ^[A-Z0-9]+$
424 425 text_min_max_length_info: 0 表示没有限制
425 426 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
426 427 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
427 428 text_are_you_sure: 您确定?
428 429 text_journal_changed: 从 %s 更改为 %s
429 430 text_journal_set_to: 设置为 %s
430 431 text_journal_deleted: 已删除
431 432 text_tip_task_begin_day: 开始于此
432 433 text_tip_task_end_day: 在此结束
433 434 text_tip_task_begin_end_day: 开始并结束于此
434 435 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
435 436 text_caracters_maximum: %d characters maximum.
436 437 text_length_between: Length between %d and %d characters.
437 438 text_tracker_no_workflow: No workflow defined for this tracker
438 439 text_unallowed_characters: Unallowed characters
439 440 text_coma_separated: Multiple values allowed (coma separated).
440 441 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
441 442
442 443 default_role_manager: 管理员
443 444 default_role_developper: 开发人员
444 445 default_role_reporter: 报告人员
445 446 default_tracker_bug: 问题
446 447 default_tracker_feature: 功能
447 448 default_tracker_support: 支持
448 449 default_issue_status_new: 新建
449 450 default_issue_status_assigned: 已分配
450 451 default_issue_status_resolved: 已解决
451 452 default_issue_status_feedback: 回复
452 453 default_issue_status_closed: 已关闭
453 454 default_issue_status_rejected: 已打回
454 455 default_doc_category_user: 用户文档
455 456 default_doc_category_tech: 技术文档
456 457 default_priority_low:
457 458 default_priority_normal: 普通
458 459 default_priority_high:
459 460 default_priority_urgent: 紧急
460 461 default_priority_immediate: 立刻
461 462 default_activity_design: 设计
462 463 default_activity_development: 开发
463 464
464 465 enumeration_issue_priorities: 任务优先级
465 466 enumeration_doc_categories: 文档类别
466 467 enumeration_activities: Activities (time tracking)
1 NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
General Comments 0
You need to be logged in to leave comments. Login now