##// END OF EJS Templates
Added the ability to unassign issues with bulk edit....
Jean-Philippe Lang -
r837:3c42abe07e12
parent child
Show More
@@ -1,676 +1,676
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, :except => [ :index, :list, :add ]
23 23 before_filter :authorize, :except => [ :index, :list, :add, :archive, :unarchive, :destroy ]
24 24 before_filter :require_admin, :only => [ :add, :archive, :unarchive, :destroy ]
25 25 accept_key_auth :activity, :calendar
26 26
27 27 cache_sweeper :project_sweeper, :only => [ :add, :edit, :archive, :unarchive, :destroy ]
28 28 cache_sweeper :issue_sweeper, :only => [ :add_issue ]
29 29 cache_sweeper :version_sweeper, :only => [ :add_version ]
30 30
31 31 helper :sort
32 32 include SortHelper
33 33 helper :custom_fields
34 34 include CustomFieldsHelper
35 35 helper :ifpdf
36 36 include IfpdfHelper
37 37 helper :issues
38 38 helper IssuesHelper
39 39 helper :queries
40 40 include QueriesHelper
41 41 helper :repositories
42 42 include RepositoriesHelper
43 43 include ProjectsHelper
44 44
45 45 def index
46 46 list
47 47 render :action => 'list' unless request.xhr?
48 48 end
49 49
50 50 # Lists visible projects
51 51 def list
52 52 projects = Project.find :all,
53 53 :conditions => Project.visible_by(logged_in_user),
54 54 :include => :parent
55 55 @project_tree = projects.group_by {|p| p.parent || p}
56 56 @project_tree.each_key {|p| @project_tree[p] -= [p]}
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 AND status = #{Project::STATUS_ACTIVE}")
63 63 @project = Project.new(params[:project])
64 64 @project.enabled_module_names = Redmine::AccessControl.available_project_modules
65 65 if request.get?
66 66 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project) }
67 67 else
68 68 @project.custom_fields = CustomField.find(params[:custom_field_ids]) if params[:custom_field_ids]
69 69 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => (params[:custom_fields] ? params["custom_fields"][x.id.to_s] : nil)) }
70 70 @project.custom_values = @custom_values
71 71 if @project.save
72 72 @project.enabled_module_names = params[:enabled_modules]
73 73 flash[:notice] = l(:notice_successful_create)
74 74 redirect_to :controller => 'admin', :action => 'projects'
75 75 end
76 76 end
77 77 end
78 78
79 79 # Show @project
80 80 def show
81 81 @custom_values = @project.custom_values.find(:all, :include => :custom_field)
82 82 @members_by_role = @project.members.find(:all, :include => [:user, :role], :order => 'position').group_by {|m| m.role}
83 83 @subprojects = @project.active_children
84 84 @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC")
85 85 @trackers = Tracker.find(:all, :order => 'position')
86 86 @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])
87 87 @total_issues_by_tracker = Issue.count(:group => :tracker, :conditions => ["project_id=?", @project.id])
88 88 @total_hours = @project.time_entries.sum(:hours)
89 89 @key = User.current.rss_key
90 90 end
91 91
92 92 def settings
93 93 @root_projects = Project::find(:all, :conditions => ["parent_id IS NULL AND status = #{Project::STATUS_ACTIVE} AND id <> ?", @project.id])
94 94 @custom_fields = IssueCustomField.find(:all)
95 95 @issue_category ||= IssueCategory.new
96 96 @member ||= @project.members.new
97 97 @custom_values ||= ProjectCustomField.find(:all).collect { |x| @project.custom_values.find_by_custom_field_id(x.id) || CustomValue.new(:custom_field => x) }
98 98 @repository ||= @project.repository
99 99 @wiki ||= @project.wiki
100 100 end
101 101
102 102 # Edit @project
103 103 def edit
104 104 if request.post?
105 105 @project.custom_fields = IssueCustomField.find(params[:custom_field_ids]) if params[:custom_field_ids]
106 106 if params[:custom_fields]
107 107 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) }
108 108 @project.custom_values = @custom_values
109 109 end
110 110 @project.attributes = params[:project]
111 111 if @project.save
112 112 flash[:notice] = l(:notice_successful_update)
113 113 redirect_to :action => 'settings', :id => @project
114 114 else
115 115 settings
116 116 render :action => 'settings'
117 117 end
118 118 end
119 119 end
120 120
121 121 def modules
122 122 @project.enabled_module_names = params[:enabled_modules]
123 123 redirect_to :action => 'settings', :id => @project, :tab => 'modules'
124 124 end
125 125
126 126 def archive
127 127 @project.archive if request.post? && @project.active?
128 128 redirect_to :controller => 'admin', :action => 'projects'
129 129 end
130 130
131 131 def unarchive
132 132 @project.unarchive if request.post? && !@project.active?
133 133 redirect_to :controller => 'admin', :action => 'projects'
134 134 end
135 135
136 136 # Delete @project
137 137 def destroy
138 138 @project_to_destroy = @project
139 139 if request.post? and params[:confirm]
140 140 @project_to_destroy.destroy
141 141 redirect_to :controller => 'admin', :action => 'projects'
142 142 end
143 143 # hide project in layout
144 144 @project = nil
145 145 end
146 146
147 147 # Add a new issue category to @project
148 148 def add_issue_category
149 149 @category = @project.issue_categories.build(params[:category])
150 150 if request.post? and @category.save
151 151 respond_to do |format|
152 152 format.html do
153 153 flash[:notice] = l(:notice_successful_create)
154 154 redirect_to :action => 'settings', :tab => 'categories', :id => @project
155 155 end
156 156 format.js do
157 157 # IE doesn't support the replace_html rjs method for select box options
158 158 render(:update) {|page| page.replace "issue_category_id",
159 159 content_tag('select', '<option></option>' + options_from_collection_for_select(@project.issue_categories, 'id', 'name', @category.id), :id => 'issue_category_id', :name => 'issue[category_id]')
160 160 }
161 161 end
162 162 end
163 163 end
164 164 end
165 165
166 166 # Add a new version to @project
167 167 def add_version
168 168 @version = @project.versions.build(params[:version])
169 169 if request.post? and @version.save
170 170 flash[:notice] = l(:notice_successful_create)
171 171 redirect_to :action => 'settings', :tab => 'versions', :id => @project
172 172 end
173 173 end
174 174
175 175 # Add a new document to @project
176 176 def add_document
177 177 @categories = Enumeration::get_values('DCAT')
178 178 @document = @project.documents.build(params[:document])
179 179 if request.post? and @document.save
180 180 # Save the attachments
181 181 params[:attachments].each { |a|
182 182 Attachment.create(:container => @document, :file => a, :author => logged_in_user) unless a.size == 0
183 183 } if params[:attachments] and params[:attachments].is_a? Array
184 184 flash[:notice] = l(:notice_successful_create)
185 185 Mailer.deliver_document_added(@document) if Setting.notified_events.include?('document_added')
186 186 redirect_to :action => 'list_documents', :id => @project
187 187 end
188 188 end
189 189
190 190 # Show documents list of @project
191 191 def list_documents
192 192 @documents = @project.documents.find :all, :include => :category
193 193 end
194 194
195 195 # Add a new issue to @project
196 196 def add_issue
197 197 @tracker = Tracker.find(params[:tracker_id])
198 198 @priorities = Enumeration::get_values('IPRI')
199 199
200 200 default_status = IssueStatus.default
201 201 unless default_status
202 202 flash.now[:error] = 'No default issue status defined. Please check your configuration.'
203 203 render :nothing => true, :layout => true
204 204 return
205 205 end
206 206 @issue = Issue.new(:project => @project, :tracker => @tracker)
207 207 @issue.status = default_status
208 208 @allowed_statuses = ([default_status] + default_status.find_new_statuses_allowed_to(logged_in_user.role_for_project(@project), @issue.tracker))if logged_in_user
209 209 if request.get?
210 210 @issue.start_date = Date.today
211 211 @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue) }
212 212 else
213 213 @issue.attributes = params[:issue]
214 214
215 215 requested_status = IssueStatus.find_by_id(params[:issue][:status_id])
216 216 @issue.status = (@allowed_statuses.include? requested_status) ? requested_status : default_status
217 217
218 218 @issue.author_id = self.logged_in_user.id if self.logged_in_user
219 219 # Multiple file upload
220 220 @attachments = []
221 221 params[:attachments].each { |a|
222 222 @attachments << Attachment.new(:container => @issue, :file => a, :author => logged_in_user) unless a.size == 0
223 223 } if params[:attachments] and params[:attachments].is_a? Array
224 224 @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]) }
225 225 @issue.custom_values = @custom_values
226 226 if @issue.save
227 227 @attachments.each(&:save)
228 228 flash[:notice] = l(:notice_successful_create)
229 229 Mailer.deliver_issue_add(@issue) if Setting.notified_events.include?('issue_added')
230 230 redirect_to :action => 'list_issues', :id => @project
231 231 end
232 232 end
233 233 end
234 234
235 235 # Show filtered/sorted issues list of @project
236 236 def list_issues
237 237 sort_init "#{Issue.table_name}.id", "desc"
238 238 sort_update
239 239
240 240 retrieve_query
241 241
242 242 @results_per_page_options = [ 15, 25, 50, 100 ]
243 243 if params[:per_page] and @results_per_page_options.include? params[:per_page].to_i
244 244 @results_per_page = params[:per_page].to_i
245 245 session[:results_per_page] = @results_per_page
246 246 else
247 247 @results_per_page = session[:results_per_page] || 25
248 248 end
249 249
250 250 if @query.valid?
251 251 @issue_count = Issue.count(:include => [:status, :project], :conditions => @query.statement)
252 252 @issue_pages = Paginator.new self, @issue_count, @results_per_page, params['page']
253 253 @issues = Issue.find :all, :order => sort_clause,
254 254 :include => [ :assigned_to, :status, :tracker, :project, :priority, :category ],
255 255 :conditions => @query.statement,
256 256 :limit => @issue_pages.items_per_page,
257 257 :offset => @issue_pages.current.offset
258 258 end
259 259
260 260 render :layout => false if request.xhr?
261 261 end
262 262
263 263 # Export filtered/sorted issues list to CSV
264 264 def export_issues_csv
265 265 sort_init "#{Issue.table_name}.id", "desc"
266 266 sort_update
267 267
268 268 retrieve_query
269 269 render :action => 'list_issues' and return unless @query.valid?
270 270
271 271 @issues = Issue.find :all, :order => sort_clause,
272 272 :include => [ :assigned_to, :author, :status, :tracker, :priority, :project, {:custom_values => :custom_field} ],
273 273 :conditions => @query.statement,
274 274 :limit => Setting.issues_export_limit.to_i
275 275
276 276 ic = Iconv.new(l(:general_csv_encoding), 'UTF-8')
277 277 export = StringIO.new
278 278 CSV::Writer.generate(export, l(:general_csv_separator)) do |csv|
279 279 # csv header fields
280 280 headers = [ "#", l(:field_status),
281 281 l(:field_project),
282 282 l(:field_tracker),
283 283 l(:field_priority),
284 284 l(:field_subject),
285 285 l(:field_assigned_to),
286 286 l(:field_author),
287 287 l(:field_start_date),
288 288 l(:field_due_date),
289 289 l(:field_done_ratio),
290 290 l(:field_created_on),
291 291 l(:field_updated_on)
292 292 ]
293 293 for custom_field in @project.all_custom_fields
294 294 headers << custom_field.name
295 295 end
296 296 csv << headers.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end }
297 297 # csv lines
298 298 @issues.each do |issue|
299 299 fields = [issue.id, issue.status.name,
300 300 issue.project.name,
301 301 issue.tracker.name,
302 302 issue.priority.name,
303 303 issue.subject,
304 304 (issue.assigned_to ? issue.assigned_to.name : ""),
305 305 issue.author.name,
306 306 issue.start_date ? l_date(issue.start_date) : nil,
307 307 issue.due_date ? l_date(issue.due_date) : nil,
308 308 issue.done_ratio,
309 309 l_datetime(issue.created_on),
310 310 l_datetime(issue.updated_on)
311 311 ]
312 312 for custom_field in @project.all_custom_fields
313 313 fields << (show_value issue.custom_value_for(custom_field))
314 314 end
315 315 csv << fields.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end }
316 316 end
317 317 end
318 318 export.rewind
319 319 send_data(export.read, :type => 'text/csv; header=present', :filename => 'export.csv')
320 320 end
321 321
322 322 # Export filtered/sorted issues to PDF
323 323 def export_issues_pdf
324 324 sort_init "#{Issue.table_name}.id", "desc"
325 325 sort_update
326 326
327 327 retrieve_query
328 328 render :action => 'list_issues' and return unless @query.valid?
329 329
330 330 @issues = Issue.find :all, :order => sort_clause,
331 331 :include => [ :author, :status, :tracker, :priority, :project ],
332 332 :conditions => @query.statement,
333 333 :limit => Setting.issues_export_limit.to_i
334 334
335 335 @options_for_rfpdf ||= {}
336 336 @options_for_rfpdf[:file_name] = "export.pdf"
337 337 render :layout => false
338 338 end
339 339
340 340 # Bulk edit issues
341 341 def bulk_edit_issues
342 342 if request.post?
343 343 status = IssueStatus.find_by_id(params[:status_id])
344 344 priority = Enumeration.find_by_id(params[:priority_id])
345 345 assigned_to = User.find_by_id(params[:assigned_to_id])
346 346 category = @project.issue_categories.find_by_id(params[:category_id])
347 347 fixed_version = @project.versions.find_by_id(params[:fixed_version_id])
348 348 issues = @project.issues.find_all_by_id(params[:issue_ids])
349 349 unsaved_issue_ids = []
350 350 issues.each do |issue|
351 351 journal = issue.init_journal(User.current, params[:notes])
352 352 issue.priority = priority if priority
353 issue.assigned_to = assigned_to if assigned_to
353 issue.assigned_to = assigned_to if assigned_to || params[:assigned_to_id] == 'none'
354 354 issue.category = category if category
355 355 issue.fixed_version = fixed_version if fixed_version
356 356 issue.start_date = params[:start_date] unless params[:start_date].blank?
357 357 issue.due_date = params[:due_date] unless params[:due_date].blank?
358 358 issue.done_ratio = params[:done_ratio] unless params[:done_ratio].blank?
359 359 # Don't save any change to the issue if the user is not authorized to apply the requested status
360 360 if (status.nil? || (issue.status.new_status_allowed_to?(status, current_role, issue.tracker) && issue.status = status)) && issue.save
361 361 # Send notification for each issue (if changed)
362 362 Mailer.deliver_issue_edit(journal) if journal.details.any? && Setting.notified_events.include?('issue_updated')
363 363 else
364 364 # Keep unsaved issue ids to display them in flash error
365 365 unsaved_issue_ids << issue.id
366 366 end
367 367 end
368 368 if unsaved_issue_ids.empty?
369 369 flash[:notice] = l(:notice_successful_update) unless issues.empty?
370 370 else
371 371 flash[:error] = l(:notice_failed_to_save_issues, unsaved_issue_ids.size, issues.size, '#' + unsaved_issue_ids.join(', #'))
372 372 end
373 373 redirect_to :action => 'list_issues', :id => @project
374 374 return
375 375 end
376 376 if current_role && User.current.allowed_to?(:change_issue_status, @project)
377 377 # Find potential statuses the user could be allowed to switch issues to
378 378 @available_statuses = Workflow.find(:all, :include => :new_status,
379 379 :conditions => {:role_id => current_role.id}).collect(&:new_status).compact.uniq
380 380 end
381 381 render :update do |page|
382 382 page.hide 'query_form'
383 383 page.replace_html 'bulk-edit', :partial => 'issues/bulk_edit_form'
384 384 end
385 385 end
386 386
387 387 def move_issues
388 388 @issues = @project.issues.find(params[:issue_ids]) if params[:issue_ids]
389 389 redirect_to :action => 'list_issues', :id => @project and return unless @issues
390 390 @projects = []
391 391 # find projects to which the user is allowed to move the issue
392 392 User.current.memberships.each {|m| @projects << m.project if m.role.allowed_to?(:controller => 'projects', :action => 'move_issues')}
393 393 # issue can be moved to any tracker
394 394 @trackers = Tracker.find(:all)
395 395 if request.post? and params[:new_project_id] and params[:new_tracker_id]
396 396 new_project = Project.find_by_id(params[:new_project_id])
397 397 new_tracker = Tracker.find_by_id(params[:new_tracker_id])
398 398 @issues.each do |i|
399 399 if new_project && i.project_id != new_project.id
400 400 # issue is moved to another project
401 401 i.category = nil
402 402 i.fixed_version = nil
403 403 # delete issue relations
404 404 i.relations_from.clear
405 405 i.relations_to.clear
406 406 i.project = new_project
407 407 end
408 408 if new_tracker
409 409 i.tracker = new_tracker
410 410 end
411 411 i.save
412 412 end
413 413 flash[:notice] = l(:notice_successful_update)
414 414 redirect_to :action => 'list_issues', :id => @project
415 415 end
416 416 end
417 417
418 418 # Add a news to @project
419 419 def add_news
420 420 @news = News.new(:project => @project)
421 421 if request.post?
422 422 @news.attributes = params[:news]
423 423 @news.author_id = self.logged_in_user.id if self.logged_in_user
424 424 if @news.save
425 425 flash[:notice] = l(:notice_successful_create)
426 426 Mailer.deliver_news_added(@news) if Setting.notified_events.include?('news_added')
427 427 redirect_to :action => 'list_news', :id => @project
428 428 end
429 429 end
430 430 end
431 431
432 432 # Show news list of @project
433 433 def list_news
434 434 @news_pages, @newss = paginate :news, :per_page => 10, :conditions => ["project_id=?", @project.id], :include => :author, :order => "#{News.table_name}.created_on DESC"
435 435
436 436 respond_to do |format|
437 437 format.html { render :layout => false if request.xhr? }
438 438 format.atom { render_feed(@newss, :title => "#{@project.name}: #{l(:label_news_plural)}") }
439 439 end
440 440 end
441 441
442 442 def add_file
443 443 if request.post?
444 444 @version = @project.versions.find_by_id(params[:version_id])
445 445 # Save the attachments
446 446 @attachments = []
447 447 params[:attachments].each { |file|
448 448 next unless file.size > 0
449 449 a = Attachment.create(:container => @version, :file => file, :author => logged_in_user)
450 450 @attachments << a unless a.new_record?
451 451 } if params[:attachments] and params[:attachments].is_a? Array
452 452 Mailer.deliver_attachments_added(@attachments) if !@attachments.empty? && Setting.notified_events.include?('file_added')
453 453 redirect_to :controller => 'projects', :action => 'list_files', :id => @project
454 454 end
455 455 @versions = @project.versions.sort
456 456 end
457 457
458 458 def list_files
459 459 @versions = @project.versions.sort
460 460 end
461 461
462 462 # Show changelog for @project
463 463 def changelog
464 464 @trackers = Tracker.find(:all, :conditions => ["is_in_chlog=?", true], :order => 'position')
465 465 retrieve_selected_tracker_ids(@trackers)
466 466 @versions = @project.versions.sort
467 467 end
468 468
469 469 def roadmap
470 470 @trackers = Tracker.find(:all, :conditions => ["is_in_roadmap=?", true], :order => 'position')
471 471 retrieve_selected_tracker_ids(@trackers)
472 472 @versions = @project.versions.sort
473 473 @versions = @versions.select {|v| !v.completed? } unless params[:completed]
474 474 end
475 475
476 476 def activity
477 477 if params[:year] and params[:year].to_i > 1900
478 478 @year = params[:year].to_i
479 479 if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13
480 480 @month = params[:month].to_i
481 481 end
482 482 end
483 483 @year ||= Date.today.year
484 484 @month ||= Date.today.month
485 485
486 486 case params[:format]
487 487 when 'atom'
488 488 # 30 last days
489 489 @date_from = Date.today - 30
490 490 @date_to = Date.today + 1
491 491 else
492 492 # current month
493 493 @date_from = Date.civil(@year, @month, 1)
494 494 @date_to = @date_from >> 1
495 495 end
496 496
497 497 @event_types = %w(issues news files documents wiki_pages changesets)
498 498 @event_types.delete('wiki_pages') unless @project.wiki
499 499 @event_types.delete('changesets') unless @project.repository
500 500 # only show what the user is allowed to view
501 501 @event_types = @event_types.select {|o| User.current.allowed_to?("view_#{o}".to_sym, @project)}
502 502
503 503 @scope = @event_types.select {|t| params["show_#{t}"]}
504 504 # default events if none is specified in parameters
505 505 @scope = (@event_types - %w(wiki_pages))if @scope.empty?
506 506
507 507 @events = []
508 508
509 509 if @scope.include?('issues')
510 510 @events += @project.issues.find(:all, :include => [:author, :tracker], :conditions => ["#{Issue.table_name}.created_on>=? and #{Issue.table_name}.created_on<=?", @date_from, @date_to] )
511 511 end
512 512
513 513 if @scope.include?('news')
514 514 @events += @project.news.find(:all, :conditions => ["#{News.table_name}.created_on>=? and #{News.table_name}.created_on<=?", @date_from, @date_to], :include => :author )
515 515 end
516 516
517 517 if @scope.include?('files')
518 518 @events += 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 )
519 519 end
520 520
521 521 if @scope.include?('documents')
522 522 @events += @project.documents.find(:all, :conditions => ["#{Document.table_name}.created_on>=? and #{Document.table_name}.created_on<=?", @date_from, @date_to] )
523 523 @events += 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 )
524 524 end
525 525
526 526 if @scope.include?('wiki_pages')
527 527 select = "#{WikiContent.versioned_table_name}.updated_on, #{WikiContent.versioned_table_name}.comments, " +
528 528 "#{WikiContent.versioned_table_name}.#{WikiContent.version_column}, #{WikiPage.table_name}.title, " +
529 529 "#{WikiContent.versioned_table_name}.page_id, #{WikiContent.versioned_table_name}.author_id, " +
530 530 "#{WikiContent.versioned_table_name}.id"
531 531 joins = "LEFT JOIN #{WikiPage.table_name} ON #{WikiPage.table_name}.id = #{WikiContent.versioned_table_name}.page_id " +
532 532 "LEFT JOIN #{Wiki.table_name} ON #{Wiki.table_name}.id = #{WikiPage.table_name}.wiki_id "
533 533 conditions = ["#{Wiki.table_name}.project_id = ? AND #{WikiContent.versioned_table_name}.updated_on BETWEEN ? AND ?",
534 534 @project.id, @date_from, @date_to]
535 535
536 536 @events += WikiContent.versioned_class.find(:all, :select => select, :joins => joins, :conditions => conditions)
537 537 end
538 538
539 539 if @scope.include?('changesets')
540 540 @events += @project.repository.changesets.find(:all, :conditions => ["#{Changeset.table_name}.committed_on BETWEEN ? AND ?", @date_from, @date_to])
541 541 end
542 542
543 543 @events_by_day = @events.group_by(&:event_date)
544 544
545 545 respond_to do |format|
546 546 format.html { render :layout => false if request.xhr? }
547 547 format.atom { render_feed(@events, :title => "#{@project.name}: #{l(:label_activity)}") }
548 548 end
549 549 end
550 550
551 551 def calendar
552 552 @trackers = Tracker.find(:all, :order => 'position')
553 553 retrieve_selected_tracker_ids(@trackers)
554 554
555 555 if params[:year] and params[:year].to_i > 1900
556 556 @year = params[:year].to_i
557 557 if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13
558 558 @month = params[:month].to_i
559 559 end
560 560 end
561 561 @year ||= Date.today.year
562 562 @month ||= Date.today.month
563 563 @calendar = Redmine::Helpers::Calendar.new(Date.civil(@year, @month, 1), current_language, :month)
564 564
565 565 events = []
566 566 @project.issues_with_subprojects(params[:with_subprojects]) do
567 567 events += Issue.find(:all,
568 568 :include => [:tracker, :status, :assigned_to, :priority, :project],
569 569 :conditions => ["((start_date BETWEEN ? AND ?) OR (due_date BETWEEN ? AND ?)) AND #{Issue.table_name}.tracker_id IN (#{@selected_tracker_ids.join(',')})", @calendar.startdt, @calendar.enddt, @calendar.startdt, @calendar.enddt]
570 570 ) unless @selected_tracker_ids.empty?
571 571 end
572 572 events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @calendar.startdt, @calendar.enddt])
573 573 @calendar.events = events
574 574
575 575 render :layout => false if request.xhr?
576 576 end
577 577
578 578 def gantt
579 579 @trackers = Tracker.find(:all, :order => 'position')
580 580 retrieve_selected_tracker_ids(@trackers)
581 581
582 582 if params[:year] and params[:year].to_i >0
583 583 @year_from = params[:year].to_i
584 584 if params[:month] and params[:month].to_i >=1 and params[:month].to_i <= 12
585 585 @month_from = params[:month].to_i
586 586 else
587 587 @month_from = 1
588 588 end
589 589 else
590 590 @month_from ||= Date.today.month
591 591 @year_from ||= Date.today.year
592 592 end
593 593
594 594 zoom = (params[:zoom] || User.current.pref[:gantt_zoom]).to_i
595 595 @zoom = (zoom > 0 && zoom < 5) ? zoom : 2
596 596 months = (params[:months] || User.current.pref[:gantt_months]).to_i
597 597 @months = (months > 0 && months < 25) ? months : 6
598 598
599 599 # Save gantt paramters as user preference (zoom and months count)
600 600 if (User.current.logged? && (@zoom != User.current.pref[:gantt_zoom] || @months != User.current.pref[:gantt_months]))
601 601 User.current.pref[:gantt_zoom], User.current.pref[:gantt_months] = @zoom, @months
602 602 User.current.preference.save
603 603 end
604 604
605 605 @date_from = Date.civil(@year_from, @month_from, 1)
606 606 @date_to = (@date_from >> @months) - 1
607 607
608 608 @events = []
609 609 @project.issues_with_subprojects(params[:with_subprojects]) do
610 610 @events += Issue.find(:all,
611 611 :order => "start_date, due_date",
612 612 :include => [:tracker, :status, :assigned_to, :priority, :project],
613 613 :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]
614 614 ) unless @selected_tracker_ids.empty?
615 615 end
616 616 @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to])
617 617 @events.sort! {|x,y| x.start_date <=> y.start_date }
618 618
619 619 if params[:format]=='pdf'
620 620 @options_for_rfpdf ||= {}
621 621 @options_for_rfpdf[:file_name] = "#{@project.identifier}-gantt.pdf"
622 622 render :template => "projects/gantt.rfpdf", :layout => false
623 623 elsif params[:format]=='png' && respond_to?('gantt_image')
624 624 image = gantt_image(@events, @date_from, @months, @zoom)
625 625 image.format = 'PNG'
626 626 send_data(image.to_blob, :disposition => 'inline', :type => 'image/png', :filename => "#{@project.identifier}-gantt.png")
627 627 else
628 628 render :template => "projects/gantt.rhtml"
629 629 end
630 630 end
631 631
632 632 private
633 633 # Find project of id params[:id]
634 634 # if not found, redirect to project list
635 635 # Used as a before_filter
636 636 def find_project
637 637 @project = Project.find(params[:id])
638 638 rescue ActiveRecord::RecordNotFound
639 639 render_404
640 640 end
641 641
642 642 def retrieve_selected_tracker_ids(selectable_trackers)
643 643 if ids = params[:tracker_ids]
644 644 @selected_tracker_ids = (ids.is_a? Array) ? ids.collect { |id| id.to_i.to_s } : ids.split('/').collect { |id| id.to_i.to_s }
645 645 else
646 646 @selected_tracker_ids = selectable_trackers.collect {|t| t.id.to_s }
647 647 end
648 648 end
649 649
650 650 # Retrieve query from session or build a new query
651 651 def retrieve_query
652 652 if params[:query_id]
653 653 @query = @project.queries.find(params[:query_id])
654 654 @query.executed_by = logged_in_user
655 655 session[:query] = @query
656 656 else
657 657 if params[:set_filter] or !session[:query] or session[:query].project_id != @project.id
658 658 # Give it a name, required to be valid
659 659 @query = Query.new(:name => "_", :executed_by => logged_in_user)
660 660 @query.project = @project
661 661 if params[:fields] and params[:fields].is_a? Array
662 662 params[:fields].each do |field|
663 663 @query.add_filter(field, params[:operators][field], params[:values][field])
664 664 end
665 665 else
666 666 @query.available_filters.keys.each do |field|
667 667 @query.add_short_filter(field, params[field]) if params[field]
668 668 end
669 669 end
670 670 session[:query] = @query
671 671 else
672 672 @query = session[:query]
673 673 end
674 674 end
675 675 end
676 676 end
@@ -1,36 +1,38
1 1 <div id="bulk-edit-fields">
2 2 <fieldset class="box"><legend><%= l(:label_bulk_edit_selected_issues) %></legend>
3 3
4 4 <p>
5 5 <% if @available_statuses %>
6 6 <label><%= l(:field_status) %>:
7 7 <%= select_tag('status_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@available_statuses, :id, :name)) %></label>
8 8 <% end %>
9 9 <label><%= l(:field_priority) %>:
10 10 <%= select_tag('priority_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(Enumeration.get_values('IPRI'), :id, :name)) %></label>
11 11 <label><%= l(:field_category) %>:
12 12 <%= select_tag('category_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@project.issue_categories, :id, :name)) %></label>
13 13 </p>
14 14 <p>
15 15 <label><%= l(:field_assigned_to) %>:
16 <%= select_tag('assigned_to_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@project.assignable_users, :id, :name)) %></label>
16 <%= select_tag('assigned_to_id', content_tag('option', l(:label_no_change_option)) +
17 content_tag('option', l(:label_nobody), :value => 'none') +
18 options_from_collection_for_select(@project.assignable_users, :id, :name)) %></label>
17 19 <label><%= l(:field_fixed_version) %>:
18 20 <%= select_tag('fixed_version_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@project.versions, :id, :name)) %></label>
19 21 </p>
20 22
21 23 <p>
22 24 <label><%= l(:field_start_date) %>:
23 25 <%= text_field_tag 'start_date', '', :size => 10 %><%= calendar_for('start_date') %></label>
24 26 <label><%= l(:field_due_date) %>:
25 27 <%= text_field_tag 'due_date', '', :size => 10 %><%= calendar_for('due_date') %></label>
26 28 <label><%= l(:field_done_ratio) %>:
27 29 <%= select_tag 'done_ratio', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></label>
28 30 </p>
29 31
30 32 <label for="notes"><%= l(:field_notes) %></label><br />
31 33 <%= text_area_tag 'notes', '', :cols => 80, :rows => 5 %>
32 34
33 35 </fieldset>
34 36 <p><%= submit_tag l(:button_apply) %>
35 37 <%= link_to l(:button_cancel), {}, :onclick => 'Element.hide("bulk-edit-fields"); if ($("query_form")) {Element.show("query_form")}; return false;' %></p>
36 38 </div>
@@ -1,527 +1,528
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: не е от същия проект
37 37 activerecord_error_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_name: 'Bulgarian'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: cp1251
52 52 general_pdf_encoding: cp1251
53 53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
54 54 general_first_day_of_week: '1'
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: Изпратен ви е e-mail с инструкции за избор на нова парола.
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: Нямате право на достъп до тази страница.
73 73 notice_email_sent: Изпратен e-mail на %s
74 74 notice_email_error: Грешка при изпращане на e-mail (%s)
75 75 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
76 76
77 77 mail_subject_lost_password: Вашата парола
78 78 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
79 79 mail_subject_register: Активация на акаунт
80 80 mail_body_register: 'За да активирате акаунта си използвайте следния линк:'
81 81
82 82 gui_validation_error: 1 грешка
83 83 gui_validation_error_plural: %d грешки
84 84
85 85 field_name: Име
86 86 field_description: Описание
87 87 field_summary: Групиран изглед
88 88 field_is_required: Задължително
89 89 field_firstname: Име
90 90 field_lastname: Фамилия
91 91 field_mail: Email
92 92 field_filename: Файл
93 93 field_filesize: Големина
94 94 field_downloads: Downloads
95 95 field_author: Автор
96 96 field_created_on: Създадена
97 97 field_updated_on: Обновена
98 98 field_field_format: Формат
99 99 field_is_for_all: За всички проекти
100 100 field_possible_values: Възможни стойности
101 101 field_regexp: Регулярен израз
102 102 field_min_length: Мин. дължина
103 103 field_max_length: Макс. дължина
104 104 field_value: Стойност
105 105 field_category: Категория
106 106 field_title: Заглавие
107 107 field_project: Проект
108 108 field_issue: Задача
109 109 field_status: Статус
110 110 field_notes: Бележка
111 111 field_is_closed: Затворена задача
112 112 field_is_default: Статус по подразбиране
113 113 field_html_color: Цвят
114 114 field_tracker: Тракер
115 115 field_subject: Тема
116 116 field_due_date: Крайна дата
117 117 field_assigned_to: Възложена на
118 118 field_priority: Приоритет
119 119 field_fixed_version: Версия
120 120 field_user: Потребител
121 121 field_role: Роля
122 122 field_homepage: Начална страница
123 123 field_is_public: Публичен
124 124 field_parent: Подпроект на
125 125 field_is_in_chlog: Да се вижда ли в Изменения
126 126 field_is_in_roadmap: Да се вижда ли в Пътна карта
127 127 field_login: Потребител
128 128 field_mail_notification: Известия по пощата
129 129 field_admin: Администратор
130 130 field_last_login_on: Последно свързване
131 131 field_language: Език
132 132 field_effective_date: Дата
133 133 field_password: Парола
134 134 field_new_password: Нова парола
135 135 field_password_confirmation: Потвърждение
136 136 field_version: Версия
137 137 field_type: Тип
138 138 field_host: Хост
139 139 field_port: Порт
140 140 field_account: Акаунт
141 141 field_base_dn: Base DN
142 142 field_attr_login: Login attribute
143 143 field_attr_firstname: Firstname attribute
144 144 field_attr_lastname: Lastname attribute
145 145 field_attr_mail: Email attribute
146 146 field_onthefly: Динамично създаване на потребител
147 147 field_start_date: Начална дата
148 148 field_done_ratio: %% Прогрес
149 149 field_auth_source: Начин на оторизация
150 150 field_hide_mail: Скрий e-mail адреса ми
151 151 field_comments: Коментар
152 152 field_url: Адрес
153 153 field_start_page: Начална страница
154 154 field_subproject: Подпроект
155 155 field_hours: Часове
156 156 field_activity: Дейност
157 157 field_spent_on: Дата
158 158 field_identifier: Идентификатор
159 159 field_is_filter: Използва се за филтър
160 160 field_issue_to_id: Свързана задача
161 161 field_delay: Отместване
162 162 field_assignable: Възможно е възлагане на задачи за тази роля
163 163 field_redirect_existing_links: Пренасочване на съществуващи линкове
164 164 field_estimated_hours: Изчислено време
165 165
166 166 setting_app_title: Заглавие
167 167 setting_app_subtitle: Описание
168 168 setting_welcome_text: Допълнителен текст
169 169 setting_default_language: Език по подразбиране
170 170 setting_login_required: Изискване за вход в системата
171 171 setting_self_registration: Регистрация от потребители
172 172 setting_attachment_max_size: Максимално голям приложен файл
173 173 setting_issues_export_limit: Лимит за експорт на задачи
174 174 setting_mail_from: E-mail адрес за емисии
175 175 setting_host_name: Хост
176 176 setting_text_formatting: Форматиране на текста
177 177 setting_wiki_compression: Wiki компресиране на историята
178 178 setting_feeds_limit: Лимит на Feeds
179 179 setting_autofetch_changesets: Автоматично обработване на commits в склада
180 180 setting_sys_api_enabled: Разрешаване на WS за управление на склада
181 181 setting_commit_ref_keywords: Отбелязващи ключови думи
182 182 setting_commit_fix_keywords: Приключващи ключови думи
183 183 setting_autologin: Автоматичен вход
184 184 setting_date_format: Формат на датата
185 185 setting_cross_project_issue_relations: Релации на задачи между проекти
186 186
187 187 label_user: Потребител
188 188 label_user_plural: Потребители
189 189 label_user_new: Нов потребител
190 190 label_project: Проект
191 191 label_project_new: Нов проект
192 192 label_project_plural: Проекти
193 193 label_project_all: Всички проекти
194 194 label_project_latest: Последни проекти
195 195 label_issue: Задача
196 196 label_issue_new: Нова задача
197 197 label_issue_plural: Задачи
198 198 label_issue_view_all: Всички задачи
199 199 label_document: Документ
200 200 label_document_new: Нов документ
201 201 label_document_plural: Документи
202 202 label_role: Роля
203 203 label_role_plural: Роли
204 204 label_role_new: Нова роля
205 205 label_role_and_permissions: Роли и права
206 206 label_member: Член
207 207 label_member_new: Нов член
208 208 label_member_plural: Членове
209 209 label_tracker: Тракер
210 210 label_tracker_plural: Тракери
211 211 label_tracker_new: Нов тракер
212 212 label_workflow: Работен процес
213 213 label_issue_status: Статус на задача
214 214 label_issue_status_plural: Статуси на задачи
215 215 label_issue_status_new: Нов статус
216 216 label_issue_category: Категория задача
217 217 label_issue_category_plural: Категории задачи
218 218 label_issue_category_new: Нова категория
219 219 label_custom_field: Потребителско поле
220 220 label_custom_field_plural: Потребителски полета
221 221 label_custom_field_new: Ново потребителско поле
222 222 label_enumerations: Списъци
223 223 label_enumeration_new: Нова стойност
224 224 label_information: Информация
225 225 label_information_plural: Информация
226 226 label_please_login: Вход
227 227 label_register: Регистрация
228 228 label_password_lost: Забравена парола
229 229 label_home: Начало
230 230 label_my_page: Лична страница
231 231 label_my_account: Профил
232 232 label_my_projects: Моите проекти
233 233 label_administration: Администрация
234 234 label_login: Вход
235 235 label_logout: Изход
236 236 label_help: Помощ
237 237 label_reported_issues: Публикувани задачи
238 238 label_assigned_to_me_issues: Възложени на мен
239 239 label_last_login: Последно свързване
240 240 label_last_updates: Последно обновена
241 241 label_last_updates_plural: %d последно обновени
242 242 label_registered_on: Регистрация
243 243 label_activity: Дейност
244 244 label_new: Нов
245 245 label_logged_as: Логнат като
246 246 label_environment: Среда
247 247 label_authentication: Оторизация
248 248 label_auth_source: Начин на оторозация
249 249 label_auth_source_new: Нов начин на оторизация
250 250 label_auth_source_plural: Начини на оторизация
251 251 label_subproject_plural: Подпроекти
252 252 label_min_max_length: Мин. - Макс. дължина
253 253 label_list: Списък
254 254 label_date: Дата
255 255 label_integer: Число
256 256 label_boolean: Чекбокс
257 257 label_string: Текст
258 258 label_text: Дълъг текст
259 259 label_attribute: Атрибут
260 260 label_attribute_plural: Атрибути
261 261 label_download: %d Download
262 262 label_download_plural: %d Downloads
263 263 label_no_data: Няма изходни данни
264 264 label_change_status: Промяна на статуса
265 265 label_history: История
266 266 label_attachment: Файл
267 267 label_attachment_new: Нов файл
268 268 label_attachment_delete: Изтриване
269 269 label_attachment_plural: Файлове
270 270 label_report: Справка
271 271 label_report_plural: Справки
272 272 label_news: Новини
273 273 label_news_new: Добави
274 274 label_news_plural: Новини
275 275 label_news_latest: Последни новини
276 276 label_news_view_all: Виж всички
277 277 label_change_log: Изменения
278 278 label_settings: Настройки
279 279 label_overview: Общ изглед
280 280 label_version: Версия
281 281 label_version_new: Нова версия
282 282 label_version_plural: Версии
283 283 label_confirmation: Одобрение
284 284 label_export_to: Експорт към
285 285 label_read: Read...
286 286 label_public_projects: Публични проекти
287 287 label_open_issues: отворена
288 288 label_open_issues_plural: отворени
289 289 label_closed_issues: затворена
290 290 label_closed_issues_plural: затворени
291 291 label_total: Общо
292 292 label_permissions: Права
293 293 label_current_status: Текущ статус
294 294 label_new_statuses_allowed: Позволени статуси
295 295 label_all: всички
296 296 label_none: никакви
297 297 label_next: Следващ
298 298 label_previous: Предишен
299 299 label_used_by: Използва се от
300 300 label_details: Детайли
301 301 label_add_note: Добавяне на бележка
302 302 label_per_page: На страница
303 303 label_calendar: Календар
304 304 label_months_from: месеца от
305 305 label_gantt: Gantt
306 306 label_internal: Вътрешен
307 307 label_last_changes: последни %d промени
308 308 label_change_view_all: Виж всички промени
309 309 label_personalize_page: Персонализиране
310 310 label_comment: Коментар
311 311 label_comment_plural: Коментари
312 312 label_comment_add: Добавяне на коментар
313 313 label_comment_added: Добавен коментар
314 314 label_comment_delete: Изтриване на коментари
315 315 label_query: Потребителска справка
316 316 label_query_plural: Потребителски справки
317 317 label_query_new: Нова заявка
318 318 label_filter_add: Добави филтър
319 319 label_filter_plural: Филтри
320 320 label_equals: е
321 321 label_not_equals: не е
322 322 label_in_less_than: след по-малко от
323 323 label_in_more_than: след повече от
324 324 label_in: в следващите
325 325 label_today: днес
326 326 label_this_week: тази седмица
327 327 label_less_than_ago: преди по-малко от
328 328 label_more_than_ago: преди повече от
329 329 label_ago: преди
330 330 label_contains: съдържа
331 331 label_not_contains: не съдържа
332 332 label_day_plural: дни
333 333 label_repository: Склад
334 334 label_browse: Разглеждане
335 335 label_modification: %d промяна
336 336 label_modification_plural: %d промени
337 337 label_revision: Ревизия
338 338 label_revision_plural: Ревизии
339 339 label_added: добавено
340 340 label_modified: променено
341 341 label_deleted: изтрито
342 342 label_latest_revision: Последна ревизия
343 343 label_latest_revision_plural: Последни ревизии
344 344 label_view_revisions: Виж ревизиите
345 345 label_max_size: Максимална големина
346 346 label_on: 'от'
347 347 label_sort_highest: Премести най-горе
348 348 label_sort_higher: Премести по-горе
349 349 label_sort_lower: Премести по-долу
350 350 label_sort_lowest: Премести най-долу
351 351 label_roadmap: Пътна карта
352 352 label_roadmap_due_in: Излиза след
353 353 label_roadmap_overdue: %s закъснение
354 354 label_roadmap_no_issues: Няма задачи за тази версия
355 355 label_search: Търсене
356 356 label_result_plural: Pезултати
357 357 label_all_words: Всички думи
358 358 label_wiki: Wiki
359 359 label_wiki_edit: Wiki редакция
360 360 label_wiki_edit_plural: Wiki редакции
361 361 label_wiki_page: Wiki page
362 362 label_wiki_page_plural: Wiki pages
363 363 label_index_by_title: Индекс
364 364 label_index_by_date: Индекс по дата
365 365 label_current_version: Текуща версия
366 366 label_preview: Преглед
367 367 label_feed_plural: Feeds
368 368 label_changes_details: Подробни промени
369 369 label_issue_tracking: Тракинг
370 370 label_spent_time: Отделено време
371 371 label_f_hour: %.2f час
372 372 label_f_hour_plural: %.2f часа
373 373 label_time_tracking: Отделяне на време
374 374 label_change_plural: Промени
375 375 label_statistics: Статистики
376 376 label_commits_per_month: Commits за месец
377 377 label_commits_per_author: Commits за автор
378 378 label_view_diff: Виж разликите
379 379 label_diff_inline: хоризонтално
380 380 label_diff_side_by_side: вертикално
381 381 label_options: Опции
382 382 label_copy_workflow_from: Копирай работния процес от
383 383 label_permissions_report: Справка за права
384 384 label_watched_issues: Наблюдавани задачи
385 385 label_related_issues: Свързани задачи
386 386 label_applied_status: Промени статуса на
387 387 label_loading: Зареждане...
388 388 label_relation_new: Нова релация
389 389 label_relation_delete: Изтриване на релация
390 390 label_relates_to: Свързана със
391 391 label_duplicates: дублира
392 392 label_blocks: блокира
393 393 label_blocked_by: блокирана от
394 394 label_precedes: предшества
395 395 label_follows: изпълнява се след
396 396 label_end_to_start: end to start
397 397 label_end_to_end: end to end
398 398 label_start_to_start: start to start
399 399 label_start_to_end: start to end
400 400 label_stay_logged_in: Запомни ме
401 401 label_disabled: забранено
402 402 label_show_completed_versions: Показване на реализирани версии
403 403 label_me: аз
404 404 label_board: Форум
405 405 label_board_new: Нов форум
406 406 label_board_plural: Форуми
407 407 label_topic_plural: Теми
408 408 label_message_plural: Съобщения
409 409 label_message_last: Последно съобщение
410 410 label_message_new: Нова тема
411 411 label_reply_plural: Отговори
412 412 label_send_information: Изпращане на информацията до потребителя
413 413 label_year: Година
414 414 label_month: Месец
415 415 label_week: Седмица
416 416 label_date_from: От
417 417 label_date_to: До
418 418 label_language_based: В зависимост от езика
419 419 label_sort_by: Sort by "%s"
420 420 label_send_test_email: Изпращане на тестов e-mail
421 421 label_feeds_access_key_created_on: %s от създаването на RSS ключа
422 422 label_module_plural: Модули
423 423 label_added_time_by: Публикувана от %s преди %s
424 424 label_updated_time: Обновена преди %s
425 425 label_jump_to_a_project: Проект...
426 426
427 427 button_login: Вход
428 428 button_submit: Приложи
429 429 button_save: Запис
430 430 button_check_all: Маркирай всички
431 431 button_uncheck_all: Изчисти всички
432 432 button_delete: Изтриване
433 433 button_create: Създаване
434 434 button_test: Тест
435 435 button_edit: Редакция
436 436 button_add: Добавяне
437 437 button_change: Промяна
438 438 button_apply: Приложи
439 439 button_clear: Изчисти
440 440 button_lock: Заключване
441 441 button_unlock: Отключване
442 442 button_download: Download
443 443 button_list: Списък
444 444 button_view: Преглед
445 445 button_move: Преместване
446 446 button_back: Назад
447 447 button_cancel: Отказ
448 448 button_activate: Активация
449 449 button_sort: Сортиране
450 450 button_log_time: Отделяне на време
451 451 button_rollback: Върни се към тази ревизия
452 452 button_watch: Наблюдавай
453 453 button_unwatch: Спри наблюдението
454 454 button_reply: Отговор
455 455 button_archive: Архивиране
456 456 button_unarchive: Разархивиране
457 457 button_reset: Генериране наново
458 458 button_rename: Преименуване
459 459
460 460 status_active: активен
461 461 status_registered: регистриран
462 462 status_locked: заключен
463 463
464 464 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
465 465 text_regexp_info: пр. ^[A-Z0-9]+$
466 466 text_min_max_length_info: 0 - без ограничения
467 467 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
468 468 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
469 469 text_are_you_sure: Сигурни ли сте?
470 470 text_journal_changed: промяна от %s на %s
471 471 text_journal_set_to: установено на %s
472 472 text_journal_deleted: изтрито
473 473 text_tip_task_begin_day: задача започваща този ден
474 474 text_tip_task_end_day: задача завършваща този ден
475 475 text_tip_task_begin_end_day: задача започваща и завършваща този ден
476 476 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
477 477 text_caracters_maximum: До %d символа.
478 478 text_length_between: От %d до %d символа.
479 479 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
480 480 text_unallowed_characters: Непозволени символи
481 481 text_comma_separated: Позволено е изброяване (с разделител запетая).
482 482 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
483 483 text_issue_added: Публикувана е нова задача с номер %s.
484 484 text_issue_updated: Задача %s е обновена.
485 485 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
486 486 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
487 487 text_issue_category_destroy_assignments: Премахване на връзките с категорията
488 488 text_issue_category_reassign_to: Преобвързване с категория
489 489
490 490 default_role_manager: Мениджър
491 491 default_role_developper: Разработчик
492 492 default_role_reporter: Публикуващ
493 493 default_tracker_bug: Бъг
494 494 default_tracker_feature: Функционалност
495 495 default_tracker_support: Поддръжка
496 496 default_issue_status_new: Нова
497 497 default_issue_status_assigned: Възложена
498 498 default_issue_status_resolved: Приключена
499 499 default_issue_status_feedback: Обратна връзка
500 500 default_issue_status_closed: Затворена
501 501 default_issue_status_rejected: Отхвърлена
502 502 default_doc_category_user: Документация за потребителя
503 503 default_doc_category_tech: Техническа документация
504 504 default_priority_low: Нисък
505 505 default_priority_normal: Нормален
506 506 default_priority_high: Висок
507 507 default_priority_urgent: Спешен
508 508 default_priority_immediate: Веднага
509 509 default_activity_design: Дизайн
510 510 default_activity_development: Разработка
511 511
512 512 enumeration_issue_priorities: Приоритети на задачи
513 513 enumeration_doc_categories: Категории документи
514 514 enumeration_activities: Дейности (time tracking)
515 515 label_file_plural: Files
516 516 label_changeset_plural: Changesets
517 517 field_column_names: Колони
518 518 label_default_columns: По подразбиране
519 519 setting_issue_list_default_columns: Показвани колони по подразбиране
520 520 setting_repositories_encodings: Encodings на складовете
521 521 notice_no_issue_selected: "Няма избрани задачи."
522 522 label_bulk_edit_selected_issues: Редактиране на задачи
523 523 label_no_change_option: (Без промяна)
524 524 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
525 525 label_theme: Тема
526 526 label_default: По подразбиране
527 527 label_search_titles_only: Само в заглавията
528 label_nobody: nobody
@@ -1,527 +1,528
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: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
5 5 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 den
9 9 actionview_datehelper_time_in_words_day_plural: %d dny
10 10 actionview_datehelper_time_in_words_hour_about: asi hodinu
11 11 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodin
12 12 actionview_datehelper_time_in_words_hour_about_single: asi hodinu
13 13 actionview_datehelper_time_in_words_minute: 1 minuta
14 14 actionview_datehelper_time_in_words_minute_half: půl minuty
15 15 actionview_datehelper_time_in_words_minute_less_than: méně než minutu
16 16 actionview_datehelper_time_in_words_minute_plural: %d minut
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuta
18 18 actionview_datehelper_time_in_words_second_less_than: méně než sekunda
19 19 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekund
20 20 actionview_instancetag_blank_option: Prosím vyberte
21 21
22 22 activerecord_error_inclusion: není zahrnuto v seznamu
23 23 activerecord_error_exclusion: je rezervováno
24 24 activerecord_error_invalid: je neplatné
25 25 activerecord_error_confirmation: doesn't match confirmation
26 26 activerecord_error_accepted: must be accepted
27 27 activerecord_error_empty: nemůže být prázdný
28 28 activerecord_error_blank: nemůže být prázdný
29 29 activerecord_error_too_long: je příliš dlouhý
30 30 activerecord_error_too_short: je příliš krátký
31 31 activerecord_error_wrong_length: má chybnou délku
32 32 activerecord_error_taken: has already been taken
33 33 activerecord_error_not_a_number: není číslo
34 34 activerecord_error_not_a_date: není platný datum
35 35 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
36 36 activerecord_error_not_same_project: nepatří stejnému projektu
37 37 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
38 38
39 39 general_fmt_age: %d rok
40 40 general_fmt_age_plural: %d roků
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: 'Ne'
46 46 general_text_Yes: 'Ano'
47 47 general_text_no: 'ne'
48 48 general_text_yes: 'Ano'
49 49 general_lang_name: 'Čeština'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: UTF-8
52 52 general_pdf_encoding: UTF-8
53 53 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Účet byl úspěšně změněn.
57 57 notice_account_invalid_creditentials: Chybné jméno nebo heslo
58 58 notice_account_password_updated: Heslo bylo úspěšně změněno.
59 59 notice_account_wrong_password: Chybné heslo
60 60 notice_account_register_done: Účet byl úspěšně vytvořen. Pro aktivaci účtu klikněte na odkaz v emailu, který vám byl zaslán.
61 61 notice_account_unknown_email: Neznámý uživatel.
62 62 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
63 63 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
64 64 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
65 65 notice_successful_create: Úspěšné vytvoření.
66 66 notice_successful_update: Úspěšná aktualizace.
67 67 notice_successful_delete: Úspěšné smazání.
68 68 notice_successful_connection: Úspěšné připojení.
69 69 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
70 70 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
71 71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
72 72 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
73 73 notice_email_sent: Na adresu %s byl odeslán email
74 74 notice_email_error: Při odesílání emailu nastala chyba (%s)
75 75 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
76 76
77 77 mail_subject_lost_password: Vaše heslo
78 78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
79 79 mail_subject_register: aktivace účtu
80 80 mail_body_register: 'To activate your Redmine account, click on the following link:'
81 81
82 82 gui_validation_error: 1 chyba
83 83 gui_validation_error_plural: %d chyb(y)
84 84
85 85 field_name: Jméno
86 86 field_description: Popis
87 87 field_summary: Shrnutí
88 88 field_is_required: Požadovaný
89 89 field_firstname: Jméno
90 90 field_lastname: Příjmení
91 91 field_mail: Email
92 92 field_filename: Soubor
93 93 field_filesize: Velikost
94 94 field_downloads: Staženo
95 95 field_author: Autor
96 96 field_created_on: Vytvořeno
97 97 field_updated_on: Aktualizováno
98 98 field_field_format: Formát
99 99 field_is_for_all: Pro všechny projekty
100 100 field_possible_values: Možné hodnoty
101 101 field_regexp: Regulární výraz
102 102 field_min_length: Minimální délka
103 103 field_max_length: Maximální délka
104 104 field_value: Hodnota
105 105 field_category: Kategorie
106 106 field_title: Titulek
107 107 field_project: Projekt
108 108 field_issue: Požadavek
109 109 field_status: Stav
110 110 field_notes: Poznámka
111 111 field_is_closed: Požadavek uzavřen
112 112 field_is_default: Výchozí stav
113 113 field_html_color: Barva
114 114 field_tracker: Fronta
115 115 field_subject: Předmět
116 116 field_due_date: Po lhůtě
117 117 field_assigned_to: Přiřazeno
118 118 field_priority: Priorita
119 119 field_fixed_version: Pevná verze
120 120 field_user: Uživatel
121 121 field_role: Role
122 122 field_homepage: Úvodní
123 123 field_is_public: Veřejný
124 124 field_parent: Podprojekt
125 125 field_is_in_chlog: Požadavky zobrazené v změnovém logu
126 126 field_is_in_roadmap: Požadavky zobrazené v roadmapě
127 127 field_login: Přihlášení
128 128 field_mail_notification: Emailové oznámení
129 129 field_admin: Administrátor
130 130 field_last_login_on: Poslední připojení
131 131 field_language: Jazyk
132 132 field_effective_date: Datum
133 133 field_password: Heslo
134 134 field_new_password: Nové heslo
135 135 field_password_confirmation: Potvrzení
136 136 field_version: Verze
137 137 field_type: Typ
138 138 field_host: Host
139 139 field_port: Port
140 140 field_account: Účet
141 141 field_base_dn: Base DN
142 142 field_attr_login: Login attribute
143 143 field_attr_firstname: Firstname attribute
144 144 field_attr_lastname: Lastname attribute
145 145 field_attr_mail: Email attribute
146 146 field_onthefly: Automatické vytváření uživatelů
147 147 field_start_date: Start
148 148 field_done_ratio: %% Hotovo
149 149 field_auth_source: Autentifikační mód
150 150 field_hide_mail: Nezobrazovat můj email
151 151 field_comments: Komentář
152 152 field_url: URL
153 153 field_start_page: Výchozí stránka
154 154 field_subproject: Podprojekt
155 155 field_hours: Hodiny
156 156 field_activity: Aktivita
157 157 field_spent_on: Datum
158 158 field_identifier: Identifikátor
159 159 field_is_filter: Used as a filter
160 160 field_issue_to_id: Vztažený požadavek
161 161 field_delay: Zpoždění
162 162 field_assignable: Požadavky mohou být přiřazeny této roli
163 163
164 164 setting_app_title: Titulek aplikace
165 165 setting_app_subtitle: Podtitulek aplikace
166 166 setting_welcome_text: Uvítací text
167 167 setting_default_language: Výchozí jazyk
168 168 setting_login_required: Auten. vyžadována
169 169 setting_self_registration: Povolena automatická registrace
170 170 setting_attachment_max_size: Maximální velikost přílohy
171 171 setting_issues_export_limit: Limit pro export požadavků
172 172 setting_mail_from: Emission mail adresa
173 173 setting_host_name: Host name
174 174 setting_text_formatting: Formátování textu
175 175 setting_wiki_compression: Komperese historie Wiki
176 176 setting_feeds_limit: Feed content limit
177 177 setting_autofetch_changesets: Autofetch commits
178 178 setting_sys_api_enabled: Povolit WS pro správu repozitory
179 179 setting_commit_ref_keywords: Referencing keywords
180 180 setting_commit_fix_keywords: Fixing keywords
181 181 setting_autologin: Automatické přihlašování
182 182 setting_date_format: Formát datumu
183 183 setting_cross_project_issue_relations: Povolit vztahy požadavků mezi projekty
184 184
185 185 label_user: Uživatel
186 186 label_user_plural: Uživatelé
187 187 label_user_new: Nový uživatel
188 188 label_project: Projekt
189 189 label_project_new: Nový projekt
190 190 label_project_plural: Projekty
191 191 label_project_all: Všechny projekty
192 192 label_project_latest: Poslední projekty
193 193 label_issue: Požadavek
194 194 label_issue_new: Nový požadavek
195 195 label_issue_plural: Požadavky
196 196 label_issue_view_all: Všechny požadavky
197 197 label_document: Dokument
198 198 label_document_new: Nový dokument
199 199 label_document_plural: Dokumenty
200 200 label_role: Role
201 201 label_role_plural: Role
202 202 label_role_new: Nová role
203 203 label_role_and_permissions: Role a práva
204 204 label_member: Člen
205 205 label_member_new: Nový člen
206 206 label_member_plural: Členové
207 207 label_tracker: Fronta
208 208 label_tracker_plural: Fronty
209 209 label_tracker_new: Nová fronta
210 210 label_workflow: Workflow
211 211 label_issue_status: Stav požadavku
212 212 label_issue_status_plural: Stavy požadavku
213 213 label_issue_status_new: Nový stav
214 214 label_issue_category: Kategorie požadavku
215 215 label_issue_category_plural: Kategorie požadavku
216 216 label_issue_category_new: Nová kategorie
217 217 label_custom_field: Uživatelské pole
218 218 label_custom_field_plural: Uživatelské pole
219 219 label_custom_field_new: Nové uživatelské pole
220 220 label_enumerations: Číselníky
221 221 label_enumeration_new: Nová hodnota
222 222 label_information: Informace
223 223 label_information_plural: Informace
224 224 label_please_login: Prosím přihlašte se
225 225 label_register: Registrovat
226 226 label_password_lost: Zapomenuté heslo
227 227 label_home: Úvodní
228 228 label_my_page: Moje stránka
229 229 label_my_account: Můj účet
230 230 label_my_projects: Moje projekty
231 231 label_administration: Administrace
232 232 label_login: Přihlášení
233 233 label_logout: Odhlášení
234 234 label_help: Nápověda
235 235 label_reported_issues: Nahlášené požadavky
236 236 label_assigned_to_me_issues: Moje požadavky
237 237 label_last_login: Poslední přihlášení
238 238 label_last_updates: Poslední změna
239 239 label_last_updates_plural: %d poslední změny
240 240 label_registered_on: Registered on
241 241 label_activity: Aktivita
242 242 label_new: Nový
243 243 label_logged_as: Přihlášen jako
244 244 label_environment: Prostředí
245 245 label_authentication: Autentifikace
246 246 label_auth_source: Mód autentifikace
247 247 label_auth_source_new: Nový mód autentifikace
248 248 label_auth_source_plural: Módy autentifikace
249 249 label_subproject_plural: Podprojekty
250 250 label_min_max_length: Min - Max délka
251 251 label_list: Seznam
252 252 label_date: Datum
253 253 label_integer: Integer
254 254 label_boolean: Boolean
255 255 label_string: Text
256 256 label_text: Dlouhý text
257 257 label_attribute: Atribut
258 258 label_attribute_plural: Atributy
259 259 label_download: %d Download
260 260 label_download_plural: %d Downloads
261 261 label_no_data: Žádná data k zobrazení
262 262 label_change_status: Změnit stav
263 263 label_history: Historie
264 264 label_attachment: Soubor
265 265 label_attachment_new: Nový soubor
266 266 label_attachment_delete: Smazat soubor
267 267 label_attachment_plural: Soubory
268 268 label_report: Report
269 269 label_report_plural: Reporty
270 270 label_news: Novinky
271 271 label_news_new: Přidat novinku
272 272 label_news_plural: Novinky
273 273 label_news_latest: Poslední novinky
274 274 label_news_view_all: Zobrazit všechny novinky
275 275 label_change_log: Change log
276 276 label_settings: Nastavení
277 277 label_overview: Přehled
278 278 label_version: Verze
279 279 label_version_new: Nová verze
280 280 label_version_plural: Verze
281 281 label_confirmation: Potvrzení
282 282 label_export_to: Exportovat do
283 283 label_read: Načítá se...
284 284 label_public_projects: Veřejné projekty
285 285 label_open_issues: otevřený
286 286 label_open_issues_plural: otevřené
287 287 label_closed_issues: uzavřený
288 288 label_closed_issues_plural: uzavřené
289 289 label_total: Celkem
290 290 label_permissions: Práva
291 291 label_current_status: Aktuální stav
292 292 label_new_statuses_allowed: Nové povolené stavy
293 293 label_all: vše
294 294 label_none: nic
295 295 label_next: Další
296 296 label_previous: Předchozí
297 297 label_used_by: Použito
298 298 label_details: Detaily
299 299 label_add_note: Přidat poznánku
300 300 label_per_page: Na stránku
301 301 label_calendar: Kalendář
302 302 label_months_from: měsíců od
303 303 label_gantt: Gantův graf
304 304 label_internal: Interní
305 305 label_last_changes: posledních %d změn
306 306 label_change_view_all: Zobrazit všechny změny
307 307 label_personalize_page: Přizpůsobit tuto stránku
308 308 label_comment: Komentář
309 309 label_comment_plural: Komentáře
310 310 label_comment_add: Přidat komentáře
311 311 label_comment_added: Komentář přidán
312 312 label_comment_delete: Smazat komentář
313 313 label_query: Uživatelský dotaz
314 314 label_query_plural: Uživatelské dotazy
315 315 label_query_new: Nový dotaz
316 316 label_filter_add: Přidat filtr
317 317 label_filter_plural: Filtry
318 318 label_equals: je
319 319 label_not_equals: není
320 320 label_in_less_than: je měší než
321 321 label_in_more_than: je větší než
322 322 label_in: v
323 323 label_today: dnes
324 324 label_this_week: tento týden
325 325 label_less_than_ago: před méně jak (dny)
326 326 label_more_than_ago: před více jak (dny)
327 327 label_ago: před (dny)
328 328 label_contains: obsahuje
329 329 label_not_contains: neobsahuje
330 330 label_day_plural: dny
331 331 label_repository: Repository
332 332 label_browse: Procházet
333 333 label_modification: %d změna
334 334 label_modification_plural: %d změn
335 335 label_revision: Revize
336 336 label_revision_plural: Revizí
337 337 label_added: přidáno
338 338 label_modified: změněno
339 339 label_deleted: smazáno
340 340 label_latest_revision: Poslední revize
341 341 label_latest_revision_plural: Poslední revize
342 342 label_view_revisions: Zobrazit revize
343 343 label_max_size: Maximální velikost
344 344 label_on: 'on'
345 345 label_sort_highest: Posunout na vrchol
346 346 label_sort_higher: Posunout nahoru
347 347 label_sort_lower: Posunout dolů
348 348 label_sort_lowest: Posunout dospod
349 349 label_roadmap: Plán
350 350 label_roadmap_due_in: Due in
351 351 label_roadmap_overdue: %s pozdě
352 352 label_roadmap_no_issues: Pro tuto verzi nejsou žádné požadavky
353 353 label_search: Hledej
354 354 label_result_plural: Výsledky
355 355 label_all_words: Všechna slova
356 356 label_wiki: Wiki
357 357 label_wiki_edit: Wiki úprava
358 358 label_wiki_edit_plural: Wiki úpravy
359 359 label_wiki_page: Wiki stránka
360 360 label_wiki_page_plural: Wiki stránky
361 361 label_index_by_title: Rejstřík
362 362 label_index_by_date: Index by date
363 363 label_current_version: Aktuální verze
364 364 label_preview: Náhled
365 365 label_feed_plural: Feeds
366 366 label_changes_details: Detail všech změn
367 367 label_issue_tracking: Sledování požadavků
368 368 label_spent_time: Strávený čas
369 369 label_f_hour: %.2f hodina
370 370 label_f_hour_plural: %.2f hodin
371 371 label_time_tracking: Sledování času
372 372 label_change_plural: Změny
373 373 label_statistics: Statistika
374 374 label_commits_per_month: Pořízení za měsíc
375 375 label_commits_per_author: Pořízení za autora
376 376 label_view_diff: Zobrazit rozdíly
377 377 label_diff_inline: uvnitř
378 378 label_diff_side_by_side: vedle sebe
379 379 label_options: Nastavení
380 380 label_copy_workflow_from: Kopírovat workflow z
381 381 label_permissions_report: Opis práv
382 382 label_watched_issues: Prohlédnuté požadavky
383 383 label_related_issues: Vztažené požadavky
384 384 label_applied_status: Použitý stav
385 385 label_loading: Nahrávám...
386 386 label_relation_new: Nový vztah
387 387 label_relation_delete: Smazat vztah
388 388 label_relates_to: vztažený k
389 389 label_duplicates: duplicity
390 390 label_blocks: zámků
391 391 label_blocked_by: zamčeno
392 392 label_precedes: předchází
393 393 label_follows: následuje
394 394 label_end_to_start: od konce do začátku
395 395 label_end_to_end: od konce do konce
396 396 label_start_to_start: od začátku do začátku
397 397 label_start_to_end: od začátku do konce
398 398 label_stay_logged_in: Zůstat přihlášený
399 399 label_disabled: zakázáno
400 400 label_show_completed_versions: Ukaž dokončené verze
401 401 label_me:
402 402 label_board: Fórum
403 403 label_board_new: Nové fórum
404 404 label_board_plural: Fora
405 405 label_topic_plural: Témata
406 406 label_message_plural: Zprávy
407 407 label_message_last: Poslední zpráva
408 408 label_message_new: Nové zprávy
409 409 label_reply_plural: Odpovědi
410 410 label_send_information: Zaslat informace o účtu uživateli
411 411 label_year: Rok
412 412 label_month: Měsíc
413 413 label_week: Týden
414 414 label_date_from: Od
415 415 label_date_to: Do
416 416 label_language_based: Language based
417 417 label_sort_by: Seřadit podle "%s"
418 418 label_send_test_email: Poslat testovací email
419 419 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
420 420
421 421 button_login: Přihlásit
422 422 button_submit: Potvrdit
423 423 button_save: Uložit
424 424 button_check_all: Zašrtnout vše
425 425 button_uncheck_all: Odšrtnout vše
426 426 button_delete: Smazat
427 427 button_create: Vytvořit
428 428 button_test: Test
429 429 button_edit: Upravit
430 430 button_add: Přidat
431 431 button_change: Změnit
432 432 button_apply: Použít
433 433 button_clear: Odstranit
434 434 button_lock: Zamknout
435 435 button_unlock: Odemknout
436 436 button_download: Stáhnout
437 437 button_list: Vypsat
438 438 button_view: Zobrazit
439 439 button_move: Přesunout
440 440 button_back: Zpět
441 441 button_cancel: Storno
442 442 button_activate: Activovat
443 443 button_sort: Seřadit
444 444 button_log_time: Čas přihlášení
445 445 button_rollback: Zpět k této verzi
446 446 button_watch: Sledovat
447 447 button_unwatch: Unwatch
448 448 button_reply: Odpovědět
449 449 button_archive: Archivovat
450 450 button_unarchive: Odarchivovat
451 451 button_reset: Reset
452 452
453 453 status_active: aktivní
454 454 status_registered: registrovaný
455 455 status_locked: uzamčený
456 456
457 457 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
458 458 text_regexp_info: např. ^[A-Z0-9]+$
459 459 text_min_max_length_info: 0 znamená bez limitu
460 460 text_project_destroy_confirmation: Jste si jistí, že chcete smazat tento projekt a všechna související data ?
461 461 text_workflow_edit: Vyberte roli a frontu k editaci workflow
462 462 text_are_you_sure: Jste si jist ?
463 463 text_journal_changed: změněno z %s na %s
464 464 text_journal_set_to: nastaveno na %s
465 465 text_journal_deleted: smazáno
466 466 text_tip_task_begin_day: úkol začíná v tento den
467 467 text_tip_task_end_day: úkol končí v tento den
468 468 text_tip_task_begin_end_day: úkol začíná a končí v tento den
469 469 text_project_identifier_info: 'Jsou povolena malá písmena (a-z), čísla a pomlčky.<br />Po uložení již není možné identifikátor změnit.'
470 470 text_caracters_maximum: %d znaků maximálně.
471 471 text_length_between: Délka mezi %d a %d znaky.
472 472 text_tracker_no_workflow: Pro tuto frontu není definováno žádné workflow
473 473 text_unallowed_characters: Nepovolené znaky
474 474 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
475 475 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
476 476
477 477 default_role_manager: Manažer
478 478 default_role_developper: Agent
479 479 default_role_reporter: Reporter
480 480 default_tracker_bug: Reklamace
481 481 default_tracker_feature: Vlastnost
482 482 default_tracker_support: Požadavek
483 483 default_issue_status_new: Nový
484 484 default_issue_status_assigned: Přiřazený
485 485 default_issue_status_resolved: Vyřešený
486 486 default_issue_status_feedback: Čeká se
487 487 default_issue_status_closed: Uzavřený
488 488 default_issue_status_rejected: Odmítnutý
489 489 default_doc_category_user: Uživatelská dokumentace
490 490 default_doc_category_tech: Technická dokumentace
491 491 default_priority_low: Nízká
492 492 default_priority_normal: Normální
493 493 default_priority_high: Vysoká
494 494 default_priority_urgent: Urgentní
495 495 default_priority_immediate: Bezodkladné
496 496 default_activity_design: Návrh
497 497 default_activity_development: Vývoj
498 498
499 499 enumeration_issue_priorities: Priority požadavků
500 500 enumeration_doc_categories: Kategorie dokumentů
501 501 enumeration_activities: Aktivity (sledování času)
502 502 button_rename: Rename
503 503 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
504 504 label_module_plural: Modules
505 505 label_jump_to_a_project: Jump to a project...
506 506 text_issue_updated: Issue %s has been updated.
507 507 field_redirect_existing_links: Redirect existing links
508 508 text_issue_category_reassign_to: Reassing issues to this category
509 509 text_issue_added: Issue %s has been reported.
510 510 label_file_plural: Files
511 511 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
512 512 label_updated_time: Updated %s ago
513 513 text_issue_category_destroy_assignments: Remove category assignments
514 514 label_added_time_by: Added by %s %s ago
515 515 field_estimated_hours: Estimated time
516 516 label_changeset_plural: Changesets
517 517 field_column_names: Columns
518 518 label_default_columns: Default columns
519 519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 520 setting_repositories_encodings: Repositories encodings
521 521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 523 label_no_change_option: (No change)
524 524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 525 label_theme: Theme
526 526 label_default: Default
527 527 label_search_titles_only: Search titles only
528 label_nobody: nobody
@@ -1,527 +1,528
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: gehört nicht zum selben Projekt
37 37 activerecord_error_circular_dependency: Diese Beziehung würde eine zyklische Abhängigkeit erzeugen
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_name: '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 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Konto wurde erfolgreich aktualisiert.
57 57 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
58 58 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
59 59 notice_account_wrong_password: Falsches Kennwort
60 60 notice_account_register_done: Konto wurde erfolgreich angelegt.
61 61 notice_account_unknown_email: Unbekannter Benutzer.
62 62 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
63 63 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
64 64 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
65 65 notice_successful_create: Erfolgreich angelegt
66 66 notice_successful_update: Erfolgreich aktualisiert.
67 67 notice_successful_delete: Erfolgreich gelöscht.
68 68 notice_successful_connection: Verbindung erfolgreich.
69 69 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
70 70 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
71 71 notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv.
72 72 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
73 73 notice_email_sent: Eine E-Mail wurde an %s gesendet.
74 74 notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s).
75 75 notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt.
76 76
77 77 mail_subject_lost_password: Ihr Redmine Kennwort
78 78 mail_body_lost_password: 'Benutzen Sie folgenden Link, um das Password zu Ãndern:'
79 79 mail_subject_register: Redmine Kontoaktivierung
80 80 mail_body_register: 'Um Ihren Account zu aktivieren, benutzen Sie folgenden Link:'
81 81
82 82 gui_validation_error: 1 Fehler
83 83 gui_validation_error_plural: %d Fehler
84 84
85 85 field_name: Name
86 86 field_description: Beschreibung
87 87 field_summary: Zusammenfassung
88 88 field_is_required: Erforderlich
89 89 field_firstname: Vorname
90 90 field_lastname: Nachname
91 91 field_mail: Email
92 92 field_filename: Datei
93 93 field_filesize: Größe
94 94 field_downloads: Downloads
95 95 field_author: Autor
96 96 field_created_on: Angelegt
97 97 field_updated_on: Aktualisiert
98 98 field_field_format: Format
99 99 field_is_for_all: Für alle Projekte
100 100 field_possible_values: Mögliche Werte
101 101 field_regexp: Regulärer Ausdruck
102 102 field_min_length: Minimale Länge
103 103 field_max_length: Maximale Länge
104 104 field_value: Wert
105 105 field_category: Kategorie
106 106 field_title: Titel
107 107 field_project: Projekt
108 108 field_issue: Ticket
109 109 field_status: Status
110 110 field_notes: Kommentare
111 111 field_is_closed: Problem erledigt
112 112 field_is_default: Default
113 113 field_html_color: Farbe
114 114 field_tracker: Tracker
115 115 field_subject: Thema
116 116 field_due_date: Abgabedatum
117 117 field_assigned_to: Zugewiesen an
118 118 field_priority: Priorität
119 119 field_fixed_version: Erledigt in Version
120 120 field_user: Benutzer
121 121 field_role: Rolle
122 122 field_homepage: Startseite
123 123 field_is_public: Öffentlich
124 124 field_parent: Unterprojekt von
125 125 field_is_in_chlog: Ansicht im Change-Log
126 126 field_is_in_roadmap: Ansicht in der Roadmap
127 127 field_login: Mitgliedsname
128 128 field_mail_notification: Mailbenachrichtigung
129 129 field_admin: Administrator
130 130 field_last_login_on: Letzte Anmeldung
131 131 field_language: Sprache
132 132 field_effective_date: Datum
133 133 field_password: Kennwort
134 134 field_new_password: Neues Kennwort
135 135 field_password_confirmation: Bestätigung
136 136 field_version: Version
137 137 field_type: Typ
138 138 field_host: Host
139 139 field_port: Port
140 140 field_account: Konto
141 141 field_base_dn: Base DN
142 142 field_attr_login: Mitgliedsname-Attribut
143 143 field_attr_firstname: Vorname-Attribut
144 144 field_attr_lastname: Name-Attribut
145 145 field_attr_mail: E-Mail-Attribut
146 146 field_onthefly: On-the-fly-Benutzererstellung
147 147 field_start_date: Beginn
148 148 field_done_ratio: %% erledigt
149 149 field_auth_source: Authentifizierungs-Modus
150 150 field_hide_mail: Email-Adresse nicht anzeigen
151 151 field_comments: Kommentar
152 152 field_url: URL
153 153 field_start_page: Hauptseite
154 154 field_subproject: Subprojekt von
155 155 field_hours: Stunden
156 156 field_activity: Aktivität
157 157 field_spent_on: Datum
158 158 field_identifier: Kennung
159 159 field_is_filter: Als Fiter benutzen
160 160 field_issue_to_id: Zugehöriges Ticket
161 161 field_delay: Pufferzeit
162 162 field_assignable: Tickets können dieser Rolle zugewiesen werden
163 163 field_redirect_existing_links: Existierende Links umleiten
164 164 field_estimated_hours: Geschätzter Aufwand
165 165
166 166 setting_app_title: Applikations-Titel
167 167 setting_app_subtitle: Applikations-Untertitel
168 168 setting_welcome_text: Willkommenstext
169 169 setting_default_language: Default-Sprache
170 170 setting_login_required: Authentisierung erforderlich
171 171 setting_self_registration: Anmeldung ermöglicht
172 172 setting_attachment_max_size: Max. Dateigröße
173 173 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
174 174 setting_mail_from: E-Mail-Absender
175 175 setting_host_name: Hostname
176 176 setting_text_formatting: Textformatierung
177 177 setting_wiki_compression: Wiki-Historie komprimieren
178 178 setting_feeds_limit: Feed-Inhalt begrenzen
179 179 setting_autofetch_changesets: Commits automatisch abrufen
180 180 setting_sys_api_enabled: Webservice für Repository-Verwaltung benutzen
181 181 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
182 182 setting_commit_fix_keywords: Schlüsselwörter (Status)
183 183 setting_autologin: Automatische Anmeldung
184 184 setting_date_format: Datumsformat
185 185 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
186 186
187 187 label_user: Benutzer
188 188 label_user_plural: Benutzer
189 189 label_user_new: Neuer Benutzer
190 190 label_project: Projekt
191 191 label_project_new: Neues Projekt
192 192 label_project_plural: Projekte
193 193 label_project_all: Alle Projekte
194 194 label_project_latest: Neueste Projekte
195 195 label_issue: Ticket
196 196 label_issue_new: Neues Ticket
197 197 label_issue_plural: Tickets
198 198 label_issue_view_all: Alle Tickets ansehen
199 199 label_document: Dokument
200 200 label_document_new: Neues Dokument
201 201 label_document_plural: Dokumente
202 202 label_role: Rolle
203 203 label_role_plural: Rollen
204 204 label_role_new: Neue Rolle
205 205 label_role_and_permissions: Rollen und Rechte
206 206 label_member: Mitglied
207 207 label_member_new: Neues Mitglied
208 208 label_member_plural: Mitglieder
209 209 label_tracker: Tracker
210 210 label_tracker_plural: Tracker
211 211 label_tracker_new: Neuer Tracker
212 212 label_workflow: Workflow
213 213 label_issue_status: Ticket-Status
214 214 label_issue_status_plural: Ticket-Status
215 215 label_issue_status_new: Neuer Status
216 216 label_issue_category: Ticket-Kategorie
217 217 label_issue_category_plural: Ticket-Kategorien
218 218 label_issue_category_new: Neue Kategorie
219 219 label_custom_field: Benutzerdefiniertes Feld
220 220 label_custom_field_plural: Benutzerdefinierte Felder
221 221 label_custom_field_new: Neues Feld
222 222 label_enumerations: Aufzählungen
223 223 label_enumeration_new: Neuer Wert
224 224 label_information: Information
225 225 label_information_plural: Informationen
226 226 label_please_login: Anmelden
227 227 label_register: Registrieren
228 228 label_password_lost: Kennwort vergessen
229 229 label_home: Hauptseite
230 230 label_my_page: Meine Seite
231 231 label_my_account: Mein Konto
232 232 label_my_projects: Meine Projekte
233 233 label_administration: Administration
234 234 label_login: Anmelden
235 235 label_logout: Abmelden
236 236 label_help: Hilfe
237 237 label_reported_issues: Gemeldete Tickets
238 238 label_assigned_to_me_issues: Mir zugewiesen
239 239 label_last_login: Letzte Anmeldung
240 240 label_last_updates: zuletzt aktualisiert
241 241 label_last_updates_plural: %d zuletzt aktualisierten
242 242 label_registered_on: Angemeldet am
243 243 label_activity: Aktivität
244 244 label_new: Neu
245 245 label_logged_as: Angemeldet als
246 246 label_environment: Environment
247 247 label_authentication: Authentifizierung
248 248 label_auth_source: Authentifizierungs-Modus
249 249 label_auth_source_new: Neuer Authentifizierungs-Modus
250 250 label_auth_source_plural: Authentifizierungs-Arten
251 251 label_subproject_plural: Unterprojekte
252 252 label_min_max_length: Länge (Min. - Max.)
253 253 label_list: Liste
254 254 label_date: Datum
255 255 label_integer: Zahl
256 256 label_boolean: Boolean
257 257 label_string: Text
258 258 label_text: Langer Text
259 259 label_attribute: Attribut
260 260 label_attribute_plural: Attribute
261 261 label_download: %d Download
262 262 label_download_plural: %d Downloads
263 263 label_no_data: Nichts anzuzeigen
264 264 label_change_status: Statuswechsel
265 265 label_history: Historie
266 266 label_attachment: Datei
267 267 label_attachment_new: Neue Datei
268 268 label_attachment_delete: Anhang löschen
269 269 label_attachment_plural: Dateien
270 270 label_report: Bericht
271 271 label_report_plural: Berichte
272 272 label_news: News
273 273 label_news_new: News hinzufügen
274 274 label_news_plural: News
275 275 label_news_latest: Letzte News
276 276 label_news_view_all: Alle News anzeigen
277 277 label_change_log: Change-Log
278 278 label_settings: Konfiguration
279 279 label_overview: Übersicht
280 280 label_version: Version
281 281 label_version_new: Neue Version
282 282 label_version_plural: Versionen
283 283 label_confirmation: Bestätigung
284 284 label_export_to: Export zu
285 285 label_read: Lesen...
286 286 label_public_projects: Öffentliche Projekte
287 287 label_open_issues: offen
288 288 label_open_issues_plural: offen
289 289 label_closed_issues: geschlossen
290 290 label_closed_issues_plural: geschlossen
291 291 label_total: Gesamtzahl
292 292 label_permissions: Berechtigungen
293 293 label_current_status: Gegenwärtiger Status
294 294 label_new_statuses_allowed: Neue Berechtigungen
295 295 label_all: alle
296 296 label_none: kein
297 297 label_next: Weiter
298 298 label_previous: Zurück
299 299 label_used_by: Benutzt von
300 300 label_details: Details
301 301 label_add_note: Kommentar hinzufügen
302 302 label_per_page: Pro Seite
303 303 label_calendar: Kalender
304 304 label_months_from: Monate ab
305 305 label_gantt: Gantt
306 306 label_internal: Intern
307 307 label_last_changes: %d letzte Änderungen
308 308 label_change_view_all: Alle Änderungen ansehen
309 309 label_personalize_page: Diese Seite anpassen
310 310 label_comment: Kommentar
311 311 label_comment_plural: Kommentare
312 312 label_comment_add: Kommentar hinzufügen
313 313 label_comment_added: Kommentar hinzugefügt
314 314 label_comment_delete: Kommentar löschen
315 315 label_query: Benutzerdefinierte Abfrage
316 316 label_query_plural: Benutzerdefinierte Berichte
317 317 label_query_new: Neuer Bericht
318 318 label_filter_add: Filter hinzufügen
319 319 label_filter_plural: Filter
320 320 label_equals: ist
321 321 label_not_equals: ist nicht
322 322 label_in_less_than: in weniger als
323 323 label_in_more_than: in mehr als
324 324 label_in: an
325 325 label_today: heute
326 326 label_this_week: diese Woche
327 327 label_less_than_ago: vor weniger als
328 328 label_more_than_ago: vor mehr als
329 329 label_ago: vor
330 330 label_contains: enthält
331 331 label_not_contains: enthält nicht
332 332 label_day_plural: Tage
333 333 label_repository: Projektarchiv
334 334 label_browse: Codebrowser
335 335 label_modification: %d Änderung
336 336 label_modification_plural: %d Änderungen
337 337 label_revision: Revision
338 338 label_revision_plural: Revisionen
339 339 label_added: hinzugefügt
340 340 label_modified: geändert
341 341 label_deleted: gelöscht
342 342 label_latest_revision: Aktuellste Revision
343 343 label_latest_revision_plural: Aktuellste Revisionen
344 344 label_view_revisions: Revisionen anzeigen
345 345 label_max_size: Maximale Größe
346 346 label_on: von
347 347 label_sort_highest: Anfang
348 348 label_sort_higher: eins höher
349 349 label_sort_lower: eins tiefer
350 350 label_sort_lowest: Ende
351 351 label_roadmap: Roadmap
352 352 label_roadmap_due_in: Fällig in
353 353 label_roadmap_overdue: %s verspätet
354 354 label_roadmap_no_issues: Keine Tickets für diese Version
355 355 label_search: Suche
356 356 label_result_plural: Resultate
357 357 label_all_words: Alle Wörter
358 358 label_wiki: Wiki
359 359 label_wiki_edit: Wiki-Bearbeitung
360 360 label_wiki_edit_plural: Wiki-Bearbeitungen
361 361 label_wiki_page: Wiki-Seite
362 362 label_wiki_page_plural: Wiki-Seiten
363 363 label_index_by_title: Index by title
364 364 label_index_by_date: Index by date
365 365 label_current_version: Gegenwärtige Version
366 366 label_preview: Vorschau
367 367 label_feed_plural: Feeds
368 368 label_changes_details: Details aller Änderungen
369 369 label_issue_tracking: Tickets
370 370 label_spent_time: Aufgewendete Zeit
371 371 label_f_hour: %.2f Stunde
372 372 label_f_hour_plural: %.2f Stunden
373 373 label_time_tracking: Zeiterfassung
374 374 label_change_plural: Änderungen
375 375 label_statistics: Statistiken
376 376 label_commits_per_month: Übertragungen pro Monat
377 377 label_commits_per_author: Übertragungen pro Autor
378 378 label_view_diff: Unterschiede anzeigen
379 379 label_diff_inline: inline
380 380 label_diff_side_by_side: nebeneinander
381 381 label_options: Optionen
382 382 label_copy_workflow_from: Workflow kopieren von
383 383 label_permissions_report: Berechtigungsübersicht
384 384 label_watched_issues: Beobachtete Tickets
385 385 label_related_issues: Zugehörige Tickets
386 386 label_applied_status: Zugewiesener Status
387 387 label_loading: Lade...
388 388 label_relation_new: Neue Beziehung
389 389 label_relation_delete: Beziehung löschen
390 390 label_relates_to: Beziehung mit
391 391 label_duplicates: Duplikat von
392 392 label_blocks: Blockiert
393 393 label_blocked_by: Blockiert durch
394 394 label_precedes: Vorgänger von
395 395 label_follows: folgt
396 396 label_end_to_start: Ende - Anfang
397 397 label_end_to_end: Ende - Ende
398 398 label_start_to_start: Anfang - Anfang
399 399 label_start_to_end: Anfang - Ende
400 400 label_stay_logged_in: Angemeldet bleiben
401 401 label_disabled: gesperrt
402 402 label_show_completed_versions: Abgeschlossene Versionen anzeigen
403 403 label_me: ich
404 404 label_board: Forum
405 405 label_board_new: Neues Forum
406 406 label_board_plural: Foren
407 407 label_topic_plural: Themen
408 408 label_message_plural: Nachrichten
409 409 label_message_last: Letzte Nachricht
410 410 label_message_new: Neue Nachricht
411 411 label_reply_plural: Antworten
412 412 label_send_information: Sende Kontoinformationen zum Benutzer
413 413 label_year: Jahr
414 414 label_month: Monat
415 415 label_week: Woche
416 416 label_date_from: Von
417 417 label_date_to: Bis
418 418 label_language_based: Sprachabhängig
419 419 label_sort_by: Sortiert nach "%s"
420 420 label_send_test_email: Test-E-Mail senden
421 421 label_feeds_access_key_created_on: RSS-Zugriffsschlüssel vor %s erstellt
422 422 label_module_plural: Module
423 423 label_added_time_by: Von %s vor %s hinzugefügt
424 424 label_updated_time: Vor %s aktualisiert
425 425 label_jump_to_a_project: Jump to a project...
426 426
427 427 button_login: Anmelden
428 428 button_submit: OK
429 429 button_save: Speichern
430 430 button_check_all: Alles auswählen
431 431 button_uncheck_all: Alles abwählen
432 432 button_delete: Löschen
433 433 button_create: Anlegen
434 434 button_test: Testen
435 435 button_edit: Bearbeiten
436 436 button_add: Hinzufügen
437 437 button_change: Wechseln
438 438 button_apply: Anwenden
439 439 button_clear: Zurücksetzen
440 440 button_lock: Sperren
441 441 button_unlock: Entsperren
442 442 button_download: Download
443 443 button_list: Liste
444 444 button_view: Siehe
445 445 button_move: Verschieben
446 446 button_back: Zurück
447 447 button_cancel: Abbrechen
448 448 button_activate: Aktivieren
449 449 button_sort: Sortieren
450 450 button_log_time: Aufwand buchen
451 451 button_rollback: Auf diese Version zurücksetzen
452 452 button_watch: Beobachten
453 453 button_unwatch: Nicht beobachten
454 454 button_reply: Antworten
455 455 button_archive: Archivieren
456 456 button_unarchive: Entarchivieren
457 457 button_reset: Zurücksetzen
458 458 button_rename: Umbenennen
459 459
460 460 status_active: aktiv
461 461 status_registered: angemeldet
462 462 status_locked: gesperrt
463 463
464 464 text_select_mail_notifications: Aktionen, für die Mailbenachrichtigung aktiviert werden soll.
465 465 text_regexp_info: z. B. ^[A-Z0-9]+$
466 466 text_min_max_length_info: 0 heißt keine Beschränkung
467 467 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
468 468 text_workflow_edit: Workflow zum Bearbeiten auswählen
469 469 text_are_you_sure: Sind Sie sicher?
470 470 text_journal_changed: geändert von %s zu %s
471 471 text_journal_set_to: gestellt zu %s
472 472 text_journal_deleted: gelöscht
473 473 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
474 474 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
475 475 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
476 476 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
477 477 text_caracters_maximum: Max. %d Zeichen.
478 478 text_length_between: Länge zwischen %d und %d Zeichen.
479 479 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
480 480 text_unallowed_characters: Nicht erlaubte Zeichen
481 481 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
482 482 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
483 483 text_issue_added: Ticket %s wurde erstellt.
484 484 text_issue_updated: Ticket %s wurde aktualisiert.
485 485 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
486 486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 487 text_issue_category_destroy_assignments: Remove category assignments
488 488 text_issue_category_reassign_to: Reassing issues to this category
489 489
490 490 default_role_manager: Manager
491 491 default_role_developper: Developer
492 492 default_role_reporter: Reporter
493 493 default_tracker_bug: Fehler
494 494 default_tracker_feature: Feature
495 495 default_tracker_support: Support
496 496 default_issue_status_new: Neu
497 497 default_issue_status_assigned: Zugewiesen
498 498 default_issue_status_resolved: Gelöst
499 499 default_issue_status_feedback: Feedback
500 500 default_issue_status_closed: Erledigt
501 501 default_issue_status_rejected: Abgewiesen
502 502 default_doc_category_user: Benutzerdokumentation
503 503 default_doc_category_tech: Technische Dokumentation
504 504 default_priority_low: Niedrig
505 505 default_priority_normal: Normal
506 506 default_priority_high: Hoch
507 507 default_priority_urgent: Dringend
508 508 default_priority_immediate: Sofort
509 509 default_activity_design: Design
510 510 default_activity_development: Development
511 511
512 512 enumeration_issue_priorities: Ticket-Prioritäten
513 513 enumeration_doc_categories: Dokumentenkategorien
514 514 enumeration_activities: Aktivitäten (Zeiterfassung)
515 515 label_file_plural: Files
516 516 label_changeset_plural: Changesets
517 517 field_column_names: Columns
518 518 label_default_columns: Default columns
519 519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 520 setting_repositories_encodings: Repositories encodings
521 521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 523 label_no_change_option: (No change)
524 524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 525 label_theme: Theme
526 526 label_default: Default
527 527 label_search_titles_only: Search titles only
528 label_nobody: nobody
@@ -1,527 +1,528
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_name: '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 general_first_day_of_week: '7'
55 55
56 56 notice_account_updated: Account was successfully updated.
57 57 notice_account_invalid_creditentials: Invalid user or password
58 58 notice_account_password_updated: Password was successfully updated.
59 59 notice_account_wrong_password: Wrong password
60 60 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
61 61 notice_account_unknown_email: Unknown user.
62 62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
63 63 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
64 64 notice_account_activated: Your account has been activated. You can now log in.
65 65 notice_successful_create: Successful creation.
66 66 notice_successful_update: Successful update.
67 67 notice_successful_delete: Successful deletion.
68 68 notice_successful_connection: Successful connection.
69 69 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
70 70 notice_locking_conflict: Data have been updated by another user.
71 71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
72 72 notice_not_authorized: You are not authorized to access this page.
73 73 notice_email_sent: An email was sent to %s
74 74 notice_email_error: An error occurred while sending mail (%s)
75 75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76 76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
77 77 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
78 78
79 79 mail_subject_lost_password: Your Redmine password
80 80 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
81 81 mail_subject_register: Redmine account activation
82 82 mail_body_register: 'To activate your Redmine account, click on the following link:'
83 83
84 84 gui_validation_error: 1 error
85 85 gui_validation_error_plural: %d errors
86 86
87 87 field_name: Name
88 88 field_description: Description
89 89 field_summary: Summary
90 90 field_is_required: Required
91 91 field_firstname: Firstname
92 92 field_lastname: Lastname
93 93 field_mail: Email
94 94 field_filename: File
95 95 field_filesize: Size
96 96 field_downloads: Downloads
97 97 field_author: Author
98 98 field_created_on: Created
99 99 field_updated_on: Updated
100 100 field_field_format: Format
101 101 field_is_for_all: For all projects
102 102 field_possible_values: Possible values
103 103 field_regexp: Regular expression
104 104 field_min_length: Minimum length
105 105 field_max_length: Maximum length
106 106 field_value: Value
107 107 field_category: Category
108 108 field_title: Title
109 109 field_project: Project
110 110 field_issue: Issue
111 111 field_status: Status
112 112 field_notes: Notes
113 113 field_is_closed: Issue closed
114 114 field_is_default: Default value
115 115 field_html_color: Color
116 116 field_tracker: Tracker
117 117 field_subject: Subject
118 118 field_due_date: Due date
119 119 field_assigned_to: Assigned to
120 120 field_priority: Priority
121 121 field_fixed_version: Fixed version
122 122 field_user: User
123 123 field_role: Role
124 124 field_homepage: Homepage
125 125 field_is_public: Public
126 126 field_parent: Subproject of
127 127 field_is_in_chlog: Issues displayed in changelog
128 128 field_is_in_roadmap: Issues displayed in roadmap
129 129 field_login: Login
130 130 field_mail_notification: Mail notifications
131 131 field_admin: Administrator
132 132 field_last_login_on: Last connection
133 133 field_language: Language
134 134 field_effective_date: Date
135 135 field_password: Password
136 136 field_new_password: New password
137 137 field_password_confirmation: Confirmation
138 138 field_version: Version
139 139 field_type: Type
140 140 field_host: Host
141 141 field_port: Port
142 142 field_account: Account
143 143 field_base_dn: Base DN
144 144 field_attr_login: Login attribute
145 145 field_attr_firstname: Firstname attribute
146 146 field_attr_lastname: Lastname attribute
147 147 field_attr_mail: Email attribute
148 148 field_onthefly: On-the-fly user creation
149 149 field_start_date: Start
150 150 field_done_ratio: %% Done
151 151 field_auth_source: Authentication mode
152 152 field_hide_mail: Hide my email address
153 153 field_comments: Comment
154 154 field_url: URL
155 155 field_start_page: Start page
156 156 field_subproject: Subproject
157 157 field_hours: Hours
158 158 field_activity: Activity
159 159 field_spent_on: Date
160 160 field_identifier: Identifier
161 161 field_is_filter: Used as a filter
162 162 field_issue_to_id: Related issue
163 163 field_delay: Delay
164 164 field_assignable: Issues can be assigned to this role
165 165 field_redirect_existing_links: Redirect existing links
166 166 field_estimated_hours: Estimated time
167 167 field_column_names: Columns
168 168
169 169 setting_app_title: Application title
170 170 setting_app_subtitle: Application subtitle
171 171 setting_welcome_text: Welcome text
172 172 setting_default_language: Default language
173 173 setting_login_required: Authent. required
174 174 setting_self_registration: Self-registration enabled
175 175 setting_attachment_max_size: Attachment max. size
176 176 setting_issues_export_limit: Issues export limit
177 177 setting_mail_from: Emission mail address
178 178 setting_host_name: Host name
179 179 setting_text_formatting: Text formatting
180 180 setting_wiki_compression: Wiki history compression
181 181 setting_feeds_limit: Feed content limit
182 182 setting_autofetch_changesets: Autofetch commits
183 183 setting_sys_api_enabled: Enable WS for repository management
184 184 setting_commit_ref_keywords: Referencing keywords
185 185 setting_commit_fix_keywords: Fixing keywords
186 186 setting_autologin: Autologin
187 187 setting_date_format: Date format
188 188 setting_cross_project_issue_relations: Allow cross-project issue relations
189 189 setting_issue_list_default_columns: Default columns displayed on the issue list
190 190 setting_repositories_encodings: Repositories encodings
191 191
192 192 label_user: User
193 193 label_user_plural: Users
194 194 label_user_new: New user
195 195 label_project: Project
196 196 label_project_new: New project
197 197 label_project_plural: Projects
198 198 label_project_all: All Projects
199 199 label_project_latest: Latest projects
200 200 label_issue: Issue
201 201 label_issue_new: New issue
202 202 label_issue_plural: Issues
203 203 label_issue_view_all: View all issues
204 204 label_document: Document
205 205 label_document_new: New document
206 206 label_document_plural: Documents
207 207 label_role: Role
208 208 label_role_plural: Roles
209 209 label_role_new: New role
210 210 label_role_and_permissions: Roles and permissions
211 211 label_member: Member
212 212 label_member_new: New member
213 213 label_member_plural: Members
214 214 label_tracker: Tracker
215 215 label_tracker_plural: Trackers
216 216 label_tracker_new: New tracker
217 217 label_workflow: Workflow
218 218 label_issue_status: Issue status
219 219 label_issue_status_plural: Issue statuses
220 220 label_issue_status_new: New status
221 221 label_issue_category: Issue category
222 222 label_issue_category_plural: Issue categories
223 223 label_issue_category_new: New category
224 224 label_custom_field: Custom field
225 225 label_custom_field_plural: Custom fields
226 226 label_custom_field_new: New custom field
227 227 label_enumerations: Enumerations
228 228 label_enumeration_new: New value
229 229 label_information: Information
230 230 label_information_plural: Information
231 231 label_please_login: Please login
232 232 label_register: Register
233 233 label_password_lost: Lost password
234 234 label_home: Home
235 235 label_my_page: My page
236 236 label_my_account: My account
237 237 label_my_projects: My projects
238 238 label_administration: Administration
239 239 label_login: Sign in
240 240 label_logout: Sign out
241 241 label_help: Help
242 242 label_reported_issues: Reported issues
243 243 label_assigned_to_me_issues: Issues assigned to me
244 244 label_last_login: Last connection
245 245 label_last_updates: Last updated
246 246 label_last_updates_plural: %d last updated
247 247 label_registered_on: Registered on
248 248 label_activity: Activity
249 249 label_new: New
250 250 label_logged_as: Logged as
251 251 label_environment: Environment
252 252 label_authentication: Authentication
253 253 label_auth_source: Authentication mode
254 254 label_auth_source_new: New authentication mode
255 255 label_auth_source_plural: Authentication modes
256 256 label_subproject_plural: Subprojects
257 257 label_min_max_length: Min - Max length
258 258 label_list: List
259 259 label_date: Date
260 260 label_integer: Integer
261 261 label_boolean: Boolean
262 262 label_string: Text
263 263 label_text: Long text
264 264 label_attribute: Attribute
265 265 label_attribute_plural: Attributes
266 266 label_download: %d Download
267 267 label_download_plural: %d Downloads
268 268 label_no_data: No data to display
269 269 label_change_status: Change status
270 270 label_history: History
271 271 label_attachment: File
272 272 label_attachment_new: New file
273 273 label_attachment_delete: Delete file
274 274 label_attachment_plural: Files
275 275 label_report: Report
276 276 label_report_plural: Reports
277 277 label_news: News
278 278 label_news_new: Add news
279 279 label_news_plural: News
280 280 label_news_latest: Latest news
281 281 label_news_view_all: View all news
282 282 label_change_log: Change log
283 283 label_settings: Settings
284 284 label_overview: Overview
285 285 label_version: Version
286 286 label_version_new: New version
287 287 label_version_plural: Versions
288 288 label_confirmation: Confirmation
289 289 label_export_to: Export to
290 290 label_read: Read...
291 291 label_public_projects: Public projects
292 292 label_open_issues: open
293 293 label_open_issues_plural: open
294 294 label_closed_issues: closed
295 295 label_closed_issues_plural: closed
296 296 label_total: Total
297 297 label_permissions: Permissions
298 298 label_current_status: Current status
299 299 label_new_statuses_allowed: New statuses allowed
300 300 label_all: all
301 301 label_none: none
302 label_nobody: nobody
302 303 label_next: Next
303 304 label_previous: Previous
304 305 label_used_by: Used by
305 306 label_details: Details
306 307 label_add_note: Add a note
307 308 label_per_page: Per page
308 309 label_calendar: Calendar
309 310 label_months_from: months from
310 311 label_gantt: Gantt
311 312 label_internal: Internal
312 313 label_last_changes: last %d changes
313 314 label_change_view_all: View all changes
314 315 label_personalize_page: Personalize this page
315 316 label_comment: Comment
316 317 label_comment_plural: Comments
317 318 label_comment_add: Add a comment
318 319 label_comment_added: Comment added
319 320 label_comment_delete: Delete comments
320 321 label_query: Custom query
321 322 label_query_plural: Custom queries
322 323 label_query_new: New query
323 324 label_filter_add: Add filter
324 325 label_filter_plural: Filters
325 326 label_equals: is
326 327 label_not_equals: is not
327 328 label_in_less_than: in less than
328 329 label_in_more_than: in more than
329 330 label_in: in
330 331 label_today: today
331 332 label_this_week: this week
332 333 label_less_than_ago: less than days ago
333 334 label_more_than_ago: more than days ago
334 335 label_ago: days ago
335 336 label_contains: contains
336 337 label_not_contains: doesn't contain
337 338 label_day_plural: days
338 339 label_repository: Repository
339 340 label_browse: Browse
340 341 label_modification: %d change
341 342 label_modification_plural: %d changes
342 343 label_revision: Revision
343 344 label_revision_plural: Revisions
344 345 label_added: added
345 346 label_modified: modified
346 347 label_deleted: deleted
347 348 label_latest_revision: Latest revision
348 349 label_latest_revision_plural: Latest revisions
349 350 label_view_revisions: View revisions
350 351 label_max_size: Maximum size
351 352 label_on: 'on'
352 353 label_sort_highest: Move to top
353 354 label_sort_higher: Move up
354 355 label_sort_lower: Move down
355 356 label_sort_lowest: Move to bottom
356 357 label_roadmap: Roadmap
357 358 label_roadmap_due_in: Due in
358 359 label_roadmap_overdue: %s late
359 360 label_roadmap_no_issues: No issues for this version
360 361 label_search: Search
361 362 label_result_plural: Results
362 363 label_all_words: All words
363 364 label_wiki: Wiki
364 365 label_wiki_edit: Wiki edit
365 366 label_wiki_edit_plural: Wiki edits
366 367 label_wiki_page: Wiki page
367 368 label_wiki_page_plural: Wiki pages
368 369 label_index_by_title: Index by title
369 370 label_index_by_date: Index by date
370 371 label_current_version: Current version
371 372 label_preview: Preview
372 373 label_feed_plural: Feeds
373 374 label_changes_details: Details of all changes
374 375 label_issue_tracking: Issue tracking
375 376 label_spent_time: Spent time
376 377 label_f_hour: %.2f hour
377 378 label_f_hour_plural: %.2f hours
378 379 label_time_tracking: Time tracking
379 380 label_change_plural: Changes
380 381 label_statistics: Statistics
381 382 label_commits_per_month: Commits per month
382 383 label_commits_per_author: Commits per author
383 384 label_view_diff: View differences
384 385 label_diff_inline: inline
385 386 label_diff_side_by_side: side by side
386 387 label_options: Options
387 388 label_copy_workflow_from: Copy workflow from
388 389 label_permissions_report: Permissions report
389 390 label_watched_issues: Watched issues
390 391 label_related_issues: Related issues
391 392 label_applied_status: Applied status
392 393 label_loading: Loading...
393 394 label_relation_new: New relation
394 395 label_relation_delete: Delete relation
395 396 label_relates_to: related to
396 397 label_duplicates: duplicates
397 398 label_blocks: blocks
398 399 label_blocked_by: blocked by
399 400 label_precedes: precedes
400 401 label_follows: follows
401 402 label_end_to_start: end to start
402 403 label_end_to_end: end to end
403 404 label_start_to_start: start to start
404 405 label_start_to_end: start to end
405 406 label_stay_logged_in: Stay logged in
406 407 label_disabled: disabled
407 408 label_show_completed_versions: Show completed versions
408 409 label_me: me
409 410 label_board: Forum
410 411 label_board_new: New forum
411 412 label_board_plural: Forums
412 413 label_topic_plural: Topics
413 414 label_message_plural: Messages
414 415 label_message_last: Last message
415 416 label_message_new: New message
416 417 label_reply_plural: Replies
417 418 label_send_information: Send account information to the user
418 419 label_year: Year
419 420 label_month: Month
420 421 label_week: Week
421 422 label_date_from: From
422 423 label_date_to: To
423 424 label_language_based: Language based
424 425 label_sort_by: Sort by "%s"
425 426 label_send_test_email: Send a test email
426 427 label_feeds_access_key_created_on: RSS access key created %s ago
427 428 label_module_plural: Modules
428 429 label_added_time_by: Added by %s %s ago
429 430 label_updated_time: Updated %s ago
430 431 label_jump_to_a_project: Jump to a project...
431 432 label_file_plural: Files
432 433 label_changeset_plural: Changesets
433 434 label_default_columns: Default columns
434 435 label_no_change_option: (No change)
435 436 label_bulk_edit_selected_issues: Bulk edit selected issues
436 437 label_theme: Theme
437 438 label_default: Default
438 439 label_search_titles_only: Search titles only
439 440
440 441 button_login: Login
441 442 button_submit: Submit
442 443 button_save: Save
443 444 button_check_all: Check all
444 445 button_uncheck_all: Uncheck all
445 446 button_delete: Delete
446 447 button_create: Create
447 448 button_test: Test
448 449 button_edit: Edit
449 450 button_add: Add
450 451 button_change: Change
451 452 button_apply: Apply
452 453 button_clear: Clear
453 454 button_lock: Lock
454 455 button_unlock: Unlock
455 456 button_download: Download
456 457 button_list: List
457 458 button_view: View
458 459 button_move: Move
459 460 button_back: Back
460 461 button_cancel: Cancel
461 462 button_activate: Activate
462 463 button_sort: Sort
463 464 button_log_time: Log time
464 465 button_rollback: Rollback to this version
465 466 button_watch: Watch
466 467 button_unwatch: Unwatch
467 468 button_reply: Reply
468 469 button_archive: Archive
469 470 button_unarchive: Unarchive
470 471 button_reset: Reset
471 472 button_rename: Rename
472 473
473 474 status_active: active
474 475 status_registered: registered
475 476 status_locked: locked
476 477
477 478 text_select_mail_notifications: Select actions for which mail notifications should be sent.
478 479 text_regexp_info: eg. ^[A-Z0-9]+$
479 480 text_min_max_length_info: 0 means no restriction
480 481 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
481 482 text_workflow_edit: Select a role and a tracker to edit the workflow
482 483 text_are_you_sure: Are you sure ?
483 484 text_journal_changed: changed from %s to %s
484 485 text_journal_set_to: set to %s
485 486 text_journal_deleted: deleted
486 487 text_tip_task_begin_day: task beginning this day
487 488 text_tip_task_end_day: task ending this day
488 489 text_tip_task_begin_end_day: task beginning and ending this day
489 490 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
490 491 text_caracters_maximum: %d characters maximum.
491 492 text_length_between: Length between %d and %d characters.
492 493 text_tracker_no_workflow: No workflow defined for this tracker
493 494 text_unallowed_characters: Unallowed characters
494 495 text_comma_separated: Multiple values allowed (comma separated).
495 496 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
496 497 text_issue_added: Issue %s has been reported.
497 498 text_issue_updated: Issue %s has been updated.
498 499 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
499 500 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
500 501 text_issue_category_destroy_assignments: Remove category assignments
501 502 text_issue_category_reassign_to: Reassign issues to this category
502 503
503 504 default_role_manager: Manager
504 505 default_role_developper: Developer
505 506 default_role_reporter: Reporter
506 507 default_tracker_bug: Bug
507 508 default_tracker_feature: Feature
508 509 default_tracker_support: Support
509 510 default_issue_status_new: New
510 511 default_issue_status_assigned: Assigned
511 512 default_issue_status_resolved: Resolved
512 513 default_issue_status_feedback: Feedback
513 514 default_issue_status_closed: Closed
514 515 default_issue_status_rejected: Rejected
515 516 default_doc_category_user: User documentation
516 517 default_doc_category_tech: Technical documentation
517 518 default_priority_low: Low
518 519 default_priority_normal: Normal
519 520 default_priority_high: High
520 521 default_priority_urgent: Urgent
521 522 default_priority_immediate: Immediate
522 523 default_activity_design: Design
523 524 default_activity_development: Development
524 525
525 526 enumeration_issue_priorities: Issue priorities
526 527 enumeration_doc_categories: Document categories
527 528 enumeration_activities: Activities (time tracking)
@@ -1,530 +1,531
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: una hora aproximadamente
11 11 actionview_datehelper_time_in_words_hour_about_plural: aproximadamente %d horas
12 12 actionview_datehelper_time_in_words_hour_about_single: una hora aproximadamente
13 13 actionview_datehelper_time_in_words_minute: 1 minuto
14 14 actionview_datehelper_time_in_words_minute_half: medio minuto
15 15 actionview_datehelper_time_in_words_minute_less_than: menos de un 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 de un segundo
19 19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 20 actionview_instancetag_blank_option: Por favor selecciona
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: es demasiado largo
30 30 activerecord_error_too_short: es demasiado corto
31 31 activerecord_error_wrong_length: la longitud es incorrecta
32 32 activerecord_error_taken: has already been taken
33 33 activerecord_error_not_a_number: no es un número
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: no pertenece al mismo proyecto
37 37 activerecord_error_circular_dependency: Esta relación podría crear una dependencia anidada
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_name: 'Español'
50 50 general_csv_separator: ';'
51 51 general_csv_encoding: ISO-8859-15
52 52 general_pdf_encoding: ISO-8859-15
53 53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Cuenta creada correctamente.
57 57 notice_account_invalid_creditentials: Inválido usuario o contraseña
58 58 notice_account_password_updated: Contraseña modificada correctamente.
59 59 notice_account_wrong_password: Contraseña incorrecta
60 60 notice_account_register_done: Cuenta creada correctamente.
61 61 notice_account_unknown_email: Usuario desconocido.
62 62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
63 63 notice_account_lost_email_sent: Un correo con instrucciones para elegir una nueva contraseña le ha sido enviado.
64 64 notice_account_activated: Tu cuenta ha sido activada. Ahora se encuentra conectado.
65 65 notice_successful_create: Creación correcta.
66 66 notice_successful_update: Modificación correcta.
67 67 notice_successful_delete: Borrado correcto.
68 68 notice_successful_connection: Conexión correcta.
69 69 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
70 70 notice_locking_conflict: Los datos han sido modificados por otro usuario.
71 71 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
72 72 notice_not_authorized: No tiene autorización para acceder a esta página.
73 73
74 74 mail_subject_lost_password: Tu contraseña del CIYAT - Gestor de Solicitudes
75 75 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
76 76 mail_subject_register: Activación de la cuenta del CIYAT - Gestor de Solicitudes
77 77 mail_body_register: 'To activate your Redmine account, click on the following link:'
78 78
79 79 gui_validation_error: 1 error
80 80 gui_validation_error_plural: %d errores
81 81
82 82 field_name: Nombre
83 83 field_description: Descripción
84 84 field_summary: Resumen
85 85 field_is_required: Obligatorio
86 86 field_firstname: Nombre
87 87 field_lastname: Apellido
88 88 field_mail: Email
89 89 field_filename: Fichero
90 90 field_filesize: Tamaño
91 91 field_downloads: Descargas
92 92 field_author: Autor
93 93 field_created_on: Creado
94 94 field_updated_on: Actualizado
95 95 field_field_format: Formato
96 96 field_is_for_all: Para todos los proyectos
97 97 field_possible_values: Valores posibles
98 98 field_regexp: Expresión regular
99 99 field_min_length: Longitud mínima
100 100 field_max_length: Longitud máxima
101 101 field_value: Valor
102 102 field_category: Categoría
103 103 field_title: Título
104 104 field_project: Proyecto
105 105 field_issue: Petición
106 106 field_status: Estado
107 107 field_notes: Notas
108 108 field_is_closed: Petición resuelta
109 109 field_is_default: Estado por defecto
110 110 field_html_color: Color
111 111 field_tracker: Tracker
112 112 field_subject: Tema
113 113 field_due_date: Fecha debida
114 114 field_assigned_to: Asignado a
115 115 field_priority: Prioridad
116 116 field_fixed_version: Versión corregida
117 117 field_user: Usuario
118 118 field_role: Perfil
119 119 field_homepage: Sitio web
120 120 field_is_public: Público
121 121 field_parent: Proyecto secundario de
122 122 field_is_in_chlog: Consultar las peticiones en el histórico
123 123 field_is_in_roadmap: Consultar las peticiones en el roadmap
124 124 field_login: Identificador
125 125 field_mail_notification: Notificación por mail
126 126 field_admin: Administrador
127 127 field_last_login_on: Última conexión
128 128 field_language: Idioma
129 129 field_effective_date: Fecha
130 130 field_password: Contraseña
131 131 field_new_password: Nueva contraseña
132 132 field_password_confirmation: Confirmación
133 133 field_version: Versión
134 134 field_type: Tipo
135 135 field_host: Anfitrión
136 136 field_port: Puerto
137 137 field_account: Cuenta
138 138 field_base_dn: Base DN
139 139 field_attr_login: Cualidad del identificador
140 140 field_attr_firstname: Cualidad del nombre
141 141 field_attr_lastname: Cualidad del apellido
142 142 field_attr_mail: Cualidad del Email
143 143 field_onthefly: Creación del usuario On-the-fly
144 144 field_start_date: Comienzo
145 145 field_done_ratio: %% Realizado
146 146 field_auth_source: Modo de la autentificación
147 147 field_hide_mail: Ocultar mi dirección de email
148 148 field_comment: Comentario
149 149 field_url: URL
150 150 field_start_page: Página principal
151 151 field_subproject: Proyecto secundario
152 152 field_hours: Horas
153 153 field_activity: Actividad
154 154 field_spent_on: Fecha
155 155 field_identifier: Identificador
156 156 field_is_filter: Usado como filtro
157 157 field_issue_to_id: Petición Relacionada
158 158 field_delay: Retraso
159 159
160 160 setting_app_title: Título del aplicación
161 161 setting_app_subtitle: Subtítulo del aplicación
162 162 setting_welcome_text: Texto bienvenida
163 163 setting_default_language: Idioma por defecto
164 164 setting_login_required: Autentif. requerida
165 165 setting_self_registration: Registro permitido
166 166 setting_attachment_max_size: Tamaño máximo del fichero
167 167 setting_issues_export_limit: Issues export limit
168 168 setting_mail_from: Email de la emisión
169 169 setting_host_name: Nombre de anfitrión
170 170 setting_text_formatting: Formato de texto
171 171 setting_wiki_compression: Compresión de la historia de Wiki
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 setting_date_format: Formato de la fecha
179 179
180 180 label_user: Usuario
181 181 label_user_plural: Usuarios
182 182 label_user_new: Nuevo usuario
183 183 label_project: Proyecto
184 184 label_project_new: Nuevo proyecto
185 185 label_project_plural: Proyectos
186 186 label_project_all: Todos los proyectos
187 187 label_project_latest: Los proyectos más últimos
188 188 label_issue: Petición
189 189 label_issue_new: Nueva petición
190 190 label_issue_plural: Peticiones
191 191 label_issue_view_all: Ver todas las peticiones
192 192 label_document: Documento
193 193 label_document_new: Nuevo documento
194 194 label_document_plural: Documentos
195 195 label_role: Perfil
196 196 label_role_plural: Perfiles
197 197 label_role_new: Nuevo perfil
198 198 label_role_and_permissions: Perfiles y permisos
199 199 label_member: Miembro
200 200 label_member_new: Nuevo miembro
201 201 label_member_plural: Miembros
202 202 label_tracker: Tracker
203 203 label_tracker_plural: Trackers
204 204 label_tracker_new: Nuevo tracker
205 205 label_workflow: Workflow
206 206 label_issue_status: Estado de petición
207 207 label_issue_status_plural: Estados de las peticiones
208 208 label_issue_status_new: Nuevo estado
209 209 label_issue_category: Categoría de las peticiones
210 210 label_issue_category_plural: Categorías de las peticiones
211 211 label_issue_category_new: Nueva categoría
212 212 label_custom_field: Campo personalizado
213 213 label_custom_field_plural: Campos personalizados
214 214 label_custom_field_new: Nuevo campo personalizado
215 215 label_enumerations: Listas de valores
216 216 label_enumeration_new: Nuevo valor
217 217 label_information: Informacion
218 218 label_information_plural: Informaciones
219 219 label_please_login: Conexión
220 220 label_register: Registrar
221 221 label_password_lost: ¿Olvidaste la contraseña?
222 222 label_home: Principal
223 223 label_my_page: Mi página
224 224 label_my_account: Mi cuenta
225 225 label_my_projects: Mis proyectos
226 226 label_administration: Administración
227 227 label_login: Conexión
228 228 label_logout: Desconexión
229 229 label_help: Ayuda
230 230 label_reported_issues: Peticiones registradas
231 231 label_assigned_to_me_issues: Peticiones que me están asignadas
232 232 label_last_login: Última conexión
233 233 label_last_updates: Actualizado
234 234 label_last_updates_plural: %d Actualizados
235 235 label_registered_on: Inscrito el
236 236 label_activity: Actividad
237 237 label_new: Nuevo
238 238 label_logged_as: Conectado como
239 239 label_environment: Entorno
240 240 label_authentication: Autentificación
241 241 label_auth_source: Modo de la autentificación
242 242 label_auth_source_new: Nuevo modo de la autentificación
243 243 label_auth_source_plural: Modos de la autentificación
244 244 label_subproject_plural: Proyectos secundarios
245 245 label_min_max_length: Longitud mín - máx
246 246 label_list: Lista
247 247 label_date: Fecha
248 248 label_integer: Número
249 249 label_boolean: Boleano
250 250 label_string: Texto
251 251 label_text: Texto largo
252 252 label_attribute: Cualidad
253 253 label_attribute_plural: Cualidades
254 254 label_download: %d Descarga
255 255 label_download_plural: %d Descargas
256 256 label_no_data: Ningun dato a mostrar
257 257 label_change_status: Cambiar el estado
258 258 label_history: Histórico
259 259 label_attachment: Fichero
260 260 label_attachment_new: Nuevo fichero
261 261 label_attachment_delete: Suprimir el fichero
262 262 label_attachment_plural: Ficheros
263 263 label_report: Informe
264 264 label_report_plural: Informes
265 265 label_news: Noticia
266 266 label_news_new: Nueva noticia
267 267 label_news_plural: Noticias
268 268 label_news_latest: Últimas noticias
269 269 label_news_view_all: Ver todas las noticias
270 270 label_change_log: Cambios
271 271 label_settings: Configuración
272 272 label_overview: Vistazo
273 273 label_version: Versión
274 274 label_version_new: Nueva versión
275 275 label_version_plural: Versiones
276 276 label_confirmation: Confirmación
277 277 label_export_to: Exportar a
278 278 label_read: Leer...
279 279 label_public_projects: Proyectos públicos
280 280 label_open_issues: abierta
281 281 label_open_issues_plural: abiertas
282 282 label_closed_issues: cerrada
283 283 label_closed_issues_plural: cerradas
284 284 label_total: Total
285 285 label_permissions: Permisos
286 286 label_current_status: Estado actual
287 287 label_new_statuses_allowed: Nuevos estados autorizados
288 288 label_all: todos
289 289 label_none: ninguno
290 290 label_next: Próximo
291 291 label_previous: Anterior
292 292 label_used_by: Utilizado por
293 293 label_details: Detalles
294 294 label_add_note: Agregar una nota
295 295 label_per_page: Por la página
296 296 label_calendar: Calendario
297 297 label_months_from: meses de
298 298 label_gantt: Gantt
299 299 label_internal: Interno
300 300 label_last_changes: %d cambios del último
301 301 label_change_view_all: Ver todos los cambios
302 302 label_personalize_page: Personalizar esta página
303 303 label_comment: Comentario
304 304 label_comment_plural: Comentarios
305 305 label_comment_add: Añadir un comentario
306 306 label_comment_added: Comentario añadido
307 307 label_comment_delete: Suprimir comentarios
308 308 label_query: Pregunta personalizada
309 309 label_query_plural: Preguntas personalizadas
310 310 label_query_new: Nueva pregunta
311 311 label_filter_add: Agregar el filtro
312 312 label_filter_plural: Filtros
313 313 label_equals: igual
314 314 label_not_equals: no igual
315 315 label_in_less_than: en menos que
316 316 label_in_more_than: en más que
317 317 label_in: en
318 318 label_today: hoy
319 319 label_less_than_ago: hace menos de
320 320 label_more_than_ago: hace más de
321 321 label_ago: hace
322 322 label_contains: contiene
323 323 label_not_contains: no contiene
324 324 label_day_plural: días
325 325 label_repository: Depósito SVN
326 326 label_browse: Hojear
327 327 label_modification: %d modificación
328 328 label_modification_plural: %d modificaciones
329 329 label_revision: Revisión
330 330 label_revision_plural: Revisiones
331 331 label_added: añadido
332 332 label_modified: modificado
333 333 label_deleted: suprimido
334 334 label_latest_revision: La revisión más actual
335 335 label_latest_revision_plural: Las revisiones más actuales
336 336 label_view_revisions: Ver las revisiones
337 337 label_max_size: Tamaño máximo
338 338 label_on: en
339 339 label_sort_highest: Primero
340 340 label_sort_higher: Subir
341 341 label_sort_lower: Bajar
342 342 label_sort_lowest: Último
343 343 label_roadmap: Roadmap
344 344 label_roadmap_due_in: Realizado en
345 345 label_roadmap_no_issues: No hay peticiones para esta versión
346 346 label_search: Búsqueda
347 347 label_result: %d resultado
348 348 label_result_plural: %d resultados
349 349 label_all_words: Todas las palabras
350 350 label_wiki: Wiki
351 351 label_wiki_edit: Wiki edicción
352 352 label_wiki_edit_plural: Wiki edicciones
353 353 label_wiki_page: Wiki página
354 354 label_wiki_page_plural: Wiki páginas
355 355 label_page_index: Índice
356 356 label_current_version: Versión actual
357 357 label_preview: Previo
358 358 label_feed_plural: Feeds
359 359 label_changes_details: Detalles de todos los cambios
360 360 label_issue_tracking: Petición tracking
361 361 label_spent_time: Tiempo dedicado
362 362 label_f_hour: %.2f hora
363 363 label_f_hour_plural: %.2f horas
364 364 label_time_tracking: Tiempo tracking
365 365 label_change_plural: Cambios
366 366 label_statistics: Estadísticas
367 367 label_commits_per_month: Commits por mes
368 368 label_commits_per_author: Commits por autor
369 369 label_view_diff: Ver diferencias
370 370 label_diff_inline: inline
371 371 label_diff_side_by_side: side by side
372 372 label_options: Opciones
373 373 label_copy_workflow_from: Copiar workflow desde
374 374 label_permissions_report: Informe de permisos
375 375 label_watched_issues: Peticiones monitorizadas
376 376 label_related_issues: Peticiones relacionadas
377 377 label_applied_status: Aplicar estado
378 378 label_loading: Cargando...
379 379 label_relation_new: Nueva relación
380 380 label_relation_delete: Eliminar relación
381 381 label_relates_to: relacionado a
382 382 label_duplicates: duplicados
383 383 label_blocks: bloques
384 384 label_blocked_by: bloqueado por
385 385 label_precedes: anteriores
386 386 label_follows: siguientes
387 387 label_end_to_start: fin a principio
388 388 label_end_to_end: fin a fin
389 389 label_start_to_start: principio a principio
390 390 label_start_to_end: principio a fin
391 391 label_stay_logged_in: Stay logged in
392 392 label_disabled: deshabilitado
393 393 label_show_completed_versions: Muestra las versiones completas
394 394 label_me: me
395 395 label_board: Forum
396 396 label_board_new: Nuevo forum
397 397 label_board_plural: Forums
398 398 label_topic_plural: Topics
399 399 label_message_plural: Mensajes
400 400 label_message_last: Último mensaje
401 401 label_message_new: Nuevo mensaje
402 402 label_reply_plural: Respuestas
403 403 label_send_information: Enviada información de la cuenta al usuario
404 404 label_year: Año
405 405 label_month: Mes
406 406 label_week: Semana
407 407 label_date_from: Desde
408 408 label_date_to: Hasta
409 409 label_language_based: Idioma basado
410 410
411 411 button_login: Conexión
412 412 button_submit: Aceptar
413 413 button_save: Validar
414 414 button_check_all: Seleccionar todo
415 415 button_uncheck_all: No seleccionar nada
416 416 button_delete: Suprimir
417 417 button_create: Crear
418 418 button_test: Testar
419 419 button_edit: Modificar
420 420 button_add: Añadir
421 421 button_change: Cambiar
422 422 button_apply: Aceptar
423 423 button_clear: Anular
424 424 button_lock: Bloquear
425 425 button_unlock: Desbloquear
426 426 button_download: Descargar
427 427 button_list: Listar
428 428 button_view: Ver
429 429 button_move: Mover
430 430 button_back: Atrás
431 431 button_cancel: Cancelar
432 432 button_activate: Activar
433 433 button_sort: Clasificar
434 434 button_log_time: Tiempo dedicado
435 435 button_rollback: Volver a esta versión
436 436 button_watch: Monitorizar
437 437 button_unwatch: No monitorizar
438 438 button_reply: Responder
439 439 button_archive: Archivar
440 440 button_unarchive: Desarchivar
441 441
442 442 status_active: activo
443 443 status_registered: registrado
444 444 status_locked: bloqueado
445 445
446 446 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
447 447 text_regexp_info: eg. ^[A-Z0-9]+$
448 448 text_min_max_length_info: 0 para ninguna restricción
449 449 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
450 450 text_workflow_edit: Seleccionar un workflow para actualizar
451 451 text_are_you_sure: ¿ Estás seguro ?
452 452 text_journal_changed: cambiado de %s a %s
453 453 text_journal_set_to: fijado a %s
454 454 text_journal_deleted: suprimido
455 455 text_tip_task_begin_day: tarea que comienza este día
456 456 text_tip_task_end_day: tarea que termina este día
457 457 text_tip_task_begin_end_day: tarea que comienza y termina este día
458 458 text_project_identifier_info: 'Letras minúsculas (a-z), números y signos de puntuación permitidos.<br />Una vez guardado, el identificador no puede modificarse.'
459 459 text_caracters_maximum: %d caracteres máximo.
460 460 text_length_between: Longitud entre %d y %d caracteres.
461 461 text_tracker_no_workflow: No hay ningún workflow definido para este tracker
462 462 text_unallowed_characters: Caracteres no permitidos
463 463 text_comma_separated: Múltiples valores permitidos (separados por coma).
464 464 text_issues_ref_in_commit_messages: Referencia y petición de corrección en los mensajes
465 465
466 466 default_role_manager: Manager
467 467 default_role_developper: Desarrollador
468 468 default_role_reporter: Informador
469 469 default_tracker_bug: Anomalía
470 470 default_tracker_feature: Evolución
471 471 default_tracker_support: Asistencia
472 472 default_issue_status_new: Nuevo
473 473 default_issue_status_assigned: Asignada
474 474 default_issue_status_resolved: Resuelta
475 475 default_issue_status_feedback: Comentario
476 476 default_issue_status_closed: Cerrada
477 477 default_issue_status_rejected: Rechazada
478 478 default_doc_category_user: Documentación del usuario
479 479 default_doc_category_tech: Documentación tecnica
480 480 default_priority_low: Bajo
481 481 default_priority_normal: Normal
482 482 default_priority_high: Alto
483 483 default_priority_urgent: Urgente
484 484 default_priority_immediate: Inmediata
485 485 default_activity_design: Diseño
486 486 default_activity_development: Desarrollo
487 487
488 488 enumeration_issue_priorities: Prioridad de las peticiones
489 489 enumeration_doc_categories: Categorías del documento
490 490 enumeration_activities: Actividades (tiempo dedicado)
491 491 label_index_by_date: Index by date
492 492 field_column_names: Columns
493 493 button_rename: Rename
494 494 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
495 495 label_feeds_access_key_created_on: RSS access key created %s ago
496 496 label_default_columns: Default columns
497 497 setting_cross_project_issue_relations: Allow cross-project issue relations
498 498 label_roadmap_overdue: %s late
499 499 label_module_plural: Modules
500 500 label_this_week: this week
501 501 label_index_by_title: Index by title
502 502 label_jump_to_a_project: Jump to a project...
503 503 field_assignable: Issues can be assigned to this role
504 504 label_sort_by: Sort by "%s"
505 505 setting_issue_list_default_columns: Default columns displayed on the issue list
506 506 text_issue_updated: Issue %s has been updated.
507 507 notice_feeds_access_key_reseted: Your RSS access key was reseted.
508 508 field_redirect_existing_links: Redirect existing links
509 509 text_issue_category_reassign_to: Reassign issues to this category
510 510 notice_email_sent: An email was sent to %s
511 511 text_issue_added: Issue %s has been reported.
512 512 field_comments: Comment
513 513 label_file_plural: Files
514 514 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
515 515 notice_email_error: An error occurred while sending mail (%s)
516 516 label_updated_time: Updated %s ago
517 517 text_issue_category_destroy_assignments: Remove category assignments
518 518 label_send_test_email: Send a test email
519 519 button_reset: Reset
520 520 label_added_time_by: Added by %s %s ago
521 521 field_estimated_hours: Estimated time
522 522 label_changeset_plural: Changesets
523 523 setting_repositories_encodings: Repositories encodings
524 524 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
525 525 label_bulk_edit_selected_issues: Bulk edit selected issues
526 526 label_no_change_option: (No change)
527 527 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
528 528 label_theme: Theme
529 529 label_default: Default
530 530 label_search_titles_only: Search titles only
531 label_nobody: nobody
@@ -1,527 +1,528
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: environ une heure
11 11 actionview_datehelper_time_in_words_hour_about_plural: environ %d heures
12 12 actionview_datehelper_time_in_words_hour_about_single: environ une heure
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_name: '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 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Le compte a été mis à jour avec succès.
57 57 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
58 58 notice_account_password_updated: Mot de passe mis à jour avec succès.
59 59 notice_account_wrong_password: Mot de passe incorrect
60 60 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
61 61 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
62 62 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
63 63 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
64 64 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
65 65 notice_successful_create: Création effectuée avec succès.
66 66 notice_successful_update: Mise à jour effectuée avec succès.
67 67 notice_successful_delete: Suppression effectuée avec succès.
68 68 notice_successful_connection: Connection réussie.
69 69 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
70 70 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
71 71 notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
72 72 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
73 73 notice_email_sent: "Un email a été envoyé à %s"
74 74 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
75 75 notice_feeds_access_key_reseted: Votre clé d'accès aux flux RSS a été réinitialisée.
76 76 notice_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s."
77 77 notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour."
78 78
79 79 mail_subject_lost_password: Votre mot de passe redMine
80 80 mail_body_lost_password: 'Pour changer votre mot de passe Redmine, cliquez sur le lien suivant:'
81 81 mail_subject_register: Activation de votre compte redMine
82 82 mail_body_register: 'Pour activer votre compte Redmine, cliquez sur le lien suivant:'
83 83
84 84 gui_validation_error: 1 erreur
85 85 gui_validation_error_plural: %d erreurs
86 86
87 87 field_name: Nom
88 88 field_description: Description
89 89 field_summary: Résumé
90 90 field_is_required: Obligatoire
91 91 field_firstname: Prénom
92 92 field_lastname: Nom
93 93 field_mail: Email
94 94 field_filename: Fichier
95 95 field_filesize: Taille
96 96 field_downloads: Téléchargements
97 97 field_author: Auteur
98 98 field_created_on: Créé
99 99 field_updated_on: Mis à jour
100 100 field_field_format: Format
101 101 field_is_for_all: Pour tous les projets
102 102 field_possible_values: Valeurs possibles
103 103 field_regexp: Expression régulière
104 104 field_min_length: Longueur minimum
105 105 field_max_length: Longueur maximum
106 106 field_value: Valeur
107 107 field_category: Catégorie
108 108 field_title: Titre
109 109 field_project: Projet
110 110 field_issue: Demande
111 111 field_status: Statut
112 112 field_notes: Notes
113 113 field_is_closed: Demande fermée
114 114 field_is_default: Valeur par défaut
115 115 field_html_color: Couleur
116 116 field_tracker: Tracker
117 117 field_subject: Sujet
118 118 field_due_date: Date d'échéance
119 119 field_assigned_to: Assigné à
120 120 field_priority: Priorité
121 121 field_fixed_version: Version corrigée
122 122 field_user: Utilisateur
123 123 field_role: Rôle
124 124 field_homepage: Site web
125 125 field_is_public: Public
126 126 field_parent: Sous-projet de
127 127 field_is_in_chlog: Demandes affichées dans l'historique
128 128 field_is_in_roadmap: Demandes affichées dans la roadmap
129 129 field_login: Identifiant
130 130 field_mail_notification: Notifications par mail
131 131 field_admin: Administrateur
132 132 field_last_login_on: Dernière connexion
133 133 field_language: Langue
134 134 field_effective_date: Date
135 135 field_password: Mot de passe
136 136 field_new_password: Nouveau mot de passe
137 137 field_password_confirmation: Confirmation
138 138 field_version: Version
139 139 field_type: Type
140 140 field_host: Hôte
141 141 field_port: Port
142 142 field_account: Compte
143 143 field_base_dn: Base DN
144 144 field_attr_login: Attribut Identifiant
145 145 field_attr_firstname: Attribut Prénom
146 146 field_attr_lastname: Attribut Nom
147 147 field_attr_mail: Attribut Email
148 148 field_onthefly: Création des utilisateurs à la volée
149 149 field_start_date: Début
150 150 field_done_ratio: %% Réalisé
151 151 field_auth_source: Mode d'authentification
152 152 field_hide_mail: Cacher mon adresse mail
153 153 field_comments: Commentaire
154 154 field_url: URL
155 155 field_start_page: Page de démarrage
156 156 field_subproject: Sous-projet
157 157 field_hours: Heures
158 158 field_activity: Activité
159 159 field_spent_on: Date
160 160 field_identifier: Identifiant
161 161 field_is_filter: Utilisé comme filtre
162 162 field_issue_to_id: Demande liée
163 163 field_delay: Retard
164 164 field_assignable: Demandes assignables à ce rôle
165 165 field_redirect_existing_links: Rediriger les liens existants
166 166 field_estimated_hours: Temps estimé
167 167 field_column_names: Colonnes
168 168
169 169 setting_app_title: Titre de l'application
170 170 setting_app_subtitle: Sous-titre de l'application
171 171 setting_welcome_text: Texte d'accueil
172 172 setting_default_language: Langue par défaut
173 173 setting_login_required: Authentif. obligatoire
174 174 setting_self_registration: Enregistrement autorisé
175 175 setting_attachment_max_size: Taille max des fichiers
176 176 setting_issues_export_limit: Limite export demandes
177 177 setting_mail_from: Adresse d'émission
178 178 setting_host_name: Nom d'hôte
179 179 setting_text_formatting: Formatage du texte
180 180 setting_wiki_compression: Compression historique wiki
181 181 setting_feeds_limit: Limite du contenu des flux RSS
182 182 setting_autofetch_changesets: Récupération auto. des commits
183 183 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
184 184 setting_commit_ref_keywords: Mot-clés de référencement
185 185 setting_commit_fix_keywords: Mot-clés de résolution
186 186 setting_autologin: Autologin
187 187 setting_date_format: Format de date
188 188 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
189 189 setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes
190 190 setting_repositories_encodings: Encodages des dépôts
191 191
192 192 label_user: Utilisateur
193 193 label_user_plural: Utilisateurs
194 194 label_user_new: Nouvel utilisateur
195 195 label_project: Projet
196 196 label_project_new: Nouveau projet
197 197 label_project_plural: Projets
198 198 label_project_all: Tous les projets
199 199 label_project_latest: Derniers projets
200 200 label_issue: Demande
201 201 label_issue_new: Nouvelle demande
202 202 label_issue_plural: Demandes
203 203 label_issue_view_all: Voir toutes les demandes
204 204 label_document: Document
205 205 label_document_new: Nouveau document
206 206 label_document_plural: Documents
207 207 label_role: Rôle
208 208 label_role_plural: Rôles
209 209 label_role_new: Nouveau rôle
210 210 label_role_and_permissions: Rôles et permissions
211 211 label_member: Membre
212 212 label_member_new: Nouveau membre
213 213 label_member_plural: Membres
214 214 label_tracker: Tracker
215 215 label_tracker_plural: Trackers
216 216 label_tracker_new: Nouveau tracker
217 217 label_workflow: Workflow
218 218 label_issue_status: Statut de demandes
219 219 label_issue_status_plural: Statuts de demandes
220 220 label_issue_status_new: Nouveau statut
221 221 label_issue_category: Catégorie de demandes
222 222 label_issue_category_plural: Catégories de demandes
223 223 label_issue_category_new: Nouvelle catégorie
224 224 label_custom_field: Champ personnalisé
225 225 label_custom_field_plural: Champs personnalisés
226 226 label_custom_field_new: Nouveau champ personnalisé
227 227 label_enumerations: Listes de valeurs
228 228 label_enumeration_new: Nouvelle valeur
229 229 label_information: Information
230 230 label_information_plural: Informations
231 231 label_please_login: Identification
232 232 label_register: S'enregistrer
233 233 label_password_lost: Mot de passe perdu
234 234 label_home: Accueil
235 235 label_my_page: Ma page
236 236 label_my_account: Mon compte
237 237 label_my_projects: Mes projets
238 238 label_administration: Administration
239 239 label_login: Connexion
240 240 label_logout: Déconnexion
241 241 label_help: Aide
242 242 label_reported_issues: Demandes soumises
243 243 label_assigned_to_me_issues: Demandes qui me sont assignées
244 244 label_last_login: Dernière connexion
245 245 label_last_updates: Dernière mise à jour
246 246 label_last_updates_plural: %d dernières mises à jour
247 247 label_registered_on: Inscrit le
248 248 label_activity: Activité
249 249 label_new: Nouveau
250 250 label_logged_as: Connecté en tant que
251 251 label_environment: Environnement
252 252 label_authentication: Authentification
253 253 label_auth_source: Mode d'authentification
254 254 label_auth_source_new: Nouveau mode d'authentification
255 255 label_auth_source_plural: Modes d'authentification
256 256 label_subproject_plural: Sous-projets
257 257 label_min_max_length: Longueurs mini - maxi
258 258 label_list: Liste
259 259 label_date: Date
260 260 label_integer: Entier
261 261 label_boolean: Booléen
262 262 label_string: Texte
263 263 label_text: Texte long
264 264 label_attribute: Attribut
265 265 label_attribute_plural: Attributs
266 266 label_download: %d Téléchargement
267 267 label_download_plural: %d Téléchargements
268 268 label_no_data: Aucune donnée à afficher
269 269 label_change_status: Changer le statut
270 270 label_history: Historique
271 271 label_attachment: Fichier
272 272 label_attachment_new: Nouveau fichier
273 273 label_attachment_delete: Supprimer le fichier
274 274 label_attachment_plural: Fichiers
275 275 label_report: Rapport
276 276 label_report_plural: Rapports
277 277 label_news: Annonce
278 278 label_news_new: Nouvelle annonce
279 279 label_news_plural: Annonces
280 280 label_news_latest: Dernières annonces
281 281 label_news_view_all: Voir toutes les annonces
282 282 label_change_log: Historique
283 283 label_settings: Configuration
284 284 label_overview: Aperçu
285 285 label_version: Version
286 286 label_version_new: Nouvelle version
287 287 label_version_plural: Versions
288 288 label_confirmation: Confirmation
289 289 label_export_to: Exporter en
290 290 label_read: Lire...
291 291 label_public_projects: Projets publics
292 292 label_open_issues: ouvert
293 293 label_open_issues_plural: ouverts
294 294 label_closed_issues: fermé
295 295 label_closed_issues_plural: fermés
296 296 label_total: Total
297 297 label_permissions: Permissions
298 298 label_current_status: Statut actuel
299 299 label_new_statuses_allowed: Nouveaux statuts autorisés
300 300 label_all: tous
301 301 label_none: aucun
302 label_nobody: personne
302 303 label_next: Suivant
303 304 label_previous: Précédent
304 305 label_used_by: Utilisé par
305 306 label_details: Détails
306 307 label_add_note: Ajouter une note
307 308 label_per_page: Par page
308 309 label_calendar: Calendrier
309 310 label_months_from: mois depuis
310 311 label_gantt: Gantt
311 312 label_internal: Interne
312 313 label_last_changes: %d derniers changements
313 314 label_change_view_all: Voir tous les changements
314 315 label_personalize_page: Personnaliser cette page
315 316 label_comment: Commentaire
316 317 label_comment_plural: Commentaires
317 318 label_comment_add: Ajouter un commentaire
318 319 label_comment_added: Commentaire ajouté
319 320 label_comment_delete: Supprimer les commentaires
320 321 label_query: Rapport personnalisé
321 322 label_query_plural: Rapports personnalisés
322 323 label_query_new: Nouveau rapport
323 324 label_filter_add: Ajouter le filtre
324 325 label_filter_plural: Filtres
325 326 label_equals: égal
326 327 label_not_equals: différent
327 328 label_in_less_than: dans moins de
328 329 label_in_more_than: dans plus de
329 330 label_in: dans
330 331 label_today: aujourd'hui
331 332 label_this_week: cette semaine
332 333 label_less_than_ago: il y a moins de
333 334 label_more_than_ago: il y a plus de
334 335 label_ago: il y a
335 336 label_contains: contient
336 337 label_not_contains: ne contient pas
337 338 label_day_plural: jours
338 339 label_repository: Dépôt
339 340 label_browse: Parcourir
340 341 label_modification: %d modification
341 342 label_modification_plural: %d modifications
342 343 label_revision: Révision
343 344 label_revision_plural: Révisions
344 345 label_added: ajouté
345 346 label_modified: modifié
346 347 label_deleted: supprimé
347 348 label_latest_revision: Dernière révision
348 349 label_latest_revision_plural: Dernières révisions
349 350 label_view_revisions: Voir les révisions
350 351 label_max_size: Taille maximale
351 352 label_on: sur
352 353 label_sort_highest: Remonter en premier
353 354 label_sort_higher: Remonter
354 355 label_sort_lower: Descendre
355 356 label_sort_lowest: Descendre en dernier
356 357 label_roadmap: Roadmap
357 358 label_roadmap_due_in: Echéance dans
358 359 label_roadmap_overdue: En retard de %s
359 360 label_roadmap_no_issues: Aucune demande pour cette version
360 361 label_search: Recherche
361 362 label_result_plural: Résultats
362 363 label_all_words: Tous les mots
363 364 label_wiki: Wiki
364 365 label_wiki_edit: Révision wiki
365 366 label_wiki_edit_plural: Révisions wiki
366 367 label_wiki_page: Page wiki
367 368 label_wiki_page_plural: Pages wiki
368 369 label_index_by_title: Index par titre
369 370 label_index_by_date: Index par date
370 371 label_current_version: Version actuelle
371 372 label_preview: Prévisualisation
372 373 label_feed_plural: Flux RSS
373 374 label_changes_details: Détails de tous les changements
374 375 label_issue_tracking: Suivi des demandes
375 376 label_spent_time: Temps passé
376 377 label_f_hour: %.2f heure
377 378 label_f_hour_plural: %.2f heures
378 379 label_time_tracking: Suivi du temps
379 380 label_change_plural: Changements
380 381 label_statistics: Statistiques
381 382 label_commits_per_month: Commits par mois
382 383 label_commits_per_author: Commits par auteur
383 384 label_view_diff: Voir les différences
384 385 label_diff_inline: en ligne
385 386 label_diff_side_by_side: côte à côte
386 387 label_options: Options
387 388 label_copy_workflow_from: Copier le workflow de
388 389 label_permissions_report: Synthèse des permissions
389 390 label_watched_issues: Demandes surveillées
390 391 label_related_issues: Demandes liées
391 392 label_applied_status: Statut appliqué
392 393 label_loading: Chargement...
393 394 label_relation_new: Nouvelle relation
394 395 label_relation_delete: Supprimer la relation
395 396 label_relates_to: lié à
396 397 label_duplicates: doublon de
397 398 label_blocks: bloque
398 399 label_blocked_by: bloqué par
399 400 label_precedes: précède
400 401 label_follows: suit
401 402 label_end_to_start: fin à début
402 403 label_end_to_end: fin à fin
403 404 label_start_to_start: début à début
404 405 label_start_to_end: début à fin
405 406 label_stay_logged_in: Rester connecté
406 407 label_disabled: désactivé
407 408 label_show_completed_versions: Voire les versions passées
408 409 label_me: moi
409 410 label_board: Forum
410 411 label_board_new: Nouveau forum
411 412 label_board_plural: Forums
412 413 label_topic_plural: Discussions
413 414 label_message_plural: Messages
414 415 label_message_last: Dernier message
415 416 label_message_new: Nouveau message
416 417 label_reply_plural: Réponses
417 418 label_send_information: Envoyer les informations à l'utilisateur
418 419 label_year: Année
419 420 label_month: Mois
420 421 label_week: Semaine
421 422 label_date_from: Du
422 423 label_date_to: Au
423 424 label_language_based: Basé sur la langue
424 425 label_sort_by: Trier par "%s"
425 426 label_send_test_email: Envoyer un email de test
426 427 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
427 428 label_module_plural: Modules
428 429 label_added_time_by: Ajouté par %s il y a %s
429 430 label_updated_time: Mis à jour il y a %s
430 431 label_jump_to_a_project: Aller à un projet...
431 432 label_file_plural: Fichiers
432 433 label_changeset_plural: Révisions
433 434 label_default_columns: Colonnes par défaut
434 435 label_no_change_option: (Pas de changement)
435 436 label_bulk_edit_selected_issues: Modifier les demandes sélectionnées
436 437 label_theme: Thème
437 438 label_default: Défaut
438 439 label_search_titles_only: Uniquement dans les titres
439 440
440 441 button_login: Connexion
441 442 button_submit: Soumettre
442 443 button_save: Sauvegarder
443 444 button_check_all: Tout cocher
444 445 button_uncheck_all: Tout décocher
445 446 button_delete: Supprimer
446 447 button_create: Créer
447 448 button_test: Tester
448 449 button_edit: Modifier
449 450 button_add: Ajouter
450 451 button_change: Changer
451 452 button_apply: Appliquer
452 453 button_clear: Effacer
453 454 button_lock: Verrouiller
454 455 button_unlock: Déverrouiller
455 456 button_download: Télécharger
456 457 button_list: Lister
457 458 button_view: Voir
458 459 button_move: Déplacer
459 460 button_back: Retour
460 461 button_cancel: Annuler
461 462 button_activate: Activer
462 463 button_sort: Trier
463 464 button_log_time: Saisir temps
464 465 button_rollback: Revenir à cette version
465 466 button_watch: Surveiller
466 467 button_unwatch: Ne plus surveiller
467 468 button_reply: Répondre
468 469 button_archive: Archiver
469 470 button_unarchive: Désarchiver
470 471 button_reset: Réinitialiser
471 472 button_rename: Renommer
472 473
473 474 status_active: actif
474 475 status_registered: enregistré
475 476 status_locked: vérouillé
476 477
477 478 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
478 479 text_regexp_info: ex. ^[A-Z0-9]+$
479 480 text_min_max_length_info: 0 pour aucune restriction
480 481 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
481 482 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
482 483 text_are_you_sure: Etes-vous sûr ?
483 484 text_journal_changed: changé de %s à %s
484 485 text_journal_set_to: mis à %s
485 486 text_journal_deleted: supprimé
486 487 text_tip_task_begin_day: tâche commençant ce jour
487 488 text_tip_task_end_day: tâche finissant ce jour
488 489 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
489 490 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
490 491 text_caracters_maximum: %d caractères maximum.
491 492 text_length_between: Longueur comprise entre %d et %d caractères.
492 493 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
493 494 text_unallowed_characters: Caractères non autorisés
494 495 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
495 496 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
496 497 text_issue_added: La demande %s a été soumise.
497 498 text_issue_updated: La demande %s a été mise à jour.
498 499 text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ?
499 500 text_issue_category_destroy_question: Des demandes (%d) sont affectées à cette catégories. Que voulez-vous faire ?
500 501 text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie
501 502 text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie
502 503
503 504 default_role_manager: Manager
504 505 default_role_developper: Développeur
505 506 default_role_reporter: Rapporteur
506 507 default_tracker_bug: Anomalie
507 508 default_tracker_feature: Evolution
508 509 default_tracker_support: Assistance
509 510 default_issue_status_new: Nouveau
510 511 default_issue_status_assigned: Assigné
511 512 default_issue_status_resolved: Résolu
512 513 default_issue_status_feedback: Commentaire
513 514 default_issue_status_closed: Fermé
514 515 default_issue_status_rejected: Rejeté
515 516 default_doc_category_user: Documentation utilisateur
516 517 default_doc_category_tech: Documentation technique
517 518 default_priority_low: Bas
518 519 default_priority_normal: Normal
519 520 default_priority_high: Haut
520 521 default_priority_urgent: Urgent
521 522 default_priority_immediate: Immédiat
522 523 default_activity_design: Conception
523 524 default_activity_development: Développement
524 525
525 526 enumeration_issue_priorities: Priorités des demandes
526 527 enumeration_doc_categories: Catégories des documents
527 528 enumeration_activities: Activités (suivi du temps)
@@ -1,527 +1,528
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: לא שייך לאותו הפרויקט
37 37 activerecord_error_circular_dependency: הקשר הזה יצור תלות מעגלית
38 38
39 39 general_fmt_age: שנה %d
40 40 general_fmt_age_plural: %d שנים
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: 'לא'
46 46 general_text_Yes: 'כן'
47 47 general_text_no: 'לא'
48 48 general_text_yes: 'כן'
49 49 general_lang_name: 'Hebrew (עברית)'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-8-I
52 52 general_pdf_encoding: ISO-8859-8-I
53 53 general_day_names: שני,שלישי,רביעי,חמישי,שישי,שבת,ראשון
54 54 general_first_day_of_week: '7'
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: אינך מורשה לראות דף זה.
73 73 notice_email_sent: דוא"ל נשלח לכתובת %s
74 74 notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s)
75 75 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס.
76 76 notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s."
77 77 notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך."
78 78
79 79 mail_subject_lost_password: סיסמת ה-Redmine שלך
80 80 mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:'
81 81 mail_subject_register: הפעלת חשבון Redmine
82 82 mail_body_register: 'להפעלת חשבון ה-Redmine שלך, לחץ על הקישור הבא:'
83 83
84 84 gui_validation_error: שגיאה 1
85 85 gui_validation_error_plural: %d שגיאות
86 86
87 87 field_name: שם
88 88 field_description: תיאור
89 89 field_summary: תקציר
90 90 field_is_required: נדרש
91 91 field_firstname: שם פרטי
92 92 field_lastname: שם משפחה
93 93 field_mail: דוא"ל
94 94 field_filename: קובץ
95 95 field_filesize: גודל
96 96 field_downloads: הורדות
97 97 field_author: כותב
98 98 field_created_on: נוצר
99 99 field_updated_on: עודגן
100 100 field_field_format: פורמט
101 101 field_is_for_all: לכל הפרויקטים
102 102 field_possible_values: ערכים אפשריים
103 103 field_regexp: ביטוי רגיל
104 104 field_min_length: אורך מינימאלי
105 105 field_max_length: אורך מקסימאלי
106 106 field_value: ערך
107 107 field_category: קטגוריה
108 108 field_title: כותרת
109 109 field_project: פרויקט
110 110 field_issue: נושא
111 111 field_status: מצב
112 112 field_notes: הערות
113 113 field_is_closed: נושא סגור
114 114 field_is_default: ערך ברירת מחדל
115 115 field_html_color: צבע
116 116 field_tracker: עוקב
117 117 field_subject: שם נושא
118 118 field_due_date: תאריך סיום
119 119 field_assigned_to: מוצב ל
120 120 field_priority: עדיפות
121 121 field_fixed_version: גירסא מקובעת
122 122 field_user: מתשמש
123 123 field_role: תפקיד
124 124 field_homepage: דף הבית
125 125 field_is_public: פומבי
126 126 field_parent: תת פרויקט של
127 127 field_is_in_chlog: נושאים המוצגים בדו"ח השינויים
128 128 field_is_in_roadmap: נושאים המוצגים במפת הדרכים
129 129 field_login: שם משתמש
130 130 field_mail_notification: הודעות דוא"ל
131 131 field_admin: אדמיניסטרציה
132 132 field_last_login_on: חיבור אחרון
133 133 field_language: שפה
134 134 field_effective_date: תאריך
135 135 field_password: סיסמה
136 136 field_new_password: סיסמה חדשה
137 137 field_password_confirmation: אישור
138 138 field_version: גירסא
139 139 field_type: סוג
140 140 field_host: שרת
141 141 field_port: פורט
142 142 field_account: חשבום
143 143 field_base_dn: בסיס DN
144 144 field_attr_login: תכונת התחברות
145 145 field_attr_firstname: תכונת שם פרטים
146 146 field_attr_lastname: תכונת שם משפחה
147 147 field_attr_mail: תכונת דוא"ל
148 148 field_onthefly: יצירת משתמשים זריזה
149 149 field_start_date: התחל
150 150 field_done_ratio: %% גמור
151 151 field_auth_source: מצב אימות
152 152 field_hide_mail: החבא את כתובת הדוא"ל שלי
153 153 field_comments: הערות
154 154 field_url: URL
155 155 field_start_page: דף התחלתי
156 156 field_subproject: תת פרויקט
157 157 field_hours: שעות
158 158 field_activity: פעילות
159 159 field_spent_on: תאריך
160 160 field_identifier: מזהה
161 161 field_is_filter: משמש כמסנן
162 162 field_issue_to_id: נושאים קשורים
163 163 field_delay: עיקוב
164 164 field_assignable: ניתן להקצות נושאים לתפקיד זה
165 165 field_redirect_existing_links: העבר קישורים קיימים
166 166 field_estimated_hours: זמן משוער
167 167 field_column_names: עמודות
168 168
169 169 setting_app_title: כותרת ישום
170 170 setting_app_subtitle: תת-כותרת ישום
171 171 setting_welcome_text: טקסט "ברוך הבא"
172 172 setting_default_language: שפת ברירת מחדל
173 173 setting_login_required: דרוש אימות
174 174 setting_self_registration: אפשר הרשמות עצמית
175 175 setting_attachment_max_size: גודל דבוקה מקסימאלי
176 176 setting_issues_export_limit: גבול יצוא נושאים
177 177 setting_mail_from: כתובת שליחת דוא"ל
178 178 setting_host_name: שם שרת
179 179 setting_text_formatting: עיצוב טקסט
180 180 setting_wiki_compression: כיווץ היסטורית WIKI
181 181 setting_feeds_limit: גבול תוכן הזנות
182 182 setting_autofetch_changesets: משיכה אוטומתי של עידכונים
183 183 setting_sys_api_enabled: Enable WS for repository management
184 184 setting_commit_ref_keywords: מילות מפתח מקשרות
185 185 setting_commit_fix_keywords: מילות מפתח מתקנות
186 186 setting_autologin: חיבור אוטומטי
187 187 setting_date_format: פורמט תאריך
188 188 setting_cross_project_issue_relations: הרשה קישור נושאים בין פרויקטים
189 189 setting_issue_list_default_columns: עמודות ברירת מחדל המוצגות ברשימת הנושאים
190 190 setting_repositories_encodings: קידוד המאגרים
191 191
192 192 label_user: משתמש
193 193 label_user_plural: משתמשים
194 194 label_user_new: משתמש חדש
195 195 label_project: פרויקט
196 196 label_project_new: פרויקט חדש
197 197 label_project_plural: פרויקטים
198 198 label_project_all: כל הפרויקטים
199 199 label_project_latest: הפרויקטים החדשים ביותר
200 200 label_issue: נושא
201 201 label_issue_new: נושא חדש
202 202 label_issue_plural: נושאים
203 203 label_issue_view_all: צפה בכל הנושאים
204 204 label_document: מסמך
205 205 label_document_new: מסמך חדש
206 206 label_document_plural: מסמכים
207 207 label_role: תפקיד
208 208 label_role_plural: תפקידים
209 209 label_role_new: תפקיד חדש
210 210 label_role_and_permissions: תפקידים והרשאות
211 211 label_member: חבר
212 212 label_member_new: חבר חדש
213 213 label_member_plural: חברים
214 214 label_tracker: עוקב
215 215 label_tracker_plural: עוקבים
216 216 label_tracker_new: עוקב חדש
217 217 label_workflow: זרימת עבודה
218 218 label_issue_status: מצב נושא
219 219 label_issue_status_plural: מצבי נושא
220 220 label_issue_status_new: מצב חדש
221 221 label_issue_category: קטגורית נושא
222 222 label_issue_category_plural: קטגוריות נושא
223 223 label_issue_category_new: קטגוריה חדשה
224 224 label_custom_field: שדה אישי
225 225 label_custom_field_plural: שדות אישיים
226 226 label_custom_field_new: שדה אישי חדש
227 227 label_enumerations: אינומרציות
228 228 label_enumeration_new: ערך חדש
229 229 label_information: מידע
230 230 label_information_plural: מידע
231 231 label_please_login: התחבר בבקשה
232 232 label_register: הרשמה
233 233 label_password_lost: אבדה הסיסמה?
234 234 label_home: דך הבית
235 235 label_my_page: הדף שלי
236 236 label_my_account: השבון שלי
237 237 label_my_projects: הפרויקטים שלי
238 238 label_administration: אדמיניסטרציה
239 239 label_login: התחבר
240 240 label_logout: התנתק
241 241 label_help: עזרה
242 242 label_reported_issues: נושאים שדווחו
243 243 label_assigned_to_me_issues: נושאים שהוצבו לי
244 244 label_last_login: חיבור אחרון
245 245 label_last_updates: עידכון אחרון
246 246 label_last_updates_plural: %d עידכונים אחרונים
247 247 label_registered_on: נרשם בתאריך
248 248 label_activity: פעילות
249 249 label_new: חדש
250 250 label_logged_as: מחובר כ
251 251 label_environment: סביבה
252 252 label_authentication: אישור
253 253 label_auth_source: מצב אישור
254 254 label_auth_source_new: מצב אישור חדש
255 255 label_auth_source_plural: מצבי אישור
256 256 label_subproject_plural: תת-פרויקטים
257 257 label_min_max_length: אורך מינימאלי - מקסימאלי
258 258 label_list: רשימה
259 259 label_date: תאריך
260 260 label_integer: מספר שלים
261 261 label_boolean: ערך בוליאני
262 262 label_string: טקסט
263 263 label_text: טקסט ארוך
264 264 label_attribute: תכונה
265 265 label_attribute_plural: תכונות
266 266 label_download: הורדה %d
267 267 label_download_plural: %d הורדות
268 268 label_no_data: אין מידע להציג
269 269 label_change_status: שנה מצב
270 270 label_history: הידטוריה
271 271 label_attachment: קובץ
272 272 label_attachment_new: קובץ חדש
273 273 label_attachment_delete: מחק קובץ
274 274 label_attachment_plural: קבצים
275 275 label_report: דו"ח
276 276 label_report_plural: דו"חות
277 277 label_news: חדשות
278 278 label_news_new: הוסף חדשות
279 279 label_news_plural: חדשות
280 280 label_news_latest: חדשות חדשות
281 281 label_news_view_all: צפה בכל החדשות
282 282 label_change_log: דו"ח שינויים
283 283 label_settings: הגדרות
284 284 label_overview: מבט רחב
285 285 label_version: גירסא
286 286 label_version_new: גירסא חדשה
287 287 label_version_plural: גירסאות
288 288 label_confirmation: אישור
289 289 label_export_to: יצא ל
290 290 label_read: קרא...
291 291 label_public_projects: פרויקטים פומביים
292 292 label_open_issues: פותח
293 293 label_open_issues_plural: פתוחים
294 294 label_closed_issues: סגור
295 295 label_closed_issues_plural: סגורים
296 296 label_total: סה"כ
297 297 label_permissions: הרשאות
298 298 label_current_status: מצב נוכחי
299 299 label_new_statuses_allowed: מצבים חדשים אפשריים
300 300 label_all: הכל
301 301 label_none: כלום
302 302 label_next: הבא
303 303 label_previous: הקודם
304 304 label_used_by: בשימוש ע"י
305 305 label_details: פרטים
306 306 label_add_note: הוסף הערה
307 307 label_per_page: לכל דף
308 308 label_calendar: לו"ח שנה
309 309 label_months_from: חודשים מ
310 310 label_gantt: גאנט
311 311 label_internal: פנימי
312 312 label_last_changes: %d שינוים אחרונים
313 313 label_change_view_all: צפה בכל השינוים
314 314 label_personalize_page: הפוך דף זה לשלך
315 315 label_comment: תגובה
316 316 label_comment_plural: תגובות
317 317 label_comment_add: הוסף תגובה
318 318 label_comment_added: תגובה הוספה
319 319 label_comment_delete: מחק תגובות
320 320 label_query: שאילתה אישית
321 321 label_query_plural: שאילתות אישיות
322 322 label_query_new: שאילתה חדשה
323 323 label_filter_add: הוסף מסנן
324 324 label_filter_plural: מסננים
325 325 label_equals: הוא
326 326 label_not_equals: הוא לא
327 327 label_in_less_than: בפחות מ
328 328 label_in_more_than: ביותר מ
329 329 label_in: ב
330 330 label_today: היום
331 331 label_this_week: השבוע
332 332 label_less_than_ago: פחות ממספר ימים
333 333 label_more_than_ago: יותר ממספר ימים
334 334 label_ago: מספר ימים
335 335 label_contains: מכיל
336 336 label_not_contains: לא מכיל
337 337 label_day_plural: ימים
338 338 label_repository: מאגר
339 339 label_browse: סייר
340 340 label_modification: שינוי %d
341 341 label_modification_plural: %d שינויים
342 342 label_revision: גירסא
343 343 label_revision_plural: גירסאות
344 344 label_added: הוסף
345 345 label_modified: שונה
346 346 label_deleted: נמחק
347 347 label_latest_revision: גירסא אחרונה
348 348 label_latest_revision_plural: גירסאות אחרונות
349 349 label_view_revisions: צפה בגירסאות
350 350 label_max_size: גודל מקסימאלי
351 351 label_on: 'ב'
352 352 label_sort_highest: הזז לראשית
353 353 label_sort_higher: הזז למעלה
354 354 label_sort_lower: הזז למטה
355 355 label_sort_lowest: הזז לתחתית
356 356 label_roadmap: מפת הדרכים
357 357 label_roadmap_due_in: נגמר בעוד
358 358 label_roadmap_overdue: %s מאחר
359 359 label_roadmap_no_issues: אין נושאים לגירסא זו
360 360 label_search: חפש
361 361 label_result_plural: תוצאות
362 362 label_all_words: כל המילים
363 363 label_wiki: Wiki
364 364 label_wiki_edit: ערוך Wiki
365 365 label_wiki_edit_plural: עריכות Wiki
366 366 label_wiki_page: דף Wiki
367 367 label_wiki_page_plural: דפי Wiki
368 368 label_index_by_title: סדר עך פי כותרת
369 369 label_index_by_date: סדר על פי תאריך
370 370 label_current_version: גירסא נוכאית
371 371 label_preview: תצוגה מקדימה
372 372 label_feed_plural: הזנות
373 373 label_changes_details: פירוט כל השינויים
374 374 label_issue_tracking: מעקב אחר נושאים
375 375 label_spent_time: זמן שבוזבז
376 376 label_f_hour: %.2f שעה
377 377 label_f_hour_plural: %.2f שעות
378 378 label_time_tracking: מעקב זמנים
379 379 label_change_plural: שינויים
380 380 label_statistics: סטטיסטיקות
381 381 label_commits_per_month: הפקדות לפי חודש
382 382 label_commits_per_author: הפקדות לפי כותב
383 383 label_view_diff: צפה בהבדלים
384 384 label_diff_inline: בתוך השורה
385 385 label_diff_side_by_side: צד לצד
386 386 label_options: אפשרויות
387 387 label_copy_workflow_from: העתק זירמת עבודה מ
388 388 label_permissions_report: דו"ח הרשאות
389 389 label_watched_issues: נושאים שנצפו
390 390 label_related_issues: נושאים קשורים
391 391 label_applied_status: מוצב מוחל
392 392 label_loading: טוען...
393 393 label_relation_new: קשר חדש
394 394 label_relation_delete: מחק קשר
395 395 label_relates_to: קשור ל
396 396 label_duplicates: מכפיל את
397 397 label_blocks: חוסם את
398 398 label_blocked_by: חסום ע"י
399 399 label_precedes: מקדים את
400 400 label_follows: עוקב אחרי
401 401 label_end_to_start: מהתחלה לסוף
402 402 label_end_to_end: מהסוף לסוף
403 403 label_start_to_start: מהתחלה להתחלה
404 404 label_start_to_end: מהתחלה לסוף
405 405 label_stay_logged_in: השאר מחובר
406 406 label_disabled: מבוטל
407 407 label_show_completed_versions: הצג גירזאות גמורות
408 408 label_me: אני
409 409 label_board: פורום
410 410 label_board_new: פורום חדש
411 411 label_board_plural: פורומים
412 412 label_topic_plural: נושאים
413 413 label_message_plural: הודעות
414 414 label_message_last: הודעה אחרונה
415 415 label_message_new: הודעה חדשה
416 416 label_reply_plural: השבות
417 417 label_send_information: שלח מידע על חשבון למשתמש
418 418 label_year: שנה
419 419 label_month: חודש
420 420 label_week: שבו
421 421 label_date_from: מאת
422 422 label_date_to: אל
423 423 label_language_based: מבוסס שפה
424 424 label_sort_by: מין לפי "%s"
425 425 label_send_test_email: שלח דו"ל בדיקה
426 426 label_feeds_access_key_created_on: מפתח הזנת RSS נוצר לפני%s
427 427 label_module_plural: מודולים
428 428 label_added_time_by: הוסף על ידי %s לפני %s
429 429 label_updated_time: עודכן לפני %s
430 430 label_jump_to_a_project: קפוץ לפרויקט...
431 431 label_file_plural: קבצים
432 432 label_changeset_plural: אוסף שינוים
433 433 label_default_columns: עמודת ברירת מחדל
434 434 label_no_change_option: (אין שינוים)
435 435 label_bulk_edit_selected_issues: ערוך את הנושאים המסומנים
436 436 label_theme: ערכת נושא
437 437 label_default: ברירת מחדש
438 438
439 439 button_login: התחבר
440 440 button_submit: הגש
441 441 button_save: שמור
442 442 button_check_all: בחר הכל
443 443 button_uncheck_all: בחר כלום
444 444 button_delete: מחק
445 445 button_create: צוק
446 446 button_test: בדוק
447 447 button_edit: ערוך
448 448 button_add: הוסף
449 449 button_change: שנה
450 450 button_apply: הוצא לפועל
451 451 button_clear: נקה
452 452 button_lock: נעל
453 453 button_unlock: בטל נעילה
454 454 button_download: הורד
455 455 button_list: קשימה
456 456 button_view: צפה
457 457 button_move: הזז
458 458 button_back: הקודם
459 459 button_cancel: בטח
460 460 button_activate: הפעל
461 461 button_sort: מין
462 462 button_log_time: זמן לוג
463 463 button_rollback: חזור לגירסא זו
464 464 button_watch: צפה
465 465 button_unwatch: בטל צפיה
466 466 button_reply: השב
467 467 button_archive: ארכיון
468 468 button_unarchive: הוצא מהארכיון
469 469 button_reset: אפס
470 470 button_rename: שנה שם
471 471
472 472 status_active: פעיל
473 473 status_registered: רשום
474 474 status_locked: נעול
475 475
476 476 text_select_mail_notifications: בחר פעולת שבגללן ישלח דוא"ל.
477 477 text_regexp_info: כגון. ^[A-Z0-9]+$
478 478 text_min_max_length_info: 0 משמעו ללא הגבלות
479 479 text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו ?
480 480 text_workflow_edit: בחר תפקיד ועוקב כדי לערות את זרימת העבודה
481 481 text_are_you_sure: האם אתה בטוח ?
482 482 text_journal_changed: שונה מ %s ל %s
483 483 text_journal_set_to: שונה ל %s
484 484 text_journal_deleted: נמחק
485 485 text_tip_task_begin_day: מטלה המתחילה היום
486 486 text_tip_task_end_day: מטלה המסתיימת היום
487 487 text_tip_task_begin_end_day: מתלה המתחילה ומסתיימת היום
488 488 text_project_identifier_info: 'אותיות לטיניות (a-z), מספרים ומקפים.<br />ברגע שנשמר, לא ניתן לשנות את המזהה.'
489 489 text_caracters_maximum: מקסימום %d תווים.
490 490 text_length_between: אורך בין %d ל %d תווים.
491 491 text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור עוקב זה
492 492 text_unallowed_characters: תווים לא מורשים
493 493 text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים).
494 494 text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדות
495 495 text_issue_added: הנושא %s דווח.
496 496 text_issue_updated: הנושא %s עודכן.
497 497 text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו?
498 498 text_issue_category_destroy_question: כמה נושאים (%d) מוצבים לקטגוריה הזו. מה ברצונך לעשות?
499 499 text_issue_category_destroy_assignments: הסר הצבת קטגוריה
500 500 text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים
501 501
502 502 default_role_manager: מנהל
503 503 default_role_developper: מפתח
504 504 default_role_reporter: מדווח
505 505 default_tracker_bug: באג
506 506 default_tracker_feature: פיצ'ר
507 507 default_tracker_support: תמיכה
508 508 default_issue_status_new: חדש
509 509 default_issue_status_assigned: מוצב
510 510 default_issue_status_resolved: פתור
511 511 default_issue_status_feedback: משוב
512 512 default_issue_status_closed: סגור
513 513 default_issue_status_rejected: דחוי
514 514 default_doc_category_user: תיעוד משתמש
515 515 default_doc_category_tech: תיעוד טכני
516 516 default_priority_low: נמוכה
517 517 default_priority_normal: רגילה
518 518 default_priority_high: גהבוה
519 519 default_priority_urgent: דחופה
520 520 default_priority_immediate: מידית
521 521 default_activity_design: עיצוב
522 522 default_activity_development: פיתוח
523 523
524 524 enumeration_issue_priorities: עדיפות נושאים
525 525 enumeration_doc_categories: קטגוריות מסמכים
526 526 enumeration_activities: פעילויות (מעקב אחר זמנים)
527 527 label_search_titles_only: Search titles only
528 label_nobody: nobody
@@ -1,527 +1,528
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_name: '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 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: L'utenza è stata aggiornata.
57 57 notice_account_invalid_creditentials: Nome utente o password non validi.
58 58 notice_account_password_updated: La password è stata aggiornata.
59 59 notice_account_wrong_password: Password errata
60 60 notice_account_register_done: L'utenza è stata creata.
61 61 notice_account_unknown_email: Utente sconosciuto.
62 62 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
63 63 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
64 64 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
65 65 notice_successful_create: Creazione effettuata.
66 66 notice_successful_update: Modifica effettuata.
67 67 notice_successful_delete: Eliminazione effettuata.
68 68 notice_successful_connection: Connessione effettuata.
69 69 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
70 70 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
71 71 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
72 72 notice_not_authorized: You are not authorized to access this page.
73 73 notice_email_sent: An email was sent to %s
74 74 notice_email_error: An error occurred while sending mail (%s)
75 75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76 76
77 77 mail_subject_lost_password: Password redMine
78 78 mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:'
79 79 mail_subject_register: Attivazione utenza redMine
80 80 mail_body_register: 'Per attivare la vostra utenza Redmine, usate il seguente collegamento:'
81 81
82 82 gui_validation_error: 1 errore
83 83 gui_validation_error_plural: %d errori
84 84
85 85 field_name: Nome
86 86 field_description: Descrizione
87 87 field_summary: Sommario
88 88 field_is_required: Richiesto
89 89 field_firstname: Nome
90 90 field_lastname: Cognome
91 91 field_mail: Email
92 92 field_filename: File
93 93 field_filesize: Dimensione
94 94 field_downloads: Download
95 95 field_author: Autore
96 96 field_created_on: Creato
97 97 field_updated_on: Aggiornato
98 98 field_field_format: Formato
99 99 field_is_for_all: Per tutti i progetti
100 100 field_possible_values: Valori possibili
101 101 field_regexp: Espressione regolare
102 102 field_min_length: Lunghezza minima
103 103 field_max_length: Lunghezza massima
104 104 field_value: Valore
105 105 field_category: Categoria
106 106 field_title: Titolo
107 107 field_project: Progetto
108 108 field_issue: Issue
109 109 field_status: Stato
110 110 field_notes: Note
111 111 field_is_closed: Chiude il contesto
112 112 field_is_default: Stato predefinito
113 113 field_html_color: Colore
114 114 field_tracker: Tracker
115 115 field_subject: Oggetto
116 116 field_due_date: Data ultima
117 117 field_assigned_to: Assegnato a
118 118 field_priority: Priorita'
119 119 field_fixed_version: Versione di fix
120 120 field_user: Utente
121 121 field_role: Ruolo
122 122 field_homepage: Homepage
123 123 field_is_public: Pubblico
124 124 field_parent: Sottoprogetto di
125 125 field_is_in_chlog: Contesti mostrati nel changelog
126 126 field_is_in_roadmap: Contesti mostrati nel roadmap
127 127 field_login: Login
128 128 field_mail_notification: Notifiche via e-mail
129 129 field_admin: Amministratore
130 130 field_last_login_on: Ultima connessione
131 131 field_language: Lingua
132 132 field_effective_date: Data
133 133 field_password: Password
134 134 field_new_password: Nuova password
135 135 field_password_confirmation: Conferma
136 136 field_version: Versione
137 137 field_type: Tipo
138 138 field_host: Host
139 139 field_port: Porta
140 140 field_account: Utenza
141 141 field_base_dn: DN base
142 142 field_attr_login: Attributo login
143 143 field_attr_firstname: Attributo nome
144 144 field_attr_lastname: Attributo cognome
145 145 field_attr_mail: Attributo e-mail
146 146 field_onthefly: Creazione utenza "al volo"
147 147 field_start_date: Inizio
148 148 field_done_ratio: %% completo
149 149 field_auth_source: Modalità di autenticazione
150 150 field_hide_mail: Nascondi il mio indirizzo di e-mail
151 151 field_comments: Commento
152 152 field_url: URL
153 153 field_start_page: Pagina principale
154 154 field_subproject: Sottoprogetto
155 155 field_hours: Hours
156 156 field_activity: Activity
157 157 field_spent_on: Data
158 158 field_identifier: Identifier
159 159 field_is_filter: Used as a filter
160 160 field_issue_to_id: Related issue
161 161 field_delay: Delay
162 162 field_assignable: Issues can be assigned to this role
163 163 field_redirect_existing_links: Redirect existing links
164 164 field_estimated_hours: Estimated time
165 165
166 166 setting_app_title: Titolo applicazione
167 167 setting_app_subtitle: Sottotitolo applicazione
168 168 setting_welcome_text: Testo di benvenuto
169 169 setting_default_language: Lingua di default
170 170 setting_login_required: Autenticazione richiesta
171 171 setting_self_registration: Auto-registrazione abilitata
172 172 setting_attachment_max_size: Massima dimensione allegati
173 173 setting_issues_export_limit: Limite esportazione contesti
174 174 setting_mail_from: Indirizzo sorgente e-mail
175 175 setting_host_name: Nome host
176 176 setting_text_formatting: Formattazione testo
177 177 setting_wiki_compression: Compressione di storia di Wiki
178 178 setting_feeds_limit: Limite contenuti del feed
179 179 setting_autofetch_changesets: Acquisisci automaticamente le commit
180 180 setting_sys_api_enabled: Abilita WS per la gestione del repository
181 181 setting_commit_ref_keywords: Referencing keywords
182 182 setting_commit_fix_keywords: Fixing keywords
183 183 setting_autologin: Autologin
184 184 setting_date_format: Date format
185 185 setting_cross_project_issue_relations: Allow cross-project issue relations
186 186
187 187 label_user: Utente
188 188 label_user_plural: Utenti
189 189 label_user_new: Nuovo utente
190 190 label_project: Progetto
191 191 label_project_new: Nuovo progetto
192 192 label_project_plural: Progetti
193 193 label_project_all: All Projects
194 194 label_project_latest: Ultimi progetti registrati
195 195 label_issue: Contesto
196 196 label_issue_new: Nuovo contesto
197 197 label_issue_plural: Contesti
198 198 label_issue_view_all: Mostra tutti i contesti
199 199 label_document: Documento
200 200 label_document_new: Nuovo documento
201 201 label_document_plural: Documenti
202 202 label_role: Ruolo
203 203 label_role_plural: Ruoli
204 204 label_role_new: Nuovo ruolo
205 205 label_role_and_permissions: Ruoli e permessi
206 206 label_member: Membro
207 207 label_member_new: Nuovo membro
208 208 label_member_plural: Membri
209 209 label_tracker: Tracker
210 210 label_tracker_plural: Tracker
211 211 label_tracker_new: Nuovo tracker
212 212 label_workflow: Workflow
213 213 label_issue_status: Stato contesti
214 214 label_issue_status_plural: Stati contesto
215 215 label_issue_status_new: Nuovo stato
216 216 label_issue_category: Categorie contesti
217 217 label_issue_category_plural: Categorie contesto
218 218 label_issue_category_new: Nuova categoria
219 219 label_custom_field: Campo personalizzato
220 220 label_custom_field_plural: Campi personalizzati
221 221 label_custom_field_new: Nuovo campo personalizzato
222 222 label_enumerations: Enumerazioni
223 223 label_enumeration_new: Nuovo valore
224 224 label_information: Informazione
225 225 label_information_plural: Informazioni
226 226 label_please_login: Autenticarsi
227 227 label_register: Registrati
228 228 label_password_lost: Password dimenticata
229 229 label_home: Home
230 230 label_my_page: Pagina personale
231 231 label_my_account: La mia utenza
232 232 label_my_projects: I miei progetti
233 233 label_administration: Amministrazione
234 234 label_login: Login
235 235 label_logout: Logout
236 236 label_help: Aiuto
237 237 label_reported_issues: Contesti segnalati
238 238 label_assigned_to_me_issues: I miei contesti
239 239 label_last_login: Ultimo collegamento
240 240 label_last_updates: Ultimo aggiornamento
241 241 label_last_updates_plural: %d ultimo aggiornamento
242 242 label_registered_on: Registrato il
243 243 label_activity: Attività
244 244 label_new: Nuovo
245 245 label_logged_as: Autenticato come
246 246 label_environment: Ambiente
247 247 label_authentication: Autenticazione
248 248 label_auth_source: Modalità di autenticazione
249 249 label_auth_source_new: Nuova modalità di autenticazione
250 250 label_auth_source_plural: Modalità di autenticazione
251 251 label_subproject_plural: Sottoprogetti
252 252 label_min_max_length: Lunghezza minima - massima
253 253 label_list: Elenco
254 254 label_date: Data
255 255 label_integer: Intero
256 256 label_boolean: Booleano
257 257 label_string: Testo
258 258 label_text: Testo esteso
259 259 label_attribute: Attributo
260 260 label_attribute_plural: Attributi
261 261 label_download: %d Download
262 262 label_download_plural: %d Download
263 263 label_no_data: Nessun dato disponibile
264 264 label_change_status: Cambia stato
265 265 label_history: Cronologia
266 266 label_attachment: File
267 267 label_attachment_new: Nuovo file
268 268 label_attachment_delete: Elimina file
269 269 label_attachment_plural: File
270 270 label_report: Report
271 271 label_report_plural: Report
272 272 label_news: Notizia
273 273 label_news_new: Aggiungi notizia
274 274 label_news_plural: Notizie
275 275 label_news_latest: Utime notizie
276 276 label_news_view_all: Tutte le notizie
277 277 label_change_log: Change log
278 278 label_settings: Impostazioni
279 279 label_overview: Panoramica
280 280 label_version: Versione
281 281 label_version_new: Nuova versione
282 282 label_version_plural: Versioni
283 283 label_confirmation: Conferma
284 284 label_export_to: Esporta su
285 285 label_read: Leggi...
286 286 label_public_projects: Progetti pubblici
287 287 label_open_issues: aperta
288 288 label_open_issues_plural: aperte
289 289 label_closed_issues: chiusa
290 290 label_closed_issues_plural: chiuse
291 291 label_total: Totale
292 292 label_permissions: Permessi
293 293 label_current_status: Stato attuale
294 294 label_new_statuses_allowed: Nuovi stati possibili
295 295 label_all: tutti
296 296 label_none: nessuno
297 297 label_next: Successivo
298 298 label_previous: Precedente
299 299 label_used_by: Usato da
300 300 label_details: Dettagli
301 301 label_add_note: Aggiungi una nota
302 302 label_per_page: Per pagina
303 303 label_calendar: Calendario
304 304 label_months_from: mesi da
305 305 label_gantt: Gantt
306 306 label_internal: Interno
307 307 label_last_changes: ultime %d modifiche
308 308 label_change_view_all: Tutte le modifiche
309 309 label_personalize_page: Personalizza la pagina
310 310 label_comment: Commento
311 311 label_comment_plural: Commenti
312 312 label_comment_add: Aggiungi un commento
313 313 label_comment_added: Commento aggiunto
314 314 label_comment_delete: Elimina commenti
315 315 label_query: Custom query
316 316 label_query_plural: Query personalizzate
317 317 label_query_new: Nuova query
318 318 label_filter_add: Aggiungi filtro
319 319 label_filter_plural: Filtri
320 320 label_equals: è
321 321 label_not_equals: non è
322 322 label_in_less_than: è minore di
323 323 label_in_more_than: è maggiore di
324 324 label_in: in
325 325 label_today: oggi
326 326 label_this_week: this week
327 327 label_less_than_ago: meno di giorni fa
328 328 label_more_than_ago: più di giorni fa
329 329 label_ago: giorni fa
330 330 label_contains: contiene
331 331 label_not_contains: non contiene
332 332 label_day_plural: giorni
333 333 label_repository: Repository
334 334 label_browse: Browse
335 335 label_modification: %d modifica
336 336 label_modification_plural: %d modifiche
337 337 label_revision: Versione
338 338 label_revision_plural: Versioni
339 339 label_added: aggiunto
340 340 label_modified: modificato
341 341 label_deleted: eliminato
342 342 label_latest_revision: Ultima versione
343 343 label_latest_revision_plural: Ultime versioni
344 344 label_view_revisions: Mostra versioni
345 345 label_max_size: Dimensione massima
346 346 label_on: 'on'
347 347 label_sort_highest: Sposta in cima
348 348 label_sort_higher: Su
349 349 label_sort_lower: Giù
350 350 label_sort_lowest: Sposta in fondo
351 351 label_roadmap: Roadmap
352 352 label_roadmap_due_in: Da ultimare in
353 353 label_roadmap_overdue: %s late
354 354 label_roadmap_no_issues: Nessun contesto per questa versione
355 355 label_search: Ricerca
356 356 label_result_plural: Risultati
357 357 label_all_words: Tutte le parole
358 358 label_wiki: Wiki
359 359 label_wiki_edit: Modifica Wiki
360 360 label_wiki_edit_plural: Modfiche wiki
361 361 label_wiki_page: Wiki page
362 362 label_wiki_page_plural: Wiki pages
363 363 label_index_by_title: Index by title
364 364 label_index_by_date: Index by date
365 365 label_current_version: Versione corrente
366 366 label_preview: Anteprima
367 367 label_feed_plural: Feed
368 368 label_changes_details: Particolari di tutti i cambiamenti
369 369 label_issue_tracking: tracking dei contesti
370 370 label_spent_time: Tempo impiegato
371 371 label_f_hour: %.2f ora
372 372 label_f_hour_plural: %.2f ore
373 373 label_time_tracking: Tracking del tempo
374 374 label_change_plural: Modifiche
375 375 label_statistics: Statistiche
376 376 label_commits_per_month: Commit per mese
377 377 label_commits_per_author: Commit per autore
378 378 label_view_diff: mostra differenze
379 379 label_diff_inline: inline
380 380 label_diff_side_by_side: side by side
381 381 label_options: Opzioni
382 382 label_copy_workflow_from: Copia workflow da
383 383 label_permissions_report: Report permessi
384 384 label_watched_issues: Watched issues
385 385 label_related_issues: Related issues
386 386 label_applied_status: Applied status
387 387 label_loading: Loading...
388 388 label_relation_new: New relation
389 389 label_relation_delete: Delete relation
390 390 label_relates_to: related to
391 391 label_duplicates: duplicates
392 392 label_blocks: blocks
393 393 label_blocked_by: blocked by
394 394 label_precedes: precedes
395 395 label_follows: follows
396 396 label_end_to_start: end to start
397 397 label_end_to_end: end to end
398 398 label_start_to_start: start to start
399 399 label_start_to_end: start to end
400 400 label_stay_logged_in: Stay logged in
401 401 label_disabled: disabled
402 402 label_show_completed_versions: Show completed versions
403 403 label_me: me
404 404 label_board: Forum
405 405 label_board_new: New forum
406 406 label_board_plural: Forums
407 407 label_topic_plural: Topics
408 408 label_message_plural: Messages
409 409 label_message_last: Last message
410 410 label_message_new: New message
411 411 label_reply_plural: Replies
412 412 label_send_information: Send account information to the user
413 413 label_year: Year
414 414 label_month: Month
415 415 label_week: Week
416 416 label_date_from: From
417 417 label_date_to: To
418 418 label_language_based: Language based
419 419 label_sort_by: Sort by "%s"
420 420 label_send_test_email: Send a test email
421 421 label_feeds_access_key_created_on: RSS access key created %s ago
422 422 label_module_plural: Modules
423 423 label_added_time_by: Added by %s %s ago
424 424 label_updated_time: Updated %s ago
425 425 label_jump_to_a_project: Jump to a project...
426 426
427 427 button_login: Login
428 428 button_submit: Invia
429 429 button_save: Salva
430 430 button_check_all: Seleziona tutti
431 431 button_uncheck_all: Deseleziona tutti
432 432 button_delete: Elimina
433 433 button_create: Crea
434 434 button_test: Test
435 435 button_edit: Modifica
436 436 button_add: Aggiungi
437 437 button_change: Modifica
438 438 button_apply: Applica
439 439 button_clear: Pulisci
440 440 button_lock: Blocca
441 441 button_unlock: Sblocca
442 442 button_download: Scarica
443 443 button_list: Elenca
444 444 button_view: Mostra
445 445 button_move: Sposta
446 446 button_back: Indietro
447 447 button_cancel: Annulla
448 448 button_activate: Attiva
449 449 button_sort: Ordina
450 450 button_log_time: Registra tempo
451 451 button_rollback: Ripristina questa versione
452 452 button_watch: Watch
453 453 button_unwatch: Unwatch
454 454 button_reply: Reply
455 455 button_archive: Archive
456 456 button_unarchive: Unarchive
457 457 button_reset: Reset
458 458 button_rename: Rename
459 459
460 460 status_active: attivo
461 461 status_registered: registrato
462 462 status_locked: bloccato
463 463
464 464 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
465 465 text_regexp_info: eg. ^[A-Z0-9]+$
466 466 text_min_max_length_info: 0 significa nessuna restrizione
467 467 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
468 468 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
469 469 text_are_you_sure: Sei sicuro ?
470 470 text_journal_changed: cambiato da %s a %s
471 471 text_journal_set_to: impostato a %s
472 472 text_journal_deleted: cancellato
473 473 text_tip_task_begin_day: attività che iniziano in questa giornata
474 474 text_tip_task_end_day: attività che terminano in questa giornata
475 475 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
476 476 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
477 477 text_caracters_maximum: massimo %d caratteri.
478 478 text_length_between: Lunghezza compresa tra %d e %d caratteri.
479 479 text_tracker_no_workflow: Nessun workflow definito per questo tracker
480 480 text_unallowed_characters: Unallowed characters
481 481 text_comma_separated: Multiple values allowed (comma separated).
482 482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
483 483 text_issue_added: "E' stata segnalata l'anomalia %s."
484 484 text_issue_updated: "L'anomalia %s e' stata aggiornata."
485 485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
486 486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 487 text_issue_category_destroy_assignments: Remove category assignments
488 488 text_issue_category_reassign_to: Reassing issues to this category
489 489
490 490 default_role_manager: Manager
491 491 default_role_developper: Sviluppatore
492 492 default_role_reporter: Reporter
493 493 default_tracker_bug: Contesto
494 494 default_tracker_feature: Funzione
495 495 default_tracker_support: Supporto
496 496 default_issue_status_new: Nuovo/a
497 497 default_issue_status_assigned: Assegnato/a
498 498 default_issue_status_resolved: Risolto/a
499 499 default_issue_status_feedback: Feedback
500 500 default_issue_status_closed: Chiuso/a
501 501 default_issue_status_rejected: Rifiutato/a
502 502 default_doc_category_user: Documentazione utente
503 503 default_doc_category_tech: Documentazione tecnica
504 504 default_priority_low: Bassa
505 505 default_priority_normal: Normale
506 506 default_priority_high: Alta
507 507 default_priority_urgent: Urgente
508 508 default_priority_immediate: Immediata
509 509 default_activity_design: Design
510 510 default_activity_development: Development
511 511
512 512 enumeration_issue_priorities: Priorità contesti
513 513 enumeration_doc_categories: Categorie di documenti
514 514 enumeration_activities: Attività (time tracking)
515 515 label_file_plural: Files
516 516 label_changeset_plural: Changesets
517 517 field_column_names: Columns
518 518 label_default_columns: Default columns
519 519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 520 setting_repositories_encodings: Repositories encodings
521 521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 523 label_no_change_option: (No change)
524 524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 525 label_theme: Theme
526 526 label_default: Default
527 527 label_search_titles_only: Search titles only
528 label_nobody: nobody
@@ -1,528 +1,529
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: 同じプロジェクトに属していません
38 38 activerecord_error_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_name: '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 general_first_day_of_week: '7'
56 56
57 57 notice_account_updated: アカウントが更新されました。
58 58 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
59 59 notice_account_password_updated: パスワードが更新されました。
60 60 notice_account_wrong_password: パスワードが違います
61 61 notice_account_register_done: アカウントが作成されました。
62 62 notice_account_unknown_email: ユーザが存在しません。
63 63 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
64 64 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
65 65 notice_account_activated: アカウントが有効になりました。ログインできます。
66 66 notice_successful_create: 作成しました。
67 67 notice_successful_update: 更新しました。
68 68 notice_successful_delete: 削除しました。
69 69 notice_successful_connection: 接続しました。
70 70 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
71 71 notice_locking_conflict: 別のユーザがデータを更新しています。
72 72 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
73 73 notice_not_authorized: このページにアクセスするには認証が必要です。
74 74 notice_email_sent: %s宛にメールを送信しました。
75 75 notice_email_error: メール送信中にエラーが発生しました (%s)
76 76 notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。
77 77
78 78 mail_subject_lost_password: redMineパスワード
79 79 mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:'
80 80 mail_subject_register: redMineアカウントが有効になりました
81 81 mail_body_register: 'Redmine アカウントをアクティブにするには、以下のリンクをたどってください:'
82 82
83 83 gui_validation_error: 1件のエラー
84 84 gui_validation_error_plural: %d件のエラー
85 85
86 86 field_name: 名前
87 87 field_description: 説明
88 88 field_summary: サマリ
89 89 field_is_required: 必須
90 90 field_firstname: 名前
91 91 field_lastname: 苗字
92 92 field_mail: メールアドレス
93 93 field_filename: ファイル
94 94 field_filesize: サイズ
95 95 field_downloads: ダウンロード
96 96 field_author: 起票者
97 97 field_created_on: 作成日
98 98 field_updated_on: 更新日
99 99 field_field_format: 書式
100 100 field_is_for_all: 全プロジェクト向け
101 101 field_possible_values: 選択肢
102 102 field_regexp: 正規表現
103 103 field_min_length: 最小値
104 104 field_max_length: 最大値
105 105 field_value:
106 106 field_category: カテゴリ
107 107 field_title: タイトル
108 108 field_project: プロジェクト
109 109 field_issue: 問題
110 110 field_status: ステータス
111 111 field_notes: 注記
112 112 field_is_closed: 終了した問題
113 113 field_is_default: デフォルトのステータス
114 114 field_html_color:
115 115 field_tracker: トラッカー
116 116 field_subject: 題名
117 117 field_due_date: 期限日
118 118 field_assigned_to: 担当者
119 119 field_priority: 優先度
120 120 field_fixed_version: 修正されたバージョン
121 121 field_user: ユーザ
122 122 field_role: 役割
123 123 field_homepage: ホームページ
124 124 field_is_public: 公開
125 125 field_parent: 親プロジェクト名
126 126 field_is_in_chlog: 変更記録に表示されている問題
127 127 field_is_in_roadmap: ロードマップに表示されている問題
128 128 field_login: ログイン
129 129 field_mail_notification: メール通知
130 130 field_admin: 管理者
131 131 field_last_login_on: 最終接続日
132 132 field_language: 言語
133 133 field_effective_date: 日付
134 134 field_password: パスワード
135 135 field_new_password: 新しいパスワード
136 136 field_password_confirmation: パスワードの確認
137 137 field_version: バージョン
138 138 field_type: タイプ
139 139 field_host: ホスト
140 140 field_port: ポート
141 141 field_account: アカウント
142 142 field_base_dn: Base DN
143 143 field_attr_login: ログイン名属性
144 144 field_attr_firstname: 名前属性
145 145 field_attr_lastname: 苗字属性
146 146 field_attr_mail: メール属性
147 147 field_onthefly: あわせてユーザを作成
148 148 field_start_date: 開始日
149 149 field_done_ratio: 進捗 %%
150 150 field_auth_source: 認証モード
151 151 field_hide_mail: メールアドレスを隠す
152 152 field_comments: コメント
153 153 field_url: URL
154 154 field_start_page: メインページ
155 155 field_subproject: サブプロジェクト
156 156 field_hours: 時間
157 157 field_activity: 活動
158 158 field_spent_on: 日付
159 159 field_identifier: 識別子
160 160 field_is_filter: フィルタとして使う
161 161 field_issue_to_id: 関連する問題
162 162 field_delay: 遅延
163 163 field_assignable: Issues can be assigned to this role
164 164 field_redirect_existing_links: Redirect existing links
165 165 field_estimated_hours: 予定工数
166 166
167 167 setting_app_title: アプリケーションのタイトル
168 168 setting_app_subtitle: アプリケーションのサブタイトル
169 169 setting_welcome_text: ウェルカムメッセージ
170 170 setting_default_language: 既定の言語
171 171 setting_login_required: 認証が必要
172 172 setting_self_registration: ユーザは自分で登録できる
173 173 setting_attachment_max_size: 添付の最大サイズ
174 174 setting_issues_export_limit: 出力する問題数の上限
175 175 setting_mail_from: 送信元メールアドレス
176 176 setting_host_name: ホスト名
177 177 setting_text_formatting: テキストの書式
178 178 setting_wiki_compression: Wiki履歴を圧縮する
179 179 setting_feeds_limit: フィード内容の上限
180 180 setting_autofetch_changesets: コミットを自動取得する
181 181 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
182 182 setting_commit_ref_keywords: 参照用キーワード
183 183 setting_commit_fix_keywords: 修正用キーワード
184 184 setting_autologin: 自動ログイン
185 185 setting_date_format: 日付の形式
186 186 setting_cross_project_issue_relations: 異なるプロジェクトの問題間で関係の設定を許可
187 187
188 188 label_user: ユーザ
189 189 label_user_plural: ユーザ
190 190 label_user_new: 新しいユーザ
191 191 label_project: プロジェクト
192 192 label_project_new: 新しいプロジェクト
193 193 label_project_plural: プロジェクト
194 194 label_project_all: 全プロジェクト
195 195 label_project_latest: 最近のプロジェクト
196 196 label_issue: 問題
197 197 label_issue_new: 新しい問題
198 198 label_issue_plural: 問題
199 199 label_issue_view_all: 問題を全て見る
200 200 label_document: 文書
201 201 label_document_new: 新しい文書
202 202 label_document_plural: 文書
203 203 label_role: ロール
204 204 label_role_plural: ロール
205 205 label_role_new: 新しいロール
206 206 label_role_and_permissions: ロールと権限
207 207 label_member: メンバー
208 208 label_member_new: 新しいメンバー
209 209 label_member_plural: メンバー
210 210 label_tracker: トラッカー
211 211 label_tracker_plural: トラッカー
212 212 label_tracker_new: 新しいトラッカーを作成
213 213 label_workflow: ワークフロー
214 214 label_issue_status: 問題のステータス
215 215 label_issue_status_plural: 問題のステータス
216 216 label_issue_status_new: 新しいステータス
217 217 label_issue_category: 問題のカテゴリ
218 218 label_issue_category_plural: 問題のカテゴリ
219 219 label_issue_category_new: 新しいカテゴリ
220 220 label_custom_field: カスタムフィールド
221 221 label_custom_field_plural: カスタムフィールド
222 222 label_custom_field_new: 新しいカスタムフィールドを作成
223 223 label_enumerations: 列挙項目
224 224 label_enumeration_new: 新しい値
225 225 label_information: 情報
226 226 label_information_plural: 情報
227 227 label_please_login: ログインしてください
228 228 label_register: 登録する
229 229 label_password_lost: パスワードの再発行
230 230 label_home: ホーム
231 231 label_my_page: マイページ
232 232 label_my_account: マイアカウント
233 233 label_my_projects: マイプロジェクト
234 234 label_administration: 管理
235 235 label_login: ログイン
236 236 label_logout: ログアウト
237 237 label_help: ヘルプ
238 238 label_reported_issues: 報告した問題
239 239 label_assigned_to_me_issues: 担当している問題
240 240 label_last_login: 最近の接続
241 241 label_last_updates: 最近の更新1件
242 242 label_last_updates_plural: 最近の更新%d件
243 243 label_registered_on: 登録日
244 244 label_activity: 活動
245 245 label_new: 新しく作成
246 246 label_logged_as: ログイン中:
247 247 label_environment: 環境
248 248 label_authentication: 認証
249 249 label_auth_source: 認証モード
250 250 label_auth_source_new: 新しい認証モード
251 251 label_auth_source_plural: 認証モード
252 252 label_subproject_plural: サブプロジェクト
253 253 label_min_max_length: 最小値 - 最大値の長さ
254 254 label_list: リストから選択
255 255 label_date: 日付
256 256 label_integer: 整数
257 257 label_boolean: 真偽値
258 258 label_string: テキスト
259 259 label_text: 長いテキスト
260 260 label_attribute: 属性
261 261 label_attribute_plural: 属性
262 262 label_download: %d ダウンロード
263 263 label_download_plural: %d ダウンロード
264 264 label_no_data: 表示するデータがありません
265 265 label_change_status: ステータスの変更
266 266 label_history: 履歴
267 267 label_attachment: ファイル
268 268 label_attachment_new: 新しいファイル
269 269 label_attachment_delete: ファイルを削除
270 270 label_attachment_plural: ファイル
271 271 label_report: レポート
272 272 label_report_plural: レポート
273 273 label_news: ニュース
274 274 label_news_new: ニュースを追加
275 275 label_news_plural: ニュース
276 276 label_news_latest: 最新ニュース
277 277 label_news_view_all: 全てのニュースを見る
278 278 label_change_log: 変更記録
279 279 label_settings: 設定
280 280 label_overview: 概要
281 281 label_version: バージョン
282 282 label_version_new: 新しいバージョン
283 283 label_version_plural: バージョン
284 284 label_confirmation: 確認
285 285 label_export_to: 他の形式に出力
286 286 label_read: 読む...
287 287 label_public_projects: 公開プロジェクト
288 288 label_open_issues: 未完了
289 289 label_open_issues_plural: 未完了
290 290 label_closed_issues: 終了
291 291 label_closed_issues_plural: 終了
292 292 label_total: 合計
293 293 label_permissions: 権限
294 294 label_current_status: 現在のステータス
295 295 label_new_statuses_allowed: ステータスの移行先
296 296 label_all: 全て
297 297 label_none: なし
298 298 label_next:
299 299 label_previous:
300 300 label_used_by: 使用中
301 301 label_details: 詳細
302 302 label_add_note: 注記を追加
303 303 label_per_page: ページ毎
304 304 label_calendar: カレンダー
305 305 label_months_from: ヶ月 from
306 306 label_gantt: ガントチャート
307 307 label_internal: Internal
308 308 label_last_changes: 最新の変更%d件
309 309 label_change_view_all: 全ての変更を見る
310 310 label_personalize_page: このページをパーソナライズする
311 311 label_comment: コメント
312 312 label_comment_plural: コメント
313 313 label_comment_add: コメント追加
314 314 label_comment_added: 追加されたコメント
315 315 label_comment_delete: コメント削除
316 316 label_query: カスタムクエリ
317 317 label_query_plural: カスタムクエリ
318 318 label_query_new: 新しいクエリ
319 319 label_filter_add: フィルタ追加
320 320 label_filter_plural: フィルタ
321 321 label_equals: 等しい
322 322 label_not_equals: 等しくない
323 323 label_in_less_than: 残日数がこれより多い
324 324 label_in_more_than: 残日数がこれより少ない
325 325 label_in: 残日数
326 326 label_today: 今日
327 327 label_this_week: this week
328 328 label_less_than_ago: 経過日数がこれより少ない
329 329 label_more_than_ago: 経過日数がこれより多い
330 330 label_ago: 日前
331 331 label_contains: 含む
332 332 label_not_contains: 含まない
333 333 label_day_plural:
334 334 label_repository: リポジトリ
335 335 label_browse: ブラウズ
336 336 label_modification: %d点の変更
337 337 label_modification_plural: %d点の変更
338 338 label_revision: リビジョン
339 339 label_revision_plural: リビジョン
340 340 label_added: 追加
341 341 label_modified: 変更
342 342 label_deleted: 削除
343 343 label_latest_revision: 最新リビジョン
344 344 label_latest_revision_plural: 最新リビジョン
345 345 label_view_revisions: リビジョンを見る
346 346 label_max_size: 最大サイズ
347 347 label_on: 合計
348 348 label_sort_highest: 一番上へ
349 349 label_sort_higher: 上へ
350 350 label_sort_lower: 下へ
351 351 label_sort_lowest: 一番下へ
352 352 label_roadmap: ロードマップ
353 353 label_roadmap_due_in: 期日まで
354 354 label_roadmap_overdue: %s late
355 355 label_roadmap_no_issues: このバージョンに向けての問題はありません
356 356 label_search: 検索
357 357 label_result_plural: 結果
358 358 label_all_words: すべての単語
359 359 label_wiki: Wiki
360 360 label_wiki_edit: Wiki編集
361 361 label_wiki_edit_plural: Wiki編集
362 362 label_wiki_page: Wiki page
363 363 label_wiki_page_plural: Wikiページ
364 364 label_index_by_title: 索引
365 365 label_index_by_date: Index by date
366 366 label_current_version: 最新版
367 367 label_preview: プレビュー
368 368 label_feed_plural: フィード
369 369 label_changes_details: 全変更の詳細
370 370 label_issue_tracking: 問題トラッキング
371 371 label_spent_time: 経過時間
372 372 label_f_hour: %.2f 時間
373 373 label_f_hour_plural: %.2f 時間
374 374 label_time_tracking: 時間トラッキング
375 375 label_change_plural: 変更
376 376 label_statistics: 統計
377 377 label_commits_per_month: 月別のコミット
378 378 label_commits_per_author: 起票者別のコミット
379 379 label_view_diff: 差分を見る
380 380 label_diff_inline: インライン
381 381 label_diff_side_by_side: 横に並べる
382 382 label_options: オプション
383 383 label_copy_workflow_from: ワークフローをここからコピー
384 384 label_permissions_report: 権限レポート
385 385 label_watched_issues: ウォッチ中の問題
386 386 label_related_issues: 関連する問題
387 387 label_applied_status: 適用されたステータス
388 388 label_loading: ロード中...
389 389 label_relation_new: 新しい関連
390 390 label_relation_delete: 関連の削除
391 391 label_relates_to: 関係している
392 392 label_duplicates: 重複している
393 393 label_blocks: ブロックしている
394 394 label_blocked_by: ブロックされている
395 395 label_precedes: 先行する
396 396 label_follows: 後続する
397 397 label_end_to_start: end to start
398 398 label_end_to_end: end to end
399 399 label_start_to_start: start to start
400 400 label_start_to_end: start to end
401 401 label_stay_logged_in: ログインを維持
402 402 label_disabled: 無効
403 403 label_show_completed_versions: 完了したバージョンを表示
404 404 label_me: 自分
405 405 label_board: フォーラム
406 406 label_board_new: 新しいフォーラム
407 407 label_board_plural: フォーラム
408 408 label_topic_plural: トピック
409 409 label_message_plural: メッセージ
410 410 label_message_last: 最新のメッセージ
411 411 label_message_new: 新しいメッセージ
412 412 label_reply_plural: 返答
413 413 label_send_information: アカウント情報をユーザに送信
414 414 label_year: Year
415 415 label_month: Month
416 416 label_week: Week
417 417 label_date_from: From
418 418 label_date_to: To
419 419 label_language_based: 既定の言語の設定に従う
420 420 label_sort_by: Sort by "%s"
421 421 label_send_test_email: テストメールを送信
422 422 label_feeds_access_key_created_on: RSS access key created %s ago
423 423 label_module_plural: Modules
424 424 label_added_time_by: Added by %s %s ago
425 425 label_updated_time: Updated %s ago
426 426 label_jump_to_a_project: プロジェクトへ移動...
427 427
428 428 button_login: ログイン
429 429 button_submit: 変更
430 430 button_save: 保存
431 431 button_check_all: チェックを全部つける
432 432 button_uncheck_all: チェックを全部外す
433 433 button_delete: 削除
434 434 button_create: 作成
435 435 button_test: テスト
436 436 button_edit: 編集
437 437 button_add: 追加
438 438 button_change: 変更
439 439 button_apply: 適用
440 440 button_clear: クリア
441 441 button_lock: ロック
442 442 button_unlock: アンロック
443 443 button_download: ダウンロード
444 444 button_list: 一覧
445 445 button_view: 見る
446 446 button_move: 移動
447 447 button_back: 戻る
448 448 button_cancel: キャンセル
449 449 button_activate: 有効にする
450 450 button_sort: ソート
451 451 button_log_time: 時間を記録
452 452 button_rollback: このバージョンにロールバック
453 453 button_watch: ウォッチ
454 454 button_unwatch: ウォッチをやめる
455 455 button_reply: 返答
456 456 button_archive: 書庫に保存
457 457 button_unarchive: 書庫から戻す
458 458 button_reset: Reset
459 459 button_rename: Rename
460 460
461 461 status_active: 有効
462 462 status_registered: 登録
463 463 status_locked: ロック
464 464
465 465 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
466 466 text_regexp_info: 例) ^[A-Z0-9]+$
467 467 text_min_max_length_info: 0だと無制限になります
468 468 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
469 469 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
470 470 text_are_you_sure: よろしいですか?
471 471 text_journal_changed: %sから%sに変更
472 472 text_journal_set_to: %sにセット
473 473 text_journal_deleted: 削除
474 474 text_tip_task_begin_day: この日に開始するタスク
475 475 text_tip_task_end_day: この日に終了するタスク
476 476 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
477 477 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
478 478 text_caracters_maximum: 最大 %d 文字です。
479 479 text_length_between: 長さは %d から %d 文字までです。
480 480 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
481 481 text_unallowed_characters: 使えない文字です
482 482 text_comma_separated: (カンマで区切った)複数の値が使えます
483 483 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
484 484 text_issue_added: 問題 %s が報告されました。
485 485 text_issue_updated: 問題 %s が更新されました。
486 486 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
487 487 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
488 488 text_issue_category_destroy_assignments: Remove category assignments
489 489 text_issue_category_reassign_to: Reassing issues to this category
490 490
491 491 default_role_manager: 管理者
492 492 default_role_developper: 開発者
493 493 default_role_reporter: 報告者
494 494 default_tracker_bug: バグ
495 495 default_tracker_feature: 機能
496 496 default_tracker_support: サポート
497 497 default_issue_status_new: 新規
498 498 default_issue_status_assigned: 担当
499 499 default_issue_status_resolved: 解決
500 500 default_issue_status_feedback: フィードバック
501 501 default_issue_status_closed: 終了
502 502 default_issue_status_rejected: 却下
503 503 default_doc_category_user: ユーザ文書
504 504 default_doc_category_tech: 技術文書
505 505 default_priority_low: 低め
506 506 default_priority_normal: 通常
507 507 default_priority_high: 高め
508 508 default_priority_urgent: 急いで
509 509 default_priority_immediate: 今すぐ
510 510 default_activity_design: デザイン作業
511 511 default_activity_development: 開発作業
512 512
513 513 enumeration_issue_priorities: 問題の優先度
514 514 enumeration_doc_categories: 文書カテゴリ
515 515 enumeration_activities: 作業分類 (時間トラッキング)
516 516 label_file_plural: Files
517 517 label_changeset_plural: Changesets
518 518 field_column_names: 項目
519 519 label_default_columns: 既定の項目
520 520 setting_issue_list_default_columns: 問題の一覧で表示する項目
521 521 setting_repositories_encodings: リポジトリのエンコーディング
522 522 notice_no_issue_selected: "問題が選択されていません! 更新対象の問題を選択してください。"
523 523 label_bulk_edit_selected_issues: 問題の一括編集
524 524 label_no_change_option: (変更無し)
525 525 notice_failed_to_save_issues: "%d件の問題が保存できませんでした(%d件選択のうち) : %s."
526 526 label_theme: テーマ
527 527 label_default: 既定
528 528 label_search_titles_only: Search titles only
529 label_nobody: nobody
@@ -1,528 +1,529
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: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,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 dag
9 9 actionview_datehelper_time_in_words_day_plural: %d dagen
10 10 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
11 11 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
12 12 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
13 13 actionview_datehelper_time_in_words_minute: 1 minuut
14 14 actionview_datehelper_time_in_words_minute_half: een halve minuut
15 15 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
16 16 actionview_datehelper_time_in_words_minute_plural: %d minuten
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuut
18 18 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
19 19 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
20 20 actionview_instancetag_blank_option: Selecteer
21 21
22 22 activerecord_error_inclusion: staat niet in de lijst
23 23 activerecord_error_exclusion: is gereserveerd
24 24 activerecord_error_invalid: is ongeldig
25 25 activerecord_error_confirmation: komt niet overeen met confirmatie
26 26 activerecord_error_accepted: moet geaccepteerd worden
27 27 activerecord_error_empty: mag niet leeg zijn
28 28 activerecord_error_blank: mag niet blanco zijn
29 29 activerecord_error_too_long: is te lang
30 30 activerecord_error_too_short: is te kort
31 31 activerecord_error_wrong_length: heeft de verkeerde lengte
32 32 activerecord_error_taken: is al in gebruik
33 33 activerecord_error_not_a_number: is geen getal
34 34 activerecord_error_not_a_date: is geen valide datum
35 35 activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum
36 36 activerecord_error_not_same_project: hoort niet bij hetzelfde project
37 37 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
38 38
39 39 general_fmt_age: %d jr
40 40 general_fmt_age_plural: %d jr
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: 'Nee'
46 46 general_text_Yes: 'Ja'
47 47 general_text_no: 'nee'
48 48 general_text_yes: 'ja'
49 49 general_lang_name: 'Nederlands'
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: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
54 54 general_first_day_of_week: '7'
55 55
56 56 notice_account_updated: Account is met succes gewijzigd
57 57 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
58 58 notice_account_password_updated: Wachtwoord is met succes gewijzigd
59 59 notice_account_wrong_password: Incorrect wachtwoord
60 60 notice_account_register_done: Account is met succes aangemaakt.
61 61 notice_account_unknown_email: Onbekende gebruiker.
62 62 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
63 63 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
64 64 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
65 65 notice_successful_create: Maken succesvol.
66 66 notice_successful_update: Wijzigen succesvol.
67 67 notice_successful_delete: Verwijderen succesvol.
68 68 notice_successful_connection: Verbinding succesvol.
69 69 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
70 70 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
71 71 notice_scm_error: Deze ingang of revisie bestaat niet in de repository.
72 72 notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen.
73 73 notice_email_sent: An email was sent to %s
74 74 notice_email_error: An error occurred while sending mail (%s)
75 75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76 76
77 77 mail_subject_lost_password: Uw redMine wachtwoord
78 78 mail_body_lost_password: 'Gebruik de volgende link om Uw wachtwoord te wijzigen:'
79 79 mail_subject_register: redMine account activatie
80 80 mail_body_register: 'Gebruik de volgende link om Uw Redmine account te activeren:'
81 81
82 82 gui_validation_error: 1 fout
83 83 gui_validation_error_plural: %d fouten
84 84
85 85 field_name: Naam
86 86 field_description: Beschrijving
87 87 field_summary: Samenvatting
88 88 field_is_required: Verplicht
89 89 field_firstname: Voornaam
90 90 field_lastname: Achternaam
91 91 field_mail: Email
92 92 field_filename: Bestand
93 93 field_filesize: Grootte
94 94 field_downloads: Downloads
95 95 field_author: Auteur
96 96 field_created_on: Aangemaakt
97 97 field_updated_on: Gewijzigd
98 98 field_field_format: Formaat
99 99 field_is_for_all: Voor alle projecten
100 100 field_possible_values: Mogelijke waarden
101 101 field_regexp: Reguliere expressie
102 102 field_min_length: Minimale lengte
103 103 field_max_length: Maximale lengte
104 104 field_value: Waarde
105 105 field_category: Categorie
106 106 field_title: Titel
107 107 field_project: Project
108 108 field_issue: Issue
109 109 field_status: Status
110 110 field_notes: Notities
111 111 field_is_closed: Issue gesloten
112 112 field_is_default: Default status
113 113 field_html_color: Kleur
114 114 field_tracker: Tracker
115 115 field_subject: Onderwerp
116 116 field_due_date: Verwachte datum gereed
117 117 field_assigned_to: Toegewezen aan
118 118 field_priority: Prioriteit
119 119 field_fixed_version: Opgeloste versie
120 120 field_user: Gebruiker
121 121 field_role: Rol
122 122 field_homepage: Homepage
123 123 field_is_public: Publiek
124 124 field_parent: Subproject van
125 125 field_is_in_chlog: Issues weergegeven in wijzigingslog
126 126 field_is_in_roadmap: Issues weergegeven in roadmap
127 127 field_login: Inloggen
128 128 field_mail_notification: Mail mededelingen
129 129 field_admin: Administrateur
130 130 field_last_login_on: Laatste bezoek
131 131 field_language: Taal
132 132 field_effective_date: Datum
133 133 field_password: Wachtwoord
134 134 field_new_password: Nieuw wachtwoord
135 135 field_password_confirmation: Bevestigen
136 136 field_version: Versie
137 137 field_type: Type
138 138 field_host: Host
139 139 field_port: Port
140 140 field_account: Account
141 141 field_base_dn: Base DN
142 142 field_attr_login: Login attribuut
143 143 field_attr_firstname: Voornaam attribuut
144 144 field_attr_lastname: Achternaam attribuut
145 145 field_attr_mail: Email attribuut
146 146 field_onthefly: On-the-fly aanmaken van een gebruiker
147 147 field_start_date: Start
148 148 field_done_ratio: %% Gereed
149 149 field_auth_source: Authenticatiemethode
150 150 field_hide_mail: Verberg mijn emailadres
151 151 field_comments: Commentaar
152 152 field_url: URL
153 153 field_start_page: Startpagina
154 154 field_subproject: Subproject
155 155 field_hours: Uren
156 156 field_activity: Activiteit
157 157 field_spent_on: Datum
158 158 field_identifier: Identificatiecode
159 159 field_is_filter: Gebruikt als een filter
160 160 field_issue_to_id: Gerelateerd issue
161 161 field_delay: Vertraging
162 162 field_assignable: Issues can be assigned to this role
163 163 field_redirect_existing_links: Redirect existing links
164 164 field_estimated_hours: Estimated time
165 165
166 166 setting_app_title: Applicatie titel
167 167 setting_app_subtitle: Applicatie ondertitel
168 168 setting_welcome_text: Welkomsttekst
169 169 setting_default_language: Default taal
170 170 setting_login_required: Authent. nodig
171 171 setting_self_registration: Zelf-registratie toegestaan
172 172 setting_attachment_max_size: Attachment max. grootte
173 173 setting_issues_export_limit: Limiet export issues
174 174 setting_mail_from: Afzender mail adres
175 175 setting_host_name: Host naam
176 176 setting_text_formatting: Tekst formaat
177 177 setting_wiki_compression: Wiki geschiedenis comprimeren
178 178 setting_feeds_limit: Feed inhoud limiet
179 179 setting_autofetch_changesets: Haal commits automatisch op
180 180 setting_sys_api_enabled: Gebruik WS voor repository beheer
181 181 setting_commit_ref_keywords: Referencing keywords
182 182 setting_commit_fix_keywords: Fixing keywords
183 183 setting_autologin: Autologin
184 184 setting_date_format: Date format
185 185 setting_cross_project_issue_relations: Allow cross-project issue relations
186 186
187 187 label_user: Gebruiker
188 188 label_user_plural: Gebruikers
189 189 label_user_new: Nieuwe gebruiker
190 190 label_project: Project
191 191 label_project_new: Nieuw project
192 192 label_project_plural: Projecten
193 193 label_project_all: Alle Projecten
194 194 label_project_latest: Nieuwste projecten
195 195 label_issue: Issue
196 196 label_issue_new: Nieuw issue
197 197 label_issue_plural: Issues
198 198 label_issue_view_all: Bekijk alle issues
199 199 label_document: Document
200 200 label_document_new: Nieuw document
201 201 label_document_plural: Documenten
202 202 label_role: Rol
203 203 label_role_plural: Rollen
204 204 label_role_new: Nieuwe rol
205 205 label_role_and_permissions: Rollen en permissies
206 206 label_member: Lid
207 207 label_member_new: Nieuw lid
208 208 label_member_plural: Leden
209 209 label_tracker: Tracker
210 210 label_tracker_plural: Trackers
211 211 label_tracker_new: Nieuwe tracker
212 212 label_workflow: Workflow
213 213 label_issue_status: Issue status
214 214 label_issue_status_plural: Issue statussen
215 215 label_issue_status_new: Nieuwe status
216 216 label_issue_category: Issue categorie
217 217 label_issue_category_plural: Issue categorieën
218 218 label_issue_category_new: Nieuwe categorie
219 219 label_custom_field: Custom veld
220 220 label_custom_field_plural: Custom velden
221 221 label_custom_field_new: Nieuw custom veld
222 222 label_enumerations: Enumeraties
223 223 label_enumeration_new: Nieuwe waarde
224 224 label_information: Informatie
225 225 label_information_plural: Informatie
226 226 label_please_login: Gaarne inloggen
227 227 label_register: Registreer
228 228 label_password_lost: Wachtwoord verloren
229 229 label_home: Home
230 230 label_my_page: Mijn pagina
231 231 label_my_account: Mijn account
232 232 label_my_projects: Mijn projecten
233 233 label_administration: Administratie
234 234 label_login: Inloggen
235 235 label_logout: Uitloggen
236 236 label_help: Help
237 237 label_reported_issues: Gemelde issues
238 238 label_assigned_to_me_issues: Aan mij toegewezen issues
239 239 label_last_login: Laatste bezoek
240 240 label_last_updates: Laatste wijziging
241 241 label_last_updates_plural: %d laatste wijziging
242 242 label_registered_on: Geregistreerd op
243 243 label_activity: Activiteit
244 244 label_new: Nieuw
245 245 label_logged_as: Ingelogd als
246 246 label_environment: Omgeving
247 247 label_authentication: Authenticatie
248 248 label_auth_source: Authenticatie modus
249 249 label_auth_source_new: Nieuwe authenticatie modus
250 250 label_auth_source_plural: Authenticatie modi
251 251 label_subproject_plural: Subprojecten
252 252 label_min_max_length: Min - Max lengte
253 253 label_list: Lijst
254 254 label_date: Datum
255 255 label_integer: Integer
256 256 label_boolean: Boolean
257 257 label_string: Tekst
258 258 label_text: Lange tekst
259 259 label_attribute: Attribuut
260 260 label_attribute_plural: Attributen
261 261 label_download: %d Download
262 262 label_download_plural: %d Downloads
263 263 label_no_data: Geen gegevens om te tonen
264 264 label_change_status: Wijzig status
265 265 label_history: Geschiedenis
266 266 label_attachment: Bestand
267 267 label_attachment_new: Nieuw bestand
268 268 label_attachment_delete: Verwijder bestand
269 269 label_attachment_plural: Bestanden
270 270 label_report: Rapport
271 271 label_report_plural: Rapporten
272 272 label_news: Nieuws
273 273 label_news_new: Voeg nieuws toe
274 274 label_news_plural: Nieuws
275 275 label_news_latest: Laatste nieuws
276 276 label_news_view_all: Bekijk al het nieuws
277 277 label_change_log: Wijzigingslog
278 278 label_settings: Instellingen
279 279 label_overview: Overzicht
280 280 label_version: Versie
281 281 label_version_new: Nieuwe versie
282 282 label_version_plural: Versies
283 283 label_confirmation: Bevestiging
284 284 label_export_to: Exporteer naar
285 285 label_read: Lees...
286 286 label_public_projects: Publieke projecten
287 287 label_open_issues: open
288 288 label_open_issues_plural: open
289 289 label_closed_issues: gesloten
290 290 label_closed_issues_plural: gesloten
291 291 label_total: Totaal
292 292 label_permissions: Permissies
293 293 label_current_status: Huidige status
294 294 label_new_statuses_allowed: Nieuwe statuses toegestaan
295 295 label_all: alle
296 296 label_none: geen
297 297 label_next: Volgende
298 298 label_previous: Vorige
299 299 label_used_by: Gebruikt door
300 300 label_details: Details
301 301 label_add_note: Voeg een notitie toe
302 302 label_per_page: Per pagina
303 303 label_calendar: Kalender
304 304 label_months_from: maanden vanaf
305 305 label_gantt: Gantt
306 306 label_internal: Intern
307 307 label_last_changes: laatste %d wijzigingen
308 308 label_change_view_all: Bekijk alle wijzigingen
309 309 label_personalize_page: Personaliseer deze pagina
310 310 label_comment: Commentaar
311 311 label_comment_plural: Commentaar
312 312 label_comment_add: Voeg commentaar toe
313 313 label_comment_added: Commentaar toegevoegd
314 314 label_comment_delete: Verwijder commentaar
315 315 label_query: Eigen zoekvraag
316 316 label_query_plural: Eigen zoekvragen
317 317 label_query_new: Nieuwe zoekvraag
318 318 label_filter_add: Voeg filter toe
319 319 label_filter_plural: Filters
320 320 label_equals: is gelijk
321 321 label_not_equals: is niet gelijk
322 322 label_in_less_than: in minder dan
323 323 label_in_more_than: in meer dan
324 324 label_in: in
325 325 label_today: vandaag
326 326 label_this_week: this week
327 327 label_less_than_ago: minder dan dagen geleden
328 328 label_more_than_ago: meer dan dagen geleden
329 329 label_ago: dagen geleden
330 330 label_contains: bevat
331 331 label_not_contains: bevat niet
332 332 label_day_plural: dagen
333 333 label_repository: Repository
334 334 label_browse: Blader
335 335 label_modification: %d wijziging
336 336 label_modification_plural: %d wijzigingen
337 337 label_revision: Revisie
338 338 label_revision_plural: Revisies
339 339 label_added: toegevoegd
340 340 label_modified: gewijzigd
341 341 label_deleted: verwijderd
342 342 label_latest_revision: Meest recente revisie
343 343 label_latest_revision_plural: Meest recente revisies
344 344 label_view_revisions: Bekijk revisies
345 345 label_max_size: Maximum grootte
346 346 label_on: 'van'
347 347 label_sort_highest: Verplaats naar begin
348 348 label_sort_higher: Verplaats naar boven
349 349 label_sort_lower: Verplaats naar beneden
350 350 label_sort_lowest: Verplaats naar eind
351 351 label_roadmap: Roadmap
352 352 label_roadmap_due_in: Due in
353 353 label_roadmap_overdue: %s late
354 354 label_roadmap_no_issues: Geen issues voor deze versie
355 355 label_search: Zoeken
356 356 label_result_plural: Resultaten
357 357 label_all_words: Alle woorden
358 358 label_wiki: Wiki
359 359 label_wiki_edit: Wiki edit
360 360 label_wiki_edit_plural: Wiki edits
361 361 label_wiki_page: Wiki page
362 362 label_wiki_page_plural: Wiki pages
363 363 label_index_by_title: Index by title
364 364 label_index_by_date: Index by date
365 365 label_current_version: Huidige versie
366 366 label_preview: Testweergave
367 367 label_feed_plural: Feeds
368 368 label_changes_details: Details van alle wijzigingen
369 369 label_issue_tracking: Issue tracking
370 370 label_spent_time: Gespendeerde tijd
371 371 label_f_hour: %.2f uur
372 372 label_f_hour_plural: %.2f uren
373 373 label_time_tracking: Tijd tracking
374 374 label_change_plural: Wijzigingen
375 375 label_statistics: Statistieken
376 376 label_commits_per_month: Commits per maand
377 377 label_commits_per_author: Commits per auteur
378 378 label_view_diff: Bekijk verschillen
379 379 label_diff_inline: inline
380 380 label_diff_side_by_side: naast elkaar
381 381 label_options: Opties
382 382 label_copy_workflow_from: Kopieer workflow van
383 383 label_permissions_report: Permissies rapport
384 384 label_watched_issues: Gemonitorde issues
385 385 label_related_issues: Gerelateerde issues
386 386 label_applied_status: Toegekende status
387 387 label_loading: Laden...
388 388 label_relation_new: Nieuwe relatie
389 389 label_relation_delete: Verwijder relatie
390 390 label_relates_to: gerelateerd aan
391 391 label_duplicates: dupliceert
392 392 label_blocks: blokkeert
393 393 label_blocked_by: geblokkeerd door
394 394 label_precedes: gaat vooraf aan
395 395 label_follows: volgt op
396 396 label_end_to_start: eind tot start
397 397 label_end_to_end: eind tot eind
398 398 label_start_to_start: start tot start
399 399 label_start_to_end: start tot eind
400 400 label_stay_logged_in: Blijf ingelogd
401 401 label_disabled: uitgeschakeld
402 402 label_show_completed_versions: Toon afgeronde versies
403 403 label_me: ik
404 404 label_board: Forum
405 405 label_board_new: Nieuw forum
406 406 label_board_plural: Forums
407 407 label_topic_plural: Onderwerpen
408 408 label_message_plural: Berichten
409 409 label_message_last: Laatste bericht
410 410 label_message_new: Nieuw bericht
411 411 label_reply_plural: Antwoorden
412 412 label_send_information: Send account information to the user
413 413 label_year: Year
414 414 label_month: Month
415 415 label_week: Week
416 416 label_date_from: From
417 417 label_date_to: To
418 418 label_language_based: Language based
419 419 label_sort_by: Sort by "%s"
420 420 label_send_test_email: Send a test email
421 421 label_feeds_access_key_created_on: RSS access key created %s ago
422 422 label_module_plural: Modules
423 423 label_added_time_by: Added by %s %s ago
424 424 label_updated_time: Updated %s ago
425 425 label_jump_to_a_project: Jump to a project...
426 426
427 427 button_login: Inloggen
428 428 button_submit: Toevoegen
429 429 button_save: Bewaren
430 430 button_check_all: Selecteer alle
431 431 button_uncheck_all: Deselecteer alle
432 432 button_delete: Verwijder
433 433 button_create: Maak
434 434 button_test: Test
435 435 button_edit: Bewerk
436 436 button_add: Voeg toe
437 437 button_change: Wijzig
438 438 button_apply: Pas toe
439 439 button_clear: Leeg maken
440 440 button_lock: Lock
441 441 button_unlock: Unlock
442 442 button_download: Download
443 443 button_list: Lijst
444 444 button_view: Bekijken
445 445 button_move: Verplaatsen
446 446 button_back: Terug
447 447 button_cancel: Annuleer
448 448 button_activate: Activeer
449 449 button_sort: Sorteer
450 450 button_log_time: Log tijd
451 451 button_rollback: Rollback naar deze versie
452 452 button_watch: Monitor
453 453 button_unwatch: Niet meer monitoren
454 454 button_reply: Antwoord
455 455 button_archive: Archive
456 456 button_unarchive: Unarchive
457 457 button_reset: Reset
458 458 button_rename: Rename
459 459
460 460 status_active: Actief
461 461 status_registered: geregistreerd
462 462 status_locked: gelockt
463 463
464 464 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
465 465 text_regexp_info: bv. ^[A-Z0-9]+$
466 466 text_min_max_length_info: 0 betekent geen restrictie
467 467 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
468 468 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
469 469 text_are_you_sure: Weet U het zeker ?
470 470 text_journal_changed: gewijzigd van %s naar %s
471 471 text_journal_set_to: ingesteld op %s
472 472 text_journal_deleted: verwijderd
473 473 text_tip_task_begin_day: taak die op deze dag begint
474 474 text_tip_task_end_day: taak die op deze dag eindigt
475 475 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
476 476 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
477 477 text_caracters_maximum: %d van maximum aantal tekens.
478 478 text_length_between: Lengte tussen %d en %d tekens.
479 479 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
480 480 text_unallowed_characters: Niet toegestane tekens
481 481 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
482 482 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
483 483 text_issue_added: Issue %s is gerapporteerd.
484 484 text_issue_updated: Issue %s is gewijzigd.
485 485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
486 486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 487 text_issue_category_destroy_assignments: Remove category assignments
488 488 text_issue_category_reassign_to: Reassing issues to this category
489 489
490 490 default_role_manager: Manager
491 491 default_role_developper: Ontwikkelaar
492 492 default_role_reporter: Rapporteur
493 493 default_tracker_bug: Bug
494 494 default_tracker_feature: Feature
495 495 default_tracker_support: Support
496 496 default_issue_status_new: Nieuw
497 497 default_issue_status_assigned: Toegewezen
498 498 default_issue_status_resolved: Opgelost
499 499 default_issue_status_feedback: Terugkoppeling
500 500 default_issue_status_closed: Gesloten
501 501 default_issue_status_rejected: Afgewezen
502 502 default_doc_category_user: Gebruikersdocumentatie
503 503 default_doc_category_tech: Technische documentatie
504 504 default_priority_low: Laag
505 505 default_priority_normal: Normaal
506 506 default_priority_high: Hoog
507 507 default_priority_urgent: Spoed
508 508 default_priority_immediate: Onmiddellijk
509 509 default_activity_design: Design
510 510 default_activity_development: Development
511 511
512 512 enumeration_issue_priorities: Issue prioriteiten
513 513 enumeration_doc_categories: Document categorieën
514 514 enumeration_activities: Activiteiten (tijd tracking)
515 515 text_comma_separated: Multiple values allowed (comma separated).
516 516 label_file_plural: Files
517 517 label_changeset_plural: Changesets
518 518 field_column_names: Columns
519 519 label_default_columns: Default columns
520 520 setting_issue_list_default_columns: Default columns displayed on the issue list
521 521 setting_repositories_encodings: Repositories encodings
522 522 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
523 523 label_bulk_edit_selected_issues: Bulk edit selected issues
524 524 label_no_change_option: (No change)
525 525 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
526 526 label_theme: Theme
527 527 label_default: Default
528 528 label_search_titles_only: Search titles only
529 label_nobody: nobody
@@ -1,527 +1,528
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: Styczeń,Luty,Marzec,Kwiecień,Maj,Czerwiec,Lipiec,Sierpień,Wrzesień,Październik,Listopad,Grudzień
5 5 actionview_datehelper_select_month_names_abbr: Sty,Lut,Mar,Kwi,Maj,Cze,Lip,Sie,Wrz,Paź,Lis,Gru
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 dzień
9 9 actionview_datehelper_time_in_words_day_plural: %d dni
10 10 actionview_datehelper_time_in_words_hour_about: około godziny
11 11 actionview_datehelper_time_in_words_hour_about_plural: około %d godzin
12 12 actionview_datehelper_time_in_words_hour_about_single: około godziny
13 13 actionview_datehelper_time_in_words_minute: 1 minuta
14 14 actionview_datehelper_time_in_words_minute_half: pół minuty
15 15 actionview_datehelper_time_in_words_minute_less_than: mniej niż minuta
16 16 actionview_datehelper_time_in_words_minute_plural: %d minut
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuta
18 18 actionview_datehelper_time_in_words_second_less_than: mniej niż sekunda
19 19 actionview_datehelper_time_in_words_second_less_than_plural: mniej niż %d sekund
20 20 actionview_instancetag_blank_option: Proszę wybierz
21 21
22 22 activerecord_error_inclusion: nie jest zawarte na liście
23 23 activerecord_error_exclusion: jest zarezerwowane
24 24 activerecord_error_invalid: jest nieprawidłowe
25 25 activerecord_error_confirmation: nie pasuje do potwierdzenia
26 26 activerecord_error_accepted: musi być zaakceptowane
27 27 activerecord_error_empty: nie może być puste
28 28 activerecord_error_blank: nie może być czyste
29 29 activerecord_error_too_long: jest za długie
30 30 activerecord_error_too_short: jest za krótkie
31 31 activerecord_error_wrong_length: ma złą długość
32 32 activerecord_error_taken: jest już wybrane
33 33 activerecord_error_not_a_number: nie jest numerem
34 34 activerecord_error_not_a_date: nie jest prawidłową datą
35 35 activerecord_error_greater_than_start_date: musi być większe niż początkowa data
36 36 activerecord_error_not_same_project: nie należy do tego samego projektu
37 37 activerecord_error_circular_dependency: Ta relacja może wytworzyć kołową zależność
38 38
39 39 general_fmt_age: %d lat
40 40 general_fmt_age_plural: %d lat
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: 'Nie'
46 46 general_text_Yes: 'Tak'
47 47 general_text_no: 'nie'
48 48 general_text_yes: 'tak'
49 49 general_lang_name: 'Polski'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-2
52 52 general_pdf_encoding: ISO-8859-2
53 53 general_day_names: Poniedziałek,Wtorek,Środa,Czwartek,Piątek,Sobota,Niedziela
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Konto prawidłowo zaktualizowane.
57 57 notice_account_invalid_creditentials: Zły użytkownik lub hasło
58 58 notice_account_password_updated: Hasło prawidłowo zmienione.
59 59 notice_account_wrong_password: Złe hasło
60 60 notice_account_register_done: Konto prawidłowo stworzone.
61 61 notice_account_unknown_email: Nieznany użytkownik.
62 62 notice_can_t_change_password: To konto ma zewnętrzne źródło identyfikacji. Nie możesz zmienić hasła.
63 63 notice_account_lost_email_sent: Email z instrukcjami zmiany hasła został wysłany do Ciebie.
64 64 notice_account_activated: Twoje konto zostało aktywowane. Możesz się zalogować.
65 65 notice_successful_create: Udane stworzenie.
66 66 notice_successful_update: Udane poprawienie.
67 67 notice_successful_delete: Udane usunięcie.
68 68 notice_successful_connection: Udane nawiązanie połączenia.
69 69 notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta.
70 70 notice_locking_conflict: Dane poprawione przez innego użytkownika.
71 71 notice_scm_error: Wejście i/lub zmiana nie istnieje w repozytorium.
72 72 notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę.
73 73
74 74 mail_subject_lost_password: Twoje hasło do redMine
75 75 mail_body_lost_password: 'W celu zmiany swojego hasła użyj poniższego odnośnika:'
76 76 mail_subject_register: Aktywacja konta w redMine
77 77 mail_body_register: 'W celu aktywacji Twojego konta w Redmine, użyj poniższego odnośnika:'
78 78
79 79 gui_validation_error: 1 błąd
80 80 gui_validation_error_plural: %d błędów
81 81
82 82 field_name: Nazwa
83 83 field_description: Opis
84 84 field_summary: Podsumowanie
85 85 field_is_required: Wymagane
86 86 field_firstname: Imię
87 87 field_lastname: Nazwisko
88 88 field_mail: Email
89 89 field_filename: Plik
90 90 field_filesize: Rozmiar
91 91 field_downloads: Pobrań
92 92 field_author: Autor
93 93 field_created_on: Stworzone
94 94 field_updated_on: Zmienione
95 95 field_field_format: Format
96 96 field_is_for_all: Dla wszystkich projektów
97 97 field_possible_values: Możliwe wartości
98 98 field_regexp: Wyrażenie regularne
99 99 field_min_length: Minimalna długość
100 100 field_max_length: Maksymalna długość
101 101 field_value: Wartość
102 102 field_category: Kategoria
103 103 field_title: Tytuł
104 104 field_project: Projekt
105 105 field_issue: Zgłoszenie
106 106 field_status: Status
107 107 field_notes: Notatki
108 108 field_is_closed: Zgłoszenie zamknięte
109 109 field_is_default: Domyślny status
110 110 field_html_color: Kolor
111 111 field_tracker: Typ zgłoszenia
112 112 field_subject: Temat
113 113 field_due_date: Data oddania
114 114 field_assigned_to: Przydzielony do
115 115 field_priority: Priorytet
116 116 field_fixed_version: Wersja
117 117 field_user: Użytkownik
118 118 field_role: Rola
119 119 field_homepage: Strona www
120 120 field_is_public: Publiczny
121 121 field_parent: Subprojekt
122 122 field_is_in_chlog: Zgłoszenia pokazane w zapisie zmian
123 123 field_is_in_roadmap: Zgłoszenia pokazane na mapie
124 124 field_login: Login
125 125 field_mail_notification: Powiadomienia Email
126 126 field_admin: Administrator
127 127 field_last_login_on: Ostatnie połączenie
128 128 field_language: Język
129 129 field_effective_date: Data
130 130 field_password: Hasło
131 131 field_new_password: Nowe hasło
132 132 field_password_confirmation: Potwierdzenie
133 133 field_version: Wersja
134 134 field_type: Typ
135 135 field_host: Host
136 136 field_port: Port
137 137 field_account: Konto
138 138 field_base_dn: Base DN
139 139 field_attr_login: Login atrybut
140 140 field_attr_firstname: Imię atrybut
141 141 field_attr_lastname: Nazwisko atrybut
142 142 field_attr_mail: Email atrybut
143 143 field_onthefly: Tworzenie użytkownika w locie
144 144 field_start_date: Start
145 145 field_done_ratio: %% Wykonane
146 146 field_auth_source: Tryb identyfikacji
147 147 field_hide_mail: Ukryj mój adres email
148 148 field_comments: Komentarz
149 149 field_url: URL
150 150 field_start_page: Strona startowa
151 151 field_subproject: Podprojekt
152 152 field_hours: Godzin
153 153 field_activity: Aktywność
154 154 field_spent_on: Data
155 155 field_identifier: Identifikator
156 156 field_is_filter: Używane jako filter
157 157 field_issue_to_id: Powiązane zgłoszenie
158 158 field_delay: Opóźnienie
159 159
160 160 setting_app_title: Tytuł aplikacji
161 161 setting_app_subtitle: Podtytuł aplikacji
162 162 setting_welcome_text: Tekst powitalny
163 163 setting_default_language: Domyślny język
164 164 setting_login_required: Identyfikacja wymagana
165 165 setting_self_registration: Własna rejestracja umożliwiona
166 166 setting_attachment_max_size: Maks. rozm. załącznika
167 167 setting_issues_export_limit: Limit eksportu zgłoszeń
168 168 setting_mail_from: Adres email wysyłki
169 169 setting_host_name: Nazwa hosta
170 170 setting_text_formatting: Formatowanie tekstu
171 171 setting_wiki_compression: Kompresja historii Wiki
172 172 setting_feeds_limit: Limit danych RSS
173 173 setting_autofetch_changesets: Auto-odświeżanie CVS
174 174 setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium
175 175 setting_commit_ref_keywords: Terminy odnoszące (CVS)
176 176 setting_commit_fix_keywords: Terminy ustalające (CVS)
177 177 setting_autologin: Auto logowanie
178 178 setting_date_format: Format daty
179 179
180 180 label_user: Użytkownik
181 181 label_user_plural: Użytkownicy
182 182 label_user_new: Nowy użytkownik
183 183 label_project: Projekt
184 184 label_project_new: Nowy projekt
185 185 label_project_plural: Projekty
186 186 label_project_all: Wszystkie projekty
187 187 label_project_latest: Ostatnie projekty
188 188 label_issue: Zgłoszenie
189 189 label_issue_new: Nowe zgłoszenie
190 190 label_issue_plural: Zgłoszenia
191 191 label_issue_view_all: Zobacz wszystkie zgłoszenia
192 192 label_document: Dokument
193 193 label_document_new: Nowy dokument
194 194 label_document_plural: Dokumenty
195 195 label_role: Rola
196 196 label_role_plural: Role
197 197 label_role_new: Nowa rola
198 198 label_role_and_permissions: Role i Uprawnienia
199 199 label_member: Uczestnik
200 200 label_member_new: Nowy uczestnik
201 201 label_member_plural: Uczestnicy
202 202 label_tracker: Typ zgłoszenia
203 203 label_tracker_plural: Typy zgłoszeń
204 204 label_tracker_new: Nowy typ zgłoszenia
205 205 label_workflow: Przepływ
206 206 label_issue_status: Status zgłoszenia
207 207 label_issue_status_plural: Statusy zgłoszeń
208 208 label_issue_status_new: Nowy status
209 209 label_issue_category: Kategoria zgłoszenia
210 210 label_issue_category_plural: Kategorie zgłoszeń
211 211 label_issue_category_new: Nowa kategoria
212 212 label_custom_field: Dowolne pole
213 213 label_custom_field_plural: Dowolne pola
214 214 label_custom_field_new: Nowe dowolne pole
215 215 label_enumerations: Wyliczenia
216 216 label_enumeration_new: Nowa wartość
217 217 label_information: Informacja
218 218 label_information_plural: Informacje
219 219 label_please_login: Zaloguj się
220 220 label_register: Rejestracja
221 221 label_password_lost: Zapomniane hasło
222 222 label_home: Główna
223 223 label_my_page: Moja strona
224 224 label_my_account: Moje konto
225 225 label_my_projects: Moje projekty
226 226 label_administration: Administracja
227 227 label_login: Login
228 228 label_logout: Wylogowanie
229 229 label_help: Pomoc
230 230 label_reported_issues: Zaraportowane zgłoszenia
231 231 label_assigned_to_me_issues: Zgłoszenia przypisane do mnie
232 232 label_last_login: Ostatnie połączenie
233 233 label_last_updates: Ostatnia zmieniana
234 234 label_last_updates_plural: %d ostatnie zmiany
235 235 label_registered_on: Zarejestrowany
236 236 label_activity: Aktywność
237 237 label_new: Nowy
238 238 label_logged_as: Zalogowany jako
239 239 label_environment: Środowisko
240 240 label_authentication: Identyfikacja
241 241 label_auth_source: Tryb identyfikacji
242 242 label_auth_source_new: Nowy tryb identyfikacji
243 243 label_auth_source_plural: Tryby identyfikacji
244 244 label_subproject_plural: Podprojekty
245 245 label_min_max_length: Min - Maks długość
246 246 label_list: Lista
247 247 label_date: Data
248 248 label_integer: L. pojedyńcza
249 249 label_boolean: Wart. logiczna
250 250 label_string: Tekst
251 251 label_text: Długi tekst
252 252 label_attribute: Atrybut
253 253 label_attribute_plural: Atrybuty
254 254 label_download: %d Pobranie
255 255 label_download_plural: %d Pobrania
256 256 label_no_data: Brak danych do pokazania
257 257 label_change_status: Status zmian
258 258 label_history: Historia
259 259 label_attachment: Plik
260 260 label_attachment_new: Nowy plik
261 261 label_attachment_delete: Skasuj plik
262 262 label_attachment_plural: Pliki
263 263 label_report: Raport
264 264 label_report_plural: Raporty
265 265 label_news: Nowość
266 266 label_news_new: Dodaj nowość
267 267 label_news_plural: Nowości
268 268 label_news_latest: Ostatnie nowości
269 269 label_news_view_all: Pokaż wszystkie nowości
270 270 label_change_log: Lista zmian
271 271 label_settings: Ustawienia
272 272 label_overview: Przegląd
273 273 label_version: Wersja
274 274 label_version_new: Nowa wersja
275 275 label_version_plural: Wersje
276 276 label_confirmation: Potwierdzenie
277 277 label_export_to: Eksportuj do
278 278 label_read: Czytanie...
279 279 label_public_projects: Projekty publiczne
280 280 label_open_issues: otwarte
281 281 label_open_issues_plural: otwarte
282 282 label_closed_issues: zamknięte
283 283 label_closed_issues_plural: zamknięte
284 284 label_total: Ogółem
285 285 label_permissions: Uprawnienia
286 286 label_current_status: Obecny status
287 287 label_new_statuses_allowed: Uprawnione nowe statusy
288 288 label_all: wszystko
289 289 label_none: brak
290 290 label_next: Następne
291 291 label_previous: Poprzednie
292 292 label_used_by: Używane przez
293 293 label_details: Szczegóły
294 294 label_add_note: Dodaj notatkę
295 295 label_per_page: Na stronę
296 296 label_calendar: Kalendarz
297 297 label_months_from: miesiące od
298 298 label_gantt: Gantt
299 299 label_internal: Wewnętrzny
300 300 label_last_changes: ostatnie %d zmian
301 301 label_change_view_all: Pokaż wszystkie zmiany
302 302 label_personalize_page: Personalizuj tą stronę
303 303 label_comment: Komentarz
304 304 label_comment_plural: Komentarze
305 305 label_comment_add: Dodaj komentarz
306 306 label_comment_added: Komentarz dodany
307 307 label_comment_delete: Usuń komentarze
308 308 label_query: Dowolne zapytanie
309 309 label_query_plural: Dowolne zapytania
310 310 label_query_new: Nowe zapytanie
311 311 label_filter_add: Dodaj filtr
312 312 label_filter_plural: Filtry
313 313 label_equals: jest
314 314 label_not_equals: nie jest
315 315 label_in_less_than: w mniejszych od
316 316 label_in_more_than: w większych niż
317 317 label_in: w
318 318 label_today: dzisiaj
319 319 label_less_than_ago: dni mniej
320 320 label_more_than_ago: dni więcej
321 321 label_ago: dni temu
322 322 label_contains: zawiera
323 323 label_not_contains: nie zawiera
324 324 label_day_plural: dni
325 325 label_repository: Repozytorium
326 326 label_browse: Przegląd
327 327 label_modification: %d modyfikacja
328 328 label_modification_plural: %d modyfikacja
329 329 label_revision: Zmiana
330 330 label_revision_plural: Zmiany
331 331 label_added: dodane
332 332 label_modified: zmodufikowane
333 333 label_deleted: usunięte
334 334 label_latest_revision: Ostatnia zmiana
335 335 label_latest_revision_plural: Ostatnie zmiany
336 336 label_view_revisions: Pokaż zmiany
337 337 label_max_size: Kamsymalny rozmiar
338 338 label_on: 'włączone'
339 339 label_sort_highest: Przesuń na górę
340 340 label_sort_higher: Do góry
341 341 label_sort_lower: Do dołu
342 342 label_sort_lowest: Przesuń na dół
343 343 label_roadmap: Mapa
344 344 label_roadmap_due_in: W czasie
345 345 label_roadmap_no_issues: Brak zgłoszeń do tej wersji
346 346 label_search: Szukaj
347 347 label_result_plural: Rezultatów
348 348 label_all_words: Wszystkie słowa
349 349 label_wiki: Wiki
350 350 label_wiki_edit: Edycja wiki
351 351 label_wiki_edit_plural: Edycje wiki
352 352 label_wiki_page: Strona wiki
353 353 label_wiki_page_plural: Strony wiki
354 354 label_index_by_title: Indeks
355 355 label_index_by_date: Index by date
356 356 label_current_version: Obecna wersja
357 357 label_preview: Podgląd
358 358 label_feed_plural: Ilość RSS
359 359 label_changes_details: Szczegóły wszystkich zmian
360 360 label_issue_tracking: Śledzenie zgłoszeń
361 361 label_spent_time: Spędzony czas
362 362 label_f_hour: %.2f godzina
363 363 label_f_hour_plural: %.2f godzin
364 364 label_time_tracking: Śledzenie czasu
365 365 label_change_plural: Zmiany
366 366 label_statistics: Statystyki
367 367 label_commits_per_month: Wrzutek CVS w miesiącu
368 368 label_commits_per_author: Wrzutek CVS przez autora
369 369 label_view_diff: Pokaż różnice
370 370 label_diff_inline: w linii
371 371 label_diff_side_by_side: obok siebie
372 372 label_options: Opcje
373 373 label_copy_workflow_from: Kopiuj przepływ z
374 374 label_permissions_report: Raport uprawnień
375 375 label_watched_issues: Obserwowane zgłoszenia
376 376 label_related_issues: Powiązane zgłoszenia
377 377 label_applied_status: Stosowany status
378 378 label_loading: Ładowanie...
379 379 label_relation_new: Nowe powiązanie
380 380 label_relation_delete: Usuń powiązanie
381 381 label_relates_to: powiązane z
382 382 label_duplicates: duplikaty
383 383 label_blocks: blokady
384 384 label_blocked_by: zablokowane przez
385 385 label_precedes: poprzedza
386 386 label_follows: podąża
387 387 label_end_to_start: koniec do początku
388 388 label_end_to_end: koniec do końca
389 389 label_start_to_start: początek do początku
390 390 label_start_to_end: początek do końca
391 391 label_stay_logged_in: Pozostań zalogowany
392 392 label_disabled: zablokowany
393 393 label_show_completed_versions: Pokaż kompletne wersje
394 394 label_me: ja
395 395 label_board: Forum
396 396 label_board_new: Nowe forum
397 397 label_board_plural: Fora
398 398 label_topic_plural: Tematy
399 399 label_message_plural: Wiadomości
400 400 label_message_last: Ostatnia wiadomość
401 401 label_message_new: Nowa wiadomość
402 402 label_reply_plural: Odpowiedzi
403 403 label_send_information: Wyślij informację użytkownikowi
404 404 label_year: Rok
405 405 label_month: Miesiąc
406 406 label_week: Tydzień
407 407 label_date_from: Z
408 408 label_date_to: Do
409 409 label_language_based: Na podstawie języka
410 410
411 411 button_login: Login
412 412 button_submit: Wyślij
413 413 button_save: Zapisz
414 414 button_check_all: Zaznacz wszystko
415 415 button_uncheck_all: Odznacz wszystko
416 416 button_delete: Usuń
417 417 button_create: Stwórz
418 418 button_test: Testuj
419 419 button_edit: Edytuj
420 420 button_add: Dodaj
421 421 button_change: Zmień
422 422 button_apply: Ustaw
423 423 button_clear: Wyczyść
424 424 button_lock: Zablokuj
425 425 button_unlock: Odblokuj
426 426 button_download: Pobierz
427 427 button_list: Lista
428 428 button_view: Pokaż
429 429 button_move: Przenieś
430 430 button_back: Wstecz
431 431 button_cancel: Anuluj
432 432 button_activate: Aktywuj
433 433 button_sort: Sortuj
434 434 button_log_time: Logowanie czasu
435 435 button_rollback: Przywróc do tej wersji
436 436 button_watch: Obserwuj
437 437 button_unwatch: Nie obserwuj
438 438 button_reply: Odpowiedz
439 439 button_archive: Archiwizuj
440 440 button_unarchive: Przywróc z archiwum
441 441
442 442 status_active: aktywny
443 443 status_registered: zarejestrowany
444 444 status_locked: zablokowany
445 445
446 446 text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony mailem.
447 447 text_regexp_info: np. ^[A-Z0-9]+$
448 448 text_min_max_length_info: 0 oznacza brak restrykcji
449 449 text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane?
450 450 text_workflow_edit: Zaznacz rolę i typ zgłoszenia do edycji przepływu
451 451 text_are_you_sure: Jesteś pewien ?
452 452 text_journal_changed: zmienione %s do %s
453 453 text_journal_set_to: ustawione na %s
454 454 text_journal_deleted: usunięte
455 455 text_tip_task_begin_day: zadanie zaczynające się dzisiaj
456 456 text_tip_task_end_day: zadanie kończące się dzisiaj
457 457 text_tip_task_begin_end_day: zadanie zaczynające i kończące się dzisiaj
458 458 text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.'
459 459 text_caracters_maximum: %d znaków maksymalnie.
460 460 text_length_between: Długość pomiędzy %d i %d znaków.
461 461 text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego typu zgłoszenia
462 462 text_unallowed_characters: Niedozwolone znaki
463 463 text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
464 464 text_issues_ref_in_commit_messages: Zgłoszenia odnoszące i ustalające we wrzutkach CVS
465 465
466 466 default_role_manager: Kierownik
467 467 default_role_developper: Programista
468 468 default_role_reporter: Raportujący
469 469 default_tracker_bug: Błąd
470 470 default_tracker_feature: Cecha
471 471 default_tracker_support: Wsparcie
472 472 default_issue_status_new: Nowy
473 473 default_issue_status_assigned: Przypisany
474 474 default_issue_status_resolved: Rozwiązany
475 475 default_issue_status_feedback: Odpowiedź
476 476 default_issue_status_closed: Zamknięty
477 477 default_issue_status_rejected: Odrzucony
478 478 default_doc_category_user: Dokumentacja użytkownika
479 479 default_doc_category_tech: Dokumentacja techniczna
480 480 default_priority_low: Niski
481 481 default_priority_normal: Normalny
482 482 default_priority_high: Wysoki
483 483 default_priority_urgent: Pilny
484 484 default_priority_immediate: Natyczmiastowy
485 485 default_activity_design: Projektowanie
486 486 default_activity_development: Rozwój
487 487
488 488 enumeration_issue_priorities: Priorytety zgłoszeń
489 489 enumeration_doc_categories: Kategorie dokumentów
490 490 enumeration_activities: Działania (śledzenie czasu)
491 491 button_rename: Zmień nazwę
492 492 text_issue_category_destroy_question: Zgłoszenia (%d) są przypisane do tej kategorii. Co chcesz uczynić?
493 493 label_feeds_access_key_created_on: Klucz dostępu RSS stworzony %s dni temu
494 494 setting_cross_project_issue_relations: Zezwól na powiązania zgłoszeń między projektami
495 495 label_roadmap_overdue: %s spóźnienia
496 496 label_module_plural: Moduły
497 497 label_this_week: ten tydzień
498 498 label_jump_to_a_project: Skocz do projektu...
499 499 field_assignable: Zgłoszenia mogą być przypisane do tej roli
500 500 label_sort_by: Sortuj po "%s"
501 501 text_issue_updated: Zgłoszenie %s zostało zaktualizowane.
502 502 notice_feeds_access_key_reseted: Twój klucz dostępu RSS został zrestetowany.
503 503 field_redirect_existing_links: Przekierowanie istniejących odnośników
504 504 text_issue_category_reassign_to: Przywróć zgłoszenia do tej kategorii
505 505 notice_email_sent: Email został wysłany do %s
506 506 text_issue_added: Zgłoszenie %s zostało zaraportowane.
507 507 text_wiki_destroy_confirmation: Jesteś pewien, że chcesz usunąć to wiki i całą jego zawartość ?
508 508 notice_email_error: Wystąpił błąd w trakcie wysyłania maila (%s)
509 509 label_updated_time: Zaktualizowane %s temu
510 510 text_issue_category_destroy_assignments: Usuń przydziały kategorii
511 511 label_send_test_email: Wyślij próbny email
512 512 button_reset: Resetuj
513 513 label_added_time_by: Dodane przez %s %s temu
514 514 field_estimated_hours: Szacowany czas
515 515 label_file_plural: Pliki
516 516 label_changeset_plural: Zestawienia zmian
517 517 field_column_names: Nazwy kolumn
518 518 label_default_columns: Domyślne kolumny
519 519 setting_issue_list_default_columns: Domyślne kolumny wiświetlane na liście zagadnień
520 520 setting_repositories_encodings: Kodowanie repozytoriów
521 521 notice_no_issue_selected: "Nie wybrano zagadnienia! Zaznacz zagadnienie, które chcesz edytować."
522 522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 523 label_no_change_option: (Bez zmian)
524 524 notice_failed_to_save_issues: "Błąd podczas zapisu zagadnień %d z %d zaznaczonych: %s."
525 525 label_theme: Temat
526 526 label_default: Domyślne
527 527 label_search_titles_only: Przeszukuj tylko tytuły
528 label_nobody: nobody
@@ -1,527 +1,528
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_name: 'Portugues Brasileiro'
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 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Conta foi alterada com sucesso.
57 57 notice_account_invalid_creditentials: Usuario ou senha invalido.
58 58 notice_account_password_updated: Senha foi alterada com sucesso.
59 59 notice_account_wrong_password: Senha errada.
60 60 notice_account_register_done: Conta foi criada com sucesso.
61 61 notice_account_unknown_email: Usuario desconhecido.
62 62 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
63 63 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
64 64 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
65 65 notice_successful_create: Criado com sucesso.
66 66 notice_successful_update: Alterado com sucesso.
67 67 notice_successful_delete: Apagado com sucesso.
68 68 notice_successful_connection: Conectado com sucesso.
69 69 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
70 70 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
71 71 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
72 72 notice_not_authorized: You are not authorized to access this page.
73 73 notice_email_sent: An email was sent to %s
74 74 notice_email_error: An error occurred while sending mail (%s)
75 75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76 76
77 77 mail_subject_lost_password: Sua senha do redMine.
78 78 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
79 79 mail_subject_register: Ativacao de conta do redMine.
80 80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
81 81
82 82 gui_validation_error: 1 erro
83 83 gui_validation_error_plural: %d erros
84 84
85 85 field_name: Nome
86 86 field_description: Descricao
87 87 field_summary: Sumario
88 88 field_is_required: Obrigatorio
89 89 field_firstname: Primeiro nome
90 90 field_lastname: Ultimo nome
91 91 field_mail: Email
92 92 field_filename: Arquivo
93 93 field_filesize: Tamanho
94 94 field_downloads: Downloads
95 95 field_author: Autor
96 96 field_created_on: Criado
97 97 field_updated_on: Alterado
98 98 field_field_format: Formato
99 99 field_is_for_all: Para todos os projetos
100 100 field_possible_values: Possiveis valores
101 101 field_regexp: Expressao regular
102 102 field_min_length: Tamanho minimo
103 103 field_max_length: Tamanho maximo
104 104 field_value: Valor
105 105 field_category: Categoria
106 106 field_title: Titulo
107 107 field_project: Projeto
108 108 field_issue: Tarefa
109 109 field_status: Status
110 110 field_notes: Notas
111 111 field_is_closed: Tarefa fechada
112 112 field_is_default: Status padrao
113 113 field_html_color: Cor
114 114 field_tracker: Tipo
115 115 field_subject: Titulo
116 116 field_due_date: Data devida
117 117 field_assigned_to: Atribuido para
118 118 field_priority: Prioridade
119 119 field_fixed_version: Versao corrigida
120 120 field_user: Usuario
121 121 field_role: Regra
122 122 field_homepage: Pagina inicial
123 123 field_is_public: Publico
124 124 field_parent: Sub-projeto de
125 125 field_is_in_chlog: Tarefas mostradas no changelog
126 126 field_is_in_roadmap: Tarefas mostradas no roadmap
127 127 field_login: Login
128 128 field_mail_notification: Notificacoes por email
129 129 field_admin: Administrador
130 130 field_last_login_on: Ultima conexao
131 131 field_language: Lingua
132 132 field_effective_date: Data
133 133 field_password: Senha
134 134 field_new_password: Nova senha
135 135 field_password_confirmation: Confirmacao
136 136 field_version: Versao
137 137 field_type: Tipo
138 138 field_host: Servidor
139 139 field_port: Porta
140 140 field_account: Conta
141 141 field_base_dn: Base DN
142 142 field_attr_login: Atributo login
143 143 field_attr_firstname: Atributo primeiro nome
144 144 field_attr_lastname: Atributo ultimo nome
145 145 field_attr_mail: Atributo email
146 146 field_onthefly: Criacao de usuario on-the-fly
147 147 field_start_date: Inicio
148 148 field_done_ratio: %% Terminado
149 149 field_auth_source: Modo de autenticacao
150 150 field_hide_mail: Esconder meu email
151 151 field_comments: Comentario
152 152 field_url: URL
153 153 field_start_page: Pagina inicial
154 154 field_subproject: Sub-projeto
155 155 field_hours: Horas
156 156 field_activity: Atividade
157 157 field_spent_on: Data
158 158 field_identifier: Identificador
159 159 field_is_filter: Used as a filter
160 160 field_issue_to_id: Related issue
161 161 field_delay: Delay
162 162 field_assignable: Issues can be assigned to this role
163 163 field_redirect_existing_links: Redirect existing links
164 164 field_estimated_hours: Estimated time
165 165
166 166 setting_app_title: Titulo da aplicacao
167 167 setting_app_subtitle: Sub-titulo da aplicacao
168 168 setting_welcome_text: Texto de boa-vinda
169 169 setting_default_language: Lingua padrao
170 170 setting_login_required: Autenticacao obrigatoria
171 171 setting_self_registration: Registro de si mesmo permitido
172 172 setting_attachment_max_size: Tamanho maximo do anexo
173 173 setting_issues_export_limit: Limite de exportacao das tarefas
174 174 setting_mail_from: Email enviado de
175 175 setting_host_name: Servidor
176 176 setting_text_formatting: Formato do texto
177 177 setting_wiki_compression: Compactacao do historio do Wiki
178 178 setting_feeds_limit: Limite do Feed
179 179 setting_autofetch_changesets: Autofetch commits
180 180 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
181 181 setting_commit_ref_keywords: Referencing keywords
182 182 setting_commit_fix_keywords: Fixing keywords
183 183 setting_autologin: Autologin
184 184 setting_date_format: Date format
185 185 setting_cross_project_issue_relations: Allow cross-project issue relations
186 186
187 187 label_user: Usuario
188 188 label_user_plural: Usuarios
189 189 label_user_new: Novo usuario
190 190 label_project: Projeto
191 191 label_project_new: Novo projeto
192 192 label_project_plural: Projetos
193 193 label_project_all: All Projects
194 194 label_project_latest: Ultimos projetos
195 195 label_issue: Tarefa
196 196 label_issue_new: Nova tarefa
197 197 label_issue_plural: Tarefas
198 198 label_issue_view_all: Ver todas as tarefas
199 199 label_document: Documento
200 200 label_document_new: Novo documento
201 201 label_document_plural: Documentos
202 202 label_role: Regra
203 203 label_role_plural: Regras
204 204 label_role_new: Nova regra
205 205 label_role_and_permissions: Regras e permissoes
206 206 label_member: Membro
207 207 label_member_new: Novo membro
208 208 label_member_plural: Membros
209 209 label_tracker: Tipo
210 210 label_tracker_plural: Tipos
211 211 label_tracker_new: Novo tipo
212 212 label_workflow: Workflow
213 213 label_issue_status: Status da tarefa
214 214 label_issue_status_plural: Status das tarefas
215 215 label_issue_status_new: Novo status
216 216 label_issue_category: Categoria de tarefa
217 217 label_issue_category_plural: Categorias de tarefa
218 218 label_issue_category_new: Nova categoria
219 219 label_custom_field: Campo personalizado
220 220 label_custom_field_plural: Campos personalizado
221 221 label_custom_field_new: Novo campo personalizado
222 222 label_enumerations: Enumeracao
223 223 label_enumeration_new: Novo valor
224 224 label_information: Informacao
225 225 label_information_plural: Informacoes
226 226 label_please_login: Efetue login
227 227 label_register: Registre-se
228 228 label_password_lost: Perdi a senha
229 229 label_home: Pagina inicial
230 230 label_my_page: Minha pagina
231 231 label_my_account: Minha conta
232 232 label_my_projects: Meus projetos
233 233 label_administration: Administracao
234 234 label_login: Login
235 235 label_logout: Logout
236 236 label_help: Ajuda
237 237 label_reported_issues: Tarefas reportadas
238 238 label_assigned_to_me_issues: Tarefas atribuidas a mim
239 239 label_last_login: Utima conexao
240 240 label_last_updates: Ultima alteracao
241 241 label_last_updates_plural: %d Ultimas alteracoes
242 242 label_registered_on: Registrado em
243 243 label_activity: Atividade
244 244 label_new: Novo
245 245 label_logged_as: Logado como
246 246 label_environment: Ambiente
247 247 label_authentication: Autenticacao
248 248 label_auth_source: Modo de autenticacao
249 249 label_auth_source_new: Novo modo de autenticacao
250 250 label_auth_source_plural: Modos de autenticacao
251 251 label_subproject_plural: Sub-projetos
252 252 label_min_max_length: Tamanho min-max
253 253 label_list: Lista
254 254 label_date: Data
255 255 label_integer: Inteiro
256 256 label_boolean: Boleano
257 257 label_string: Texto
258 258 label_text: Texto longo
259 259 label_attribute: Atributo
260 260 label_attribute_plural: Atributos
261 261 label_download: %d Download
262 262 label_download_plural: %d Downloads
263 263 label_no_data: Sem dados para mostrar
264 264 label_change_status: Mudar status
265 265 label_history: Historico
266 266 label_attachment: Arquivo
267 267 label_attachment_new: Novo arquivo
268 268 label_attachment_delete: Apagar arquivo
269 269 label_attachment_plural: Arquivos
270 270 label_report: Relatorio
271 271 label_report_plural: Relatorio
272 272 label_news: Noticias
273 273 label_news_new: Adicionar noticias
274 274 label_news_plural: Noticias
275 275 label_news_latest: Ultimas noticias
276 276 label_news_view_all: Ver todas as noticias
277 277 label_change_log: Change log
278 278 label_settings: Ajustes
279 279 label_overview: Visao geral
280 280 label_version: Versao
281 281 label_version_new: Nova versao
282 282 label_version_plural: Versoes
283 283 label_confirmation: Confirmacao
284 284 label_export_to: Exportar para
285 285 label_read: Ler...
286 286 label_public_projects: Projetos publicos
287 287 label_open_issues: Aberto
288 288 label_open_issues_plural: Abertos
289 289 label_closed_issues: Fechado
290 290 label_closed_issues_plural: Fechados
291 291 label_total: Total
292 292 label_permissions: Permissoes
293 293 label_current_status: Status atual
294 294 label_new_statuses_allowed: Novo status permitido
295 295 label_all: todos
296 296 label_none: nenhum
297 297 label_next: Proximo
298 298 label_previous: Anterior
299 299 label_used_by: Usado por
300 300 label_details: Detalhes
301 301 label_add_note: Adicionar nota
302 302 label_per_page: Por pagina
303 303 label_calendar: Calendario
304 304 label_months_from: Meses de
305 305 label_gantt: Gantt
306 306 label_internal: Interno
307 307 label_last_changes: utlimas %d mudancas
308 308 label_change_view_all: Mostrar todas as mudancas
309 309 label_personalize_page: Personalizar esta pagina
310 310 label_comment: Comentario
311 311 label_comment_plural: Comentarios
312 312 label_comment_add: Adicionar comentario
313 313 label_comment_added: Comentario adicionado
314 314 label_comment_delete: Apagar comentario
315 315 label_query: Consulta personalizada
316 316 label_query_plural: Consultas personalizadas
317 317 label_query_new: Nova consulta
318 318 label_filter_add: Adicionar filtro
319 319 label_filter_plural: Filtros
320 320 label_equals: e
321 321 label_not_equals: nao e
322 322 label_in_less_than: e maior que
323 323 label_in_more_than: e menor que
324 324 label_in: em
325 325 label_today: hoje
326 326 label_this_week: this week
327 327 label_less_than_ago: faz menos de
328 328 label_more_than_ago: faz mais de
329 329 label_ago: dias atras
330 330 label_contains: contem
331 331 label_not_contains: nao contem
332 332 label_day_plural: dias
333 333 label_repository: Repository
334 334 label_browse: Browse
335 335 label_modification: %d change
336 336 label_modification_plural: %d changes
337 337 label_revision: Revision
338 338 label_revision_plural: Revisions
339 339 label_added: added
340 340 label_modified: modified
341 341 label_deleted: deleted
342 342 label_latest_revision: Latest revision
343 343 label_latest_revision_plural: Latest revisions
344 344 label_view_revisions: View revisions
345 345 label_max_size: Maximum size
346 346 label_on: 'em'
347 347 label_sort_highest: Mover para o inicio
348 348 label_sort_higher: Mover para cima
349 349 label_sort_lower: Mover para baixo
350 350 label_sort_lowest: Mover para o fim
351 351 label_roadmap: Roadmap
352 352 label_roadmap_due_in: Due in
353 353 label_roadmap_overdue: %s late
354 354 label_roadmap_no_issues: Sem tarefas para essa versao
355 355 label_search: Busca
356 356 label_result_plural: Resultados
357 357 label_all_words: Todas as palavras
358 358 label_wiki: Wiki
359 359 label_wiki_edit: Wiki edit
360 360 label_wiki_edit_plural: Wiki edits
361 361 label_wiki_page: Wiki page
362 362 label_wiki_page_plural: Wiki pages
363 363 label_index_by_title: Index by title
364 364 label_index_by_date: Index by date
365 365 label_current_version: Versao atual
366 366 label_preview: Previa
367 367 label_feed_plural: Feeds
368 368 label_changes_details: Detalhes de todas as mudancas
369 369 label_issue_tracking: Tarefas
370 370 label_spent_time: Tempo gasto
371 371 label_f_hour: %.2f hora
372 372 label_f_hour_plural: %.2f horas
373 373 label_time_tracking: Tempo trabalhado
374 374 label_change_plural: Mudancas
375 375 label_statistics: Estatisticas
376 376 label_commits_per_month: Commits por mes
377 377 label_commits_per_author: Commits por autor
378 378 label_view_diff: Ver diferencas
379 379 label_diff_inline: inline
380 380 label_diff_side_by_side: side by side
381 381 label_options: Opcoes
382 382 label_copy_workflow_from: Copiar workflow de
383 383 label_permissions_report: Relatorio de permissoes
384 384 label_watched_issues: Watched issues
385 385 label_related_issues: Related issues
386 386 label_applied_status: Applied status
387 387 label_loading: Loading...
388 388 label_relation_new: New relation
389 389 label_relation_delete: Delete relation
390 390 label_relates_to: related to
391 391 label_duplicates: duplicates
392 392 label_blocks: blocks
393 393 label_blocked_by: blocked by
394 394 label_precedes: precedes
395 395 label_follows: follows
396 396 label_end_to_start: end to start
397 397 label_end_to_end: end to end
398 398 label_start_to_start: start to start
399 399 label_start_to_end: start to end
400 400 label_stay_logged_in: Stay logged in
401 401 label_disabled: disabled
402 402 label_show_completed_versions: Show completed versions
403 403 label_me: me
404 404 label_board: Forum
405 405 label_board_new: New forum
406 406 label_board_plural: Forums
407 407 label_topic_plural: Topics
408 408 label_message_plural: Messages
409 409 label_message_last: Last message
410 410 label_message_new: New message
411 411 label_reply_plural: Replies
412 412 label_send_information: Send account information to the user
413 413 label_year: Year
414 414 label_month: Month
415 415 label_week: Week
416 416 label_date_from: From
417 417 label_date_to: To
418 418 label_language_based: Language based
419 419 label_sort_by: Sort by "%s"
420 420 label_send_test_email: Send a test email
421 421 label_feeds_access_key_created_on: RSS access key created %s ago
422 422 label_module_plural: Modules
423 423 label_added_time_by: Added by %s %s ago
424 424 label_updated_time: Updated %s ago
425 425 label_jump_to_a_project: Jump to a project...
426 426
427 427 button_login: Login
428 428 button_submit: Enviar
429 429 button_save: Salvar
430 430 button_check_all: Marcar todos
431 431 button_uncheck_all: Desmarcar todos
432 432 button_delete: Apagar
433 433 button_create: Criar
434 434 button_test: Testar
435 435 button_edit: Editar
436 436 button_add: Adicionar
437 437 button_change: Mudar
438 438 button_apply: Aplicar
439 439 button_clear: Limpar
440 440 button_lock: Bloquear
441 441 button_unlock: Desbloquear
442 442 button_download: Download
443 443 button_list: Listar
444 444 button_view: Ver
445 445 button_move: Mover
446 446 button_back: Voltar
447 447 button_cancel: Cancelar
448 448 button_activate: Ativar
449 449 button_sort: Ordenar
450 450 button_log_time: Tempo de trabalho
451 451 button_rollback: Voltar para esta versao
452 452 button_watch: Watch
453 453 button_unwatch: Unwatch
454 454 button_reply: Reply
455 455 button_archive: Archive
456 456 button_unarchive: Unarchive
457 457 button_reset: Reset
458 458 button_rename: Rename
459 459
460 460 status_active: ativo
461 461 status_registered: registrado
462 462 status_locked: bloqueado
463 463
464 464 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
465 465 text_regexp_info: eg. ^[A-Z0-9]+$
466 466 text_min_max_length_info: 0 siginifica sem restricao
467 467 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
468 468 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
469 469 text_are_you_sure: Voce tem certeza ?
470 470 text_journal_changed: alterado de %s para %s
471 471 text_journal_set_to: setar para %s
472 472 text_journal_deleted: apagado
473 473 text_tip_task_begin_day: tarefa comeca neste dia
474 474 text_tip_task_end_day: tarefa termina neste dia
475 475 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
476 476 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
477 477 text_caracters_maximum: %d maximo de caracteres
478 478 text_length_between: Tamanho entre %d e %d caracteres.
479 479 text_tracker_no_workflow: Sem workflow definido para este tipo.
480 480 text_unallowed_characters: Unallowed characters
481 481 text_comma_separated: Multiple values allowed (comma separated).
482 482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
483 483 text_issue_added: Tarefa %s foi incluída.
484 484 text_issue_updated: Tarefa %s foi alterada.
485 485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
486 486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 487 text_issue_category_destroy_assignments: Remove category assignments
488 488 text_issue_category_reassign_to: Reassing issues to this category
489 489
490 490 default_role_manager: Analista de Negocio ou Gerente de Projeto
491 491 default_role_developper: Desenvolvedor
492 492 default_role_reporter: Analista de Suporte
493 493 default_tracker_bug: Bug
494 494 default_tracker_feature: Implementacao
495 495 default_tracker_support: Suporte
496 496 default_issue_status_new: Novo
497 497 default_issue_status_assigned: Atribuido
498 498 default_issue_status_resolved: Resolvido
499 499 default_issue_status_feedback: Feedback
500 500 default_issue_status_closed: Fechado
501 501 default_issue_status_rejected: Rejeitado
502 502 default_doc_category_user: Documentacao do usuario
503 503 default_doc_category_tech: Documentacao do tecnica
504 504 default_priority_low: Baixo
505 505 default_priority_normal: Normal
506 506 default_priority_high: Alto
507 507 default_priority_urgent: Urgente
508 508 default_priority_immediate: Imediato
509 509 default_activity_design: Design
510 510 default_activity_development: Desenvolvimento
511 511
512 512 enumeration_issue_priorities: Prioridade das tarefas
513 513 enumeration_doc_categories: Categorias de documento
514 514 enumeration_activities: Atividades (time tracking)
515 515 label_file_plural: Files
516 516 label_changeset_plural: Changesets
517 517 field_column_names: Columns
518 518 label_default_columns: Default columns
519 519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 520 setting_repositories_encodings: Repositories encodings
521 521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 523 label_no_change_option: (No change)
524 524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 525 label_theme: Theme
526 526 label_default: Default
527 527 label_search_titles_only: Search titles only
528 label_nobody: nobody
@@ -1,527 +1,528
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,Março,Abril,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: em torno de uma hora
11 11 actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas
12 12 actionview_datehelper_time_in_words_hour_about_single: em torno de 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 de 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 de um segundo
19 19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 20 actionview_instancetag_blank_option: Selecione
21 21
22 22 activerecord_error_inclusion: não existe na lista
23 23 activerecord_error_exclusion: já existe na lista
24 24 activerecord_error_invalid: é inválido
25 25 activerecord_error_confirmation: não confere com sua confirmação
26 26 activerecord_error_accepted: deve ser aceito
27 27 activerecord_error_empty: não pode ser vazio
28 28 activerecord_error_blank: não pode estar em branco
29 29 activerecord_error_too_long: é muito longo
30 30 activerecord_error_too_short: é muito curto
31 31 activerecord_error_wrong_length: possui o comprimento errado
32 32 activerecord_error_taken: já foi usado em outro registro
33 33 activerecord_error_not_a_number: não é um número
34 34 activerecord_error_not_a_date: não é uma data válida
35 35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 36 activerecord_error_not_same_project: não pertence ao mesmo projeto
37 37 activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular
38 38
39 39 general_fmt_age: %d ano
40 40 general_fmt_age_plural: %d anos
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: 'Não'
46 46 general_text_Yes: 'Sim'
47 47 general_text_no: 'não'
48 48 general_text_yes: 'sim'
49 49 general_lang_name: 'Português'
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,Terça,Quarta,Quinta,Sexta,Sábado,Domingo
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Conta foi atualizada com sucesso.
57 57 notice_account_invalid_creditentials: Usuário ou senha inválidos.
58 58 notice_account_password_updated: Senha foi alterada com sucesso.
59 59 notice_account_wrong_password: Senha errada.
60 60 notice_account_register_done: Conta foi criada com sucesso.
61 61 notice_account_unknown_email: Usuário desconhecido.
62 62 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha.
63 63 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
64 64 notice_account_activated: Sua conta foi ativada. Você pode logar agora
65 65 notice_successful_create: Criado com sucesso.
66 66 notice_successful_update: Alterado com sucesso.
67 67 notice_successful_delete: Apagado com sucesso.
68 68 notice_successful_connection: Conectado com sucesso.
69 69 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
70 70 notice_locking_conflict: Os dados foram atualizados por um outro usuário.
71 71 notice_scm_error: A entrada e/ou a revisão não existem no repositório.
72 72 notice_not_authorized: Você não está autorizado a acessar esta página.
73 73 notice_email_sent: An email was sent to %s
74 74 notice_email_error: An error occurred while sending mail (%s)
75 75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76 76
77 77 mail_subject_lost_password: Sua senha do redMine.
78 78 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
79 79 mail_subject_register: Ativação de conta do redMine.
80 80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
81 81
82 82 gui_validation_error: 1 erro
83 83 gui_validation_error_plural: %d erros
84 84
85 85 field_name: Nome
86 86 field_description: Descrição
87 87 field_summary: Sumário
88 88 field_is_required: Obrigatório
89 89 field_firstname: Primeiro nome
90 90 field_lastname: Último nome
91 91 field_mail: Email
92 92 field_filename: Arquivo
93 93 field_filesize: Tamanho
94 94 field_downloads: Downloads
95 95 field_author: Autor
96 96 field_created_on: Criado
97 97 field_updated_on: Alterado
98 98 field_field_format: Formato
99 99 field_is_for_all: Para todos os projetos
100 100 field_possible_values: Possíveis valores
101 101 field_regexp: Expressão regular
102 102 field_min_length: Tamanho mínimo
103 103 field_max_length: Tamanho máximo
104 104 field_value: Valor
105 105 field_category: Categoria
106 106 field_title: Título
107 107 field_project: Projeto
108 108 field_issue: Tarefa
109 109 field_status: Status
110 110 field_notes: Notas
111 111 field_is_closed: Tarefa fechada
112 112 field_is_default: Status padrão
113 113 field_html_color: Cor
114 114 field_tracker: Tipo
115 115 field_subject: Assunto
116 116 field_due_date: Data final
117 117 field_assigned_to: Atribuído para
118 118 field_priority: Prioridade
119 119 field_fixed_version: Versão corrigida
120 120 field_user: Usuário
121 121 field_role: Regra
122 122 field_homepage: Página inicial
123 123 field_is_public: Público
124 124 field_parent: Sub-projeto de
125 125 field_is_in_chlog: Tarefas mostradas no changelog
126 126 field_is_in_roadmap: Tarefas mostradas no roadmap
127 127 field_login: Login
128 128 field_mail_notification: Notificações por email
129 129 field_admin: Administrador
130 130 field_last_login_on: Última conexão
131 131 field_language: Língua
132 132 field_effective_date: Data
133 133 field_password: Senha
134 134 field_new_password: Nova senha
135 135 field_password_confirmation: Confirmação
136 136 field_version: Versão
137 137 field_type: Tipo
138 138 field_host: Servidor
139 139 field_port: Porta
140 140 field_account: Conta
141 141 field_base_dn: Base DN
142 142 field_attr_login: Atributo login
143 143 field_attr_firstname: Atributo primeiro nome
144 144 field_attr_lastname: Atributo último nome
145 145 field_attr_mail: Atributo email
146 146 field_onthefly: Criação de usuário sob-demanda
147 147 field_start_date: Início
148 148 field_done_ratio: %% Terminado
149 149 field_auth_source: Modo de autenticação
150 150 field_hide_mail: Esconda meu email
151 151 field_comments: Comentário
152 152 field_url: URL
153 153 field_start_page: Página inicial
154 154 field_subproject: Sub-projeto
155 155 field_hours: Horas
156 156 field_activity: Atividade
157 157 field_spent_on: Data
158 158 field_identifier: Identificador
159 159 field_is_filter: Usado como filtro
160 160 field_issue_to_id: Tarefa relacionada
161 161 field_delay: Atraso
162 162 field_assignable: Issues can be assigned to this role
163 163 field_redirect_existing_links: Redirect existing links
164 164 field_estimated_hours: Estimated time
165 165
166 166 setting_app_title: Título da aplicação
167 167 setting_app_subtitle: Sub-título da aplicação
168 168 setting_welcome_text: Texto de boas-vindas
169 169 setting_default_language: Linguagem padrão
170 170 setting_login_required: Autenticação obrigatória
171 171 setting_self_registration: Registro permitido
172 172 setting_attachment_max_size: Tamanho máximo do anexo
173 173 setting_issues_export_limit: Limite de exportação das tarefas
174 174 setting_mail_from: Email enviado de
175 175 setting_host_name: Servidor
176 176 setting_text_formatting: Formato do texto
177 177 setting_wiki_compression: Compactação do histórico do Wiki
178 178 setting_feeds_limit: Limite do Feed
179 179 setting_autofetch_changesets: Buscar automaticamente commits
180 180 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
181 181 setting_commit_ref_keywords: Palavras-chave de referôncia
182 182 setting_commit_fix_keywords: Palavras-chave fixas
183 183 setting_autologin: Autologin
184 184 setting_date_format: Date format
185 185 setting_cross_project_issue_relations: Allow cross-project issue relations
186 186
187 187 label_user: Usuário
188 188 label_user_plural: Usuários
189 189 label_user_new: Novo usuário
190 190 label_project: Projeto
191 191 label_project_new: Novo projeto
192 192 label_project_plural: Projetos
193 193 label_project_all: All Projects
194 194 label_project_latest: Últimos projetos
195 195 label_issue: Tarefa
196 196 label_issue_new: Nova tarefa
197 197 label_issue_plural: Tarefas
198 198 label_issue_view_all: Ver todas as tarefas
199 199 label_document: Documento
200 200 label_document_new: Novo documento
201 201 label_document_plural: Documentos
202 202 label_role: Regra
203 203 label_role_plural: Regras
204 204 label_role_new: Nova regra
205 205 label_role_and_permissions: Regras e permissões
206 206 label_member: Membro
207 207 label_member_new: Novo membro
208 208 label_member_plural: Membros
209 209 label_tracker: Tipo
210 210 label_tracker_plural: Tipos
211 211 label_tracker_new: Novo tipo
212 212 label_workflow: Workflow
213 213 label_issue_status: Status da tarefa
214 214 label_issue_status_plural: Status das tarefas
215 215 label_issue_status_new: Novo status
216 216 label_issue_category: Categoria da tarefa
217 217 label_issue_category_plural: Categorias das tarefas
218 218 label_issue_category_new: Nova categoria
219 219 label_custom_field: Campo personalizado
220 220 label_custom_field_plural: Campos personalizados
221 221 label_custom_field_new: Novo campo personalizado
222 222 label_enumerations: Enumeração
223 223 label_enumeration_new: Novo valor
224 224 label_information: Informação
225 225 label_information_plural: Informações
226 226 label_please_login: Efetue login
227 227 label_register: Registre-se
228 228 label_password_lost: Perdi a senha
229 229 label_home: Página inicial
230 230 label_my_page: Minha página
231 231 label_my_account: Minha conta
232 232 label_my_projects: Meus projetos
233 233 label_administration: Administração
234 234 label_login: Login
235 235 label_logout: Logout
236 236 label_help: Ajuda
237 237 label_reported_issues: Tarefas reportadas
238 238 label_assigned_to_me_issues: Tarefas atribuídas à mim
239 239 label_last_login: Útima conexão
240 240 label_last_updates: Última alteração
241 241 label_last_updates_plural: %d Últimas alterações
242 242 label_registered_on: Registrado em
243 243 label_activity: Atividade
244 244 label_new: Novo
245 245 label_logged_as: Logado como
246 246 label_environment: Ambiente
247 247 label_authentication: Autenticação
248 248 label_auth_source: Modo de autenticação
249 249 label_auth_source_new: Novo modo de autenticação
250 250 label_auth_source_plural: Modos de autenticação
251 251 label_subproject_plural: Sub-projetos
252 252 label_min_max_length: Tamanho min-max
253 253 label_list: Lista
254 254 label_date: Data
255 255 label_integer: Inteiro
256 256 label_boolean: Booleano
257 257 label_string: Texto
258 258 label_text: Texto longo
259 259 label_attribute: Atributo
260 260 label_attribute_plural: Atributos
261 261 label_download: %d Download
262 262 label_download_plural: %d Downloads
263 263 label_no_data: Sem dados para mostrar
264 264 label_change_status: Mudar status
265 265 label_history: Histórico
266 266 label_attachment: Arquivo
267 267 label_attachment_new: Novo arquivo
268 268 label_attachment_delete: Apagar arquivo
269 269 label_attachment_plural: Arquivos
270 270 label_report: Relatório
271 271 label_report_plural: Relatório
272 272 label_news: Notícias
273 273 label_news_new: Adicionar notícias
274 274 label_news_plural: Notícias
275 275 label_news_latest: Últimas notícias
276 276 label_news_view_all: Ver todas as notícias
277 277 label_change_log: Log de mudanças
278 278 label_settings: Configurações
279 279 label_overview: Visão geral
280 280 label_version: Versão
281 281 label_version_new: Nova versão
282 282 label_version_plural: Versões
283 283 label_confirmation: Confirmação
284 284 label_export_to: Exportar para
285 285 label_read: Ler...
286 286 label_public_projects: Projetos públicos
287 287 label_open_issues: Aberto
288 288 label_open_issues_plural: Abertos
289 289 label_closed_issues: Fechado
290 290 label_closed_issues_plural: Fechados
291 291 label_total: Total
292 292 label_permissions: Permissões
293 293 label_current_status: Status atual
294 294 label_new_statuses_allowed: Novo status permitido
295 295 label_all: todos
296 296 label_none: nenhum
297 297 label_next: Próximo
298 298 label_previous: Anterior
299 299 label_used_by: Usado por
300 300 label_details: Detalhes
301 301 label_add_note: Adicionar nota
302 302 label_per_page: Por página
303 303 label_calendar: Calendário
304 304 label_months_from: Meses de
305 305 label_gantt: Gantt
306 306 label_internal: Interno
307 307 label_last_changes: últimas %d mudanças
308 308 label_change_view_all: Mostrar todas as mudanças
309 309 label_personalize_page: Personalizar esta página
310 310 label_comment: Comentário
311 311 label_comment_plural: Comentários
312 312 label_comment_add: Adicionar comentário
313 313 label_comment_added: Comentário adicionado
314 314 label_comment_delete: Apagar comentário
315 315 label_query: Consulta personalizada
316 316 label_query_plural: Consultas personalizadas
317 317 label_query_new: Nova consulta
318 318 label_filter_add: Adicionar filtro
319 319 label_filter_plural: Filtros
320 320 label_equals: é
321 321 label_not_equals: não e
322 322 label_in_less_than: é maior que
323 323 label_in_more_than: é menor que
324 324 label_in: em
325 325 label_today: hoje
326 326 label_this_week: this week
327 327 label_less_than_ago: faz menos de
328 328 label_more_than_ago: faz mais de
329 329 label_ago: dias atrás
330 330 label_contains: contém
331 331 label_not_contains: não contém
332 332 label_day_plural: dias
333 333 label_repository: Repositório
334 334 label_browse: Procurar
335 335 label_modification: %d mudança
336 336 label_modification_plural: %d mudanças
337 337 label_revision: Revisão
338 338 label_revision_plural: Revisões
339 339 label_added: adicionado
340 340 label_modified: modificado
341 341 label_deleted: deletado
342 342 label_latest_revision: Última revisão
343 343 label_latest_revision_plural: Últimas revisões
344 344 label_view_revisions: Ver revisões
345 345 label_max_size: Tamanho máximo
346 346 label_on: em
347 347 label_sort_highest: Mover para o início
348 348 label_sort_higher: Mover para cima
349 349 label_sort_lower: Mover para baixo
350 350 label_sort_lowest: Mover para o fim
351 351 label_roadmap: Roadmap
352 352 label_roadmap_due_in: Termina em
353 353 label_roadmap_overdue: %s late
354 354 label_roadmap_no_issues: Sem tarefas para essa versão
355 355 label_search: Busca
356 356 label_result_plural: Resultados
357 357 label_all_words: Todas as palavras
358 358 label_wiki: Wiki
359 359 label_wiki_edit: Wiki edit
360 360 label_wiki_edit_plural: Wiki edits
361 361 label_wiki_page: Wiki page
362 362 label_wiki_page_plural: Wiki pages
363 363 label_index_by_title: Index by title
364 364 label_index_by_date: Index by date
365 365 label_current_version: Versão atual
366 366 label_preview: Prévia
367 367 label_feed_plural: Feeds
368 368 label_changes_details: Detalhes de todas as mudanças
369 369 label_issue_tracking: Tarefas
370 370 label_spent_time: Tempo gasto
371 371 label_f_hour: %.2f hora
372 372 label_f_hour_plural: %.2f horas
373 373 label_time_tracking: Tempo trabalhado
374 374 label_change_plural: Mudanças
375 375 label_statistics: Estatísticas
376 376 label_commits_per_month: Commits por mês
377 377 label_commits_per_author: Commits por autor
378 378 label_view_diff: Ver diferenças
379 379 label_diff_inline: inline
380 380 label_diff_side_by_side: lado a lado
381 381 label_options: Opções
382 382 label_copy_workflow_from: Copiar workflow de
383 383 label_permissions_report: Relatório de permissões
384 384 label_watched_issues: Tarefas observadas
385 385 label_related_issues: tarefas relacionadas
386 386 label_applied_status: Status aplicado
387 387 label_loading: Carregando...
388 388 label_relation_new: Nova relação
389 389 label_relation_delete: Deletar relação
390 390 label_relates_to: relacionado à
391 391 label_duplicates: duplicadas
392 392 label_blocks: bloqueios
393 393 label_blocked_by: bloqueado por
394 394 label_precedes: procede
395 395 label_follows: segue
396 396 label_end_to_start: fim ao início
397 397 label_end_to_end: fim ao fim
398 398 label_start_to_start: ínícia ao inícia
399 399 label_start_to_end: inícia ao fim
400 400 label_stay_logged_in: Rester connecté
401 401 label_disabled: désactivé
402 402 label_show_completed_versions: Voire les versions passées
403 403 label_me: me
404 404 label_board: Forum
405 405 label_board_new: New forum
406 406 label_board_plural: Forums
407 407 label_topic_plural: Topics
408 408 label_message_plural: Messages
409 409 label_message_last: Last message
410 410 label_message_new: New message
411 411 label_reply_plural: Replies
412 412 label_send_information: Send account information to the user
413 413 label_year: Year
414 414 label_month: Month
415 415 label_week: Week
416 416 label_date_from: From
417 417 label_date_to: To
418 418 label_language_based: Language based
419 419 label_sort_by: Sort by "%s"
420 420 label_send_test_email: Send a test email
421 421 label_feeds_access_key_created_on: RSS access key created %s ago
422 422 label_module_plural: Modules
423 423 label_added_time_by: Added by %s %s ago
424 424 label_updated_time: Updated %s ago
425 425 label_jump_to_a_project: Jump to a project...
426 426
427 427 button_login: Login
428 428 button_submit: Enviar
429 429 button_save: Salvar
430 430 button_check_all: Marcar todos
431 431 button_uncheck_all: Desmarcar todos
432 432 button_delete: Apagar
433 433 button_create: Criar
434 434 button_test: Testar
435 435 button_edit: Editar
436 436 button_add: Adicionar
437 437 button_change: Mudar
438 438 button_apply: Aplicar
439 439 button_clear: Limpar
440 440 button_lock: Bloquear
441 441 button_unlock: Desbloquear
442 442 button_download: Download
443 443 button_list: Listar
444 444 button_view: Ver
445 445 button_move: Mover
446 446 button_back: Voltar
447 447 button_cancel: Cancelar
448 448 button_activate: Ativar
449 449 button_sort: Ordenar
450 450 button_log_time: Tempo de trabalho
451 451 button_rollback: Voltar para esta versão
452 452 button_watch: Observar
453 453 button_unwatch: Não observar
454 454 button_reply: Reply
455 455 button_archive: Archive
456 456 button_unarchive: Unarchive
457 457 button_reset: Reset
458 458 button_rename: Rename
459 459
460 460 status_active: ativo
461 461 status_registered: registrado
462 462 status_locked: bloqueado
463 463
464 464 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
465 465 text_regexp_info: ex. ^[A-Z0-9]+$
466 466 text_min_max_length_info: 0 siginifica sem restrição
467 467 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
468 468 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
469 469 text_are_you_sure: Você tem certeza ?
470 470 text_journal_changed: alterado de %s para %s
471 471 text_journal_set_to: alterar para %s
472 472 text_journal_deleted: apagado
473 473 text_tip_task_begin_day: tarefa começa neste dia
474 474 text_tip_task_end_day: tarefa termina neste dia
475 475 text_tip_task_begin_end_day: tarefa começa e termina neste dia
476 476 text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
477 477 text_caracters_maximum: %d móximo de caracteres
478 478 text_length_between: Tamanho entre %d e %d caracteres.
479 479 text_tracker_no_workflow: Sem workflow definido para este tipo.
480 480 text_unallowed_characters: Caracteres não permitidos
481 481 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
482 482 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
483 483 text_issue_added: Tarefa %s foi incluída.
484 484 text_issue_updated: Tarefa %s foi alterada.
485 485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
486 486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 487 text_issue_category_destroy_assignments: Remove category assignments
488 488 text_issue_category_reassign_to: Reassing issues to this category
489 489
490 490 default_role_manager: Analista de Negócio ou Gerente de Projeto
491 491 default_role_developper: Desenvolvedor
492 492 default_role_reporter: Analista de Suporte
493 493 default_tracker_bug: Bug
494 494 default_tracker_feature: Implementaçõo
495 495 default_tracker_support: Suporte
496 496 default_issue_status_new: Novo
497 497 default_issue_status_assigned: Atribuído
498 498 default_issue_status_resolved: Resolvido
499 499 default_issue_status_feedback: Feedback
500 500 default_issue_status_closed: Fechado
501 501 default_issue_status_rejected: Rejeitado
502 502 default_doc_category_user: Documentação do usuário
503 503 default_doc_category_tech: Documentação técnica
504 504 default_priority_low: Baixo
505 505 default_priority_normal: Normal
506 506 default_priority_high: Alto
507 507 default_priority_urgent: Urgente
508 508 default_priority_immediate: Imediato
509 509 default_activity_design: Design
510 510 default_activity_development: Desenvolvimento
511 511
512 512 enumeration_issue_priorities: Prioridade das tarefas
513 513 enumeration_doc_categories: Categorias de documento
514 514 enumeration_activities: Atividades (time tracking)
515 515 label_file_plural: Files
516 516 label_changeset_plural: Changesets
517 517 field_column_names: Columns
518 518 label_default_columns: Default columns
519 519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 520 setting_repositories_encodings: Repositories encodings
521 521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 523 label_no_change_option: (No change)
524 524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 525 label_theme: Theme
526 526 label_default: Default
527 527 label_search_titles_only: Search titles only
528 label_nobody: nobody
@@ -1,527 +1,528
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: Ianuarie,Februarie,Martie,Aprilie,Mai,Iunie,Iulie,August,Septembrie,Octombrie,Noiembrie,Decembrie
5 5 actionview_datehelper_select_month_names_abbr: Ian,Feb,Mar,Apr,Mai,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 zi
9 9 actionview_datehelper_time_in_words_day_plural: %d zile
10 10 actionview_datehelper_time_in_words_hour_about: aproximativ o ora
11 11 actionview_datehelper_time_in_words_hour_about_plural: aproximativ %d ore
12 12 actionview_datehelper_time_in_words_hour_about_single: aproximativ o ora
13 13 actionview_datehelper_time_in_words_minute: 1 minut
14 14 actionview_datehelper_time_in_words_minute_half: 30 de secunde
15 15 actionview_datehelper_time_in_words_minute_less_than: mai putin de un minut
16 16 actionview_datehelper_time_in_words_minute_plural: %d minute
17 17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 18 actionview_datehelper_time_in_words_second_less_than: mai putin de o secunda
19 19 actionview_datehelper_time_in_words_second_less_than_plural: mai putin de %d secunde
20 20 actionview_instancetag_blank_option: Va rog selectati
21 21
22 22 activerecord_error_inclusion: nu este inclus in lista
23 23 activerecord_error_exclusion: este rezervat
24 24 activerecord_error_invalid: este invalid
25 25 activerecord_error_confirmation: nu corespunde confirmarii
26 26 activerecord_error_accepted: trebuie acceptat
27 27 activerecord_error_empty: nu poate fi gol
28 28 activerecord_error_blank: nu poate fi gol
29 29 activerecord_error_too_long: este prea lung
30 30 activerecord_error_too_short: este prea scurt
31 31 activerecord_error_wrong_length: are lungimea eronata
32 32 activerecord_error_taken: deja a fost luat/rezervat
33 33 activerecord_error_not_a_number: nu este un numar
34 34 activerecord_error_not_a_date: nu este o data valida
35 35 activerecord_error_greater_than_start_date: trebuie sa fie mai mare ca data de start
36 36 activerecord_error_not_same_project: nu apartine projectului respectiv
37 37 activerecord_error_circular_dependency: Aceasta relatie ar crea dependenta circulara
38 38
39 39 general_fmt_age: %d an
40 40 general_fmt_age_plural: %d ani
41 41 general_fmt_date: %%m/%%d/%%A
42 42 general_fmt_datetime: %%m/%%d/%%A %%Z:%%L %%p
43 43 general_fmt_datetime_short: %%b %%d, %%Z:%%L %%p
44 44 general_fmt_time: %%Z:%%L %%p
45 45 general_text_No: 'Nu'
46 46 general_text_Yes: 'Da'
47 47 general_text_no: 'nu'
48 48 general_text_yes: 'da'
49 49 general_lang_name: 'Română'
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: Luni,Marti,Miercuri,Joi,Vineri,Sambata,Duminica
54 54 general_first_day_of_week: '7'
55 55
56 56 notice_account_updated: Contul a fost creat cu succes.
57 57 notice_account_invalid_creditentials: Numele utilizator sau parola este invalida.
58 58 notice_account_password_updated: Parola a fost modificata cu succes.
59 59 notice_account_wrong_password: Parola gresita
60 60 notice_account_register_done: Contul a fost creat cu succes. Pentru activarea contului folositi linkul primit in e-mailul de confirmare.
61 61 notice_account_unknown_email: Utilizator inexistent.
62 62 notice_can_t_change_password: Acest cont foloseste un sistem de autenticare externa. Parola nu poate fi schimbata.
63 63 notice_account_lost_email_sent: Un e-mail cu instructiuni de a seta noua parola a fost trimisa.
64 64 notice_account_activated: Contul a fost activat. Acum puteti intra in cont.
65 65 notice_successful_create: Creat cu succes.
66 66 notice_successful_update: Modificare cu succes.
67 67 notice_successful_delete: Stergere cu succes.
68 68 notice_successful_connection: Conectare cu succes.
69 69 notice_file_not_found: Pagina dorita nu exista sau nu mai este valabila.
70 70 notice_locking_conflict: Informatiile au fost modificate de un alt utilizator.
71 71 notice_scm_error: Articolul sau reviziunea nu exista in stoc (Repository).
72 72 notice_not_authorized: Nu aveti autorizatia sa accesati aceasta pagina.
73 73 notice_email_sent: Un e-mail a fost trimis la adresa %s
74 74 notice_email_error: Eroare in trimiterea e-mailului (%s)
75 75 notice_feeds_access_key_reseted: Parola de acces RSS a fost resetat.
76 76
77 77 mail_subject_lost_password: Parola clair.ro|PM
78 78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
79 79 mail_subject_register: Activare cont clair.ro|PM
80 80 mail_body_register: 'To activate your Redmine account, click on the following link:'
81 81
82 82 gui_validation_error: 1 eroare
83 83 gui_validation_error_plural: %d erori
84 84
85 85 field_name: Nume
86 86 field_description: Descriere
87 87 field_summary: Sumar
88 88 field_is_required: Obligatoriu
89 89 field_firstname: Nume
90 90 field_lastname: Prenume
91 91 field_mail: Email
92 92 field_filename: Fisier
93 93 field_filesize: Marimea fisierului
94 94 field_downloads: Download
95 95 field_author: Autor
96 96 field_created_on: Creat
97 97 field_updated_on: Modificat
98 98 field_field_format: Format
99 99 field_is_for_all: Pentru toate proiectele
100 100 field_possible_values: Valori posibile
101 101 field_regexp: Expresie regulara
102 102 field_min_length: Lungime minima
103 103 field_max_length: Lungime maxima
104 104 field_value: Valoare
105 105 field_category: Categorie
106 106 field_title: Titlu
107 107 field_project: Proiect
108 108 field_issue: Tichet
109 109 field_status: Statut
110 110 field_notes: Note
111 111 field_is_closed: Tichet rezolvat
112 112 field_is_default: Statut de baza
113 113 field_html_color: Culoare
114 114 field_tracker: Tip tichet
115 115 field_subject: Subiect
116 116 field_due_date: Data finalizarii
117 117 field_assigned_to: Atribuit pentru
118 118 field_priority: Prioritate
119 119 field_fixed_version: Versiune rezolvata
120 120 field_user: Utilizator
121 121 field_role: Rol
122 122 field_homepage: Pagina principala
123 123 field_is_public: Public
124 124 field_parent: Subproiect al
125 125 field_is_in_chlog: Tichetele sunt vizibile in changelog
126 126 field_is_in_roadmap: Tichetele sunt vizibile in roadmap
127 127 field_login: Autentificare
128 128 field_mail_notification: Notificari prin e-mail
129 129 field_admin: Administrator
130 130 field_last_login_on: Ultima conectare
131 131 field_language: Limba
132 132 field_effective_date: Data
133 133 field_password: Parola
134 134 field_new_password: Parola noua
135 135 field_password_confirmation: Confirmare
136 136 field_version: Versiune
137 137 field_type: Tip
138 138 field_host: Host
139 139 field_port: Port
140 140 field_account: Cont
141 141 field_base_dn: Base DN
142 142 field_attr_login: Atribut autentificare
143 143 field_attr_firstname: Atribut nume
144 144 field_attr_lastname: Atribut prenume
145 145 field_attr_mail: Atribut e-mail
146 146 field_onthefly: Creare utilizator on-the-fly (rapid)
147 147 field_start_date: Start
148 148 field_done_ratio: %% rezolvat
149 149 field_auth_source: Mod de autentificare
150 150 field_hide_mail: Ascunde adresa de e-mail
151 151 field_comments: Comentariu
152 152 field_url: URL
153 153 field_start_page: Pagina de start
154 154 field_subproject: Subproiect
155 155 field_hours: Ore
156 156 field_activity: Activitate
157 157 field_spent_on: Data
158 158 field_identifier: Identificator
159 159 field_is_filter: Folosit ca un filtru
160 160 field_issue_to_id: Articole similare
161 161 field_delay: Intarziere
162 162 field_assignable: La acest rol se poate atribui tichete
163 163 field_redirect_existing_links: Redirectare linkuri existente
164 164 field_estimated_hours: Timpul estimat
165 165
166 166 setting_app_title: Titlul aplicatiei
167 167 setting_app_subtitle: Subtitlul aplicatiei
168 168 setting_welcome_text: Textul de intampinare
169 169 setting_default_language: Limbajul
170 170 setting_login_required: Autentificare obligatorie
171 171 setting_self_registration: Inregistrarea utilizatorilor pe cont propriu este permisa
172 172 setting_attachment_max_size: Lungimea maxima al attachmentului
173 173 setting_issues_export_limit: Limita de exportare a tichetelor
174 174 setting_mail_from: Adresa de e-mail al emitatorului
175 175 setting_host_name: Numele hostului
176 176 setting_text_formatting: Formatarea textului
177 177 setting_wiki_compression: Compresie istoric wiki
178 178 setting_feeds_limit: Limita continut feed
179 179 setting_autofetch_changesets: Autofetch commits
180 180 setting_sys_api_enabled: Setare WS pentru managementul stocului (repository)
181 181 setting_commit_ref_keywords: Cuvinte cheie de referinta
182 182 setting_commit_fix_keywords: Cuvinte cheie de rezolvare
183 183 setting_autologin: Autentificare automata
184 184 setting_date_format: Formatul datelor
185 185 setting_cross_project_issue_relations: Tichetele pot avea relatii intre diferite proiecte
186 186
187 187 label_user: Utilizator
188 188 label_user_plural: Utilizatori
189 189 label_user_new: Utilizator nou
190 190 label_project: Proiect
191 191 label_project_new: Proiect nou
192 192 label_project_plural: Proiecte
193 193 label_project_all: Toate proiectele
194 194 label_project_latest: Ultimele proiecte
195 195 label_issue: Tichet
196 196 label_issue_new: Tichet nou
197 197 label_issue_plural: Tichete
198 198 label_issue_view_all: Vizualizare toate tichetele
199 199 label_document: Document
200 200 label_document_new: Document nou
201 201 label_document_plural: Documente
202 202 label_role: Rol
203 203 label_role_plural: Roluri
204 204 label_role_new: Rol nou
205 205 label_role_and_permissions: Roluri si permisiuni
206 206 label_member: Membru
207 207 label_member_new: Membru nou
208 208 label_member_plural: Membrii
209 209 label_tracker: Tip tichet
210 210 label_tracker_plural: Tipuri de tichete
211 211 label_tracker_new: Tip tichet nou
212 212 label_workflow: Workflow
213 213 label_issue_status: Statut tichet
214 214 label_issue_status_plural: Statut tichete
215 215 label_issue_status_new: Statut nou
216 216 label_issue_category: Categorie tichet
217 217 label_issue_category_plural: Categorii tichete
218 218 label_issue_category_new: Categorie noua
219 219 label_custom_field: Camp personalizat
220 220 label_custom_field_plural: Campuri personalizate
221 221 label_custom_field_new: Camp personalizat nou
222 222 label_enumerations: Enumeratii
223 223 label_enumeration_new: Valoare noua
224 224 label_information: Informatie
225 225 label_information_plural: Informatii
226 226 label_please_login: Va rugam sa va autentificati
227 227 label_register: Inregistrare
228 228 label_password_lost: Parola pierduta
229 229 label_home: Prima pagina
230 230 label_my_page: Pagina mea
231 231 label_my_account: Contul meu
232 232 label_my_projects: Proiectele mele
233 233 label_administration: Administrare
234 234 label_login: Autentificare
235 235 label_logout: Iesire din cont
236 236 label_help: Ajutor
237 237 label_reported_issues: Tichete raportate
238 238 label_assigned_to_me_issues: Tichete atribuite pentru mine
239 239 label_last_login: Ultima conectare
240 240 label_last_updates: Ultima modificare
241 241 label_last_updates_plural: ultimele %d modificari
242 242 label_registered_on: Inregistrat la
243 243 label_activity: Activitate
244 244 label_new: Nou
245 245 label_logged_as: Inregistrat ca
246 246 label_environment: Mediu
247 247 label_authentication: Autentificare
248 248 label_auth_source: Modul de autentificare
249 249 label_auth_source_new: Mod de autentificare noua
250 250 label_auth_source_plural: Moduri de autentificare
251 251 label_subproject_plural: Subproiecte
252 252 label_min_max_length: Lungime min-max
253 253 label_list: Lista
254 254 label_date: Data
255 255 label_integer: Numar intreg
256 256 label_boolean: Variabila logica
257 257 label_string: Text
258 258 label_text: text lung
259 259 label_attribute: Atribut
260 260 label_attribute_plural: Attribute
261 261 label_download: %d Download
262 262 label_download_plural: %d Downloads
263 263 label_no_data: Nu exista date de vizualizat
264 264 label_change_status: Schimbare statut
265 265 label_history: Istoric
266 266 label_attachment: Fisier
267 267 label_attachment_new: Fisier nou
268 268 label_attachment_delete: Stergere fisier
269 269 label_attachment_plural: Fisiere
270 270 label_report: Raport
271 271 label_report_plural: Rapoarte
272 272 label_news: Stiri
273 273 label_news_new: Adauga stiri
274 274 label_news_plural: Stiri
275 275 label_news_latest: Ultimele noutati
276 276 label_news_view_all: Vizualizare stiri
277 277 label_change_log: Change log
278 278 label_settings: Setari
279 279 label_overview: Sumar
280 280 label_version: Versiune
281 281 label_version_new: Versiune noua
282 282 label_version_plural: Versiuni
283 283 label_confirmation: Confirmare
284 284 label_export_to: Exportare in
285 285 label_read: Citire...
286 286 label_public_projects: Proiecte publice
287 287 label_open_issues: deschis
288 288 label_open_issues_plural: deschise
289 289 label_closed_issues: rezolvat
290 290 label_closed_issues_plural: rezolvate
291 291 label_total: Total
292 292 label_permissions: Permisiuni
293 293 label_current_status: Statut curent
294 294 label_new_statuses_allowed: Drepturi de a schimba statutul in
295 295 label_all: toate
296 296 label_none: n/a
297 297 label_next: Urmator
298 298 label_previous: Anterior
299 299 label_used_by: Folosit de
300 300 label_details: Detalii
301 301 label_add_note: Adauga o nota
302 302 label_per_page: Per pagina
303 303 label_calendar: Calendar
304 304 label_months_from: luni incepand cu
305 305 label_gantt: Gantt
306 306 label_internal: Internal
307 307 label_last_changes: ultimele %d modificari
308 308 label_change_view_all: Vizualizare toate modificarile
309 309 label_personalize_page: Personalizeaza aceasta pagina
310 310 label_comment: Comentariu
311 311 label_comment_plural: Comentarii
312 312 label_comment_add: Adauga un comentariu
313 313 label_comment_added: Comentariu adaugat
314 314 label_comment_delete: Stergere comentarii
315 315 label_query: Raport personalizat
316 316 label_query_plural: Rapoarte personalizate
317 317 label_query_new: Raport nou
318 318 label_filter_add: Adauga filtru
319 319 label_filter_plural: Filtre
320 320 label_equals: egal cu
321 321 label_not_equals: nu este egal cu
322 322 label_in_less_than: este mai putin decat
323 323 label_in_more_than: este mai mult ca
324 324 label_in: in
325 325 label_today: azi
326 326 label_this_week: saptamana curenta
327 327 label_less_than_ago: recent
328 328 label_more_than_ago: mai multe zile
329 329 label_ago: in ultimele zile
330 330 label_contains: contine
331 331 label_not_contains: nu contine
332 332 label_day_plural: zile
333 333 label_repository: Stoc (Repository)
334 334 label_browse: Navigare
335 335 label_modification: %d modificare
336 336 label_modification_plural: %d modificari
337 337 label_revision: Revizie
338 338 label_revision_plural: Revizii
339 339 label_added: adaugat
340 340 label_modified: modificat
341 341 label_deleted: sters
342 342 label_latest_revision: Ultima revizie
343 343 label_latest_revision_plural: Ultimele revizii
344 344 label_view_revisions: Vizualizare revizii
345 345 label_max_size: Marime maxima
346 346 label_on: 'din'
347 347 label_sort_highest: Muta prima
348 348 label_sort_higher: Muta sus
349 349 label_sort_lower: Mota jos
350 350 label_sort_lowest: Mota ultima
351 351 label_roadmap: Harta activitatiilor
352 352 label_roadmap_due_in: Rezolvat in
353 353 label_roadmap_overdue: %s intarziere
354 354 label_roadmap_no_issues: Nu sunt tichete pentru aceasta reviziune
355 355 label_search: Cauta
356 356 label_result_plural: Rezultate
357 357 label_all_words: Toate cuvintele
358 358 label_wiki: Wiki
359 359 label_wiki_edit: Editare wiki
360 360 label_wiki_edit_plural: Editari wiki
361 361 label_wiki_page: Pagina wiki
362 362 label_wiki_page_plural: Pagini wiki
363 363 label_current_version: Versiunea curenta
364 364 label_preview: Pre-vizualizare
365 365 label_feed_plural: Feeduri
366 366 label_changes_details: Detaliile modificarilor
367 367 label_issue_tracking: Urmarire tichete
368 368 label_spent_time: Timp consumat
369 369 label_f_hour: %.2f ora
370 370 label_f_hour_plural: %.2f ore
371 371 label_time_tracking: Urmarire timp
372 372 label_change_plural: Schimbari
373 373 label_statistics: Statistici
374 374 label_commits_per_month: Rezolvari lunare
375 375 label_commits_per_author: Rezolvari
376 376 label_view_diff: Vizualizare diferente
377 377 label_diff_inline: inline
378 378 label_diff_side_by_side: side by side
379 379 label_options: Optiuni
380 380 label_copy_workflow_from: Copiaza workflow de la
381 381 label_permissions_report: Raportul permisiunilor
382 382 label_watched_issues: Tichete urmarite
383 383 label_related_issues: Tichete similare
384 384 label_applied_status: Statut aplicat
385 385 label_loading: Incarcare...
386 386 label_relation_new: Relatie noua
387 387 label_relation_delete: Stergere relatie
388 388 label_relates_to: relatat la
389 389 label_duplicates: duplicate
390 390 label_blocks: blocuri
391 391 label_blocked_by: blocat de
392 392 label_precedes: precedes
393 393 label_follows: follows
394 394 label_end_to_start: de la sfarsit la capat
395 395 label_end_to_end: de la sfarsit la sfarsit
396 396 label_start_to_start: de la capat la capat
397 397 label_start_to_end: de la sfarsit la capat
398 398 label_stay_logged_in: Ramane autenticat
399 399 label_disabled: dezactivata
400 400 label_show_completed_versions: Vizualizare verziuni completate
401 401 label_me: mine
402 402 label_board: Forum
403 403 label_board_new: Forum nou
404 404 label_board_plural: Forumuri
405 405 label_topic_plural: Subiecte
406 406 label_message_plural: Mesaje
407 407 label_message_last: Ultimul mesaj
408 408 label_message_new: Mesaj nou
409 409 label_reply_plural: Raspunsuri
410 410 label_send_information: Trimite informatii despre cont pentru utilizator
411 411 label_year: An
412 412 label_month: Luna
413 413 label_week: Saptamana
414 414 label_date_from: De la
415 415 label_date_to: Pentru
416 416 label_language_based: Bazat pe limbaj
417 417 label_sort_by: Sortare dupa "%s"
418 418 label_send_test_email: trimite un e-mail de test
419 419 label_feeds_access_key_created_on: Parola de acces RSS creat cu %s mai devreme
420 420 label_module_plural: Module
421 421 label_added_time_by: Adaugat de %s %s mai devreme
422 422 label_updated_time: Modificat %s mai devreme
423 423 label_jump_to_a_project: Alege un proiect ...
424 424
425 425 button_login: Autentificare
426 426 button_submit: Trimite
427 427 button_save: Salveaza
428 428 button_check_all: Bifeaza toate
429 429 button_uncheck_all: Reseteaza toate
430 430 button_delete: Sterge
431 431 button_create: Creare
432 432 button_test: Test
433 433 button_edit: Editare
434 434 button_add: Adauga
435 435 button_change: Modificare
436 436 button_apply: Aplicare
437 437 button_clear: Resetare
438 438 button_lock: Inchide
439 439 button_unlock: Deschide
440 440 button_download: Download
441 441 button_list: Listare
442 442 button_view: Vizualizare
443 443 button_move: Mutare
444 444 button_back: Inapoi
445 445 button_cancel: Anulare
446 446 button_activate: Activare
447 447 button_sort: Sortare
448 448 button_log_time: Log time
449 449 button_rollback: Inapoi la aceasta versiune
450 450 button_watch: Urmarie
451 451 button_unwatch: Terminare urmarire
452 452 button_reply: Raspuns
453 453 button_archive: Arhivare
454 454 button_unarchive: Dezarhivare
455 455 button_reset: Reset
456 456 button_rename: Redenumire
457 457
458 458 status_active: activ
459 459 status_registered: inregistrat
460 460 status_locked: inchis
461 461
462 462 text_select_mail_notifications: Selectare actiuni pentru care se va trimite notificari prin e-mail.
463 463 text_regexp_info: de exemplu ^[A-Z0-9]+$
464 464 text_min_max_length_info: 0 inseamna fara restrictii
465 465 text_project_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest proiect si toate datele aferente ?
466 466 text_workflow_edit: Selecteaza un rol si un tip tichet pentru a edita acest workflow
467 467 text_are_you_sure: Sunteti sigur ?
468 468 text_journal_changed: modificat de la %s la %s
469 469 text_journal_set_to: setat la %s
470 470 text_journal_deleted: sters
471 471 text_tip_task_begin_day: activitate care incepe azi
472 472 text_tip_task_end_day: activitate care se termina azi
473 473 text_tip_task_begin_end_day: activitate care incepe si se termina azi
474 474 text_project_identifier_info: 'Se poate folosi caracterele a-z si cifrele.<br />Odata salvat identificatorul nu poate fi modificat.'
475 475 text_caracters_maximum: maximum %d caractere.
476 476 text_length_between: Lungimea intre %d si %d caractere.
477 477 text_tracker_no_workflow: Nu este definit nici un workflow pentru acest tip de tichet
478 478 text_unallowed_characters: Caractere nepermise
479 479 text_comma_separated: Se poate folosi valori multiple (separate de virgula).
480 480 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
481 481 text_issue_added: Tichetul %s a fost raportat.
482 482 text_issue_updated: tichetul %s a fost modificat.
483 483 text_wiki_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest wiki si continutul ei ?
484 484 text_issue_category_destroy_question: Cateva tichete (%d) apartin acestei categorii. Cum vreti sa procedati ?
485 485 text_issue_category_destroy_assignments: Remove category assignments
486 486 text_issue_category_reassign_to: Reassing issues to this category
487 487
488 488 default_role_manager: Manager
489 489 default_role_developper: Programator
490 490 default_role_reporter: Creator rapoarte
491 491 default_tracker_bug: Defect
492 492 default_tracker_feature: Functionalitate
493 493 default_tracker_support: Suport
494 494 default_issue_status_new: Nou
495 495 default_issue_status_assigned: Atribuit
496 496 default_issue_status_resolved: Rezolvat
497 497 default_issue_status_feedback: Feedback
498 498 default_issue_status_closed: Rezolvat
499 499 default_issue_status_rejected: Respins
500 500 default_doc_category_user: Documentatie
501 501 default_doc_category_tech: Documentatie tehnica
502 502 default_priority_low: Redusa
503 503 default_priority_normal: Normala
504 504 default_priority_high: Ridicata
505 505 default_priority_urgent: Urgenta
506 506 default_priority_immediate: Imediata
507 507 default_activity_design: Design
508 508 default_activity_development: Programare
509 509
510 510 enumeration_issue_priorities: Prioritati tichet
511 511 enumeration_doc_categories: Categorii documente
512 512 enumeration_activities: Activitati (urmarite in timp)
513 513 label_index_by_date: Index by date
514 514 label_index_by_title: Index by title
515 515 label_file_plural: Files
516 516 label_changeset_plural: Changesets
517 517 field_column_names: Columns
518 518 label_default_columns: Default columns
519 519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 520 setting_repositories_encodings: Repositories encodings
521 521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 523 label_no_change_option: (No change)
524 524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 525 label_theme: Theme
526 526 label_default: Default
527 527 label_search_titles_only: Search titles only
528 label_nobody: nobody
@@ -1,528 +1,529
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: Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,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 dag
9 9 actionview_datehelper_time_in_words_day_plural: %d dagar
10 10 actionview_datehelper_time_in_words_hour_about: cirka en timme
11 11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar
12 12 actionview_datehelper_time_in_words_hour_about_single: cirka en timme
13 13 actionview_datehelper_time_in_words_minute: 1 minut
14 14 actionview_datehelper_time_in_words_minute_half: en halv minute
15 15 actionview_datehelper_time_in_words_minute_less_than: mindre än en minut
16 16 actionview_datehelper_time_in_words_minute_plural: %d minuter
17 17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 18 actionview_datehelper_time_in_words_second_less_than: mindre än en sekund
19 19 actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder
20 20 actionview_instancetag_blank_option: Var god välj
21 21
22 22 activerecord_error_inclusion: finns inte i listan
23 23 activerecord_error_exclusion: är reserverad
24 24 activerecord_error_invalid: är ogiltig
25 25 activerecord_error_confirmation: överränsstämmer inte med bekräftelsen
26 26 activerecord_error_accepted: måste accepteras
27 27 activerecord_error_empty: får inte vara tom
28 28 activerecord_error_blank: får inte vara tom
29 29 activerecord_error_too_long: är för lång
30 30 activerecord_error_too_short: är för kort
31 31 activerecord_error_wrong_length: har fel längd
32 32 activerecord_error_taken: har redan blivit tagen
33 33 activerecord_error_not_a_number: är inte ett nummer
34 34 activerecord_error_not_a_date: är inte ett korrekt datum
35 35 activerecord_error_greater_than_start_date: måste vara senare än startdatumet
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 år
40 40 general_fmt_age_plural: %d år
41 41 general_fmt_date: %%Y-%%m-%%d
42 42 general_fmt_datetime: %%Y-%%m-%%d %%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: 'Nej'
46 46 general_text_Yes: 'Ja'
47 47 general_text_no: 'nej'
48 48 general_text_yes: 'ja'
49 49 general_lang_name: 'Svenska'
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: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag
54 54 general_first_day_of_week: '7'
55 55
56 56 notice_account_updated: Kontot har uppdaterats
57 57 notice_account_invalid_creditentials: Fel användarnamn eller lösenord
58 58 notice_account_password_updated: Lösenordet har uppdaterats
59 59 notice_account_wrong_password: Fel lösenord
60 60 notice_account_register_done: Kontot har skapats.
61 61 notice_account_unknown_email: Okäns användare.
62 62 notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord.
63 63 notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig.
64 64 notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in.
65 65 notice_successful_create: Lyckat skapande.
66 66 notice_successful_update: Lyckad uppdatering.
67 67 notice_successful_delete: Lyckad borttagning.
68 68 notice_successful_connection: Lyckad uppkoppling.
69 69 notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen.
70 70 notice_locking_conflict: Data har uppdaterats av en annan användare.
71 71 notice_scm_error: Inlägg och/eller revision finns inte i repositoriet.
72 72 notice_not_authorized: You are not authorized to access this page.
73 73 notice_email_sent: An email was sent to %s
74 74 notice_email_error: An error occurred while sending mail (%s)
75 75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76 76
77 77 mail_subject_lost_password: Ditt redMine lösenord
78 78 mail_body_lost_password: 'För att ändra lösenord, följ denna länk:'
79 79 mail_subject_register: redMine kontoaktivering
80 80 mail_body_register: 'För att aktivera ditt Redmine-konto, använd följande länk.'
81 81
82 82 gui_validation_error: 1 fel
83 83 gui_validation_error_plural: %d fel
84 84
85 85 field_name: Namn
86 86 field_description: Beskrivning
87 87 field_summary: Sammanfattning
88 88 field_is_required: Obligatorisk
89 89 field_firstname: Förnamn
90 90 field_lastname: Efternamn
91 91 field_mail: Email
92 92 field_filename: Fil
93 93 field_filesize: Storlek
94 94 field_downloads: Nerladdningar
95 95 field_author: Författare
96 96 field_created_on: Skapad
97 97 field_updated_on: Uppdaterad
98 98 field_field_format: Format
99 99 field_is_for_all: För alla projekt
100 100 field_possible_values: Möjliga värden
101 101 field_regexp: Regular expression
102 102 field_min_length: Minimilängd
103 103 field_max_length: Maximumlängd
104 104 field_value: Värde
105 105 field_category: Kategori
106 106 field_title: Titel
107 107 field_project: Projekt
108 108 field_issue: Brist
109 109 field_status: Status
110 110 field_notes: Anteckningar
111 111 field_is_closed: Brist stängd
112 112 field_is_default: Defaultstatus
113 113 field_html_color: Färg
114 114 field_tracker: Tracker
115 115 field_subject: Rubrik
116 116 field_due_date: Färdigdatum
117 117 field_assigned_to: Tilldelad
118 118 field_priority: Prioritet
119 119 field_fixed_version: Fixed version
120 120 field_user: Användare
121 121 field_role: Roll
122 122 field_homepage: Hemsida
123 123 field_is_public: Offentlig
124 124 field_parent: Delprojekt av
125 125 field_is_in_chlog: Brister visade i ändringslogg
126 126 field_is_in_roadmap: Bsiter visade i roadmap
127 127 field_login: Inloggning
128 128 field_mail_notification: Emailnotifieringar
129 129 field_admin: Administratör
130 130 field_last_login_on: Senaste inloggning
131 131 field_language: Språk
132 132 field_effective_date: Datum
133 133 field_password: Lösenord
134 134 field_new_password: Nytt lösenord
135 135 field_password_confirmation: Bekräfta
136 136 field_version: Version
137 137 field_type: Typ
138 138 field_host: Värddator
139 139 field_port: Port
140 140 field_account: Konto
141 141 field_base_dn: Bas DN
142 142 field_attr_login: Inloggningsattribut
143 143 field_attr_firstname: Förnamnattribut
144 144 field_attr_lastname: Efternamnattribut
145 145 field_attr_mail: Emailattribut
146 146 field_onthefly: On-the-fly användarskapning
147 147 field_start_date: Start
148 148 field_done_ratio: %% Done
149 149 field_auth_source: Authentikeringsläge
150 150 field_hide_mail: Dölj min emailadress
151 151 field_comment: Kommentar
152 152 field_url: URL
153 153 field_start_page: Startsida
154 154 field_subproject: Delprojekt
155 155 field_hours: Timmar
156 156 field_activity: Aktivitet
157 157 field_spent_on: Datum
158 158 field_identifier: Identifierare
159 159 field_is_filter: Used as a filter
160 160 field_issue_to_id: Related issue
161 161 field_delay: Delay
162 162 field_assignable: Issues can be assigned to this role
163 163 field_redirect_existing_links: Redirect existing links
164 164 field_estimated_hours: Estimated time
165 165
166 166 setting_app_title: Applikationstitel
167 167 setting_app_subtitle: Applicationsunderrubrik
168 168 setting_welcome_text: Välkommentext
169 169 setting_default_language: Default språk
170 170 setting_login_required: Authent. obligatoriskt
171 171 setting_self_registration: Självregistrering påslaget
172 172 setting_attachment_max_size: Bifogad maxstorlek
173 173 setting_issues_export_limit: Brist exportgräns
174 174 setting_mail_from: Emailavsändare
175 175 setting_host_name: Värddatornamn
176 176 setting_text_formatting: Textformattering
177 177 setting_wiki_compression: Wiki historiekomprimering
178 178 setting_feeds_limit: Feed innehållsgräns
179 179 setting_autofetch_changesets: Automatisk hämtning av commits
180 180 setting_sys_api_enabled: Aktivera WS för repository management
181 181 setting_commit_ref_keywords: Referencing keywords
182 182 setting_commit_fix_keywords: Fixing keywords
183 183 setting_autologin: Autologin
184 184 setting_date_format: Date format
185 185 setting_cross_project_issue_relations: Allow cross-project issue relations
186 186
187 187 label_user: Användare
188 188 label_user_plural: Användare
189 189 label_user_new: Ny användare
190 190 label_project: Projekt
191 191 label_project_new: Nytt projekt
192 192 label_project_plural: Projekt
193 193 label_project_all: All Projects
194 194 label_project_latest: Senaste projekt
195 195 label_issue: Brist
196 196 label_issue_new: Ny brist
197 197 label_issue_plural: Brister
198 198 label_issue_view_all: Visa alla brister
199 199 label_document: Dokument
200 200 label_document_new: Nytt dokument
201 201 label_document_plural: Dokument
202 202 label_role: Roll
203 203 label_role_plural: Roller
204 204 label_role_new: Ny roll
205 205 label_role_and_permissions: Roller och rättigheter
206 206 label_member: Medlem
207 207 label_member_new: Ny medlem
208 208 label_member_plural: Medlemmar
209 209 label_tracker: Tracker
210 210 label_tracker_plural: Trackers
211 211 label_tracker_new: Ny tracker
212 212 label_workflow: Workflow
213 213 label_issue_status: Briststatus
214 214 label_issue_status_plural: Briststatusar
215 215 label_issue_status_new: Ny status
216 216 label_issue_category: Bristkategori
217 217 label_issue_category_plural: Bristkategorier
218 218 label_issue_category_new: Ny kategori
219 219 label_custom_field: Användardefinerat fält
220 220 label_custom_field_plural: Användardefinerade fält
221 221 label_custom_field_new: Nytt Användardefinerat fält
222 222 label_enumerations: Uppräkningar
223 223 label_enumeration_new: Nytt värde
224 224 label_information: Information
225 225 label_information_plural: Information
226 226 label_please_login: Var god logga in
227 227 label_register: Registrera
228 228 label_password_lost: Glömt lösenord
229 229 label_home: Hem
230 230 label_my_page: Min sida
231 231 label_my_account: Mitt konto
232 232 label_my_projects: Mina projekt
233 233 label_administration: Administration
234 234 label_login: Logga in
235 235 label_logout: Logga ut
236 236 label_help: Hjälp
237 237 label_reported_issues: Rapporterade brister
238 238 label_assigned_to_me_issues: Brister tilldelade mig
239 239 label_last_login: Senaste inloggning
240 240 label_last_updates: Senast uppdaterad
241 241 label_last_updates_plural: %d senaste uppdateringarna
242 242 label_registered_on: Registrerad
243 243 label_activity: Aktivitet
244 244 label_new: Ny
245 245 label_logged_as: Loggad som
246 246 label_environment: Miljö
247 247 label_authentication: Authentikering
248 248 label_auth_source: Authentikeringsläge
249 249 label_auth_source_new: Nytt authentikeringsläge
250 250 label_auth_source_plural: Authentikeringslägen
251 251 label_subproject_plural: Delprojekt
252 252 label_min_max_length: Min - Max längd
253 253 label_list: Lista
254 254 label_date: Datum
255 255 label_integer: Heltal
256 256 label_boolean: Boolean
257 257 label_string: Text
258 258 label_text: Long text
259 259 label_attribute: Attribut
260 260 label_attribute_plural: Attribut
261 261 label_download: %d Nerladdning
262 262 label_download_plural: %d Nerladdningar
263 263 label_no_data: Ingen data att visa
264 264 label_change_status: Ändra status
265 265 label_history: Historia
266 266 label_attachment: Fil
267 267 label_attachment_new: Ny fil
268 268 label_attachment_delete: Ta bort fil
269 269 label_attachment_plural: Filer
270 270 label_report: Rapport
271 271 label_report_plural: Rapporter
272 272 label_news: Nyhet
273 273 label_news_new: Lägg till nyhet
274 274 label_news_plural: Nyheter
275 275 label_news_latest: Senaste neheten
276 276 label_news_view_all: Visa alla nyheter
277 277 label_change_log: Ändringslogg
278 278 label_settings: Inställningar
279 279 label_overview: Överblick
280 280 label_version: Version
281 281 label_version_new: Ny version
282 282 label_version_plural: Versioner
283 283 label_confirmation: Bekräftelse
284 284 label_export_to: Exportera till
285 285 label_read: Läs...
286 286 label_public_projects: Offentligt projekt
287 287 label_open_issues: öppen
288 288 label_open_issues_plural: öppna
289 289 label_closed_issues: stängd
290 290 label_closed_issues_plural: stängda
291 291 label_total: Total
292 292 label_permissions: Rättigheter
293 293 label_current_status: Nuvarande status
294 294 label_new_statuses_allowed: Nya statusar tillåtna
295 295 label_all: alla
296 296 label_none: inga
297 297 label_next: Nästa
298 298 label_previous: Föregående
299 299 label_used_by: Använd av
300 300 label_details: Detaljer
301 301 label_add_note: Lägg till anteckning
302 302 label_per_page: Per sida
303 303 label_calendar: Kalender
304 304 label_months_from: månader från
305 305 label_gantt: Gantt
306 306 label_internal: Intern
307 307 label_last_changes: senaste %d ändringar
308 308 label_change_view_all: Visa alla ändringar
309 309 label_personalize_page: Anpassa denna sida
310 310 label_comment: Kommentar
311 311 label_comment_plural: Kommentarer
312 312 label_comment_add: Lägg till kommentar
313 313 label_comment_added: Kommentar tillagd
314 314 label_comment_delete: Ta bort kommentar
315 315 label_query: Användardefinerad fråga
316 316 label_query_plural: Användardefinerade frågor
317 317 label_query_new: Ny fråga
318 318 label_filter_add: Lägg till filter
319 319 label_filter_plural: Filter
320 320 label_equals: är
321 321 label_not_equals: är inte
322 322 label_in_less_than: i mindre än
323 323 label_in_more_than: i mer än
324 324 label_in: i
325 325 label_today: idag
326 326 label_this_week: this week
327 327 label_less_than_ago: mindre än dagar sedan
328 328 label_more_than_ago: mer än dagar sedan
329 329 label_ago: dagar sedan
330 330 label_contains: innehåller
331 331 label_not_contains: innehåller inte
332 332 label_day_plural: dagar
333 333 label_repository: Repositorie
334 334 label_browse: Bläddra
335 335 label_modification: %d ändring
336 336 label_modification_plural: %d ändringar
337 337 label_revision: Revision
338 338 label_revision_plural: Revisioner
339 339 label_added: tillagd
340 340 label_modified: modifierad
341 341 label_deleted: borttagen
342 342 label_latest_revision: Senaste revisionen
343 343 label_latest_revision_plural: Senaste revisionerna
344 344 label_view_revisions: Visa revisioner
345 345 label_max_size: Maximumstorlek
346 346 label_on: 'på'
347 347 label_sort_highest: Flytta till top
348 348 label_sort_higher: Flytta up
349 349 label_sort_lower: Flytta ner
350 350 label_sort_lowest: Flytta till botten
351 351 label_roadmap: Roadmap
352 352 label_roadmap_due_in: Färdig om
353 353 label_roadmap_overdue: %s late
354 354 label_roadmap_no_issues: Inga brister för denna version
355 355 label_search: Sök
356 356 label_result_plural: Resultat
357 357 label_all_words: Alla ord
358 358 label_wiki: Wiki
359 359 label_wiki_edit: Wiki editera
360 360 label_wiki_edit_plural: Wiki editeringar
361 361 label_wiki_page: Wiki page
362 362 label_wiki_page_plural: Wiki pages
363 363 label_index_by_title: Index by title
364 364 label_index_by_date: Index by date
365 365 label_current_version: Nuvarande version
366 366 label_preview: Preview
367 367 label_feed_plural: Feeder
368 368 label_changes_details: Detaljer om alla ändringar
369 369 label_issue_tracking: Bristspårning
370 370 label_spent_time: Spenderad tid
371 371 label_f_hour: %.2f timmar
372 372 label_f_hour_plural: %.2f timmar
373 373 label_time_tracking: Tidsspårning
374 374 label_change_plural: Ändringar
375 375 label_statistics: Statistik
376 376 label_commits_per_month: Commit per månad
377 377 label_commits_per_author: Commit per författare
378 378 label_view_diff: Visa skillnader
379 379 label_diff_inline: inline
380 380 label_diff_side_by_side: sida vid sida
381 381 label_options: Inställningar
382 382 label_copy_workflow_from: Kopiera workflow från
383 383 label_permissions_report: Rättighetsrapport
384 384 label_watched_issues: Watched issues
385 385 label_related_issues: Related issues
386 386 label_applied_status: Applied status
387 387 label_loading: Loading...
388 388 label_relation_new: New relation
389 389 label_relation_delete: Delete relation
390 390 label_relates_to: related to
391 391 label_duplicates: duplicates
392 392 label_blocks: blocks
393 393 label_blocked_by: blocked by
394 394 label_precedes: precedes
395 395 label_follows: follows
396 396 label_end_to_start: end to start
397 397 label_end_to_end: end to end
398 398 label_start_to_start: start to start
399 399 label_start_to_end: start to end
400 400 label_stay_logged_in: Stay logged in
401 401 label_disabled: disabled
402 402 label_show_completed_versions: Show completed versions
403 403 label_me: me
404 404 label_board: Forum
405 405 label_board_new: New forum
406 406 label_board_plural: Forums
407 407 label_topic_plural: Topics
408 408 label_message_plural: Messages
409 409 label_message_last: Last message
410 410 label_message_new: New message
411 411 label_reply_plural: Replies
412 412 label_send_information: Send account information to the user
413 413 label_year: Year
414 414 label_month: Month
415 415 label_week: Week
416 416 label_date_from: From
417 417 label_date_to: To
418 418 label_language_based: Language based
419 419 label_sort_by: Sort by "%s"
420 420 label_send_test_email: Send a test email
421 421 label_feeds_access_key_created_on: RSS access key created %s ago
422 422 label_module_plural: Modules
423 423 label_added_time_by: Added by %s %s ago
424 424 label_updated_time: Updated %s ago
425 425 label_jump_to_a_project: Jump to a project...
426 426
427 427 button_login: Logga in
428 428 button_submit: Skicka
429 429 button_save: Spara
430 430 button_check_all: Markera alla
431 431 button_uncheck_all: Avmarkera alla
432 432 button_delete: Ta bort
433 433 button_create: Skapa
434 434 button_test: Testa
435 435 button_edit: Editera
436 436 button_add: Lägg till
437 437 button_change: Ändra
438 438 button_apply: Värkställ
439 439 button_clear: Rensa
440 440 button_lock: Lås
441 441 button_unlock: Lås upp
442 442 button_download: Ladda ner
443 443 button_list: Lista
444 444 button_view: Visa
445 445 button_move: Flytta
446 446 button_back: Tillbaka
447 447 button_cancel: Avbryt
448 448 button_activate: Aktivera
449 449 button_sort: Sortera
450 450 button_log_time: Logga tid
451 451 button_rollback: Rulla tillbaka till denna version
452 452 button_watch: Watch
453 453 button_unwatch: Unwatch
454 454 button_reply: Reply
455 455 button_archive: Archive
456 456 button_unarchive: Unarchive
457 457 button_reset: Reset
458 458 button_rename: Rename
459 459
460 460 status_active: activ
461 461 status_registered: registrerad
462 462 status_locked: låst
463 463
464 464 text_select_mail_notifications: Väl action för vilka email ska skickas.
465 465 text_regexp_info: eg. ^[A-Z0-9]+$
466 466 text_min_max_length_info: 0 betyder ingen gräns
467 467 text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data?
468 468 text_workflow_edit: Väl en roll och en tracker för att editera workflow.
469 469 text_are_you_sure: Är du säker?
470 470 text_journal_changed: ändrad från %s till %s
471 471 text_journal_set_to: satt till %s
472 472 text_journal_deleted: borttagen
473 473 text_tip_task_begin_day: arbetsuppgift börjar denna dag
474 474 text_tip_task_end_day: arbetsuppgift slutar denna dag
475 475 text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag
476 476 text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.'
477 477 text_caracters_maximum: %d tecken maximum.
478 478 text_length_between: Längd mellan %d och %d tecken.
479 479 text_tracker_no_workflow: Inget workflow definerat för denna tracker
480 480 text_unallowed_characters: Unallowed characters
481 481 text_comma_separated: Multiple values allowed (comma separated).
482 482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
483 483 text_issue_added: Brist %s har rapporterats.
484 484 text_issue_updated: Brist %s har uppdaterats.
485 485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
486 486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 487 text_issue_category_destroy_assignments: Remove category assignments
488 488 text_issue_category_reassign_to: Reassing issues to this category
489 489
490 490 default_role_manager: Förvaltare
491 491 default_role_developper: Utvecklare
492 492 default_role_reporter: Rapporterare
493 493 default_tracker_bug: Bugg
494 494 default_tracker_feature: Finess
495 495 default_tracker_support: Support
496 496 default_issue_status_new: Ny
497 497 default_issue_status_assigned: Tilldelad
498 498 default_issue_status_resolved: Löst
499 499 default_issue_status_feedback: Feedback
500 500 default_issue_status_closed: Stängd
501 501 default_issue_status_rejected: Avslagen
502 502 default_doc_category_user: Användardokumentation
503 503 default_doc_category_tech: Teknisk dokumentation
504 504 default_priority_low: Låg
505 505 default_priority_normal: Normal
506 506 default_priority_high: Hög
507 507 default_priority_urgent: Bråttom
508 508 default_priority_immediate: Omedelbar
509 509 default_activity_design: Design
510 510 default_activity_development: Utveckling
511 511
512 512 enumeration_issue_priorities: Bristprioriteringar
513 513 enumeration_doc_categories: Dokumentkategorier
514 514 enumeration_activities: Aktiviteter (tidsspårning)
515 515 field_comments: Comment
516 516 label_file_plural: Files
517 517 label_changeset_plural: Changesets
518 518 field_column_names: Columns
519 519 label_default_columns: Default columns
520 520 setting_issue_list_default_columns: Default columns displayed on the issue list
521 521 setting_repositories_encodings: Repositories encodings
522 522 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
523 523 label_bulk_edit_selected_issues: Bulk edit selected issues
524 524 label_no_change_option: (No change)
525 525 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
526 526 label_theme: Theme
527 527 label_default: Default
528 528 label_search_titles_only: Search titles only
529 label_nobody: nobody
@@ -1,530 +1,531
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_name: '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 general_first_day_of_week: '7'
58 58
59 59 notice_account_updated: 帐户更新成功。
60 60 notice_account_invalid_creditentials: 用户名或密码不正确
61 61 notice_account_password_updated: 成功更新口令
62 62 notice_account_wrong_password: 错误的口令
63 63 notice_account_register_done: 帐户已创建成功
64 64 notice_account_unknown_email: 未知用户
65 65 notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。
66 66 notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导
67 67 notice_account_activated: 您的帐号已被激活。您现在可以登录了。
68 68 notice_successful_create: 创建成功
69 69 notice_successful_update: 更新成功
70 70 notice_successful_delete: 删除成功
71 71 notice_successful_connection: 连接成功
72 72 notice_file_not_found: 您访问的页面不存在或已被删除。
73 73 notice_locking_conflict: 数据已被另一个用户更新
74 74 notice_scm_error: 在版本库中不存在该条目或修订
75 75 notice_not_authorized: You are not authorized to access this page.
76 76 notice_email_sent: An email was sent to %s
77 77 notice_email_error: An error occurred while sending mail (%s)
78 78 notice_feeds_access_key_reseted: Your RSS access key was reseted.
79 79
80 80 mail_subject_lost_password: 您的redMine口令
81 81 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
82 82 mail_subject_register: redMine帐户激活
83 83 mail_body_register: 'To activate your Redmine account, click on the following link:'
84 84
85 85 gui_validation_error: 1 个错误
86 86 gui_validation_error_plural: %d 个错误
87 87
88 88 field_name: 名称
89 89 field_description: 描述
90 90 field_summary: 摘要
91 91 field_is_required: 必填
92 92 field_firstname: 名字
93 93 field_lastname:
94 94 field_mail: 邮件地址
95 95 field_filename: 文件
96 96 field_filesize: 大小
97 97 field_downloads: 下载次数
98 98 field_author: 作者
99 99 field_created_on: 创建于
100 100 field_updated_on: 更新于
101 101 field_field_format: 格式
102 102 field_is_for_all: 应用于所有项目
103 103 field_possible_values: 可能的值
104 104 field_regexp: 正则表达式
105 105 field_min_length: 最小长度
106 106 field_max_length: 最大长度
107 107 field_value:
108 108 field_category: 分类
109 109 field_title: 标题
110 110 field_project: 项目
111 111 field_issue: 任务
112 112 field_status: 状态
113 113 field_notes: 说明
114 114 field_is_closed: 已关闭的任务
115 115 field_is_default: 默认状态
116 116 field_html_color: 颜色
117 117 field_tracker: 跟踪
118 118 field_subject: 主题
119 119 field_due_date: 到期日
120 120 field_assigned_to: 指派
121 121 field_priority: 优先级
122 122 field_fixed_version: 修订版本
123 123 field_user: 用户
124 124 field_role: 角色
125 125 field_homepage: 主页
126 126 field_is_public: 公开
127 127 field_parent: 上级项目
128 128 field_is_in_chlog: 在更新日志中显示任务
129 129 field_is_in_roadmap: 在路线图中显示任务
130 130 field_login: 登录名
131 131 field_mail_notification: 邮件通知
132 132 field_admin: 管理员
133 133 field_last_login_on: 最后登录
134 134 field_language: 语言
135 135 field_effective_date: 日期
136 136 field_password: 口令
137 137 field_new_password: 新口令
138 138 field_password_confirmation: 确认
139 139 field_version: 版本
140 140 field_type: 类别
141 141 field_host: 主机
142 142 field_port: 端口
143 143 field_account: 帐号
144 144 field_base_dn: Base DN
145 145 field_attr_login: 登录名属性
146 146 field_attr_firstname: 名字属性
147 147 field_attr_lastname: 姓属性
148 148 field_attr_mail: 邮件属性
149 149 field_onthefly: On-the-fly user creation
150 150 field_start_date: 开始
151 151 field_done_ratio: %% 完成
152 152 field_auth_source: 认证模式
153 153 field_hide_mail: 隐藏我的邮件
154 154 field_comments: 注释
155 155 field_url: URL
156 156 field_start_page: 起始页
157 157 field_subproject: 子项目
158 158 field_hours: Hours
159 159 field_activity: 活动
160 160 field_spent_on: 日期
161 161 field_identifier: Identifier
162 162 field_is_filter: Used as a filter
163 163 field_issue_to_id: Related issue
164 164 field_delay: Delay
165 165 field_assignable: Issues can be assigned to this role
166 166 field_redirect_existing_links: Redirect existing links
167 167 field_estimated_hours: Estimated time
168 168
169 169 setting_app_title: 应用程序标题
170 170 setting_app_subtitle: 应用程序子标题
171 171 setting_welcome_text: 欢迎文字
172 172 setting_default_language: 默认语言
173 173 setting_login_required: 要求认证
174 174 setting_self_registration: 允许自注册
175 175 setting_attachment_max_size: 附件最大尺寸
176 176 setting_issues_export_limit: Issues export limit
177 177 setting_mail_from: Emission mail address
178 178 setting_host_name: 主机名称
179 179 setting_text_formatting: 文本格式
180 180 setting_wiki_compression: Wiki history compression
181 181 setting_feeds_limit: Feed content limit
182 182 setting_autofetch_changesets: Autofetch commits
183 183 setting_sys_api_enabled: Enable WS for repository management
184 184 setting_commit_ref_keywords: Referencing keywords
185 185 setting_commit_fix_keywords: Fixing keywords
186 186 setting_autologin: Autologin
187 187 setting_date_format: Date format
188 188 setting_cross_project_issue_relations: Allow cross-project issue relations
189 189
190 190 label_user: 用户
191 191 label_user_plural: 用户列表
192 192 label_user_new: 新建用户
193 193 label_project: 项目
194 194 label_project_new: 新建项目
195 195 label_project_plural: 项目列表
196 196 label_project_all: All Projects
197 197 label_project_latest: 最近的项目列表
198 198 label_issue: 任务
199 199 label_issue_new: 新建任务
200 200 label_issue_plural: 任务列表
201 201 label_issue_view_all: 查看所有任务
202 202 label_document: 文档
203 203 label_document_new: 新建文档
204 204 label_document_plural: 文档列表
205 205 label_role: 角色
206 206 label_role_plural: 角色列表
207 207 label_role_new: 新建角色
208 208 label_role_and_permissions: 角色和权限
209 209 label_member: 成员
210 210 label_member_new: 新建成员
211 211 label_member_plural: 成员列表
212 212 label_tracker: 跟踪标签
213 213 label_tracker_plural: 跟踪标签列表
214 214 label_tracker_new: 新建跟踪标签
215 215 label_workflow: 工作流
216 216 label_issue_status: 任务状态列表
217 217 label_issue_status_plural: 任务状态列表
218 218 label_issue_status_new: 新建任务状态列表
219 219 label_issue_category: 任务类别
220 220 label_issue_category_plural: 任务类别列表
221 221 label_issue_category_new: 新建任务类别
222 222 label_custom_field: 自定义字段
223 223 label_custom_field_plural: 自定义字段列表
224 224 label_custom_field_new: 新建自定义字段
225 225 label_enumerations: 枚举列表
226 226 label_enumeration_new: 新建枚举值
227 227 label_information: 信息
228 228 label_information_plural: 信息
229 229 label_please_login: 请登录
230 230 label_register: 注册
231 231 label_password_lost: 忘记口令
232 232 label_home: 主页
233 233 label_my_page: 我的工作台
234 234 label_my_account: 我的帐号
235 235 label_my_projects: 我的项目列表
236 236 label_administration: 管理
237 237 label_login: 登录
238 238 label_logout: 退出
239 239 label_help: 帮助
240 240 label_reported_issues: 已报告的问题
241 241 label_assigned_to_me_issues: 分配给我的任务
242 242 label_last_login: 最后登录
243 243 label_last_updates: 最后更新
244 244 label_last_updates_plural: %d 最后更新
245 245 label_registered_on: 注册于
246 246 label_activity: 活动
247 247 label_new: 新建
248 248 label_logged_as: 登录为
249 249 label_environment: 环境
250 250 label_authentication: 认证
251 251 label_auth_source: 认证模式
252 252 label_auth_source_new: 新建认证模式
253 253 label_auth_source_plural: 认证模式列表
254 254 label_subproject_plural: 子项目列表
255 255 label_min_max_length: 最小 - 最大 长度
256 256 label_list: list
257 257 label_date: Date
258 258 label_integer: Integer
259 259 label_boolean: Boolean
260 260 label_string: Text
261 261 label_text: Long text
262 262 label_attribute: 属性
263 263 label_attribute_plural: 属性
264 264 label_download: %d 个下载次数
265 265 label_download_plural: %d 个下载次数
266 266 label_no_data: 没有数据用于显示
267 267 label_change_status: 改变状态
268 268 label_history: 历史记录
269 269 label_attachment: 文件
270 270 label_attachment_new: 新建文件
271 271 label_attachment_delete: 删除文件
272 272 label_attachment_plural: 文件列表
273 273 label_report: 报表
274 274 label_report_plural: 报表列表
275 275 label_news: 新闻
276 276 label_news_new: 增加新闻
277 277 label_news_plural: 新闻列表
278 278 label_news_latest: 最近的新闻
279 279 label_news_view_all: 查看所有新闻
280 280 label_change_log: 更新日志
281 281 label_settings: 配置
282 282 label_overview: 概述
283 283 label_version: 版本
284 284 label_version_new: 新建版本
285 285 label_version_plural: 版本列表
286 286 label_confirmation: 确认
287 287 label_export_to: 导出
288 288 label_read: 读取...
289 289 label_public_projects: 公开的项目列表
290 290 label_open_issues: 打开
291 291 label_open_issues_plural: 打开
292 292 label_closed_issues: 已关闭
293 293 label_closed_issues_plural: 已关闭
294 294 label_total: 合计
295 295 label_permissions: 权限列表
296 296 label_current_status: 当前状态
297 297 label_new_statuses_allowed: New statuses allowed
298 298 label_all: 全部
299 299 label_none:
300 300 label_next: 下一个
301 301 label_previous: 上一个
302 302 label_used_by: 使用中
303 303 label_details: 详情
304 304 label_add_note: 添加说明
305 305 label_per_page: 每面
306 306 label_calendar: 日历
307 307 label_months_from: months from
308 308 label_gantt: 甘特图(Gantt)
309 309 label_internal: 内部
310 310 label_last_changes: 最近的 %d 次更改
311 311 label_change_view_all: 查看所有更改
312 312 label_personalize_page: 个性化定制本页
313 313 label_comment: 注释
314 314 label_comment_plural: 注释列表
315 315 label_comment_add: 添加注释
316 316 label_comment_added: 已加入注释
317 317 label_comment_delete: 删除注释
318 318 label_query: 自定义查询
319 319 label_query_plural: 自定义查询列表
320 320 label_query_new: 新建查询
321 321 label_filter_add: 增加过滤器
322 322 label_filter_plural: 过滤器列表
323 323 label_equals: 等于
324 324 label_not_equals: 不等于
325 325 label_in_less_than: 剩余天数小于
326 326 label_in_more_than: 剩余天数大于
327 327 label_in: 剩余天数
328 328 label_today: 今天
329 329 label_this_week: this week
330 330 label_less_than_ago: 之前天数少于
331 331 label_more_than_ago: 之前天数大于
332 332 label_ago: 之前天数
333 333 label_contains: 包含
334 334 label_not_contains: 不包含
335 335 label_day_plural: 天数
336 336 label_repository: 版本库
337 337 label_browse: 浏览
338 338 label_modification: %d 个更新
339 339 label_modification_plural: %d 个更新
340 340 label_revision: 修订
341 341 label_revision_plural: 修订
342 342 label_added: 已增加
343 343 label_modified: 已修改
344 344 label_deleted: 已删除
345 345 label_latest_revision: 最近的版本
346 346 label_latest_revision_plural: 最近的版本列表
347 347 label_view_revisions: 查看修订列表
348 348 label_max_size: 最大尺寸
349 349 label_on: 'on'
350 350 label_sort_highest: 置顶
351 351 label_sort_higher: 上移
352 352 label_sort_lower: 下移
353 353 label_sort_lowest: 置底
354 354 label_roadmap: 路线图
355 355 label_roadmap_due_in: Due in
356 356 label_roadmap_overdue: %s late
357 357 label_roadmap_no_issues: 该版本没有任务
358 358 label_search: 查找
359 359 label_result_plural: 个结果
360 360 label_all_words: 所有单词
361 361 label_wiki: Wiki
362 362 label_wiki_edit: Wiki edit
363 363 label_wiki_edit_plural: Wiki edits
364 364 label_wiki_page_plural: Wiki pages
365 365 label_index_by_title: 索引
366 366 label_index_by_date: Index by date
367 367 label_current_version: 当前版本
368 368 label_preview: 预览
369 369 label_feed_plural: Feeds
370 370 label_changes_details: 所有更改的详情
371 371 label_issue_tracking: 任务跟踪
372 372 label_spent_time: 耗时
373 373 label_f_hour: %.2f 小时
374 374 label_f_hour_plural: %.2f 小时
375 375 label_time_tracking: 时间跟踪
376 376 label_change_plural: 更改列表
377 377 label_statistics: 统计
378 378 label_commits_per_month: Commits per month
379 379 label_commits_per_author: Commits per author
380 380 label_view_diff: View differences
381 381 label_diff_inline: inline
382 382 label_diff_side_by_side: side by side
383 383 label_options: Options
384 384 label_copy_workflow_from: Copy workflow from
385 385 label_permissions_report: Permissions report
386 386 label_watched_issues: Watched issues
387 387 label_related_issues: Related issues
388 388 label_applied_status: Applied status
389 389 label_loading: Loading...
390 390 label_relation_new: New relation
391 391 label_relation_delete: Delete relation
392 392 label_relates_to: related to
393 393 label_duplicates: duplicates
394 394 label_blocks: blocks
395 395 label_blocked_by: blocked by
396 396 label_precedes: precedes
397 397 label_follows: follows
398 398 label_end_to_start: end to start
399 399 label_end_to_end: end to end
400 400 label_start_to_start: start to start
401 401 label_start_to_end: start to end
402 402 label_stay_logged_in: Stay logged in
403 403 label_disabled: disabled
404 404 label_show_completed_versions: Show completed versions
405 405 label_me: me
406 406 label_board: Forum
407 407 label_board_new: New forum
408 408 label_board_plural: Forums
409 409 label_topic_plural: Topics
410 410 label_message_plural: Messages
411 411 label_message_last: Last message
412 412 label_message_new: New message
413 413 label_reply_plural: Replies
414 414 label_send_information: Send account information to the user
415 415 label_year: Year
416 416 label_month: Month
417 417 label_week: Week
418 418 label_date_from: From
419 419 label_date_to: To
420 420 label_language_based: Language based
421 421 label_sort_by: Sort by "%s"
422 422 label_send_test_email: Send a test email
423 423 label_feeds_access_key_created_on: RSS access key created %s ago
424 424 label_module_plural: Modules
425 425 label_added_time_by: Added by %s %s ago
426 426 label_updated_time: Updated %s ago
427 427 label_jump_to_a_project: Jump to a project...
428 428
429 429 button_login: 登录
430 430 button_submit: 提交
431 431 button_save: 保存
432 432 button_check_all: 全选
433 433 button_uncheck_all: 清除
434 434 button_delete: 删除
435 435 button_create: 创建
436 436 button_test: 测试
437 437 button_edit: 编辑
438 438 button_add: 新增
439 439 button_change: 修改
440 440 button_apply: 应用
441 441 button_clear: 清除
442 442 button_lock: 锁定
443 443 button_unlock: 解锁
444 444 button_download: 下载
445 445 button_list: 列表
446 446 button_view: 查看
447 447 button_move: 移动
448 448 button_back: 返回
449 449 button_cancel: 取消
450 450 button_activate: 激活
451 451 button_sort: 排序
452 452 button_log_time: 登记工时
453 453 button_rollback: Rollback to this version
454 454 button_watch: Watch
455 455 button_unwatch: Unwatch
456 456 button_reply: Reply
457 457 button_archive: Archive
458 458 button_unarchive: Unarchive
459 459 button_reset: Reset
460 460 button_rename: Rename
461 461
462 462 status_active: 激活
463 463 status_registered: 已注册
464 464 status_locked: 已锁定
465 465
466 466 text_select_mail_notifications: 选择需要发送邮件通知的动作。
467 467 text_regexp_info: eg. ^[A-Z0-9]+$
468 468 text_min_max_length_info: 0 表示没有限制
469 469 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
470 470 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
471 471 text_are_you_sure: 您确定?
472 472 text_journal_changed: 从 %s 更改为 %s
473 473 text_journal_set_to: 设置为 %s
474 474 text_journal_deleted: 已删除
475 475 text_tip_task_begin_day: 开始于此
476 476 text_tip_task_end_day: 在此结束
477 477 text_tip_task_begin_end_day: 开始并结束于此
478 478 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
479 479 text_caracters_maximum: %d characters maximum.
480 480 text_length_between: Length between %d and %d characters.
481 481 text_tracker_no_workflow: No workflow defined for this tracker
482 482 text_unallowed_characters: Unallowed characters
483 483 text_comma_separated: Multiple values allowed (comma separated).
484 484 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
485 485 text_issue_added: %s ѱ
486 486 text_issue_updated: %s Ѹ
487 487 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
488 488 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
489 489 text_issue_category_destroy_assignments: Remove category assignments
490 490 text_issue_category_reassign_to: Reassing issues to this category
491 491
492 492 default_role_manager: 管理员
493 493 default_role_developper: 开发人员
494 494 default_role_reporter: 报告人员
495 495 default_tracker_bug: 问题
496 496 default_tracker_feature: 功能
497 497 default_tracker_support: 支持
498 498 default_issue_status_new: 新建
499 499 default_issue_status_assigned: 已分配
500 500 default_issue_status_resolved: 已解决
501 501 default_issue_status_feedback: 回复
502 502 default_issue_status_closed: 已关闭
503 503 default_issue_status_rejected: 已打回
504 504 default_doc_category_user: 用户文档
505 505 default_doc_category_tech: 技术文档
506 506 default_priority_low:
507 507 default_priority_normal: 普通
508 508 default_priority_high:
509 509 default_priority_urgent: 紧急
510 510 default_priority_immediate: 立刻
511 511 default_activity_design: 设计
512 512 default_activity_development: 开发
513 513
514 514 enumeration_issue_priorities: 任务优先级
515 515 enumeration_doc_categories: 文档类别
516 516 enumeration_activities: Activities (time tracking)
517 517 label_wiki_page: Wiki page
518 518 label_file_plural: Files
519 519 label_changeset_plural: Changesets
520 520 field_column_names: Columns
521 521 label_default_columns: Default columns
522 522 setting_issue_list_default_columns: Default columns displayed on the issue list
523 523 setting_repositories_encodings: Repositories encodings
524 524 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
525 525 label_bulk_edit_selected_issues: Bulk edit selected issues
526 526 label_no_change_option: (No change)
527 527 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
528 528 label_theme: Theme
529 529 label_default: Default
530 530 label_search_titles_only: Search titles only
531 label_nobody: nobody
General Comments 0
You need to be logged in to leave comments. Login now