##// END OF EJS Templates
Merged r16118 to r16122 (#24693, #24718, #24722)....
Jean-Philippe Lang -
r15751:47d2775977e9
parent child
Show More

The requested changes are too big and content was truncated. Show full diff

@@ -1,522 +1,529
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2016 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 class IssuesController < ApplicationController
19 19 menu_item :new_issue, :only => [:new, :create]
20 20 default_search_scope :issues
21 21
22 22 before_filter :find_issue, :only => [:show, :edit, :update]
23 23 before_filter :find_issues, :only => [:bulk_edit, :bulk_update, :destroy]
24 24 before_filter :authorize, :except => [:index, :new, :create]
25 25 before_filter :find_optional_project, :only => [:index, :new, :create]
26 26 before_filter :build_new_issue_from_params, :only => [:new, :create]
27 27 accept_rss_auth :index, :show
28 28 accept_api_auth :index, :show, :create, :update, :destroy
29 29
30 30 rescue_from Query::StatementInvalid, :with => :query_statement_invalid
31 31
32 32 helper :journals
33 33 helper :projects
34 34 helper :custom_fields
35 35 helper :issue_relations
36 36 helper :watchers
37 37 helper :attachments
38 38 helper :queries
39 39 include QueriesHelper
40 40 helper :repositories
41 41 helper :sort
42 42 include SortHelper
43 43 helper :timelog
44 44
45 45 def index
46 46 retrieve_query
47 47 sort_init(@query.sort_criteria.empty? ? [['id', 'desc']] : @query.sort_criteria)
48 48 sort_update(@query.sortable_columns)
49 49 @query.sort_criteria = sort_criteria.to_a
50 50
51 51 if @query.valid?
52 52 case params[:format]
53 53 when 'csv', 'pdf'
54 54 @limit = Setting.issues_export_limit.to_i
55 55 if params[:columns] == 'all'
56 56 @query.column_names = @query.available_inline_columns.map(&:name)
57 57 end
58 58 when 'atom'
59 59 @limit = Setting.feeds_limit.to_i
60 60 when 'xml', 'json'
61 61 @offset, @limit = api_offset_and_limit
62 62 @query.column_names = %w(author)
63 63 else
64 64 @limit = per_page_option
65 65 end
66 66
67 67 @issue_count = @query.issue_count
68 68 @issue_pages = Paginator.new @issue_count, @limit, params['page']
69 69 @offset ||= @issue_pages.offset
70 70 @issues = @query.issues(:include => [:assigned_to, :tracker, :priority, :category, :fixed_version],
71 71 :order => sort_clause,
72 72 :offset => @offset,
73 73 :limit => @limit)
74 74 @issue_count_by_group = @query.issue_count_by_group
75 75
76 76 respond_to do |format|
77 77 format.html { render :template => 'issues/index', :layout => !request.xhr? }
78 78 format.api {
79 79 Issue.load_visible_relations(@issues) if include_in_api_response?('relations')
80 80 }
81 81 format.atom { render_feed(@issues, :title => "#{@project || Setting.app_title}: #{l(:label_issue_plural)}") }
82 82 format.csv { send_data(query_to_csv(@issues, @query, params[:csv]), :type => 'text/csv; header=present', :filename => 'issues.csv') }
83 83 format.pdf { send_file_headers! :type => 'application/pdf', :filename => 'issues.pdf' }
84 84 end
85 85 else
86 86 respond_to do |format|
87 87 format.html { render(:template => 'issues/index', :layout => !request.xhr?) }
88 88 format.any(:atom, :csv, :pdf) { render(:nothing => true) }
89 89 format.api { render_validation_errors(@query) }
90 90 end
91 91 end
92 92 rescue ActiveRecord::RecordNotFound
93 93 render_404
94 94 end
95 95
96 96 def show
97 97 @journals = @issue.journals.includes(:user, :details).
98 98 references(:user, :details).
99 99 reorder(:created_on, :id).to_a
100 100 @journals.each_with_index {|j,i| j.indice = i+1}
101 101 @journals.reject!(&:private_notes?) unless User.current.allowed_to?(:view_private_notes, @issue.project)
102 102 Journal.preload_journals_details_custom_fields(@journals)
103 103 @journals.select! {|journal| journal.notes? || journal.visible_details.any?}
104 104 @journals.reverse! if User.current.wants_comments_in_reverse_order?
105 105
106 106 @changesets = @issue.changesets.visible.preload(:repository, :user).to_a
107 107 @changesets.reverse! if User.current.wants_comments_in_reverse_order?
108 108
109 109 @relations = @issue.relations.select {|r| r.other_issue(@issue) && r.other_issue(@issue).visible? }
110 110 @allowed_statuses = @issue.new_statuses_allowed_to(User.current)
111 111 @priorities = IssuePriority.active
112 112 @time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project)
113 113 @relation = IssueRelation.new
114 114
115 115 respond_to do |format|
116 116 format.html {
117 117 retrieve_previous_and_next_issue_ids
118 118 render :template => 'issues/show'
119 119 }
120 120 format.api
121 121 format.atom { render :template => 'journals/index', :layout => false, :content_type => 'application/atom+xml' }
122 122 format.pdf {
123 123 send_file_headers! :type => 'application/pdf', :filename => "#{@project.identifier}-#{@issue.id}.pdf"
124 124 }
125 125 end
126 126 end
127 127
128 128 def new
129 129 respond_to do |format|
130 130 format.html { render :action => 'new', :layout => !request.xhr? }
131 131 format.js
132 132 end
133 133 end
134 134
135 135 def create
136 136 unless User.current.allowed_to?(:add_issues, @issue.project, :global => true)
137 137 raise ::Unauthorized
138 138 end
139 139 call_hook(:controller_issues_new_before_save, { :params => params, :issue => @issue })
140 140 @issue.save_attachments(params[:attachments] || (params[:issue] && params[:issue][:uploads]))
141 141 if @issue.save
142 142 call_hook(:controller_issues_new_after_save, { :params => params, :issue => @issue})
143 143 respond_to do |format|
144 144 format.html {
145 145 render_attachment_warning_if_needed(@issue)
146 146 flash[:notice] = l(:notice_issue_successful_create, :id => view_context.link_to("##{@issue.id}", issue_path(@issue), :title => @issue.subject))
147 147 redirect_after_create
148 148 }
149 149 format.api { render :action => 'show', :status => :created, :location => issue_url(@issue) }
150 150 end
151 151 return
152 152 else
153 153 respond_to do |format|
154 154 format.html {
155 155 if @issue.project.nil?
156 156 render_error :status => 422
157 157 else
158 158 render :action => 'new'
159 159 end
160 160 }
161 161 format.api { render_validation_errors(@issue) }
162 162 end
163 163 end
164 164 end
165 165
166 166 def edit
167 167 return unless update_issue_from_params
168 168
169 169 respond_to do |format|
170 170 format.html { }
171 171 format.js
172 172 end
173 173 end
174 174
175 175 def update
176 176 return unless update_issue_from_params
177 177 @issue.save_attachments(params[:attachments] || (params[:issue] && params[:issue][:uploads]))
178 178 saved = false
179 179 begin
180 180 saved = save_issue_with_child_records
181 181 rescue ActiveRecord::StaleObjectError
182 182 @conflict = true
183 183 if params[:last_journal_id]
184 184 @conflict_journals = @issue.journals_after(params[:last_journal_id]).to_a
185 185 @conflict_journals.reject!(&:private_notes?) unless User.current.allowed_to?(:view_private_notes, @issue.project)
186 186 end
187 187 end
188 188
189 189 if saved
190 190 render_attachment_warning_if_needed(@issue)
191 191 flash[:notice] = l(:notice_successful_update) unless @issue.current_journal.new_record?
192 192
193 193 respond_to do |format|
194 194 format.html { redirect_back_or_default issue_path(@issue) }
195 195 format.api { render_api_ok }
196 196 end
197 197 else
198 198 respond_to do |format|
199 199 format.html { render :action => 'edit' }
200 200 format.api { render_validation_errors(@issue) }
201 201 end
202 202 end
203 203 end
204 204
205 205 # Bulk edit/copy a set of issues
206 206 def bulk_edit
207 207 @issues.sort!
208 208 @copy = params[:copy].present?
209 209 @notes = params[:notes]
210 210
211 211 if @copy
212 212 unless User.current.allowed_to?(:copy_issues, @projects)
213 213 raise ::Unauthorized
214 214 end
215 215 end
216 216
217 217 @allowed_projects = Issue.allowed_target_projects
218 218 if params[:issue]
219 219 @target_project = @allowed_projects.detect {|p| p.id.to_s == params[:issue][:project_id].to_s}
220 220 if @target_project
221 221 target_projects = [@target_project]
222 222 end
223 223 end
224 224 target_projects ||= @projects
225 225
226 226 if @copy
227 227 # Copied issues will get their default statuses
228 228 @available_statuses = []
229 229 else
230 230 @available_statuses = @issues.map(&:new_statuses_allowed_to).reduce(:&)
231 231 end
232 232 @custom_fields = @issues.map{|i|i.editable_custom_fields}.reduce(:&)
233 233 @assignables = target_projects.map(&:assignable_users).reduce(:&)
234 234 @trackers = target_projects.map(&:trackers).reduce(:&)
235 235 @versions = target_projects.map {|p| p.shared_versions.open}.reduce(:&)
236 236 @categories = target_projects.map {|p| p.issue_categories}.reduce(:&)
237 237 if @copy
238 238 @attachments_present = @issues.detect {|i| i.attachments.any?}.present?
239 239 @subtasks_present = @issues.detect {|i| !i.leaf?}.present?
240 240 end
241 241
242 242 @safe_attributes = @issues.map(&:safe_attribute_names).reduce(:&)
243 243
244 244 @issue_params = params[:issue] || {}
245 245 @issue_params[:custom_field_values] ||= {}
246 246 end
247 247
248 248 def bulk_update
249 249 @issues.sort!
250 250 @copy = params[:copy].present?
251 251
252 252 attributes = parse_params_for_bulk_issue_attributes(params)
253 253 copy_subtasks = (params[:copy_subtasks] == '1')
254 254 copy_attachments = (params[:copy_attachments] == '1')
255 255
256 256 if @copy
257 257 unless User.current.allowed_to?(:copy_issues, @projects)
258 258 raise ::Unauthorized
259 259 end
260 260 target_projects = @projects
261 261 if attributes['project_id'].present?
262 262 target_projects = Project.where(:id => attributes['project_id']).to_a
263 263 end
264 264 unless User.current.allowed_to?(:add_issues, target_projects)
265 265 raise ::Unauthorized
266 266 end
267 267 end
268 268
269 269 unsaved_issues = []
270 270 saved_issues = []
271 271
272 272 if @copy && copy_subtasks
273 273 # Descendant issues will be copied with the parent task
274 274 # Don't copy them twice
275 275 @issues.reject! {|issue| @issues.detect {|other| issue.is_descendant_of?(other)}}
276 276 end
277 277
278 278 @issues.each do |orig_issue|
279 279 orig_issue.reload
280 280 if @copy
281 281 issue = orig_issue.copy({},
282 282 :attachments => copy_attachments,
283 283 :subtasks => copy_subtasks,
284 284 :link => link_copy?(params[:link_copy])
285 285 )
286 286 else
287 287 issue = orig_issue
288 288 end
289 289 journal = issue.init_journal(User.current, params[:notes])
290 290 issue.safe_attributes = attributes
291 291 call_hook(:controller_issues_bulk_edit_before_save, { :params => params, :issue => issue })
292 292 if issue.save
293 293 saved_issues << issue
294 294 else
295 295 unsaved_issues << orig_issue
296 296 end
297 297 end
298 298
299 299 if unsaved_issues.empty?
300 300 flash[:notice] = l(:notice_successful_update) unless saved_issues.empty?
301 301 if params[:follow]
302 302 if @issues.size == 1 && saved_issues.size == 1
303 303 redirect_to issue_path(saved_issues.first)
304 304 elsif saved_issues.map(&:project).uniq.size == 1
305 305 redirect_to project_issues_path(saved_issues.map(&:project).first)
306 306 end
307 307 else
308 308 redirect_back_or_default _project_issues_path(@project)
309 309 end
310 310 else
311 311 @saved_issues = @issues
312 312 @unsaved_issues = unsaved_issues
313 313 @issues = Issue.visible.where(:id => @unsaved_issues.map(&:id)).to_a
314 314 bulk_edit
315 315 render :action => 'bulk_edit'
316 316 end
317 317 end
318 318
319 319 def destroy
320 @hours = TimeEntry.where(:issue_id => @issues.map(&:id)).sum(:hours).to_f
320
321 # all issues and their descendants are about to be deleted
322 issues_and_descendants_ids = Issue.self_and_descendants(@issues).pluck(:id)
323 time_entries = TimeEntry.where(:issue_id => issues_and_descendants_ids)
324 @hours = time_entries.sum(:hours).to_f
325
321 326 if @hours > 0
322 327 case params[:todo]
323 328 when 'destroy'
324 329 # nothing to do
325 330 when 'nullify'
326 TimeEntry.where(['issue_id IN (?)', @issues]).update_all('issue_id = NULL')
331 time_entries.update_all(:issue_id => nil)
327 332 when 'reassign'
328 reassign_to = @project.issues.find_by_id(params[:reassign_to_id])
333 reassign_to = @project && @project.issues.find_by_id(params[:reassign_to_id])
329 334 if reassign_to.nil?
330 335 flash.now[:error] = l(:error_issue_not_found_in_project)
331 336 return
337 elsif issues_and_descendants_ids.include?(reassign_to.id)
338 flash.now[:error] = l(:error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted)
339 return
332 340 else
333 TimeEntry.where(['issue_id IN (?)', @issues]).
334 update_all("issue_id = #{reassign_to.id}")
341 time_entries.update_all(:issue_id => reassign_to.id, :project_id => reassign_to.project_id)
335 342 end
336 343 else
337 344 # display the destroy form if it's a user request
338 345 return unless api_request?
339 346 end
340 347 end
341 348 @issues.each do |issue|
342 349 begin
343 350 issue.reload.destroy
344 351 rescue ::ActiveRecord::RecordNotFound # raised by #reload if issue no longer exists
345 352 # nothing to do, issue was already deleted (eg. by a parent)
346 353 end
347 354 end
348 355 respond_to do |format|
349 356 format.html { redirect_back_or_default _project_issues_path(@project) }
350 357 format.api { render_api_ok }
351 358 end
352 359 end
353 360
354 361 private
355 362
356 363 def retrieve_previous_and_next_issue_ids
357 364 retrieve_query_from_session
358 365 if @query
359 366 sort_init(@query.sort_criteria.empty? ? [['id', 'desc']] : @query.sort_criteria)
360 367 sort_update(@query.sortable_columns, 'issues_index_sort')
361 368 limit = 500
362 369 issue_ids = @query.issue_ids(:order => sort_clause, :limit => (limit + 1), :include => [:assigned_to, :tracker, :priority, :category, :fixed_version])
363 370 if (idx = issue_ids.index(@issue.id)) && idx < limit
364 371 if issue_ids.size < 500
365 372 @issue_position = idx + 1
366 373 @issue_count = issue_ids.size
367 374 end
368 375 @prev_issue_id = issue_ids[idx - 1] if idx > 0
369 376 @next_issue_id = issue_ids[idx + 1] if idx < (issue_ids.size - 1)
370 377 end
371 378 end
372 379 end
373 380
374 381 # Used by #edit and #update to set some common instance variables
375 382 # from the params
376 383 def update_issue_from_params
377 384 @time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project)
378 385 if params[:time_entry]
379 386 @time_entry.safe_attributes = params[:time_entry]
380 387 end
381 388
382 389 @issue.init_journal(User.current)
383 390
384 391 issue_attributes = params[:issue]
385 392 if issue_attributes && params[:conflict_resolution]
386 393 case params[:conflict_resolution]
387 394 when 'overwrite'
388 395 issue_attributes = issue_attributes.dup
389 396 issue_attributes.delete(:lock_version)
390 397 when 'add_notes'
391 398 issue_attributes = issue_attributes.slice(:notes, :private_notes)
392 399 when 'cancel'
393 400 redirect_to issue_path(@issue)
394 401 return false
395 402 end
396 403 end
397 404 @issue.safe_attributes = issue_attributes
398 405 @priorities = IssuePriority.active
399 406 @allowed_statuses = @issue.new_statuses_allowed_to(User.current)
400 407 true
401 408 end
402 409
403 410 # Used by #new and #create to build a new issue from the params
404 411 # The new issue will be copied from an existing one if copy_from parameter is given
405 412 def build_new_issue_from_params
406 413 @issue = Issue.new
407 414 if params[:copy_from]
408 415 begin
409 416 @issue.init_journal(User.current)
410 417 @copy_from = Issue.visible.find(params[:copy_from])
411 418 unless User.current.allowed_to?(:copy_issues, @copy_from.project)
412 419 raise ::Unauthorized
413 420 end
414 421 @link_copy = link_copy?(params[:link_copy]) || request.get?
415 422 @copy_attachments = params[:copy_attachments].present? || request.get?
416 423 @copy_subtasks = params[:copy_subtasks].present? || request.get?
417 424 @issue.copy_from(@copy_from, :attachments => @copy_attachments, :subtasks => @copy_subtasks, :link => @link_copy)
418 425 rescue ActiveRecord::RecordNotFound
419 426 render_404
420 427 return
421 428 end
422 429 end
423 430 @issue.project = @project
424 431 if request.get?
425 432 @issue.project ||= @issue.allowed_target_projects.first
426 433 end
427 434 @issue.author ||= User.current
428 435 @issue.start_date ||= Date.today if Setting.default_issue_start_date_to_creation_date?
429 436
430 437 attrs = (params[:issue] || {}).deep_dup
431 438 if action_name == 'new' && params[:was_default_status] == attrs[:status_id]
432 439 attrs.delete(:status_id)
433 440 end
434 441 if action_name == 'new' && params[:form_update_triggered_by] == 'issue_project_id'
435 442 # Discard submitted version when changing the project on the issue form
436 443 # so we can use the default version for the new project
437 444 attrs.delete(:fixed_version_id)
438 445 end
439 446 @issue.safe_attributes = attrs
440 447
441 448 if @issue.project
442 449 @issue.tracker ||= @issue.project.trackers.first
443 450 if @issue.tracker.nil?
444 451 render_error l(:error_no_tracker_in_project)
445 452 return false
446 453 end
447 454 if @issue.status.nil?
448 455 render_error l(:error_no_default_issue_status)
449 456 return false
450 457 end
451 458 end
452 459
453 460 @priorities = IssuePriority.active
454 461 @allowed_statuses = @issue.new_statuses_allowed_to(User.current)
455 462 end
456 463
457 464 def parse_params_for_bulk_issue_attributes(params)
458 465 attributes = (params[:issue] || {}).reject {|k,v| v.blank?}
459 466 attributes.keys.each {|k| attributes[k] = '' if attributes[k] == 'none'}
460 467 if custom = attributes[:custom_field_values]
461 468 custom.reject! {|k,v| v.blank?}
462 469 custom.keys.each do |k|
463 470 if custom[k].is_a?(Array)
464 471 custom[k] << '' if custom[k].delete('__none__')
465 472 else
466 473 custom[k] = '' if custom[k] == '__none__'
467 474 end
468 475 end
469 476 end
470 477 attributes
471 478 end
472 479
473 480 # Saves @issue and a time_entry from the parameters
474 481 def save_issue_with_child_records
475 482 Issue.transaction do
476 483 if params[:time_entry] && (params[:time_entry][:hours].present? || params[:time_entry][:comments].present?) && User.current.allowed_to?(:log_time, @issue.project)
477 484 time_entry = @time_entry || TimeEntry.new
478 485 time_entry.project = @issue.project
479 486 time_entry.issue = @issue
480 487 time_entry.user = User.current
481 488 time_entry.spent_on = User.current.today
482 489 time_entry.attributes = params[:time_entry]
483 490 @issue.time_entries << time_entry
484 491 end
485 492
486 493 call_hook(:controller_issues_edit_before_save, { :params => params, :issue => @issue, :time_entry => time_entry, :journal => @issue.current_journal})
487 494 if @issue.save
488 495 call_hook(:controller_issues_edit_after_save, { :params => params, :issue => @issue, :time_entry => time_entry, :journal => @issue.current_journal})
489 496 else
490 497 raise ActiveRecord::Rollback
491 498 end
492 499 end
493 500 end
494 501
495 502 # Returns true if the issue copy should be linked
496 503 # to the original issue
497 504 def link_copy?(param)
498 505 case Setting.link_copied_issue
499 506 when 'yes'
500 507 true
501 508 when 'no'
502 509 false
503 510 when 'ask'
504 511 param == '1'
505 512 end
506 513 end
507 514
508 515 # Redirects user after a successful issue creation
509 516 def redirect_after_create
510 517 if params[:continue]
511 518 attrs = {:tracker_id => @issue.tracker, :parent_issue_id => @issue.parent_issue_id}.reject {|k,v| v.nil?}
512 519 if params[:project_id]
513 520 redirect_to new_project_issue_path(@issue.project, :issue => attrs)
514 521 else
515 522 attrs.merge! :project_id => @issue.project_id
516 523 redirect_to new_issue_path(:issue => attrs)
517 524 end
518 525 else
519 526 redirect_to issue_path(@issue)
520 527 end
521 528 end
522 529 end
@@ -1,1702 +1,1711
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2016 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 class Issue < ActiveRecord::Base
19 19 include Redmine::SafeAttributes
20 20 include Redmine::Utils::DateCalculation
21 21 include Redmine::I18n
22 22 before_save :set_parent_id
23 23 include Redmine::NestedSet::IssueNestedSet
24 24
25 25 belongs_to :project
26 26 belongs_to :tracker
27 27 belongs_to :status, :class_name => 'IssueStatus'
28 28 belongs_to :author, :class_name => 'User'
29 29 belongs_to :assigned_to, :class_name => 'Principal'
30 30 belongs_to :fixed_version, :class_name => 'Version'
31 31 belongs_to :priority, :class_name => 'IssuePriority'
32 32 belongs_to :category, :class_name => 'IssueCategory'
33 33
34 34 has_many :journals, :as => :journalized, :dependent => :destroy, :inverse_of => :journalized
35 35 has_many :visible_journals,
36 36 lambda {where(["(#{Journal.table_name}.private_notes = ? OR (#{Project.allowed_to_condition(User.current, :view_private_notes)}))", false])},
37 37 :class_name => 'Journal',
38 38 :as => :journalized
39 39
40 40 has_many :time_entries, :dependent => :destroy
41 41 has_and_belongs_to_many :changesets, lambda {order("#{Changeset.table_name}.committed_on ASC, #{Changeset.table_name}.id ASC")}
42 42
43 43 has_many :relations_from, :class_name => 'IssueRelation', :foreign_key => 'issue_from_id', :dependent => :delete_all
44 44 has_many :relations_to, :class_name => 'IssueRelation', :foreign_key => 'issue_to_id', :dependent => :delete_all
45 45
46 46 acts_as_attachable :after_add => :attachment_added, :after_remove => :attachment_removed
47 47 acts_as_customizable
48 48 acts_as_watchable
49 49 acts_as_searchable :columns => ['subject', "#{table_name}.description"],
50 50 :preload => [:project, :status, :tracker],
51 51 :scope => lambda {|options| options[:open_issues] ? self.open : self.all}
52 52
53 53 acts_as_event :title => Proc.new {|o| "#{o.tracker.name} ##{o.id} (#{o.status}): #{o.subject}"},
54 54 :url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.id}},
55 55 :type => Proc.new {|o| 'issue' + (o.closed? ? ' closed' : '') }
56 56
57 57 acts_as_activity_provider :scope => preload(:project, :author, :tracker),
58 58 :author_key => :author_id
59 59
60 60 DONE_RATIO_OPTIONS = %w(issue_field issue_status)
61 61
62 62 attr_reader :current_journal
63 63 delegate :notes, :notes=, :private_notes, :private_notes=, :to => :current_journal, :allow_nil => true
64 64
65 65 validates_presence_of :subject, :project, :tracker
66 66 validates_presence_of :priority, :if => Proc.new {|issue| issue.new_record? || issue.priority_id_changed?}
67 67 validates_presence_of :status, :if => Proc.new {|issue| issue.new_record? || issue.status_id_changed?}
68 68 validates_presence_of :author, :if => Proc.new {|issue| issue.new_record? || issue.author_id_changed?}
69 69
70 70 validates_length_of :subject, :maximum => 255
71 71 validates_inclusion_of :done_ratio, :in => 0..100
72 72 validates :estimated_hours, :numericality => {:greater_than_or_equal_to => 0, :allow_nil => true, :message => :invalid}
73 73 validates :start_date, :date => true
74 74 validates :due_date, :date => true
75 75 validate :validate_issue, :validate_required_fields
76 76 attr_protected :id
77 77
78 78 scope :visible, lambda {|*args|
79 79 joins(:project).
80 80 where(Issue.visible_condition(args.shift || User.current, *args))
81 81 }
82 82
83 83 scope :open, lambda {|*args|
84 84 is_closed = args.size > 0 ? !args.first : false
85 85 joins(:status).
86 86 where("#{IssueStatus.table_name}.is_closed = ?", is_closed)
87 87 }
88 88
89 89 scope :recently_updated, lambda { order("#{Issue.table_name}.updated_on DESC") }
90 90 scope :on_active_project, lambda {
91 91 joins(:project).
92 92 where("#{Project.table_name}.status = ?", Project::STATUS_ACTIVE)
93 93 }
94 94 scope :fixed_version, lambda {|versions|
95 95 ids = [versions].flatten.compact.map {|v| v.is_a?(Version) ? v.id : v}
96 96 ids.any? ? where(:fixed_version_id => ids) : where('1=0')
97 97 }
98 98 scope :assigned_to, lambda {|arg|
99 99 arg = Array(arg).uniq
100 100 ids = arg.map {|p| p.is_a?(Principal) ? p.id : p}
101 101 ids += arg.select {|p| p.is_a?(User)}.map(&:group_ids).flatten.uniq
102 102 ids.compact!
103 103 ids.any? ? where(:assigned_to_id => ids) : none
104 104 }
105 105
106 106 before_validation :clear_disabled_fields
107 107 before_create :default_assign
108 108 before_save :close_duplicates, :update_done_ratio_from_issue_status,
109 109 :force_updated_on_change, :update_closed_on, :set_assigned_to_was
110 110 after_save {|issue| issue.send :after_project_change if !issue.id_changed? && issue.project_id_changed?}
111 111 after_save :reschedule_following_issues, :update_nested_set_attributes,
112 112 :update_parent_attributes, :create_journal
113 113 # Should be after_create but would be called before previous after_save callbacks
114 114 after_save :after_create_from_copy
115 115 after_destroy :update_parent_attributes
116 116 after_create :send_notification
117 117 # Keep it at the end of after_save callbacks
118 118 after_save :clear_assigned_to_was
119 119
120 120 # Returns a SQL conditions string used to find all issues visible by the specified user
121 121 def self.visible_condition(user, options={})
122 122 Project.allowed_to_condition(user, :view_issues, options) do |role, user|
123 123 if user.id && user.logged?
124 124 case role.issues_visibility
125 125 when 'all'
126 126 nil
127 127 when 'default'
128 128 user_ids = [user.id] + user.groups.map(&:id).compact
129 129 "(#{table_name}.is_private = #{connection.quoted_false} OR #{table_name}.author_id = #{user.id} OR #{table_name}.assigned_to_id IN (#{user_ids.join(',')}))"
130 130 when 'own'
131 131 user_ids = [user.id] + user.groups.map(&:id).compact
132 132 "(#{table_name}.author_id = #{user.id} OR #{table_name}.assigned_to_id IN (#{user_ids.join(',')}))"
133 133 else
134 134 '1=0'
135 135 end
136 136 else
137 137 "(#{table_name}.is_private = #{connection.quoted_false})"
138 138 end
139 139 end
140 140 end
141 141
142 142 # Returns true if usr or current user is allowed to view the issue
143 143 def visible?(usr=nil)
144 144 (usr || User.current).allowed_to?(:view_issues, self.project) do |role, user|
145 145 if user.logged?
146 146 case role.issues_visibility
147 147 when 'all'
148 148 true
149 149 when 'default'
150 150 !self.is_private? || (self.author == user || user.is_or_belongs_to?(assigned_to))
151 151 when 'own'
152 152 self.author == user || user.is_or_belongs_to?(assigned_to)
153 153 else
154 154 false
155 155 end
156 156 else
157 157 !self.is_private?
158 158 end
159 159 end
160 160 end
161 161
162 162 # Returns true if user or current user is allowed to edit or add a note to the issue
163 163 def editable?(user=User.current)
164 164 attributes_editable?(user) || user.allowed_to?(:add_issue_notes, project)
165 165 end
166 166
167 167 # Returns true if user or current user is allowed to edit the issue
168 168 def attributes_editable?(user=User.current)
169 169 user.allowed_to?(:edit_issues, project)
170 170 end
171 171
172 172 def initialize(attributes=nil, *args)
173 173 super
174 174 if new_record?
175 175 # set default values for new records only
176 176 self.priority ||= IssuePriority.default
177 177 self.watcher_user_ids = []
178 178 end
179 179 end
180 180
181 181 def create_or_update
182 182 super
183 183 ensure
184 184 @status_was = nil
185 185 end
186 186 private :create_or_update
187 187
188 188 # AR#Persistence#destroy would raise and RecordNotFound exception
189 189 # if the issue was already deleted or updated (non matching lock_version).
190 190 # This is a problem when bulk deleting issues or deleting a project
191 191 # (because an issue may already be deleted if its parent was deleted
192 192 # first).
193 193 # The issue is reloaded by the nested_set before being deleted so
194 194 # the lock_version condition should not be an issue but we handle it.
195 195 def destroy
196 196 super
197 197 rescue ActiveRecord::StaleObjectError, ActiveRecord::RecordNotFound
198 198 # Stale or already deleted
199 199 begin
200 200 reload
201 201 rescue ActiveRecord::RecordNotFound
202 202 # The issue was actually already deleted
203 203 @destroyed = true
204 204 return freeze
205 205 end
206 206 # The issue was stale, retry to destroy
207 207 super
208 208 end
209 209
210 210 alias :base_reload :reload
211 211 def reload(*args)
212 212 @workflow_rule_by_attribute = nil
213 213 @assignable_versions = nil
214 214 @relations = nil
215 215 @spent_hours = nil
216 216 @total_spent_hours = nil
217 217 @total_estimated_hours = nil
218 218 base_reload(*args)
219 219 end
220 220
221 221 # Overrides Redmine::Acts::Customizable::InstanceMethods#available_custom_fields
222 222 def available_custom_fields
223 223 (project && tracker) ? (project.all_issue_custom_fields & tracker.custom_fields) : []
224 224 end
225 225
226 226 def visible_custom_field_values(user=nil)
227 227 user_real = user || User.current
228 228 custom_field_values.select do |value|
229 229 value.custom_field.visible_by?(project, user_real)
230 230 end
231 231 end
232 232
233 233 # Copies attributes from another issue, arg can be an id or an Issue
234 234 def copy_from(arg, options={})
235 235 issue = arg.is_a?(Issue) ? arg : Issue.visible.find(arg)
236 236 self.attributes = issue.attributes.dup.except("id", "root_id", "parent_id", "lft", "rgt", "created_on", "updated_on", "closed_on")
237 237 self.custom_field_values = issue.custom_field_values.inject({}) {|h,v| h[v.custom_field_id] = v.value; h}
238 238 self.status = issue.status
239 239 self.author = User.current
240 240 unless options[:attachments] == false
241 241 self.attachments = issue.attachments.map do |attachement|
242 242 attachement.copy(:container => self)
243 243 end
244 244 end
245 245 @copied_from = issue
246 246 @copy_options = options
247 247 self
248 248 end
249 249
250 250 # Returns an unsaved copy of the issue
251 251 def copy(attributes=nil, copy_options={})
252 252 copy = self.class.new.copy_from(self, copy_options)
253 253 copy.attributes = attributes if attributes
254 254 copy
255 255 end
256 256
257 257 # Returns true if the issue is a copy
258 258 def copy?
259 259 @copied_from.present?
260 260 end
261 261
262 262 def status_id=(status_id)
263 263 if status_id.to_s != self.status_id.to_s
264 264 self.status = (status_id.present? ? IssueStatus.find_by_id(status_id) : nil)
265 265 end
266 266 self.status_id
267 267 end
268 268
269 269 # Sets the status.
270 270 def status=(status)
271 271 if status != self.status
272 272 @workflow_rule_by_attribute = nil
273 273 end
274 274 association(:status).writer(status)
275 275 end
276 276
277 277 def priority_id=(pid)
278 278 self.priority = nil
279 279 write_attribute(:priority_id, pid)
280 280 end
281 281
282 282 def category_id=(cid)
283 283 self.category = nil
284 284 write_attribute(:category_id, cid)
285 285 end
286 286
287 287 def fixed_version_id=(vid)
288 288 self.fixed_version = nil
289 289 write_attribute(:fixed_version_id, vid)
290 290 end
291 291
292 292 def tracker_id=(tracker_id)
293 293 if tracker_id.to_s != self.tracker_id.to_s
294 294 self.tracker = (tracker_id.present? ? Tracker.find_by_id(tracker_id) : nil)
295 295 end
296 296 self.tracker_id
297 297 end
298 298
299 299 # Sets the tracker.
300 300 # This will set the status to the default status of the new tracker if:
301 301 # * the status was the default for the previous tracker
302 302 # * or if the status was not part of the new tracker statuses
303 303 # * or the status was nil
304 304 def tracker=(tracker)
305 305 tracker_was = self.tracker
306 306 association(:tracker).writer(tracker)
307 307 if tracker != tracker_was
308 308 if status == tracker_was.try(:default_status)
309 309 self.status = nil
310 310 elsif status && tracker && !tracker.issue_status_ids.include?(status.id)
311 311 self.status = nil
312 312 end
313 313 reassign_custom_field_values
314 314 @workflow_rule_by_attribute = nil
315 315 end
316 316 self.status ||= default_status
317 317 self.tracker
318 318 end
319 319
320 320 def project_id=(project_id)
321 321 if project_id.to_s != self.project_id.to_s
322 322 self.project = (project_id.present? ? Project.find_by_id(project_id) : nil)
323 323 end
324 324 self.project_id
325 325 end
326 326
327 327 # Sets the project.
328 328 # Unless keep_tracker argument is set to true, this will change the tracker
329 329 # to the first tracker of the new project if the previous tracker is not part
330 330 # of the new project trackers.
331 331 # This will:
332 332 # * clear the fixed_version is it's no longer valid for the new project.
333 333 # * clear the parent issue if it's no longer valid for the new project.
334 334 # * set the category to the category with the same name in the new
335 335 # project if it exists, or clear it if it doesn't.
336 336 # * for new issue, set the fixed_version to the project default version
337 337 # if it's a valid fixed_version.
338 338 def project=(project, keep_tracker=false)
339 339 project_was = self.project
340 340 association(:project).writer(project)
341 341 if project_was && project && project_was != project
342 342 @assignable_versions = nil
343 343
344 344 unless keep_tracker || project.trackers.include?(tracker)
345 345 self.tracker = project.trackers.first
346 346 end
347 347 # Reassign to the category with same name if any
348 348 if category
349 349 self.category = project.issue_categories.find_by_name(category.name)
350 350 end
351 351 # Keep the fixed_version if it's still valid in the new_project
352 352 if fixed_version && fixed_version.project != project && !project.shared_versions.include?(fixed_version)
353 353 self.fixed_version = nil
354 354 end
355 355 # Clear the parent task if it's no longer valid
356 356 unless valid_parent_project?
357 357 self.parent_issue_id = nil
358 358 end
359 359 reassign_custom_field_values
360 360 @workflow_rule_by_attribute = nil
361 361 end
362 362 # Set fixed_version to the project default version if it's valid
363 363 if new_record? && fixed_version.nil? && project && project.default_version_id?
364 364 if project.shared_versions.open.exists?(project.default_version_id)
365 365 self.fixed_version_id = project.default_version_id
366 366 end
367 367 end
368 368 self.project
369 369 end
370 370
371 371 def description=(arg)
372 372 if arg.is_a?(String)
373 373 arg = arg.gsub(/(\r\n|\n|\r)/, "\r\n")
374 374 end
375 375 write_attribute(:description, arg)
376 376 end
377 377
378 378 # Overrides assign_attributes so that project and tracker get assigned first
379 379 def assign_attributes_with_project_and_tracker_first(new_attributes, *args)
380 380 return if new_attributes.nil?
381 381 attrs = new_attributes.dup
382 382 attrs.stringify_keys!
383 383
384 384 %w(project project_id tracker tracker_id).each do |attr|
385 385 if attrs.has_key?(attr)
386 386 send "#{attr}=", attrs.delete(attr)
387 387 end
388 388 end
389 389 send :assign_attributes_without_project_and_tracker_first, attrs, *args
390 390 end
391 391 # Do not redefine alias chain on reload (see #4838)
392 392 alias_method_chain(:assign_attributes, :project_and_tracker_first) unless method_defined?(:assign_attributes_without_project_and_tracker_first)
393 393
394 394 def attributes=(new_attributes)
395 395 assign_attributes new_attributes
396 396 end
397 397
398 398 def estimated_hours=(h)
399 399 write_attribute :estimated_hours, (h.is_a?(String) ? h.to_hours : h)
400 400 end
401 401
402 402 safe_attributes 'project_id',
403 403 'tracker_id',
404 404 'status_id',
405 405 'category_id',
406 406 'assigned_to_id',
407 407 'priority_id',
408 408 'fixed_version_id',
409 409 'subject',
410 410 'description',
411 411 'start_date',
412 412 'due_date',
413 413 'done_ratio',
414 414 'estimated_hours',
415 415 'custom_field_values',
416 416 'custom_fields',
417 417 'lock_version',
418 418 'notes',
419 419 :if => lambda {|issue, user| issue.new_record? || user.allowed_to?(:edit_issues, issue.project) }
420 420
421 421 safe_attributes 'notes',
422 422 :if => lambda {|issue, user| user.allowed_to?(:add_issue_notes, issue.project)}
423 423
424 424 safe_attributes 'private_notes',
425 425 :if => lambda {|issue, user| !issue.new_record? && user.allowed_to?(:set_notes_private, issue.project)}
426 426
427 427 safe_attributes 'watcher_user_ids',
428 428 :if => lambda {|issue, user| issue.new_record? && user.allowed_to?(:add_issue_watchers, issue.project)}
429 429
430 430 safe_attributes 'is_private',
431 431 :if => lambda {|issue, user|
432 432 user.allowed_to?(:set_issues_private, issue.project) ||
433 433 (issue.author_id == user.id && user.allowed_to?(:set_own_issues_private, issue.project))
434 434 }
435 435
436 436 safe_attributes 'parent_issue_id',
437 437 :if => lambda {|issue, user| (issue.new_record? || user.allowed_to?(:edit_issues, issue.project)) &&
438 438 user.allowed_to?(:manage_subtasks, issue.project)}
439 439
440 440 def safe_attribute_names(user=nil)
441 441 names = super
442 442 names -= disabled_core_fields
443 443 names -= read_only_attribute_names(user)
444 444 if new_record?
445 445 # Make sure that project_id can always be set for new issues
446 446 names |= %w(project_id)
447 447 end
448 448 if dates_derived?
449 449 names -= %w(start_date due_date)
450 450 end
451 451 if priority_derived?
452 452 names -= %w(priority_id)
453 453 end
454 454 if done_ratio_derived?
455 455 names -= %w(done_ratio)
456 456 end
457 457 names
458 458 end
459 459
460 460 # Safely sets attributes
461 461 # Should be called from controllers instead of #attributes=
462 462 # attr_accessible is too rough because we still want things like
463 463 # Issue.new(:project => foo) to work
464 464 def safe_attributes=(attrs, user=User.current)
465 465 return unless attrs.is_a?(Hash)
466 466
467 467 attrs = attrs.deep_dup
468 468
469 469 # Project and Tracker must be set before since new_statuses_allowed_to depends on it.
470 470 if (p = attrs.delete('project_id')) && safe_attribute?('project_id')
471 471 if allowed_target_projects(user).where(:id => p.to_i).exists?
472 472 self.project_id = p
473 473 end
474 474
475 475 if project_id_changed? && attrs['category_id'].to_s == category_id_was.to_s
476 476 # Discard submitted category on previous project
477 477 attrs.delete('category_id')
478 478 end
479 479 end
480 480
481 481 if (t = attrs.delete('tracker_id')) && safe_attribute?('tracker_id')
482 482 self.tracker_id = t
483 483 end
484 484 if project
485 485 # Set the default tracker to accept custom field values
486 486 # even if tracker is not specified
487 487 self.tracker ||= project.trackers.first
488 488 end
489 489
490 490 statuses_allowed = new_statuses_allowed_to(user)
491 491 if (s = attrs.delete('status_id')) && safe_attribute?('status_id')
492 492 if statuses_allowed.collect(&:id).include?(s.to_i)
493 493 self.status_id = s
494 494 end
495 495 end
496 496 if new_record? && !statuses_allowed.include?(status)
497 497 self.status = statuses_allowed.first || default_status
498 498 end
499 499 if (u = attrs.delete('assigned_to_id')) && safe_attribute?('assigned_to_id')
500 500 if u.blank?
501 501 self.assigned_to_id = nil
502 502 else
503 503 u = u.to_i
504 504 if assignable_users.any?{|assignable_user| assignable_user.id == u}
505 505 self.assigned_to_id = u
506 506 end
507 507 end
508 508 end
509 509
510 510
511 511 attrs = delete_unsafe_attributes(attrs, user)
512 512 return if attrs.empty?
513 513
514 514 if attrs['parent_issue_id'].present?
515 515 s = attrs['parent_issue_id'].to_s
516 516 unless (m = s.match(%r{\A#?(\d+)\z})) && (m[1] == parent_id.to_s || Issue.visible(user).exists?(m[1]))
517 517 @invalid_parent_issue_id = attrs.delete('parent_issue_id')
518 518 end
519 519 end
520 520
521 521 if attrs['custom_field_values'].present?
522 522 editable_custom_field_ids = editable_custom_field_values(user).map {|v| v.custom_field_id.to_s}
523 523 attrs['custom_field_values'].select! {|k, v| editable_custom_field_ids.include?(k.to_s)}
524 524 end
525 525
526 526 if attrs['custom_fields'].present?
527 527 editable_custom_field_ids = editable_custom_field_values(user).map {|v| v.custom_field_id.to_s}
528 528 attrs['custom_fields'].select! {|c| editable_custom_field_ids.include?(c['id'].to_s)}
529 529 end
530 530
531 531 # mass-assignment security bypass
532 532 assign_attributes attrs, :without_protection => true
533 533 end
534 534
535 535 def disabled_core_fields
536 536 tracker ? tracker.disabled_core_fields : []
537 537 end
538 538
539 539 # Returns the custom_field_values that can be edited by the given user
540 540 def editable_custom_field_values(user=nil)
541 541 visible_custom_field_values(user).reject do |value|
542 542 read_only_attribute_names(user).include?(value.custom_field_id.to_s)
543 543 end
544 544 end
545 545
546 546 # Returns the custom fields that can be edited by the given user
547 547 def editable_custom_fields(user=nil)
548 548 editable_custom_field_values(user).map(&:custom_field).uniq
549 549 end
550 550
551 551 # Returns the names of attributes that are read-only for user or the current user
552 552 # For users with multiple roles, the read-only fields are the intersection of
553 553 # read-only fields of each role
554 554 # The result is an array of strings where sustom fields are represented with their ids
555 555 #
556 556 # Examples:
557 557 # issue.read_only_attribute_names # => ['due_date', '2']
558 558 # issue.read_only_attribute_names(user) # => []
559 559 def read_only_attribute_names(user=nil)
560 560 workflow_rule_by_attribute(user).reject {|attr, rule| rule != 'readonly'}.keys
561 561 end
562 562
563 563 # Returns the names of required attributes for user or the current user
564 564 # For users with multiple roles, the required fields are the intersection of
565 565 # required fields of each role
566 566 # The result is an array of strings where sustom fields are represented with their ids
567 567 #
568 568 # Examples:
569 569 # issue.required_attribute_names # => ['due_date', '2']
570 570 # issue.required_attribute_names(user) # => []
571 571 def required_attribute_names(user=nil)
572 572 workflow_rule_by_attribute(user).reject {|attr, rule| rule != 'required'}.keys
573 573 end
574 574
575 575 # Returns true if the attribute is required for user
576 576 def required_attribute?(name, user=nil)
577 577 required_attribute_names(user).include?(name.to_s)
578 578 end
579 579
580 580 # Returns a hash of the workflow rule by attribute for the given user
581 581 #
582 582 # Examples:
583 583 # issue.workflow_rule_by_attribute # => {'due_date' => 'required', 'start_date' => 'readonly'}
584 584 def workflow_rule_by_attribute(user=nil)
585 585 return @workflow_rule_by_attribute if @workflow_rule_by_attribute && user.nil?
586 586
587 587 user_real = user || User.current
588 588 roles = user_real.admin ? Role.all.to_a : user_real.roles_for_project(project)
589 589 roles = roles.select(&:consider_workflow?)
590 590 return {} if roles.empty?
591 591
592 592 result = {}
593 593 workflow_permissions = WorkflowPermission.where(:tracker_id => tracker_id, :old_status_id => status_id, :role_id => roles.map(&:id)).to_a
594 594 if workflow_permissions.any?
595 595 workflow_rules = workflow_permissions.inject({}) do |h, wp|
596 596 h[wp.field_name] ||= {}
597 597 h[wp.field_name][wp.role_id] = wp.rule
598 598 h
599 599 end
600 600 fields_with_roles = {}
601 601 IssueCustomField.where(:visible => false).joins(:roles).pluck(:id, "role_id").each do |field_id, role_id|
602 602 fields_with_roles[field_id] ||= []
603 603 fields_with_roles[field_id] << role_id
604 604 end
605 605 roles.each do |role|
606 606 fields_with_roles.each do |field_id, role_ids|
607 607 unless role_ids.include?(role.id)
608 608 field_name = field_id.to_s
609 609 workflow_rules[field_name] ||= {}
610 610 workflow_rules[field_name][role.id] = 'readonly'
611 611 end
612 612 end
613 613 end
614 614 workflow_rules.each do |attr, rules|
615 615 next if rules.size < roles.size
616 616 uniq_rules = rules.values.uniq
617 617 if uniq_rules.size == 1
618 618 result[attr] = uniq_rules.first
619 619 else
620 620 result[attr] = 'required'
621 621 end
622 622 end
623 623 end
624 624 @workflow_rule_by_attribute = result if user.nil?
625 625 result
626 626 end
627 627 private :workflow_rule_by_attribute
628 628
629 629 def done_ratio
630 630 if Issue.use_status_for_done_ratio? && status && status.default_done_ratio
631 631 status.default_done_ratio
632 632 else
633 633 read_attribute(:done_ratio)
634 634 end
635 635 end
636 636
637 637 def self.use_status_for_done_ratio?
638 638 Setting.issue_done_ratio == 'issue_status'
639 639 end
640 640
641 641 def self.use_field_for_done_ratio?
642 642 Setting.issue_done_ratio == 'issue_field'
643 643 end
644 644
645 645 def validate_issue
646 646 if due_date && start_date && (start_date_changed? || due_date_changed?) && due_date < start_date
647 647 errors.add :due_date, :greater_than_start_date
648 648 end
649 649
650 650 if start_date && start_date_changed? && soonest_start && start_date < soonest_start
651 651 errors.add :start_date, :earlier_than_minimum_start_date, :date => format_date(soonest_start)
652 652 end
653 653
654 654 if fixed_version
655 655 if !assignable_versions.include?(fixed_version)
656 656 errors.add :fixed_version_id, :inclusion
657 657 elsif reopening? && fixed_version.closed?
658 658 errors.add :base, I18n.t(:error_can_not_reopen_issue_on_closed_version)
659 659 end
660 660 end
661 661
662 662 # Checks that the issue can not be added/moved to a disabled tracker
663 663 if project && (tracker_id_changed? || project_id_changed?)
664 664 unless project.trackers.include?(tracker)
665 665 errors.add :tracker_id, :inclusion
666 666 end
667 667 end
668 668
669 669 # Checks parent issue assignment
670 670 if @invalid_parent_issue_id.present?
671 671 errors.add :parent_issue_id, :invalid
672 672 elsif @parent_issue
673 673 if !valid_parent_project?(@parent_issue)
674 674 errors.add :parent_issue_id, :invalid
675 675 elsif (@parent_issue != parent) && (all_dependent_issues.include?(@parent_issue) || @parent_issue.all_dependent_issues.include?(self))
676 676 errors.add :parent_issue_id, :invalid
677 677 elsif !new_record?
678 678 # moving an existing issue
679 679 if move_possible?(@parent_issue)
680 680 # move accepted
681 681 else
682 682 errors.add :parent_issue_id, :invalid
683 683 end
684 684 end
685 685 end
686 686 end
687 687
688 688 # Validates the issue against additional workflow requirements
689 689 def validate_required_fields
690 690 user = new_record? ? author : current_journal.try(:user)
691 691
692 692 required_attribute_names(user).each do |attribute|
693 693 if attribute =~ /^\d+$/
694 694 attribute = attribute.to_i
695 695 v = custom_field_values.detect {|v| v.custom_field_id == attribute }
696 696 if v && Array(v.value).detect(&:present?).nil?
697 697 errors.add :base, v.custom_field.name + ' ' + l('activerecord.errors.messages.blank')
698 698 end
699 699 else
700 700 if respond_to?(attribute) && send(attribute).blank? && !disabled_core_fields.include?(attribute)
701 701 next if attribute == 'category_id' && project.try(:issue_categories).blank?
702 702 next if attribute == 'fixed_version_id' && assignable_versions.blank?
703 703 errors.add attribute, :blank
704 704 end
705 705 end
706 706 end
707 707 end
708 708
709 709 # Overrides Redmine::Acts::Customizable::InstanceMethods#validate_custom_field_values
710 710 # so that custom values that are not editable are not validated (eg. a custom field that
711 711 # is marked as required should not trigger a validation error if the user is not allowed
712 712 # to edit this field).
713 713 def validate_custom_field_values
714 714 user = new_record? ? author : current_journal.try(:user)
715 715 if new_record? || custom_field_values_changed?
716 716 editable_custom_field_values(user).each(&:validate_value)
717 717 end
718 718 end
719 719
720 720 # Set the done_ratio using the status if that setting is set. This will keep the done_ratios
721 721 # even if the user turns off the setting later
722 722 def update_done_ratio_from_issue_status
723 723 if Issue.use_status_for_done_ratio? && status && status.default_done_ratio
724 724 self.done_ratio = status.default_done_ratio
725 725 end
726 726 end
727 727
728 728 def init_journal(user, notes = "")
729 729 @current_journal ||= Journal.new(:journalized => self, :user => user, :notes => notes)
730 730 end
731 731
732 732 # Returns the current journal or nil if it's not initialized
733 733 def current_journal
734 734 @current_journal
735 735 end
736 736
737 737 # Returns the names of attributes that are journalized when updating the issue
738 738 def journalized_attribute_names
739 739 names = Issue.column_names - %w(id root_id lft rgt lock_version created_on updated_on closed_on)
740 740 if tracker
741 741 names -= tracker.disabled_core_fields
742 742 end
743 743 names
744 744 end
745 745
746 746 # Returns the id of the last journal or nil
747 747 def last_journal_id
748 748 if new_record?
749 749 nil
750 750 else
751 751 journals.maximum(:id)
752 752 end
753 753 end
754 754
755 755 # Returns a scope for journals that have an id greater than journal_id
756 756 def journals_after(journal_id)
757 757 scope = journals.reorder("#{Journal.table_name}.id ASC")
758 758 if journal_id.present?
759 759 scope = scope.where("#{Journal.table_name}.id > ?", journal_id.to_i)
760 760 end
761 761 scope
762 762 end
763 763
764 764 # Returns the initial status of the issue
765 765 # Returns nil for a new issue
766 766 def status_was
767 767 if status_id_changed?
768 768 if status_id_was.to_i > 0
769 769 @status_was ||= IssueStatus.find_by_id(status_id_was)
770 770 end
771 771 else
772 772 @status_was ||= status
773 773 end
774 774 end
775 775
776 776 # Return true if the issue is closed, otherwise false
777 777 def closed?
778 778 status.present? && status.is_closed?
779 779 end
780 780
781 781 # Returns true if the issue was closed when loaded
782 782 def was_closed?
783 783 status_was.present? && status_was.is_closed?
784 784 end
785 785
786 786 # Return true if the issue is being reopened
787 787 def reopening?
788 788 if new_record?
789 789 false
790 790 else
791 791 status_id_changed? && !closed? && was_closed?
792 792 end
793 793 end
794 794 alias :reopened? :reopening?
795 795
796 796 # Return true if the issue is being closed
797 797 def closing?
798 798 if new_record?
799 799 closed?
800 800 else
801 801 status_id_changed? && closed? && !was_closed?
802 802 end
803 803 end
804 804
805 805 # Returns true if the issue is overdue
806 806 def overdue?
807 807 due_date.present? && (due_date < Date.today) && !closed?
808 808 end
809 809
810 810 # Is the amount of work done less than it should for the due date
811 811 def behind_schedule?
812 812 return false if start_date.nil? || due_date.nil?
813 813 done_date = start_date + ((due_date - start_date + 1) * done_ratio / 100).floor
814 814 return done_date <= Date.today
815 815 end
816 816
817 817 # Does this issue have children?
818 818 def children?
819 819 !leaf?
820 820 end
821 821
822 822 # Users the issue can be assigned to
823 823 def assignable_users
824 824 users = project.assignable_users.to_a
825 825 users << author if author && author.active?
826 826 users << assigned_to if assigned_to
827 827 users.uniq.sort
828 828 end
829 829
830 830 # Versions that the issue can be assigned to
831 831 def assignable_versions
832 832 return @assignable_versions if @assignable_versions
833 833
834 834 versions = project.shared_versions.open.to_a
835 835 if fixed_version
836 836 if fixed_version_id_changed?
837 837 # nothing to do
838 838 elsif project_id_changed?
839 839 if project.shared_versions.include?(fixed_version)
840 840 versions << fixed_version
841 841 end
842 842 else
843 843 versions << fixed_version
844 844 end
845 845 end
846 846 @assignable_versions = versions.uniq.sort
847 847 end
848 848
849 849 # Returns true if this issue is blocked by another issue that is still open
850 850 def blocked?
851 851 !relations_to.detect {|ir| ir.relation_type == 'blocks' && !ir.issue_from.closed?}.nil?
852 852 end
853 853
854 854 # Returns the default status of the issue based on its tracker
855 855 # Returns nil if tracker is nil
856 856 def default_status
857 857 tracker.try(:default_status)
858 858 end
859 859
860 860 # Returns an array of statuses that user is able to apply
861 861 def new_statuses_allowed_to(user=User.current, include_default=false)
862 862 if new_record? && @copied_from
863 863 [default_status, @copied_from.status].compact.uniq.sort
864 864 else
865 865 initial_status = nil
866 866 if new_record?
867 867 # nop
868 868 elsif tracker_id_changed?
869 869 if Tracker.where(:id => tracker_id_was, :default_status_id => status_id_was).any?
870 870 initial_status = default_status
871 871 elsif tracker.issue_status_ids.include?(status_id_was)
872 872 initial_status = IssueStatus.find_by_id(status_id_was)
873 873 else
874 874 initial_status = default_status
875 875 end
876 876 else
877 877 initial_status = status_was
878 878 end
879 879
880 880 initial_assigned_to_id = assigned_to_id_changed? ? assigned_to_id_was : assigned_to_id
881 881 assignee_transitions_allowed = initial_assigned_to_id.present? &&
882 882 (user.id == initial_assigned_to_id || user.group_ids.include?(initial_assigned_to_id))
883 883
884 884 statuses = []
885 885 statuses += IssueStatus.new_statuses_allowed(
886 886 initial_status,
887 887 user.admin ? Role.all.to_a : user.roles_for_project(project),
888 888 tracker,
889 889 author == user,
890 890 assignee_transitions_allowed
891 891 )
892 892 statuses << initial_status unless statuses.empty?
893 893 statuses << default_status if include_default || (new_record? && statuses.empty?)
894 894 statuses = statuses.compact.uniq.sort
895 895 if blocked?
896 896 statuses.reject!(&:is_closed?)
897 897 end
898 898 statuses
899 899 end
900 900 end
901 901
902 902 # Returns the previous assignee (user or group) if changed
903 903 def assigned_to_was
904 904 # assigned_to_id_was is reset before after_save callbacks
905 905 user_id = @previous_assigned_to_id || assigned_to_id_was
906 906 if user_id && user_id != assigned_to_id
907 907 @assigned_to_was ||= Principal.find_by_id(user_id)
908 908 end
909 909 end
910 910
911 911 # Returns the original tracker
912 912 def tracker_was
913 913 Tracker.find_by_id(tracker_id_was)
914 914 end
915 915
916 916 # Returns the users that should be notified
917 917 def notified_users
918 918 notified = []
919 919 # Author and assignee are always notified unless they have been
920 920 # locked or don't want to be notified
921 921 notified << author if author
922 922 if assigned_to
923 923 notified += (assigned_to.is_a?(Group) ? assigned_to.users : [assigned_to])
924 924 end
925 925 if assigned_to_was
926 926 notified += (assigned_to_was.is_a?(Group) ? assigned_to_was.users : [assigned_to_was])
927 927 end
928 928 notified = notified.select {|u| u.active? && u.notify_about?(self)}
929 929
930 930 notified += project.notified_users
931 931 notified.uniq!
932 932 # Remove users that can not view the issue
933 933 notified.reject! {|user| !visible?(user)}
934 934 notified
935 935 end
936 936
937 937 # Returns the email addresses that should be notified
938 938 def recipients
939 939 notified_users.collect(&:mail)
940 940 end
941 941
942 942 def each_notification(users, &block)
943 943 if users.any?
944 944 if custom_field_values.detect {|value| !value.custom_field.visible?}
945 945 users_by_custom_field_visibility = users.group_by do |user|
946 946 visible_custom_field_values(user).map(&:custom_field_id).sort
947 947 end
948 948 users_by_custom_field_visibility.values.each do |users|
949 949 yield(users)
950 950 end
951 951 else
952 952 yield(users)
953 953 end
954 954 end
955 955 end
956 956
957 957 def notify?
958 958 @notify != false
959 959 end
960 960
961 961 def notify=(arg)
962 962 @notify = arg
963 963 end
964 964
965 965 # Returns the number of hours spent on this issue
966 966 def spent_hours
967 967 @spent_hours ||= time_entries.sum(:hours) || 0
968 968 end
969 969
970 970 # Returns the total number of hours spent on this issue and its descendants
971 971 def total_spent_hours
972 972 @total_spent_hours ||= if leaf?
973 973 spent_hours
974 974 else
975 975 self_and_descendants.joins(:time_entries).sum("#{TimeEntry.table_name}.hours").to_f || 0.0
976 976 end
977 977 end
978 978
979 979 def total_estimated_hours
980 980 if leaf?
981 981 estimated_hours
982 982 else
983 983 @total_estimated_hours ||= self_and_descendants.sum(:estimated_hours)
984 984 end
985 985 end
986 986
987 987 def relations
988 988 @relations ||= IssueRelation::Relations.new(self, (relations_from + relations_to).sort)
989 989 end
990 990
991 991 # Preloads relations for a collection of issues
992 992 def self.load_relations(issues)
993 993 if issues.any?
994 994 relations = IssueRelation.where("issue_from_id IN (:ids) OR issue_to_id IN (:ids)", :ids => issues.map(&:id)).all
995 995 issues.each do |issue|
996 996 issue.instance_variable_set "@relations", relations.select {|r| r.issue_from_id == issue.id || r.issue_to_id == issue.id}
997 997 end
998 998 end
999 999 end
1000 1000
1001 1001 # Preloads visible spent time for a collection of issues
1002 1002 def self.load_visible_spent_hours(issues, user=User.current)
1003 1003 if issues.any?
1004 1004 hours_by_issue_id = TimeEntry.visible(user).where(:issue_id => issues.map(&:id)).group(:issue_id).sum(:hours)
1005 1005 issues.each do |issue|
1006 1006 issue.instance_variable_set "@spent_hours", (hours_by_issue_id[issue.id] || 0)
1007 1007 end
1008 1008 end
1009 1009 end
1010 1010
1011 1011 # Preloads visible total spent time for a collection of issues
1012 1012 def self.load_visible_total_spent_hours(issues, user=User.current)
1013 1013 if issues.any?
1014 1014 hours_by_issue_id = TimeEntry.visible(user).joins(:issue).
1015 1015 joins("JOIN #{Issue.table_name} parent ON parent.root_id = #{Issue.table_name}.root_id" +
1016 1016 " AND parent.lft <= #{Issue.table_name}.lft AND parent.rgt >= #{Issue.table_name}.rgt").
1017 1017 where("parent.id IN (?)", issues.map(&:id)).group("parent.id").sum(:hours)
1018 1018 issues.each do |issue|
1019 1019 issue.instance_variable_set "@total_spent_hours", (hours_by_issue_id[issue.id] || 0)
1020 1020 end
1021 1021 end
1022 1022 end
1023 1023
1024 1024 # Preloads visible relations for a collection of issues
1025 1025 def self.load_visible_relations(issues, user=User.current)
1026 1026 if issues.any?
1027 1027 issue_ids = issues.map(&:id)
1028 1028 # Relations with issue_from in given issues and visible issue_to
1029 1029 relations_from = IssueRelation.joins(:issue_to => :project).
1030 1030 where(visible_condition(user)).where(:issue_from_id => issue_ids).to_a
1031 1031 # Relations with issue_to in given issues and visible issue_from
1032 1032 relations_to = IssueRelation.joins(:issue_from => :project).
1033 1033 where(visible_condition(user)).
1034 1034 where(:issue_to_id => issue_ids).to_a
1035 1035 issues.each do |issue|
1036 1036 relations =
1037 1037 relations_from.select {|relation| relation.issue_from_id == issue.id} +
1038 1038 relations_to.select {|relation| relation.issue_to_id == issue.id}
1039 1039
1040 1040 issue.instance_variable_set "@relations", IssueRelation::Relations.new(issue, relations.sort)
1041 1041 end
1042 1042 end
1043 1043 end
1044 1044
1045 # Returns a scope of the given issues and their descendants
1046 def self.self_and_descendants(issues)
1047 Issue.joins("JOIN #{Issue.table_name} ancestors" +
1048 " ON ancestors.root_id = #{Issue.table_name}.root_id" +
1049 " AND ancestors.lft <= #{Issue.table_name}.lft AND ancestors.rgt >= #{Issue.table_name}.rgt"
1050 ).
1051 where(:ancestors => {:id => issues.map(&:id)})
1052 end
1053
1045 1054 # Finds an issue relation given its id.
1046 1055 def find_relation(relation_id)
1047 1056 IssueRelation.where("issue_to_id = ? OR issue_from_id = ?", id, id).find(relation_id)
1048 1057 end
1049 1058
1050 1059 # Returns all the other issues that depend on the issue
1051 1060 # The algorithm is a modified breadth first search (bfs)
1052 1061 def all_dependent_issues(except=[])
1053 1062 # The found dependencies
1054 1063 dependencies = []
1055 1064
1056 1065 # The visited flag for every node (issue) used by the breadth first search
1057 1066 eNOT_DISCOVERED = 0 # The issue is "new" to the algorithm, it has not seen it before.
1058 1067
1059 1068 ePROCESS_ALL = 1 # The issue is added to the queue. Process both children and relations of
1060 1069 # the issue when it is processed.
1061 1070
1062 1071 ePROCESS_RELATIONS_ONLY = 2 # The issue was added to the queue and will be output as dependent issue,
1063 1072 # but its children will not be added to the queue when it is processed.
1064 1073
1065 1074 eRELATIONS_PROCESSED = 3 # The related issues, the parent issue and the issue itself have been added to
1066 1075 # the queue, but its children have not been added.
1067 1076
1068 1077 ePROCESS_CHILDREN_ONLY = 4 # The relations and the parent of the issue have been added to the queue, but
1069 1078 # the children still need to be processed.
1070 1079
1071 1080 eALL_PROCESSED = 5 # The issue and all its children, its parent and its related issues have been
1072 1081 # added as dependent issues. It needs no further processing.
1073 1082
1074 1083 issue_status = Hash.new(eNOT_DISCOVERED)
1075 1084
1076 1085 # The queue
1077 1086 queue = []
1078 1087
1079 1088 # Initialize the bfs, add start node (self) to the queue
1080 1089 queue << self
1081 1090 issue_status[self] = ePROCESS_ALL
1082 1091
1083 1092 while (!queue.empty?) do
1084 1093 current_issue = queue.shift
1085 1094 current_issue_status = issue_status[current_issue]
1086 1095 dependencies << current_issue
1087 1096
1088 1097 # Add parent to queue, if not already in it.
1089 1098 parent = current_issue.parent
1090 1099 parent_status = issue_status[parent]
1091 1100
1092 1101 if parent && (parent_status == eNOT_DISCOVERED) && !except.include?(parent)
1093 1102 queue << parent
1094 1103 issue_status[parent] = ePROCESS_RELATIONS_ONLY
1095 1104 end
1096 1105
1097 1106 # Add children to queue, but only if they are not already in it and
1098 1107 # the children of the current node need to be processed.
1099 1108 if (current_issue_status == ePROCESS_CHILDREN_ONLY || current_issue_status == ePROCESS_ALL)
1100 1109 current_issue.children.each do |child|
1101 1110 next if except.include?(child)
1102 1111
1103 1112 if (issue_status[child] == eNOT_DISCOVERED)
1104 1113 queue << child
1105 1114 issue_status[child] = ePROCESS_ALL
1106 1115 elsif (issue_status[child] == eRELATIONS_PROCESSED)
1107 1116 queue << child
1108 1117 issue_status[child] = ePROCESS_CHILDREN_ONLY
1109 1118 elsif (issue_status[child] == ePROCESS_RELATIONS_ONLY)
1110 1119 queue << child
1111 1120 issue_status[child] = ePROCESS_ALL
1112 1121 end
1113 1122 end
1114 1123 end
1115 1124
1116 1125 # Add related issues to the queue, if they are not already in it.
1117 1126 current_issue.relations_from.map(&:issue_to).each do |related_issue|
1118 1127 next if except.include?(related_issue)
1119 1128
1120 1129 if (issue_status[related_issue] == eNOT_DISCOVERED)
1121 1130 queue << related_issue
1122 1131 issue_status[related_issue] = ePROCESS_ALL
1123 1132 elsif (issue_status[related_issue] == eRELATIONS_PROCESSED)
1124 1133 queue << related_issue
1125 1134 issue_status[related_issue] = ePROCESS_CHILDREN_ONLY
1126 1135 elsif (issue_status[related_issue] == ePROCESS_RELATIONS_ONLY)
1127 1136 queue << related_issue
1128 1137 issue_status[related_issue] = ePROCESS_ALL
1129 1138 end
1130 1139 end
1131 1140
1132 1141 # Set new status for current issue
1133 1142 if (current_issue_status == ePROCESS_ALL) || (current_issue_status == ePROCESS_CHILDREN_ONLY)
1134 1143 issue_status[current_issue] = eALL_PROCESSED
1135 1144 elsif (current_issue_status == ePROCESS_RELATIONS_ONLY)
1136 1145 issue_status[current_issue] = eRELATIONS_PROCESSED
1137 1146 end
1138 1147 end # while
1139 1148
1140 1149 # Remove the issues from the "except" parameter from the result array
1141 1150 dependencies -= except
1142 1151 dependencies.delete(self)
1143 1152
1144 1153 dependencies
1145 1154 end
1146 1155
1147 1156 # Returns an array of issues that duplicate this one
1148 1157 def duplicates
1149 1158 relations_to.select {|r| r.relation_type == IssueRelation::TYPE_DUPLICATES}.collect {|r| r.issue_from}
1150 1159 end
1151 1160
1152 1161 # Returns the due date or the target due date if any
1153 1162 # Used on gantt chart
1154 1163 def due_before
1155 1164 due_date || (fixed_version ? fixed_version.effective_date : nil)
1156 1165 end
1157 1166
1158 1167 # Returns the time scheduled for this issue.
1159 1168 #
1160 1169 # Example:
1161 1170 # Start Date: 2/26/09, End Date: 3/04/09
1162 1171 # duration => 6
1163 1172 def duration
1164 1173 (start_date && due_date) ? due_date - start_date : 0
1165 1174 end
1166 1175
1167 1176 # Returns the duration in working days
1168 1177 def working_duration
1169 1178 (start_date && due_date) ? working_days(start_date, due_date) : 0
1170 1179 end
1171 1180
1172 1181 def soonest_start(reload=false)
1173 1182 if @soonest_start.nil? || reload
1174 1183 dates = relations_to(reload).collect{|relation| relation.successor_soonest_start}
1175 1184 p = @parent_issue || parent
1176 1185 if p && Setting.parent_issue_dates == 'derived'
1177 1186 dates << p.soonest_start
1178 1187 end
1179 1188 @soonest_start = dates.compact.max
1180 1189 end
1181 1190 @soonest_start
1182 1191 end
1183 1192
1184 1193 # Sets start_date on the given date or the next working day
1185 1194 # and changes due_date to keep the same working duration.
1186 1195 def reschedule_on(date)
1187 1196 wd = working_duration
1188 1197 date = next_working_date(date)
1189 1198 self.start_date = date
1190 1199 self.due_date = add_working_days(date, wd)
1191 1200 end
1192 1201
1193 1202 # Reschedules the issue on the given date or the next working day and saves the record.
1194 1203 # If the issue is a parent task, this is done by rescheduling its subtasks.
1195 1204 def reschedule_on!(date)
1196 1205 return if date.nil?
1197 1206 if leaf? || !dates_derived?
1198 1207 if start_date.nil? || start_date != date
1199 1208 if start_date && start_date > date
1200 1209 # Issue can not be moved earlier than its soonest start date
1201 1210 date = [soonest_start(true), date].compact.max
1202 1211 end
1203 1212 reschedule_on(date)
1204 1213 begin
1205 1214 save
1206 1215 rescue ActiveRecord::StaleObjectError
1207 1216 reload
1208 1217 reschedule_on(date)
1209 1218 save
1210 1219 end
1211 1220 end
1212 1221 else
1213 1222 leaves.each do |leaf|
1214 1223 if leaf.start_date
1215 1224 # Only move subtask if it starts at the same date as the parent
1216 1225 # or if it starts before the given date
1217 1226 if start_date == leaf.start_date || date > leaf.start_date
1218 1227 leaf.reschedule_on!(date)
1219 1228 end
1220 1229 else
1221 1230 leaf.reschedule_on!(date)
1222 1231 end
1223 1232 end
1224 1233 end
1225 1234 end
1226 1235
1227 1236 def dates_derived?
1228 1237 !leaf? && Setting.parent_issue_dates == 'derived'
1229 1238 end
1230 1239
1231 1240 def priority_derived?
1232 1241 !leaf? && Setting.parent_issue_priority == 'derived'
1233 1242 end
1234 1243
1235 1244 def done_ratio_derived?
1236 1245 !leaf? && Setting.parent_issue_done_ratio == 'derived'
1237 1246 end
1238 1247
1239 1248 def <=>(issue)
1240 1249 if issue.nil?
1241 1250 -1
1242 1251 elsif root_id != issue.root_id
1243 1252 (root_id || 0) <=> (issue.root_id || 0)
1244 1253 else
1245 1254 (lft || 0) <=> (issue.lft || 0)
1246 1255 end
1247 1256 end
1248 1257
1249 1258 def to_s
1250 1259 "#{tracker} ##{id}: #{subject}"
1251 1260 end
1252 1261
1253 1262 # Returns a string of css classes that apply to the issue
1254 1263 def css_classes(user=User.current)
1255 1264 s = "issue tracker-#{tracker_id} status-#{status_id} #{priority.try(:css_classes)}"
1256 1265 s << ' closed' if closed?
1257 1266 s << ' overdue' if overdue?
1258 1267 s << ' child' if child?
1259 1268 s << ' parent' unless leaf?
1260 1269 s << ' private' if is_private?
1261 1270 if user.logged?
1262 1271 s << ' created-by-me' if author_id == user.id
1263 1272 s << ' assigned-to-me' if assigned_to_id == user.id
1264 1273 s << ' assigned-to-my-group' if user.groups.any? {|g| g.id == assigned_to_id}
1265 1274 end
1266 1275 s
1267 1276 end
1268 1277
1269 1278 # Unassigns issues from +version+ if it's no longer shared with issue's project
1270 1279 def self.update_versions_from_sharing_change(version)
1271 1280 # Update issues assigned to the version
1272 1281 update_versions(["#{Issue.table_name}.fixed_version_id = ?", version.id])
1273 1282 end
1274 1283
1275 1284 # Unassigns issues from versions that are no longer shared
1276 1285 # after +project+ was moved
1277 1286 def self.update_versions_from_hierarchy_change(project)
1278 1287 moved_project_ids = project.self_and_descendants.reload.collect(&:id)
1279 1288 # Update issues of the moved projects and issues assigned to a version of a moved project
1280 1289 Issue.update_versions(
1281 1290 ["#{Version.table_name}.project_id IN (?) OR #{Issue.table_name}.project_id IN (?)",
1282 1291 moved_project_ids, moved_project_ids]
1283 1292 )
1284 1293 end
1285 1294
1286 1295 def parent_issue_id=(arg)
1287 1296 s = arg.to_s.strip.presence
1288 1297 if s && (m = s.match(%r{\A#?(\d+)\z})) && (@parent_issue = Issue.find_by_id(m[1]))
1289 1298 @invalid_parent_issue_id = nil
1290 1299 elsif s.blank?
1291 1300 @parent_issue = nil
1292 1301 @invalid_parent_issue_id = nil
1293 1302 else
1294 1303 @parent_issue = nil
1295 1304 @invalid_parent_issue_id = arg
1296 1305 end
1297 1306 end
1298 1307
1299 1308 def parent_issue_id
1300 1309 if @invalid_parent_issue_id
1301 1310 @invalid_parent_issue_id
1302 1311 elsif instance_variable_defined? :@parent_issue
1303 1312 @parent_issue.nil? ? nil : @parent_issue.id
1304 1313 else
1305 1314 parent_id
1306 1315 end
1307 1316 end
1308 1317
1309 1318 def set_parent_id
1310 1319 self.parent_id = parent_issue_id
1311 1320 end
1312 1321
1313 1322 # Returns true if issue's project is a valid
1314 1323 # parent issue project
1315 1324 def valid_parent_project?(issue=parent)
1316 1325 return true if issue.nil? || issue.project_id == project_id
1317 1326
1318 1327 case Setting.cross_project_subtasks
1319 1328 when 'system'
1320 1329 true
1321 1330 when 'tree'
1322 1331 issue.project.root == project.root
1323 1332 when 'hierarchy'
1324 1333 issue.project.is_or_is_ancestor_of?(project) || issue.project.is_descendant_of?(project)
1325 1334 when 'descendants'
1326 1335 issue.project.is_or_is_ancestor_of?(project)
1327 1336 else
1328 1337 false
1329 1338 end
1330 1339 end
1331 1340
1332 1341 # Returns an issue scope based on project and scope
1333 1342 def self.cross_project_scope(project, scope=nil)
1334 1343 if project.nil?
1335 1344 return Issue
1336 1345 end
1337 1346 case scope
1338 1347 when 'all', 'system'
1339 1348 Issue
1340 1349 when 'tree'
1341 1350 Issue.joins(:project).where("(#{Project.table_name}.lft >= :lft AND #{Project.table_name}.rgt <= :rgt)",
1342 1351 :lft => project.root.lft, :rgt => project.root.rgt)
1343 1352 when 'hierarchy'
1344 1353 Issue.joins(:project).where("(#{Project.table_name}.lft >= :lft AND #{Project.table_name}.rgt <= :rgt) OR (#{Project.table_name}.lft < :lft AND #{Project.table_name}.rgt > :rgt)",
1345 1354 :lft => project.lft, :rgt => project.rgt)
1346 1355 when 'descendants'
1347 1356 Issue.joins(:project).where("(#{Project.table_name}.lft >= :lft AND #{Project.table_name}.rgt <= :rgt)",
1348 1357 :lft => project.lft, :rgt => project.rgt)
1349 1358 else
1350 1359 Issue.where(:project_id => project.id)
1351 1360 end
1352 1361 end
1353 1362
1354 1363 def self.by_tracker(project)
1355 1364 count_and_group_by(:project => project, :association => :tracker)
1356 1365 end
1357 1366
1358 1367 def self.by_version(project)
1359 1368 count_and_group_by(:project => project, :association => :fixed_version)
1360 1369 end
1361 1370
1362 1371 def self.by_priority(project)
1363 1372 count_and_group_by(:project => project, :association => :priority)
1364 1373 end
1365 1374
1366 1375 def self.by_category(project)
1367 1376 count_and_group_by(:project => project, :association => :category)
1368 1377 end
1369 1378
1370 1379 def self.by_assigned_to(project)
1371 1380 count_and_group_by(:project => project, :association => :assigned_to)
1372 1381 end
1373 1382
1374 1383 def self.by_author(project)
1375 1384 count_and_group_by(:project => project, :association => :author)
1376 1385 end
1377 1386
1378 1387 def self.by_subproject(project)
1379 1388 r = count_and_group_by(:project => project, :with_subprojects => true, :association => :project)
1380 1389 r.reject {|r| r["project_id"] == project.id.to_s}
1381 1390 end
1382 1391
1383 1392 # Query generator for selecting groups of issue counts for a project
1384 1393 # based on specific criteria
1385 1394 #
1386 1395 # Options
1387 1396 # * project - Project to search in.
1388 1397 # * with_subprojects - Includes subprojects issues if set to true.
1389 1398 # * association - Symbol. Association for grouping.
1390 1399 def self.count_and_group_by(options)
1391 1400 assoc = reflect_on_association(options[:association])
1392 1401 select_field = assoc.foreign_key
1393 1402
1394 1403 Issue.
1395 1404 visible(User.current, :project => options[:project], :with_subprojects => options[:with_subprojects]).
1396 1405 joins(:status, assoc.name).
1397 1406 group(:status_id, :is_closed, select_field).
1398 1407 count.
1399 1408 map do |columns, total|
1400 1409 status_id, is_closed, field_value = columns
1401 1410 is_closed = ['t', 'true', '1'].include?(is_closed.to_s)
1402 1411 {
1403 1412 "status_id" => status_id.to_s,
1404 1413 "closed" => is_closed,
1405 1414 select_field => field_value.to_s,
1406 1415 "total" => total.to_s
1407 1416 }
1408 1417 end
1409 1418 end
1410 1419
1411 1420 # Returns a scope of projects that user can assign the issue to
1412 1421 def allowed_target_projects(user=User.current)
1413 1422 current_project = new_record? ? nil : project
1414 1423 self.class.allowed_target_projects(user, current_project)
1415 1424 end
1416 1425
1417 1426 # Returns a scope of projects that user can assign issues to
1418 1427 # If current_project is given, it will be included in the scope
1419 1428 def self.allowed_target_projects(user=User.current, current_project=nil)
1420 1429 condition = Project.allowed_to_condition(user, :add_issues)
1421 1430 if current_project
1422 1431 condition = ["(#{condition}) OR #{Project.table_name}.id = ?", current_project.id]
1423 1432 end
1424 1433 Project.where(condition).having_trackers
1425 1434 end
1426 1435
1427 1436 private
1428 1437
1429 1438 def after_project_change
1430 1439 # Update project_id on related time entries
1431 1440 TimeEntry.where({:issue_id => id}).update_all(["project_id = ?", project_id])
1432 1441
1433 1442 # Delete issue relations
1434 1443 unless Setting.cross_project_issue_relations?
1435 1444 relations_from.clear
1436 1445 relations_to.clear
1437 1446 end
1438 1447
1439 1448 # Move subtasks that were in the same project
1440 1449 children.each do |child|
1441 1450 next unless child.project_id == project_id_was
1442 1451 # Change project and keep project
1443 1452 child.send :project=, project, true
1444 1453 unless child.save
1445 1454 raise ActiveRecord::Rollback
1446 1455 end
1447 1456 end
1448 1457 end
1449 1458
1450 1459 # Callback for after the creation of an issue by copy
1451 1460 # * adds a "copied to" relation with the copied issue
1452 1461 # * copies subtasks from the copied issue
1453 1462 def after_create_from_copy
1454 1463 return unless copy? && !@after_create_from_copy_handled
1455 1464
1456 1465 if (@copied_from.project_id == project_id || Setting.cross_project_issue_relations?) && @copy_options[:link] != false
1457 1466 if @current_journal
1458 1467 @copied_from.init_journal(@current_journal.user)
1459 1468 end
1460 1469 relation = IssueRelation.new(:issue_from => @copied_from, :issue_to => self, :relation_type => IssueRelation::TYPE_COPIED_TO)
1461 1470 unless relation.save
1462 1471 logger.error "Could not create relation while copying ##{@copied_from.id} to ##{id} due to validation errors: #{relation.errors.full_messages.join(', ')}" if logger
1463 1472 end
1464 1473 end
1465 1474
1466 1475 unless @copied_from.leaf? || @copy_options[:subtasks] == false
1467 1476 copy_options = (@copy_options || {}).merge(:subtasks => false)
1468 1477 copied_issue_ids = {@copied_from.id => self.id}
1469 1478 @copied_from.reload.descendants.reorder("#{Issue.table_name}.lft").each do |child|
1470 1479 # Do not copy self when copying an issue as a descendant of the copied issue
1471 1480 next if child == self
1472 1481 # Do not copy subtasks of issues that were not copied
1473 1482 next unless copied_issue_ids[child.parent_id]
1474 1483 # Do not copy subtasks that are not visible to avoid potential disclosure of private data
1475 1484 unless child.visible?
1476 1485 logger.error "Subtask ##{child.id} was not copied during ##{@copied_from.id} copy because it is not visible to the current user" if logger
1477 1486 next
1478 1487 end
1479 1488 copy = Issue.new.copy_from(child, copy_options)
1480 1489 if @current_journal
1481 1490 copy.init_journal(@current_journal.user)
1482 1491 end
1483 1492 copy.author = author
1484 1493 copy.project = project
1485 1494 copy.parent_issue_id = copied_issue_ids[child.parent_id]
1486 1495 unless copy.save
1487 1496 logger.error "Could not copy subtask ##{child.id} while copying ##{@copied_from.id} to ##{id} due to validation errors: #{copy.errors.full_messages.join(', ')}" if logger
1488 1497 next
1489 1498 end
1490 1499 copied_issue_ids[child.id] = copy.id
1491 1500 end
1492 1501 end
1493 1502 @after_create_from_copy_handled = true
1494 1503 end
1495 1504
1496 1505 def update_nested_set_attributes
1497 1506 if parent_id_changed?
1498 1507 update_nested_set_attributes_on_parent_change
1499 1508 end
1500 1509 remove_instance_variable(:@parent_issue) if instance_variable_defined?(:@parent_issue)
1501 1510 end
1502 1511
1503 1512 # Updates the nested set for when an existing issue is moved
1504 1513 def update_nested_set_attributes_on_parent_change
1505 1514 former_parent_id = parent_id_was
1506 1515 # delete invalid relations of all descendants
1507 1516 self_and_descendants.each do |issue|
1508 1517 issue.relations.each do |relation|
1509 1518 relation.destroy unless relation.valid?
1510 1519 end
1511 1520 end
1512 1521 # update former parent
1513 1522 recalculate_attributes_for(former_parent_id) if former_parent_id
1514 1523 end
1515 1524
1516 1525 def update_parent_attributes
1517 1526 if parent_id
1518 1527 recalculate_attributes_for(parent_id)
1519 1528 association(:parent).reset
1520 1529 end
1521 1530 end
1522 1531
1523 1532 def recalculate_attributes_for(issue_id)
1524 1533 if issue_id && p = Issue.find_by_id(issue_id)
1525 1534 if p.priority_derived?
1526 1535 # priority = highest priority of children
1527 1536 if priority_position = p.children.joins(:priority).maximum("#{IssuePriority.table_name}.position")
1528 1537 p.priority = IssuePriority.find_by_position(priority_position)
1529 1538 end
1530 1539 end
1531 1540
1532 1541 if p.dates_derived?
1533 1542 # start/due dates = lowest/highest dates of children
1534 1543 p.start_date = p.children.minimum(:start_date)
1535 1544 p.due_date = p.children.maximum(:due_date)
1536 1545 if p.start_date && p.due_date && p.due_date < p.start_date
1537 1546 p.start_date, p.due_date = p.due_date, p.start_date
1538 1547 end
1539 1548 end
1540 1549
1541 1550 if p.done_ratio_derived?
1542 1551 # done ratio = weighted average ratio of leaves
1543 1552 unless Issue.use_status_for_done_ratio? && p.status && p.status.default_done_ratio
1544 1553 child_count = p.children.count
1545 1554 if child_count > 0
1546 1555 average = p.children.where("estimated_hours > 0").average(:estimated_hours).to_f
1547 1556 if average == 0
1548 1557 average = 1
1549 1558 end
1550 1559 done = p.children.joins(:status).
1551 1560 sum("COALESCE(CASE WHEN estimated_hours > 0 THEN estimated_hours ELSE NULL END, #{average}) " +
1552 1561 "* (CASE WHEN is_closed = #{self.class.connection.quoted_true} THEN 100 ELSE COALESCE(done_ratio, 0) END)").to_f
1553 1562 progress = done / (average * child_count)
1554 1563 p.done_ratio = progress.round
1555 1564 end
1556 1565 end
1557 1566 end
1558 1567
1559 1568 # ancestors will be recursively updated
1560 1569 p.save(:validate => false)
1561 1570 end
1562 1571 end
1563 1572
1564 1573 # Update issues so their versions are not pointing to a
1565 1574 # fixed_version that is not shared with the issue's project
1566 1575 def self.update_versions(conditions=nil)
1567 1576 # Only need to update issues with a fixed_version from
1568 1577 # a different project and that is not systemwide shared
1569 1578 Issue.joins(:project, :fixed_version).
1570 1579 where("#{Issue.table_name}.fixed_version_id IS NOT NULL" +
1571 1580 " AND #{Issue.table_name}.project_id <> #{Version.table_name}.project_id" +
1572 1581 " AND #{Version.table_name}.sharing <> 'system'").
1573 1582 where(conditions).each do |issue|
1574 1583 next if issue.project.nil? || issue.fixed_version.nil?
1575 1584 unless issue.project.shared_versions.include?(issue.fixed_version)
1576 1585 issue.init_journal(User.current)
1577 1586 issue.fixed_version = nil
1578 1587 issue.save
1579 1588 end
1580 1589 end
1581 1590 end
1582 1591
1583 1592 # Callback on file attachment
1584 1593 def attachment_added(attachment)
1585 1594 if current_journal && !attachment.new_record?
1586 1595 current_journal.journalize_attachment(attachment, :added)
1587 1596 end
1588 1597 end
1589 1598
1590 1599 # Callback on attachment deletion
1591 1600 def attachment_removed(attachment)
1592 1601 if current_journal && !attachment.new_record?
1593 1602 current_journal.journalize_attachment(attachment, :removed)
1594 1603 current_journal.save
1595 1604 end
1596 1605 end
1597 1606
1598 1607 # Called after a relation is added
1599 1608 def relation_added(relation)
1600 1609 if current_journal
1601 1610 current_journal.journalize_relation(relation, :added)
1602 1611 current_journal.save
1603 1612 end
1604 1613 end
1605 1614
1606 1615 # Called after a relation is removed
1607 1616 def relation_removed(relation)
1608 1617 if current_journal
1609 1618 current_journal.journalize_relation(relation, :removed)
1610 1619 current_journal.save
1611 1620 end
1612 1621 end
1613 1622
1614 1623 # Default assignment based on category
1615 1624 def default_assign
1616 1625 if assigned_to.nil? && category && category.assigned_to
1617 1626 self.assigned_to = category.assigned_to
1618 1627 end
1619 1628 end
1620 1629
1621 1630 # Updates start/due dates of following issues
1622 1631 def reschedule_following_issues
1623 1632 if start_date_changed? || due_date_changed?
1624 1633 relations_from.each do |relation|
1625 1634 relation.set_issue_to_dates
1626 1635 end
1627 1636 end
1628 1637 end
1629 1638
1630 1639 # Closes duplicates if the issue is being closed
1631 1640 def close_duplicates
1632 1641 if closing?
1633 1642 duplicates.each do |duplicate|
1634 1643 # Reload is needed in case the duplicate was updated by a previous duplicate
1635 1644 duplicate.reload
1636 1645 # Don't re-close it if it's already closed
1637 1646 next if duplicate.closed?
1638 1647 # Same user and notes
1639 1648 if @current_journal
1640 1649 duplicate.init_journal(@current_journal.user, @current_journal.notes)
1641 1650 duplicate.private_notes = @current_journal.private_notes
1642 1651 end
1643 1652 duplicate.update_attribute :status, self.status
1644 1653 end
1645 1654 end
1646 1655 end
1647 1656
1648 1657 # Make sure updated_on is updated when adding a note and set updated_on now
1649 1658 # so we can set closed_on with the same value on closing
1650 1659 def force_updated_on_change
1651 1660 if @current_journal || changed?
1652 1661 self.updated_on = current_time_from_proper_timezone
1653 1662 if new_record?
1654 1663 self.created_on = updated_on
1655 1664 end
1656 1665 end
1657 1666 end
1658 1667
1659 1668 # Callback for setting closed_on when the issue is closed.
1660 1669 # The closed_on attribute stores the time of the last closing
1661 1670 # and is preserved when the issue is reopened.
1662 1671 def update_closed_on
1663 1672 if closing?
1664 1673 self.closed_on = updated_on
1665 1674 end
1666 1675 end
1667 1676
1668 1677 # Saves the changes in a Journal
1669 1678 # Called after_save
1670 1679 def create_journal
1671 1680 if current_journal
1672 1681 current_journal.save
1673 1682 end
1674 1683 end
1675 1684
1676 1685 def send_notification
1677 1686 if notify? && Setting.notified_events.include?('issue_added')
1678 1687 Mailer.deliver_issue_add(self)
1679 1688 end
1680 1689 end
1681 1690
1682 1691 # Stores the previous assignee so we can still have access
1683 1692 # to it during after_save callbacks (assigned_to_id_was is reset)
1684 1693 def set_assigned_to_was
1685 1694 @previous_assigned_to_id = assigned_to_id_was
1686 1695 end
1687 1696
1688 1697 # Clears the previous assignee at the end of after_save callbacks
1689 1698 def clear_assigned_to_was
1690 1699 @assigned_to_was = nil
1691 1700 @previous_assigned_to_id = nil
1692 1701 end
1693 1702
1694 1703 def clear_disabled_fields
1695 1704 if tracker
1696 1705 tracker.disabled_core_fields.each do |attribute|
1697 1706 send "#{attribute}=", nil
1698 1707 end
1699 1708 self.done_ratio ||= 0
1700 1709 end
1701 1710 end
1702 1711 end
@@ -1,15 +1,17
1 1 <h2><%= l(:label_confirmation) %></h2>
2 2
3 3 <%= form_tag({}, :method => :delete) do %>
4 4 <%= @issues.collect {|i| hidden_field_tag('ids[]', i.id, :id => nil)}.join("\n").html_safe %>
5 5 <div class="box">
6 6 <p><strong><%= l(:text_destroy_time_entries_question, :hours => number_with_precision(@hours, :precision => 2)) %></strong></p>
7 7 <p>
8 8 <label><%= radio_button_tag 'todo', 'destroy', true %> <%= l(:text_destroy_time_entries) %></label><br />
9 9 <label><%= radio_button_tag 'todo', 'nullify', false %> <%= l(:text_assign_time_entries_to_project) %></label><br />
10 <% if @project %>
10 11 <label><%= radio_button_tag 'todo', 'reassign', false, :onchange => 'if (this.checked) { $("#reassign_to_id").focus(); }' %> <%= l(:text_reassign_time_entries) %></label>
11 12 <%= text_field_tag 'reassign_to_id', params[:reassign_to_id], :size => 6, :onfocus => '$("#todo_reassign").attr("checked", true);' %>
13 <% end %>
12 14 </p>
13 15 </div>
14 16 <%= submit_tag l(:button_apply) %>
15 17 <% end %>
@@ -1,1184 +1,1186
1 1 ar:
2 2 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
3 3 direction: rtl
4 4 date:
5 5 formats:
6 6 # Use the strftime parameters for formats.
7 7 # When no format has been given, it uses default.
8 8 # You can provide other formats here if you like!
9 9 default: "%m/%d/%Y"
10 10 short: "%b %d"
11 11 long: "%B %d, %Y"
12 12
13 13 day_names: [الاحد, الاثنين, الثلاثاء, الاربعاء, الخميس, الجمعة, السبت]
14 14 abbr_day_names: [أح, اث, ث, ار, خ, ج, س]
15 15
16 16 # Don't forget the nil at the beginning; there's no such thing as a 0th month
17 17 month_names: [~, كانون الثاني, شباط, آذار, نيسان, أيار, حزيران, تموز, آب, أيلول, تشرين الأول, تشرين الثاني, كانون الأول]
18 18 abbr_month_names: [~, كانون الثاني, شباط, آذار, نيسان, أيار, حزيران, تموز, آب, أيلول, تشرين الأول, تشرين الثاني, كانون الأول]
19 19 # Used in date_select and datime_select.
20 20 order:
21 21 - :السنة
22 22 - :الشهر
23 23 - :اليوم
24 24
25 25 time:
26 26 formats:
27 27 default: "%m/%d/%Y %I:%M %p"
28 28 time: "%I:%M %p"
29 29 short: "%d %b %H:%M"
30 30 long: "%B %d, %Y %H:%M"
31 31 am: "صباحا"
32 32 pm: "مساءاً"
33 33
34 34 datetime:
35 35 distance_in_words:
36 36 half_a_minute: "نصف دقيقة"
37 37 less_than_x_seconds:
38 38 one: "أقل من ثانية"
39 39 other: "ثواني %{count}أقل من "
40 40 x_seconds:
41 41 one: "ثانية"
42 42 other: "%{count}ثواني "
43 43 less_than_x_minutes:
44 44 one: "أقل من دقيقة"
45 45 other: "دقائق%{count}أقل من "
46 46 x_minutes:
47 47 one: "دقيقة"
48 48 other: "%{count} دقائق"
49 49 about_x_hours:
50 50 one: "حوالي ساعة"
51 51 other: "ساعات %{count}حوالي "
52 52 x_hours:
53 53 one: "%{count} ساعة"
54 54 other: "%{count} ساعات"
55 55 x_days:
56 56 one: "يوم"
57 57 other: "%{count} أيام"
58 58 about_x_months:
59 59 one: "حوالي شهر"
60 60 other: "أشهر %{count} حوالي"
61 61 x_months:
62 62 one: "شهر"
63 63 other: "%{count} أشهر"
64 64 about_x_years:
65 65 one: "حوالي سنة"
66 66 other: "سنوات %{count}حوالي "
67 67 over_x_years:
68 68 one: "اكثر من سنة"
69 69 other: "سنوات %{count}أكثر من "
70 70 almost_x_years:
71 71 one: "تقريبا سنة"
72 72 other: "سنوات %{count} نقريبا"
73 73 number:
74 74 format:
75 75 separator: "."
76 76 delimiter: ""
77 77 precision: 3
78 78
79 79 human:
80 80 format:
81 81 delimiter: ""
82 82 precision: 3
83 83 storage_units:
84 84 format: "%n %u"
85 85 units:
86 86 byte:
87 87 one: "Byte"
88 88 other: "Bytes"
89 89 kb: "KB"
90 90 mb: "MB"
91 91 gb: "GB"
92 92 tb: "TB"
93 93
94 94 # Used in array.to_sentence.
95 95 support:
96 96 array:
97 97 sentence_connector: "و"
98 98 skip_last_comma: خطأ
99 99
100 100 activerecord:
101 101 errors:
102 102 template:
103 103 header:
104 104 one: " %{model} خطأ يمنع تخزين"
105 105 other: " %{model} يمنع تخزين%{count}خطأ رقم "
106 106 messages:
107 107 inclusion: "غير مدرجة على القائمة"
108 108 exclusion: "محجوز"
109 109 invalid: "غير صالح"
110 110 confirmation: "غير متطابق"
111 111 accepted: "مقبولة"
112 112 empty: "لا يمكن ان تكون فارغة"
113 113 blank: "لا يمكن ان تكون فارغة"
114 114 too_long: " %{count} طويلة جدا، الحد الاقصى هو "
115 115 too_short: " %{count} قصيرة جدا، الحد الادنى هو "
116 116 wrong_length: " %{count} خطأ في الطول، يجب ان يكون "
117 117 taken: "لقد اتخذت سابقا"
118 118 not_a_number: "ليس رقما"
119 119 not_a_date: "ليس تاريخا صالحا"
120 120 greater_than: "%{count}يجب ان تكون اكثر من "
121 121 greater_than_or_equal_to: "%{count} يجب ان تكون اكثر من او تساوي"
122 122 equal_to: "%{count}يجب ان تساوي"
123 123 less_than: " %{count}يجب ان تكون اقل من"
124 124 less_than_or_equal_to: " %{count} يجب ان تكون اقل من او تساوي"
125 125 odd: "must be odd"
126 126 even: "must be even"
127 127 greater_than_start_date: "يجب ان تكون اكثر من تاريخ البداية"
128 128 not_same_project: "لا ينتمي الى نفس المشروع"
129 129 circular_dependency: "هذه العلاقة سوف تخلق علاقة تبعية دائرية"
130 130 cant_link_an_issue_with_a_descendant: "لا يمكن ان تكون المشكلة مرتبطة بواحدة من المهام الفرعية"
131 131 earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues"
132 132
133 133 actionview_instancetag_blank_option: الرجاء التحديد
134 134
135 135 general_text_No: 'لا'
136 136 general_text_Yes: 'نعم'
137 137 general_text_no: 'لا'
138 138 general_text_yes: 'نعم'
139 139 general_lang_name: 'Arabic (عربي)'
140 140 general_csv_separator: ','
141 141 general_csv_decimal_separator: '.'
142 142 general_csv_encoding: ISO-8859-1
143 143 general_pdf_fontname: DejaVuSans
144 144 general_pdf_monospaced_fontname: DejaVuSansMono
145 145 general_first_day_of_week: '7'
146 146
147 147 notice_account_updated: لقد تم تجديد الحساب بنجاح.
148 148 notice_account_invalid_creditentials: اسم المستخدم او كلمة المرور غير صحيحة
149 149 notice_account_password_updated: لقد تم تجديد كلمة المرور بنجاح.
150 150 notice_account_wrong_password: كلمة المرور غير صحيحة
151 151 notice_account_register_done: لقد تم انشاء حسابك بنجاح، الرجاء تأكيد الطلب من البريد الالكتروني
152 152 notice_account_unknown_email: مستخدم غير معروف.
153 153 notice_can_t_change_password: هذا الحساب يستخدم جهاز خارجي غير مصرح به لا يمكن تغير كلمة المرور
154 154 notice_account_lost_email_sent: لقد تم ارسال رسالة على بريدك بالتعليمات اللازمة لتغير كلمة المرور
155 155 notice_account_activated: لقد تم تفعيل حسابك، يمكنك الدخول الان
156 156 notice_successful_create: لقد تم الانشاء بنجاح
157 157 notice_successful_update: لقد تم التحديث بنجاح
158 158 notice_successful_delete: لقد تم الحذف بنجاح
159 159 notice_successful_connection: لقد تم الربط بنجاح
160 160 notice_file_not_found: الصفحة التي تحاول الدخول اليها غير موجوده او تم حذفها
161 161 notice_locking_conflict: تم تحديث البيانات عن طريق مستخدم آخر.
162 162 notice_not_authorized: غير مصرح لك الدخول الى هذه المنطقة.
163 163 notice_not_authorized_archived_project: المشروع الذي تحاول الدخول اليه تم ارشفته
164 164 notice_email_sent: "%{value}تم ارسال رسالة الى "
165 165 notice_email_error: " (%{value})لقد حدث خطأ ما اثناء ارسال الرسالة الى "
166 166 notice_feeds_access_key_reseted: كلمة الدخول Atomلقد تم تعديل .
167 167 notice_api_access_key_reseted: كلمة الدخولAPIلقد تم تعديل .
168 168 notice_failed_to_save_issues: "فشل في حفظ الملف"
169 169 notice_failed_to_save_members: "فشل في حفظ الاعضاء: %{errors}."
170 170 notice_no_issue_selected: "لم يتم تحديد شيء، الرجاء تحديد المسألة التي تريد"
171 171 notice_account_pending: "لقد تم انشاء حسابك، الرجاء الانتظار حتى تتم الموافقة"
172 172 notice_default_data_loaded: تم تحميل التكوين الافتراضي بنجاح
173 173 notice_unable_delete_version: غير قادر على مسح النسخة.
174 174 notice_unable_delete_time_entry: غير قادر على مسح وقت الدخول.
175 175 notice_issue_done_ratios_updated: لقد تم تحديث النسب.
176 176 notice_gantt_chart_truncated: " (%{max})لقد تم اقتطاع الرسم البياني لانه تجاوز الاحد الاقصى لعدد العناصر المسموح عرضها "
177 177 notice_issue_successful_create: "%{id}لقد تم انشاء "
178 178
179 179
180 180 error_can_t_load_default_data: "لم يتم تحميل التكوين الافتراضي كاملا %{value}"
181 181 error_scm_not_found: "لم يتم العثور على ادخال في المستودع"
182 182 error_scm_command_failed: "حدث خطأ عند محاولة الوصول الى المستودع: %{value}"
183 183 error_scm_annotate: "الادخال غير موجود."
184 184 error_scm_annotate_big_text_file: "لا يمكن حفظ الادخال لانه تجاوز الحد الاقصى لحجم الملف."
185 185 error_issue_not_found_in_project: 'لم يتم العثور على المخرج او انه ينتمي الى مشروع اخر'
186 186 error_no_tracker_in_project: 'لا يوجد انواع بنود عمل لهذا المشروع، الرجاء التحقق من إعدادات المشروع. '
187 187 error_no_default_issue_status: 'لم يتم التعرف على اي وضع افتراضي، الرجاء التحقق من التكوين الخاص بك (اذهب الى إدارة-إصدار الحالات)'
188 188 error_can_not_delete_custom_field: غير قادر على حذف الحقل المظلل
189 189 error_can_not_delete_tracker: "هذا النوع من بنود العمل يحتوي على بنود نشطة ولا يمكن حذفه"
190 190 error_can_not_remove_role: "هذا الدور قيد الاستخدام، لا يمكن حذفه"
191 191 error_can_not_reopen_issue_on_closed_version: 'لا يمكن إعادة فتح بند عمل معين لاصدار مقفل'
192 192 error_can_not_archive_project: لا يمكن ارشفة هذا المشروع
193 193 error_issue_done_ratios_not_updated: "لم يتم تحديث النسب"
194 194 error_workflow_copy_source: 'الرجاء اختيار نوع بند العمل او الادوار'
195 195 error_workflow_copy_target: 'الرجاء اختيار نوع بند العمل المستهدف او الادوار المستهدفة'
196 196 error_unable_delete_issue_status: 'غير قادر على حذف حالة بند العمل'
197 197 error_unable_to_connect: "تعذر الاتصال(%{value})"
198 198 error_attachment_too_big: " (%{max_size})لا يمكن تحميل هذا الملف، لقد تجاوز الحد الاقصى المسموح به "
199 199 warning_attachments_not_saved: "%{count}تعذر حفظ الملف"
200 200
201 201 mail_subject_lost_password: " %{value}كلمة المرور الخاصة بك "
202 202 mail_body_lost_password: 'لتغير كلمة المرور، انقر على الروابط التالية:'
203 203 mail_subject_register: " %{value}تفعيل حسابك "
204 204 mail_body_register: 'لتفعيل حسابك، انقر على الروابط التالية:'
205 205 mail_body_account_information_external: " %{value}اصبح بامكانك استخدام حسابك للدخول"
206 206 mail_body_account_information: معلومات حسابك
207 207 mail_subject_account_activation_request: "%{value}طلب تفعيل الحساب "
208 208 mail_body_account_activation_request: " (%{value})تم تسجيل حساب جديد، بانتظار الموافقة:"
209 209 mail_subject_reminder: "%{count}تم تأجيل المهام التالية "
210 210 mail_body_reminder: "%{count}يجب ان تقوم بتسليم المهام التالية:"
211 211 mail_subject_wiki_content_added: "'%{id}' تم اضافة صفحة ويكي"
212 212 mail_body_wiki_content_added: "The '%{id}' تم اضافة صفحة ويكي من قبل %{author}."
213 213 mail_subject_wiki_content_updated: "'%{id}' تم تحديث صفحة ويكي"
214 214 mail_body_wiki_content_updated: "The '%{id}'تم تحديث صفحة ويكي من قبل %{author}."
215 215
216 216
217 217 field_name: الاسم
218 218 field_description: الوصف
219 219 field_summary: الملخص
220 220 field_is_required: مطلوب
221 221 field_firstname: الاسم الاول
222 222 field_lastname: الاسم الاخير
223 223 field_mail: البريد الالكتروني
224 224 field_filename: اسم الملف
225 225 field_filesize: حجم الملف
226 226 field_downloads: التنزيل
227 227 field_author: المؤلف
228 228 field_created_on: تم الانشاء في
229 229 field_updated_on: تم التحديث
230 230 field_field_format: تنسيق الحقل
231 231 field_is_for_all: لكل المشروعات
232 232 field_possible_values: قيم محتملة
233 233 field_regexp: التعبير العادي
234 234 field_min_length: الحد الادنى للطول
235 235 field_max_length: الحد الاعلى للطول
236 236 field_value: القيمة
237 237 field_category: الفئة
238 238 field_title: العنوان
239 239 field_project: المشروع
240 240 field_issue: بند العمل
241 241 field_status: الحالة
242 242 field_notes: ملاحظات
243 243 field_is_closed: بند العمل مغلق
244 244 field_is_default: القيمة الافتراضية
245 245 field_tracker: نوع بند العمل
246 246 field_subject: الموضوع
247 247 field_due_date: تاريخ النهاية
248 248 field_assigned_to: المحال اليه
249 249 field_priority: الأولوية
250 250 field_fixed_version: الاصدار المستهدف
251 251 field_user: المستخدم
252 252 field_principal: الرئيسي
253 253 field_role: دور
254 254 field_homepage: الصفحة الرئيسية
255 255 field_is_public: عام
256 256 field_parent: مشروع فرعي من
257 257 field_is_in_roadmap: معروض في خارطة الطريق
258 258 field_login: تسجيل الدخول
259 259 field_mail_notification: ملاحظات على البريد الالكتروني
260 260 field_admin: المدير
261 261 field_last_login_on: اخر اتصال
262 262 field_language: لغة
263 263 field_effective_date: تاريخ
264 264 field_password: كلمة المرور
265 265 field_new_password: كلمة المرور الجديدة
266 266 field_password_confirmation: تأكيد
267 267 field_version: إصدار
268 268 field_type: نوع
269 269 field_host: المضيف
270 270 field_port: المنفذ
271 271 field_account: الحساب
272 272 field_base_dn: DN قاعدة
273 273 field_attr_login: سمة الدخول
274 274 field_attr_firstname: سمة الاسم الاول
275 275 field_attr_lastname: سمة الاسم الاخير
276 276 field_attr_mail: سمة البريد الالكتروني
277 277 field_onthefly: إنشاء حساب مستخدم على تحرك
278 278 field_start_date: تاريخ البداية
279 279 field_done_ratio: "نسبة الانجاز"
280 280 field_auth_source: وضع المصادقة
281 281 field_hide_mail: إخفاء بريدي الإلكتروني
282 282 field_comments: تعليق
283 283 field_url: رابط
284 284 field_start_page: صفحة البداية
285 285 field_subproject: المشروع الفرعي
286 286 field_hours: ساعات
287 287 field_activity: النشاط
288 288 field_spent_on: تاريخ
289 289 field_identifier: المعرف
290 290 field_is_filter: استخدم كتصفية
291 291 field_issue_to: بنود العمل المتصلة
292 292 field_delay: تأخير
293 293 field_assignable: يمكن اسناد بنود العمل الى هذا الدور
294 294 field_redirect_existing_links: إعادة توجيه الروابط الموجودة
295 295 field_estimated_hours: الوقت المتوقع
296 296 field_column_names: أعمدة
297 297 field_time_entries: وقت الدخول
298 298 field_time_zone: المنطقة الزمنية
299 299 field_searchable: يمكن البحث فيه
300 300 field_default_value: القيمة الافتراضية
301 301 field_comments_sorting: اعرض التعليقات
302 302 field_parent_title: صفحة الوالدين
303 303 field_editable: يمكن اعادة تحريره
304 304 field_watcher: مراقب
305 305 field_identity_url: افتح الرابط الخاص بالهوية الشخصية
306 306 field_content: المحتويات
307 307 field_group_by: تصنيف النتائج بواسطة
308 308 field_sharing: مشاركة
309 309 field_parent_issue: بند العمل الأصلي
310 310 field_member_of_group: "مجموعة المحال"
311 311 field_assigned_to_role: "دور المحال"
312 312 field_text: حقل نصي
313 313 field_visible: غير مرئي
314 314 field_warn_on_leaving_unsaved: "الرجاء التحذير عند مغادرة صفحة والنص غير محفوظ"
315 315 field_issues_visibility: بنود العمل المرئية
316 316 field_is_private: خاص
317 317 field_commit_logs_encoding: رسائل الترميز
318 318 field_scm_path_encoding: ترميز المسار
319 319 field_path_to_repository: مسار المستودع
320 320 field_root_directory: دليل الجذر
321 321 field_cvsroot: CVSجذر
322 322 field_cvs_module: وحدة
323 323
324 324 setting_app_title: عنوان التطبيق
325 325 setting_app_subtitle: العنوان الفرعي للتطبيق
326 326 setting_welcome_text: نص الترحيب
327 327 setting_default_language: اللغة الافتراضية
328 328 setting_login_required: مطلوب المصادقة
329 329 setting_self_registration: التسجيل الذاتي
330 330 setting_attachment_max_size: الحد الاقصى للملفات المرفقة
331 331 setting_issues_export_limit: الحد الاقصى لتصدير بنود العمل لملفات خارجية
332 332 setting_mail_from: انبعاثات عنوان بريدك
333 333 setting_bcc_recipients: مستلمين النسخ المخفية (bcc)
334 334 setting_plain_text_mail: نص عادي (no HTML)
335 335 setting_host_name: اسم ومسار المستخدم
336 336 setting_text_formatting: تنسيق النص
337 337 setting_wiki_compression: ضغط تاريخ الويكي
338 338 setting_feeds_limit: Atom feeds الحد الاقصى لعدد البنود في
339 339 setting_default_projects_public: المشاريع الجديده متاحة للجميع افتراضيا
340 340 setting_autofetch_changesets: الإحضار التلقائي
341 341 setting_sys_api_enabled: من ادارة المستودع WS تمكين
342 342 setting_commit_ref_keywords: مرجعية الكلمات المفتاحية
343 343 setting_commit_fix_keywords: تصحيح الكلمات المفتاحية
344 344 setting_autologin: الدخول التلقائي
345 345 setting_date_format: تنسيق التاريخ
346 346 setting_time_format: تنسيق الوقت
347 347 setting_cross_project_issue_relations: السماح بإدراج بنود العمل في هذا المشروع
348 348 setting_issue_list_default_columns: الاعمدة الافتراضية المعروضة في قائمة بند العمل
349 349 setting_repositories_encodings: ترميز المرفقات والمستودعات
350 350 setting_emails_header: رأس رسائل البريد الإلكتروني
351 351 setting_emails_footer: ذيل رسائل البريد الإلكتروني
352 352 setting_protocol: بروتوكول
353 353 setting_per_page_options: الكائنات لكل خيارات الصفحة
354 354 setting_user_format: تنسيق عرض المستخدم
355 355 setting_activity_days_default: الايام المعروضة على نشاط المشروع
356 356 setting_display_subprojects_issues: عرض بنود العمل للمشارع الرئيسية بشكل افتراضي
357 357 setting_enabled_scm: SCM تمكين
358 358 setting_mail_handler_body_delimiters: "اقتطاع رسائل البريد الإلكتروني بعد هذه الخطوط"
359 359 setting_mail_handler_api_enabled: للرسائل الواردةWS تمكين
360 360 setting_mail_handler_api_key: API مفتاح
361 361 setting_sequential_project_identifiers: انشاء معرفات المشروع المتسلسلة
362 362 setting_gravatar_enabled: كأيقونة مستخدمGravatar استخدام
363 363 setting_gravatar_default: الافتراضيةGravatar صورة
364 364 setting_diff_max_lines_displayed: الحد الاقصى لعدد الخطوط
365 365 setting_file_max_size_displayed: الحد الأقصى لحجم النص المعروض على الملفات المرفقة
366 366 setting_repository_log_display_limit: الحد الاقصى لعدد التنقيحات المعروضة على ملف السجل
367 367 setting_openid: السماح بدخول اسم المستخدم المفتوح والتسجيل
368 368 setting_password_min_length: الحد الادني لطول كلمة المرور
369 369 setting_new_project_user_role_id: الدور المسند الى المستخدم غير المسؤول الذي يقوم بإنشاء المشروع
370 370 setting_default_projects_modules: تمكين الوحدات النمطية للمشاريع الجديدة بشكل افتراضي
371 371 setting_issue_done_ratio: حساب نسبة بند العمل المنتهية
372 372 setting_issue_done_ratio_issue_field: استخدم حقل بند العمل
373 373 setting_issue_done_ratio_issue_status: استخدم وضع بند العمل
374 374 setting_start_of_week: بدأ التقويم
375 375 setting_rest_api_enabled: تمكين باقي خدمات الويب
376 376 setting_cache_formatted_text: النص المسبق تنسيقه في ذاكرة التخزين المؤقت
377 377 setting_default_notification_option: خيار الاعلام الافتراضي
378 378 setting_commit_logtime_enabled: تميكن وقت الدخول
379 379 setting_commit_logtime_activity_id: النشاط في وقت الدخول
380 380 setting_gantt_items_limit: الحد الاقصى لعدد العناصر المعروضة على مخطط جانت
381 381 setting_issue_group_assignment: السماح للإحالة الى المجموعات
382 382 setting_default_issue_start_date_to_creation_date: استخدام التاريخ الحالي كتاريخ بدأ لبنود العمل الجديدة
383 383
384 384 permission_add_project: إنشاء مشروع
385 385 permission_add_subprojects: إنشاء مشاريع فرعية
386 386 permission_edit_project: تعديل مشروع
387 387 permission_select_project_modules: تحديد شكل المشروع
388 388 permission_manage_members: إدارة الاعضاء
389 389 permission_manage_project_activities: ادارة اصدارات المشروع
390 390 permission_manage_versions: ادارة الاصدارات
391 391 permission_manage_categories: ادارة انواع بنود العمل
392 392 permission_view_issues: عرض بنود العمل
393 393 permission_add_issues: اضافة بنود العمل
394 394 permission_edit_issues: تعديل بنود العمل
395 395 permission_manage_issue_relations: ادارة علاقات بنود العمل
396 396 permission_set_issues_private: تعين بنود العمل عامة او خاصة
397 397 permission_set_own_issues_private: تعين بنود العمل الخاصة بك كبنود عمل عامة او خاصة
398 398 permission_add_issue_notes: اضافة ملاحظات
399 399 permission_edit_issue_notes: تعديل ملاحظات
400 400 permission_edit_own_issue_notes: تعديل ملاحظاتك
401 401 permission_move_issues: تحريك بنود العمل
402 402 permission_delete_issues: حذف بنود العمل
403 403 permission_manage_public_queries: ادارة الاستعلامات العامة
404 404 permission_save_queries: حفظ الاستعلامات
405 405 permission_view_gantt: عرض طريقة"جانت"
406 406 permission_view_calendar: عرض التقويم
407 407 permission_view_issue_watchers: عرض قائمة المراقبين
408 408 permission_add_issue_watchers: اضافة مراقبين
409 409 permission_delete_issue_watchers: حذف مراقبين
410 410 permission_log_time: الوقت المستغرق بالدخول
411 411 permission_view_time_entries: عرض الوقت المستغرق
412 412 permission_edit_time_entries: تعديل الدخولات الزمنية
413 413 permission_edit_own_time_entries: تعديل الدخولات الشخصية
414 414 permission_manage_news: ادارة الاخبار
415 415 permission_comment_news: اخبار التعليقات
416 416 permission_view_documents: عرض المستندات
417 417 permission_manage_files: ادارة الملفات
418 418 permission_view_files: عرض الملفات
419 419 permission_manage_wiki: ادارة ويكي
420 420 permission_rename_wiki_pages: اعادة تسمية صفحات ويكي
421 421 permission_delete_wiki_pages: حذق صفحات ويكي
422 422 permission_view_wiki_pages: عرض ويكي
423 423 permission_view_wiki_edits: عرض تاريخ ويكي
424 424 permission_edit_wiki_pages: تعديل صفحات ويكي
425 425 permission_delete_wiki_pages_attachments: حذف المرفقات
426 426 permission_protect_wiki_pages: حماية صفحات ويكي
427 427 permission_manage_repository: ادارة المستودعات
428 428 permission_browse_repository: استعراض المستودعات
429 429 permission_view_changesets: عرض طاقم التغيير
430 430 permission_commit_access: الوصول
431 431 permission_manage_boards: ادارة المنتديات
432 432 permission_view_messages: عرض الرسائل
433 433 permission_add_messages: نشر الرسائل
434 434 permission_edit_messages: تحرير الرسائل
435 435 permission_edit_own_messages: تحرير الرسائل الخاصة
436 436 permission_delete_messages: حذف الرسائل
437 437 permission_delete_own_messages: حذف الرسائل الخاصة
438 438 permission_export_wiki_pages: تصدير صفحات ويكي
439 439 permission_manage_subtasks: ادارة المهام الفرعية
440 440
441 441 project_module_issue_tracking: تعقب بنود العمل
442 442 project_module_time_tracking: التعقب الزمني
443 443 project_module_news: الاخبار
444 444 project_module_documents: المستندات
445 445 project_module_files: الملفات
446 446 project_module_wiki: ويكي
447 447 project_module_repository: المستودع
448 448 project_module_boards: المنتديات
449 449 project_module_calendar: التقويم
450 450 project_module_gantt: جانت
451 451
452 452 label_user: المستخدم
453 453 label_user_plural: المستخدمين
454 454 label_user_new: مستخدم جديد
455 455 label_user_anonymous: مجهول الهوية
456 456 label_project: مشروع
457 457 label_project_new: مشروع جديد
458 458 label_project_plural: مشاريع
459 459 label_x_projects:
460 460 zero: لا يوجد مشاريع
461 461 one: مشروع واحد
462 462 other: "%{count} مشاريع"
463 463 label_project_all: كل المشاريع
464 464 label_project_latest: احدث المشاريع
465 465 label_issue: بند عمل
466 466 label_issue_new: بند عمل جديد
467 467 label_issue_plural: بنود عمل
468 468 label_issue_view_all: عرض كل بنود العمل
469 469 label_issues_by: " %{value}بند العمل لصحابها"
470 470 label_issue_added: تم اضافة بند العمل
471 471 label_issue_updated: تم تحديث بند العمل
472 472 label_issue_note_added: تم اضافة الملاحظة
473 473 label_issue_status_updated: تم تحديث الحالة
474 474 label_issue_priority_updated: تم تحديث الاولويات
475 475 label_document: مستند
476 476 label_document_new: مستند جديد
477 477 label_document_plural: مستندات
478 478 label_document_added: تم اضافة مستند
479 479 label_role: دور
480 480 label_role_plural: ادوار
481 481 label_role_new: دور جديد
482 482 label_role_and_permissions: الأدوار والصلاحيات
483 483 label_role_anonymous: مجهول الهوية
484 484 label_role_non_member: ليس عضو
485 485 label_member: عضو
486 486 label_member_new: عضو جديد
487 487 label_member_plural: اعضاء
488 488 label_tracker: نوع بند عمل
489 489 label_tracker_plural: أنواع بنود العمل
490 490 label_tracker_new: نوع بند عمل جديد
491 491 label_workflow: سير العمل
492 492 label_issue_status: حالة بند العمل
493 493 label_issue_status_plural: حالات بند العمل
494 494 label_issue_status_new: حالة جديدة
495 495 label_issue_category: فئة بند العمل
496 496 label_issue_category_plural: فئات بنود العمل
497 497 label_issue_category_new: فئة جديدة
498 498 label_custom_field: تخصيص حقل
499 499 label_custom_field_plural: تخصيص حقول
500 500 label_custom_field_new: حقل مخصص جديد
501 501 label_enumerations: التعدادات
502 502 label_enumeration_new: قيمة جديدة
503 503 label_information: معلومة
504 504 label_information_plural: معلومات
505 505 label_please_login: برجى تسجيل الدخول
506 506 label_register: تسجيل
507 507 label_login_with_open_id_option: او الدخول بهوية مفتوحة
508 508 label_password_lost: فقدت كلمة السر
509 509 label_home: "الصفحة الرئيسية"
510 510 label_my_page: الصفحة الخاصة بي
511 511 label_my_account: حسابي
512 512 label_my_projects: مشاريعي الخاصة
513 513 label_my_page_block: حجب صفحتي الخاصة
514 514 label_administration: إدارة النظام
515 515 label_login: تسجيل الدخول
516 516 label_logout: تسجيل الخروج
517 517 label_help: مساعدة
518 518 label_reported_issues: بنود العمل التي أدخلتها
519 519 label_assigned_to_me_issues: بنود العمل المسندة إلي
520 520 label_last_login: آخر اتصال
521 521 label_registered_on: مسجل على
522 522 label_activity: النشاط
523 523 label_overall_activity: النشاط العام
524 524 label_user_activity: "قيمة النشاط"
525 525 label_new: جديدة
526 526 label_logged_as: تم تسجيل دخولك
527 527 label_environment: البيئة
528 528 label_authentication: المصادقة
529 529 label_auth_source: وضع المصادقة
530 530 label_auth_source_new: وضع مصادقة جديدة
531 531 label_auth_source_plural: أوضاع المصادقة
532 532 label_subproject_plural: مشاريع فرعية
533 533 label_subproject_new: مشروع فرعي جديد
534 534 label_and_its_subprojects: "قيمة المشاريع الفرعية الخاصة بك"
535 535 label_min_max_length: الحد الاقصى والادنى للطول
536 536 label_list: قائمة
537 537 label_date: تاريخ
538 538 label_integer: عدد صحيح
539 539 label_float: عدد كسري
540 540 label_boolean: "نعم/لا"
541 541 label_string: نص
542 542 label_text: نص طويل
543 543 label_attribute: سمة
544 544 label_attribute_plural: السمات
545 545 label_no_data: لا توجد بيانات للعرض
546 546 label_change_status: تغيير الحالة
547 547 label_history: التاريخ
548 548 label_attachment: الملف
549 549 label_attachment_new: ملف جديد
550 550 label_attachment_delete: حذف الملف
551 551 label_attachment_plural: الملفات
552 552 label_file_added: الملف المضاف
553 553 label_report: تقرير
554 554 label_report_plural: التقارير
555 555 label_news: الأخبار
556 556 label_news_new: إضافة الأخبار
557 557 label_news_plural: الأخبار
558 558 label_news_latest: آخر الأخبار
559 559 label_news_view_all: عرض كل الأخبار
560 560 label_news_added: الأخبار المضافة
561 561 label_news_comment_added: إضافة التعليقات على أخبار
562 562 label_settings: إعدادات
563 563 label_overview: لمحة عامة
564 564 label_version: الإصدار
565 565 label_version_new: الإصدار الجديد
566 566 label_version_plural: الإصدارات
567 567 label_close_versions: أكملت إغلاق الإصدارات
568 568 label_confirmation: تأكيد
569 569 label_export_to: 'متوفرة أيضا في:'
570 570 label_read: القراءة...
571 571 label_public_projects: المشاريع العامة
572 572 label_open_issues: مفتوح
573 573 label_open_issues_plural: بنود عمل مفتوحة
574 574 label_closed_issues: مغلق
575 575 label_closed_issues_plural: بنود عمل مغلقة
576 576 label_x_open_issues_abbr:
577 577 zero: 0 مفتوح
578 578 one: 1 مقتوح
579 579 other: "%{count} مفتوح"
580 580 label_x_closed_issues_abbr:
581 581 zero: 0 مغلق
582 582 one: 1 مغلق
583 583 other: "%{count} مغلق"
584 584 label_total: الإجمالي
585 585 label_permissions: صلاحيات
586 586 label_current_status: الحالة الحالية
587 587 label_new_statuses_allowed: يسمح بادراج حالات جديدة
588 588 label_all: جميع
589 589 label_none: لا شيء
590 590 label_nobody: لا أحد
591 591 label_next: القادم
592 592 label_previous: السابق
593 593 label_used_by: التي يستخدمها
594 594 label_details: التفاصيل
595 595 label_add_note: إضافة ملاحظة
596 596 label_calendar: التقويم
597 597 label_months_from: بعد أشهر من
598 598 label_gantt: جانت
599 599 label_internal: الداخلية
600 600 label_last_changes: "آخر التغييرات %{count}"
601 601 label_change_view_all: عرض كافة التغييرات
602 602 label_personalize_page: تخصيص هذه الصفحة
603 603 label_comment: تعليق
604 604 label_comment_plural: تعليقات
605 605 label_x_comments:
606 606 zero: لا يوجد تعليقات
607 607 one: تعليق واحد
608 608 other: "%{count} تعليقات"
609 609 label_comment_add: إضافة تعليق
610 610 label_comment_added: تم إضافة التعليق
611 611 label_comment_delete: حذف التعليقات
612 612 label_query: استعلام مخصص
613 613 label_query_plural: استعلامات مخصصة
614 614 label_query_new: استعلام جديد
615 615 label_my_queries: استعلاماتي المخصصة
616 616 label_filter_add: إضافة عامل تصفية
617 617 label_filter_plural: عوامل التصفية
618 618 label_equals: يساوي
619 619 label_not_equals: لا يساوي
620 620 label_in_less_than: أقل من
621 621 label_in_more_than: أكثر من
622 622 label_greater_or_equal: '>='
623 623 label_less_or_equal: '< ='
624 624 label_between: بين
625 625 label_in: في
626 626 label_today: اليوم
627 627 label_all_time: كل الوقت
628 628 label_yesterday: بالأمس
629 629 label_this_week: هذا الأسبوع
630 630 label_last_week: الأسبوع الماضي
631 631 label_last_n_days: "آخر %{count} أيام"
632 632 label_this_month: هذا الشهر
633 633 label_last_month: الشهر الماضي
634 634 label_this_year: هذا العام
635 635 label_date_range: نطاق التاريخ
636 636 label_less_than_ago: أقل من عدد أيام
637 637 label_more_than_ago: أكثر من عدد أيام
638 638 label_ago: منذ أيام
639 639 label_contains: يحتوي على
640 640 label_not_contains: لا يحتوي على
641 641 label_day_plural: أيام
642 642 label_repository: المستودع
643 643 label_repository_plural: المستودعات
644 644 label_browse: تصفح
645 645 label_branch: فرع
646 646 label_tag: ربط
647 647 label_revision: مراجعة
648 648 label_revision_plural: تنقيحات
649 649 label_revision_id: " %{value}مراجعة"
650 650 label_associated_revisions: التنقيحات المرتبطة
651 651 label_added: مضاف
652 652 label_modified: معدل
653 653 label_copied: منسوخ
654 654 label_renamed: إعادة تسمية
655 655 label_deleted: محذوف
656 656 label_latest_revision: آخر تنقيح
657 657 label_latest_revision_plural: أحدث المراجعات
658 658 label_view_revisions: عرض التنقيحات
659 659 label_view_all_revisions: عرض كافة المراجعات
660 660 label_max_size: الحد الأقصى للحجم
661 661 label_sort_highest: التحرك لأعلى مرتبة
662 662 label_sort_higher: تحريك لأعلى
663 663 label_sort_lower: تحريك لأسفل
664 664 label_sort_lowest: التحرك لأسفل مرتبة
665 665 label_roadmap: خارطة الطريق
666 666 label_roadmap_due_in: " %{value}تستحق في "
667 667 label_roadmap_overdue: "%{value}تأخير"
668 668 label_roadmap_no_issues: لا يوجد بنود عمل لهذا الإصدار
669 669 label_search: البحث
670 670 label_result_plural: النتائج
671 671 label_all_words: كل الكلمات
672 672 label_wiki: ويكي
673 673 label_wiki_edit: تحرير ويكي
674 674 label_wiki_edit_plural: عمليات تحرير ويكي
675 675 label_wiki_page: صفحة ويكي
676 676 label_wiki_page_plural: ويكي صفحات
677 677 label_index_by_title: الفهرس حسب العنوان
678 678 label_index_by_date: الفهرس حسب التاريخ
679 679 label_current_version: الإصدار الحالي
680 680 label_preview: معاينة
681 681 label_feed_plural: موجز ويب
682 682 label_changes_details: تفاصيل جميع التغييرات
683 683 label_issue_tracking: تعقب بنود العمل
684 684 label_spent_time: ما تم إنفاقه من الوقت
685 685 label_overall_spent_time: الوقت الذي تم انفاقه كاملا
686 686 label_f_hour: "%{value} ساعة"
687 687 label_f_hour_plural: "%{value} ساعات"
688 688 label_time_tracking: تعقب الوقت
689 689 label_change_plural: التغييرات
690 690 label_statistics: إحصاءات
691 691 label_commits_per_month: يثبت في الشهر
692 692 label_commits_per_author: يثبت لكل مؤلف
693 693 label_diff: الاختلافات
694 694 label_view_diff: عرض الاختلافات
695 695 label_diff_inline: مضمنة
696 696 label_diff_side_by_side: جنبا إلى جنب
697 697 label_options: خيارات
698 698 label_copy_workflow_from: نسخ سير العمل من
699 699 label_permissions_report: تقرير الصلاحيات
700 700 label_watched_issues: بنود العمل المتابعة بريدياً
701 701 label_related_issues: بنود العمل ذات الصلة
702 702 label_applied_status: الحالة المطبقة
703 703 label_loading: تحميل...
704 704 label_relation_new: علاقة جديدة
705 705 label_relation_delete: حذف العلاقة
706 706 label_relates_to: ذات علاقة بـ
707 707 label_duplicates: مكرر من
708 708 label_duplicated_by: مكرر بواسطة
709 709 label_blocks: يجب تنفيذه قبل
710 710 label_blocked_by: لا يمكن تنفيذه إلا بعد
711 711 label_precedes: يسبق
712 712 label_follows: يتبع
713 713 label_stay_logged_in: تسجيل الدخول في
714 714 label_disabled: تعطيل
715 715 label_show_completed_versions: إظهار الإصدارات الكاملة
716 716 label_me: لي
717 717 label_board: المنتدى
718 718 label_board_new: منتدى جديد
719 719 label_board_plural: المنتديات
720 720 label_board_locked: تأمين
721 721 label_board_sticky: لزجة
722 722 label_topic_plural: المواضيع
723 723 label_message_plural: رسائل
724 724 label_message_last: آخر رسالة
725 725 label_message_new: رسالة جديدة
726 726 label_message_posted: تم اضافة الرسالة
727 727 label_reply_plural: الردود
728 728 label_send_information: إرسال معلومات الحساب للمستخدم
729 729 label_year: سنة
730 730 label_month: شهر
731 731 label_week: أسبوع
732 732 label_date_from: من
733 733 label_date_to: إلى
734 734 label_language_based: استناداً إلى لغة المستخدم
735 735 label_sort_by: " %{value}الترتيب حسب "
736 736 label_send_test_email: ارسل رسالة الكترونية كاختبار
737 737 label_feeds_access_key: Atom مفتاح دخول
738 738 label_missing_feeds_access_key: مفقودAtom مفتاح دخول
739 739 label_feeds_access_key_created_on: "Atom تم انشاء مفتاح %{value} منذ"
740 740 label_module_plural: الوحدات النمطية
741 741 label_added_time_by: " تم اضافته من قبل %{author} منذ %{age}"
742 742 label_updated_time_by: " تم تحديثه من قبل %{author} منذ %{age}"
743 743 label_updated_time: "تم التحديث منذ %{value}"
744 744 label_jump_to_a_project: الانتقال إلى مشروع...
745 745 label_file_plural: الملفات
746 746 label_changeset_plural: اعدادات التغير
747 747 label_default_columns: الاعمدة الافتراضية
748 748 label_no_change_option: (لا تغيير)
749 749 label_bulk_edit_selected_issues: تحرير بنود العمل المظللة
750 750 label_bulk_edit_selected_time_entries: تعديل بنود الأوقات المظللة
751 751 label_theme: الموضوع
752 752 label_default: الافتراضي
753 753 label_search_titles_only: البحث في العناوين فقط
754 754 label_user_mail_option_all: "جميع الخيارات"
755 755 label_user_mail_option_selected: "الخيارات المظللة فقط"
756 756 label_user_mail_option_none: "لم يتم تحديد اي خيارات"
757 757 label_user_mail_option_only_my_events: "السماح لي فقط بمشاهدة الاحداث الخاصة"
758 758 label_user_mail_option_only_assigned: "فقط الخيارات التي تم تعيينها"
759 759 label_user_mail_option_only_owner: "فقط للخيارات التي املكها"
760 760 label_user_mail_no_self_notified: "لا تريد إعلامك بالتغيرات التي تجريها بنفسك"
761 761 label_registration_activation_by_email: حساب التنشيط عبر البريد الإلكتروني
762 762 label_registration_manual_activation: تنشيط الحساب اليدوي
763 763 label_registration_automatic_activation: تنشيط الحساب التلقائي
764 764 label_display_per_page: "لكل صفحة: %{value}"
765 765 label_age: العمر
766 766 label_change_properties: تغيير الخصائص
767 767 label_general: عامة
768 768 label_more: أكثر
769 769 label_scm: scm
770 770 label_plugins: الإضافات
771 771 label_ldap_authentication: مصادقة LDAP
772 772 label_downloads_abbr: تنزيل
773 773 label_optional_description: وصف اختياري
774 774 label_add_another_file: إضافة ملف آخر
775 775 label_preferences: تفضيلات
776 776 label_chronological_order: في ترتيب زمني
777 777 label_reverse_chronological_order: في ترتيب زمني عكسي
778 778 label_planning: التخطيط
779 779 label_incoming_emails: رسائل البريد الإلكتروني الوارد
780 780 label_generate_key: إنشاء مفتاح
781 781 label_issue_watchers: المراقبون
782 782 label_example: مثال
783 783 label_display: العرض
784 784 label_sort: فرز
785 785 label_ascending: تصاعدي
786 786 label_descending: تنازلي
787 787 label_date_from_to: من %{start} الى %{end}
788 788 label_wiki_content_added: إضافة صفحة ويكي
789 789 label_wiki_content_updated: تحديث صفحة ويكي
790 790 label_group: مجموعة
791 791 label_group_plural: المجموعات
792 792 label_group_new: مجموعة جديدة
793 793 label_time_entry_plural: الأوقات المنفقة
794 794 label_version_sharing_none: غير متاح
795 795 label_version_sharing_descendants: متاح للمشاريع الفرعية
796 796 label_version_sharing_hierarchy: متاح للتسلسل الهرمي للمشروع
797 797 label_version_sharing_tree: مع شجرة المشروع
798 798 label_version_sharing_system: مع جميع المشاريع
799 799 label_update_issue_done_ratios: تحديث نسبة الأداء لبند العمل
800 800 label_copy_source: المصدر
801 801 label_copy_target: الهدف
802 802 label_copy_same_as_target: مطابق للهدف
803 803 label_display_used_statuses_only: عرض الحالات المستخدمة من قبل هذا النوع من بنود العمل فقط
804 804 label_api_access_key: مفتاح الوصول إلى API
805 805 label_missing_api_access_key: API لم يتم الحصول على مفتاح الوصول
806 806 label_api_access_key_created_on: " API إنشاء مفتاح الوصول إلى"
807 807 label_profile: الملف الشخصي
808 808 label_subtask_plural: المهام الفرعية
809 809 label_project_copy_notifications: إرسال إشعار الى البريد الإلكتروني عند نسخ المشروع
810 810 label_principal_search: "البحث عن مستخدم أو مجموعة:"
811 811 label_user_search: "البحث عن المستخدم:"
812 812 label_additional_workflow_transitions_for_author: الانتقالات الإضافية المسموح بها عند المستخدم صاحب البلاغ
813 813 label_additional_workflow_transitions_for_assignee: الانتقالات الإضافية المسموح بها عند المستخدم المحال إليه
814 814 label_issues_visibility_all: جميع بنود العمل
815 815 label_issues_visibility_public: جميع بنود العمل الخاصة
816 816 label_issues_visibility_own: بنود العمل التي أنشأها المستخدم
817 817 label_git_report_last_commit: اعتماد التقرير الأخير للملفات والدلائل
818 818 label_parent_revision: الوالدين
819 819 label_child_revision: الطفل
820 820 label_export_options: "%{export_format} خيارات التصدير"
821 821
822 822 button_login: دخول
823 823 button_submit: تثبيت
824 824 button_save: حفظ
825 825 button_check_all: تحديد الكل
826 826 button_uncheck_all: عدم تحديد الكل
827 827 button_collapse_all: تقليص الكل
828 828 button_expand_all: عرض الكل
829 829 button_delete: حذف
830 830 button_create: إنشاء
831 831 button_create_and_continue: إنشاء واستمرار
832 832 button_test: اختبار
833 833 button_edit: تعديل
834 834 button_edit_associated_wikipage: "تغير صفحة ويكي: %{page_title}"
835 835 button_add: إضافة
836 836 button_change: تغيير
837 837 button_apply: تطبيق
838 838 button_clear: إخلاء الحقول
839 839 button_lock: قفل
840 840 button_unlock: الغاء القفل
841 841 button_download: تنزيل
842 842 button_list: قائمة
843 843 button_view: عرض
844 844 button_move: تحرك
845 845 button_move_and_follow: تحرك واتبع
846 846 button_back: رجوع
847 847 button_cancel: إلغاء
848 848 button_activate: تنشيط
849 849 button_sort: ترتيب
850 850 button_log_time: وقت الدخول
851 851 button_rollback: الرجوع الى هذا الاصدار
852 852 button_watch: تابع عبر البريد
853 853 button_unwatch: إلغاء المتابعة عبر البريد
854 854 button_reply: رد
855 855 button_archive: أرشفة
856 856 button_unarchive: إلغاء الأرشفة
857 857 button_reset: إعادة
858 858 button_rename: إعادة التسمية
859 859 button_change_password: تغير كلمة المرور
860 860 button_copy: نسخ
861 861 button_copy_and_follow: نسخ واتباع
862 862 button_annotate: تعليق
863 863 button_update: تحديث
864 864 button_configure: تكوين
865 865 button_quote: اقتباس
866 866 button_duplicate: عمل نسخة
867 867 button_show: إظهار
868 868 button_edit_section: تعديل هذا الجزء
869 869 button_export: تصدير لملف
870 870
871 871 status_active: نشيط
872 872 status_registered: مسجل
873 873 status_locked: مقفل
874 874
875 875 version_status_open: مفتوح
876 876 version_status_locked: مقفل
877 877 version_status_closed: مغلق
878 878
879 879 field_active: فعال
880 880
881 881 text_select_mail_notifications: حدد الامور التي يجب ابلاغك بها عن طريق البريد الالكتروني
882 882 text_regexp_info: مثال. ^[A-Z0-9]+$
883 883 text_min_max_length_info: الحد الاقصى والادني لطول المعلومات
884 884 text_project_destroy_confirmation: هل أنت متأكد من أنك تريد حذف هذا المشروع والبيانات ذات الصلة؟
885 885 text_subprojects_destroy_warning: "المشاريع الفرعية: %{value} سيتم حذفها أيضاً."
886 886 text_workflow_edit: حدد دوراً و نوع بند عمل لتحرير سير العمل
887 887 text_are_you_sure: هل أنت متأكد؟
888 888 text_journal_changed: "%{label} تغير %{old} الى %{new}"
889 889 text_journal_changed_no_detail: "%{label} تم التحديث"
890 890 text_journal_set_to: "%{label} تغير الى %{value}"
891 891 text_journal_deleted: "%{label} تم الحذف (%{old})"
892 892 text_journal_added: "%{label} %{value} تم الاضافة"
893 893 text_tip_issue_begin_day: بند عمل بدأ اليوم
894 894 text_tip_issue_end_day: بند عمل انتهى اليوم
895 895 text_tip_issue_begin_end_day: بند عمل بدأ وانتهى اليوم
896 896 text_caracters_maximum: "%{count} الحد الاقصى."
897 897 text_caracters_minimum: "الحد الادنى %{count}"
898 898 text_length_between: "الطول %{min} بين %{max} رمز"
899 899 text_tracker_no_workflow: لم يتم تحديد سير العمل لهذا النوع من بنود العمل
900 900 text_unallowed_characters: رموز غير مسموحة
901 901 text_comma_separated: مسموح رموز متنوعة يفصلها فاصلة .
902 902 text_line_separated: مسموح رموز متنوعة يفصلها سطور
903 903 text_issues_ref_in_commit_messages: الارتباط وتغيير حالة بنود العمل في رسائل تحرير الملفات
904 904 text_issue_added: "بند العمل %{id} تم ابلاغها عن طريق %{author}."
905 905 text_issue_updated: "بند العمل %{id} تم تحديثها عن طريق %{author}."
906 906 text_wiki_destroy_confirmation: هل انت متأكد من رغبتك في حذف هذا الويكي ومحتوياته؟
907 907 text_issue_category_destroy_question: "بعض بنود العمل (%{count}) مرتبطة بهذه الفئة، ماذا تريد ان تفعل بها؟"
908 908 text_issue_category_destroy_assignments: حذف الفئة
909 909 text_issue_category_reassign_to: اعادة تثبيت البنود في الفئة
910 910 text_user_mail_option: "بالنسبة للمشاريع غير المحددة، سوف يتم ابلاغك عن المشاريع التي تشاهدها او تشارك بها فقط!"
911 911 text_no_configuration_data: "الادوار والمتتبع وحالات بند العمل ومخطط سير العمل لم يتم تحديد وضعها الافتراضي بعد. "
912 912 text_load_default_configuration: تحميل الاعدادات الافتراضية
913 913 text_status_changed_by_changeset: " طبق التغيرات المعينة على %{value}."
914 914 text_time_logged_by_changeset: "تم تطبيق التغيرات المعينة على %{value}."
915 915 text_issues_destroy_confirmation: هل انت متأكد من حذف البنود المظللة؟'
916 916 text_issues_destroy_descendants_confirmation: "سوف يؤدي هذا الى حذف %{count} المهام الفرعية ايضا."
917 917 text_time_entries_destroy_confirmation: "هل انت متأكد من رغبتك في حذف الادخالات الزمنية المحددة؟"
918 918 text_select_project_modules: قم بتحديد الوضع المناسب لهذا المشروع:'
919 919 text_default_administrator_account_changed: تم تعديل الاعدادات الافتراضية لحساب المدير
920 920 text_file_repository_writable: المرفقات قابلة للكتابة
921 921 text_plugin_assets_writable: الدليل المساعد قابل للكتابة
922 922 text_destroy_time_entries_question: " ساعة على بند العمل التي تود حذفها، ماذا تريد ان تفعل؟ %{hours} تم تثبيت"
923 923 text_destroy_time_entries: قم بحذف الساعات المسجلة
924 924 text_assign_time_entries_to_project: ثبت الساعات المسجلة على التقرير
925 925 text_reassign_time_entries: 'اعادة تثبيت الساعات المسجلة لبند العمل هذا:'
926 926 text_user_wrote: "%{value} كتب:"
927 927 text_enumeration_destroy_question: "%{count} الكائنات المعنية لهذه القيمة"
928 928 text_enumeration_category_reassign_to: اعادة تثبيت الكائنات التالية لهذه القيمة:'
929 929 text_email_delivery_not_configured: "لم يتم تسليم البريد الالكتروني"
930 930 text_diff_truncated: '... لقد تم اقتطاع هذا الجزء لانه تجاوز الحد الاقصى المسموح بعرضه'
931 931 text_custom_field_possible_values_info: 'سطر لكل قيمة'
932 932 text_wiki_page_nullify_children: "الاحتفاظ بصفحات الابن كصفحات جذر"
933 933 text_wiki_page_destroy_children: "حذف صفحات الابن وجميع أولادهم"
934 934 text_wiki_page_reassign_children: "إعادة تعيين صفحات تابعة لهذه الصفحة الأصلية"
935 935 text_own_membership_delete_confirmation: "انت على وشك إزالة بعض أو كافة الصلاحيات الخاصة بك، لن تكون قادراً على تحرير هذا المشروع بعد ذلك. هل أنت متأكد من أنك تريد المتابعة؟"
936 936 text_zoom_in: تصغير
937 937 text_zoom_out: تكبير
938 938 text_warn_on_leaving_unsaved: "الصفحة تحتوي على نص غير مخزن، سوف يفقد النص اذا تم الخروج من الصفحة."
939 939 text_scm_path_encoding_note: "الافتراضي: UTF-8"
940 940 text_git_repository_note: مستودع فارغ ومحلي
941 941 text_mercurial_repository_note: مستودع محلي
942 942 text_scm_command: امر
943 943 text_scm_command_version: اصدار
944 944 text_scm_config: الرجاء اعادة تشغيل التطبيق
945 945 text_scm_command_not_available: الامر غير متوفر، الرجاء التحقق من لوحة التحكم
946 946
947 947 default_role_manager: مدير
948 948 default_role_developer: مطور
949 949 default_role_reporter: مراسل
950 950 default_tracker_bug: الشوائب
951 951 default_tracker_feature: خاصية
952 952 default_tracker_support: دعم
953 953 default_issue_status_new: جديد
954 954 default_issue_status_in_progress: جاري التحميل
955 955 default_issue_status_resolved: الحل
956 956 default_issue_status_feedback: التغذية الراجعة
957 957 default_issue_status_closed: مغلق
958 958 default_issue_status_rejected: مرفوض
959 959 default_doc_category_user: مستندات المستخدم
960 960 default_doc_category_tech: المستندات التقنية
961 961 default_priority_low: قليل
962 962 default_priority_normal: عادي
963 963 default_priority_high: عالي
964 964 default_priority_urgent: طارئ
965 965 default_priority_immediate: طارئ الآن
966 966 default_activity_design: تصميم
967 967 default_activity_development: تطوير
968 968
969 969 enumeration_issue_priorities: الاولويات
970 970 enumeration_doc_categories: تصنيف المستندات
971 971 enumeration_activities: الانشطة
972 972 enumeration_system_activity: نشاط النظام
973 973 description_filter: فلترة
974 974 description_search: حقل البحث
975 975 description_choose_project: المشاريع
976 976 description_project_scope: مجال البحث
977 977 description_notes: ملاحظات
978 978 description_message_content: محتويات الرسالة
979 979 description_query_sort_criteria_attribute: نوع الترتيب
980 980 description_query_sort_criteria_direction: اتجاه الترتيب
981 981 description_user_mail_notification: إعدادات البريد الالكتروني
982 982 description_available_columns: الاعمدة المتوفرة
983 983 description_selected_columns: الاعمدة المحددة
984 984 description_all_columns: كل الاعمدة
985 985 description_issue_category_reassign: اختر التصنيف
986 986 description_wiki_subpages_reassign: اختر صفحة جديدة
987 987 description_date_range_list: اختر المجال من القائمة
988 988 description_date_range_interval: اختر المدة عن طريق اختيار تاريخ البداية والنهاية
989 989 description_date_from: ادخل تاريخ البداية
990 990 description_date_to: ادخل تاريخ الانتهاء
991 991 text_rmagick_available: RMagick available (optional)
992 992 text_wiki_page_destroy_question: This page has %{descendants} child page(s) and descendant(s). What do you want to do?
993 993 text_repository_usernames_mapping: |-
994 994 Select or update the Redmine user mapped to each username found in the repository log.
995 995 Users with the same Redmine and repository username or email are automatically mapped.
996 996 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
997 997 label_x_issues:
998 998 zero: لا يوجد بنود عمل
999 999 one: بند عمل واحد
1000 1000 other: "%{count} بنود عمل"
1001 1001 label_repository_new: New repository
1002 1002 field_repository_is_default: Main repository
1003 1003 label_copy_attachments: Copy attachments
1004 1004 label_item_position: "%{position}/%{count}"
1005 1005 label_completed_versions: Completed versions
1006 1006 text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1007 1007 field_multiple: Multiple values
1008 1008 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
1009 1009 text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
1010 1010 text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
1011 1011 notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
1012 1012 text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
1013 1013 permission_manage_related_issues: Manage related issues
1014 1014 field_auth_source_ldap_filter: LDAP filter
1015 1015 label_search_for_watchers: Search for watchers to add
1016 1016 notice_account_deleted: Your account has been permanently deleted.
1017 1017 setting_unsubscribe: Allow users to delete their own account
1018 1018 button_delete_my_account: Delete my account
1019 1019 text_account_destroy_confirmation: |-
1020 1020 Are you sure you want to proceed?
1021 1021 Your account will be permanently deleted, with no way to reactivate it.
1022 1022 error_session_expired: Your session has expired. Please login again.
1023 1023 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1024 1024 setting_session_lifetime: Session maximum lifetime
1025 1025 setting_session_timeout: Session inactivity timeout
1026 1026 label_session_expiration: Session expiration
1027 1027 permission_close_project: Close / reopen the project
1028 1028 label_show_closed_projects: View closed projects
1029 1029 button_close: Close
1030 1030 button_reopen: Reopen
1031 1031 project_status_active: active
1032 1032 project_status_closed: closed
1033 1033 project_status_archived: archived
1034 1034 text_project_closed: This project is closed and read-only.
1035 1035 notice_user_successful_create: User %{id} created.
1036 1036 field_core_fields: Standard fields
1037 1037 field_timeout: Timeout (in seconds)
1038 1038 setting_thumbnails_enabled: Display attachment thumbnails
1039 1039 setting_thumbnails_size: Thumbnails size (in pixels)
1040 1040 label_status_transitions: Status transitions
1041 1041 label_fields_permissions: Fields permissions
1042 1042 label_readonly: Read-only
1043 1043 label_required: Required
1044 1044 text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1045 1045 field_board_parent: Parent forum
1046 1046 label_attribute_of_project: Project's %{name}
1047 1047 label_attribute_of_author: Author's %{name}
1048 1048 label_attribute_of_assigned_to: Assignee's %{name}
1049 1049 label_attribute_of_fixed_version: Target version's %{name}
1050 1050 label_copy_subtasks: Copy subtasks
1051 1051 label_copied_to: منسوخ لـ
1052 1052 label_copied_from: منسوخ من
1053 1053 label_any_issues_in_project: any issues in project
1054 1054 label_any_issues_not_in_project: any issues not in project
1055 1055 field_private_notes: Private notes
1056 1056 permission_view_private_notes: View private notes
1057 1057 permission_set_notes_private: Set notes as private
1058 1058 label_no_issues_in_project: no issues in project
1059 1059 label_any: جميع
1060 1060 label_last_n_weeks: آخر %{count} أسبوع/أسابيع
1061 1061 setting_cross_project_subtasks: Allow cross-project subtasks
1062 1062 label_cross_project_descendants: متاح للمشاريع الفرعية
1063 1063 label_cross_project_tree: متاح مع شجرة المشروع
1064 1064 label_cross_project_hierarchy: متاح مع التسلسل الهرمي للمشروع
1065 1065 label_cross_project_system: متاح مع جميع المشاريع
1066 1066 button_hide: إخفاء
1067 1067 setting_non_working_week_days: "أيام أجازة/راحة أسبوعية"
1068 1068 label_in_the_next_days: في الأيام المقبلة
1069 1069 label_in_the_past_days: في الأيام الماضية
1070 1070 label_attribute_of_user: User's %{name}
1071 1071 text_turning_multiple_off: If you disable multiple values, multiple values will be
1072 1072 removed in order to preserve only one value per item.
1073 1073 label_attribute_of_issue: Issue's %{name}
1074 1074 permission_add_documents: Add documents
1075 1075 permission_edit_documents: Edit documents
1076 1076 permission_delete_documents: Delete documents
1077 1077 label_gantt_progress_line: Progress line
1078 1078 setting_jsonp_enabled: Enable JSONP support
1079 1079 field_inherit_members: Inherit members
1080 1080 field_closed_on: Closed
1081 1081 field_generate_password: Generate password
1082 1082 setting_default_projects_tracker_ids: Default trackers for new projects
1083 1083 label_total_time: الإجمالي
1084 1084 notice_account_not_activated_yet: You haven't activated your account yet. If you want
1085 1085 to receive a new activation email, please <a href="%{url}">click this link</a>.
1086 1086 notice_account_locked: Your account is locked.
1087 1087 label_hidden: Hidden
1088 1088 label_visibility_private: to me only
1089 1089 label_visibility_roles: to these roles only
1090 1090 label_visibility_public: to any users
1091 1091 field_must_change_passwd: Must change password at next logon
1092 1092 notice_new_password_must_be_different: The new password must be different from the
1093 1093 current password
1094 1094 setting_mail_handler_excluded_filenames: Exclude attachments by name
1095 1095 text_convert_available: ImageMagick convert available (optional)
1096 1096 label_link: Link
1097 1097 label_only: only
1098 1098 label_drop_down_list: drop-down list
1099 1099 label_checkboxes: checkboxes
1100 1100 label_link_values_to: Link values to URL
1101 1101 setting_force_default_language_for_anonymous: Force default language for anonymous
1102 1102 users
1103 1103 setting_force_default_language_for_loggedin: Force default language for logged-in
1104 1104 users
1105 1105 label_custom_field_select_type: Select the type of object to which the custom field
1106 1106 is to be attached
1107 1107 label_issue_assigned_to_updated: Assignee updated
1108 1108 label_check_for_updates: Check for updates
1109 1109 label_latest_compatible_version: Latest compatible version
1110 1110 label_unknown_plugin: Unknown plugin
1111 1111 label_radio_buttons: radio buttons
1112 1112 label_group_anonymous: Anonymous users
1113 1113 label_group_non_member: Non member users
1114 1114 label_add_projects: Add projects
1115 1115 field_default_status: Default status
1116 1116 text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
1117 1117 field_users_visibility: Users visibility
1118 1118 label_users_visibility_all: All active users
1119 1119 label_users_visibility_members_of_visible_projects: Members of visible projects
1120 1120 label_edit_attachments: Edit attached files
1121 1121 setting_link_copied_issue: Link issues on copy
1122 1122 label_link_copied_issue: Link copied issue
1123 1123 label_ask: Ask
1124 1124 label_search_attachments_yes: Search attachment filenames and descriptions
1125 1125 label_search_attachments_no: Do not search attachments
1126 1126 label_search_attachments_only: Search attachments only
1127 1127 label_search_open_issues_only: Open issues only
1128 1128 field_address: البريد الالكتروني
1129 1129 setting_max_additional_emails: Maximum number of additional email addresses
1130 1130 label_email_address_plural: Emails
1131 1131 label_email_address_add: Add email address
1132 1132 label_enable_notifications: Enable notifications
1133 1133 label_disable_notifications: Disable notifications
1134 1134 setting_search_results_per_page: Search results per page
1135 1135 label_blank_value: blank
1136 1136 permission_copy_issues: Copy issues
1137 1137 error_password_expired: Your password has expired or the administrator requires you
1138 1138 to change it.
1139 1139 field_time_entries_visibility: Time logs visibility
1140 1140 setting_password_max_age: Require password change after
1141 1141 label_parent_task_attributes: Parent tasks attributes
1142 1142 label_parent_task_attributes_derived: Calculated from subtasks
1143 1143 label_parent_task_attributes_independent: Independent of subtasks
1144 1144 label_time_entries_visibility_all: All time entries
1145 1145 label_time_entries_visibility_own: Time entries created by the user
1146 1146 label_member_management: Member management
1147 1147 label_member_management_all_roles: All roles
1148 1148 label_member_management_selected_roles_only: Only these roles
1149 1149 label_password_required: Confirm your password to continue
1150 1150 label_total_spent_time: الوقت الذي تم انفاقه كاملا
1151 1151 notice_import_finished: All %{count} items have been imported.
1152 1152 notice_import_finished_with_errors: ! '%{count} out of %{total} items could not be
1153 1153 imported.'
1154 1154 error_invalid_file_encoding: The file is not a valid %{encoding} encoded file
1155 1155 error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the
1156 1156 settings below
1157 1157 error_can_not_read_import_file: An error occurred while reading the file to import
1158 1158 permission_import_issues: Import issues
1159 1159 label_import_issues: Import issues
1160 1160 label_select_file_to_import: Select the file to import
1161 1161 label_fields_separator: Field separator
1162 1162 label_fields_wrapper: Field wrapper
1163 1163 label_encoding: Encoding
1164 1164 label_comma_char: Comma
1165 1165 label_semi_colon_char: Semi colon
1166 1166 label_quote_char: Quote
1167 1167 label_double_quote_char: Double quote
1168 1168 label_fields_mapping: Fields mapping
1169 1169 label_file_content_preview: File content preview
1170 1170 label_create_missing_values: Create missing values
1171 1171 button_import: Import
1172 1172 field_total_estimated_hours: Total estimated time
1173 1173 label_api: API
1174 1174 label_total_plural: Totals
1175 1175 label_assigned_issues: Assigned issues
1176 1176 label_field_format_enumeration: Key/value list
1177 1177 label_f_hour_short: '%{value} h'
1178 1178 field_default_version: Default version
1179 1179 error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed
1180 1180 setting_attachment_extensions_allowed: Allowed extensions
1181 1181 setting_attachment_extensions_denied: Disallowed extensions
1182 1182 label_any_open_issues: any open issues
1183 1183 label_no_open_issues: no open issues
1184 1184 label_default_values_for_new_users: Default values for new users
1185 error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot
1186 be reassigned to an issue that is about to be deleted
@@ -1,1279 +1,1281
1 1 #
2 2 # Translated by Saadat Mutallimova
3 3 # Data Processing Center of the Ministry of Communication and Information Technologies
4 4 #
5 5 az:
6 6 direction: ltr
7 7 date:
8 8 formats:
9 9 default: "%d.%m.%Y"
10 10 short: "%d %b"
11 11 long: "%d %B %Y"
12 12
13 13 day_names: [bazar, bazar ertəsi, çərşənbə axşamı, çərşənbə, cümə axşamı, cümə, şənbə]
14 14 standalone_day_names: [Bazar, Bazar ertəsi, Çərşənbə axşamı, Çərşənbə, Cümə axşamı, Cümə, Şənbə]
15 15 abbr_day_names: [B, Be, Ça, Ç, Ca, C, Ş]
16 16
17 17 month_names: [~, yanvar, fevral, mart, aprel, may, iyun, iyul, avqust, sentyabr, oktyabr, noyabr, dekabr]
18 18 # see russian gem for info on "standalone" day names
19 19 standalone_month_names: [~, Yanvar, Fevral, Mart, Aprel, May, İyun, İyul, Avqust, Sentyabr, Oktyabr, Noyabr, Dekabr]
20 20 abbr_month_names: [~, yan., fev., mart, apr., may, iyun, iyul, avq., sent., okt., noy., dek.]
21 21 standalone_abbr_month_names: [~, yan., fev., mart, apr., may, iyun, iyul, avq., sent., okt., noy., dek.]
22 22
23 23 order:
24 24 - :day
25 25 - :month
26 26 - :year
27 27
28 28 time:
29 29 formats:
30 30 default: "%a, %d %b %Y, %H:%M:%S %z"
31 31 time: "%H:%M"
32 32 short: "%d %b, %H:%M"
33 33 long: "%d %B %Y, %H:%M"
34 34
35 35 am: "səhər"
36 36 pm: "axşam"
37 37
38 38 number:
39 39 format:
40 40 separator: ","
41 41 delimiter: " "
42 42 precision: 3
43 43
44 44 currency:
45 45 format:
46 46 format: "%n %u"
47 47 unit: "man."
48 48 separator: "."
49 49 delimiter: " "
50 50 precision: 2
51 51
52 52 percentage:
53 53 format:
54 54 delimiter: ""
55 55
56 56 precision:
57 57 format:
58 58 delimiter: ""
59 59
60 60 human:
61 61 format:
62 62 delimiter: ""
63 63 precision: 3
64 64 # Rails 2.2
65 65 # storage_units: [байт, КБ, МБ, ГБ, ТБ]
66 66
67 67 # Rails 2.3
68 68 storage_units:
69 69 # Storage units output formatting.
70 70 # %u is the storage unit, %n is the number (default: 2 MB)
71 71 format: "%n %u"
72 72 units:
73 73 byte:
74 74 one: "bayt"
75 75 few: "bayt"
76 76 many: "bayt"
77 77 other: "bayt"
78 78 kb: "KB"
79 79 mb: "MB"
80 80 gb: "GB"
81 81 tb: "TB"
82 82
83 83 datetime:
84 84 distance_in_words:
85 85 half_a_minute: "bir dəqiqədən az"
86 86 less_than_x_seconds:
87 87 one: "%{count} saniyədən az"
88 88 few: "%{count} saniyədən az"
89 89 many: "%{count} saniyədən az"
90 90 other: "%{count} saniyədən az"
91 91 x_seconds:
92 92 one: "%{count} saniyə"
93 93 few: "%{count} saniyə"
94 94 many: "%{count} saniyə"
95 95 other: "%{count} saniyə"
96 96 less_than_x_minutes:
97 97 one: "%{count} dəqiqədən az"
98 98 few: "%{count} dəqiqədən az"
99 99 many: "%{count} dəqiqədən az"
100 100 other: "%{count} dəqiqədən az"
101 101 x_minutes:
102 102 one: "%{count} dəqiqə"
103 103 few: "%{count} dəqiqə"
104 104 many: "%{count} dəqiqə"
105 105 other: "%{count} dəqiqə"
106 106 about_x_hours:
107 107 one: "təxminən %{count} saat"
108 108 few: "təxminən %{count} saat"
109 109 many: "təxminən %{count} saat"
110 110 other: "təxminən %{count} saat"
111 111 x_hours:
112 112 one: "1 saat"
113 113 other: "%{count} saat"
114 114 x_days:
115 115 one: "%{count} gün"
116 116 few: "%{count} gün"
117 117 many: "%{count} gün"
118 118 other: "%{count} gün"
119 119 about_x_months:
120 120 one: "təxminən %{count} ay"
121 121 few: "təxminən %{count} ay"
122 122 many: "təxminən %{count} ay"
123 123 other: "təxminən %{count} ay"
124 124 x_months:
125 125 one: "%{count} ay"
126 126 few: "%{count} ay"
127 127 many: "%{count} ay"
128 128 other: "%{count} ay"
129 129 about_x_years:
130 130 one: "təxminən %{count} il"
131 131 few: "təxminən %{count} il"
132 132 many: "təxminən %{count} il"
133 133 other: "təxminən %{count} il"
134 134 over_x_years:
135 135 one: "%{count} ildən çox"
136 136 few: "%{count} ildən çox"
137 137 many: "%{count} ildən çox"
138 138 other: "%{count} ildən çox"
139 139 almost_x_years:
140 140 one: "təxminən 1 il"
141 141 few: "təxminən %{count} il"
142 142 many: "təxminən %{count} il"
143 143 other: "təxminən %{count} il"
144 144 prompts:
145 145 year: "İl"
146 146 month: "Ay"
147 147 day: "Gün"
148 148 hour: "Saat"
149 149 minute: "Dəqiqə"
150 150 second: "Saniyə"
151 151
152 152 activerecord:
153 153 errors:
154 154 template:
155 155 header:
156 156 one: "%{model}: %{count} səhvə görə yadda saxlamaq mümkün olmadı"
157 157 few: "%{model}: %{count} səhvlərə görə yadda saxlamaq mümkün olmadı"
158 158 many: "%{model}: %{count} səhvlərə görə yadda saxlamaq mümkün olmadı"
159 159 other: "%{model}: %{count} səhvə görə yadda saxlamaq mümkün olmadı"
160 160
161 161 body: "Problemlər aşağıdakı sahələrdə yarandı:"
162 162
163 163 messages:
164 164 inclusion: "nəzərdə tutulmamış təyinata malikdir"
165 165 exclusion: "ehtiyata götürülməmiş təyinata malikdir"
166 166 invalid: "düzgün təyinat deyildir"
167 167 confirmation: "təsdiq ilə üst-üstə düşmür"
168 168 accepted: "təsdiq etmək lazımdır"
169 169 empty: "boş saxlanıla bilməz"
170 170 blank: "boş saxlanıla bilməz"
171 171 too_long:
172 172 one: "çox böyük uzunluq (%{count} simvoldan çox ola bilməz)"
173 173 few: "çox böyük uzunluq (%{count} simvoldan çox ola bilməz)"
174 174 many: "çox böyük uzunluq (%{count} simvoldan çox ola bilməz)"
175 175 other: "çox böyük uzunluq (%{count} simvoldan çox ola bilməz)"
176 176 too_short:
177 177 one: "uzunluq kifayət qədər deyildir (%{count} simvoldan az ola bilməz)"
178 178 few: "uzunluq kifayət qədər deyildir (%{count} simvoldan az ola bilməz)"
179 179 many: "uzunluq kifayət qədər deyildir (%{count} simvoldan az ola bilməz)"
180 180 other: "uzunluq kifayət qədər deyildir (%{count} simvoldan az ola bilməz)"
181 181 wrong_length:
182 182 one: "düzgün olmayan uzunluq (tam %{count} simvol ola bilər)"
183 183 few: "düzgün olmayan uzunluq (tam %{count} simvol ola bilər)"
184 184 many: "düzgün olmayan uzunluq (tam %{count} simvol ola bilər)"
185 185 other: "düzgün olmayan uzunluq (tam %{count} simvol ola bilər)"
186 186 taken: "artıq mövcuddur"
187 187 not_a_number: "say kimi hesab edilmir"
188 188 greater_than: "%{count} çox təyinata malik ola bilər"
189 189 greater_than_or_equal_to: "%{count} çox ya ona bərabər təyinata malik ola bilər"
190 190 equal_to: "yalnız %{count} bərabər təyinata malik ola bilər"
191 191 less_than: "%{count} az təyinata malik ola bilər"
192 192 less_than_or_equal_to: "%{count} az ya ona bərabər təyinata malik ola bilər"
193 193 odd: "yalnız tək təyinata malik ola bilər"
194 194 even: "yalnız cüt təyinata malik ola bilər"
195 195 greater_than_start_date: "başlanğıc tarixindən sonra olmalıdır"
196 196 not_same_project: "təkcə bir layihəyə aid deyildir"
197 197 circular_dependency: "Belə əlaqə dövri asılılığa gətirib çıxaracaq"
198 198 cant_link_an_issue_with_a_descendant: "Tapşırıq özünün alt tapşırığı ilə əlaqəli ola bilməz"
199 199 earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues"
200 200
201 201 support:
202 202 array:
203 203 # Rails 2.2
204 204 sentence_connector: "və"
205 205 skip_last_comma: true
206 206
207 207 # Rails 2.3
208 208 words_connector: ", "
209 209 two_words_connector: " və"
210 210 last_word_connector: " "
211 211
212 212 actionview_instancetag_blank_option: Seçim edin
213 213
214 214 button_activate: Aktivləşdirmək
215 215 button_add: Əlavə etmək
216 216 button_annotate: Müəlliflik
217 217 button_apply: Tətbiq etmək
218 218 button_archive: Arxivləşdirmək
219 219 button_back: Geriyə
220 220 button_cancel: İmtina
221 221 button_change_password: Parolu dəyişmək
222 222 button_change: Dəyişmək
223 223 button_check_all: Hamını qeyd etmək
224 224 button_clear: Təmizləmək
225 225 button_configure: Parametlər
226 226 button_copy: Sürətini çıxarmaq
227 227 button_create: Yaratmaq
228 228 button_create_and_continue: Yaratmaq və davam etmək
229 229 button_delete: Silmək
230 230 button_download: Yükləmək
231 231 button_edit: Redaktə etmək
232 232 button_edit_associated_wikipage: "Əlaqəli wiki-səhifəni redaktə etmək: %{page_title}"
233 233 button_list: Siyahı
234 234 button_lock: Bloka salmaq
235 235 button_login: Giriş
236 236 button_log_time: Sərf olunan vaxt
237 237 button_move: Yerini dəyişmək
238 238 button_quote: Sitat gətirmək
239 239 button_rename: Adını dəyişmək
240 240 button_reply: Cavablamaq
241 241 button_reset: Sıfırlamaq
242 242 button_rollback: Bu versiyaya qayıtmaq
243 243 button_save: Yadda saxlamaq
244 244 button_sort: Çeşidləmək
245 245 button_submit: Qəbul etmək
246 246 button_test: Yoxlamaq
247 247 button_unarchive: Arxivdən çıxarmaq
248 248 button_uncheck_all: Təmizləmək
249 249 button_unlock: Blokdan çıxarmaq
250 250 button_unwatch: İzləməmək
251 251 button_update: Yeniləmək
252 252 button_view: Baxmaq
253 253 button_watch: İzləmək
254 254
255 255 default_activity_design: Layihənin hazırlanması
256 256 default_activity_development: Hazırlanma prosesi
257 257 default_doc_category_tech: Texniki sənədləşmə
258 258 default_doc_category_user: İstifadəçi sənədi
259 259 default_issue_status_in_progress: İşlənməkdədir
260 260 default_issue_status_closed: Bağlanıb
261 261 default_issue_status_feedback: Əks əlaqə
262 262 default_issue_status_new: Yeni
263 263 default_issue_status_rejected: Rədd etmə
264 264 default_issue_status_resolved: Həll edilib
265 265 default_priority_high: Yüksək
266 266 default_priority_immediate: Təxirsiz
267 267 default_priority_low: Aşağı
268 268 default_priority_normal: Normal
269 269 default_priority_urgent: Təcili
270 270 default_role_developer: Hazırlayan
271 271 default_role_manager: Menecer
272 272 default_role_reporter: Reportyor
273 273 default_tracker_bug: Səhv
274 274 default_tracker_feature: Təkmilləşmə
275 275 default_tracker_support: Dəstək
276 276
277 277 enumeration_activities: Hərəkətlər (vaxtın uçotu)
278 278 enumeration_doc_categories: Sənədlərin kateqoriyası
279 279 enumeration_issue_priorities: Tapşırıqların prioriteti
280 280
281 281 error_can_not_remove_role: Bu rol istifadə edilir və silinə bilməz.
282 282 error_can_not_delete_custom_field: Sazlanmış sahəni silmək mümkün deyildir
283 283 error_can_not_delete_tracker: Bu treker tapşırıqlardan ibarət olduğu üçün silinə bilməz.
284 284 error_can_t_load_default_data: "Susmaya görə konfiqurasiya yüklənməmişdir: %{value}"
285 285 error_issue_not_found_in_project: Tapşırıq tapılmamışdır və ya bu layihəyə bərkidilməmişdir
286 286 error_scm_annotate: "Verilənlər mövcud deyildir ya imzalana bilməz."
287 287 error_scm_command_failed: "Saxlayıcıya giriş imkanı səhvi: %{value}"
288 288 error_scm_not_found: Saxlayıcıda yazı və/ və ya düzəliş yoxdur.
289 289 error_unable_to_connect: Qoşulmaq mümkün deyildir (%{value})
290 290 error_unable_delete_issue_status: Tapşırığın statusunu silmək mümkün deyildir
291 291
292 292 field_account: İstifadəçi hesabı
293 293 field_activity: Fəaliyyət
294 294 field_admin: İnzibatçı
295 295 field_assignable: Tapşırıq bu rola təyin edilə bilər
296 296 field_assigned_to: Təyin edilib
297 297 field_attr_firstname: Ad
298 298 field_attr_lastname: Soyad
299 299 field_attr_login: Atribut Login
300 300 field_attr_mail: e-poçt
301 301 field_author: Müəllif
302 302 field_auth_source: Autentifikasiya rejimi
303 303 field_base_dn: BaseDN
304 304 field_category: Kateqoriya
305 305 field_column_names: Sütunlar
306 306 field_comments: Şərhlər
307 307 field_comments_sorting: Şərhlərin təsviri
308 308 field_content: Content
309 309 field_created_on: Yaradılıb
310 310 field_default_value: Susmaya görə təyinat
311 311 field_delay: Təxirə salmaq
312 312 field_description: Təsvir
313 313 field_done_ratio: Hazırlıq
314 314 field_downloads: Yükləmələr
315 315 field_due_date: Yerinə yetirilmə tarixi
316 316 field_editable: Redaktə edilən
317 317 field_effective_date: Tarix
318 318 field_estimated_hours: Vaxtın dəyərləndirilməsi
319 319 field_field_format: Format
320 320 field_filename: Fayl
321 321 field_filesize: Ölçü
322 322 field_firstname: Ad
323 323 field_fixed_version: Variant
324 324 field_hide_mail: E-poçtumu gizlət
325 325 field_homepage: Başlanğıc səhifə
326 326 field_host: Kompyuter
327 327 field_hours: saat
328 328 field_identifier: Unikal identifikator
329 329 field_identity_url: OpenID URL
330 330 field_is_closed: Tapşırıq bağlanıb
331 331 field_is_default: Susmaya görə tapşırıq
332 332 field_is_filter: Filtr kimi istifadə edilir
333 333 field_is_for_all: Bütün layihələr üçün
334 334 field_is_in_roadmap: Operativ planda əks olunan tapşırıqlar
335 335 field_is_public: Ümümaçıq
336 336 field_is_required: Mütləq
337 337 field_issue_to: Əlaqəli tapşırıqlar
338 338 field_issue: Tapşırıq
339 339 field_language: Dil
340 340 field_last_login_on: Son qoşulma
341 341 field_lastname: Soyad
342 342 field_login: İstifadəçi
343 343 field_mail: e-poçt
344 344 field_mail_notification: e-poçt ilə bildiriş
345 345 field_max_length: maksimal uzunluq
346 346 field_min_length: minimal uzunluq
347 347 field_name: Ad
348 348 field_new_password: Yeni parol
349 349 field_notes: Qeyd
350 350 field_onthefly: Tez bir zamanda istifadəçinin yaradılması
351 351 field_parent_title: Valideyn səhifə
352 352 field_parent: Valideyn layihə
353 353 field_parent_issue: Valideyn tapşırıq
354 354 field_password_confirmation: Təsdiq
355 355 field_password: Parol
356 356 field_port: Port
357 357 field_possible_values: Mümkün olan təyinatlar
358 358 field_priority: Prioritet
359 359 field_project: Layihə
360 360 field_redirect_existing_links: Mövcud olan istinadları istiqamətləndirmək
361 361 field_regexp: Müntəzəm ifadə
362 362 field_role: Rol
363 363 field_searchable: Axtarış üçün açıqdır
364 364 field_spent_on: Tarix
365 365 field_start_date: Başlanıb
366 366 field_start_page: Başlanğıc səhifə
367 367 field_status: Status
368 368 field_subject: Mövzu
369 369 field_subproject: Altlayihə
370 370 field_summary: Qısa təsvir
371 371 field_text: Mətn sahəsi
372 372 field_time_entries: Sərf olunan zaman
373 373 field_time_zone: Saat qurşağı
374 374 field_title: Başlıq
375 375 field_tracker: Treker
376 376 field_type: Tip
377 377 field_updated_on: Yenilənib
378 378 field_url: URL
379 379 field_user: İstifadəçi
380 380 field_value: Təyinat
381 381 field_version: Variant
382 382 field_watcher: Nəzarətçi
383 383
384 384 general_csv_decimal_separator: ','
385 385 general_csv_encoding: UTF-8
386 386 general_csv_separator: ';'
387 387 general_pdf_fontname: freesans
388 388 general_pdf_monospaced_fontname: freemono
389 389 general_first_day_of_week: '1'
390 390 general_lang_name: 'Azerbaijanian (Azeri)'
391 391 general_text_no: 'xeyr'
392 392 general_text_No: 'Xeyr'
393 393 general_text_yes: 'bəli'
394 394 general_text_Yes: 'Bəli'
395 395
396 396 label_activity: Görülən işlər
397 397 label_add_another_file: Bir fayl daha əlavə etmək
398 398 label_added_time_by: "Əlavə etdi %{author} %{age} əvvəl"
399 399 label_added: əlavə edilib
400 400 label_add_note: Qeydi əlavə etmək
401 401 label_administration: İnzibatçılıq
402 402 label_age: Yaş
403 403 label_ago: gün əvvəl
404 404 label_all_time: hər zaman
405 405 label_all_words: Bütün sözlər
406 406 label_all: hamı
407 407 label_and_its_subprojects: "%{value} bütün altlayihələr"
408 408 label_applied_status: Tətbiq olunan status
409 409 label_ascending: Artmaya görə
410 410 label_assigned_to_me_issues: Mənim tapşırıqlarım
411 411 label_associated_revisions: Əlaqəli redaksiyalar
412 412 label_attachment: Fayl
413 413 label_attachment_delete: Faylı silmək
414 414 label_attachment_new: Yeni fayl
415 415 label_attachment_plural: Fayllar
416 416 label_attribute: Atribut
417 417 label_attribute_plural: Atributlar
418 418 label_authentication: Autentifikasiya
419 419 label_auth_source: Autentifikasiyanın rejimi
420 420 label_auth_source_new: Autentifikasiyanın yeni rejimi
421 421 label_auth_source_plural: Autentifikasiyanın rejimləri
422 422 label_blocked_by: bloklanır
423 423 label_blocks: bloklayır
424 424 label_board: Forum
425 425 label_board_new: Yeni forum
426 426 label_board_plural: Forumlar
427 427 label_boolean: Məntiqi
428 428 label_browse: Baxış
429 429 label_bulk_edit_selected_issues: Seçilən bütün tapşırıqları redaktə etmək
430 430 label_calendar: Təqvim
431 431 label_calendar_filter: O cümlədən
432 432 label_calendar_no_assigned: Mənim deyil
433 433 label_change_plural: Dəyişikliklər
434 434 label_change_properties: Xassələri dəyişmək
435 435 label_change_status: Statusu dəyişmək
436 436 label_change_view_all: Bütün dəyişikliklərə baxmaq
437 437 label_changes_details: Bütün dəyişikliklərə görə təfsilatlar
438 438 label_changeset_plural: Dəyişikliklər
439 439 label_chronological_order: Xronoloji ardıcıllıq ilə
440 440 label_closed_issues: Bağlıdır
441 441 label_closed_issues_plural: bağlıdır
442 442 label_closed_issues_plural2: bağlıdır
443 443 label_closed_issues_plural5: bağlıdır
444 444 label_comment: şərhlər
445 445 label_comment_add: Şərhləri qeyd etmək
446 446 label_comment_added: Əlavə olunmuş şərhlər
447 447 label_comment_delete: Şərhi silmək
448 448 label_comment_plural: Şərhlər
449 449 label_comment_plural2: Şərhlər
450 450 label_comment_plural5: şərhlərin
451 451 label_commits_per_author: İstifadəçi üzərində dəyişikliklər
452 452 label_commits_per_month: Ay üzərində dəyişikliklər
453 453 label_confirmation: Təsdiq
454 454 label_contains: tərkibi
455 455 label_copied: surəti köçürülüb
456 456 label_copy_workflow_from: görülən işlərin ardıcıllığının surətini köçürmək
457 457 label_current_status: Cari status
458 458 label_current_version: Cari variant
459 459 label_custom_field: Sazlanan sahə
460 460 label_custom_field_new: Yeni sazlanan sahə
461 461 label_custom_field_plural: Sazlanan sahələr
462 462 label_date_from: С
463 463 label_date_from_to: С %{start} по %{end}
464 464 label_date_range: vaxt intervalı
465 465 label_date_to: üzrə
466 466 label_date: Tarix
467 467 label_day_plural: gün
468 468 label_default: Susmaya görə
469 469 label_default_columns: Susmaya görə sütunlar
470 470 label_deleted: silinib
471 471 label_descending: Azalmaya görə
472 472 label_details: Təfsilatlar
473 473 label_diff_inline: mətndə
474 474 label_diff_side_by_side: Yanaşı
475 475 label_disabled: söndürülüb
476 476 label_display: Təsvir
477 477 label_display_per_page: "Səhifəyə: %{value}"
478 478 label_document: Sənəd
479 479 label_document_added: Sənəd əlavə edilib
480 480 label_document_new: Yeni sənəd
481 481 label_document_plural: Sənədlər
482 482 label_downloads_abbr: Yükləmələr
483 483 label_duplicated_by: çoxaldılır
484 484 label_duplicates: çoxaldır
485 485 label_enumeration_new: Yeni qiymət
486 486 label_enumerations: Qiymətlərin siyahısı
487 487 label_environment: Mühit
488 488 label_equals: sayılır
489 489 label_example: Nümunə
490 490 label_export_to: ixrac etmək
491 491 label_feed_plural: Atom
492 492 label_feeds_access_key_created_on: "Atom-ə giriş açarı %{value} əvvəl yaradılıb"
493 493 label_f_hour: "%{value} saat"
494 494 label_f_hour_plural: "%{value} saat"
495 495 label_file_added: Fayl əlavə edilib
496 496 label_file_plural: Fayllar
497 497 label_filter_add: Filtr əlavə etmək
498 498 label_filter_plural: Filtrlər
499 499 label_float: Həqiqi ədəd
500 500 label_follows: Əvvəlki
501 501 label_gantt: Qant diaqramması
502 502 label_general: Ümumi
503 503 label_generate_key: Açarı generasiya etmək
504 504 label_greater_or_equal: ">="
505 505 label_help: Kömək
506 506 label_history: Tarixçə
507 507 label_home: Ana səhifə
508 508 label_incoming_emails: Məlumatların qəbulu
509 509 label_index_by_date: Səhifələrin tarixçəsi
510 510 label_index_by_title: Başlıq
511 511 label_information_plural: İnformasiya
512 512 label_information: İnformasiya
513 513 label_in_less_than: az
514 514 label_in_more_than: çox
515 515 label_integer: Tam
516 516 label_internal: Daxili
517 517 label_in: da (də)
518 518 label_issue: Tapşırıq
519 519 label_issue_added: Tapşırıq əlavə edilib
520 520 label_issue_category_new: Yeni kateqoriya
521 521 label_issue_category_plural: Tapşırığın kateqoriyası
522 522 label_issue_category: Tapşırığın kateqoriyası
523 523 label_issue_new: Yeni tapşırıq
524 524 label_issue_plural: Tapşırıqlar
525 525 label_issues_by: "%{value} üzrə çeşidləmək"
526 526 label_issue_status_new: Yeni status
527 527 label_issue_status_plural: Tapşırıqların statusu
528 528 label_issue_status: Tapşırığın statusu
529 529 label_issue_tracking: Tapşırıqlar
530 530 label_issue_updated: Tapşırıq yenilənib
531 531 label_issue_view_all: Bütün tapşırıqlara baxmaq
532 532 label_issue_watchers: Nəzarətçilər
533 533 label_jump_to_a_project: ... layihəyə keçid
534 534 label_language_based: Dilin əsasında
535 535 label_last_changes: "%{count} az dəyişiklik"
536 536 label_last_login: Sonuncu qoşulma
537 537 label_last_month: sonuncu ay
538 538 label_last_n_days: "son %{count} gün"
539 539 label_last_week: sonuncu həftə
540 540 label_latest_revision: Sonuncu redaksiya
541 541 label_latest_revision_plural: Sonuncu redaksiyalar
542 542 label_ldap_authentication: LDAP vasitəsilə avtorizasiya
543 543 label_less_or_equal: <=
544 544 label_less_than_ago: gündən az
545 545 label_list: Siyahı
546 546 label_loading: Yükləmə...
547 547 label_logged_as: Daxil olmusunuz
548 548 label_login: Daxil olmaq
549 549 label_login_with_open_id_option: və ya OpenID vasitəsilə daxil olmaq
550 550 label_logout: Çıxış
551 551 label_max_size: Maksimal ölçü
552 552 label_member_new: Yeni iştirakçı
553 553 label_member: İştirakçı
554 554 label_member_plural: İştirakçılar
555 555 label_message_last: Sonuncu məlumat
556 556 label_message_new: Yeni məlumat
557 557 label_message_plural: Məlumatlar
558 558 label_message_posted: Məlumat əlavə olunub
559 559 label_me: mənə
560 560 label_min_max_length: Minimal - maksimal uzunluq
561 561 label_modified: dəyişilib
562 562 label_module_plural: Modullar
563 563 label_months_from: ay
564 564 label_month: Ay
565 565 label_more_than_ago: gündən əvvəl
566 566 label_more: Çox
567 567 label_my_account: Mənim hesabım
568 568 label_my_page: Mənim səhifəm
569 569 label_my_page_block: Mənim səhifəmin bloku
570 570 label_my_projects: Mənim layihələrim
571 571 label_new: Yeni
572 572 label_new_statuses_allowed: İcazə verilən yeni statuslar
573 573 label_news_added: Xəbər əlavə edilib
574 574 label_news_latest: Son xəbərlər
575 575 label_news_new: Xəbər əlavə etmək
576 576 label_news_plural: Xəbərlər
577 577 label_news_view_all: Bütün xəbərlərə baxmaq
578 578 label_news: Xəbərlər
579 579 label_next: Növbəti
580 580 label_nobody: heç kim
581 581 label_no_change_option: (Dəyişiklik yoxdur)
582 582 label_no_data: Təsvir üçün verilənlər yoxdur
583 583 label_none: yoxdur
584 584 label_not_contains: mövcud deyil
585 585 label_not_equals: sayılmır
586 586 label_open_issues: açıqdır
587 587 label_open_issues_plural: açıqdır
588 588 label_open_issues_plural2: açıqdır
589 589 label_open_issues_plural5: açıqdır
590 590 label_optional_description: Təsvir (vacib deyil)
591 591 label_options: Opsiyalar
592 592 label_overall_activity: Görülən işlərin toplu hesabatı
593 593 label_overview: Baxış
594 594 label_password_lost: Parolun bərpası
595 595 label_permissions_report: Giriş hüquqları üzrə hesabat
596 596 label_permissions: Giriş hüquqları
597 597 label_personalize_page: bu səhifəni fərdiləşdirmək
598 598 label_planning: Planlaşdırma
599 599 label_please_login: Xahiş edirik, daxil olun.
600 600 label_plugins: Modullar
601 601 label_precedes: növbəti
602 602 label_preferences: Üstünlük
603 603 label_preview: İlkin baxış
604 604 label_previous: Əvvəlki
605 605 label_profile: Profil
606 606 label_project: Layihə
607 607 label_project_all: Bütün layihələr
608 608 label_project_copy_notifications: Layihənin surətinin çıxarılması zamanı elektron poçt ilə bildiriş göndərmək
609 609 label_project_latest: Son layihələr
610 610 label_project_new: Yeni layihə
611 611 label_project_plural: Layihələr
612 612 label_project_plural2: layihəni
613 613 label_project_plural5: layihələri
614 614 label_public_projects: Ümumi layihələr
615 615 label_query: Yadda saxlanılmış sorğu
616 616 label_query_new: Yeni sorğu
617 617 label_query_plural: Yadda saxlanılmış sorğular
618 618 label_read: Oxu...
619 619 label_register: Qeydiyyat
620 620 label_registered_on: Qeydiyyatdan keçib
621 621 label_registration_activation_by_email: e-poçt üzrə hesabımın aktivləşdirilməsi
622 622 label_registration_automatic_activation: uçot qeydlərinin avtomatik aktivləşdirilməsi
623 623 label_registration_manual_activation: uçot qeydlərini əl ilə aktivləşdirmək
624 624 label_related_issues: Əlaqəli tapşırıqlar
625 625 label_relates_to: əlaqəlidir
626 626 label_relation_delete: Əlaqəni silmək
627 627 label_relation_new: Yeni münasibət
628 628 label_renamed: adını dəyişmək
629 629 label_reply_plural: Cavablar
630 630 label_report: Hesabat
631 631 label_report_plural: Hesabatlar
632 632 label_reported_issues: Yaradılan tapşırıqlar
633 633 label_repository: Saxlayıcı
634 634 label_repository_plural: Saxlayıcı
635 635 label_result_plural: Nəticələr
636 636 label_reverse_chronological_order: Əks ardıcıllıqda
637 637 label_revision: Redaksiya
638 638 label_revision_plural: Redaksiyalar
639 639 label_roadmap: Operativ plan
640 640 label_roadmap_due_in: "%{value} müddətində"
641 641 label_roadmap_no_issues: bu versiya üçün tapşırıq yoxdur
642 642 label_roadmap_overdue: "gecikmə %{value}"
643 643 label_role: Rol
644 644 label_role_and_permissions: Rollar və giriş hüquqları
645 645 label_role_new: Yeni rol
646 646 label_role_plural: Rollar
647 647 label_scm: Saxlayıcının tipi
648 648 label_search: Axtarış
649 649 label_search_titles_only: Ancaq adlarda axtarmaq
650 650 label_send_information: İstifadəçiyə uçot qeydləri üzrə informasiyanı göndərmək
651 651 label_send_test_email: Yoxlama üçün email göndərmək
652 652 label_settings: Sazlamalar
653 653 label_show_completed_versions: Bitmiş variantları göstərmək
654 654 label_sort: Çeşidləmək
655 655 label_sort_by: "%{value} üzrə çeşidləmək"
656 656 label_sort_higher: Yuxarı
657 657 label_sort_highest: Əvvələ qayıt
658 658 label_sort_lower: Aşağı
659 659 label_sort_lowest: Sona qayıt
660 660 label_spent_time: Sərf olunan vaxt
661 661 label_statistics: Statistika
662 662 label_stay_logged_in: Sistemdə qalmaq
663 663 label_string: Mətn
664 664 label_subproject_plural: Altlayihələr
665 665 label_subtask_plural: Alt tapşırıqlar
666 666 label_text: Uzun mətn
667 667 label_theme: Mövzu
668 668 label_this_month: bu ay
669 669 label_this_week: bu həftə
670 670 label_this_year: bu il
671 671 label_time_tracking: Vaxtın uçotu
672 672 label_timelog_today: Bu günə sərf olunan vaxt
673 673 label_today: bu gün
674 674 label_topic_plural: Mövzular
675 675 label_total: Cəmi
676 676 label_tracker: Treker
677 677 label_tracker_new: Yeni treker
678 678 label_tracker_plural: Trekerlər
679 679 label_updated_time: "%{value} əvvəl yenilənib"
680 680 label_updated_time_by: "%{author} %{age} əvvəl yenilənib"
681 681 label_used_by: İstifadə olunur
682 682 label_user: İstifasdəçi
683 683 label_user_activity: "İstifadəçinin gördüyü işlər %{value}"
684 684 label_user_mail_no_self_notified: "Tərəfimdən edilən dəyişikliklər haqqında məni xəbərdar etməmək"
685 685 label_user_mail_option_all: "Mənim layihələrimdəki bütün hadisələr haqqında"
686 686 label_user_mail_option_selected: "Yalnız seçilən layihədəki bütün hadisələr haqqında..."
687 687 label_user_mail_option_only_owner: Yalnız sahibi olduğum obyektlər üçün
688 688 label_user_mail_option_only_my_events: Yalnız izlədiyim və ya iştirak etdiyim obyektlər üçün
689 689 label_user_mail_option_only_assigned: Yalnız mənə təyin edilən obyektlər üçün
690 690 label_user_new: Yeni istifadəçi
691 691 label_user_plural: İstifadəçilər
692 692 label_version: Variant
693 693 label_version_new: Yeni variant
694 694 label_version_plural: Variantlar
695 695 label_view_diff: Fərqlərə baxmaq
696 696 label_view_revisions: Redaksiyalara baxmaq
697 697 label_watched_issues: Tapşırığın izlənilməsi
698 698 label_week: Həftə
699 699 label_wiki: Wiki
700 700 label_wiki_edit: Wiki-nin redaktəsi
701 701 label_wiki_edit_plural: Wiki
702 702 label_wiki_page: Wiki səhifəsi
703 703 label_wiki_page_plural: Wiki səhifələri
704 704 label_workflow: Görülən işlərin ardıcıllığı
705 705 label_x_closed_issues_abbr:
706 706 zero: "0 bağlıdır"
707 707 one: "1 bağlanıb"
708 708 few: "%{count} bağlıdır"
709 709 many: "%{count} bağlıdır"
710 710 other: "%{count} bağlıdır"
711 711 label_x_comments:
712 712 zero: "şərh yoxdur"
713 713 one: "1 şərh"
714 714 few: "%{count} şərhlər"
715 715 many: "%{count} şərh"
716 716 other: "%{count} şərh"
717 717 label_x_open_issues_abbr:
718 718 zero: "0 açıqdır"
719 719 one: "1 açıq"
720 720 few: "%{count} açıqdır"
721 721 many: "%{count} açıqdır"
722 722 other: "%{count} açıqdır"
723 723 label_x_projects:
724 724 zero: "layihələr yoxdur"
725 725 one: "1 layihə"
726 726 few: "%{count} layihə"
727 727 many: "%{count} layihə"
728 728 other: "%{count} layihə"
729 729 label_year: İl
730 730 label_yesterday: dünən
731 731
732 732 mail_body_account_activation_request: "Yeni istifadəçi qeydiyyatdan keçib (%{value}). Uçot qeydi Sizin təsdiqinizi gözləyir:"
733 733 mail_body_account_information: Sizin uçot qeydiniz haqqında informasiya
734 734 mail_body_account_information_external: "Siz özünüzün %{value} uçot qeydinizi giriş üçün istifadə edə bilərsiniz."
735 735 mail_body_lost_password: 'Parolun dəyişdirilməsi üçün aşağıdakı linkə keçin:'
736 736 mail_body_register: 'Uçot qeydinin aktivləşdirilməsi üçün aşağıdakı linkə keçin:'
737 737 mail_body_reminder: "növbəti %{days} gün üçün Sizə təyin olunan %{count}:"
738 738 mail_subject_account_activation_request: "Sistemdə istifadəçinin aktivləşdirilməsi üçün sorğu %{value}"
739 739 mail_subject_lost_password: "Sizin %{value} parolunuz"
740 740 mail_subject_register: "Uçot qeydinin aktivləşdirilməsi %{value}"
741 741 mail_subject_reminder: "yaxın %{days} gün üçün Sizə təyin olunan %{count}"
742 742
743 743 notice_account_activated: Sizin uçot qeydiniz aktivləşdirilib. Sistemə daxil ola bilərsiniz.
744 744 notice_account_invalid_creditentials: İstifadəçi adı və ya parolu düzgün deyildir
745 745 notice_account_lost_email_sent: Sizə yeni parolun seçimi ilə bağlı təlimatı əks etdirən məktub göndərilmişdir.
746 746 notice_account_password_updated: Parol müvəffəqiyyətlə yeniləndi.
747 747 notice_account_pending: "Sizin uçot qeydiniz yaradıldı inzibatçının təsdiqini gözləyir."
748 748 notice_account_register_done: Uçot qeydi müvəffəqiyyətlə yaradıldı. Sizin uçot qeydinizin aktivləşdirilməsi üçün elektron poçtunuza göndərilən linkə keçin.
749 749 notice_account_unknown_email: Naməlum istifadəçi.
750 750 notice_account_updated: Uçot qeydi müvəffəqiyyətlə yeniləndi.
751 751 notice_account_wrong_password: Parol düzgün deyildir
752 752 notice_can_t_change_password: Bu uçot qeydi üçün xarici autentifikasiya mənbəyi istifadə olunur. Parolu dəyişmək mümkün deyildir.
753 753 notice_default_data_loaded: Susmaya görə konfiqurasiya yüklənilmişdir.
754 754 notice_email_error: "Məktubun göndərilməsi zamanı səhv baş vermişdi (%{value})"
755 755 notice_email_sent: "Məktub göndərilib %{value}"
756 756 notice_failed_to_save_issues: "Seçilən %{total} içərisindən %{count} bəndləri saxlamaq mümkün olmadı: %{ids}."
757 757 notice_failed_to_save_members: "İştirakçını (ları) yadda saxlamaq mümkün olmadı: %{errors}."
758 758 notice_feeds_access_key_reseted: Sizin Atom giriş açarınız sıfırlanmışdır.
759 759 notice_file_not_found: Daxil olmağa çalışdığınız səhifə mövcud deyildir və ya silinib.
760 760 notice_locking_conflict: İnformasiya digər istifadəçi tərəfindən yenilənib.
761 761 notice_no_issue_selected: "Heç bir tapşırıq seçilməyib! Xahiş edirik, redaktə etmək istədiyiniz tapşırığı qeyd edin."
762 762 notice_not_authorized: Sizin bu səhifəyə daxil olmaq hüququnuz yoxdur.
763 763 notice_successful_connection: Qoşulma müvəffəqiyyətlə yerinə yetirilib.
764 764 notice_successful_create: Yaratma müvəffəqiyyətlə yerinə yetirildi.
765 765 notice_successful_delete: Silinmə müvəffəqiyyətlə yerinə yetirildi.
766 766 notice_successful_update: Yeniləmə müvəffəqiyyətlə yerinə yetirildi.
767 767 notice_unable_delete_version: Variantı silmək mümkün olmadı.
768 768
769 769 permission_add_issues: Tapşırıqların əlavə edilməsi
770 770 permission_add_issue_notes: Qeydlərin əlavə edilməsi
771 771 permission_add_issue_watchers: Nəzarətçilərin əlavə edilməsi
772 772 permission_add_messages: Məlumatların göndərilməsi
773 773 permission_browse_repository: Saxlayıcıya baxış
774 774 permission_comment_news: Xəbərlərə şərh
775 775 permission_commit_access: Saxlayıcıda faylların dəyişdirilməsi
776 776 permission_delete_issues: Tapşırıqların silinməsi
777 777 permission_delete_messages: Məlumatların silinməsi
778 778 permission_delete_own_messages: Şəxsi məlumatların silinməsi
779 779 permission_delete_wiki_pages: Wiki-səhifələrin silinməsi
780 780 permission_delete_wiki_pages_attachments: Bərkidilən faylların silinməsi
781 781 permission_edit_issue_notes: Qeydlərin redaktə edilməsi
782 782 permission_edit_issues: Tapşırıqların redaktə edilməsi
783 783 permission_edit_messages: Məlumatların redaktə edilməsi
784 784 permission_edit_own_issue_notes: Şəxsi qeydlərin redaktə edilməsi
785 785 permission_edit_own_messages: Şəxsi məlumatların redaktə edilməsi
786 786 permission_edit_own_time_entries: Şəxsi vaxt uçotunun redaktə edilməsi
787 787 permission_edit_project: Layihələrin redaktə edilməsi
788 788 permission_edit_time_entries: Vaxt uçotunun redaktə edilməsi
789 789 permission_edit_wiki_pages: Wiki-səhifənin redaktə edilməsi
790 790 permission_export_wiki_pages: Wiki-səhifənin ixracı
791 791 permission_log_time: Sərf olunan vaxtın uçotu
792 792 permission_view_changesets: Saxlayıcı dəyişikliklərinə baxış
793 793 permission_view_time_entries: Sərf olunan vaxta baxış
794 794 permission_manage_project_activities: Layihə üçün hərəkət tiplərinin idarə edilməsi
795 795 permission_manage_boards: Forumların idarə edilməsi
796 796 permission_manage_categories: Tapşırıq kateqoriyalarının idarə edilməsi
797 797 permission_manage_files: Faylların idarə edilməsi
798 798 permission_manage_issue_relations: Tapşırıq bağlantılarının idarə edilməsi
799 799 permission_manage_members: İştirakçıların idarə edilməsi
800 800 permission_manage_news: Xəbərlərin idarə edilməsi
801 801 permission_manage_public_queries: Ümumi sorğuların idarə edilməsi
802 802 permission_manage_repository: Saxlayıcının idarə edilməsi
803 803 permission_manage_subtasks: Alt tapşırıqların idarə edilməsi
804 804 permission_manage_versions: Variantların idarə edilməsi
805 805 permission_manage_wiki: Wiki-nin idarə edilməsi
806 806 permission_move_issues: Tapşırıqların köçürülməsi
807 807 permission_protect_wiki_pages: Wiki-səhifələrin bloklanması
808 808 permission_rename_wiki_pages: Wiki-səhifələrin adının dəyişdirilməsi
809 809 permission_save_queries: Sorğuların yadda saxlanılması
810 810 permission_select_project_modules: Layihə modulunun seçimi
811 811 permission_view_calendar: Təqvimə baxış
812 812 permission_view_documents: Sənədlərə baxış
813 813 permission_view_files: Fayllara baxış
814 814 permission_view_gantt: Qant diaqramına baxış
815 815 permission_view_issue_watchers: Nəzarətçilərin siyahılarına baxış
816 816 permission_view_messages: Məlumatlara baxış
817 817 permission_view_wiki_edits: Wiki tarixçəsinə baxış
818 818 permission_view_wiki_pages: Wiki-yə baxış
819 819
820 820 project_module_boards: Forumlar
821 821 project_module_documents: Sənədlər
822 822 project_module_files: Fayllar
823 823 project_module_issue_tracking: Tapşırıqlar
824 824 project_module_news: Xəbərlər
825 825 project_module_repository: Saxlayıcı
826 826 project_module_time_tracking: Vaxtın uçotu
827 827 project_module_wiki: Wiki
828 828 project_module_gantt: Qant diaqramı
829 829 project_module_calendar: Təqvim
830 830
831 831 setting_activity_days_default: Görülən işlərdə əks olunan günlərin sayı
832 832 setting_app_subtitle: Əlavənin sərlövhəsi
833 833 setting_app_title: Əlavənin adı
834 834 setting_attachment_max_size: Yerləşdirmənin maksimal ölçüsü
835 835 setting_autofetch_changesets: Saxlayıcının dəyişikliklərini avtomatik izləmək
836 836 setting_autologin: Avtomatik giriş
837 837 setting_bcc_recipients: Gizli surətləri istifadə etmək (BCC)
838 838 setting_cache_formatted_text: Formatlaşdırılmış mətnin heşlənməsi
839 839 setting_commit_fix_keywords: Açar sözlərin təyini
840 840 setting_commit_ref_keywords: Axtarış üçün açar sözlər
841 841 setting_cross_project_issue_relations: Layihələr üzrə tapşırıqların kəsişməsinə icazə vermək
842 842 setting_date_format: Tarixin formatı
843 843 setting_default_language: Susmaya görə dil
844 844 setting_default_notification_option: Susmaya görə xəbərdarlıq üsulu
845 845 setting_default_projects_public: Yeni layihələr ümumaçıq hesab edilir
846 846 setting_diff_max_lines_displayed: diff üçün sətirlərin maksimal sayı
847 847 setting_display_subprojects_issues: Susmaya görə altlayihələrin əks olunması
848 848 setting_emails_footer: Məktubun sətiraltı qeydləri
849 849 setting_enabled_scm: Daxil edilən SCM
850 850 setting_feeds_limit: Atom axını üçün başlıqların sayının məhdudlaşdırılması
851 851 setting_file_max_size_displayed: Əks olunma üçün mətn faylının maksimal ölçüsü
852 852 setting_gravatar_enabled: İstifadəçi avatarını Gravatar-dan istifadə etmək
853 853 setting_host_name: Kompyuterin adı
854 854 setting_issue_list_default_columns: Susmaya görə tapşırıqların siyahısında əks oluna sütunlar
855 855 setting_issues_export_limit: İxrac olunan tapşırıqlar üzrə məhdudiyyətlər
856 856 setting_login_required: Autentifikasiya vacibdir
857 857 setting_mail_from: Çıxan e-poçt ünvanı
858 858 setting_mail_handler_api_enabled: Daxil olan məlumatlar üçün veb-servisi qoşmaq
859 859 setting_mail_handler_api_key: API açar
860 860 setting_openid: Giriş və qeydiyyat üçün OpenID izacə vermək
861 861 setting_per_page_options: Səhifə üçün qeydlərin sayı
862 862 setting_plain_text_mail: Yalnız sadə mətn (HTML olmadan)
863 863 setting_protocol: Protokol
864 864 setting_repository_log_display_limit: Dəyişikliklər jurnalında əks olunan redaksiyaların maksimal sayı
865 865 setting_self_registration: Özünüqeydiyyat
866 866 setting_sequential_project_identifiers: Layihələrin ardıcıl identifikatorlarını generasiya etmək
867 867 setting_sys_api_enabled: Saxlayıcının idarə edilməsi üçün veb-servisi qoşmaq
868 868 setting_text_formatting: Mətnin formatlaşdırılması
869 869 setting_time_format: Vaxtın formatı
870 870 setting_user_format: Adın əks olunma formatı
871 871 setting_welcome_text: Salamlama mətni
872 872 setting_wiki_compression: Wiki tarixçəsinin sıxlaşdırılması
873 873
874 874 status_active: aktivdir
875 875 status_locked: bloklanıb
876 876 status_registered: qeydiyyatdan keçib
877 877
878 878 text_are_you_sure: Siz əminsinizmi?
879 879 text_assign_time_entries_to_project: Qeydiyyata alınmış vaxtı layihəyə bərkitmək
880 880 text_caracters_maximum: "Maksimum %{count} simvol."
881 881 text_caracters_minimum: "%{count} simvoldan az olmamalıdır."
882 882 text_comma_separated: Bir neçə qiymət mümkündür (vergül vasitəsilə).
883 883 text_custom_field_possible_values_info: 'Hər sətirə bir qiymət'
884 884 text_default_administrator_account_changed: İnzibatçının uçot qeydi susmaya görə dəyişmişdir
885 885 text_destroy_time_entries_question: "Bu tapşırıq üçün sərf olunan vaxta görə %{hours} saat qeydiyyata alınıb. Siz etmək istəyirsiniz?"
886 886 text_destroy_time_entries: Qeydiyyata alınmış vaxtı silmək
887 887 text_diff_truncated: '... Bu diff məhduddur, çünki əks olunan maksimal ölçünü keçir.'
888 888 text_email_delivery_not_configured: "Poçt serveri ilə işin parametrləri sazlanmayıb e-poçt ilə bildiriş funksiyası aktiv deyildir.\nSizin SMTP-server üçün parametrləri config/configuration.yml faylından sazlaya bilərsiniz. Dəyişikliklərin tətbiq edilməsi üçün əlavəni yenidən başladın."
889 889 text_enumeration_category_reassign_to: 'Onlara aşağıdakı qiymətləri təyin etmək:'
890 890 text_enumeration_destroy_question: "%{count} obyekt bu qiymətlə bağlıdır."
891 891 text_file_repository_writable: Qeydə giriş imkanı olan saxlayıcı
892 892 text_issue_added: "Yeni tapşırıq yaradılıb %{id} (%{author})."
893 893 text_issue_category_destroy_assignments: Kateqoriyanın təyinatını silmək
894 894 text_issue_category_destroy_question: "Bir neçə tapşırıq (%{count}) bu kateqoriya üçün təyin edilib. Siz etmək istəyirsiniz?"
895 895 text_issue_category_reassign_to: Bu kateqoriya üçün tapşırığı yenidən təyin etmək
896 896 text_issues_destroy_confirmation: 'Seçilən tapşırıqları silmək istədiyinizə əminsinizmi?'
897 897 text_issues_ref_in_commit_messages: Məlumatın mətnindən çıxış edərək tapşırıqların statuslarının tutuşdurulması və dəyişdirilməsi
898 898 text_issue_updated: "Tapşırıq %{id} yenilənib (%{author})."
899 899 text_journal_changed: "Parametr %{label} %{old} - %{new} dəyişib"
900 900 text_journal_deleted: "Parametrin %{old} qiyməti %{label} silinib"
901 901 text_journal_set_to: "%{label} parametri %{value} dəyişib"
902 902 text_length_between: "%{min} %{max} simvollar arasındakı uzunluq."
903 903 text_load_default_configuration: Susmaya görə konfiqurasiyanı yükləmək
904 904 text_min_max_length_info: 0 məhdudiyyətlərin olmadığını bildirir
905 905 text_no_configuration_data: "Rollar, trekerlər, tapşırıqların statusları operativ plan konfiqurasiya olunmayıblar.\nSusmaya görə konfiqurasiyanın yüklənməsi təkidlə xahiş olunur. Siz onu sonradan dəyişə bilərsiniz."
906 906 text_plugin_assets_writable: Modullar kataloqu qeyd üçün açıqdır
907 907 text_project_destroy_confirmation: Siz bu layihə və ona aid olan bütün informasiyanı silmək istədiyinizə əminsinizmi?
908 908 text_reassign_time_entries: 'Qeydiyyata alınmış vaxtı aşağıdakı tapşırığa keçir:'
909 909 text_regexp_info: "məsələn: ^[A-Z0-9]+$"
910 910 text_repository_usernames_mapping: "Saxlayıcının jurnalında tapılan adlarla bağlı olan Redmine istifadəçisini seçin ya yeniləyin.\nEyni ad e-poçta sahib olan istifadəçilər Redmine saxlayıcıda avtomatik əlaqələndirilir."
911 911 text_rmagick_available: RMagick istifadəsi mümkündür (opsional olaraq)
912 912 text_select_mail_notifications: Elektron poçta bildirişlərin göndərilməsi seçim edəcəyiniz hərəkətlərdən asılıdır.
913 913 text_select_project_modules: 'Layihədə istifadə olunacaq modulları seçin:'
914 914 text_status_changed_by_changeset: "%{value} redaksiyada reallaşdırılıb."
915 915 text_subprojects_destroy_warning: "Altlayihələr: %{value} həmçinin silinəcək."
916 916 text_tip_issue_begin_day: tapşırığın başlanğıc tarixi
917 917 text_tip_issue_begin_end_day: elə həmin gün tapşırığın başlanğıc və bitmə tarixi
918 918 text_tip_issue_end_day: tapşırığın başa çatma tarixi
919 919 text_tracker_no_workflow: Bu treker üçün hərəkətlərin ardıcıllığı müəyyən ediməyib
920 920 text_unallowed_characters: Qadağan edilmiş simvollar
921 921 text_user_mail_option: "Seçilməyən layihələr üçün Siz yalnız baxdığınız ya iştirak etdiyiniz layihələr barədə bildiriş alacaqsınız məsələn, müəllifi olduğunuz layihələr ya o layihələr ki, Sizə təyin edilib)."
922 922 text_user_wrote: "%{value} yazıb:"
923 923 text_wiki_destroy_confirmation: Siz bu Wiki və onun tərkibindəkiləri silmək istədiyinizə əminsinizmi?
924 924 text_workflow_edit: Vəziyyətlərin ardıcıllığını redaktə etmək üçün rol və trekeri seçin
925 925
926 926 warning_attachments_not_saved: "faylın (ların) %{count} yadda saxlamaq mümkün deyildir."
927 927 text_wiki_page_destroy_question: Bu səhifə %{descendants} yaxın və çox yaxın səhifələrə malikdir. Siz nə etmək istəyirsiniz?
928 928 text_wiki_page_reassign_children: Cari səhifə üçün yaxın səhifələri yenidən təyin etmək
929 929 text_wiki_page_nullify_children: Yaxın səhifələri baş səhifələr etmək
930 930 text_wiki_page_destroy_children: Yaxın və çox yaxın səhifələri silmək
931 931 setting_password_min_length: Parolun minimal uzunluğu
932 932 field_group_by: Nəticələri qruplaşdırmaq
933 933 mail_subject_wiki_content_updated: "Wiki-səhifə '%{id}' yenilənmişdir"
934 934 label_wiki_content_added: Wiki-səhifə əlavə olunub
935 935 mail_subject_wiki_content_added: "Wiki-səhifə '%{id}' əlavə edilib"
936 936 mail_body_wiki_content_added: "%{author} Wiki-səhifəni '%{id}' əlavə edib."
937 937 label_wiki_content_updated: Wiki-səhifə yenilənib
938 938 mail_body_wiki_content_updated: "%{author} Wiki-səhifəni '%{id}' yeniləyib."
939 939 permission_add_project: Layihənin yaradılması
940 940 setting_new_project_user_role_id: Layihəni yaradan istifadəçiyə təyin olunan rol
941 941 label_view_all_revisions: Bütün yoxlamaları göstərmək
942 942 label_tag: Nişan
943 943 label_branch: Şöbə
944 944 error_no_tracker_in_project: Bu layihə ilə heç bir treker assosiasiya olunmayıb. Layihənin sazlamalarını yoxlayın.
945 945 error_no_default_issue_status: Susmaya görə tapşırıqların statusu müəyyən edilməyib. Sazlamaları yoxlayın (bax. "İnzibatçılıq -> Tapşırıqların statusu").
946 946 label_group_plural: Qruplar
947 947 label_group: Qrup
948 948 label_group_new: Yeni qrup
949 949 label_time_entry_plural: Sərf olunan vaxt
950 950 text_journal_added: "%{label} %{value} əlavə edilib"
951 951 field_active: Aktiv
952 952 enumeration_system_activity: Sistemli
953 953 permission_delete_issue_watchers: Nəzarətçilərin silinməsi
954 954 version_status_closed: Bağlanıb
955 955 version_status_locked: bloklanıb
956 956 version_status_open: açıqdır
957 957 error_can_not_reopen_issue_on_closed_version: Bağlı varianta təyin edilən tapşırıq yenidən açıq ola bilməz
958 958 label_user_anonymous: Anonim
959 959 button_move_and_follow: Yerləşdirmək və keçid
960 960 setting_default_projects_modules: Yeni layihələr üçün susmaya görə daxil edilən modullar
961 961 setting_gravatar_default: Susmaya görə Gravatar təsviri
962 962 field_sharing: Birgə istifadə
963 963 label_version_sharing_hierarchy: Layihələrin iyerarxiyasına görə
964 964 label_version_sharing_system: bütün layihələr ilə
965 965 label_version_sharing_descendants: Alt layihələr ilə
966 966 label_version_sharing_tree: Layihələrin iyerarxiyası ilə
967 967 label_version_sharing_none: Birgə istifadə olmadan
968 968 error_can_not_archive_project: Bu layihə arxivləşdirilə bilməz
969 969 button_duplicate: Təkrarlamaq
970 970 button_copy_and_follow: Surətini çıxarmaq və davam etmək
971 971 label_copy_source: Mənbə
972 972 setting_issue_done_ratio: Sahənin köməyi ilə tapşırığın hazırlığını nəzərə almaq
973 973 setting_issue_done_ratio_issue_status: Tapşırığın statusu
974 974 error_issue_done_ratios_not_updated: Tapşırıqların hazırlıq parametri yenilənməyib
975 975 error_workflow_copy_target: Məqsədə uyğun trekerləri və rolları seçin
976 976 setting_issue_done_ratio_issue_field: Tapşırığın hazırlıq səviyyəsi
977 977 label_copy_same_as_target: Məqsəddə olduğu kimi
978 978 label_copy_target: Məqsəd
979 979 notice_issue_done_ratios_updated: Parametr &laquo;hazırlıq&raquo; yenilənib.
980 980 error_workflow_copy_source: Cari trekeri və ya rolu seçin
981 981 label_update_issue_done_ratios: Tapşırığın hazırlıq səviyyəsini yeniləmək
982 982 setting_start_of_week: Həftənin birinci günü
983 983 label_api_access_key: API-yə giriş açarı
984 984 text_line_separated: Bİr neçə qiymət icazə verilib (hər sətirə bir qiymət).
985 985 label_revision_id: Yoxlama %{value}
986 986 permission_view_issues: Tapşırıqlara baxış
987 987 label_display_used_statuses_only: Yalnız bu trekerdə istifadə olunan statusları əks etdirmək
988 988 label_api_access_key_created_on: API-yə giriş açarı %{value} əvvəl aradılıb
989 989 label_feeds_access_key: Atom giriş açarı
990 990 notice_api_access_key_reseted: Sizin API giriş açarınız sıfırlanıb.
991 991 setting_rest_api_enabled: REST veb-servisini qoşmaq
992 992 button_show: Göstərmək
993 993 label_missing_api_access_key: API-yə giriş açarı mövcud deyildir
994 994 label_missing_feeds_access_key: Atom-ə giriş açarı mövcud deyildir
995 995 setting_mail_handler_body_delimiters: Bu sətirlərin birindən sonra məktubu qısaltmaq
996 996 permission_add_subprojects: Alt layihələrin yaradılması
997 997 label_subproject_new: Yeni alt layihə
998 998 text_own_membership_delete_confirmation: |-
999 999 Siz bəzi və ya bütün hüquqları silməyə çalışırsınız, nəticədə bu layihəni redaktə etmək hüququnu da itirə bilərsiniz. Davam etmək istədiyinizə əminsinizmi?
1000 1000
1001 1001 label_close_versions: Başa çatmış variantları bağlamaq
1002 1002 label_board_sticky: Bərkidilib
1003 1003 label_board_locked: Bloklanıb
1004 1004 field_principal: Ad
1005 1005 text_zoom_out: Uzaqlaşdırmaq
1006 1006 text_zoom_in: Yaxınlaşdırmaq
1007 1007 notice_unable_delete_time_entry: Jurnalın qeydini silmək mümkün deyildir.
1008 1008 label_overall_spent_time: Cəmi sərf olunan vaxt
1009 1009 label_user_mail_option_none: Hadisə yoxdur
1010 1010 field_member_of_group: Təyin olunmuş qrup
1011 1011 field_assigned_to_role: Təyin olunmuş rol
1012 1012 notice_not_authorized_archived_project: Sorğulanan layihə arxivləşdirilib.
1013 1013 label_principal_search: "İstifadəçini ya qrupu tapmaq:"
1014 1014 label_user_search: "İstifadəçini tapmaq:"
1015 1015 field_visible: Görünmə dərəcəsi
1016 1016 setting_emails_header: Məktubun başlığı
1017 1017
1018 1018 setting_commit_logtime_activity_id: Vaxtın uçotu üçün görülən hərəkətlər
1019 1019 text_time_logged_by_changeset: "%{value} redaksiyada nəzərə alınıb."
1020 1020 setting_commit_logtime_enabled: Vaxt uçotunu qoşmaq
1021 1021 notice_gantt_chart_truncated: Əks oluna biləcək elementlərin maksimal sayı artdığına görə diaqram kəsiləcək (%{max})
1022 1022 setting_gantt_items_limit: Qant diaqramında əks olunan elementlərin maksimal sayı
1023 1023 field_warn_on_leaving_unsaved: Yadda saxlanılmayan mətnin səhifəsi bağlanan zaman xəbərdarlıq etmək
1024 1024 text_warn_on_leaving_unsaved: Tərk etmək istədiyiniz cari səhifədə yadda saxlanılmayan və itə biləcək mətn vardır.
1025 1025 label_my_queries: Mənim yadda saxlanılan sorğularım
1026 1026 text_journal_changed_no_detail: "%{label} yenilənib"
1027 1027 label_news_comment_added: Xəbərə şərh əlavə olunub
1028 1028 button_expand_all: Hamısını aç
1029 1029 button_collapse_all: Hamısını çevir
1030 1030 label_additional_workflow_transitions_for_assignee: İstifadəçi icraçı olduğu zaman əlavə keçidlər
1031 1031 label_additional_workflow_transitions_for_author: İstifadəçi müəllif olduğu zaman əlavə keçidlər
1032 1032 label_bulk_edit_selected_time_entries: Sərf olunan vaxtın seçilən qeydlərinin kütləvi şəkildə dəyişdirilməsi
1033 1033 text_time_entries_destroy_confirmation: Siz sərf olunan vaxtın seçilən qeydlərini silmək istədiyinizə əminsinizmi?
1034 1034 label_role_anonymous: Anonim
1035 1035 label_role_non_member: İştirakçı deyil
1036 1036 label_issue_note_added: Qeyd əlavə olunub
1037 1037 label_issue_status_updated: Status yenilənib
1038 1038 label_issue_priority_updated: Prioritet yenilənib
1039 1039 label_issues_visibility_own: İstifadəçi üçün yaradılan və ya ona təyin olunan tapşırıqlar
1040 1040 field_issues_visibility: Tapşırıqların görünmə dərəcəsi
1041 1041 label_issues_visibility_all: Bütün tapşırıqlar
1042 1042 permission_set_own_issues_private: Şəxsi tapşırıqlar üçün görünmə dərəcəsinin (ümumi/şəxsi) qurulması
1043 1043 field_is_private: Şəxsi
1044 1044 permission_set_issues_private: Tapşırıqlar üçün görünmə dərəcəsinin (ümumi/şəxsi) qurulması
1045 1045 label_issues_visibility_public: Yalnız ümumi tapşırıqlar
1046 1046 text_issues_destroy_descendants_confirmation: Həmçinin %{count} tapşırıq (lar) silinəcək.
1047 1047 field_commit_logs_encoding: Saxlayıcıda şərhlərin kodlaşdırılması
1048 1048 field_scm_path_encoding: Yolun kodlaşdırılması
1049 1049 text_scm_path_encoding_note: "Susmaya görə: UTF-8"
1050 1050 field_path_to_repository: Saxlayıcıya yol
1051 1051 field_root_directory: Kök direktoriya
1052 1052 field_cvs_module: Modul
1053 1053 field_cvsroot: CVSROOT
1054 1054 text_mercurial_repository_note: Lokal saxlayıcı (məsələn, /hgrepo, c:\hgrepo)
1055 1055 text_scm_command: Komanda
1056 1056 text_scm_command_version: Variant
1057 1057 label_git_report_last_commit: Fayllar və direktoriyalar üçün son dəyişiklikləri göstərmək
1058 1058 text_scm_config: Siz config/configuration.yml faylında SCM komandasını sazlaya bilərsiniz. Xahiş olunur, bu faylın redaktəsindən sonra əlavəni işə salın.
1059 1059 text_scm_command_not_available: Variantların nəzarət sisteminin komandasına giriş mümkün deyildir. Xahiş olunur, inzibatçı panelindəki sazlamaları yoxlayın.
1060 1060 notice_issue_successful_create: Tapşırıq %{id} yaradılıb.
1061 1061 label_between: arasında
1062 1062 setting_issue_group_assignment: İstifadəçi qruplarına təyinata icazə vermək
1063 1063 label_diff: Fərq(diff)
1064 1064 text_git_repository_note: "Saxlama yerini göstərin (məs: /gitrepo, c:\\gitrepo)"
1065 1065 description_query_sort_criteria_direction: Çeşidləmə qaydası
1066 1066 description_project_scope: Layihənin həcmi
1067 1067 description_filter: Filtr
1068 1068 description_user_mail_notification: E-poçt Mail xəbərdarlıqlarının sazlaması
1069 1069 description_date_from: Başlama tarixini daxil edin
1070 1070 description_message_content: Mesajın kontenti
1071 1071 description_available_columns: Mövcud sütunlar
1072 1072 description_date_range_interval: Tarixlər diapazonunu seçin
1073 1073 description_issue_category_reassign: Məsələnin kateqoriyasını seçin
1074 1074 description_search: Axtarış sahəsi
1075 1075 description_notes: Qeyd
1076 1076 description_date_range_list: Siyahıdan diapazonu seçin
1077 1077 description_choose_project: Layihələr
1078 1078 description_date_to: Yerinə yetirilmə tarixini daxil edin
1079 1079 description_query_sort_criteria_attribute: Çeşidləmə meyarları
1080 1080 description_wiki_subpages_reassign: Yeni valideyn səhifəsini seçmək
1081 1081 description_selected_columns: Seçilmiş sütunlar
1082 1082 label_parent_revision: Valideyn
1083 1083 label_child_revision: Əsas
1084 1084 error_scm_annotate_big_text_file: Mətn faylının maksimal ölçüsü artdığına görə şərh mümkün deyildir.
1085 1085 setting_default_issue_start_date_to_creation_date: Yeni tapşırıqlar üçün cari tarixi başlanğıc tarixi kimi istifadə etmək
1086 1086 button_edit_section: Bu bölməni redaktə etmək
1087 1087 setting_repositories_encodings: Əlavələrin və saxlayıcıların kodlaşdırılması
1088 1088 description_all_columns: Bütün sütunlar
1089 1089 button_export: İxrac
1090 1090 label_export_options: "%{export_format} ixracın parametrləri"
1091 1091 error_attachment_too_big: Faylın maksimal ölçüsü artdığına görə bu faylı yükləmək mümkün deyildir (%{max_size})
1092 1092 notice_failed_to_save_time_entries: "Səhv N %{ids}. %{total} girişdən %{count} yaddaşa saxlanıla bilmədi."
1093 1093 label_x_issues:
1094 1094 zero: 0 Tapşırıq
1095 1095 one: 1 Tapşırıq
1096 1096 few: "%{count} Tapşırıq"
1097 1097 many: "%{count} Tapşırıq"
1098 1098 other: "%{count} Tapşırıq"
1099 1099 label_repository_new: Yeni saxlayıcı
1100 1100 field_repository_is_default: Susmaya görə saxlayıcı
1101 1101 label_copy_attachments: Əlavənin surətini çıxarmaq
1102 1102 label_item_position: "%{position}/%{count}"
1103 1103 label_completed_versions: Başa çatdırılmış variantlar
1104 1104 text_project_identifier_info: Yalnız kiçik latın hərflərinə (a-z), rəqəmlərə, tire və çicgilərə icazə verilir.<br />Yadda saxladıqdan sonra identifikatoru dəyişmək olmaz.
1105 1105 field_multiple: Çoxsaylı qiymətlər
1106 1106 setting_commit_cross_project_ref: Digər bütün layihələrdə tapşırıqları düzəltmək və istinad etmək
1107 1107 text_issue_conflict_resolution_add_notes: Qeydlərimi əlavə etmək və mənim dəyişikliklərimdən imtina etmək
1108 1108 text_issue_conflict_resolution_overwrite: Dəyişikliklərimi tətbiq etmək (əvvəlki bütün qeydlər yadda saxlanacaq, lakin bəzi qeydlər yenidən yazıla bilər)
1109 1109 notice_issue_update_conflict: Tapşırığı redaktə etdiyiniz zaman kimsə onu artıq dəyişib.
1110 1110 text_issue_conflict_resolution_cancel: Mənim dəyişikliklərimi ləğv etmək və tapşırığı yenidən göstərmək %{link}
1111 1111 permission_manage_related_issues: Əlaqəli tapşırıqların idarə edilməsi
1112 1112 field_auth_source_ldap_filter: LDAP filtri
1113 1113 label_search_for_watchers: Nəzarətçiləri axtarmaq
1114 1114 notice_account_deleted: "Sizin uçot qeydiniz tam olaraq silinib"
1115 1115 setting_unsubscribe: "İstifadəçilərə şəxsi uçot qeydlərini silməyə icazə vermək"
1116 1116 button_delete_my_account: "Mənim uçot qeydlərimi silmək"
1117 1117 text_account_destroy_confirmation: "Sizin uçot qeydiniz bir daha bərpa edilmədən tam olaraq silinəcək.\nDavam etmək istədiyinizə əminsinizmi?"
1118 1118 error_session_expired: Sizin sessiya bitmişdir. Xahiş edirik yenidən daxil olun.
1119 1119 text_session_expiration_settings: "Diqqət: bu sazlamaların dəyişməyi cari sessiyanın bağlanmasına çıxara bilər."
1120 1120 setting_session_lifetime: Sessiyanın maksimal Session maximum həyat müddəti
1121 1121 setting_session_timeout: Sessiyanın qeyri aktivlik müddəti
1122 1122 label_session_expiration: Sessiyanın bitməsi
1123 1123 permission_close_project: Layihəni bağla / yenidən aç
1124 1124 label_show_closed_projects: Bağlı layihələrə baxmaq
1125 1125 button_close: Bağla
1126 1126 button_reopen: Yenidən aç
1127 1127 project_status_active: aktiv
1128 1128 project_status_closed: bağlı
1129 1129 project_status_archived: arxiv
1130 1130 text_project_closed: Bu layihə bağlıdı və yalnız oxuma olar.
1131 1131 notice_user_successful_create: İstifadəçi %{id} yaradıldı.
1132 1132 field_core_fields: Standart sahələr
1133 1133 field_timeout: Zaman aşımı (saniyə ilə)
1134 1134 setting_thumbnails_enabled: Əlavələrin kiçik şəklini göstər
1135 1135 setting_thumbnails_size: Kiçik şəkillərin ölçüsü (piksel ilə)
1136 1136 label_status_transitions: Status keçidləri
1137 1137 label_fields_permissions: Sahələrin icazələri
1138 1138 label_readonly: Ancaq oxumaq üçün
1139 1139 label_required: Tələb olunur
1140 1140 text_repository_identifier_info: Yalnız kiçik latın hərflərinə (a-z), rəqəmlərə, tire və çicgilərə icazə verilir.<br />Yadda saxladıqdan sonra identifikatoru dəyişmək olmaz.
1141 1141 field_board_parent: Ana forum
1142 1142 label_attribute_of_project: Layihə %{name}
1143 1143 label_attribute_of_author: Müəllif %{name}
1144 1144 label_attribute_of_assigned_to: Təyin edilib %{name}
1145 1145 label_attribute_of_fixed_version: Əsas versiya %{name}
1146 1146 label_copy_subtasks: Alt tapşırığın surətini çıxarmaq
1147 1147 label_cross_project_hierarchy: With project hierarchy
1148 1148 permission_edit_documents: Edit documents
1149 1149 button_hide: Hide
1150 1150 text_turning_multiple_off: If you disable multiple values, multiple values will be removed in order to preserve only one value per item.
1151 1151 label_any: any
1152 1152 label_cross_project_system: With all projects
1153 1153 label_last_n_weeks: last %{count} weeks
1154 1154 label_in_the_past_days: in the past
1155 1155 label_copied_to: Copied to
1156 1156 permission_set_notes_private: Set notes as private
1157 1157 label_in_the_next_days: in the next
1158 1158 label_attribute_of_issue: Issue's %{name}
1159 1159 label_any_issues_in_project: any issues in project
1160 1160 label_cross_project_descendants: With subprojects
1161 1161 field_private_notes: Private notes
1162 1162 setting_jsonp_enabled: Enable JSONP support
1163 1163 label_gantt_progress_line: Progress line
1164 1164 permission_add_documents: Add documents
1165 1165 permission_view_private_notes: View private notes
1166 1166 label_attribute_of_user: User's %{name}
1167 1167 permission_delete_documents: Delete documents
1168 1168 field_inherit_members: Inherit members
1169 1169 setting_cross_project_subtasks: Allow cross-project subtasks
1170 1170 label_no_issues_in_project: no issues in project
1171 1171 label_copied_from: Copied from
1172 1172 setting_non_working_week_days: Non-working days
1173 1173 label_any_issues_not_in_project: any issues not in project
1174 1174 label_cross_project_tree: With project tree
1175 1175 field_closed_on: Closed
1176 1176 field_generate_password: Generate password
1177 1177 setting_default_projects_tracker_ids: Default trackers for new projects
1178 1178 label_total_time: Cəmi
1179 1179 notice_account_not_activated_yet: You haven't activated your account yet. If you want
1180 1180 to receive a new activation email, please <a href="%{url}">click this link</a>.
1181 1181 notice_account_locked: Your account is locked.
1182 1182 label_hidden: Hidden
1183 1183 label_visibility_private: to me only
1184 1184 label_visibility_roles: to these roles only
1185 1185 label_visibility_public: to any users
1186 1186 field_must_change_passwd: Must change password at next logon
1187 1187 notice_new_password_must_be_different: The new password must be different from the
1188 1188 current password
1189 1189 setting_mail_handler_excluded_filenames: Exclude attachments by name
1190 1190 text_convert_available: ImageMagick convert available (optional)
1191 1191 label_link: Link
1192 1192 label_only: only
1193 1193 label_drop_down_list: drop-down list
1194 1194 label_checkboxes: checkboxes
1195 1195 label_link_values_to: Link values to URL
1196 1196 setting_force_default_language_for_anonymous: Force default language for anonymous
1197 1197 users
1198 1198 setting_force_default_language_for_loggedin: Force default language for logged-in
1199 1199 users
1200 1200 label_custom_field_select_type: Select the type of object to which the custom field
1201 1201 is to be attached
1202 1202 label_issue_assigned_to_updated: Assignee updated
1203 1203 label_check_for_updates: Check for updates
1204 1204 label_latest_compatible_version: Latest compatible version
1205 1205 label_unknown_plugin: Unknown plugin
1206 1206 label_radio_buttons: radio buttons
1207 1207 label_group_anonymous: Anonymous users
1208 1208 label_group_non_member: Non member users
1209 1209 label_add_projects: Add projects
1210 1210 field_default_status: Default status
1211 1211 text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
1212 1212 field_users_visibility: Users visibility
1213 1213 label_users_visibility_all: All active users
1214 1214 label_users_visibility_members_of_visible_projects: Members of visible projects
1215 1215 label_edit_attachments: Edit attached files
1216 1216 setting_link_copied_issue: Link issues on copy
1217 1217 label_link_copied_issue: Link copied issue
1218 1218 label_ask: Ask
1219 1219 label_search_attachments_yes: Search attachment filenames and descriptions
1220 1220 label_search_attachments_no: Do not search attachments
1221 1221 label_search_attachments_only: Search attachments only
1222 1222 label_search_open_issues_only: Open issues only
1223 1223 field_address: e-poçt
1224 1224 setting_max_additional_emails: Maximum number of additional email addresses
1225 1225 label_email_address_plural: Emails
1226 1226 label_email_address_add: Add email address
1227 1227 label_enable_notifications: Enable notifications
1228 1228 label_disable_notifications: Disable notifications
1229 1229 setting_search_results_per_page: Search results per page
1230 1230 label_blank_value: blank
1231 1231 permission_copy_issues: Copy issues
1232 1232 error_password_expired: Your password has expired or the administrator requires you
1233 1233 to change it.
1234 1234 field_time_entries_visibility: Time logs visibility
1235 1235 setting_password_max_age: Require password change after
1236 1236 label_parent_task_attributes: Parent tasks attributes
1237 1237 label_parent_task_attributes_derived: Calculated from subtasks
1238 1238 label_parent_task_attributes_independent: Independent of subtasks
1239 1239 label_time_entries_visibility_all: All time entries
1240 1240 label_time_entries_visibility_own: Time entries created by the user
1241 1241 label_member_management: Member management
1242 1242 label_member_management_all_roles: All roles
1243 1243 label_member_management_selected_roles_only: Only these roles
1244 1244 label_password_required: Confirm your password to continue
1245 1245 label_total_spent_time: Cəmi sərf olunan vaxt
1246 1246 notice_import_finished: All %{count} items have been imported.
1247 1247 notice_import_finished_with_errors: ! '%{count} out of %{total} items could not be
1248 1248 imported.'
1249 1249 error_invalid_file_encoding: The file is not a valid %{encoding} encoded file
1250 1250 error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the
1251 1251 settings below
1252 1252 error_can_not_read_import_file: An error occurred while reading the file to import
1253 1253 permission_import_issues: Import issues
1254 1254 label_import_issues: Import issues
1255 1255 label_select_file_to_import: Select the file to import
1256 1256 label_fields_separator: Field separator
1257 1257 label_fields_wrapper: Field wrapper
1258 1258 label_encoding: Encoding
1259 1259 label_comma_char: Comma
1260 1260 label_semi_colon_char: Semi colon
1261 1261 label_quote_char: Quote
1262 1262 label_double_quote_char: Double quote
1263 1263 label_fields_mapping: Fields mapping
1264 1264 label_file_content_preview: File content preview
1265 1265 label_create_missing_values: Create missing values
1266 1266 button_import: Import
1267 1267 field_total_estimated_hours: Total estimated time
1268 1268 label_api: API
1269 1269 label_total_plural: Totals
1270 1270 label_assigned_issues: Assigned issues
1271 1271 label_field_format_enumeration: Key/value list
1272 1272 label_f_hour_short: '%{value} h'
1273 1273 field_default_version: Default version
1274 1274 error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed
1275 1275 setting_attachment_extensions_allowed: Allowed extensions
1276 1276 setting_attachment_extensions_denied: Disallowed extensions
1277 1277 label_any_open_issues: any open issues
1278 1278 label_no_open_issues: no open issues
1279 1279 label_default_values_for_new_users: Default values for new users
1280 error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot
1281 be reassigned to an issue that is about to be deleted
@@ -1,1175 +1,1177
1 1 # Bulgarian translation by Nikolay Solakov and Ivan Cenov
2 2 bg:
3 3 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
4 4 direction: ltr
5 5 date:
6 6 formats:
7 7 # Use the strftime parameters for formats.
8 8 # When no format has been given, it uses default.
9 9 # You can provide other formats here if you like!
10 10 default: "%d-%m-%Y"
11 11 short: "%b %d"
12 12 long: "%B %d, %Y"
13 13
14 14 day_names: [Неделя, Понеделник, Вторник, Сряда, Четвъртък, Петък, Събота]
15 15 abbr_day_names: [Нед, Пон, Вто, Сря, Чет, Пет, Съб]
16 16
17 17 # Don't forget the nil at the beginning; there's no such thing as a 0th month
18 18 month_names: [~, Януари, Февруари, Март, Април, Май, Юни, Юли, Август, Септември, Октомври, Ноември, Декември]
19 19 abbr_month_names: [~, Яну, Фев, Мар, Апр, Май, Юни, Юли, Авг, Сеп, Окт, Ное, Дек]
20 20 # Used in date_select and datime_select.
21 21 order:
22 22 - :year
23 23 - :month
24 24 - :day
25 25
26 26 time:
27 27 formats:
28 28 default: "%a, %d %b %Y %H:%M:%S %z"
29 29 time: "%H:%M"
30 30 short: "%d %b %H:%M"
31 31 long: "%B %d, %Y %H:%M"
32 32 am: "am"
33 33 pm: "pm"
34 34
35 35 datetime:
36 36 distance_in_words:
37 37 half_a_minute: "half a minute"
38 38 less_than_x_seconds:
39 39 one: "по-малко от 1 секунда"
40 40 other: "по-малко от %{count} секунди"
41 41 x_seconds:
42 42 one: "1 секунда"
43 43 other: "%{count} секунди"
44 44 less_than_x_minutes:
45 45 one: "по-малко от 1 минута"
46 46 other: "по-малко от %{count} минути"
47 47 x_minutes:
48 48 one: "1 минута"
49 49 other: "%{count} минути"
50 50 about_x_hours:
51 51 one: "около 1 час"
52 52 other: "около %{count} часа"
53 53 x_hours:
54 54 one: "1 час"
55 55 other: "%{count} часа"
56 56 x_days:
57 57 one: "1 ден"
58 58 other: "%{count} дена"
59 59 about_x_months:
60 60 one: "около 1 месец"
61 61 other: "около %{count} месеца"
62 62 x_months:
63 63 one: "1 месец"
64 64 other: "%{count} месеца"
65 65 about_x_years:
66 66 one: "около 1 година"
67 67 other: "около %{count} години"
68 68 over_x_years:
69 69 one: "над 1 година"
70 70 other: "над %{count} години"
71 71 almost_x_years:
72 72 one: "почти 1 година"
73 73 other: "почти %{count} години"
74 74
75 75 number:
76 76 format:
77 77 separator: "."
78 78 delimiter: ""
79 79 precision: 3
80 80
81 81 human:
82 82 format:
83 83 delimiter: ""
84 84 precision: 3
85 85 storage_units:
86 86 format: "%n %u"
87 87 units:
88 88 byte:
89 89 one: байт
90 90 other: байта
91 91 kb: "KB"
92 92 mb: "MB"
93 93 gb: "GB"
94 94 tb: "TB"
95 95
96 96 # Used in array.to_sentence.
97 97 support:
98 98 array:
99 99 sentence_connector: "и"
100 100 skip_last_comma: false
101 101
102 102 activerecord:
103 103 errors:
104 104 template:
105 105 header:
106 106 one: "1 грешка попречи този %{model} да бъде записан"
107 107 other: "%{count} грешки попречиха този %{model} да бъде записан"
108 108 messages:
109 109 inclusion: "не съществува в списъка"
110 110 exclusion: запазено"
111 111 invalid: невалидно"
112 112 confirmation: "липсва одобрение"
113 113 accepted: "трябва да се приеме"
114 114 empty: "не може да е празно"
115 115 blank: "не може да е празно"
116 116 too_long: прекалено дълго"
117 117 too_short: прекалено късо"
118 118 wrong_length: с грешна дължина"
119 119 taken: "вече съществува"
120 120 not_a_number: "не е число"
121 121 not_a_date: невалидна дата"
122 122 greater_than: "трябва да бъде по-голям[a/о] от %{count}"
123 123 greater_than_or_equal_to: "трябва да бъде по-голям[a/о] от или равен[a/o] на %{count}"
124 124 equal_to: "трябва да бъде равен[a/o] на %{count}"
125 125 less_than: "трябва да бъде по-малък[a/o] от %{count}"
126 126 less_than_or_equal_to: "трябва да бъде по-малък[a/o] от или равен[a/o] на %{count}"
127 127 odd: "трябва да бъде нечетен[a/o]"
128 128 even: "трябва да бъде четен[a/o]"
129 129 greater_than_start_date: "трябва да е след началната дата"
130 130 not_same_project: "не е от същия проект"
131 131 circular_dependency: "Тази релация ще доведе до безкрайна зависимост"
132 132 cant_link_an_issue_with_a_descendant: "Една задача не може да бъде свързвана към своя подзадача"
133 133 earlier_than_minimum_start_date: "не може да бъде по-рано от %{date} поради предхождащи задачи"
134 134
135 135 actionview_instancetag_blank_option: Изберете
136 136
137 137 general_text_No: 'Не'
138 138 general_text_Yes: 'Да'
139 139 general_text_no: 'не'
140 140 general_text_yes: 'да'
141 141 general_lang_name: 'Bulgarian (Български)'
142 142 general_csv_separator: ','
143 143 general_csv_decimal_separator: '.'
144 144 general_csv_encoding: UTF-8
145 145 general_pdf_fontname: freesans
146 146 general_pdf_monospaced_fontname: freemono
147 147 general_first_day_of_week: '1'
148 148
149 149 notice_account_updated: Профилът е обновен успешно.
150 150 notice_account_invalid_creditentials: Невалиден потребител или парола.
151 151 notice_account_password_updated: Паролата е успешно променена.
152 152 notice_account_wrong_password: Грешна парола
153 153 notice_account_register_done: Профилът е създаден успешно. E-mail, съдържащ инструкции за активиране на профила
154 154 е изпратен на %{email}.
155 155 notice_account_unknown_email: Непознат e-mail.
156 156 notice_account_not_activated_yet: Вие не сте активирали вашия профил все още. Ако искате да
157 157 получите нов e-mail за активиране, моля <a href="%{url}">натиснете тази връзка</a>.
158 158 notice_account_locked: Вашият профил е блокиран.
159 159 notice_can_t_change_password: Този профил е с външен метод за оторизация. Невъзможна смяна на паролата.
160 160 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
161 161 notice_account_activated: Профилът ви е активиран. Вече може да влезете в Redmine.
162 162 notice_successful_create: Успешно създаване.
163 163 notice_successful_update: Успешно обновяване.
164 164 notice_successful_delete: Успешно изтриване.
165 165 notice_successful_connection: Успешно свързване.
166 166 notice_file_not_found: Несъществуваща или преместена страница.
167 167 notice_locking_conflict: Друг потребител променя тези данни в момента.
168 168 notice_not_authorized: Нямате право на достъп до тази страница.
169 169 notice_not_authorized_archived_project: Проектът, който се опитвате да видите е архивиран. Ако смятате, че това не е правилно, обърнете се към администратора за разархивиране.
170 170 notice_email_sent: "Изпратен e-mail на %{value}"
171 171 notice_email_error: "Грешка при изпращане на e-mail (%{value})"
172 172 notice_feeds_access_key_reseted: Вашия ключ за Atom достъп беше променен.
173 173 notice_api_access_key_reseted: Вашият API ключ за достъп беше изчистен.
174 174 notice_failed_to_save_issues: "Неуспешен запис на %{count} задачи от %{total} избрани: %{ids}."
175 175 notice_failed_to_save_time_entries: "Невъзможност за запис на %{count} записа за използвано време от %{total} избрани: %{ids}."
176 176 notice_failed_to_save_members: "Невъзможност за запис на член(ове): %{errors}."
177 177 notice_no_issue_selected: "Няма избрани задачи."
178 178 notice_account_pending: "Профилът Ви е създаден и очаква одобрение от администратор."
179 179 notice_default_data_loaded: Примерната информация е заредена успешно.
180 180 notice_unable_delete_version: Невъзможност за изтриване на версия
181 181 notice_unable_delete_time_entry: Невъзможност за изтриване на запис за използвано време.
182 182 notice_issue_done_ratios_updated: Обновен процент на завършените задачи.
183 183 notice_gantt_chart_truncated: Мрежовият график е съкратен, понеже броят на обектите, които могат да бъдат показани е твърде голям (%{max})
184 184 notice_issue_successful_create: Задача %{id} е създадена.
185 185 notice_issue_update_conflict: Задачата е била променена от друг потребител, докато вие сте я редактирали.
186 186 notice_account_deleted: Вашият профил беше премахнат без възможност за възстановяване.
187 187 notice_user_successful_create: Потребител %{id} е създаден.
188 188 notice_new_password_must_be_different: Новата парола трябва да бъде различна от сегашната парола
189 189 notice_import_finished: Всички %{count} обекта бяха импортирани.
190 190 notice_import_finished_with_errors: ! '%{count} от общо %{total} обекта не бяха инпортирани.'
191 191
192 192 error_can_t_load_default_data: "Грешка при зареждане на началната информация: %{value}"
193 193 error_scm_not_found: Несъществуващ обект в хранилището.
194 194 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: %{value}"
195 195 error_scm_annotate: "Обектът не съществува или не може да бъде анотиран."
196 196 error_scm_annotate_big_text_file: "Файлът не може да бъде анотиран, понеже надхвърля максималния размер за текстови файлове."
197 197 error_issue_not_found_in_project: 'Задачата не е намерена или не принадлежи на този проект'
198 198 error_no_tracker_in_project: Няма асоциирани тракери с този проект. Проверете настройките на проекта.
199 199 error_no_default_issue_status: Няма установено подразбиращо се състояние за задачите. Моля проверете вашата конфигурация (Вижте "Администрация -> Състояния на задачи").
200 200 error_can_not_delete_custom_field: Невъзможност за изтриване на потребителско поле
201 201 error_can_not_delete_tracker: Този тракер съдържа задачи и не може да бъде изтрит.
202 202 error_can_not_remove_role: Тази роля се използва и не може да бъде изтрита.
203 203 error_can_not_reopen_issue_on_closed_version: Задача, асоциирана със затворена версия не може да бъде отворена отново
204 204 error_can_not_archive_project: Този проект не може да бъде архивиран
205 205 error_issue_done_ratios_not_updated: Процентът на завършените задачи не е обновен.
206 206 error_workflow_copy_source: Моля изберете source тракер или роля
207 207 error_workflow_copy_target: Моля изберете тракер(и) и роля (роли).
208 208 error_unable_delete_issue_status: Невъзможност за изтриване на състояние на задача
209 209 error_unable_to_connect: Невъзможност за свързване с (%{value})
210 210 error_attachment_too_big: Този файл не може да бъде качен, понеже надхвърля максималната възможна големина (%{max_size})
211 211 error_session_expired: Вашата сесия е изтекла. Моля влезете в Redmine отново.
212 212 warning_attachments_not_saved: "%{count} файла не бяха записани."
213 213 error_password_expired: Вашата парола е с изтекъл срок или администраторът изисква да я смените.
214 214 error_invalid_file_encoding: Файлът няма валидно %{encoding} кодиране.
215 215 error_invalid_csv_file_or_settings: Файлът не е CSV файл или не съответства на зададеното по-долу
216 216 error_can_not_read_import_file: Грешка по време на четене на импортирания файл
217 217 error_attachment_extension_not_allowed: Файлове от тип %{extension} не са позволени
218 218
219 219 mail_subject_lost_password: "Вашата парола (%{value})"
220 220 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
221 221 mail_subject_register: "Активация на профил (%{value})"
222 222 mail_body_register: 'За да активирате профила си използвайте следния линк:'
223 223 mail_body_account_information_external: "Можете да използвате вашия %{value} профил за вход."
224 224 mail_body_account_information: Информацията за профила ви
225 225 mail_subject_account_activation_request: "Заявка за активиране на профил в %{value}"
226 226 mail_body_account_activation_request: "Има новорегистриран потребител (%{value}), очакващ вашето одобрение:"
227 227 mail_subject_reminder: "%{count} задачи с краен срок с следващите %{days} дни"
228 228 mail_body_reminder: "%{count} задачи, назначени на вас са с краен срок в следващите %{days} дни:"
229 229 mail_subject_wiki_content_added: "Wiki страницата '%{id}' беше добавена"
230 230 mail_body_wiki_content_added: Wiki страницата '%{id}' беше добавена от %{author}.
231 231 mail_subject_wiki_content_updated: "Wiki страницата '%{id}' беше обновена"
232 232 mail_body_wiki_content_updated: Wiki страницата '%{id}' беше обновена от %{author}.
233 233
234 234 field_name: Име
235 235 field_description: Описание
236 236 field_summary: Анотация
237 237 field_is_required: Задължително
238 238 field_firstname: Име
239 239 field_lastname: Фамилия
240 240 field_mail: Имейл
241 241 field_address: Имейл
242 242 field_filename: Файл
243 243 field_filesize: Големина
244 244 field_downloads: Изтеглени файлове
245 245 field_author: Автор
246 246 field_created_on: От дата
247 247 field_updated_on: Обновена
248 248 field_closed_on: Затворена
249 249 field_field_format: Тип
250 250 field_is_for_all: За всички проекти
251 251 field_possible_values: Възможни стойности
252 252 field_regexp: Регулярен израз
253 253 field_min_length: Мин. дължина
254 254 field_max_length: Макс. дължина
255 255 field_value: Стойност
256 256 field_category: Категория
257 257 field_title: Заглавие
258 258 field_project: Проект
259 259 field_issue: Задача
260 260 field_status: Състояние
261 261 field_notes: Бележка
262 262 field_is_closed: Затворена задача
263 263 field_is_default: Състояние по подразбиране
264 264 field_tracker: Тракер
265 265 field_subject: Заглавие
266 266 field_due_date: Крайна дата
267 267 field_assigned_to: Възложена на
268 268 field_priority: Приоритет
269 269 field_fixed_version: Планувана версия
270 270 field_user: Потребител
271 271 field_principal: Principal
272 272 field_role: Роля
273 273 field_homepage: Начална страница
274 274 field_is_public: Публичен
275 275 field_parent: Подпроект на
276 276 field_is_in_roadmap: Да се вижда ли в Пътна карта
277 277 field_login: Потребител
278 278 field_mail_notification: Известия по пощата
279 279 field_admin: Администратор
280 280 field_last_login_on: Последно свързване
281 281 field_language: Език
282 282 field_effective_date: Дата
283 283 field_password: Парола
284 284 field_new_password: Нова парола
285 285 field_password_confirmation: Потвърждение
286 286 field_version: Версия
287 287 field_type: Тип
288 288 field_host: Хост
289 289 field_port: Порт
290 290 field_account: Профил
291 291 field_base_dn: Base DN
292 292 field_attr_login: Атрибут Login
293 293 field_attr_firstname: Атрибут Първо име (Firstname)
294 294 field_attr_lastname: Атрибут Фамилия (Lastname)
295 295 field_attr_mail: Атрибут Email
296 296 field_onthefly: Динамично създаване на потребител
297 297 field_start_date: Начална дата
298 298 field_done_ratio: "% Прогрес"
299 299 field_auth_source: Начин на оторизация
300 300 field_hide_mail: Скрий e-mail адреса ми
301 301 field_comments: Коментар
302 302 field_url: Адрес
303 303 field_start_page: Начална страница
304 304 field_subproject: Подпроект
305 305 field_hours: Часове
306 306 field_activity: Дейност
307 307 field_spent_on: Дата
308 308 field_identifier: Идентификатор
309 309 field_is_filter: Използва се за филтър
310 310 field_issue_to: Свързана задача
311 311 field_delay: Отместване
312 312 field_assignable: Възможно е възлагане на задачи за тази роля
313 313 field_redirect_existing_links: Пренасочване на съществуващи линкове
314 314 field_estimated_hours: Изчислено време
315 315 field_column_names: Колони
316 316 field_time_entries: Log time
317 317 field_time_zone: Часова зона
318 318 field_searchable: С възможност за търсене
319 319 field_default_value: Стойност по подразбиране
320 320 field_comments_sorting: Сортиране на коментарите
321 321 field_parent_title: Родителска страница
322 322 field_editable: Editable
323 323 field_watcher: Наблюдател
324 324 field_identity_url: OpenID URL
325 325 field_content: Съдържание
326 326 field_group_by: Групиране на резултатите по
327 327 field_sharing: Sharing
328 328 field_parent_issue: Родителска задача
329 329 field_member_of_group: Член на група
330 330 field_assigned_to_role: Assignee's role
331 331 field_text: Текстово поле
332 332 field_visible: Видим
333 333 field_warn_on_leaving_unsaved: Предупреди ме, когато напускам страница с незаписано съдържание
334 334 field_issues_visibility: Видимост на задачите
335 335 field_is_private: Лична
336 336 field_commit_logs_encoding: Кодова таблица на съобщенията при поверяване
337 337 field_scm_path_encoding: Кодова таблица на пътищата (path)
338 338 field_path_to_repository: Път до хранилището
339 339 field_root_directory: Коренна директория (папка)
340 340 field_cvsroot: CVSROOT
341 341 field_cvs_module: Модул
342 342 field_repository_is_default: Главно хранилище
343 343 field_multiple: Избор на повече от една стойност
344 344 field_auth_source_ldap_filter: LDAP филтър
345 345 field_core_fields: Стандартни полета
346 346 field_timeout: Таймаут (в секунди)
347 347 field_board_parent: Родителски форум
348 348 field_private_notes: Лични бележки
349 349 field_inherit_members: Наследяване на членовете на родителския проект
350 350 field_generate_password: Генериране на парола
351 351 field_must_change_passwd: Паролата трябва да бъде сменена при следващото влизане в Redmine
352 352 field_default_status: Състояние по подразбиране
353 353 field_users_visibility: Видимост на потребителите
354 354 field_time_entries_visibility: Видимост на записи за използвано време
355 355 field_total_estimated_hours: Общо изчислено време
356 356 field_default_version: Версия по подразбиране
357 357
358 358 setting_app_title: Заглавие
359 359 setting_app_subtitle: Описание
360 360 setting_welcome_text: Допълнителен текст
361 361 setting_default_language: Език по подразбиране
362 362 setting_login_required: Изискване за вход в Redmine
363 363 setting_self_registration: Регистрация от потребители
364 364 setting_attachment_max_size: Максимална големина на прикачен файл
365 365 setting_issues_export_limit: Максимален брой задачи за експорт
366 366 setting_mail_from: E-mail адрес за емисии
367 367 setting_bcc_recipients: Получатели на скрито копие (bcc)
368 368 setting_plain_text_mail: само чист текст (без HTML)
369 369 setting_host_name: Хост
370 370 setting_text_formatting: Форматиране на текста
371 371 setting_wiki_compression: Компресиране на Wiki историята
372 372 setting_feeds_limit: Максимален брой записи в ATOM емисии
373 373 setting_default_projects_public: Новите проекти са публични по подразбиране
374 374 setting_autofetch_changesets: Автоматично извличане на ревизиите
375 375 setting_sys_api_enabled: Разрешаване на WS за управление
376 376 setting_commit_ref_keywords: Отбелязващи ключови думи
377 377 setting_commit_fix_keywords: Приключващи ключови думи
378 378 setting_autologin: Автоматичен вход
379 379 setting_date_format: Формат на датата
380 380 setting_time_format: Формат на часа
381 381 setting_cross_project_issue_relations: Релации на задачи между проекти
382 382 setting_cross_project_subtasks: Подзадачи от други проекти
383 383 setting_issue_list_default_columns: Показвани колони по подразбиране
384 384 setting_repositories_encodings: Кодова таблица на прикачените файлове и хранилищата
385 385 setting_emails_header: Email header
386 386 setting_emails_footer: Подтекст за e-mail
387 387 setting_protocol: Протокол
388 388 setting_per_page_options: Опции за страниране
389 389 setting_user_format: Потребителски формат
390 390 setting_activity_days_default: Брой дни показвани на таб Дейност
391 391 setting_display_subprojects_issues: Задачите от подпроектите по подразбиране се показват в главните проекти
392 392 setting_enabled_scm: Разрешена SCM
393 393 setting_mail_handler_body_delimiters: Отрязване на e-mail-ите след един от тези редове
394 394 setting_mail_handler_api_enabled: Разрешаване на WS за входящи e-mail-и
395 395 setting_mail_handler_api_key: API ключ
396 396 setting_sequential_project_identifiers: Генериране на последователни проектни идентификатори
397 397 setting_gravatar_enabled: Използване на портребителски икони от Gravatar
398 398 setting_gravatar_default: Подразбиращо се изображение от Gravatar
399 399 setting_diff_max_lines_displayed: Максимален брой показвани diff редове
400 400 setting_file_max_size_displayed: Максимален размер на текстовите файлове, показвани inline
401 401 setting_repository_log_display_limit: Максимален брой на показванете ревизии в лог файла
402 402 setting_openid: Рарешаване на OpenID вход и регистрация
403 403 setting_password_max_age: Изискване за смяна на паролата след
404 404 setting_password_min_length: Минимална дължина на парола
405 405 setting_new_project_user_role_id: Роля, давана на потребител, създаващ проекти, който не е администратор
406 406 setting_default_projects_modules: Активирани модули по подразбиране за нов проект
407 407 setting_issue_done_ratio: Изчисление на процента на готови задачи с
408 408 setting_issue_done_ratio_issue_field: Използване на поле '% Прогрес'
409 409 setting_issue_done_ratio_issue_status: Използване на състоянието на задачите
410 410 setting_start_of_week: Първи ден на седмицата
411 411 setting_rest_api_enabled: Разрешаване на REST web сървис
412 412 setting_cache_formatted_text: Кеширане на форматираните текстове
413 413 setting_default_notification_option: Подразбиращ се начин за известяване
414 414 setting_commit_logtime_enabled: Разрешаване на отчитането на работното време
415 415 setting_commit_logtime_activity_id: Дейност при отчитане на работното време
416 416 setting_gantt_items_limit: Максимален брой обекти, които да се показват в мрежов график
417 417 setting_issue_group_assignment: Разрешено назначаването на задачи на групи
418 418 setting_default_issue_start_date_to_creation_date: Начална дата на новите задачи по подразбиране да бъде днешната дата
419 419 setting_commit_cross_project_ref: Отбелязване и приключване на задачи от други проекти, несвързани с конкретното хранилище
420 420 setting_unsubscribe: Потребителите могат да премахват профилите си
421 421 setting_session_lifetime: Максимален живот на сесиите
422 422 setting_session_timeout: Таймаут за неактивност преди прекратяване на сесиите
423 423 setting_thumbnails_enabled: Показване на миниатюри на прикачените изображения
424 424 setting_thumbnails_size: Размер на миниатюрите (в пиксели)
425 425 setting_non_working_week_days: Не работни дни
426 426 setting_jsonp_enabled: Разрешаване на поддръжка на JSONP
427 427 setting_default_projects_tracker_ids: Тракери по подразбиране за нови проекти
428 428 setting_mail_handler_excluded_filenames: Имена на прикачени файлове, които да се пропускат при приемане на e-mail-и (например *.vcf, companylogo.gif).
429 429 setting_force_default_language_for_anonymous: Задължително език по подразбиране за анонимните потребители
430 430 setting_force_default_language_for_loggedin: Задължително език по подразбиране за потребителите, влезли в Redmine
431 431 setting_link_copied_issue: Свързване на задачите при копиране
432 432 setting_max_additional_emails: Максимален брой на допълнителните имейл адреси
433 433 setting_search_results_per_page: Резултати от търсене на страница
434 434 setting_attachment_extensions_allowed: Позволени типове на файлове
435 435 setting_attachment_extensions_denied: Разрешени типове на файлове
436 436
437 437 permission_add_project: Създаване на проект
438 438 permission_add_subprojects: Създаване на подпроекти
439 439 permission_edit_project: Редактиране на проект
440 440 permission_close_project: Затваряне / отваряне на проект
441 441 permission_select_project_modules: Избор на проектни модули
442 442 permission_manage_members: Управление на членовете (на екип)
443 443 permission_manage_project_activities: Управление на дейностите на проекта
444 444 permission_manage_versions: Управление на версиите
445 445 permission_manage_categories: Управление на категориите
446 446 permission_view_issues: Разглеждане на задачите
447 447 permission_add_issues: Добавяне на задачи
448 448 permission_edit_issues: Редактиране на задачи
449 449 permission_copy_issues: Копиране на задачи
450 450 permission_manage_issue_relations: Управление на връзките между задачите
451 451 permission_set_own_issues_private: Установяване на собствените задачи публични или лични
452 452 permission_set_issues_private: Установяване на задачите публични или лични
453 453 permission_add_issue_notes: Добавяне на бележки
454 454 permission_edit_issue_notes: Редактиране на бележки
455 455 permission_edit_own_issue_notes: Редактиране на собствени бележки
456 456 permission_view_private_notes: Разглеждане на лични бележки
457 457 permission_set_notes_private: Установяване на бележките лични
458 458 permission_move_issues: Преместване на задачи
459 459 permission_delete_issues: Изтриване на задачи
460 460 permission_manage_public_queries: Управление на публичните заявки
461 461 permission_save_queries: Запис на запитвания (queries)
462 462 permission_view_gantt: Разглеждане на мрежов график
463 463 permission_view_calendar: Разглеждане на календари
464 464 permission_view_issue_watchers: Разглеждане на списък с наблюдатели
465 465 permission_add_issue_watchers: Добавяне на наблюдатели
466 466 permission_delete_issue_watchers: Изтриване на наблюдатели
467 467 permission_log_time: Log spent time
468 468 permission_view_time_entries: Разглеждане на записите за изразходваното време
469 469 permission_edit_time_entries: Редактиране на записите за изразходваното време
470 470 permission_edit_own_time_entries: Редактиране на собствените записи за изразходваното време
471 471 permission_manage_news: Управление на новини
472 472 permission_comment_news: Коментиране на новини
473 473 permission_view_documents: Разглеждане на документи
474 474 permission_add_documents: Добавяне на документи
475 475 permission_edit_documents: Редактиране на документи
476 476 permission_delete_documents: Изтриване на документи
477 477 permission_manage_files: Управление на файлове
478 478 permission_view_files: Разглеждане на файлове
479 479 permission_manage_wiki: Управление на wiki
480 480 permission_rename_wiki_pages: Преименуване на wiki страници
481 481 permission_delete_wiki_pages: Изтриване на wiki страници
482 482 permission_view_wiki_pages: Разглеждане на wiki
483 483 permission_view_wiki_edits: Разглеждане на wiki история
484 484 permission_edit_wiki_pages: Редактиране на wiki страници
485 485 permission_delete_wiki_pages_attachments: Изтриване на прикачени файлове към wiki страници
486 486 permission_protect_wiki_pages: Заключване на wiki страници
487 487 permission_manage_repository: Управление на хранилища
488 488 permission_browse_repository: Разглеждане на хранилища
489 489 permission_view_changesets: Разглеждане на changesets
490 490 permission_commit_access: Поверяване
491 491 permission_manage_boards: Управление на boards
492 492 permission_view_messages: Разглеждане на съобщения
493 493 permission_add_messages: Публикуване на съобщения
494 494 permission_edit_messages: Редактиране на съобщения
495 495 permission_edit_own_messages: Редактиране на собствени съобщения
496 496 permission_delete_messages: Изтриване на съобщения
497 497 permission_delete_own_messages: Изтриване на собствени съобщения
498 498 permission_export_wiki_pages: Експорт на wiki страници
499 499 permission_manage_subtasks: Управление на подзадачите
500 500 permission_manage_related_issues: Управление на връзките между задачи и ревизии
501 501 permission_import_issues: Импорт на задачи
502 502
503 503 project_module_issue_tracking: Тракинг
504 504 project_module_time_tracking: Отделяне на време
505 505 project_module_news: Новини
506 506 project_module_documents: Документи
507 507 project_module_files: Файлове
508 508 project_module_wiki: Wiki
509 509 project_module_repository: Хранилище
510 510 project_module_boards: Форуми
511 511 project_module_calendar: Календар
512 512 project_module_gantt: Мрежов график
513 513
514 514 label_user: Потребител
515 515 label_user_plural: Потребители
516 516 label_user_new: Нов потребител
517 517 label_user_anonymous: Анонимен
518 518 label_project: Проект
519 519 label_project_new: Нов проект
520 520 label_project_plural: Проекти
521 521 label_x_projects:
522 522 zero: 0 проекта
523 523 one: 1 проект
524 524 other: "%{count} проекта"
525 525 label_project_all: Всички проекти
526 526 label_project_latest: Последни проекти
527 527 label_issue: Задача
528 528 label_issue_new: Нова задача
529 529 label_issue_plural: Задачи
530 530 label_issue_view_all: Всички задачи
531 531 label_issues_by: "Задачи по %{value}"
532 532 label_issue_added: Добавена задача
533 533 label_issue_updated: Обновена задача
534 534 label_issue_note_added: Добавена бележка
535 535 label_issue_status_updated: Обновено състояние
536 536 label_issue_assigned_to_updated: Задачата е с назначен нов изпълнител
537 537 label_issue_priority_updated: Обновен приоритет
538 538 label_document: Документ
539 539 label_document_new: Нов документ
540 540 label_document_plural: Документи
541 541 label_document_added: Добавен документ
542 542 label_role: Роля
543 543 label_role_plural: Роли
544 544 label_role_new: Нова роля
545 545 label_role_and_permissions: Роли и права
546 546 label_role_anonymous: Анонимен
547 547 label_role_non_member: Не член
548 548 label_member: Член
549 549 label_member_new: Нов член
550 550 label_member_plural: Членове
551 551 label_tracker: Тракер
552 552 label_tracker_plural: Тракери
553 553 label_tracker_new: Нов тракер
554 554 label_workflow: Работен процес
555 555 label_issue_status: Състояние на задача
556 556 label_issue_status_plural: Състояния на задачи
557 557 label_issue_status_new: Ново състояние
558 558 label_issue_category: Категория задача
559 559 label_issue_category_plural: Категории задачи
560 560 label_issue_category_new: Нова категория
561 561 label_custom_field: Потребителско поле
562 562 label_custom_field_plural: Потребителски полета
563 563 label_custom_field_new: Ново потребителско поле
564 564 label_enumerations: Списъци
565 565 label_enumeration_new: Нова стойност
566 566 label_information: Информация
567 567 label_information_plural: Информация
568 568 label_please_login: Вход
569 569 label_register: Регистрация
570 570 label_login_with_open_id_option: или вход чрез OpenID
571 571 label_password_lost: Забравена парола
572 572 label_password_required: Потвърдете вашата парола, за да продължите
573 573 label_home: Начало
574 574 label_my_page: Лична страница
575 575 label_my_account: Профил
576 576 label_my_projects: Проекти, в които участвам
577 577 label_my_page_block: Блокове в личната страница
578 578 label_administration: Администрация
579 579 label_login: Вход
580 580 label_logout: Изход
581 581 label_help: Помощ
582 582 label_reported_issues: Публикувани задачи
583 583 label_assigned_issues: Назначени задачи
584 584 label_assigned_to_me_issues: Възложени на мен
585 585 label_last_login: Последно свързване
586 586 label_registered_on: Регистрация
587 587 label_activity: Дейност
588 588 label_overall_activity: Цялостна дейност
589 589 label_user_activity: "Активност на %{value}"
590 590 label_new: Нов
591 591 label_logged_as: Здравейте,
592 592 label_environment: Среда
593 593 label_authentication: Оторизация
594 594 label_auth_source: Начин на оторозация
595 595 label_auth_source_new: Нов начин на оторизация
596 596 label_auth_source_plural: Начини на оторизация
597 597 label_subproject_plural: Подпроекти
598 598 label_subproject_new: Нов подпроект
599 599 label_and_its_subprojects: "%{value} и неговите подпроекти"
600 600 label_min_max_length: Минимална - максимална дължина
601 601 label_list: Списък
602 602 label_date: Дата
603 603 label_integer: Целочислен
604 604 label_float: Дробно
605 605 label_boolean: Чекбокс
606 606 label_string: Текст
607 607 label_text: Дълъг текст
608 608 label_attribute: Атрибут
609 609 label_attribute_plural: Атрибути
610 610 label_no_data: Няма изходни данни
611 611 label_change_status: Промяна на състоянието
612 612 label_history: История
613 613 label_attachment: Файл
614 614 label_attachment_new: Нов файл
615 615 label_attachment_delete: Изтриване
616 616 label_attachment_plural: Файлове
617 617 label_file_added: Добавен файл
618 618 label_report: Справка
619 619 label_report_plural: Справки
620 620 label_news: Новини
621 621 label_news_new: Добави
622 622 label_news_plural: Новини
623 623 label_news_latest: Последни новини
624 624 label_news_view_all: Виж всички
625 625 label_news_added: Добавена новина
626 626 label_news_comment_added: Добавен коментар към новина
627 627 label_settings: Настройки
628 628 label_overview: Общ изглед
629 629 label_version: Версия
630 630 label_version_new: Нова версия
631 631 label_version_plural: Версии
632 632 label_close_versions: Затваряне на завършените версии
633 633 label_confirmation: Одобрение
634 634 label_export_to: Експорт към
635 635 label_read: Read...
636 636 label_public_projects: Публични проекти
637 637 label_open_issues: отворена
638 638 label_open_issues_plural: отворени
639 639 label_closed_issues: затворена
640 640 label_closed_issues_plural: затворени
641 641 label_x_open_issues_abbr:
642 642 zero: 0 отворени
643 643 one: 1 отворена
644 644 other: "%{count} отворени"
645 645 label_x_closed_issues_abbr:
646 646 zero: 0 затворени
647 647 one: 1 затворена
648 648 other: "%{count} затворени"
649 649 label_x_issues:
650 650 zero: 0 задачи
651 651 one: 1 задача
652 652 other: "%{count} задачи"
653 653 label_total: Общо
654 654 label_total_plural: Общо
655 655 label_total_time: Общо
656 656 label_permissions: Права
657 657 label_current_status: Текущо състояние
658 658 label_new_statuses_allowed: Позволени състояния
659 659 label_all: всички
660 660 label_any: без значение
661 661 label_none: никакви
662 662 label_nobody: никой
663 663 label_next: Следващ
664 664 label_previous: Предишен
665 665 label_used_by: Използва се от
666 666 label_details: Детайли
667 667 label_add_note: Добавяне на бележка
668 668 label_calendar: Календар
669 669 label_months_from: месеца от
670 670 label_gantt: Мрежов график
671 671 label_internal: Вътрешен
672 672 label_last_changes: "последни %{count} промени"
673 673 label_change_view_all: Виж всички промени
674 674 label_personalize_page: Персонализиране
675 675 label_comment: Коментар
676 676 label_comment_plural: Коментари
677 677 label_x_comments:
678 678 zero: 0 коментара
679 679 one: 1 коментар
680 680 other: "%{count} коментара"
681 681 label_comment_add: Добавяне на коментар
682 682 label_comment_added: Добавен коментар
683 683 label_comment_delete: Изтриване на коментари
684 684 label_query: Потребителска справка
685 685 label_query_plural: Потребителски справки
686 686 label_query_new: Нова заявка
687 687 label_my_queries: Моите заявки
688 688 label_filter_add: Добави филтър
689 689 label_filter_plural: Филтри
690 690 label_equals: е
691 691 label_not_equals: не е
692 692 label_in_less_than: след по-малко от
693 693 label_in_more_than: след повече от
694 694 label_in_the_next_days: в следващите
695 695 label_in_the_past_days: в предишните
696 696 label_greater_or_equal: ">="
697 697 label_less_or_equal: <=
698 698 label_between: между
699 699 label_in: в следващите
700 700 label_today: днес
701 701 label_all_time: всички
702 702 label_yesterday: вчера
703 703 label_this_week: тази седмица
704 704 label_last_week: последната седмица
705 705 label_last_n_weeks: последните %{count} седмици
706 706 label_last_n_days: "последните %{count} дни"
707 707 label_this_month: текущия месец
708 708 label_last_month: последния месец
709 709 label_this_year: текущата година
710 710 label_date_range: Период
711 711 label_less_than_ago: преди по-малко от
712 712 label_more_than_ago: преди повече от
713 713 label_ago: преди
714 714 label_contains: съдържа
715 715 label_not_contains: не съдържа
716 716 label_any_issues_in_project: задачи от проект
717 717 label_any_issues_not_in_project: задачи, които не са в проект
718 718 label_no_issues_in_project: никакви задачи в проект
719 719 label_any_open_issues: отворени задачи
720 720 label_no_open_issues: без отворени задачи
721 721 label_day_plural: дни
722 722 label_repository: Хранилище
723 723 label_repository_new: Ново хранилище
724 724 label_repository_plural: Хранилища
725 725 label_browse: Разглеждане
726 726 label_branch: работен вариант
727 727 label_tag: Версия
728 728 label_revision: Ревизия
729 729 label_revision_plural: Ревизии
730 730 label_revision_id: Ревизия %{value}
731 731 label_associated_revisions: Асоциирани ревизии
732 732 label_added: добавено
733 733 label_modified: променено
734 734 label_copied: копирано
735 735 label_renamed: преименувано
736 736 label_deleted: изтрито
737 737 label_latest_revision: Последна ревизия
738 738 label_latest_revision_plural: Последни ревизии
739 739 label_view_revisions: Виж ревизиите
740 740 label_view_all_revisions: Разглеждане на всички ревизии
741 741 label_max_size: Максимална големина
742 742 label_sort_highest: Премести най-горе
743 743 label_sort_higher: Премести по-горе
744 744 label_sort_lower: Премести по-долу
745 745 label_sort_lowest: Премести най-долу
746 746 label_roadmap: Пътна карта
747 747 label_roadmap_due_in: "Излиза след %{value}"
748 748 label_roadmap_overdue: "%{value} закъснение"
749 749 label_roadmap_no_issues: Няма задачи за тази версия
750 750 label_search: Търсене
751 751 label_result_plural: Pезултати
752 752 label_all_words: Всички думи
753 753 label_wiki: Wiki
754 754 label_wiki_edit: Wiki редакция
755 755 label_wiki_edit_plural: Wiki редакции
756 756 label_wiki_page: Wiki страница
757 757 label_wiki_page_plural: Wiki страници
758 758 label_index_by_title: Индекс
759 759 label_index_by_date: Индекс по дата
760 760 label_current_version: Текуща версия
761 761 label_preview: Преглед
762 762 label_feed_plural: Емисии
763 763 label_changes_details: Подробни промени
764 764 label_issue_tracking: Тракинг
765 765 label_spent_time: Отделено време
766 766 label_total_spent_time: Общо употребено време
767 767 label_overall_spent_time: Общо употребено време
768 768 label_f_hour: "%{value} час"
769 769 label_f_hour_plural: "%{value} часа"
770 770 label_f_hour_short: '%{value} час'
771 771 label_time_tracking: Отделяне на време
772 772 label_change_plural: Промени
773 773 label_statistics: Статистика
774 774 label_commits_per_month: Ревизии по месеци
775 775 label_commits_per_author: Ревизии по автор
776 776 label_diff: diff
777 777 label_view_diff: Виж разликите
778 778 label_diff_inline: хоризонтално
779 779 label_diff_side_by_side: вертикално
780 780 label_options: Опции
781 781 label_copy_workflow_from: Копирай работния процес от
782 782 label_permissions_report: Справка за права
783 783 label_watched_issues: Наблюдавани задачи
784 784 label_related_issues: Свързани задачи
785 785 label_applied_status: Установено състояние
786 786 label_loading: Зареждане...
787 787 label_relation_new: Нова релация
788 788 label_relation_delete: Изтриване на релация
789 789 label_relates_to: свързана със
790 790 label_duplicates: дублира
791 791 label_duplicated_by: дублирана от
792 792 label_blocks: блокира
793 793 label_blocked_by: блокирана от
794 794 label_precedes: предшества
795 795 label_follows: изпълнява се след
796 796 label_copied_to: копирана в
797 797 label_copied_from: копирана от
798 798 label_stay_logged_in: Запомни ме
799 799 label_disabled: забранено
800 800 label_show_completed_versions: Показване на реализирани версии
801 801 label_me: аз
802 802 label_board: Форум
803 803 label_board_new: Нов форум
804 804 label_board_plural: Форуми
805 805 label_board_locked: Заключена
806 806 label_board_sticky: Sticky
807 807 label_topic_plural: Теми
808 808 label_message_plural: Съобщения
809 809 label_message_last: Последно съобщение
810 810 label_message_new: Нова тема
811 811 label_message_posted: Добавено съобщение
812 812 label_reply_plural: Отговори
813 813 label_send_information: Изпращане на информацията до потребителя
814 814 label_year: Година
815 815 label_month: Месец
816 816 label_week: Седмица
817 817 label_date_from: От
818 818 label_date_to: До
819 819 label_language_based: В зависимост от езика
820 820 label_sort_by: "Сортиране по %{value}"
821 821 label_send_test_email: Изпращане на тестов e-mail
822 822 label_feeds_access_key: Atom access ключ
823 823 label_missing_feeds_access_key: Липсващ Atom ключ за достъп
824 824 label_feeds_access_key_created_on: "%{value} от създаването на Atom ключа"
825 825 label_module_plural: Модули
826 826 label_added_time_by: "Публикувана от %{author} преди %{age}"
827 827 label_updated_time_by: "Обновена от %{author} преди %{age}"
828 828 label_updated_time: "Обновена преди %{value}"
829 829 label_jump_to_a_project: Проект...
830 830 label_file_plural: Файлове
831 831 label_changeset_plural: Ревизии
832 832 label_default_columns: По подразбиране
833 833 label_no_change_option: (Без промяна)
834 834 label_bulk_edit_selected_issues: Групово редактиране на задачи
835 835 label_bulk_edit_selected_time_entries: Групово редактиране на записи за използвано време
836 836 label_theme: Тема
837 837 label_default: По подразбиране
838 838 label_search_titles_only: Само в заглавията
839 839 label_user_mail_option_all: "За всяко събитие в проектите, в които участвам"
840 840 label_user_mail_option_selected: "За всички събития само в избраните проекти..."
841 841 label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)"
842 842 label_user_mail_option_only_my_events: Само за неща, в които съм включен/а
843 843 label_user_mail_option_only_assigned: Само за неща, назначени на мен
844 844 label_user_mail_option_only_owner: Само за неща, на които аз съм собственик
845 845 label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени"
846 846 label_registration_activation_by_email: активиране на профила по email
847 847 label_registration_manual_activation: ръчно активиране
848 848 label_registration_automatic_activation: автоматично активиране
849 849 label_display_per_page: "На страница по: %{value}"
850 850 label_age: Възраст
851 851 label_change_properties: Промяна на настройки
852 852 label_general: Основни
853 853 label_more: Още
854 854 label_scm: SCM (Система за контрол на версиите)
855 855 label_plugins: Плъгини
856 856 label_ldap_authentication: LDAP оторизация
857 857 label_downloads_abbr: D/L
858 858 label_optional_description: Незадължително описание
859 859 label_add_another_file: Добавяне на друг файл
860 860 label_preferences: Предпочитания
861 861 label_chronological_order: Хронологичен ред
862 862 label_reverse_chronological_order: Обратен хронологичен ред
863 863 label_planning: Планиране
864 864 label_incoming_emails: Входящи e-mail-и
865 865 label_generate_key: Генериране на ключ
866 866 label_issue_watchers: Наблюдатели
867 867 label_example: Пример
868 868 label_display: Показване
869 869 label_sort: Сортиране
870 870 label_ascending: Нарастващ
871 871 label_descending: Намаляващ
872 872 label_date_from_to: От %{start} до %{end}
873 873 label_wiki_content_added: Wiki страница беше добавена
874 874 label_wiki_content_updated: Wiki страница беше обновена
875 875 label_group: Група
876 876 label_group_plural: Групи
877 877 label_group_new: Нова група
878 878 label_group_anonymous: Анонимни потребители
879 879 label_group_non_member: Потребители, които не са членове на проекта
880 880 label_time_entry_plural: Използвано време
881 881 label_version_sharing_none: Не споделен
882 882 label_version_sharing_descendants: С подпроекти
883 883 label_version_sharing_hierarchy: С проектна йерархия
884 884 label_version_sharing_tree: С дърво на проектите
885 885 label_version_sharing_system: С всички проекти
886 886 label_update_issue_done_ratios: Обновяване на процента на завършените задачи
887 887 label_copy_source: Източник
888 888 label_copy_target: Цел
889 889 label_copy_same_as_target: Също като целта
890 890 label_display_used_statuses_only: Показване само на състоянията, използвани от този тракер
891 891 label_api_access_key: API ключ за достъп
892 892 label_missing_api_access_key: Липсващ API ключ
893 893 label_api_access_key_created_on: API ключ за достъп е създаден преди %{value}
894 894 label_profile: Профил
895 895 label_subtask_plural: Подзадачи
896 896 label_project_copy_notifications: Изпращане на Send e-mail известия по време на копирането на проекта
897 897 label_principal_search: "Търсене на потребител или група:"
898 898 label_user_search: "Търсене на потребител:"
899 899 label_additional_workflow_transitions_for_author: Позволени са допълнителни преходи, когато потребителят е авторът
900 900 label_additional_workflow_transitions_for_assignee: Позволени са допълнителни преходи, когато потребителят е назначеният към задачата
901 901 label_issues_visibility_all: Всички задачи
902 902 label_issues_visibility_public: Всички не-лични задачи
903 903 label_issues_visibility_own: Задачи, създадени от или назначени на потребителя
904 904 label_git_report_last_commit: Извеждане на последното поверяване за файлове и папки
905 905 label_parent_revision: Ревизия родител
906 906 label_child_revision: Ревизия наследник
907 907 label_export_options: "%{export_format} опции за експорт"
908 908 label_copy_attachments: Копиране на прикачените файлове
909 909 label_copy_subtasks: Копиране на подзадачите
910 910 label_item_position: "%{position}/%{count}"
911 911 label_completed_versions: Завършени версии
912 912 label_search_for_watchers: Търсене на потребители за наблюдатели
913 913 label_session_expiration: Изтичане на сесиите
914 914 label_show_closed_projects: Разглеждане на затворени проекти
915 915 label_status_transitions: Преходи между състоянията
916 916 label_fields_permissions: Видимост на полетата
917 917 label_readonly: Само за четене
918 918 label_required: Задължително
919 919 label_hidden: Скрит
920 920 label_attribute_of_project: Project's %{name}
921 921 label_attribute_of_issue: Issue's %{name}
922 922 label_attribute_of_author: Author's %{name}
923 923 label_attribute_of_assigned_to: Assignee's %{name}
924 924 label_attribute_of_user: User's %{name}
925 925 label_attribute_of_fixed_version: Target version's %{name}
926 926 label_cross_project_descendants: С подпроекти
927 927 label_cross_project_tree: С дърво на проектите
928 928 label_cross_project_hierarchy: С проектна йерархия
929 929 label_cross_project_system: С всички проекти
930 930 label_gantt_progress_line: Линия на изпълнението
931 931 label_visibility_private: лични (само за мен)
932 932 label_visibility_roles: само за тези роли
933 933 label_visibility_public: за всички потребители
934 934 label_link: Връзка
935 935 label_only: само
936 936 label_drop_down_list: drop-down списък
937 937 label_checkboxes: чек-бокс
938 938 label_radio_buttons: радио-бутони
939 939 label_link_values_to: URL (опция)
940 940 label_custom_field_select_type: "Изберете тип на обект, към който потребителското поле да бъде асоциирано"
941 941 label_check_for_updates: Проверка за нови версии
942 942 label_latest_compatible_version: Последна съвместима версия
943 943 label_unknown_plugin: Непознат плъгин
944 944 label_add_projects: Добавяне на проекти
945 945 label_users_visibility_all: Всички активни потребители
946 946 label_users_visibility_members_of_visible_projects: Членовете на видимите проекти
947 947 label_edit_attachments: Редактиране на прикачените файлове
948 948 label_link_copied_issue: Създаване на връзка между задачите
949 949 label_ask: Питане преди копиране
950 950 label_search_attachments_yes: Търсене на имената на прикачените файлове и техните описания
951 951 label_search_attachments_no: Да не се претърсват прикачените файлове
952 952 label_search_attachments_only: Търсене само на прикачените файлове
953 953 label_search_open_issues_only: Търсене само на задачите
954 954 label_email_address_plural: Имейли
955 955 label_email_address_add: Добавяне на имейл адрес
956 956 label_enable_notifications: Разрешаване на известията
957 957 label_disable_notifications: Забрана на известията
958 958 label_blank_value: празно
959 959 label_parent_task_attributes: Атрибути на родителските задачи
960 960 label_parent_task_attributes_derived: Изчислени от подзадачите
961 961 label_parent_task_attributes_independent: Независими от подзадачите
962 962 label_time_entries_visibility_all: Всички записи за използвано време
963 963 label_time_entries_visibility_own: Записи за използвано време създадени от потребителя
964 964 label_member_management: Управление на членовете
965 965 label_member_management_all_roles: Всички роли
966 966 label_member_management_selected_roles_only: Само тези роли
967 967 label_import_issues: Импорт на задачи
968 968 label_select_file_to_import: Файл за импортиране
969 969 label_fields_separator: Разделител между полетата
970 970 label_fields_wrapper: Разделител в полетата (wrapper)
971 971 label_encoding: Кодиране
972 972 label_comma_char: Запетая
973 973 label_semi_colon_char: Точка и запетая
974 974 label_quote_char: Кавичка
975 975 label_double_quote_char: Двойна кавичка
976 976 label_fields_mapping: Съответствие между полетата
977 977 label_file_content_preview: Предварителен преглед на съдържанието на файла
978 978 label_create_missing_values: Създаване на липсващи стойности
979 979 label_api: API
980 980 label_field_format_enumeration: Списък ключ/стойност
981 981 label_default_values_for_new_users: Стойности по подразбиране за нови потребители
982 982
983 983 button_login: Вход
984 984 button_submit: Изпращане
985 985 button_save: Запис
986 986 button_check_all: Избор на всички
987 987 button_uncheck_all: Изчистване на всички
988 988 button_collapse_all: Скриване всички
989 989 button_expand_all: Разгъване всички
990 990 button_delete: Изтриване
991 991 button_create: Създаване
992 992 button_create_and_continue: Създаване и продължаване
993 993 button_test: Тест
994 994 button_edit: Редакция
995 995 button_edit_associated_wikipage: "Редактиране на асоциираната Wiki страница: %{page_title}"
996 996 button_add: Добавяне
997 997 button_change: Промяна
998 998 button_apply: Приложи
999 999 button_clear: Изчисти
1000 1000 button_lock: Заключване
1001 1001 button_unlock: Отключване
1002 1002 button_download: Изтегляне
1003 1003 button_list: Списък
1004 1004 button_view: Преглед
1005 1005 button_move: Преместване
1006 1006 button_move_and_follow: Преместване и продължаване
1007 1007 button_back: Назад
1008 1008 button_cancel: Отказ
1009 1009 button_activate: Активация
1010 1010 button_sort: Сортиране
1011 1011 button_log_time: Отделяне на време
1012 1012 button_rollback: Върни се към тази ревизия
1013 1013 button_watch: Наблюдаване
1014 1014 button_unwatch: Край на наблюдението
1015 1015 button_reply: Отговор
1016 1016 button_archive: Архивиране
1017 1017 button_unarchive: Разархивиране
1018 1018 button_reset: Генериране наново
1019 1019 button_rename: Преименуване
1020 1020 button_change_password: Промяна на парола
1021 1021 button_copy: Копиране
1022 1022 button_copy_and_follow: Копиране и продължаване
1023 1023 button_annotate: Анотация
1024 1024 button_update: Обновяване
1025 1025 button_configure: Конфигуриране
1026 1026 button_quote: Цитат
1027 1027 button_duplicate: Дублиране
1028 1028 button_show: Показване
1029 1029 button_hide: Скриване
1030 1030 button_edit_section: Редактиране на тази секция
1031 1031 button_export: Експорт
1032 1032 button_delete_my_account: Премахване на моя профил
1033 1033 button_close: Затваряне
1034 1034 button_reopen: Отваряне
1035 1035 button_import: Импорт
1036 1036
1037 1037 status_active: активен
1038 1038 status_registered: регистриран
1039 1039 status_locked: заключен
1040 1040
1041 1041 project_status_active: активен
1042 1042 project_status_closed: затворен
1043 1043 project_status_archived: архивиран
1044 1044
1045 1045 version_status_open: отворена
1046 1046 version_status_locked: заключена
1047 1047 version_status_closed: затворена
1048 1048
1049 1049 field_active: Активен
1050 1050
1051 1051 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
1052 1052 text_regexp_info: пр. ^[A-Z0-9]+$
1053 1053 text_min_max_length_info: 0 - без ограничения
1054 1054 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
1055 1055 text_subprojects_destroy_warning: "Неговите подпроекти: %{value} също ще бъдат изтрити."
1056 1056 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
1057 1057 text_are_you_sure: Сигурни ли сте?
1058 1058 text_journal_changed: "%{label} променен от %{old} на %{new}"
1059 1059 text_journal_changed_no_detail: "%{label} променен"
1060 1060 text_journal_set_to: "%{label} установен на %{value}"
1061 1061 text_journal_deleted: "%{label} изтрит (%{old})"
1062 1062 text_journal_added: "Добавено %{label} %{value}"
1063 1063 text_tip_issue_begin_day: задача, започваща този ден
1064 1064 text_tip_issue_end_day: задача, завършваща този ден
1065 1065 text_tip_issue_begin_end_day: задача, започваща и завършваща този ден
1066 1066 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри, тирета и _.<br />Промяна след създаването му не е възможна.'
1067 1067 text_caracters_maximum: "До %{count} символа."
1068 1068 text_caracters_minimum: "Минимум %{count} символа."
1069 1069 text_length_between: "От %{min} до %{max} символа."
1070 1070 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
1071 1071 text_unallowed_characters: Непозволени символи
1072 1072 text_comma_separated: Позволено е изброяване (с разделител запетая).
1073 1073 text_line_separated: Позволени са много стойности (по едно на ред).
1074 1074 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии
1075 1075 text_issue_added: "Публикувана е нова задача с номер %{id} (от %{author})."
1076 1076 text_issue_updated: "Задача %{id} е обновена (от %{author})."
1077 1077 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
1078 1078 text_issue_category_destroy_question: "Има задачи (%{count}) обвързани с тази категория. Какво ще изберете?"
1079 1079 text_issue_category_destroy_assignments: Премахване на връзките с категорията
1080 1080 text_issue_category_reassign_to: Преобвързване с категория
1081 1081 text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)."
1082 1082 text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, състояния на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате."
1083 1083 text_load_default_configuration: Зареждане на примерна информация
1084 1084 text_status_changed_by_changeset: "Приложено с ревизия %{value}."
1085 1085 text_time_logged_by_changeset: Приложено в ревизия %{value}.
1086 1086 text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?'
1087 1087 text_issues_destroy_descendants_confirmation: Тази операция ще премахне и %{count} подзадача(и).
1088 1088 text_time_entries_destroy_confirmation: Сигурен ли сте, че изтриете избраните записи за изразходвано време?
1089 1089 text_select_project_modules: 'Изберете активните модули за този проект:'
1090 1090 text_default_administrator_account_changed: Сменен фабричния администраторски профил
1091 1091 text_file_repository_writable: Възможност за писане в хранилището с файлове
1092 1092 text_plugin_assets_writable: Папката на приставките е разрешена за запис
1093 1093 text_rmagick_available: Наличен RMagick (по избор)
1094 1094 text_convert_available: Наличен ImageMagick convert (по избор)
1095 1095 text_destroy_time_entries_question: "%{hours} часа са отделени на задачите, които искате да изтриете. Какво избирате?"
1096 1096 text_destroy_time_entries: Изтриване на отделеното време
1097 1097 text_assign_time_entries_to_project: Прехвърляне на отделеното време към проект
1098 1098 text_reassign_time_entries: 'Прехвърляне на отделеното време към задача:'
1099 1099 text_user_wrote: "%{value} написа:"
1100 1100 text_enumeration_destroy_question: "%{count} обекта са свързани с тази стойност."
1101 1101 text_enumeration_category_reassign_to: 'Пресвържете ги към тази стойност:'
1102 1102 text_email_delivery_not_configured: "Изпращането на e-mail-и не е конфигурирано и известията не са разрешени.\nКонфигурирайте вашия SMTP сървър в config/configuration.yml и рестартирайте Redmine, за да ги разрешите."
1103 1103 text_repository_usernames_mapping: "Изберете или променете потребителите в Redmine, съответстващи на потребителите в дневника на хранилището (repository).\nПотребителите с еднакви имена в Redmine и хранилищата се съвместяват автоматично."
1104 1104 text_diff_truncated: '... Този diff не е пълен, понеже е надхвърля максималния размер, който може да бъде показан.'
1105 1105 text_custom_field_possible_values_info: 'Една стойност на ред'
1106 1106 text_wiki_page_destroy_question: Тази страница има %{descendants} страници деца и descendant(s). Какво желаете да правите?
1107 1107 text_wiki_page_nullify_children: Запазване на тези страници като коренни страници
1108 1108 text_wiki_page_destroy_children: Изтриване на страниците деца и всички техни descendants
1109 1109 text_wiki_page_reassign_children: Преназначаване на страниците деца на тази родителска страница
1110 1110 text_own_membership_delete_confirmation: "Вие сте на път да премахнете някои или всички ваши разрешения и е възможно след това да не можете да редактирате този проект.\nСигурен ли сте, че искате да продължите?"
1111 1111 text_zoom_in: Увеличаване
1112 1112 text_zoom_out: Намаляване
1113 1113 text_warn_on_leaving_unsaved: Страницата съдържа незаписано съдържание, което може да бъде загубено, ако я напуснете.
1114 1114 text_scm_path_encoding_note: "По подразбиране: UTF-8"
1115 1115 text_subversion_repository_note: 'Примери: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
1116 1116 text_git_repository_note: Празно и локално хранилище (например /gitrepo, c:\gitrepo)
1117 1117 text_mercurial_repository_note: Локално хранилище (например /hgrepo, c:\hgrepo)
1118 1118 text_scm_command: SCM команда
1119 1119 text_scm_command_version: Версия
1120 1120 text_scm_config: Можете да конфигурирате SCM командите в config/configuration.yml. За да активирате промените, рестартирайте Redmine.
1121 1121 text_scm_command_not_available: SCM командата не е налична или достъпна. Проверете конфигурацията в административния панел.
1122 1122 text_issue_conflict_resolution_overwrite: Прилагане на моите промени (предишните коментари ще бъдат запазени, но някои други промени може да бъдат презаписани)
1123 1123 text_issue_conflict_resolution_add_notes: Добавяне на моите коментари и отхвърляне на другите мои промени
1124 1124 text_issue_conflict_resolution_cancel: Отхвърляне на всички мои промени и презареждане на %{link}
1125 1125 text_account_destroy_confirmation: "Сигурен/на ли сте, че желаете да продължите?\nВашият профил ще бъде премахнат без възможност за възстановяване."
1126 1126 text_session_expiration_settings: "Внимание: промяната на тези установяваноя може да прекрати всички активни сесии, включително и вашата."
1127 1127 text_project_closed: Този проект е затворен и е само за четене.
1128 1128 text_turning_multiple_off: Ако забраните възможността за повече от една стойност, повечето стойности ще бъдат
1129 1129 премахнати с цел да остане само по една стойност за поле.
1130 1130
1131 1131 default_role_manager: Мениджър
1132 1132 default_role_developer: Разработчик
1133 1133 default_role_reporter: Публикуващ
1134 1134 default_tracker_bug: Грешка
1135 1135 default_tracker_feature: Функционалност
1136 1136 default_tracker_support: Поддръжка
1137 1137 default_issue_status_new: Нова
1138 1138 default_issue_status_in_progress: Изпълнение
1139 1139 default_issue_status_resolved: Приключена
1140 1140 default_issue_status_feedback: Обратна връзка
1141 1141 default_issue_status_closed: Затворена
1142 1142 default_issue_status_rejected: Отхвърлена
1143 1143 default_doc_category_user: Документация за потребителя
1144 1144 default_doc_category_tech: Техническа документация
1145 1145 default_priority_low: Нисък
1146 1146 default_priority_normal: Нормален
1147 1147 default_priority_high: Висок
1148 1148 default_priority_urgent: Спешен
1149 1149 default_priority_immediate: Веднага
1150 1150 default_activity_design: Дизайн
1151 1151 default_activity_development: Разработка
1152 1152
1153 1153 enumeration_issue_priorities: Приоритети на задачи
1154 1154 enumeration_doc_categories: Категории документи
1155 1155 enumeration_activities: Дейности (time tracking)
1156 1156 enumeration_system_activity: Системна активност
1157 1157 description_filter: Филтър
1158 1158 description_search: Търсене
1159 1159 description_choose_project: Проекти
1160 1160 description_project_scope: Обхват на търсенето
1161 1161 description_notes: Бележки
1162 1162 description_message_content: Съдържание на съобщението
1163 1163 description_query_sort_criteria_attribute: Атрибут на сортиране
1164 1164 description_query_sort_criteria_direction: Посока на сортиране
1165 1165 description_user_mail_notification: Конфигурация известията по пощата
1166 1166 description_available_columns: Налични колони
1167 1167 description_selected_columns: Избрани колони
1168 1168 description_issue_category_reassign: Изберете категория
1169 1169 description_wiki_subpages_reassign: Изберете нова родителска страница
1170 1170 description_all_columns: Всички колони
1171 1171 description_date_range_list: Изберете диапазон от списъка
1172 1172 description_date_range_interval: Изберете диапазон чрез задаване на начална и крайна дати
1173 1173 description_date_from: Въведете начална дата
1174 1174 description_date_to: Въведете крайна дата
1175 1175 text_repository_identifier_info: 'Позволени са малки букви (a-z), цифри, тирета и _.<br />Промяна след създаването му не е възможна.'
1176 error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot
1177 be reassigned to an issue that is about to be deleted
@@ -1,1197 +1,1199
1 1 #Ernad Husremovic hernad@bring.out.ba
2 2
3 3 bs:
4 4 direction: ltr
5 5 date:
6 6 formats:
7 7 default: "%d.%m.%Y"
8 8 short: "%e. %b"
9 9 long: "%e. %B %Y"
10 10 only_day: "%e"
11 11
12 12
13 13 day_names: [Nedjelja, Ponedjeljak, Utorak, Srijeda, Četvrtak, Petak, Subota]
14 14 abbr_day_names: [Ned, Pon, Uto, Sri, Čet, Pet, Sub]
15 15
16 16 month_names: [~, Januar, Februar, Mart, April, Maj, Jun, Jul, Avgust, Septembar, Oktobar, Novembar, Decembar]
17 17 abbr_month_names: [~, Jan, Feb, Mar, Apr, Maj, Jun, Jul, Avg, Sep, Okt, Nov, Dec]
18 18 order:
19 19 - :day
20 20 - :month
21 21 - :year
22 22
23 23 time:
24 24 formats:
25 25 default: "%A, %e. %B %Y, %H:%M"
26 26 short: "%e. %B, %H:%M Uhr"
27 27 long: "%A, %e. %B %Y, %H:%M"
28 28 time: "%H:%M"
29 29
30 30 am: "prijepodne"
31 31 pm: "poslijepodne"
32 32
33 33 datetime:
34 34 distance_in_words:
35 35 half_a_minute: "pola minute"
36 36 less_than_x_seconds:
37 37 one: "manje od 1 sekunde"
38 38 other: "manje od %{count} sekudni"
39 39 x_seconds:
40 40 one: "1 sekunda"
41 41 other: "%{count} sekundi"
42 42 less_than_x_minutes:
43 43 one: "manje od 1 minute"
44 44 other: "manje od %{count} minuta"
45 45 x_minutes:
46 46 one: "1 minuta"
47 47 other: "%{count} minuta"
48 48 about_x_hours:
49 49 one: "oko 1 sahat"
50 50 other: "oko %{count} sahata"
51 51 x_hours:
52 52 one: "1 sahat"
53 53 other: "%{count} sahata"
54 54 x_days:
55 55 one: "1 dan"
56 56 other: "%{count} dana"
57 57 about_x_months:
58 58 one: "oko 1 mjesec"
59 59 other: "oko %{count} mjeseci"
60 60 x_months:
61 61 one: "1 mjesec"
62 62 other: "%{count} mjeseci"
63 63 about_x_years:
64 64 one: "oko 1 godine"
65 65 other: "oko %{count} godina"
66 66 over_x_years:
67 67 one: "preko 1 godine"
68 68 other: "preko %{count} godina"
69 69 almost_x_years:
70 70 one: "almost 1 year"
71 71 other: "almost %{count} years"
72 72
73 73
74 74 number:
75 75 format:
76 76 precision: 2
77 77 separator: ','
78 78 delimiter: '.'
79 79 currency:
80 80 format:
81 81 unit: 'KM'
82 82 format: '%u %n'
83 83 negative_format: '%u -%n'
84 84 delimiter: ''
85 85 percentage:
86 86 format:
87 87 delimiter: ""
88 88 precision:
89 89 format:
90 90 delimiter: ""
91 91 human:
92 92 format:
93 93 delimiter: ""
94 94 precision: 3
95 95 storage_units:
96 96 format: "%n %u"
97 97 units:
98 98 byte:
99 99 one: "Byte"
100 100 other: "Bytes"
101 101 kb: "KB"
102 102 mb: "MB"
103 103 gb: "GB"
104 104 tb: "TB"
105 105
106 106 # Used in array.to_sentence.
107 107 support:
108 108 array:
109 109 sentence_connector: "i"
110 110 skip_last_comma: false
111 111
112 112 activerecord:
113 113 errors:
114 114 template:
115 115 header:
116 116 one: "1 error prohibited this %{model} from being saved"
117 117 other: "%{count} errors prohibited this %{model} from being saved"
118 118 messages:
119 119 inclusion: "nije uključeno u listu"
120 120 exclusion: "je rezervisano"
121 121 invalid: "nije ispravno"
122 122 confirmation: "ne odgovara potvrdi"
123 123 accepted: "mora se prihvatiti"
124 124 empty: "ne može biti prazno"
125 125 blank: "ne može biti znak razmaka"
126 126 too_long: "je predugačko"
127 127 too_short: "je prekratko"
128 128 wrong_length: "je pogrešne dužine"
129 129 taken: "već je zauzeto"
130 130 not_a_number: "nije broj"
131 131 not_a_date: "nije ispravan datum"
132 132 greater_than: "mora bit veći od %{count}"
133 133 greater_than_or_equal_to: "mora bit veći ili jednak %{count}"
134 134 equal_to: "mora biti jednak %{count}"
135 135 less_than: "mora biti manji od %{count}"
136 136 less_than_or_equal_to: "mora bit manji ili jednak %{count}"
137 137 odd: "mora biti neparan"
138 138 even: "mora biti paran"
139 139 greater_than_start_date: "mora biti veći nego početni datum"
140 140 not_same_project: "ne pripada istom projektu"
141 141 circular_dependency: "Ova relacija stvar cirkularnu zavisnost"
142 142 cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks"
143 143 earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues"
144 144
145 145 actionview_instancetag_blank_option: Molimo odaberite
146 146
147 147 general_text_No: 'Da'
148 148 general_text_Yes: 'Ne'
149 149 general_text_no: 'ne'
150 150 general_text_yes: 'da'
151 151 general_lang_name: 'Bosnian (Bosanski)'
152 152 general_csv_separator: ','
153 153 general_csv_decimal_separator: '.'
154 154 general_csv_encoding: UTF-8
155 155 general_pdf_fontname: freesans
156 156 general_pdf_monospaced_fontname: freemono
157 157 general_first_day_of_week: '7'
158 158
159 159 notice_account_activated: Vaš nalog je aktiviran. Možete se prijaviti.
160 160 notice_account_invalid_creditentials: Pogrešan korisnik ili lozinka
161 161 notice_account_lost_email_sent: Email sa uputstvima o izboru nove šifre je poslat na vašu adresu.
162 162 notice_account_password_updated: Lozinka je uspješno promjenjena.
163 163 notice_account_pending: "Vaš nalog je kreiran i čeka odobrenje administratora."
164 164 notice_account_register_done: Nalog je uspješno kreiran. Da bi ste aktivirali vaš nalog kliknite na link koji vam je poslat.
165 165 notice_account_unknown_email: Nepoznati korisnik.
166 166 notice_account_updated: Nalog je uspješno promjenen.
167 167 notice_account_wrong_password: Pogrešna lozinka
168 168 notice_can_t_change_password: Ovaj nalog koristi eksterni izvor prijavljivanja. Ne mogu da promjenim šifru.
169 169 notice_default_data_loaded: Podrazumjevana konfiguracija uspječno učitana.
170 170 notice_email_error: Došlo je do greške pri slanju emaila (%{value})
171 171 notice_email_sent: "Email je poslan %{value}"
172 172 notice_failed_to_save_issues: "Neuspješno snimanje %{count} aktivnosti na %{total} izabrano: %{ids}."
173 173 notice_feeds_access_key_reseted: Vaš Atom pristup je resetovan.
174 174 notice_file_not_found: Stranica kojoj pokušavate da pristupite ne postoji ili je uklonjena.
175 175 notice_locking_conflict: "Konflikt: podaci su izmjenjeni od strane drugog korisnika."
176 176 notice_no_issue_selected: "Nijedna aktivnost nije izabrana! Molim, izaberite aktivnosti koje želite za ispravljate."
177 177 notice_not_authorized: Niste ovlašćeni da pristupite ovoj stranici.
178 178 notice_successful_connection: Uspješna konekcija.
179 179 notice_successful_create: Uspješno kreiranje.
180 180 notice_successful_delete: Brisanje izvršeno.
181 181 notice_successful_update: Promjene uspješno izvršene.
182 182
183 183 error_can_t_load_default_data: "Podrazumjevane postavke se ne mogu učitati %{value}"
184 184 error_scm_command_failed: "Desila se greška pri pristupu repozitoriju: %{value}"
185 185 error_scm_not_found: "Unos i/ili revizija ne postoji u repozitoriju."
186 186
187 187 error_scm_annotate: "Ova stavka ne postoji ili nije označena."
188 188 error_issue_not_found_in_project: 'Aktivnost nije nađena ili ne pripada ovom projektu'
189 189
190 190 warning_attachments_not_saved: "%{count} fajl(ovi) ne mogu biti snimljen(i)."
191 191
192 192 mail_subject_lost_password: "Vaša %{value} lozinka"
193 193 mail_body_lost_password: 'Za promjenu lozinke, kliknite na sljedeći link:'
194 194 mail_subject_register: "Aktivirajte %{value} vaš korisnički račun"
195 195 mail_body_register: 'Za aktivaciju vašeg korisničkog računa, kliknite na sljedeći link:'
196 196 mail_body_account_information_external: "Možete koristiti vaš %{value} korisnički račun za prijavu na sistem."
197 197 mail_body_account_information: Informacija o vašem korisničkom računu
198 198 mail_subject_account_activation_request: "%{value} zahtjev za aktivaciju korisničkog računa"
199 199 mail_body_account_activation_request: "Novi korisnik (%{value}) se registrovao. Korisnički račun čeka vaše odobrenje za aktivaciju:"
200 200 mail_subject_reminder: "%{count} aktivnost(i) u kašnjenju u narednim %{days} danima"
201 201 mail_body_reminder: "%{count} aktivnost(i) koje su dodjeljenje vama u narednim %{days} danima:"
202 202
203 203
204 204 field_name: Ime
205 205 field_description: Opis
206 206 field_summary: Pojašnjenje
207 207 field_is_required: Neophodno popuniti
208 208 field_firstname: Ime
209 209 field_lastname: Prezime
210 210 field_mail: Email
211 211 field_filename: Fajl
212 212 field_filesize: Veličina
213 213 field_downloads: Downloadi
214 214 field_author: Autor
215 215 field_created_on: Kreirano
216 216 field_updated_on: Izmjenjeno
217 217 field_field_format: Format
218 218 field_is_for_all: Za sve projekte
219 219 field_possible_values: Moguće vrijednosti
220 220 field_regexp: '"Regularni izraz"'
221 221 field_min_length: Minimalna veličina
222 222 field_max_length: Maksimalna veličina
223 223 field_value: Vrijednost
224 224 field_category: Kategorija
225 225 field_title: Naslov
226 226 field_project: Projekat
227 227 field_issue: Aktivnost
228 228 field_status: Status
229 229 field_notes: Bilješke
230 230 field_is_closed: Aktivnost zatvorena
231 231 field_is_default: Podrazumjevana vrijednost
232 232 field_tracker: Područje aktivnosti
233 233 field_subject: Subjekat
234 234 field_due_date: Završiti do
235 235 field_assigned_to: Dodijeljeno
236 236 field_priority: Prioritet
237 237 field_fixed_version: Ciljna verzija
238 238 field_user: Korisnik
239 239 field_role: Uloga
240 240 field_homepage: Naslovna strana
241 241 field_is_public: Javni
242 242 field_parent: Podprojekt od
243 243 field_is_in_roadmap: Aktivnosti prikazane u planu realizacije
244 244 field_login: Prijava
245 245 field_mail_notification: Email notifikacije
246 246 field_admin: Administrator
247 247 field_last_login_on: Posljednja konekcija
248 248 field_language: Jezik
249 249 field_effective_date: Datum
250 250 field_password: Lozinka
251 251 field_new_password: Nova lozinka
252 252 field_password_confirmation: Potvrda
253 253 field_version: Verzija
254 254 field_type: Tip
255 255 field_host: Host
256 256 field_port: Port
257 257 field_account: Korisnički račun
258 258 field_base_dn: Base DN
259 259 field_attr_login: Attribut za prijavu
260 260 field_attr_firstname: Attribut za ime
261 261 field_attr_lastname: Atribut za prezime
262 262 field_attr_mail: Atribut za email
263 263 field_onthefly: 'Kreiranje korisnika "On-the-fly"'
264 264 field_start_date: Početak
265 265 field_done_ratio: "% Realizovano"
266 266 field_auth_source: Mod za authentifikaciju
267 267 field_hide_mail: Sakrij moju email adresu
268 268 field_comments: Komentar
269 269 field_url: URL
270 270 field_start_page: Početna stranica
271 271 field_subproject: Podprojekat
272 272 field_hours: Sahata
273 273 field_activity: Operacija
274 274 field_spent_on: Datum
275 275 field_identifier: Identifikator
276 276 field_is_filter: Korišteno kao filter
277 277 field_issue_to: Povezana aktivnost
278 278 field_delay: Odgađanje
279 279 field_assignable: Aktivnosti dodijeljene ovoj ulozi
280 280 field_redirect_existing_links: Izvrši redirekciju postojećih linkova
281 281 field_estimated_hours: Procjena vremena
282 282 field_column_names: Kolone
283 283 field_time_zone: Vremenska zona
284 284 field_searchable: Pretraživo
285 285 field_default_value: Podrazumjevana vrijednost
286 286 field_comments_sorting: Prikaži komentare
287 287 field_parent_title: 'Stranica "roditelj"'
288 288 field_editable: Može se mijenjati
289 289 field_watcher: Posmatrač
290 290 field_identity_url: OpenID URL
291 291 field_content: Sadržaj
292 292
293 293 setting_app_title: Naslov aplikacije
294 294 setting_app_subtitle: Podnaslov aplikacije
295 295 setting_welcome_text: Tekst dobrodošlice
296 296 setting_default_language: Podrazumjevani jezik
297 297 setting_login_required: Authentifikacija neophodna
298 298 setting_self_registration: Samo-registracija
299 299 setting_attachment_max_size: Maksimalna veličina prikačenog fajla
300 300 setting_issues_export_limit: Limit za eksport aktivnosti
301 301 setting_mail_from: Mail adresa - pošaljilac
302 302 setting_bcc_recipients: '"BCC" (blind carbon copy) primaoci '
303 303 setting_plain_text_mail: Email sa običnim tekstom (bez HTML-a)
304 304 setting_host_name: Ime hosta i putanja
305 305 setting_text_formatting: Formatiranje teksta
306 306 setting_wiki_compression: Kompresija Wiki istorije
307 307
308 308 setting_feeds_limit: 'Limit za "Atom" feed-ove'
309 309 setting_default_projects_public: Podrazumjeva se da je novi projekat javni
310 310 setting_autofetch_changesets: 'Automatski kupi "commit"-e'
311 311 setting_sys_api_enabled: 'Omogući "WS" za upravljanje repozitorijom'
312 312 setting_commit_ref_keywords: Ključne riječi za reference
313 313 setting_commit_fix_keywords: 'Ključne riječi za status "zatvoreno"'
314 314 setting_autologin: Automatski login
315 315 setting_date_format: Format datuma
316 316 setting_time_format: Format vremena
317 317 setting_cross_project_issue_relations: Omogući relacije između aktivnosti na različitim projektima
318 318 setting_issue_list_default_columns: Podrazumjevane koleone za prikaz na listi aktivnosti
319 319 setting_emails_footer: Potpis na email-ovima
320 320 setting_protocol: Protokol
321 321 setting_per_page_options: Broj objekata po stranici
322 322 setting_user_format: Format korisničkog prikaza
323 323 setting_activity_days_default: Prikaz promjena na projektu - opseg dana
324 324 setting_display_subprojects_issues: Prikaz podprojekata na glavnom projektima (podrazumjeva se)
325 325 setting_enabled_scm: Omogući SCM (source code management)
326 326 setting_mail_handler_api_enabled: Omogući automatsku obradu ulaznih emailova
327 327 setting_mail_handler_api_key: API ključ (obrada ulaznih mailova)
328 328 setting_sequential_project_identifiers: Generiši identifikatore projekta sekvencijalno
329 329 setting_gravatar_enabled: 'Koristi "gravatar" korisničke ikone'
330 330 setting_diff_max_lines_displayed: Maksimalan broj linija za prikaz razlika između dva fajla
331 331 setting_file_max_size_displayed: Maksimalna veličina fajla kod prikaza razlika unutar fajla (inline)
332 332 setting_repository_log_display_limit: Maksimalna veličina revizija prikazanih na log fajlu
333 333 setting_openid: Omogući OpenID prijavu i registraciju
334 334
335 335 permission_edit_project: Ispravke projekta
336 336 permission_select_project_modules: Odaberi module projekta
337 337 permission_manage_members: Upravljanje članovima
338 338 permission_manage_versions: Upravljanje verzijama
339 339 permission_manage_categories: Upravljanje kategorijama aktivnosti
340 340 permission_add_issues: Dodaj aktivnosti
341 341 permission_edit_issues: Ispravka aktivnosti
342 342 permission_manage_issue_relations: Upravljaj relacijama među aktivnostima
343 343 permission_add_issue_notes: Dodaj bilješke
344 344 permission_edit_issue_notes: Ispravi bilješke
345 345 permission_edit_own_issue_notes: Ispravi sopstvene bilješke
346 346 permission_move_issues: Pomjeri aktivnosti
347 347 permission_delete_issues: Izbriši aktivnosti
348 348 permission_manage_public_queries: Upravljaj javnim upitima
349 349 permission_save_queries: Snimi upite
350 350 permission_view_gantt: Pregled gantograma
351 351 permission_view_calendar: Pregled kalendara
352 352 permission_view_issue_watchers: Pregled liste korisnika koji prate aktivnost
353 353 permission_add_issue_watchers: Dodaj onoga koji prati aktivnost
354 354 permission_log_time: Evidentiraj utrošak vremena
355 355 permission_view_time_entries: Pregled utroška vremena
356 356 permission_edit_time_entries: Ispravka utroška vremena
357 357 permission_edit_own_time_entries: Ispravka svog utroška vremena
358 358 permission_manage_news: Upravljaj novostima
359 359 permission_comment_news: Komentiraj novosti
360 360 permission_view_documents: Pregled dokumenata
361 361 permission_manage_files: Upravljaj fajlovima
362 362 permission_view_files: Pregled fajlova
363 363 permission_manage_wiki: Upravljaj wiki stranicama
364 364 permission_rename_wiki_pages: Ispravi wiki stranicu
365 365 permission_delete_wiki_pages: Izbriši wiki stranicu
366 366 permission_view_wiki_pages: Pregled wiki sadržaja
367 367 permission_view_wiki_edits: Pregled wiki istorije
368 368 permission_edit_wiki_pages: Ispravka wiki stranica
369 369 permission_delete_wiki_pages_attachments: Brisanje fajlova prikačenih wiki-ju
370 370 permission_protect_wiki_pages: Zaštiti wiki stranicu
371 371 permission_manage_repository: Upravljaj repozitorijem
372 372 permission_browse_repository: Pregled repozitorija
373 373 permission_view_changesets: Pregled setova promjena
374 374 permission_commit_access: 'Pristup "commit"-u'
375 375 permission_manage_boards: Upravljaj forumima
376 376 permission_view_messages: Pregled poruka
377 377 permission_add_messages: Šalji poruke
378 378 permission_edit_messages: Ispravi poruke
379 379 permission_edit_own_messages: Ispravka sopstvenih poruka
380 380 permission_delete_messages: Prisanje poruka
381 381 permission_delete_own_messages: Brisanje sopstvenih poruka
382 382
383 383 project_module_issue_tracking: Praćenje aktivnosti
384 384 project_module_time_tracking: Praćenje vremena
385 385 project_module_news: Novosti
386 386 project_module_documents: Dokumenti
387 387 project_module_files: Fajlovi
388 388 project_module_wiki: Wiki stranice
389 389 project_module_repository: Repozitorij
390 390 project_module_boards: Forumi
391 391
392 392 label_user: Korisnik
393 393 label_user_plural: Korisnici
394 394 label_user_new: Novi korisnik
395 395 label_project: Projekat
396 396 label_project_new: Novi projekat
397 397 label_project_plural: Projekti
398 398 label_x_projects:
399 399 zero: 0 projekata
400 400 one: 1 projekat
401 401 other: "%{count} projekata"
402 402 label_project_all: Svi projekti
403 403 label_project_latest: Posljednji projekti
404 404 label_issue: Aktivnost
405 405 label_issue_new: Nova aktivnost
406 406 label_issue_plural: Aktivnosti
407 407 label_issue_view_all: Vidi sve aktivnosti
408 408 label_issues_by: "Aktivnosti po %{value}"
409 409 label_issue_added: Aktivnost je dodana
410 410 label_issue_updated: Aktivnost je izmjenjena
411 411 label_document: Dokument
412 412 label_document_new: Novi dokument
413 413 label_document_plural: Dokumenti
414 414 label_document_added: Dokument je dodan
415 415 label_role: Uloga
416 416 label_role_plural: Uloge
417 417 label_role_new: Nove uloge
418 418 label_role_and_permissions: Uloge i dozvole
419 419 label_member: Izvršilac
420 420 label_member_new: Novi izvršilac
421 421 label_member_plural: Izvršioci
422 422 label_tracker: Područje aktivnosti
423 423 label_tracker_plural: Područja aktivnosti
424 424 label_tracker_new: Novo područje aktivnosti
425 425 label_workflow: Tok promjena na aktivnosti
426 426 label_issue_status: Status aktivnosti
427 427 label_issue_status_plural: Statusi aktivnosti
428 428 label_issue_status_new: Novi status
429 429 label_issue_category: Kategorija aktivnosti
430 430 label_issue_category_plural: Kategorije aktivnosti
431 431 label_issue_category_new: Nova kategorija
432 432 label_custom_field: Proizvoljno polje
433 433 label_custom_field_plural: Proizvoljna polja
434 434 label_custom_field_new: Novo proizvoljno polje
435 435 label_enumerations: Enumeracije
436 436 label_enumeration_new: Nova vrijednost
437 437 label_information: Informacija
438 438 label_information_plural: Informacije
439 439 label_please_login: Molimo prijavite se
440 440 label_register: Registracija
441 441 label_login_with_open_id_option: ili prijava sa OpenID-om
442 442 label_password_lost: Izgubljena lozinka
443 443 label_home: Početna stranica
444 444 label_my_page: Moja stranica
445 445 label_my_account: Moj korisnički račun
446 446 label_my_projects: Moji projekti
447 447 label_administration: Administracija
448 448 label_login: Prijavi se
449 449 label_logout: Odjavi se
450 450 label_help: Pomoć
451 451 label_reported_issues: Prijavljene aktivnosti
452 452 label_assigned_to_me_issues: Aktivnosti dodjeljene meni
453 453 label_last_login: Posljednja konekcija
454 454 label_registered_on: Registrovan na
455 455 label_activity_plural: Promjene
456 456 label_activity: Operacija
457 457 label_overall_activity: Pregled svih promjena
458 458 label_user_activity: "Promjene izvršene od: %{value}"
459 459 label_new: Novi
460 460 label_logged_as: Prijavljen kao
461 461 label_environment: Sistemsko okruženje
462 462 label_authentication: Authentifikacija
463 463 label_auth_source: Mod authentifikacije
464 464 label_auth_source_new: Novi mod authentifikacije
465 465 label_auth_source_plural: Modovi authentifikacije
466 466 label_subproject_plural: Podprojekti
467 467 label_and_its_subprojects: "%{value} i njegovi podprojekti"
468 468 label_min_max_length: Min - Maks dužina
469 469 label_list: Lista
470 470 label_date: Datum
471 471 label_integer: Cijeli broj
472 472 label_float: Float
473 473 label_boolean: Logička varijabla
474 474 label_string: Tekst
475 475 label_text: Dugi tekst
476 476 label_attribute: Atribut
477 477 label_attribute_plural: Atributi
478 478 label_no_data: Nema podataka za prikaz
479 479 label_change_status: Promjeni status
480 480 label_history: Istorija
481 481 label_attachment: Fajl
482 482 label_attachment_new: Novi fajl
483 483 label_attachment_delete: Izbriši fajl
484 484 label_attachment_plural: Fajlovi
485 485 label_file_added: Fajl je dodan
486 486 label_report: Izvještaj
487 487 label_report_plural: Izvještaji
488 488 label_news: Novosti
489 489 label_news_new: Dodaj novosti
490 490 label_news_plural: Novosti
491 491 label_news_latest: Posljednje novosti
492 492 label_news_view_all: Pogledaj sve novosti
493 493 label_news_added: Novosti su dodane
494 494 label_settings: Postavke
495 495 label_overview: Pregled
496 496 label_version: Verzija
497 497 label_version_new: Nova verzija
498 498 label_version_plural: Verzije
499 499 label_confirmation: Potvrda
500 500 label_export_to: 'Takođe dostupno u:'
501 501 label_read: Čitaj...
502 502 label_public_projects: Javni projekti
503 503 label_open_issues: otvoren
504 504 label_open_issues_plural: otvoreni
505 505 label_closed_issues: zatvoren
506 506 label_closed_issues_plural: zatvoreni
507 507 label_x_open_issues_abbr:
508 508 zero: 0 otvoreno
509 509 one: 1 otvorena
510 510 other: "%{count} otvorene"
511 511 label_x_closed_issues_abbr:
512 512 zero: 0 zatvoreno
513 513 one: 1 zatvorena
514 514 other: "%{count} zatvorene"
515 515 label_total: Ukupno
516 516 label_permissions: Dozvole
517 517 label_current_status: Tekući status
518 518 label_new_statuses_allowed: Novi statusi dozvoljeni
519 519 label_all: sve
520 520 label_none: ništa
521 521 label_nobody: niko
522 522 label_next: Sljedeće
523 523 label_previous: Predhodno
524 524 label_used_by: Korišteno od
525 525 label_details: Detalji
526 526 label_add_note: Dodaj bilješku
527 527 label_calendar: Kalendar
528 528 label_months_from: mjeseci od
529 529 label_gantt: Gantt
530 530 label_internal: Interno
531 531 label_last_changes: "posljednjih %{count} promjena"
532 532 label_change_view_all: Vidi sve promjene
533 533 label_personalize_page: Personaliziraj ovu stranicu
534 534 label_comment: Komentar
535 535 label_comment_plural: Komentari
536 536 label_x_comments:
537 537 zero: bez komentara
538 538 one: 1 komentar
539 539 other: "%{count} komentari"
540 540 label_comment_add: Dodaj komentar
541 541 label_comment_added: Komentar je dodan
542 542 label_comment_delete: Izbriši komentar
543 543 label_query: Proizvoljan upit
544 544 label_query_plural: Proizvoljni upiti
545 545 label_query_new: Novi upit
546 546 label_filter_add: Dodaj filter
547 547 label_filter_plural: Filteri
548 548 label_equals: je
549 549 label_not_equals: nije
550 550 label_in_less_than: je manji nego
551 551 label_in_more_than: je više nego
552 552 label_in: u
553 553 label_today: danas
554 554 label_all_time: sve vrijeme
555 555 label_yesterday: juče
556 556 label_this_week: ova hefta
557 557 label_last_week: zadnja hefta
558 558 label_last_n_days: "posljednjih %{count} dana"
559 559 label_this_month: ovaj mjesec
560 560 label_last_month: posljednji mjesec
561 561 label_this_year: ova godina
562 562 label_date_range: Datumski opseg
563 563 label_less_than_ago: ranije nego (dana)
564 564 label_more_than_ago: starije nego (dana)
565 565 label_ago: prije (dana)
566 566 label_contains: sadrži
567 567 label_not_contains: ne sadrži
568 568 label_day_plural: dani
569 569 label_repository: Repozitorij
570 570 label_repository_plural: Repozitoriji
571 571 label_browse: Listaj
572 572 label_revision: Revizija
573 573 label_revision_plural: Revizije
574 574 label_associated_revisions: Doddjeljene revizije
575 575 label_added: dodano
576 576 label_modified: izmjenjeno
577 577 label_copied: kopirano
578 578 label_renamed: preimenovano
579 579 label_deleted: izbrisano
580 580 label_latest_revision: Posljednja revizija
581 581 label_latest_revision_plural: Posljednje revizije
582 582 label_view_revisions: Vidi revizije
583 583 label_max_size: Maksimalna veličina
584 584 label_sort_highest: Pomjeri na vrh
585 585 label_sort_higher: Pomjeri gore
586 586 label_sort_lower: Pomjeri dole
587 587 label_sort_lowest: Pomjeri na dno
588 588 label_roadmap: Plan realizacije
589 589 label_roadmap_due_in: "Obavezan do %{value}"
590 590 label_roadmap_overdue: "%{value} kasni"
591 591 label_roadmap_no_issues: Nema aktivnosti za ovu verziju
592 592 label_search: Traži
593 593 label_result_plural: Rezultati
594 594 label_all_words: Sve riječi
595 595 label_wiki: Wiki stranice
596 596 label_wiki_edit: ispravka wiki-ja
597 597 label_wiki_edit_plural: ispravke wiki-ja
598 598 label_wiki_page: Wiki stranica
599 599 label_wiki_page_plural: Wiki stranice
600 600 label_index_by_title: Indeks prema naslovima
601 601 label_index_by_date: Indeks po datumima
602 602 label_current_version: Tekuća verzija
603 603 label_preview: Pregled
604 604 label_feed_plural: Feeds
605 605 label_changes_details: Detalji svih promjena
606 606 label_issue_tracking: Evidencija aktivnosti
607 607 label_spent_time: Utrošak vremena
608 608 label_f_hour: "%{value} sahat"
609 609 label_f_hour_plural: "%{value} sahata"
610 610 label_time_tracking: Evidencija vremena
611 611 label_change_plural: Promjene
612 612 label_statistics: Statistika
613 613 label_commits_per_month: '"Commit"-a po mjesecu'
614 614 label_commits_per_author: '"Commit"-a po autoru'
615 615 label_view_diff: Pregled razlika
616 616 label_diff_inline: zajedno
617 617 label_diff_side_by_side: jedna pored druge
618 618 label_options: Opcije
619 619 label_copy_workflow_from: Kopiraj tok promjena statusa iz
620 620 label_permissions_report: Izvještaj
621 621 label_watched_issues: Aktivnosti koje pratim
622 622 label_related_issues: Korelirane aktivnosti
623 623 label_applied_status: Status je primjenjen
624 624 label_loading: Učitavam...
625 625 label_relation_new: Nova relacija
626 626 label_relation_delete: Izbriši relaciju
627 627 label_relates_to: korelira sa
628 628 label_duplicates: duplikat
629 629 label_duplicated_by: duplicirano od
630 630 label_blocks: blokira
631 631 label_blocked_by: blokirano on
632 632 label_precedes: predhodi
633 633 label_follows: slijedi
634 634 label_stay_logged_in: Ostani prijavljen
635 635 label_disabled: onemogućen
636 636 label_show_completed_versions: Prikaži završene verzije
637 637 label_me: ja
638 638 label_board: Forum
639 639 label_board_new: Novi forum
640 640 label_board_plural: Forumi
641 641 label_topic_plural: Teme
642 642 label_message_plural: Poruke
643 643 label_message_last: Posljednja poruka
644 644 label_message_new: Nova poruka
645 645 label_message_posted: Poruka je dodana
646 646 label_reply_plural: Odgovori
647 647 label_send_information: Pošalji informaciju o korisničkom računu
648 648 label_year: Godina
649 649 label_month: Mjesec
650 650 label_week: Hefta
651 651 label_date_from: Od
652 652 label_date_to: Do
653 653 label_language_based: Bazirano na korisnikovom jeziku
654 654 label_sort_by: "Sortiraj po %{value}"
655 655 label_send_test_email: Pošalji testni email
656 656 label_feeds_access_key_created_on: "Atom pristupni ključ kreiran prije %{value} dana"
657 657 label_module_plural: Moduli
658 658 label_added_time_by: "Dodano od %{author} prije %{age}"
659 659 label_updated_time_by: "Izmjenjeno od %{author} prije %{age}"
660 660 label_updated_time: "Izmjenjeno prije %{value}"
661 661 label_jump_to_a_project: Skoči na projekat...
662 662 label_file_plural: Fajlovi
663 663 label_changeset_plural: Setovi promjena
664 664 label_default_columns: Podrazumjevane kolone
665 665 label_no_change_option: (Bez promjene)
666 666 label_bulk_edit_selected_issues: Ispravi odjednom odabrane aktivnosti
667 667 label_theme: Tema
668 668 label_default: Podrazumjevano
669 669 label_search_titles_only: Pretraži samo naslove
670 670 label_user_mail_option_all: "Za bilo koji događaj na svim mojim projektima"
671 671 label_user_mail_option_selected: "Za bilo koji događaj na odabranim projektima..."
672 672 label_user_mail_no_self_notified: "Ne želim notifikaciju za promjene koje sam ja napravio"
673 673 label_registration_activation_by_email: aktivacija korisničkog računa email-om
674 674 label_registration_manual_activation: ručna aktivacija korisničkog računa
675 675 label_registration_automatic_activation: automatska kreacija korisničkog računa
676 676 label_display_per_page: "Po stranici: %{value}"
677 677 label_age: Starost
678 678 label_change_properties: Promjena osobina
679 679 label_general: Generalno
680 680 label_more: Više
681 681 label_scm: SCM
682 682 label_plugins: Plugin-ovi
683 683 label_ldap_authentication: LDAP authentifikacija
684 684 label_downloads_abbr: D/L
685 685 label_optional_description: Opis (opciono)
686 686 label_add_another_file: Dodaj još jedan fajl
687 687 label_preferences: Postavke
688 688 label_chronological_order: Hronološki poredak
689 689 label_reverse_chronological_order: Reverzni hronološki poredak
690 690 label_planning: Planiranje
691 691 label_incoming_emails: Dolazni email-ovi
692 692 label_generate_key: Generiši ključ
693 693 label_issue_watchers: Praćeno od
694 694 label_example: Primjer
695 695 label_display: Prikaz
696 696
697 697 button_apply: Primjeni
698 698 button_add: Dodaj
699 699 button_archive: Arhiviranje
700 700 button_back: Nazad
701 701 button_cancel: Odustani
702 702 button_change: Izmjeni
703 703 button_change_password: Izmjena lozinke
704 704 button_check_all: Označi sve
705 705 button_clear: Briši
706 706 button_copy: Kopiraj
707 707 button_create: Novi
708 708 button_delete: Briši
709 709 button_download: Download
710 710 button_edit: Ispravka
711 711 button_list: Lista
712 712 button_lock: Zaključaj
713 713 button_log_time: Utrošak vremena
714 714 button_login: Prijava
715 715 button_move: Pomjeri
716 716 button_rename: Promjena imena
717 717 button_reply: Odgovor
718 718 button_reset: Resetuj
719 719 button_rollback: Vrati predhodno stanje
720 720 button_save: Snimi
721 721 button_sort: Sortiranje
722 722 button_submit: Pošalji
723 723 button_test: Testiraj
724 724 button_unarchive: Otpakuj arhivu
725 725 button_uncheck_all: Isključi sve
726 726 button_unlock: Otključaj
727 727 button_unwatch: Prekini notifikaciju
728 728 button_update: Promjena na aktivnosti
729 729 button_view: Pregled
730 730 button_watch: Notifikacija
731 731 button_configure: Konfiguracija
732 732 button_quote: Citat
733 733
734 734 status_active: aktivan
735 735 status_registered: registrovan
736 736 status_locked: zaključan
737 737
738 738 text_select_mail_notifications: Odaberi događaje za koje će se slati email notifikacija.
739 739 text_regexp_info: npr. ^[A-Z0-9]+$
740 740 text_min_max_length_info: 0 znači bez restrikcije
741 741 text_project_destroy_confirmation: Sigurno želite izbrisati ovaj projekat i njegove podatke ?
742 742 text_subprojects_destroy_warning: "Podprojekt(i): %{value} će takođe biti izbrisani."
743 743 text_workflow_edit: Odaberite ulogu i područje aktivnosti za ispravku toka promjena na aktivnosti
744 744 text_are_you_sure: Da li ste sigurni ?
745 745 text_tip_issue_begin_day: zadatak počinje danas
746 746 text_tip_issue_end_day: zadatak završava danas
747 747 text_tip_issue_begin_end_day: zadatak započinje i završava danas
748 748 text_caracters_maximum: "maksimum %{count} karaktera."
749 749 text_caracters_minimum: "Dužina mora biti najmanje %{count} znakova."
750 750 text_length_between: "Broj znakova između %{min} i %{max}."
751 751 text_tracker_no_workflow: Tok statusa nije definisan za ovo područje aktivnosti
752 752 text_unallowed_characters: Nedozvoljeni znakovi
753 753 text_comma_separated: Višestruke vrijednosti dozvoljene (odvojiti zarezom).
754 754 text_issues_ref_in_commit_messages: 'Referenciranje i zatvaranje aktivnosti putem "commit" poruka'
755 755 text_issue_added: "Aktivnost %{id} je prijavljena od %{author}."
756 756 text_issue_updated: "Aktivnost %{id} je izmjenjena od %{author}."
757 757 text_wiki_destroy_confirmation: Sigurno želite izbrisati ovaj wiki i čitav njegov sadržaj ?
758 758 text_issue_category_destroy_question: "Neke aktivnosti (%{count}) pripadaju ovoj kategoriji. Sigurno to želite uraditi ?"
759 759 text_issue_category_destroy_assignments: Ukloni kategoriju
760 760 text_issue_category_reassign_to: Ponovo dodijeli ovu kategoriju
761 761 text_user_mail_option: "Za projekte koje niste odabrali, primićete samo notifikacije o stavkama koje pratite ili ste u njih uključeni (npr. vi ste autor ili su vama dodjeljenje)."
762 762 text_no_configuration_data: "Uloge, područja aktivnosti, statusi aktivnosti i tok promjena statusa nisu konfigurisane.\nKrajnje je preporučeno da učitate tekuđe postavke. Kasnije ćete ih moći mjenjati po svojim potrebama."
763 763 text_load_default_configuration: Učitaj tekuću konfiguraciju
764 764 text_status_changed_by_changeset: "Primjenjeno u setu promjena %{value}."
765 765 text_issues_destroy_confirmation: 'Sigurno želite izbrisati odabranu/e aktivnost/i ?'
766 766 text_select_project_modules: 'Odaberi module koje želite u ovom projektu:'
767 767 text_default_administrator_account_changed: Tekući administratorski račun je promjenjen
768 768 text_file_repository_writable: U direktorij sa fajlovima koji su prilozi se može pisati
769 769 text_plugin_assets_writable: U direktorij plugin-ova se može pisati
770 770 text_rmagick_available: RMagick je dostupan (opciono)
771 771 text_destroy_time_entries_question: "%{hours} sahata je prijavljeno na aktivnostima koje želite brisati. Želite li to učiniti ?"
772 772 text_destroy_time_entries: Izbriši prijavljeno vrijeme
773 773 text_assign_time_entries_to_project: Dodaj prijavljenoo vrijeme projektu
774 774 text_reassign_time_entries: 'Preraspodjeli prijavljeno vrijeme na ovu aktivnost:'
775 775 text_user_wrote: "%{value} je napisao/la:"
776 776 text_enumeration_destroy_question: "Za %{count} objekata je dodjeljenja ova vrijednost."
777 777 text_enumeration_category_reassign_to: 'Ponovo im dodjeli ovu vrijednost:'
778 778 text_email_delivery_not_configured: "Email dostava nije konfiguraisana, notifikacija je onemogućena.\nKonfiguriši SMTP server u config/configuration.yml i restartuj aplikaciju nakon toga."
779 779 text_repository_usernames_mapping: "Odaberi ili ispravi redmine korisnika mapiranog za svako korisničko ima nađeno u logu repozitorija.\nKorisnici sa istim imenom u redmineu i u repozitoruju se automatski mapiraju."
780 780 text_diff_truncated: '... Ovaj prikaz razlike je odsječen pošto premašuje maksimalnu veličinu za prikaz'
781 781 text_custom_field_possible_values_info: 'Jedna linija za svaku vrijednost'
782 782
783 783 default_role_manager: Menadžer
784 784 default_role_developer: Programer
785 785 default_role_reporter: Reporter
786 786 default_tracker_bug: Greška
787 787 default_tracker_feature: Nova funkcija
788 788 default_tracker_support: Podrška
789 789 default_issue_status_new: Novi
790 790 default_issue_status_in_progress: In Progress
791 791 default_issue_status_resolved: Riješen
792 792 default_issue_status_feedback: Čeka se povratna informacija
793 793 default_issue_status_closed: Zatvoren
794 794 default_issue_status_rejected: Odbijen
795 795 default_doc_category_user: Korisnička dokumentacija
796 796 default_doc_category_tech: Tehnička dokumentacija
797 797 default_priority_low: Nizak
798 798 default_priority_normal: Normalan
799 799 default_priority_high: Visok
800 800 default_priority_urgent: Urgentno
801 801 default_priority_immediate: Odmah
802 802 default_activity_design: Dizajn
803 803 default_activity_development: Programiranje
804 804
805 805 enumeration_issue_priorities: Prioritet aktivnosti
806 806 enumeration_doc_categories: Kategorije dokumenata
807 807 enumeration_activities: Operacije (utrošak vremena)
808 808 notice_unable_delete_version: Ne mogu izbrisati verziju.
809 809 button_create_and_continue: Kreiraj i nastavi
810 810 button_annotate: Zabilježi
811 811 button_activate: Aktiviraj
812 812 label_sort: Sortiranje
813 813 label_date_from_to: Od %{start} do %{end}
814 814 label_ascending: Rastuće
815 815 label_descending: Opadajuće
816 816 label_greater_or_equal: ">="
817 817 label_less_or_equal: <=
818 818 text_wiki_page_destroy_question: This page has %{descendants} child page(s) and descendant(s). What do you want to do?
819 819 text_wiki_page_reassign_children: Reassign child pages to this parent page
820 820 text_wiki_page_nullify_children: Keep child pages as root pages
821 821 text_wiki_page_destroy_children: Delete child pages and all their descendants
822 822 setting_password_min_length: Minimum password length
823 823 field_group_by: Group results by
824 824 mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated"
825 825 label_wiki_content_added: Wiki page added
826 826 mail_subject_wiki_content_added: "'%{id}' wiki page has been added"
827 827 mail_body_wiki_content_added: The '%{id}' wiki page has been added by %{author}.
828 828 label_wiki_content_updated: Wiki page updated
829 829 mail_body_wiki_content_updated: The '%{id}' wiki page has been updated by %{author}.
830 830 permission_add_project: Create project
831 831 setting_new_project_user_role_id: Role given to a non-admin user who creates a project
832 832 label_view_all_revisions: View all revisions
833 833 label_tag: Tag
834 834 label_branch: Branch
835 835 error_no_tracker_in_project: No tracker is associated to this project. Please check the Project settings.
836 836 error_no_default_issue_status: No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").
837 837 text_journal_changed: "%{label} changed from %{old} to %{new}"
838 838 text_journal_set_to: "%{label} set to %{value}"
839 839 text_journal_deleted: "%{label} deleted (%{old})"
840 840 label_group_plural: Groups
841 841 label_group: Group
842 842 label_group_new: New group
843 843 label_time_entry_plural: Spent time
844 844 text_journal_added: "%{label} %{value} added"
845 845 field_active: Active
846 846 enumeration_system_activity: System Activity
847 847 permission_delete_issue_watchers: Delete watchers
848 848 version_status_closed: closed
849 849 version_status_locked: locked
850 850 version_status_open: open
851 851 error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened
852 852 label_user_anonymous: Anonymous
853 853 button_move_and_follow: Move and follow
854 854 setting_default_projects_modules: Default enabled modules for new projects
855 855 setting_gravatar_default: Default Gravatar image
856 856 field_sharing: Sharing
857 857 label_version_sharing_hierarchy: With project hierarchy
858 858 label_version_sharing_system: With all projects
859 859 label_version_sharing_descendants: With subprojects
860 860 label_version_sharing_tree: With project tree
861 861 label_version_sharing_none: Not shared
862 862 error_can_not_archive_project: This project can not be archived
863 863 button_duplicate: Duplicate
864 864 button_copy_and_follow: Copy and follow
865 865 label_copy_source: Source
866 866 setting_issue_done_ratio: Calculate the issue done ratio with
867 867 setting_issue_done_ratio_issue_status: Use the issue status
868 868 error_issue_done_ratios_not_updated: Issue done ratios not updated.
869 869 error_workflow_copy_target: Please select target tracker(s) and role(s)
870 870 setting_issue_done_ratio_issue_field: Use the issue field
871 871 label_copy_same_as_target: Same as target
872 872 label_copy_target: Target
873 873 notice_issue_done_ratios_updated: Issue done ratios updated.
874 874 error_workflow_copy_source: Please select a source tracker or role
875 875 label_update_issue_done_ratios: Update issue done ratios
876 876 setting_start_of_week: Start calendars on
877 877 permission_view_issues: View Issues
878 878 label_display_used_statuses_only: Only display statuses that are used by this tracker
879 879 label_revision_id: Revision %{value}
880 880 label_api_access_key: API access key
881 881 label_api_access_key_created_on: API access key created %{value} ago
882 882 label_feeds_access_key: Atom access key
883 883 notice_api_access_key_reseted: Your API access key was reset.
884 884 setting_rest_api_enabled: Enable REST web service
885 885 label_missing_api_access_key: Missing an API access key
886 886 label_missing_feeds_access_key: Missing a Atom access key
887 887 button_show: Show
888 888 text_line_separated: Multiple values allowed (one line for each value).
889 889 setting_mail_handler_body_delimiters: Truncate emails after one of these lines
890 890 permission_add_subprojects: Create subprojects
891 891 label_subproject_new: New subproject
892 892 text_own_membership_delete_confirmation: |-
893 893 You are about to remove some or all of your permissions and may no longer be able to edit this project after that.
894 894 Are you sure you want to continue?
895 895 label_close_versions: Close completed versions
896 896 label_board_sticky: Sticky
897 897 label_board_locked: Locked
898 898 permission_export_wiki_pages: Export wiki pages
899 899 setting_cache_formatted_text: Cache formatted text
900 900 permission_manage_project_activities: Manage project activities
901 901 error_unable_delete_issue_status: Unable to delete issue status
902 902 label_profile: Profile
903 903 permission_manage_subtasks: Manage subtasks
904 904 field_parent_issue: Parent task
905 905 label_subtask_plural: Subtasks
906 906 label_project_copy_notifications: Send email notifications during the project copy
907 907 error_can_not_delete_custom_field: Unable to delete custom field
908 908 error_unable_to_connect: Unable to connect (%{value})
909 909 error_can_not_remove_role: This role is in use and can not be deleted.
910 910 error_can_not_delete_tracker: This tracker contains issues and cannot be deleted.
911 911 field_principal: Principal
912 912 label_my_page_block: My page block
913 913 notice_failed_to_save_members: "Failed to save member(s): %{errors}."
914 914 text_zoom_out: Zoom out
915 915 text_zoom_in: Zoom in
916 916 notice_unable_delete_time_entry: Unable to delete time log entry.
917 917 label_overall_spent_time: Overall spent time
918 918 field_time_entries: Log time
919 919 project_module_gantt: Gantt
920 920 project_module_calendar: Calendar
921 921 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
922 922 field_text: Text field
923 923 label_user_mail_option_only_owner: Only for things I am the owner of
924 924 setting_default_notification_option: Default notification option
925 925 label_user_mail_option_only_my_events: Only for things I watch or I'm involved in
926 926 label_user_mail_option_only_assigned: Only for things I am assigned to
927 927 label_user_mail_option_none: No events
928 928 field_member_of_group: Assignee's group
929 929 field_assigned_to_role: Assignee's role
930 930 notice_not_authorized_archived_project: The project you're trying to access has been archived.
931 931 label_principal_search: "Search for user or group:"
932 932 label_user_search: "Search for user:"
933 933 field_visible: Visible
934 934 setting_commit_logtime_activity_id: Activity for logged time
935 935 text_time_logged_by_changeset: Applied in changeset %{value}.
936 936 setting_commit_logtime_enabled: Enable time logging
937 937 notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
938 938 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
939 939 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
940 940 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
941 941 label_my_queries: My custom queries
942 942 text_journal_changed_no_detail: "%{label} updated"
943 943 label_news_comment_added: Comment added to a news
944 944 button_expand_all: Expand all
945 945 button_collapse_all: Collapse all
946 946 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
947 947 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
948 948 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
949 949 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
950 950 label_role_anonymous: Anonymous
951 951 label_role_non_member: Non member
952 952 label_issue_note_added: Note added
953 953 label_issue_status_updated: Status updated
954 954 label_issue_priority_updated: Priority updated
955 955 label_issues_visibility_own: Issues created by or assigned to the user
956 956 field_issues_visibility: Issues visibility
957 957 label_issues_visibility_all: All issues
958 958 permission_set_own_issues_private: Set own issues public or private
959 959 field_is_private: Private
960 960 permission_set_issues_private: Set issues public or private
961 961 label_issues_visibility_public: All non private issues
962 962 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
963 963 field_commit_logs_encoding: 'Enkodiranje "commit" poruka'
964 964 field_scm_path_encoding: Path encoding
965 965 text_scm_path_encoding_note: "Default: UTF-8"
966 966 field_path_to_repository: Path to repository
967 967 field_root_directory: Root directory
968 968 field_cvs_module: Module
969 969 field_cvsroot: CVSROOT
970 970 text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo)
971 971 text_scm_command: Command
972 972 text_scm_command_version: Version
973 973 label_git_report_last_commit: Report last commit for files and directories
974 974 notice_issue_successful_create: Issue %{id} created.
975 975 label_between: between
976 976 setting_issue_group_assignment: Allow issue assignment to groups
977 977 label_diff: diff
978 978 text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo)
979 979 description_query_sort_criteria_direction: Sort direction
980 980 description_project_scope: Search scope
981 981 description_filter: Filter
982 982 description_user_mail_notification: Mail notification settings
983 983 description_date_from: Enter start date
984 984 description_message_content: Message content
985 985 description_available_columns: Available Columns
986 986 description_date_range_interval: Choose range by selecting start and end date
987 987 description_issue_category_reassign: Choose issue category
988 988 description_search: Searchfield
989 989 description_notes: Notes
990 990 description_date_range_list: Choose range from list
991 991 description_choose_project: Projects
992 992 description_date_to: Enter end date
993 993 description_query_sort_criteria_attribute: Sort attribute
994 994 description_wiki_subpages_reassign: Choose new parent page
995 995 description_selected_columns: Selected Columns
996 996 label_parent_revision: Parent
997 997 label_child_revision: Child
998 998 error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size.
999 999 setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
1000 1000 button_edit_section: Edit this section
1001 1001 setting_repositories_encodings: Attachments and repositories encodings
1002 1002 description_all_columns: All Columns
1003 1003 button_export: Export
1004 1004 label_export_options: "%{export_format} export options"
1005 1005 error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})
1006 1006 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
1007 1007 label_x_issues:
1008 1008 zero: 0 aktivnost
1009 1009 one: 1 aktivnost
1010 1010 other: "%{count} aktivnosti"
1011 1011 label_repository_new: New repository
1012 1012 field_repository_is_default: Main repository
1013 1013 label_copy_attachments: Copy attachments
1014 1014 label_item_position: "%{position}/%{count}"
1015 1015 label_completed_versions: Completed versions
1016 1016 text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1017 1017 field_multiple: Multiple values
1018 1018 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
1019 1019 text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
1020 1020 text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
1021 1021 notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
1022 1022 text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
1023 1023 permission_manage_related_issues: Manage related issues
1024 1024 field_auth_source_ldap_filter: LDAP filter
1025 1025 label_search_for_watchers: Search for watchers to add
1026 1026 notice_account_deleted: Your account has been permanently deleted.
1027 1027 setting_unsubscribe: Allow users to delete their own account
1028 1028 button_delete_my_account: Delete my account
1029 1029 text_account_destroy_confirmation: |-
1030 1030 Are you sure you want to proceed?
1031 1031 Your account will be permanently deleted, with no way to reactivate it.
1032 1032 error_session_expired: Your session has expired. Please login again.
1033 1033 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1034 1034 setting_session_lifetime: Session maximum lifetime
1035 1035 setting_session_timeout: Session inactivity timeout
1036 1036 label_session_expiration: Session expiration
1037 1037 permission_close_project: Close / reopen the project
1038 1038 label_show_closed_projects: View closed projects
1039 1039 button_close: Close
1040 1040 button_reopen: Reopen
1041 1041 project_status_active: active
1042 1042 project_status_closed: closed
1043 1043 project_status_archived: archived
1044 1044 text_project_closed: This project is closed and read-only.
1045 1045 notice_user_successful_create: User %{id} created.
1046 1046 field_core_fields: Standard fields
1047 1047 field_timeout: Timeout (in seconds)
1048 1048 setting_thumbnails_enabled: Display attachment thumbnails
1049 1049 setting_thumbnails_size: Thumbnails size (in pixels)
1050 1050 label_status_transitions: Status transitions
1051 1051 label_fields_permissions: Fields permissions
1052 1052 label_readonly: Read-only
1053 1053 label_required: Required
1054 1054 text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1055 1055 field_board_parent: Parent forum
1056 1056 label_attribute_of_project: Project's %{name}
1057 1057 label_attribute_of_author: Author's %{name}
1058 1058 label_attribute_of_assigned_to: Assignee's %{name}
1059 1059 label_attribute_of_fixed_version: Target version's %{name}
1060 1060 label_copy_subtasks: Copy subtasks
1061 1061 label_copied_to: copied to
1062 1062 label_copied_from: copied from
1063 1063 label_any_issues_in_project: any issues in project
1064 1064 label_any_issues_not_in_project: any issues not in project
1065 1065 field_private_notes: Private notes
1066 1066 permission_view_private_notes: View private notes
1067 1067 permission_set_notes_private: Set notes as private
1068 1068 label_no_issues_in_project: no issues in project
1069 1069 label_any: sve
1070 1070 label_last_n_weeks: last %{count} weeks
1071 1071 setting_cross_project_subtasks: Allow cross-project subtasks
1072 1072 label_cross_project_descendants: With subprojects
1073 1073 label_cross_project_tree: With project tree
1074 1074 label_cross_project_hierarchy: With project hierarchy
1075 1075 label_cross_project_system: With all projects
1076 1076 button_hide: Hide
1077 1077 setting_non_working_week_days: Non-working days
1078 1078 label_in_the_next_days: in the next
1079 1079 label_in_the_past_days: in the past
1080 1080 label_attribute_of_user: User's %{name}
1081 1081 text_turning_multiple_off: If you disable multiple values, multiple values will be
1082 1082 removed in order to preserve only one value per item.
1083 1083 label_attribute_of_issue: Issue's %{name}
1084 1084 permission_add_documents: Add documents
1085 1085 permission_edit_documents: Edit documents
1086 1086 permission_delete_documents: Delete documents
1087 1087 label_gantt_progress_line: Progress line
1088 1088 setting_jsonp_enabled: Enable JSONP support
1089 1089 field_inherit_members: Inherit members
1090 1090 field_closed_on: Closed
1091 1091 field_generate_password: Generate password
1092 1092 setting_default_projects_tracker_ids: Default trackers for new projects
1093 1093 label_total_time: Ukupno
1094 1094 text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it.
1095 1095 text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel.
1096 1096 setting_emails_header: Email header
1097 1097 notice_account_not_activated_yet: You haven't activated your account yet. If you want
1098 1098 to receive a new activation email, please <a href="%{url}">click this link</a>.
1099 1099 notice_account_locked: Your account is locked.
1100 1100 label_hidden: Hidden
1101 1101 label_visibility_private: to me only
1102 1102 label_visibility_roles: to these roles only
1103 1103 label_visibility_public: to any users
1104 1104 field_must_change_passwd: Must change password at next logon
1105 1105 notice_new_password_must_be_different: The new password must be different from the
1106 1106 current password
1107 1107 setting_mail_handler_excluded_filenames: Exclude attachments by name
1108 1108 text_convert_available: ImageMagick convert available (optional)
1109 1109 label_link: Link
1110 1110 label_only: only
1111 1111 label_drop_down_list: drop-down list
1112 1112 label_checkboxes: checkboxes
1113 1113 label_link_values_to: Link values to URL
1114 1114 setting_force_default_language_for_anonymous: Force default language for anonymous
1115 1115 users
1116 1116 setting_force_default_language_for_loggedin: Force default language for logged-in
1117 1117 users
1118 1118 label_custom_field_select_type: Select the type of object to which the custom field
1119 1119 is to be attached
1120 1120 label_issue_assigned_to_updated: Assignee updated
1121 1121 label_check_for_updates: Check for updates
1122 1122 label_latest_compatible_version: Latest compatible version
1123 1123 label_unknown_plugin: Unknown plugin
1124 1124 label_radio_buttons: radio buttons
1125 1125 label_group_anonymous: Anonymous users
1126 1126 label_group_non_member: Non member users
1127 1127 label_add_projects: Add projects
1128 1128 field_default_status: Default status
1129 1129 text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
1130 1130 field_users_visibility: Users visibility
1131 1131 label_users_visibility_all: All active users
1132 1132 label_users_visibility_members_of_visible_projects: Members of visible projects
1133 1133 label_edit_attachments: Edit attached files
1134 1134 setting_link_copied_issue: Link issues on copy
1135 1135 label_link_copied_issue: Link copied issue
1136 1136 label_ask: Ask
1137 1137 label_search_attachments_yes: Search attachment filenames and descriptions
1138 1138 label_search_attachments_no: Do not search attachments
1139 1139 label_search_attachments_only: Search attachments only
1140 1140 label_search_open_issues_only: Open issues only
1141 1141 field_address: Email
1142 1142 setting_max_additional_emails: Maximum number of additional email addresses
1143 1143 label_email_address_plural: Emails
1144 1144 label_email_address_add: Add email address
1145 1145 label_enable_notifications: Enable notifications
1146 1146 label_disable_notifications: Disable notifications
1147 1147 setting_search_results_per_page: Search results per page
1148 1148 label_blank_value: blank
1149 1149 permission_copy_issues: Copy issues
1150 1150 error_password_expired: Your password has expired or the administrator requires you
1151 1151 to change it.
1152 1152 field_time_entries_visibility: Time logs visibility
1153 1153 setting_password_max_age: Require password change after
1154 1154 label_parent_task_attributes: Parent tasks attributes
1155 1155 label_parent_task_attributes_derived: Calculated from subtasks
1156 1156 label_parent_task_attributes_independent: Independent of subtasks
1157 1157 label_time_entries_visibility_all: All time entries
1158 1158 label_time_entries_visibility_own: Time entries created by the user
1159 1159 label_member_management: Member management
1160 1160 label_member_management_all_roles: All roles
1161 1161 label_member_management_selected_roles_only: Only these roles
1162 1162 label_password_required: Confirm your password to continue
1163 1163 label_total_spent_time: Overall spent time
1164 1164 notice_import_finished: All %{count} items have been imported.
1165 1165 notice_import_finished_with_errors: ! '%{count} out of %{total} items could not be
1166 1166 imported.'
1167 1167 error_invalid_file_encoding: The file is not a valid %{encoding} encoded file
1168 1168 error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the
1169 1169 settings below
1170 1170 error_can_not_read_import_file: An error occurred while reading the file to import
1171 1171 permission_import_issues: Import issues
1172 1172 label_import_issues: Import issues
1173 1173 label_select_file_to_import: Select the file to import
1174 1174 label_fields_separator: Field separator
1175 1175 label_fields_wrapper: Field wrapper
1176 1176 label_encoding: Encoding
1177 1177 label_comma_char: Comma
1178 1178 label_semi_colon_char: Semi colon
1179 1179 label_quote_char: Quote
1180 1180 label_double_quote_char: Double quote
1181 1181 label_fields_mapping: Fields mapping
1182 1182 label_file_content_preview: File content preview
1183 1183 label_create_missing_values: Create missing values
1184 1184 button_import: Import
1185 1185 field_total_estimated_hours: Total estimated time
1186 1186 label_api: API
1187 1187 label_total_plural: Totals
1188 1188 label_assigned_issues: Assigned issues
1189 1189 label_field_format_enumeration: Key/value list
1190 1190 label_f_hour_short: '%{value} h'
1191 1191 field_default_version: Default version
1192 1192 error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed
1193 1193 setting_attachment_extensions_allowed: Allowed extensions
1194 1194 setting_attachment_extensions_denied: Disallowed extensions
1195 1195 label_any_open_issues: any open issues
1196 1196 label_no_open_issues: no open issues
1197 1197 label_default_values_for_new_users: Default values for new users
1198 error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot
1199 be reassigned to an issue that is about to be deleted
@@ -1,1186 +1,1188
1 1 # Redmine catalan translation:
2 2 # by Joan Duran
3 3
4 4 ca:
5 5 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
6 6 direction: ltr
7 7 date:
8 8 formats:
9 9 # Use the strftime parameters for formats.
10 10 # When no format has been given, it uses default.
11 11 # You can provide other formats here if you like!
12 12 default: "%d-%m-%Y"
13 13 short: "%e de %b"
14 14 long: "%a, %e de %b de %Y"
15 15
16 16 day_names: [Diumenge, Dilluns, Dimarts, Dimecres, Dijous, Divendres, Dissabte]
17 17 abbr_day_names: [dg, dl, dt, dc, dj, dv, ds]
18 18
19 19 # Don't forget the nil at the beginning; there's no such thing as a 0th month
20 20 month_names: [~, Gener, Febrer, Març, Abril, Maig, Juny, Juliol, Agost, Setembre, Octubre, Novembre, Desembre]
21 21 abbr_month_names: [~, Gen, Feb, Mar, Abr, Mai, Jun, Jul, Ago, Set, Oct, Nov, Des]
22 22 # Used in date_select and datime_select.
23 23 order:
24 24 - :year
25 25 - :month
26 26 - :day
27 27
28 28 time:
29 29 formats:
30 30 default: "%d-%m-%Y %H:%M"
31 31 time: "%H:%M"
32 32 short: "%e de %b, %H:%M"
33 33 long: "%a, %e de %b de %Y, %H:%M"
34 34 am: "am"
35 35 pm: "pm"
36 36
37 37 datetime:
38 38 distance_in_words:
39 39 half_a_minute: "mig minut"
40 40 less_than_x_seconds:
41 41 one: "menys d'un segon"
42 42 other: "menys de %{count} segons"
43 43 x_seconds:
44 44 one: "1 segons"
45 45 other: "%{count} segons"
46 46 less_than_x_minutes:
47 47 one: "menys d'un minut"
48 48 other: "menys de %{count} minuts"
49 49 x_minutes:
50 50 one: "1 minut"
51 51 other: "%{count} minuts"
52 52 about_x_hours:
53 53 one: "aproximadament 1 hora"
54 54 other: "aproximadament %{count} hores"
55 55 x_hours:
56 56 one: "1 hora"
57 57 other: "%{count} hores"
58 58 x_days:
59 59 one: "1 dia"
60 60 other: "%{count} dies"
61 61 about_x_months:
62 62 one: "aproximadament 1 mes"
63 63 other: "aproximadament %{count} mesos"
64 64 x_months:
65 65 one: "1 mes"
66 66 other: "%{count} mesos"
67 67 about_x_years:
68 68 one: "aproximadament 1 any"
69 69 other: "aproximadament %{count} anys"
70 70 over_x_years:
71 71 one: "més d'un any"
72 72 other: "més de %{count} anys"
73 73 almost_x_years:
74 74 one: "almost 1 year"
75 75 other: "almost %{count} years"
76 76
77 77 number:
78 78 # Default format for numbers
79 79 format:
80 80 separator: "."
81 81 delimiter: ""
82 82 precision: 3
83 83 human:
84 84 format:
85 85 delimiter: ""
86 86 precision: 3
87 87 storage_units:
88 88 format: "%n %u"
89 89 units:
90 90 byte:
91 91 one: "Byte"
92 92 other: "Bytes"
93 93 kb: "KB"
94 94 mb: "MB"
95 95 gb: "GB"
96 96 tb: "TB"
97 97
98 98 # Used in array.to_sentence.
99 99 support:
100 100 array:
101 101 sentence_connector: "i"
102 102 skip_last_comma: false
103 103
104 104 activerecord:
105 105 errors:
106 106 template:
107 107 header:
108 108 one: "1 error prohibited this %{model} from being saved"
109 109 other: "%{count} errors prohibited this %{model} from being saved"
110 110 messages:
111 111 inclusion: "no està inclòs a la llista"
112 112 exclusion: "està reservat"
113 113 invalid: "no és vàlid"
114 114 confirmation: "la confirmació no coincideix"
115 115 accepted: "s'ha d'acceptar"
116 116 empty: "no pot estar buit"
117 117 blank: "no pot estar en blanc"
118 118 too_long: "és massa llarg"
119 119 too_short: "és massa curt"
120 120 wrong_length: "la longitud és incorrecta"
121 121 taken: "ja s'està utilitzant"
122 122 not_a_number: "no és un número"
123 123 not_a_date: "no és una data vàlida"
124 124 greater_than: "ha de ser més gran que %{count}"
125 125 greater_than_or_equal_to: "ha de ser més gran o igual a %{count}"
126 126 equal_to: "ha de ser igual a %{count}"
127 127 less_than: "ha de ser menys que %{count}"
128 128 less_than_or_equal_to: "ha de ser menys o igual a %{count}"
129 129 odd: "ha de ser senar"
130 130 even: "ha de ser parell"
131 131 greater_than_start_date: "ha de ser superior que la data inicial"
132 132 not_same_project: "no pertany al mateix projecte"
133 133 circular_dependency: "Aquesta relació crearia una dependència circular"
134 134 cant_link_an_issue_with_a_descendant: "Un assumpte no es pot enllaçar a una de les seves subtasques"
135 135 earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues"
136 136
137 137 actionview_instancetag_blank_option: Seleccioneu
138 138
139 139 general_text_No: 'No'
140 140 general_text_Yes: 'Si'
141 141 general_text_no: 'no'
142 142 general_text_yes: 'si'
143 143 general_lang_name: 'Catalan (Català)'
144 144 general_csv_separator: ';'
145 145 general_csv_decimal_separator: ','
146 146 general_csv_encoding: ISO-8859-15
147 147 general_pdf_fontname: freesans
148 148 general_pdf_monospaced_fontname: freemono
149 149 general_first_day_of_week: '1'
150 150
151 151 notice_account_updated: "El compte s'ha actualitzat correctament."
152 152 notice_account_invalid_creditentials: Usuari o contrasenya invàlid
153 153 notice_account_password_updated: "La contrasenya s'ha modificat correctament."
154 154 notice_account_wrong_password: Contrasenya incorrecta
155 155 notice_account_register_done: "El compte s'ha creat correctament. Per a activar el compte, feu clic en l'enllaç que us han enviat per correu electrònic."
156 156 notice_account_unknown_email: Usuari desconegut.
157 157 notice_can_t_change_password: "Aquest compte utilitza una font d'autenticació externa. No és possible canviar la contrasenya."
158 158 notice_account_lost_email_sent: "S'ha enviat un correu electrònic amb instruccions per a seleccionar una contrasenya nova."
159 159 notice_account_activated: "El compte s'ha activat. Ara podeu entrar."
160 160 notice_successful_create: "S'ha creat correctament."
161 161 notice_successful_update: "S'ha modificat correctament."
162 162 notice_successful_delete: "S'ha suprimit correctament."
163 163 notice_successful_connection: "S'ha connectat correctament."
164 164 notice_file_not_found: "La pàgina a la que intenteu accedir no existeix o s'ha suprimit."
165 165 notice_locking_conflict: Un altre usuari ha actualitzat les dades.
166 166 notice_not_authorized: No teniu permís per a accedir a aquesta pàgina.
167 167 notice_email_sent: "S'ha enviat un correu electrònic a %{value}"
168 168 notice_email_error: "S'ha produït un error en enviar el correu (%{value})"
169 169 notice_feeds_access_key_reseted: "S'ha reiniciat la clau d'accés del Atom."
170 170 notice_api_access_key_reseted: "S'ha reiniciat la clau d'accés a l'API."
171 171 notice_failed_to_save_issues: "No s'han pogut desar %{count} assumptes de %{total} seleccionats: %{ids}."
172 172 notice_failed_to_save_members: "No s'han pogut desar els membres: %{errors}."
173 173 notice_no_issue_selected: "No s'ha seleccionat cap assumpte. Activeu els assumptes que voleu editar."
174 174 notice_account_pending: "S'ha creat el compte i ara està pendent de l'aprovació de l'administrador."
175 175 notice_default_data_loaded: "S'ha carregat correctament la configuració predeterminada."
176 176 notice_unable_delete_version: "No s'ha pogut suprimir la versió."
177 177 notice_unable_delete_time_entry: "No s'ha pogut suprimir l'entrada del registre de temps."
178 178 notice_issue_done_ratios_updated: "S'ha actualitzat el tant per cent dels assumptes."
179 179
180 180 error_can_t_load_default_data: "No s'ha pogut carregar la configuració predeterminada: %{value} "
181 181 error_scm_not_found: "No s'ha trobat l'entrada o la revisió en el dipòsit."
182 182 error_scm_command_failed: "S'ha produït un error en intentar accedir al dipòsit: %{value}"
183 183 error_scm_annotate: "L'entrada no existeix o no s'ha pogut anotar."
184 184 error_issue_not_found_in_project: "No s'ha trobat l'assumpte o no pertany a aquest projecte"
185 185 error_no_tracker_in_project: "Aquest projecte no seguidor associat. Comproveu els paràmetres del projecte."
186 186 error_no_default_issue_status: "No s'ha definit cap estat d'assumpte predeterminat. Comproveu la configuració (aneu a «Administració -> Estats de l'assumpte»)."
187 187 error_can_not_delete_custom_field: "No s'ha pogut suprimir el camp personalitat"
188 188 error_can_not_delete_tracker: "Aquest seguidor conté assumptes i no es pot suprimir."
189 189 error_can_not_remove_role: "Aquest rol s'està utilitzant i no es pot suprimir."
190 190 error_can_not_reopen_issue_on_closed_version: "Un assumpte assignat a una versió tancada no es pot tornar a obrir"
191 191 error_can_not_archive_project: "Aquest projecte no es pot arxivar"
192 192 error_issue_done_ratios_not_updated: "No s'ha actualitza el tant per cent dels assumptes."
193 193 error_workflow_copy_source: "Seleccioneu un seguidor o rol font"
194 194 error_workflow_copy_target: "Seleccioneu seguidors i rols objectiu"
195 195 error_unable_delete_issue_status: "No s'ha pogut suprimir l'estat de l'assumpte"
196 196 error_unable_to_connect: "No s'ha pogut connectar (%{value})"
197 197 warning_attachments_not_saved: "No s'han pogut desar %{count} fitxers."
198 198
199 199 mail_subject_lost_password: "Contrasenya de %{value}"
200 200 mail_body_lost_password: "Per a canviar la contrasenya, feu clic en l'enllaç següent:"
201 201 mail_subject_register: "Activació del compte de %{value}"
202 202 mail_body_register: "Per a activar el compte, feu clic en l'enllaç següent:"
203 203 mail_body_account_information_external: "Podeu utilitzar el compte «%{value}» per a entrar."
204 204 mail_body_account_information: Informació del compte
205 205 mail_subject_account_activation_request: "Sol·licitud d'activació del compte de %{value}"
206 206 mail_body_account_activation_request: "S'ha registrat un usuari nou (%{value}). El seu compte està pendent d'aprovació:"
207 207 mail_subject_reminder: "%{count} assumptes venceran els següents %{days} dies"
208 208 mail_body_reminder: "%{count} assumptes que teniu assignades venceran els següents %{days} dies:"
209 209 mail_subject_wiki_content_added: "S'ha afegit la pàgina wiki «%{id}»"
210 210 mail_body_wiki_content_added: "En %{author} ha afegit la pàgina wiki «%{id}»."
211 211 mail_subject_wiki_content_updated: "S'ha actualitzat la pàgina wiki «%{id}»"
212 212 mail_body_wiki_content_updated: "En %{author} ha actualitzat la pàgina wiki «%{id}»."
213 213
214 214
215 215 field_name: Nom
216 216 field_description: Descripció
217 217 field_summary: Resum
218 218 field_is_required: Necessari
219 219 field_firstname: Nom
220 220 field_lastname: Cognom
221 221 field_mail: Correu electrònic
222 222 field_filename: Fitxer
223 223 field_filesize: Mida
224 224 field_downloads: Baixades
225 225 field_author: Autor
226 226 field_created_on: Creat
227 227 field_updated_on: Actualitzat
228 228 field_field_format: Format
229 229 field_is_for_all: Per a tots els projectes
230 230 field_possible_values: Valores possibles
231 231 field_regexp: Expressió regular
232 232 field_min_length: Longitud mínima
233 233 field_max_length: Longitud màxima
234 234 field_value: Valor
235 235 field_category: Categoria
236 236 field_title: Títol
237 237 field_project: Projecte
238 238 field_issue: Assumpte
239 239 field_status: Estat
240 240 field_notes: Notes
241 241 field_is_closed: Assumpte tancat
242 242 field_is_default: Estat predeterminat
243 243 field_tracker: Seguidor
244 244 field_subject: Tema
245 245 field_due_date: Data de venciment
246 246 field_assigned_to: Assignat a
247 247 field_priority: Prioritat
248 248 field_fixed_version: Versió objectiu
249 249 field_user: Usuari
250 250 field_principal: Principal
251 251 field_role: Rol
252 252 field_homepage: Pàgina web
253 253 field_is_public: Públic
254 254 field_parent: Subprojecte de
255 255 field_is_in_roadmap: Assumptes mostrats en la planificació
256 256 field_login: Entrada
257 257 field_mail_notification: Notificacions per correu electrònic
258 258 field_admin: Administrador
259 259 field_last_login_on: Última connexió
260 260 field_language: Idioma
261 261 field_effective_date: Data
262 262 field_password: Contrasenya
263 263 field_new_password: Contrasenya nova
264 264 field_password_confirmation: Confirmació
265 265 field_version: Versió
266 266 field_type: Tipus
267 267 field_host: Ordinador
268 268 field_port: Port
269 269 field_account: Compte
270 270 field_base_dn: Base DN
271 271 field_attr_login: "Atribut d'entrada"
272 272 field_attr_firstname: Atribut del nom
273 273 field_attr_lastname: Atribut del cognom
274 274 field_attr_mail: Atribut del correu electrònic
275 275 field_onthefly: "Creació de l'usuari «al vol»"
276 276 field_start_date: Inici
277 277 field_done_ratio: "% realitzat"
278 278 field_auth_source: "Mode d'autenticació"
279 279 field_hide_mail: "Oculta l'adreça de correu electrònic"
280 280 field_comments: Comentari
281 281 field_url: URL
282 282 field_start_page: Pàgina inicial
283 283 field_subproject: Subprojecte
284 284 field_hours: Hores
285 285 field_activity: Activitat
286 286 field_spent_on: Data
287 287 field_identifier: Identificador
288 288 field_is_filter: "S'ha utilitzat com a filtre"
289 289 field_issue_to: Assumpte relacionat
290 290 field_delay: Retard
291 291 field_assignable: Es poden assignar assumptes a aquest rol
292 292 field_redirect_existing_links: Redirigeix els enllaços existents
293 293 field_estimated_hours: Temps previst
294 294 field_column_names: Columnes
295 295 field_time_entries: "Registre de temps"
296 296 field_time_zone: Zona horària
297 297 field_searchable: Es pot cercar
298 298 field_default_value: Valor predeterminat
299 299 field_comments_sorting: Mostra els comentaris
300 300 field_parent_title: Pàgina pare
301 301 field_editable: Es pot editar
302 302 field_watcher: Vigilància
303 303 field_identity_url: URL OpenID
304 304 field_content: Contingut
305 305 field_group_by: "Agrupa els resultats per"
306 306 field_sharing: Compartició
307 307 field_parent_issue: "Tasca pare"
308 308
309 309 setting_app_title: "Títol de l'aplicació"
310 310 setting_app_subtitle: "Subtítol de l'aplicació"
311 311 setting_welcome_text: Text de benvinguda
312 312 setting_default_language: Idioma predeterminat
313 313 setting_login_required: Es necessita autenticació
314 314 setting_self_registration: Registre automàtic
315 315 setting_attachment_max_size: Mida màxima dels adjunts
316 316 setting_issues_export_limit: "Límit d'exportació d'assumptes"
317 317 setting_mail_from: "Adreça de correu electrònic d'emissió"
318 318 setting_bcc_recipients: Vincula els destinataris de les còpies amb carbó (bcc)
319 319 setting_plain_text_mail: només text pla (no HTML)
320 320 setting_host_name: "Nom de l'ordinador"
321 321 setting_text_formatting: Format del text
322 322 setting_wiki_compression: "Comprimeix l'historial del wiki"
323 323 setting_feeds_limit: Límit de contingut del canal
324 324 setting_default_projects_public: Els projectes nous són públics per defecte
325 325 setting_autofetch_changesets: Omple automàticament les publicacions
326 326 setting_sys_api_enabled: Habilita el WS per a la gestió del dipòsit
327 327 setting_commit_ref_keywords: Paraules claus per a la referència
328 328 setting_commit_fix_keywords: Paraules claus per a la correcció
329 329 setting_autologin: Entrada automàtica
330 330 setting_date_format: Format de la data
331 331 setting_time_format: Format de hora
332 332 setting_cross_project_issue_relations: "Permet les relacions d'assumptes entre projectes"
333 333 setting_issue_list_default_columns: "Columnes mostrades per defecte en la llista d'assumptes"
334 334 setting_emails_footer: Peu dels correus electrònics
335 335 setting_protocol: Protocol
336 336 setting_per_page_options: Opcions dels objectes per pàgina
337 337 setting_user_format: "Format de com mostrar l'usuari"
338 338 setting_activity_days_default: "Dies a mostrar l'activitat del projecte"
339 339 setting_display_subprojects_issues: "Mostra els assumptes d'un subprojecte en el projecte pare per defecte"
340 340 setting_enabled_scm: "Habilita l'SCM"
341 341 setting_mail_handler_body_delimiters: "Trunca els correus electrònics després d'una d'aquestes línies"
342 342 setting_mail_handler_api_enabled: "Habilita el WS per correus electrònics d'entrada"
343 343 setting_mail_handler_api_key: Clau API
344 344 setting_sequential_project_identifiers: Genera identificadors de projecte seqüencials
345 345 setting_gravatar_enabled: "Utilitza les icones d'usuari Gravatar"
346 346 setting_gravatar_default: "Imatge Gravatar predeterminada"
347 347 setting_diff_max_lines_displayed: Número màxim de línies amb diferències mostrades
348 348 setting_file_max_size_displayed: Mida màxima dels fitxers de text mostrats en línia
349 349 setting_repository_log_display_limit: Número màxim de revisions que es mostren al registre de fitxers
350 350 setting_openid: "Permet entrar i registrar-se amb l'OpenID"
351 351 setting_password_min_length: "Longitud mínima de la contrasenya"
352 352 setting_new_project_user_role_id: "Aquest rol es dóna a un usuari no administrador per a crear projectes"
353 353 setting_default_projects_modules: "Mòduls activats per defecte en els projectes nous"
354 354 setting_issue_done_ratio: "Calcula tant per cent realitzat de l'assumpte amb"
355 355 setting_issue_done_ratio_issue_status: "Utilitza l'estat de l'assumpte"
356 356 setting_issue_done_ratio_issue_field: "Utilitza el camp de l'assumpte"
357 357 setting_start_of_week: "Inicia les setmanes en"
358 358 setting_rest_api_enabled: "Habilita el servei web REST"
359 359 setting_cache_formatted_text: Cache formatted text
360 360
361 361 permission_add_project: "Crea projectes"
362 362 permission_add_subprojects: "Crea subprojectes"
363 363 permission_edit_project: Edita el projecte
364 364 permission_select_project_modules: Selecciona els mòduls del projecte
365 365 permission_manage_members: Gestiona els membres
366 366 permission_manage_project_activities: "Gestiona les activitats del projecte"
367 367 permission_manage_versions: Gestiona les versions
368 368 permission_manage_categories: Gestiona les categories dels assumptes
369 369 permission_view_issues: "Visualitza els assumptes"
370 370 permission_add_issues: Afegeix assumptes
371 371 permission_edit_issues: Edita els assumptes
372 372 permission_manage_issue_relations: Gestiona les relacions dels assumptes
373 373 permission_add_issue_notes: Afegeix notes
374 374 permission_edit_issue_notes: Edita les notes
375 375 permission_edit_own_issue_notes: Edita les notes pròpies
376 376 permission_move_issues: Mou els assumptes
377 377 permission_delete_issues: Suprimeix els assumptes
378 378 permission_manage_public_queries: Gestiona les consultes públiques
379 379 permission_save_queries: Desa les consultes
380 380 permission_view_gantt: Visualitza la gràfica de Gantt
381 381 permission_view_calendar: Visualitza el calendari
382 382 permission_view_issue_watchers: Visualitza la llista de vigilàncies
383 383 permission_add_issue_watchers: Afegeix vigilàncies
384 384 permission_delete_issue_watchers: Suprimeix els vigilants
385 385 permission_log_time: Registra el temps invertit
386 386 permission_view_time_entries: Visualitza el temps invertit
387 387 permission_edit_time_entries: Edita els registres de temps
388 388 permission_edit_own_time_entries: Edita els registres de temps propis
389 389 permission_manage_news: Gestiona les noticies
390 390 permission_comment_news: Comenta les noticies
391 391 permission_view_documents: Visualitza els documents
392 392 permission_manage_files: Gestiona els fitxers
393 393 permission_view_files: Visualitza els fitxers
394 394 permission_manage_wiki: Gestiona el wiki
395 395 permission_rename_wiki_pages: Canvia el nom de les pàgines wiki
396 396 permission_delete_wiki_pages: Suprimeix les pàgines wiki
397 397 permission_view_wiki_pages: Visualitza el wiki
398 398 permission_view_wiki_edits: "Visualitza l'historial del wiki"
399 399 permission_edit_wiki_pages: Edita les pàgines wiki
400 400 permission_delete_wiki_pages_attachments: Suprimeix adjunts
401 401 permission_protect_wiki_pages: Protegeix les pàgines wiki
402 402 permission_manage_repository: Gestiona el dipòsit
403 403 permission_browse_repository: Navega pel dipòsit
404 404 permission_view_changesets: Visualitza els canvis realitzats
405 405 permission_commit_access: Accés a les publicacions
406 406 permission_manage_boards: Gestiona els taulers
407 407 permission_view_messages: Visualitza els missatges
408 408 permission_add_messages: Envia missatges
409 409 permission_edit_messages: Edita els missatges
410 410 permission_edit_own_messages: Edita els missatges propis
411 411 permission_delete_messages: Suprimeix els missatges
412 412 permission_delete_own_messages: Suprimeix els missatges propis
413 413 permission_export_wiki_pages: "Exporta les pàgines wiki"
414 414 permission_manage_subtasks: "Gestiona subtasques"
415 415
416 416 project_module_issue_tracking: "Seguidor d'assumptes"
417 417 project_module_time_tracking: Seguidor de temps
418 418 project_module_news: Noticies
419 419 project_module_documents: Documents
420 420 project_module_files: Fitxers
421 421 project_module_wiki: Wiki
422 422 project_module_repository: Dipòsit
423 423 project_module_boards: Taulers
424 424 project_module_calendar: Calendari
425 425 project_module_gantt: Gantt
426 426
427 427 label_user: Usuari
428 428 label_user_plural: Usuaris
429 429 label_user_new: Usuari nou
430 430 label_user_anonymous: Anònim
431 431 label_project: Projecte
432 432 label_project_new: Projecte nou
433 433 label_project_plural: Projectes
434 434 label_x_projects:
435 435 zero: cap projecte
436 436 one: 1 projecte
437 437 other: "%{count} projectes"
438 438 label_project_all: Tots els projectes
439 439 label_project_latest: Els últims projectes
440 440 label_issue: Assumpte
441 441 label_issue_new: Assumpte nou
442 442 label_issue_plural: Assumptes
443 443 label_issue_view_all: Visualitza tots els assumptes
444 444 label_issues_by: "Assumptes per %{value}"
445 445 label_issue_added: Assumpte afegit
446 446 label_issue_updated: Assumpte actualitzat
447 447 label_document: Document
448 448 label_document_new: Document nou
449 449 label_document_plural: Documents
450 450 label_document_added: Document afegit
451 451 label_role: Rol
452 452 label_role_plural: Rols
453 453 label_role_new: Rol nou
454 454 label_role_and_permissions: Rols i permisos
455 455 label_member: Membre
456 456 label_member_new: Membre nou
457 457 label_member_plural: Membres
458 458 label_tracker: Seguidor
459 459 label_tracker_plural: Seguidors
460 460 label_tracker_new: Seguidor nou
461 461 label_workflow: Flux de treball
462 462 label_issue_status: "Estat de l'assumpte"
463 463 label_issue_status_plural: "Estats de l'assumpte"
464 464 label_issue_status_new: Estat nou
465 465 label_issue_category: "Categoria de l'assumpte"
466 466 label_issue_category_plural: "Categories de l'assumpte"
467 467 label_issue_category_new: Categoria nova
468 468 label_custom_field: Camp personalitzat
469 469 label_custom_field_plural: Camps personalitzats
470 470 label_custom_field_new: Camp personalitzat nou
471 471 label_enumerations: Enumeracions
472 472 label_enumeration_new: Valor nou
473 473 label_information: Informació
474 474 label_information_plural: Informació
475 475 label_please_login: Entreu
476 476 label_register: Registre
477 477 label_login_with_open_id_option: "o entra amb l'OpenID"
478 478 label_password_lost: Contrasenya perduda
479 479 label_home: Inici
480 480 label_my_page: La meva pàgina
481 481 label_my_account: El meu compte
482 482 label_my_projects: Els meus projectes
483 483 label_my_page_block: "Els meus blocs de pàgina"
484 484 label_administration: Administració
485 485 label_login: Entra
486 486 label_logout: Surt
487 487 label_help: Ajuda
488 488 label_reported_issues: Assumptes informats
489 489 label_assigned_to_me_issues: Assumptes assignats a mi
490 490 label_last_login: Última connexió
491 491 label_registered_on: Informat el
492 492 label_activity: Activitat
493 493 label_overall_activity: Activitat global
494 494 label_user_activity: "Activitat de %{value}"
495 495 label_new: Nou
496 496 label_logged_as: Heu entrat com a
497 497 label_environment: Entorn
498 498 label_authentication: Autenticació
499 499 label_auth_source: "Mode d'autenticació"
500 500 label_auth_source_new: "Mode d'autenticació nou"
501 501 label_auth_source_plural: "Modes d'autenticació"
502 502 label_subproject_plural: Subprojectes
503 503 label_subproject_new: "Subprojecte nou"
504 504 label_and_its_subprojects: "%{value} i els seus subprojectes"
505 505 label_min_max_length: Longitud mín - max
506 506 label_list: Llist
507 507 label_date: Data
508 508 label_integer: Enter
509 509 label_float: Flotant
510 510 label_boolean: Booleà
511 511 label_string: Text
512 512 label_text: Text llarg
513 513 label_attribute: Atribut
514 514 label_attribute_plural: Atributs
515 515 label_no_data: Sense dades a mostrar
516 516 label_change_status: "Canvia l'estat"
517 517 label_history: Historial
518 518 label_attachment: Fitxer
519 519 label_attachment_new: Fitxer nou
520 520 label_attachment_delete: Suprimeix el fitxer
521 521 label_attachment_plural: Fitxers
522 522 label_file_added: Fitxer afegit
523 523 label_report: Informe
524 524 label_report_plural: Informes
525 525 label_news: Noticies
526 526 label_news_new: Afegeix noticies
527 527 label_news_plural: Noticies
528 528 label_news_latest: Últimes noticies
529 529 label_news_view_all: Visualitza totes les noticies
530 530 label_news_added: Noticies afegides
531 531 label_settings: Paràmetres
532 532 label_overview: Resum
533 533 label_version: Versió
534 534 label_version_new: Versió nova
535 535 label_version_plural: Versions
536 536 label_close_versions: "Tanca les versions completades"
537 537 label_confirmation: Confirmació
538 538 label_export_to: "També disponible a:"
539 539 label_read: Llegeix...
540 540 label_public_projects: Projectes públics
541 541 label_open_issues: obert
542 542 label_open_issues_plural: oberts
543 543 label_closed_issues: tancat
544 544 label_closed_issues_plural: tancats
545 545 label_x_open_issues_abbr:
546 546 zero: 0 oberts
547 547 one: 1 obert
548 548 other: "%{count} oberts"
549 549 label_x_closed_issues_abbr:
550 550 zero: 0 tancats
551 551 one: 1 tancat
552 552 other: "%{count} tancats"
553 553 label_total: Total
554 554 label_permissions: Permisos
555 555 label_current_status: Estat actual
556 556 label_new_statuses_allowed: Nous estats autoritzats
557 557 label_all: tots
558 558 label_none: cap
559 559 label_nobody: ningú
560 560 label_next: Següent
561 561 label_previous: Anterior
562 562 label_used_by: Utilitzat per
563 563 label_details: Detalls
564 564 label_add_note: Afegeix una nota
565 565 label_calendar: Calendari
566 566 label_months_from: mesos des de
567 567 label_gantt: Gantt
568 568 label_internal: Intern
569 569 label_last_changes: "últims %{count} canvis"
570 570 label_change_view_all: Visualitza tots els canvis
571 571 label_personalize_page: Personalitza aquesta pàgina
572 572 label_comment: Comentari
573 573 label_comment_plural: Comentaris
574 574 label_x_comments:
575 575 zero: sense comentaris
576 576 one: 1 comentari
577 577 other: "%{count} comentaris"
578 578 label_comment_add: Afegeix un comentari
579 579 label_comment_added: Comentari afegit
580 580 label_comment_delete: Suprimeix comentaris
581 581 label_query: Consulta personalitzada
582 582 label_query_plural: Consultes personalitzades
583 583 label_query_new: Consulta nova
584 584 label_filter_add: Afegeix un filtre
585 585 label_filter_plural: Filtres
586 586 label_equals: és
587 587 label_not_equals: no és
588 588 label_in_less_than: en menys de
589 589 label_in_more_than: en més de
590 590 label_greater_or_equal: ">="
591 591 label_less_or_equal: <=
592 592 label_in: en
593 593 label_today: avui
594 594 label_all_time: tot el temps
595 595 label_yesterday: ahir
596 596 label_this_week: aquesta setmana
597 597 label_last_week: "l'última setmana"
598 598 label_last_n_days: "els últims %{count} dies"
599 599 label_this_month: aquest més
600 600 label_last_month: "l'últim més"
601 601 label_this_year: aquest any
602 602 label_date_range: Abast de les dates
603 603 label_less_than_ago: fa menys de
604 604 label_more_than_ago: fa més de
605 605 label_ago: fa
606 606 label_contains: conté
607 607 label_not_contains: no conté
608 608 label_day_plural: dies
609 609 label_repository: Dipòsit
610 610 label_repository_plural: Dipòsits
611 611 label_browse: Navega
612 612 label_branch: Branca
613 613 label_tag: Etiqueta
614 614 label_revision: Revisió
615 615 label_revision_plural: Revisions
616 616 label_revision_id: "Revisió %{value}"
617 617 label_associated_revisions: Revisions associades
618 618 label_added: afegit
619 619 label_modified: modificat
620 620 label_copied: copiat
621 621 label_renamed: reanomenat
622 622 label_deleted: suprimit
623 623 label_latest_revision: Última revisió
624 624 label_latest_revision_plural: Últimes revisions
625 625 label_view_revisions: Visualitza les revisions
626 626 label_view_all_revisions: "Visualitza totes les revisions"
627 627 label_max_size: Mida màxima
628 628 label_sort_highest: Mou a la part superior
629 629 label_sort_higher: Mou cap amunt
630 630 label_sort_lower: Mou cap avall
631 631 label_sort_lowest: Mou a la part inferior
632 632 label_roadmap: Planificació
633 633 label_roadmap_due_in: "Venç en %{value}"
634 634 label_roadmap_overdue: "%{value} tard"
635 635 label_roadmap_no_issues: No hi ha assumptes per a aquesta versió
636 636 label_search: Cerca
637 637 label_result_plural: Resultats
638 638 label_all_words: Totes les paraules
639 639 label_wiki: Wiki
640 640 label_wiki_edit: Edició wiki
641 641 label_wiki_edit_plural: Edicions wiki
642 642 label_wiki_page: Pàgina wiki
643 643 label_wiki_page_plural: Pàgines wiki
644 644 label_index_by_title: Índex per títol
645 645 label_index_by_date: Índex per data
646 646 label_current_version: Versió actual
647 647 label_preview: Previsualització
648 648 label_feed_plural: Canals
649 649 label_changes_details: Detalls de tots els canvis
650 650 label_issue_tracking: "Seguiment d'assumptes"
651 651 label_spent_time: Temps invertit
652 652 label_overall_spent_time: "Temps total invertit"
653 653 label_f_hour: "%{value} hora"
654 654 label_f_hour_plural: "%{value} hores"
655 655 label_time_tracking: Temps de seguiment
656 656 label_change_plural: Canvis
657 657 label_statistics: Estadístiques
658 658 label_commits_per_month: Publicacions per mes
659 659 label_commits_per_author: Publicacions per autor
660 660 label_view_diff: Visualitza les diferències
661 661 label_diff_inline: en línia
662 662 label_diff_side_by_side: costat per costat
663 663 label_options: Opcions
664 664 label_copy_workflow_from: Copia el flux de treball des de
665 665 label_permissions_report: Informe de permisos
666 666 label_watched_issues: Assumptes vigilats
667 667 label_related_issues: Assumptes relacionats
668 668 label_applied_status: Estat aplicat
669 669 label_loading: "S'està carregant..."
670 670 label_relation_new: Relació nova
671 671 label_relation_delete: Suprimeix la relació
672 672 label_relates_to: relacionat amb
673 673 label_duplicates: duplicats
674 674 label_duplicated_by: duplicat per
675 675 label_blocks: bloqueja
676 676 label_blocked_by: bloquejats per
677 677 label_precedes: anterior a
678 678 label_follows: posterior a
679 679 label_stay_logged_in: "Manté l'entrada"
680 680 label_disabled: inhabilitat
681 681 label_show_completed_versions: Mostra les versions completes
682 682 label_me: jo mateix
683 683 label_board: Fòrum
684 684 label_board_new: Fòrum nou
685 685 label_board_plural: Fòrums
686 686 label_board_locked: Bloquejat
687 687 label_board_sticky: Sticky
688 688 label_topic_plural: Temes
689 689 label_message_plural: Missatges
690 690 label_message_last: Últim missatge
691 691 label_message_new: Missatge nou
692 692 label_message_posted: Missatge afegit
693 693 label_reply_plural: Respostes
694 694 label_send_information: "Envia la informació del compte a l'usuari"
695 695 label_year: Any
696 696 label_month: Mes
697 697 label_week: Setmana
698 698 label_date_from: Des de
699 699 label_date_to: A
700 700 label_language_based: "Basat en l'idioma de l'usuari"
701 701 label_sort_by: "Ordena per %{value}"
702 702 label_send_test_email: Envia un correu electrònic de prova
703 703 label_feeds_access_key: "Clau d'accés del Atom"
704 704 label_missing_feeds_access_key: "Falta una clau d'accés del Atom"
705 705 label_feeds_access_key_created_on: "Clau d'accés del Atom creada fa %{value}"
706 706 label_module_plural: Mòduls
707 707 label_added_time_by: "Afegit per %{author} fa %{age}"
708 708 label_updated_time_by: "Actualitzat per %{author} fa %{age}"
709 709 label_updated_time: "Actualitzat fa %{value}"
710 710 label_jump_to_a_project: Salta al projecte...
711 711 label_file_plural: Fitxers
712 712 label_changeset_plural: Conjunt de canvis
713 713 label_default_columns: Columnes predeterminades
714 714 label_no_change_option: (sense canvis)
715 715 label_bulk_edit_selected_issues: Edita en bloc els assumptes seleccionats
716 716 label_theme: Tema
717 717 label_default: Predeterminat
718 718 label_search_titles_only: Cerca només en els títols
719 719 label_user_mail_option_all: "Per qualsevol esdeveniment en tots els meus projectes"
720 720 label_user_mail_option_selected: "Per qualsevol esdeveniment en els projectes seleccionats..."
721 721 label_user_mail_no_self_notified: "No vull ser notificat pels canvis que faig jo mateix"
722 722 label_registration_activation_by_email: activació del compte per correu electrònic
723 723 label_registration_manual_activation: activació del compte manual
724 724 label_registration_automatic_activation: activació del compte automàtica
725 725 label_display_per_page: "Per pàgina: %{value}"
726 726 label_age: Edat
727 727 label_change_properties: Canvia les propietats
728 728 label_general: General
729 729 label_more: Més
730 730 label_scm: SCM
731 731 label_plugins: Connectors
732 732 label_ldap_authentication: Autenticació LDAP
733 733 label_downloads_abbr: Baixades
734 734 label_optional_description: Descripció opcional
735 735 label_add_another_file: Afegeix un altre fitxer
736 736 label_preferences: Preferències
737 737 label_chronological_order: En ordre cronològic
738 738 label_reverse_chronological_order: En ordre cronològic invers
739 739 label_planning: Planificació
740 740 label_incoming_emails: "Correu electrònics d'entrada"
741 741 label_generate_key: Genera una clau
742 742 label_issue_watchers: Vigilàncies
743 743 label_example: Exemple
744 744 label_display: Mostra
745 745 label_sort: Ordena
746 746 label_ascending: Ascendent
747 747 label_descending: Descendent
748 748 label_date_from_to: Des de %{start} a %{end}
749 749 label_wiki_content_added: "S'ha afegit la pàgina wiki"
750 750 label_wiki_content_updated: "S'ha actualitzat la pàgina wiki"
751 751 label_group: Grup
752 752 label_group_plural: Grups
753 753 label_group_new: Grup nou
754 754 label_time_entry_plural: Temps invertit
755 755 label_version_sharing_hierarchy: "Amb la jerarquia del projecte"
756 756 label_version_sharing_system: "Amb tots els projectes"
757 757 label_version_sharing_descendants: "Amb tots els subprojectes"
758 758 label_version_sharing_tree: "Amb l'arbre del projecte"
759 759 label_version_sharing_none: "Sense compartir"
760 760 label_update_issue_done_ratios: "Actualitza el tant per cent dels assumptes realitzats"
761 761 label_copy_source: Font
762 762 label_copy_target: Objectiu
763 763 label_copy_same_as_target: "El mateix que l'objectiu"
764 764 label_display_used_statuses_only: "Mostra només els estats que utilitza aquest seguidor"
765 765 label_api_access_key: "Clau d'accés a l'API"
766 766 label_missing_api_access_key: "Falta una clau d'accés de l'API"
767 767 label_api_access_key_created_on: "Clau d'accés de l'API creada fa %{value}"
768 768 label_profile: Perfil
769 769 label_subtask_plural: Subtasques
770 770 label_project_copy_notifications: "Envia notificacions de correu electrònic durant la còpia del projecte"
771 771
772 772 button_login: Entra
773 773 button_submit: Tramet
774 774 button_save: Desa
775 775 button_check_all: Activa-ho tot
776 776 button_uncheck_all: Desactiva-ho tot
777 777 button_delete: Suprimeix
778 778 button_create: Crea
779 779 button_create_and_continue: Crea i continua
780 780 button_test: Test
781 781 button_edit: Edit
782 782 button_add: Afegeix
783 783 button_change: Canvia
784 784 button_apply: Aplica
785 785 button_clear: Neteja
786 786 button_lock: Bloca
787 787 button_unlock: Desbloca
788 788 button_download: Baixa
789 789 button_list: Llista
790 790 button_view: Visualitza
791 791 button_move: Mou
792 792 button_move_and_follow: "Mou i segueix"
793 793 button_back: Enrere
794 794 button_cancel: Cancel·la
795 795 button_activate: Activa
796 796 button_sort: Ordena
797 797 button_log_time: "Registre de temps"
798 798 button_rollback: Torna a aquesta versió
799 799 button_watch: Vigila
800 800 button_unwatch: No vigilis
801 801 button_reply: Resposta
802 802 button_archive: Arxiva
803 803 button_unarchive: Desarxiva
804 804 button_reset: Reinicia
805 805 button_rename: Reanomena
806 806 button_change_password: Canvia la contrasenya
807 807 button_copy: Copia
808 808 button_copy_and_follow: "Copia i segueix"
809 809 button_annotate: Anota
810 810 button_update: Actualitza
811 811 button_configure: Configura
812 812 button_quote: Cita
813 813 button_duplicate: Duplica
814 814 button_show: Mostra
815 815
816 816 status_active: actiu
817 817 status_registered: informat
818 818 status_locked: bloquejat
819 819
820 820 version_status_open: oberta
821 821 version_status_locked: bloquejada
822 822 version_status_closed: tancada
823 823
824 824 field_active: Actiu
825 825
826 826 text_select_mail_notifications: "Seleccioneu les accions per les quals s'hauria d'enviar una notificació per correu electrònic."
827 827 text_regexp_info: ex. ^[A-Z0-9]+$
828 828 text_min_max_length_info: 0 significa sense restricció
829 829 text_project_destroy_confirmation: Segur que voleu suprimir aquest projecte i les dades relacionades?
830 830 text_subprojects_destroy_warning: "També seran suprimits els seus subprojectes: %{value}."
831 831 text_workflow_edit: Seleccioneu un rol i un seguidor per a editar el flux de treball
832 832 text_are_you_sure: Segur?
833 833 text_journal_changed: "%{label} ha canviat de %{old} a %{new}"
834 834 text_journal_set_to: "%{label} s'ha establert a %{value}"
835 835 text_journal_deleted: "%{label} s'ha suprimit (%{old})"
836 836 text_journal_added: "S'ha afegit %{label} %{value}"
837 837 text_tip_issue_begin_day: "tasca que s'inicia aquest dia"
838 838 text_tip_issue_end_day: tasca que finalitza aquest dia
839 839 text_tip_issue_begin_end_day: "tasca que s'inicia i finalitza aquest dia"
840 840 text_caracters_maximum: "%{count} caràcters com a màxim."
841 841 text_caracters_minimum: "Com a mínim ha de tenir %{count} caràcters."
842 842 text_length_between: "Longitud entre %{min} i %{max} caràcters."
843 843 text_tracker_no_workflow: "No s'ha definit cap flux de treball per a aquest seguidor"
844 844 text_unallowed_characters: Caràcters no permesos
845 845 text_comma_separated: Es permeten valors múltiples (separats per una coma).
846 846 text_line_separated: "Es permeten diversos valors (una línia per cada valor)."
847 847 text_issues_ref_in_commit_messages: Referència i soluciona els assumptes en els missatges publicats
848 848 text_issue_added: "L'assumpte %{id} ha sigut informat per %{author}."
849 849 text_issue_updated: "L'assumpte %{id} ha sigut actualitzat per %{author}."
850 850 text_wiki_destroy_confirmation: Segur que voleu suprimir aquest wiki i tots els seus continguts?
851 851 text_issue_category_destroy_question: "Alguns assumptes (%{count}) estan assignats a aquesta categoria. Què voleu fer?"
852 852 text_issue_category_destroy_assignments: Suprimeix les assignacions de la categoria
853 853 text_issue_category_reassign_to: Torna a assignar els assumptes a aquesta categoria
854 854 text_user_mail_option: "Per als projectes no seleccionats, només rebreu notificacions sobre les coses que vigileu o que hi esteu implicat (ex. assumptes que en sou l'autor o hi esteu assignat)."
855 855 text_no_configuration_data: "Encara no s'han configurat els rols, seguidors, estats de l'assumpte i flux de treball.\nÉs altament recomanable que carregueu la configuració predeterminada. Podreu modificar-la un cop carregada."
856 856 text_load_default_configuration: Carrega la configuració predeterminada
857 857 text_status_changed_by_changeset: "Aplicat en el conjunt de canvis %{value}."
858 858 text_issues_destroy_confirmation: "Segur que voleu suprimir els assumptes seleccionats?"
859 859 text_select_project_modules: "Seleccioneu els mòduls a habilitar per a aquest projecte:"
860 860 text_default_administrator_account_changed: "S'ha canviat el compte d'administrador predeterminat"
861 861 text_file_repository_writable: Es pot escriure en el dipòsit de fitxers
862 862 text_plugin_assets_writable: Es pot escriure als connectors actius
863 863 text_rmagick_available: RMagick disponible (opcional)
864 864 text_destroy_time_entries_question: "S'han informat %{hours} hores en els assumptes que aneu a suprimir. Què voleu fer?"
865 865 text_destroy_time_entries: Suprimeix les hores informades
866 866 text_assign_time_entries_to_project: Assigna les hores informades al projecte
867 867 text_reassign_time_entries: "Torna a assignar les hores informades a aquest assumpte:"
868 868 text_user_wrote: "%{value} va escriure:"
869 869 text_enumeration_destroy_question: "%{count} objectes estan assignats a aquest valor."
870 870 text_enumeration_category_reassign_to: "Torna a assignar-los a aquest valor:"
871 871 text_email_delivery_not_configured: "El lliurament per correu electrònic no està configurat i les notificacions estan inhabilitades.\nConfigureu el servidor SMTP a config/configuration.yml i reinicieu l'aplicació per habilitar-lo."
872 872 text_repository_usernames_mapping: "Seleccioneu l'assignació entre els usuaris del Redmine i cada nom d'usuari trobat al dipòsit.\nEls usuaris amb el mateix nom d'usuari o correu del Redmine i del dipòsit s'assignaran automàticament."
873 873 text_diff_truncated: "... Aquestes diferències s'han trucat perquè excedeixen la mida màxima que es pot mostrar."
874 874 text_custom_field_possible_values_info: "Una línia per a cada valor"
875 875 text_wiki_page_destroy_question: "Aquesta pàgina %{descendants} pàgines fill i descendents. Què voleu fer?"
876 876 text_wiki_page_nullify_children: "Deixa les pàgines fill com a pàgines arrel"
877 877 text_wiki_page_destroy_children: "Suprimeix les pàgines fill i tots els seus descendents"
878 878 text_wiki_page_reassign_children: "Reasigna les pàgines fill a aquesta pàgina pare"
879 879 text_own_membership_delete_confirmation: "Esteu a punt de suprimir algun o tots els vostres permisos i potser no podreu editar més aquest projecte.\nSegur que voleu continuar?"
880 880 text_zoom_in: Redueix
881 881 text_zoom_out: Amplia
882 882
883 883 default_role_manager: Gestor
884 884 default_role_developer: Desenvolupador
885 885 default_role_reporter: Informador
886 886 default_tracker_bug: Error
887 887 default_tracker_feature: Característica
888 888 default_tracker_support: Suport
889 889 default_issue_status_new: Nou
890 890 default_issue_status_in_progress: In Progress
891 891 default_issue_status_resolved: Resolt
892 892 default_issue_status_feedback: Comentaris
893 893 default_issue_status_closed: Tancat
894 894 default_issue_status_rejected: Rebutjat
895 895 default_doc_category_user: "Documentació d'usuari"
896 896 default_doc_category_tech: Documentació tècnica
897 897 default_priority_low: Baixa
898 898 default_priority_normal: Normal
899 899 default_priority_high: Alta
900 900 default_priority_urgent: Urgent
901 901 default_priority_immediate: Immediata
902 902 default_activity_design: Disseny
903 903 default_activity_development: Desenvolupament
904 904
905 905 enumeration_issue_priorities: Prioritat dels assumptes
906 906 enumeration_doc_categories: Categories del document
907 907 enumeration_activities: Activitats (seguidor de temps)
908 908 enumeration_system_activity: Activitat del sistema
909 909
910 910 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
911 911 field_text: Text field
912 912 label_user_mail_option_only_owner: Only for things I am the owner of
913 913 setting_default_notification_option: Default notification option
914 914 label_user_mail_option_only_my_events: Only for things I watch or I'm involved in
915 915 label_user_mail_option_only_assigned: Only for things I am assigned to
916 916 label_user_mail_option_none: No events
917 917 field_member_of_group: Assignee's group
918 918 field_assigned_to_role: Assignee's role
919 919 notice_not_authorized_archived_project: The project you're trying to access has been archived.
920 920 label_principal_search: "Search for user or group:"
921 921 label_user_search: "Search for user:"
922 922 field_visible: Visible
923 923 setting_commit_logtime_activity_id: Activity for logged time
924 924 text_time_logged_by_changeset: Applied in changeset %{value}.
925 925 setting_commit_logtime_enabled: Enable time logging
926 926 notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
927 927 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
928 928 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
929 929 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
930 930 label_my_queries: My custom queries
931 931 text_journal_changed_no_detail: "%{label} updated"
932 932 label_news_comment_added: Comment added to a news
933 933 button_expand_all: Expand all
934 934 button_collapse_all: Collapse all
935 935 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
936 936 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
937 937 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
938 938 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
939 939 label_role_anonymous: Anonymous
940 940 label_role_non_member: Non member
941 941 label_issue_note_added: Note added
942 942 label_issue_status_updated: Status updated
943 943 label_issue_priority_updated: Priority updated
944 944 label_issues_visibility_own: Issues created by or assigned to the user
945 945 field_issues_visibility: Issues visibility
946 946 label_issues_visibility_all: All issues
947 947 permission_set_own_issues_private: Set own issues public or private
948 948 field_is_private: Private
949 949 permission_set_issues_private: Set issues public or private
950 950 label_issues_visibility_public: All non private issues
951 951 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
952 952 field_commit_logs_encoding: Codificació dels missatges publicats
953 953 field_scm_path_encoding: Path encoding
954 954 text_scm_path_encoding_note: "Default: UTF-8"
955 955 field_path_to_repository: Path to repository
956 956 field_root_directory: Root directory
957 957 field_cvs_module: Module
958 958 field_cvsroot: CVSROOT
959 959 text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo)
960 960 text_scm_command: Command
961 961 text_scm_command_version: Version
962 962 label_git_report_last_commit: Report last commit for files and directories
963 963 notice_issue_successful_create: Issue %{id} created.
964 964 label_between: between
965 965 setting_issue_group_assignment: Allow issue assignment to groups
966 966 label_diff: diff
967 967 text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo)
968 968 description_query_sort_criteria_direction: Sort direction
969 969 description_project_scope: Search scope
970 970 description_filter: Filter
971 971 description_user_mail_notification: Mail notification settings
972 972 description_date_from: Enter start date
973 973 description_message_content: Message content
974 974 description_available_columns: Available Columns
975 975 description_date_range_interval: Choose range by selecting start and end date
976 976 description_issue_category_reassign: Choose issue category
977 977 description_search: Searchfield
978 978 description_notes: Notes
979 979 description_date_range_list: Choose range from list
980 980 description_choose_project: Projects
981 981 description_date_to: Enter end date
982 982 description_query_sort_criteria_attribute: Sort attribute
983 983 description_wiki_subpages_reassign: Choose new parent page
984 984 description_selected_columns: Selected Columns
985 985 label_parent_revision: Parent
986 986 label_child_revision: Child
987 987 error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size.
988 988 setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
989 989 button_edit_section: Edit this section
990 990 setting_repositories_encodings: Attachments and repositories encodings
991 991 description_all_columns: All Columns
992 992 button_export: Export
993 993 label_export_options: "%{export_format} export options"
994 994 error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})
995 995 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
996 996 label_x_issues:
997 997 zero: 0 assumpte
998 998 one: 1 assumpte
999 999 other: "%{count} assumptes"
1000 1000 label_repository_new: New repository
1001 1001 field_repository_is_default: Main repository
1002 1002 label_copy_attachments: Copy attachments
1003 1003 label_item_position: "%{position}/%{count}"
1004 1004 label_completed_versions: Completed versions
1005 1005 text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1006 1006 field_multiple: Multiple values
1007 1007 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
1008 1008 text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
1009 1009 text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
1010 1010 notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
1011 1011 text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
1012 1012 permission_manage_related_issues: Manage related issues
1013 1013 field_auth_source_ldap_filter: LDAP filter
1014 1014 label_search_for_watchers: Search for watchers to add
1015 1015 notice_account_deleted: Your account has been permanently deleted.
1016 1016 setting_unsubscribe: Allow users to delete their own account
1017 1017 button_delete_my_account: Delete my account
1018 1018 text_account_destroy_confirmation: |-
1019 1019 Are you sure you want to proceed?
1020 1020 Your account will be permanently deleted, with no way to reactivate it.
1021 1021 error_session_expired: Your session has expired. Please login again.
1022 1022 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1023 1023 setting_session_lifetime: Session maximum lifetime
1024 1024 setting_session_timeout: Session inactivity timeout
1025 1025 label_session_expiration: Session expiration
1026 1026 permission_close_project: Close / reopen the project
1027 1027 label_show_closed_projects: View closed projects
1028 1028 button_close: Close
1029 1029 button_reopen: Reopen
1030 1030 project_status_active: active
1031 1031 project_status_closed: closed
1032 1032 project_status_archived: archived
1033 1033 text_project_closed: This project is closed and read-only.
1034 1034 notice_user_successful_create: User %{id} created.
1035 1035 field_core_fields: Standard fields
1036 1036 field_timeout: Timeout (in seconds)
1037 1037 setting_thumbnails_enabled: Display attachment thumbnails
1038 1038 setting_thumbnails_size: Thumbnails size (in pixels)
1039 1039 label_status_transitions: Status transitions
1040 1040 label_fields_permissions: Fields permissions
1041 1041 label_readonly: Read-only
1042 1042 label_required: Required
1043 1043 text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1044 1044 field_board_parent: Parent forum
1045 1045 label_attribute_of_project: Project's %{name}
1046 1046 label_attribute_of_author: Author's %{name}
1047 1047 label_attribute_of_assigned_to: Assignee's %{name}
1048 1048 label_attribute_of_fixed_version: Target version's %{name}
1049 1049 label_copy_subtasks: Copy subtasks
1050 1050 label_copied_to: copied to
1051 1051 label_copied_from: copied from
1052 1052 label_any_issues_in_project: any issues in project
1053 1053 label_any_issues_not_in_project: any issues not in project
1054 1054 field_private_notes: Private notes
1055 1055 permission_view_private_notes: View private notes
1056 1056 permission_set_notes_private: Set notes as private
1057 1057 label_no_issues_in_project: no issues in project
1058 1058 label_any: tots
1059 1059 label_last_n_weeks: last %{count} weeks
1060 1060 setting_cross_project_subtasks: Allow cross-project subtasks
1061 1061 label_cross_project_descendants: "Amb tots els subprojectes"
1062 1062 label_cross_project_tree: "Amb l'arbre del projecte"
1063 1063 label_cross_project_hierarchy: "Amb la jerarquia del projecte"
1064 1064 label_cross_project_system: "Amb tots els projectes"
1065 1065 button_hide: Hide
1066 1066 setting_non_working_week_days: Non-working days
1067 1067 label_in_the_next_days: in the next
1068 1068 label_in_the_past_days: in the past
1069 1069 label_attribute_of_user: User's %{name}
1070 1070 text_turning_multiple_off: If you disable multiple values, multiple values will be
1071 1071 removed in order to preserve only one value per item.
1072 1072 label_attribute_of_issue: Issue's %{name}
1073 1073 permission_add_documents: Add documents
1074 1074 permission_edit_documents: Edit documents
1075 1075 permission_delete_documents: Delete documents
1076 1076 label_gantt_progress_line: Progress line
1077 1077 setting_jsonp_enabled: Enable JSONP support
1078 1078 field_inherit_members: Inherit members
1079 1079 field_closed_on: Closed
1080 1080 field_generate_password: Generate password
1081 1081 setting_default_projects_tracker_ids: Default trackers for new projects
1082 1082 label_total_time: Total
1083 1083 text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it.
1084 1084 text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel.
1085 1085 setting_emails_header: Email header
1086 1086 notice_account_not_activated_yet: You haven't activated your account yet. If you want
1087 1087 to receive a new activation email, please <a href="%{url}">click this link</a>.
1088 1088 notice_account_locked: Your account is locked.
1089 1089 label_hidden: Hidden
1090 1090 label_visibility_private: to me only
1091 1091 label_visibility_roles: to these roles only
1092 1092 label_visibility_public: to any users
1093 1093 field_must_change_passwd: Must change password at next logon
1094 1094 notice_new_password_must_be_different: The new password must be different from the
1095 1095 current password
1096 1096 setting_mail_handler_excluded_filenames: Exclude attachments by name
1097 1097 text_convert_available: ImageMagick convert available (optional)
1098 1098 label_link: Link
1099 1099 label_only: only
1100 1100 label_drop_down_list: drop-down list
1101 1101 label_checkboxes: checkboxes
1102 1102 label_link_values_to: Link values to URL
1103 1103 setting_force_default_language_for_anonymous: Force default language for anonymous
1104 1104 users
1105 1105 setting_force_default_language_for_loggedin: Force default language for logged-in
1106 1106 users
1107 1107 label_custom_field_select_type: Select the type of object to which the custom field
1108 1108 is to be attached
1109 1109 label_issue_assigned_to_updated: Assignee updated
1110 1110 label_check_for_updates: Check for updates
1111 1111 label_latest_compatible_version: Latest compatible version
1112 1112 label_unknown_plugin: Unknown plugin
1113 1113 label_radio_buttons: radio buttons
1114 1114 label_group_anonymous: Anonymous users
1115 1115 label_group_non_member: Non member users
1116 1116 label_add_projects: Add projects
1117 1117 field_default_status: Default status
1118 1118 text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
1119 1119 field_users_visibility: Users visibility
1120 1120 label_users_visibility_all: All active users
1121 1121 label_users_visibility_members_of_visible_projects: Members of visible projects
1122 1122 label_edit_attachments: Edit attached files
1123 1123 setting_link_copied_issue: Link issues on copy
1124 1124 label_link_copied_issue: Link copied issue
1125 1125 label_ask: Ask
1126 1126 label_search_attachments_yes: Search attachment filenames and descriptions
1127 1127 label_search_attachments_no: Do not search attachments
1128 1128 label_search_attachments_only: Search attachments only
1129 1129 label_search_open_issues_only: Open issues only
1130 1130 field_address: Correu electrònic
1131 1131 setting_max_additional_emails: Maximum number of additional email addresses
1132 1132 label_email_address_plural: Emails
1133 1133 label_email_address_add: Add email address
1134 1134 label_enable_notifications: Enable notifications
1135 1135 label_disable_notifications: Disable notifications
1136 1136 setting_search_results_per_page: Search results per page
1137 1137 label_blank_value: blank
1138 1138 permission_copy_issues: Copy issues
1139 1139 error_password_expired: Your password has expired or the administrator requires you
1140 1140 to change it.
1141 1141 field_time_entries_visibility: Time logs visibility
1142 1142 setting_password_max_age: Require password change after
1143 1143 label_parent_task_attributes: Parent tasks attributes
1144 1144 label_parent_task_attributes_derived: Calculated from subtasks
1145 1145 label_parent_task_attributes_independent: Independent of subtasks
1146 1146 label_time_entries_visibility_all: All time entries
1147 1147 label_time_entries_visibility_own: Time entries created by the user
1148 1148 label_member_management: Member management
1149 1149 label_member_management_all_roles: All roles
1150 1150 label_member_management_selected_roles_only: Only these roles
1151 1151 label_password_required: Confirm your password to continue
1152 1152 label_total_spent_time: "Temps total invertit"
1153 1153 notice_import_finished: All %{count} items have been imported.
1154 1154 notice_import_finished_with_errors: ! '%{count} out of %{total} items could not be
1155 1155 imported.'
1156 1156 error_invalid_file_encoding: The file is not a valid %{encoding} encoded file
1157 1157 error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the
1158 1158 settings below
1159 1159 error_can_not_read_import_file: An error occurred while reading the file to import
1160 1160 permission_import_issues: Import issues
1161 1161 label_import_issues: Import issues
1162 1162 label_select_file_to_import: Select the file to import
1163 1163 label_fields_separator: Field separator
1164 1164 label_fields_wrapper: Field wrapper
1165 1165 label_encoding: Encoding
1166 1166 label_comma_char: Comma
1167 1167 label_semi_colon_char: Semi colon
1168 1168 label_quote_char: Quote
1169 1169 label_double_quote_char: Double quote
1170 1170 label_fields_mapping: Fields mapping
1171 1171 label_file_content_preview: File content preview
1172 1172 label_create_missing_values: Create missing values
1173 1173 button_import: Import
1174 1174 field_total_estimated_hours: Total estimated time
1175 1175 label_api: API
1176 1176 label_total_plural: Totals
1177 1177 label_assigned_issues: Assigned issues
1178 1178 label_field_format_enumeration: Key/value list
1179 1179 label_f_hour_short: '%{value} h'
1180 1180 field_default_version: Default version
1181 1181 error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed
1182 1182 setting_attachment_extensions_allowed: Allowed extensions
1183 1183 setting_attachment_extensions_denied: Disallowed extensions
1184 1184 label_any_open_issues: any open issues
1185 1185 label_no_open_issues: no open issues
1186 1186 label_default_values_for_new_users: Default values for new users
1187 error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot
1188 be reassigned to an issue that is about to be deleted
@@ -1,1185 +1,1187
1 1 # Update to 2.2, 2.4, 2.5, 2.6, 3.1, 3.3 by Karel Picman <karel.picman@kontron.com>
2 2 # Update to 1.1 by Michal Gebauer <mishak@mishak.net>
3 3 # Updated by Josef Liška <jl@chl.cz>
4 4 # CZ translation by Maxim Krušina | Massimo Filippi, s.r.o. | maxim@mxm.cz
5 5 # Based on original CZ translation by Jan Kadleček
6 6 cs:
7 7 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
8 8 direction: ltr
9 9 date:
10 10 formats:
11 11 # Use the strftime parameters for formats.
12 12 # When no format has been given, it uses default.
13 13 # You can provide other formats here if you like!
14 14 default: "%Y-%m-%d"
15 15 short: "%b %d"
16 16 long: "%B %d, %Y"
17 17
18 18 day_names: [Neděle, Pondělí, Úterý, Středa, Čtvrtek, Pátek, Sobota]
19 19 abbr_day_names: [Ne, Po, Út, St, Čt, , So]
20 20
21 21 # Don't forget the nil at the beginning; there's no such thing as a 0th month
22 22 month_names: [~, Leden, Únor, Březen, Duben, Květen, Červen, Červenec, Srpen, Září, Říjen, Listopad, Prosinec]
23 23 abbr_month_names: [~, Led, Úno, Bře, Dub, Kvě, Čer, Čec, Srp, Zář, Říj, Lis, Pro]
24 24 # Used in date_select and datime_select.
25 25 order:
26 26 - :year
27 27 - :month
28 28 - :day
29 29
30 30 time:
31 31 formats:
32 32 default: "%a, %d %b %Y %H:%M:%S %z"
33 33 time: "%H:%M"
34 34 short: "%d %b %H:%M"
35 35 long: "%B %d, %Y %H:%M"
36 36 am: "dop."
37 37 pm: "odp."
38 38
39 39 datetime:
40 40 distance_in_words:
41 41 half_a_minute: "půl minuty"
42 42 less_than_x_seconds:
43 43 one: "méně než sekunda"
44 44 other: "méně než %{count} sekund"
45 45 x_seconds:
46 46 one: "1 sekunda"
47 47 other: "%{count} sekund"
48 48 less_than_x_minutes:
49 49 one: "méně než minuta"
50 50 other: "méně než %{count} minut"
51 51 x_minutes:
52 52 one: "1 minuta"
53 53 other: "%{count} minut"
54 54 about_x_hours:
55 55 one: "asi 1 hodina"
56 56 other: "asi %{count} hodin"
57 57 x_hours:
58 58 one: "1 hodina"
59 59 other: "%{count} hodin"
60 60 x_days:
61 61 one: "1 den"
62 62 other: "%{count} dnů"
63 63 about_x_months:
64 64 one: "asi 1 měsíc"
65 65 other: "asi %{count} měsíců"
66 66 x_months:
67 67 one: "1 měsíc"
68 68 other: "%{count} měsíců"
69 69 about_x_years:
70 70 one: "asi 1 rok"
71 71 other: "asi %{count} let"
72 72 over_x_years:
73 73 one: "více než 1 rok"
74 74 other: "více než %{count} roky"
75 75 almost_x_years:
76 76 one: "témeř 1 rok"
77 77 other: "téměř %{count} roky"
78 78
79 79 number:
80 80 # Výchozí formát pro čísla
81 81 format:
82 82 separator: "."
83 83 delimiter: ""
84 84 precision: 3
85 85 human:
86 86 format:
87 87 delimiter: ""
88 88 precision: 3
89 89 storage_units:
90 90 format: "%n %u"
91 91 units:
92 92 byte:
93 93 one: "Bajt"
94 94 other: "Bajtů"
95 95 kb: "KB"
96 96 mb: "MB"
97 97 gb: "GB"
98 98 tb: "TB"
99 99
100 100 # Used in array.to_sentence.
101 101 support:
102 102 array:
103 103 sentence_connector: "a"
104 104 skip_last_comma: false
105 105
106 106 activerecord:
107 107 errors:
108 108 template:
109 109 header:
110 110 one: "1 chyba zabránila uložení %{model}"
111 111 other: "%{count} chyb zabránilo uložení %{model}"
112 112 messages:
113 113 inclusion: "není zahrnuto v seznamu"
114 114 exclusion: "je rezervováno"
115 115 invalid: "je neplatné"
116 116 confirmation: "se neshoduje s potvrzením"
117 117 accepted: "musí být akceptováno"
118 118 empty: "nemůže být prázdný"
119 119 blank: "nemůže být prázdný"
120 120 too_long: "je příliš dlouhý"
121 121 too_short: "je příliš krátký"
122 122 wrong_length: "má chybnou délku"
123 123 taken: "je již použito"
124 124 not_a_number: "není číslo"
125 125 not_a_date: "není platné datum"
126 126 greater_than: "musí být větší než %{count}"
127 127 greater_than_or_equal_to: "musí být větší nebo rovno %{count}"
128 128 equal_to: "musí být přesně %{count}"
129 129 less_than: "musí být méně než %{count}"
130 130 less_than_or_equal_to: "musí být méně nebo rovno %{count}"
131 131 odd: "musí být liché"
132 132 even: "musí být sudé"
133 133 greater_than_start_date: "musí být větší než počáteční datum"
134 134 not_same_project: "nepatří stejnému projektu"
135 135 circular_dependency: "Tento vztah by vytvořil cyklickou závislost"
136 136 cant_link_an_issue_with_a_descendant: "Úkol nemůže být spojen s jedním z jeho dílčích úkolů"
137 137 earlier_than_minimum_start_date: "nemůže být dříve než %{date} kvůli předřazeným úkolům"
138 138
139 139 actionview_instancetag_blank_option: Prosím vyberte
140 140
141 141 general_text_No: 'Ne'
142 142 general_text_Yes: 'Ano'
143 143 general_text_no: 'ne'
144 144 general_text_yes: 'ano'
145 145 general_lang_name: 'Czech (Čeština)'
146 146 general_csv_separator: ','
147 147 general_csv_decimal_separator: '.'
148 148 general_csv_encoding: UTF-8
149 149 general_pdf_fontname: freesans
150 150 general_pdf_monospaced_fontname: freemono
151 151 general_first_day_of_week: '1'
152 152
153 153 notice_account_updated: Účet byl úspěšně změněn.
154 154 notice_account_invalid_creditentials: Chybné jméno nebo heslo
155 155 notice_account_password_updated: Heslo bylo úspěšně změněno.
156 156 notice_account_wrong_password: Chybné heslo
157 157 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.
158 158 notice_account_unknown_email: Neznámý uživatel.
159 159 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
160 160 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
161 161 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
162 162 notice_successful_create: Úspěšně vytvořeno.
163 163 notice_successful_update: Úspěšně aktualizováno.
164 164 notice_successful_delete: Úspěšně odstraněno.
165 165 notice_successful_connection: Úspěšné připojení.
166 166 notice_file_not_found: Stránka, kterou se snažíte zobrazit, neexistuje nebo byla smazána.
167 167 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
168 168 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
169 169 notice_not_authorized_archived_project: Projekt, ke kterému se snažíte přistupovat, byl archivován.
170 170 notice_email_sent: "Na adresu %{value} byl odeslán email"
171 171 notice_email_error: "Při odesílání emailu nastala chyba (%{value})"
172 172 notice_feeds_access_key_reseted: Váš klíč pro přístup k Atom byl resetován.
173 173 notice_api_access_key_reseted: Váš API přístupový klíč byl resetován.
174 174 notice_failed_to_save_issues: "Chyba při uložení %{count} úkolu(ů) z %{total} vybraných: %{ids}."
175 175 notice_failed_to_save_members: "Nepodařilo se uložit člena(y): %{errors}."
176 176 notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat"
177 177 notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem."
178 178 notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána.
179 179 notice_unable_delete_version: Nemohu odstanit verzi
180 180 notice_unable_delete_time_entry: Nelze smazat záznam času.
181 181 notice_issue_done_ratios_updated: Koeficienty dokončení úkolu byly aktualizovány.
182 182 notice_gantt_chart_truncated: Graf byl oříznut, počet položek přesáhl limit pro zobrazení (%{max})
183 183
184 184 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: %{value}"
185 185 error_scm_not_found: "Položka a/nebo revize neexistují v repozitáři."
186 186 error_scm_command_failed: "Při pokusu o přístup k repozitáři došlo k chybě: %{value}"
187 187 error_scm_annotate: "Položka neexistuje nebo nemůže být komentována."
188 188 error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu'
189 189 error_no_tracker_in_project: Žádná fronta nebyla přiřazena tomuto projektu. Prosím zkontroluje nastavení projektu.
190 190 error_no_default_issue_status: Není nastaven výchozí stav úkolů. Prosím zkontrolujte nastavení ("Administrace -> Stavy úkolů").
191 191 error_can_not_delete_custom_field: Nelze smazat volitelné pole
192 192 error_can_not_delete_tracker: Tato fronta obsahuje úkoly a nemůže být smazána.
193 193 error_can_not_remove_role: Tato role je právě používaná a nelze ji smazat.
194 194 error_can_not_reopen_issue_on_closed_version: Úkol přiřazený k uzavřené verzi nemůže být znovu otevřen
195 195 error_can_not_archive_project: Tento projekt nemůže být archivován
196 196 error_issue_done_ratios_not_updated: Koeficient dokončení úkolu nebyl aktualizován.
197 197 error_workflow_copy_source: Prosím vyberte zdrojovou frontu nebo roli
198 198 error_workflow_copy_target: Prosím vyberte cílovou frontu(y) a roli(e)
199 199 error_unable_delete_issue_status: Nelze smazat stavy úkolů
200 200 error_unable_to_connect: Nelze se připojit (%{value})
201 201 warning_attachments_not_saved: "%{count} soubor(ů) nebylo možné uložit."
202 202
203 203 mail_subject_lost_password: "Vaše heslo (%{value})"
204 204 mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:'
205 205 mail_subject_register: "Aktivace účtu (%{value})"
206 206 mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:'
207 207 mail_body_account_information_external: "Pomocí vašeho účtu %{value} se můžete přihlásit."
208 208 mail_body_account_information: Informace o vašem účtu
209 209 mail_subject_account_activation_request: "Aktivace %{value} účtu"
210 210 mail_body_account_activation_request: "Byl zaregistrován nový uživatel %{value}. Aktivace jeho účtu závisí na vašem potvrzení."
211 211 mail_subject_reminder: "%{count} úkol(ů) termín během několik dní (%{days})"
212 212 mail_body_reminder: "%{count} úkol(ů), které máte přiřazeny termín během několika dní (%{days}):"
213 213 mail_subject_wiki_content_added: "'%{id}' Wiki stránka byla přidána"
214 214 mail_body_wiki_content_added: "'%{id}' Wiki stránka byla přidána od %{author}."
215 215 mail_subject_wiki_content_updated: "'%{id}' Wiki stránka byla aktualizována"
216 216 mail_body_wiki_content_updated: "'%{id}' Wiki stránka byla aktualizována od %{author}."
217 217
218 218
219 219 field_name: Název
220 220 field_description: Popis
221 221 field_summary: Přehled
222 222 field_is_required: Povinné pole
223 223 field_firstname: Jméno
224 224 field_lastname: Příjmení
225 225 field_mail: Email
226 226 field_filename: Soubor
227 227 field_filesize: Velikost
228 228 field_downloads: Staženo
229 229 field_author: Autor
230 230 field_created_on: Vytvořeno
231 231 field_updated_on: Aktualizováno
232 232 field_field_format: Formát
233 233 field_is_for_all: Pro všechny projekty
234 234 field_possible_values: Možné hodnoty
235 235 field_regexp: Regulární výraz
236 236 field_min_length: Minimální délka
237 237 field_max_length: Maximální délka
238 238 field_value: Hodnota
239 239 field_category: Kategorie
240 240 field_title: Název
241 241 field_project: Projekt
242 242 field_issue: Úkol
243 243 field_status: Stav
244 244 field_notes: Poznámka
245 245 field_is_closed: Úkol uzavřen
246 246 field_is_default: Výchozí stav
247 247 field_tracker: Fronta
248 248 field_subject: Předmět
249 249 field_due_date: Uzavřít do
250 250 field_assigned_to: Přiřazeno
251 251 field_priority: Priorita
252 252 field_fixed_version: Cílová verze
253 253 field_user: Uživatel
254 254 field_principal: Hlavní
255 255 field_role: Role
256 256 field_homepage: Domovská stránka
257 257 field_is_public: Veřejný
258 258 field_parent: Nadřazený projekt
259 259 field_is_in_roadmap: Úkoly zobrazené v plánu
260 260 field_login: Přihlášení
261 261 field_mail_notification: Emailová oznámení
262 262 field_admin: Administrátor
263 263 field_last_login_on: Poslední přihlášení
264 264 field_language: Jazyk
265 265 field_effective_date: Datum
266 266 field_password: Heslo
267 267 field_new_password: Nové heslo
268 268 field_password_confirmation: Potvrzení
269 269 field_version: Verze
270 270 field_type: Typ
271 271 field_host: Host
272 272 field_port: Port
273 273 field_account: Účet
274 274 field_base_dn: Base DN
275 275 field_attr_login: Přihlášení (atribut)
276 276 field_attr_firstname: Jméno (atribut)
277 277 field_attr_lastname: Příjemní (atribut)
278 278 field_attr_mail: Email (atribut)
279 279 field_onthefly: Automatické vytváření uživatelů
280 280 field_start_date: Začátek
281 281 field_done_ratio: "% Hotovo"
282 282 field_auth_source: Autentifikační mód
283 283 field_hide_mail: Nezobrazovat můj email
284 284 field_comments: Komentář
285 285 field_url: URL
286 286 field_start_page: Výchozí stránka
287 287 field_subproject: Podprojekt
288 288 field_hours: Hodiny
289 289 field_activity: Aktivita
290 290 field_spent_on: Datum
291 291 field_identifier: Identifikátor
292 292 field_is_filter: Použít jako filtr
293 293 field_issue_to: Související úkol
294 294 field_delay: Zpoždění
295 295 field_assignable: Úkoly mohou být přiřazeny této roli
296 296 field_redirect_existing_links: Přesměrovat stávající odkazy
297 297 field_estimated_hours: Odhadovaná doba
298 298 field_column_names: Sloupce
299 299 field_time_entries: Zaznamenaný čas
300 300 field_time_zone: Časové pásmo
301 301 field_searchable: Umožnit vyhledávání
302 302 field_default_value: Výchozí hodnota
303 303 field_comments_sorting: Zobrazit komentáře
304 304 field_parent_title: Rodičovská stránka
305 305 field_editable: Editovatelný
306 306 field_watcher: Sleduje
307 307 field_identity_url: OpenID URL
308 308 field_content: Obsah
309 309 field_group_by: Seskupovat výsledky podle
310 310 field_sharing: Sdílení
311 311 field_parent_issue: Rodičovský úkol
312 312 field_member_of_group: Skupina přiřaditele
313 313 field_assigned_to_role: Role přiřaditele
314 314 field_text: Textové pole
315 315 field_visible: Viditelný
316 316
317 317 setting_app_title: Název aplikace
318 318 setting_app_subtitle: Podtitulek aplikace
319 319 setting_welcome_text: Uvítací text
320 320 setting_default_language: Výchozí jazyk
321 321 setting_login_required: Autentifikace vyžadována
322 322 setting_self_registration: Povolena automatická registrace
323 323 setting_attachment_max_size: Maximální velikost přílohy
324 324 setting_issues_export_limit: Limit pro export úkolů
325 325 setting_mail_from: Odesílat emaily z adresy
326 326 setting_bcc_recipients: Příjemci jako skrytá kopie (bcc)
327 327 setting_plain_text_mail: pouze prostý text (ne HTML)
328 328 setting_host_name: Jméno serveru
329 329 setting_text_formatting: Formátování textu
330 330 setting_wiki_compression: Komprese historie Wiki
331 331 setting_feeds_limit: Limit obsahu příspěvků
332 332 setting_default_projects_public: Nové projekty nastavovat jako veřejné
333 333 setting_autofetch_changesets: Automaticky stahovat commity
334 334 setting_sys_api_enabled: Povolit WS pro správu repozitory
335 335 setting_commit_ref_keywords: Klíčová slova pro odkazy
336 336 setting_commit_fix_keywords: Klíčová slova pro uzavření
337 337 setting_autologin: Automatické přihlašování
338 338 setting_date_format: Formát data
339 339 setting_time_format: Formát času
340 340 setting_cross_project_issue_relations: Povolit vazby úkolů napříč projekty
341 341 setting_issue_list_default_columns: Výchozí sloupce zobrazené v seznamu úkolů
342 342 setting_emails_header: Záhlaví emailů
343 343 setting_emails_footer: Zápatí emailů
344 344 setting_protocol: Protokol
345 345 setting_per_page_options: Povolené počty řádků na stránce
346 346 setting_user_format: Formát zobrazení uživatele
347 347 setting_activity_days_default: Dny zobrazené v činnosti projektu
348 348 setting_display_subprojects_issues: Automaticky zobrazit úkoly podprojektu v hlavním projektu
349 349 setting_enabled_scm: Povolené SCM
350 350 setting_mail_handler_body_delimiters: Zkrátit e-maily po jednom z těchto řádků
351 351 setting_mail_handler_api_enabled: Povolit WS pro příchozí e-maily
352 352 setting_mail_handler_api_key: API klíč
353 353 setting_sequential_project_identifiers: Generovat sekvenční identifikátory projektů
354 354 setting_gravatar_enabled: Použít uživatelské ikony Gravatar
355 355 setting_gravatar_default: Výchozí Gravatar
356 356 setting_diff_max_lines_displayed: Maximální počet zobrazených řádků rozdílu
357 357 setting_file_max_size_displayed: Maximální velikost textových souborů zobrazených přímo na stránce
358 358 setting_repository_log_display_limit: Maximální počet revizí zobrazených v logu souboru
359 359 setting_openid: Umožnit přihlašování a registrace s OpenID
360 360 setting_password_min_length: Minimální délka hesla
361 361 setting_new_project_user_role_id: Role přiřazená uživateli bez práv administrátora, který projekt vytvořil
362 362 setting_default_projects_modules: Výchozí zapnutné moduly pro nový projekt
363 363 setting_issue_done_ratio: Spočítat koeficient dokončení úkolu s
364 364 setting_issue_done_ratio_issue_field: Použít pole úkolu
365 365 setting_issue_done_ratio_issue_status: Použít stav úkolu
366 366 setting_start_of_week: Začínat kalendáře
367 367 setting_rest_api_enabled: Zapnout službu REST
368 368 setting_cache_formatted_text: Ukládat formátovaný text do vyrovnávací paměti
369 369 setting_default_notification_option: Výchozí nastavení oznámení
370 370 setting_commit_logtime_enabled: Povolit zapisování času
371 371 setting_commit_logtime_activity_id: Aktivita pro zapsaný čas
372 372 setting_gantt_items_limit: Maximální počet položek zobrazený na ganttově diagramu
373 373
374 374 permission_add_project: Vytvořit projekt
375 375 permission_add_subprojects: Vytvořit podprojekty
376 376 permission_edit_project: Úprava projektů
377 377 permission_select_project_modules: Výběr modulů projektu
378 378 permission_manage_members: Spravování členství
379 379 permission_manage_project_activities: Spravovat aktivity projektu
380 380 permission_manage_versions: Spravování verzí
381 381 permission_manage_categories: Spravování kategorií úkolů
382 382 permission_view_issues: Zobrazit úkoly
383 383 permission_add_issues: Přidávání úkolů
384 384 permission_edit_issues: Upravování úkolů
385 385 permission_manage_issue_relations: Spravování vztahů mezi úkoly
386 386 permission_add_issue_notes: Přidávání poznámek
387 387 permission_edit_issue_notes: Upravování poznámek
388 388 permission_edit_own_issue_notes: Upravování vlastních poznámek
389 389 permission_move_issues: Přesouvání úkolů
390 390 permission_delete_issues: Mazání úkolů
391 391 permission_manage_public_queries: Správa veřejných dotazů
392 392 permission_save_queries: Ukládání dotazů
393 393 permission_view_gantt: Zobrazení ganttova diagramu
394 394 permission_view_calendar: Prohlížení kalendáře
395 395 permission_view_issue_watchers: Zobrazení seznamu sledujících uživatelů
396 396 permission_add_issue_watchers: Přidání sledujících uživatelů
397 397 permission_delete_issue_watchers: Smazat sledující uživatele
398 398 permission_log_time: Zaznamenávání stráveného času
399 399 permission_view_time_entries: Zobrazení stráveného času
400 400 permission_edit_time_entries: Upravování záznamů o stráveném času
401 401 permission_edit_own_time_entries: Upravování vlastních zázamů o stráveném čase
402 402 permission_manage_news: Spravování novinek
403 403 permission_comment_news: Komentování novinek
404 404 permission_view_documents: Prohlížení dokumentů
405 405 permission_manage_files: Spravování souborů
406 406 permission_view_files: Prohlížení souborů
407 407 permission_manage_wiki: Spravování Wiki
408 408 permission_rename_wiki_pages: Přejmenovávání Wiki stránek
409 409 permission_delete_wiki_pages: Mazání stránek na Wiki
410 410 permission_view_wiki_pages: Prohlížení Wiki
411 411 permission_view_wiki_edits: Prohlížení historie Wiki
412 412 permission_edit_wiki_pages: Upravování stránek Wiki
413 413 permission_delete_wiki_pages_attachments: Mazání příloh
414 414 permission_protect_wiki_pages: Zabezpečení Wiki stránek
415 415 permission_manage_repository: Spravování repozitáře
416 416 permission_browse_repository: Procházení repozitáře
417 417 permission_view_changesets: Zobrazování revizí
418 418 permission_commit_access: Commit přístup
419 419 permission_manage_boards: Správa diskusních fór
420 420 permission_view_messages: Prohlížení příspěvků
421 421 permission_add_messages: Posílání příspěvků
422 422 permission_edit_messages: Upravování příspěvků
423 423 permission_edit_own_messages: Upravit vlastní příspěvky
424 424 permission_delete_messages: Mazání příspěvků
425 425 permission_delete_own_messages: Smazat vlastní příspěvky
426 426 permission_export_wiki_pages: Exportovat Wiki stránky
427 427 permission_manage_subtasks: Spravovat dílčí úkoly
428 428
429 429 project_module_issue_tracking: Sledování úkolů
430 430 project_module_time_tracking: Sledování času
431 431 project_module_news: Novinky
432 432 project_module_documents: Dokumenty
433 433 project_module_files: Soubory
434 434 project_module_wiki: Wiki
435 435 project_module_repository: Repozitář
436 436 project_module_boards: Diskuse
437 437 project_module_calendar: Kalendář
438 438 project_module_gantt: Gantt
439 439
440 440 label_user: Uživatel
441 441 label_user_plural: Uživatelé
442 442 label_user_new: Nový uživatel
443 443 label_user_anonymous: Anonymní
444 444 label_project: Projekt
445 445 label_project_new: Nový projekt
446 446 label_project_plural: Projekty
447 447 label_x_projects:
448 448 zero: žádné projekty
449 449 one: 1 projekt
450 450 other: "%{count} projekty(ů)"
451 451 label_project_all: Všechny projekty
452 452 label_project_latest: Poslední projekty
453 453 label_issue: Úkol
454 454 label_issue_new: Nový úkol
455 455 label_issue_plural: Úkoly
456 456 label_issue_view_all: Všechny úkoly
457 457 label_issues_by: "Úkoly podle %{value}"
458 458 label_issue_added: Úkol přidán
459 459 label_issue_updated: Úkol aktualizován
460 460 label_document: Dokument
461 461 label_document_new: Nový dokument
462 462 label_document_plural: Dokumenty
463 463 label_document_added: Dokument přidán
464 464 label_role: Role
465 465 label_role_plural: Role
466 466 label_role_new: Nová role
467 467 label_role_and_permissions: Role a práva
468 468 label_member: Člen
469 469 label_member_new: Nový člen
470 470 label_member_plural: Členové
471 471 label_tracker: Fronta
472 472 label_tracker_plural: Fronty
473 473 label_tracker_new: Nová fronta
474 474 label_workflow: Průběh práce
475 475 label_issue_status: Stav úkolu
476 476 label_issue_status_plural: Stavy úkolů
477 477 label_issue_status_new: Nový stav
478 478 label_issue_category: Kategorie úkolu
479 479 label_issue_category_plural: Kategorie úkolů
480 480 label_issue_category_new: Nová kategorie
481 481 label_custom_field: Uživatelské pole
482 482 label_custom_field_plural: Uživatelská pole
483 483 label_custom_field_new: Nové uživatelské pole
484 484 label_enumerations: Seznamy
485 485 label_enumeration_new: Nová hodnota
486 486 label_information: Informace
487 487 label_information_plural: Informace
488 488 label_please_login: Přihlašte se, prosím
489 489 label_register: Registrovat
490 490 label_login_with_open_id_option: nebo se přihlašte s OpenID
491 491 label_password_lost: Zapomenuté heslo
492 492 label_home: Úvodní
493 493 label_my_page: Moje stránka
494 494 label_my_account: Můj účet
495 495 label_my_projects: Moje projekty
496 496 label_my_page_block: Bloky na mé stránce
497 497 label_administration: Administrace
498 498 label_login: Přihlášení
499 499 label_logout: Odhlášení
500 500 label_help: Nápověda
501 501 label_reported_issues: Nahlášené úkoly
502 502 label_assigned_to_me_issues: Mé úkoly
503 503 label_last_login: Poslední přihlášení
504 504 label_registered_on: Registrován
505 505 label_activity: Aktivita
506 506 label_overall_activity: Celková aktivita
507 507 label_user_activity: "Aktivita uživatele: %{value}"
508 508 label_new: Nový
509 509 label_logged_as: Přihlášen jako
510 510 label_environment: Prostředí
511 511 label_authentication: Autentifikace
512 512 label_auth_source: Mód autentifikace
513 513 label_auth_source_new: Nový mód autentifikace
514 514 label_auth_source_plural: Módy autentifikace
515 515 label_subproject_plural: Podprojekty
516 516 label_subproject_new: Nový podprojekt
517 517 label_and_its_subprojects: "%{value} a jeho podprojekty"
518 518 label_min_max_length: Min - Max délka
519 519 label_list: Seznam
520 520 label_date: Datum
521 521 label_integer: Celé číslo
522 522 label_float: Desetinné číslo
523 523 label_boolean: Ano/Ne
524 524 label_string: Text
525 525 label_text: Dlouhý text
526 526 label_attribute: Atribut
527 527 label_attribute_plural: Atributy
528 528 label_no_data: Žádné položky
529 529 label_change_status: Změnit stav
530 530 label_history: Historie
531 531 label_attachment: Soubor
532 532 label_attachment_new: Nový soubor
533 533 label_attachment_delete: Odstranit soubor
534 534 label_attachment_plural: Soubory
535 535 label_file_added: Soubor přidán
536 536 label_report: Přehled
537 537 label_report_plural: Přehledy
538 538 label_news: Novinky
539 539 label_news_new: Přidat novinku
540 540 label_news_plural: Novinky
541 541 label_news_latest: Poslední novinky
542 542 label_news_view_all: Zobrazit všechny novinky
543 543 label_news_added: Novinka přidána
544 544 label_settings: Nastavení
545 545 label_overview: Přehled
546 546 label_version: Verze
547 547 label_version_new: Nová verze
548 548 label_version_plural: Verze
549 549 label_close_versions: Zavřít dokončené verze
550 550 label_confirmation: Potvrzení
551 551 label_export_to: 'Také k dispozici:'
552 552 label_read: Načítá se...
553 553 label_public_projects: Veřejné projekty
554 554 label_open_issues: otevřený
555 555 label_open_issues_plural: otevřené
556 556 label_closed_issues: uzavřený
557 557 label_closed_issues_plural: uzavřené
558 558 label_x_open_issues_abbr:
559 559 zero: 0 otevřených
560 560 one: 1 otevřený
561 561 other: "%{count} otevřených"
562 562 label_x_closed_issues_abbr:
563 563 zero: 0 uzavřených
564 564 one: 1 uzavřený
565 565 other: "%{count} uzavřených"
566 566 label_total: Celkem
567 567 label_permissions: Práva
568 568 label_current_status: Aktuální stav
569 569 label_new_statuses_allowed: Nové povolené stavy
570 570 label_all: vše
571 571 label_none: nic
572 572 label_nobody: nikdo
573 573 label_next: Další
574 574 label_previous: Předchozí
575 575 label_used_by: Použito
576 576 label_details: Detaily
577 577 label_add_note: Přidat poznámku
578 578 label_calendar: Kalendář
579 579 label_months_from: měsíců od
580 580 label_gantt: Ganttův diagram
581 581 label_internal: Interní
582 582 label_last_changes: "posledních %{count} změn"
583 583 label_change_view_all: Zobrazit všechny změny
584 584 label_personalize_page: Přizpůsobit tuto stránku
585 585 label_comment: Komentář
586 586 label_comment_plural: Komentáře
587 587 label_x_comments:
588 588 zero: žádné komentáře
589 589 one: 1 komentář
590 590 other: "%{count} komentářů"
591 591 label_comment_add: Přidat komentáře
592 592 label_comment_added: Komentář přidán
593 593 label_comment_delete: Odstranit komentář
594 594 label_query: Uživatelský dotaz
595 595 label_query_plural: Uživatelské dotazy
596 596 label_query_new: Nový dotaz
597 597 label_filter_add: Přidat filtr
598 598 label_filter_plural: Filtry
599 599 label_equals: je
600 600 label_not_equals: není
601 601 label_in_less_than: je měší než
602 602 label_in_more_than: je větší než
603 603 label_greater_or_equal: '>='
604 604 label_less_or_equal: '<='
605 605 label_in: v
606 606 label_today: dnes
607 607 label_all_time: vše
608 608 label_yesterday: včera
609 609 label_this_week: tento týden
610 610 label_last_week: minulý týden
611 611 label_last_n_days: "posledních %{count} dnů"
612 612 label_this_month: tento měsíc
613 613 label_last_month: minulý měsíc
614 614 label_this_year: tento rok
615 615 label_date_range: Časový rozsah
616 616 label_less_than_ago: před méně jak (dny)
617 617 label_more_than_ago: před více jak (dny)
618 618 label_ago: před (dny)
619 619 label_contains: obsahuje
620 620 label_not_contains: neobsahuje
621 621 label_day_plural: dny
622 622 label_repository: Repozitář
623 623 label_repository_plural: Repozitáře
624 624 label_browse: Procházet
625 625 label_branch: Větev
626 626 label_tag: Tag
627 627 label_revision: Revize
628 628 label_revision_plural: Revizí
629 629 label_revision_id: "Revize %{value}"
630 630 label_associated_revisions: Související verze
631 631 label_added: přidáno
632 632 label_modified: změněno
633 633 label_copied: zkopírováno
634 634 label_renamed: přejmenováno
635 635 label_deleted: odstraněno
636 636 label_latest_revision: Poslední revize
637 637 label_latest_revision_plural: Poslední revize
638 638 label_view_revisions: Zobrazit revize
639 639 label_view_all_revisions: Zobrazit všechny revize
640 640 label_max_size: Maximální velikost
641 641 label_sort_highest: Přesunout na začátek
642 642 label_sort_higher: Přesunout nahoru
643 643 label_sort_lower: Přesunout dolů
644 644 label_sort_lowest: Přesunout na konec
645 645 label_roadmap: Plán
646 646 label_roadmap_due_in: "Zbývá %{value}"
647 647 label_roadmap_overdue: "%{value} pozdě"
648 648 label_roadmap_no_issues: Pro tuto verzi nejsou žádné úkoly
649 649 label_search: Hledat
650 650 label_result_plural: Výsledky
651 651 label_all_words: Všechna slova
652 652 label_wiki: Wiki
653 653 label_wiki_edit: Wiki úprava
654 654 label_wiki_edit_plural: Wiki úpravy
655 655 label_wiki_page: Wiki stránka
656 656 label_wiki_page_plural: Wiki stránky
657 657 label_index_by_title: Index dle názvu
658 658 label_index_by_date: Index dle data
659 659 label_current_version: Aktuální verze
660 660 label_preview: Náhled
661 661 label_feed_plural: Příspěvky
662 662 label_changes_details: Detail všech změn
663 663 label_issue_tracking: Sledování úkolů
664 664 label_spent_time: Strávený čas
665 665 label_overall_spent_time: Celkem strávený čas
666 666 label_f_hour: "%{value} hodina"
667 667 label_f_hour_plural: "%{value} hodin"
668 668 label_time_tracking: Sledování času
669 669 label_change_plural: Změny
670 670 label_statistics: Statistiky
671 671 label_commits_per_month: Commitů za měsíc
672 672 label_commits_per_author: Commitů za autora
673 673 label_view_diff: Zobrazit rozdíly
674 674 label_diff_inline: uvnitř
675 675 label_diff_side_by_side: vedle sebe
676 676 label_options: Nastavení
677 677 label_copy_workflow_from: Kopírovat průběh práce z
678 678 label_permissions_report: Přehled práv
679 679 label_watched_issues: Sledované úkoly
680 680 label_related_issues: Související úkoly
681 681 label_applied_status: Použitý stav
682 682 label_loading: Nahrávám...
683 683 label_relation_new: Nová souvislost
684 684 label_relation_delete: Odstranit souvislost
685 685 label_relates_to: související s
686 686 label_duplicates: duplikuje
687 687 label_duplicated_by: duplikován
688 688 label_blocks: blokuje
689 689 label_blocked_by: blokován
690 690 label_precedes: předchází
691 691 label_follows: následuje
692 692 label_stay_logged_in: Zůstat přihlášený
693 693 label_disabled: zakázán
694 694 label_show_completed_versions: Zobrazit dokončené verze
695 695 label_me:
696 696 label_board: Fórum
697 697 label_board_new: Nové fórum
698 698 label_board_plural: Fóra
699 699 label_board_locked: Zamčeno
700 700 label_board_sticky: Nálepka
701 701 label_topic_plural: Témata
702 702 label_message_plural: Příspěvky
703 703 label_message_last: Poslední příspěvek
704 704 label_message_new: Nový příspěvek
705 705 label_message_posted: Příspěvek přidán
706 706 label_reply_plural: Odpovědi
707 707 label_send_information: Zaslat informace o účtu uživateli
708 708 label_year: Rok
709 709 label_month: Měsíc
710 710 label_week: Týden
711 711 label_date_from: Od
712 712 label_date_to: Do
713 713 label_language_based: Podle výchozího jazyka
714 714 label_sort_by: "Seřadit podle %{value}"
715 715 label_send_test_email: Poslat testovací email
716 716 label_feeds_access_key: Přístupový klíč pro Atom
717 717 label_missing_feeds_access_key: Postrádá přístupový klíč pro Atom
718 718 label_feeds_access_key_created_on: "Přístupový klíč pro Atom byl vytvořen před %{value}"
719 719 label_module_plural: Moduly
720 720 label_added_time_by: "Přidáno uživatelem %{author} před %{age}"
721 721 label_updated_time_by: "Aktualizováno uživatelem %{author} před %{age}"
722 722 label_updated_time: "Aktualizováno před %{value}"
723 723 label_jump_to_a_project: Vyberte projekt...
724 724 label_file_plural: Soubory
725 725 label_changeset_plural: Revize
726 726 label_default_columns: Výchozí sloupce
727 727 label_no_change_option: (beze změny)
728 728 label_bulk_edit_selected_issues: Hromadná úprava vybraných úkolů
729 729 label_theme: Téma
730 730 label_default: Výchozí
731 731 label_search_titles_only: Vyhledávat pouze v názvech
732 732 label_user_mail_option_all: "Pro všechny události všech mých projektů"
733 733 label_user_mail_option_selected: "Pro všechny události vybraných projektů..."
734 734 label_user_mail_option_none: "Žádné události"
735 735 label_user_mail_option_only_my_events: "Jen pro věci, co sleduji nebo jsem v nich zapojen"
736 736 label_user_mail_option_only_assigned: "Jen pro věci, ke kterým sem přiřazen"
737 737 label_user_mail_option_only_owner: "Jen pro věci, které vlastním"
738 738 label_user_mail_no_self_notified: "Nezasílat informace o mnou vytvořených změnách"
739 739 label_registration_activation_by_email: aktivace účtu emailem
740 740 label_registration_manual_activation: manuální aktivace účtu
741 741 label_registration_automatic_activation: automatická aktivace účtu
742 742 label_display_per_page: "%{value} na stránku"
743 743 label_age: Věk
744 744 label_change_properties: Změnit vlastnosti
745 745 label_general: Obecné
746 746 label_more: Více
747 747 label_scm: SCM
748 748 label_plugins: Doplňky
749 749 label_ldap_authentication: Autentifikace LDAP
750 750 label_downloads_abbr: Staž.
751 751 label_optional_description: Volitelný popis
752 752 label_add_another_file: Přidat další soubor
753 753 label_preferences: Nastavení
754 754 label_chronological_order: V chronologickém pořadí
755 755 label_reverse_chronological_order: V obrácaném chronologickém pořadí
756 756 label_planning: Plánování
757 757 label_incoming_emails: Příchozí e-maily
758 758 label_generate_key: Generovat klíč
759 759 label_issue_watchers: Sledování
760 760 label_example: Příklad
761 761 label_display: Zobrazit
762 762 label_sort: Řazení
763 763 label_ascending: Vzestupně
764 764 label_descending: Sestupně
765 765 label_date_from_to: Od %{start} do %{end}
766 766 label_wiki_content_added: Wiki stránka přidána
767 767 label_wiki_content_updated: Wiki stránka aktualizována
768 768 label_group: Skupina
769 769 label_group_plural: Skupiny
770 770 label_group_new: Nová skupina
771 771 label_time_entry_plural: Strávený čas
772 772 label_version_sharing_none: Nesdíleno
773 773 label_version_sharing_descendants: S podprojekty
774 774 label_version_sharing_hierarchy: S hierarchií projektu
775 775 label_version_sharing_tree: Se stromem projektu
776 776 label_version_sharing_system: Se všemi projekty
777 777 label_update_issue_done_ratios: Aktualizovat koeficienty dokončení úkolů
778 778 label_copy_source: Zdroj
779 779 label_copy_target: Cíl
780 780 label_copy_same_as_target: Stejný jako cíl
781 781 label_display_used_statuses_only: Zobrazit pouze stavy které jsou použité touto frontou
782 782 label_api_access_key: API přístupový klíč
783 783 label_missing_api_access_key: Chybějící přístupový klíč API
784 784 label_api_access_key_created_on: API přístupový klíč vytvořen %{value}
785 785 label_profile: Profil
786 786 label_subtask_plural: Dílčí úkoly
787 787 label_project_copy_notifications: Odeslat email oznámení v průběhu kopie projektu
788 788 label_principal_search: "Hledat uživatele nebo skupinu:"
789 789 label_user_search: "Hledat uživatele:"
790 790
791 791 button_login: Přihlásit
792 792 button_submit: Potvrdit
793 793 button_save: Uložit
794 794 button_check_all: Zašrtnout vše
795 795 button_uncheck_all: Odšrtnout vše
796 796 button_delete: Odstranit
797 797 button_create: Vytvořit
798 798 button_create_and_continue: Vytvořit a pokračovat
799 799 button_test: Testovat
800 800 button_edit: Upravit
801 801 button_edit_associated_wikipage: "Upravit přiřazenou Wiki stránku: %{page_title}"
802 802 button_add: Přidat
803 803 button_change: Změnit
804 804 button_apply: Použít
805 805 button_clear: Smazat
806 806 button_lock: Zamknout
807 807 button_unlock: Odemknout
808 808 button_download: Stáhnout
809 809 button_list: Vypsat
810 810 button_view: Zobrazit
811 811 button_move: Přesunout
812 812 button_move_and_follow: Přesunout a následovat
813 813 button_back: Zpět
814 814 button_cancel: Storno
815 815 button_activate: Aktivovat
816 816 button_sort: Seřadit
817 817 button_log_time: Přidat čas
818 818 button_rollback: Zpět k této verzi
819 819 button_watch: Sledovat
820 820 button_unwatch: Nesledovat
821 821 button_reply: Odpovědět
822 822 button_archive: Archivovat
823 823 button_unarchive: Dearchivovat
824 824 button_reset: Resetovat
825 825 button_rename: Přejmenovat
826 826 button_change_password: Změnit heslo
827 827 button_copy: Kopírovat
828 828 button_copy_and_follow: Kopírovat a následovat
829 829 button_annotate: Komentovat
830 830 button_update: Aktualizovat
831 831 button_configure: Konfigurovat
832 832 button_quote: Citovat
833 833 button_duplicate: Duplikovat
834 834 button_show: Zobrazit
835 835
836 836 status_active: aktivní
837 837 status_registered: registrovaný
838 838 status_locked: zamčený
839 839
840 840 version_status_open: otevřený
841 841 version_status_locked: zamčený
842 842 version_status_closed: zavřený
843 843
844 844 field_active: Aktivní
845 845
846 846 text_select_mail_notifications: Vyberte akci, při které bude zasláno upozornění emailem.
847 847 text_regexp_info: např. ^[A-Z0-9]+$
848 848 text_min_max_length_info: 0 znamená bez limitu
849 849 text_project_destroy_confirmation: Jste si jisti, že chcete odstranit tento projekt a všechna související data?
850 850 text_subprojects_destroy_warning: "Jeho podprojek(y): %{value} budou také smazány."
851 851 text_workflow_edit: Vyberte roli a frontu k editaci průběhu práce
852 852 text_are_you_sure: Jste si jisti?
853 853 text_journal_changed: "%{label} změněn z %{old} na %{new}"
854 854 text_journal_set_to: "%{label} nastaven na %{value}"
855 855 text_journal_deleted: "%{label} smazán (%{old})"
856 856 text_journal_added: "%{label} %{value} přidán"
857 857 text_tip_issue_begin_day: úkol začíná v tento den
858 858 text_tip_issue_end_day: úkol končí v tento den
859 859 text_tip_issue_begin_end_day: úkol začíná a končí v tento den
860 860 text_caracters_maximum: "%{count} znaků maximálně."
861 861 text_caracters_minimum: "Musí být alespoň %{count} znaků dlouhé."
862 862 text_length_between: "Délka mezi %{min} a %{max} znaky."
863 863 text_tracker_no_workflow: Pro tuto frontu není definován žádný průběh práce
864 864 text_unallowed_characters: Nepovolené znaky
865 865 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
866 866 text_line_separated: Více hodnot povoleno (jeden řádek pro každou hodnotu).
867 867 text_issues_ref_in_commit_messages: Odkazování a opravování úkolů v poznámkách commitů
868 868 text_issue_added: "Úkol %{id} byl vytvořen uživatelem %{author}."
869 869 text_issue_updated: "Úkol %{id} byl aktualizován uživatelem %{author}."
870 870 text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto Wiki a celý její obsah?
871 871 text_issue_category_destroy_question: "Některé úkoly (%{count}) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?"
872 872 text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii
873 873 text_issue_category_reassign_to: Přiřadit úkoly do této kategorie
874 874 text_user_mail_option: "U projektů, které nebyly vybrány, budete dostávat oznámení pouze o vašich či o sledovaných položkách (např. o položkách jejichž jste autor nebo ke kterým jste přiřazen(a))."
875 875 text_no_configuration_data: "Role, fronty, stavy úkolů ani průběh práce nebyly zatím nakonfigurovány.\nVelice doporučujeme nahrát výchozí konfiguraci. Po si můžete vše upravit"
876 876 text_load_default_configuration: Nahrát výchozí konfiguraci
877 877 text_status_changed_by_changeset: "Použito v sadě změn %{value}."
878 878 text_time_logged_by_changeset: Aplikováno v sadě změn %{value}.
879 879 text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
880 880 text_select_project_modules: 'Aktivní moduly v tomto projektu:'
881 881 text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno
882 882 text_file_repository_writable: Povolen zápis do adresáře ukládání souborů
883 883 text_plugin_assets_writable: Možnost zápisu do adresáře plugin assets
884 884 text_rmagick_available: RMagick k dispozici (volitelné)
885 885 text_destroy_time_entries_question: "U úkolů, které chcete odstranit, je evidováno %{hours} práce. Co chete udělat?"
886 886 text_destroy_time_entries: Odstranit zaznamenané hodiny.
887 887 text_assign_time_entries_to_project: Přiřadit zaznamenané hodiny projektu
888 888 text_reassign_time_entries: 'Přeřadit zaznamenané hodiny k tomuto úkolu:'
889 889 text_user_wrote: "%{value} napsal:"
890 890 text_enumeration_destroy_question: "Několik (%{count}) objektů je přiřazeno k této hodnotě."
891 891 text_enumeration_category_reassign_to: 'Přeřadit je do této:'
892 892 text_email_delivery_not_configured: "Doručování e-mailů není nastaveno a odesílání notifikací je zakázáno.\nNastavte Váš SMTP server v souboru config/configuration.yml a restartujte aplikaci."
893 893 text_repository_usernames_mapping: "Vybrat nebo upravit mapování mezi Redmine uživateli a uživatelskými jmény nalezenými v logu repozitáře.\nUživatelé se shodným Redmine uživatelským jménem a uživatelským jménem v repozitáři jsou mapováni automaticky."
894 894 text_diff_truncated: '... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.'
895 895 text_custom_field_possible_values_info: 'Každá hodnota na novém řádku'
896 896 text_wiki_page_destroy_question: Tato stránka má %{descendants} podstránek a potomků. Co chcete udělat?
897 897 text_wiki_page_nullify_children: Ponechat podstránky jako kořenové stránky
898 898 text_wiki_page_destroy_children: Smazat podstránky a všechny jejich potomky
899 899 text_wiki_page_reassign_children: Přiřadit podstránky k tomuto rodiči
900 900 text_own_membership_delete_confirmation: "Chystáte se odebrat si některá nebo všechna svá oprávnění, potom již nemusíte být schopni upravit tento projekt.\nOpravdu chcete pokračovat?"
901 901 text_zoom_in: Přiblížit
902 902 text_zoom_out: Oddálit
903 903
904 904 default_role_manager: Manažer
905 905 default_role_developer: Vývojář
906 906 default_role_reporter: Reportér
907 907 default_tracker_bug: Chyba
908 908 default_tracker_feature: Požadavek
909 909 default_tracker_support: Podpora
910 910 default_issue_status_new: Nový
911 911 default_issue_status_in_progress: Ve vývoji
912 912 default_issue_status_resolved: Vyřešený
913 913 default_issue_status_feedback: Čeká se
914 914 default_issue_status_closed: Uzavřený
915 915 default_issue_status_rejected: Odmítnutý
916 916 default_doc_category_user: Uživatelská dokumentace
917 917 default_doc_category_tech: Technická dokumentace
918 918 default_priority_low: Nízká
919 919 default_priority_normal: Normální
920 920 default_priority_high: Vysoká
921 921 default_priority_urgent: Urgentní
922 922 default_priority_immediate: Okamžitá
923 923 default_activity_design: Návhr
924 924 default_activity_development: Vývoj
925 925
926 926 enumeration_issue_priorities: Priority úkolů
927 927 enumeration_doc_categories: Kategorie dokumentů
928 928 enumeration_activities: Aktivity (sledování času)
929 929 enumeration_system_activity: Systémová aktivita
930 930
931 931 field_warn_on_leaving_unsaved: Varuj mě před opuštěním stránky s neuloženým textem
932 932 text_warn_on_leaving_unsaved: Aktuální stránka obsahuje neuložený text, který bude ztracen, když opustíte stránku.
933 933 label_my_queries: Moje vlastní dotazy
934 934 text_journal_changed_no_detail: "%{label} aktualizován"
935 935 label_news_comment_added: K novince byl přidán komentář
936 936 button_expand_all: Rozbal vše
937 937 button_collapse_all: Sbal vše
938 938 label_additional_workflow_transitions_for_assignee: Další změna stavu povolena, jestliže je uživatel přiřazen
939 939 label_additional_workflow_transitions_for_author: Další změna stavu povolena, jestliže je uživatel autorem
940 940 label_bulk_edit_selected_time_entries: Hromadná změna záznamů času
941 941 text_time_entries_destroy_confirmation: Jste si jistí, že chcete smazat vybraný záznam(y) času?
942 942 label_role_anonymous: Anonymní
943 943 label_role_non_member: Není členem
944 944 label_issue_note_added: Přidána poznámka
945 945 label_issue_status_updated: Aktualizován stav
946 946 label_issue_priority_updated: Aktualizována priorita
947 947 label_issues_visibility_own: Úkol vytvořen nebo přiřazen uživatel(i/em)
948 948 field_issues_visibility: Viditelnost úkolů
949 949 label_issues_visibility_all: Všechny úkoly
950 950 permission_set_own_issues_private: Nastavit vlastní úkoly jako veřejné nebo soukromé
951 951 field_is_private: Soukromý
952 952 permission_set_issues_private: Nastavit úkoly jako veřejné nebo soukromé
953 953 label_issues_visibility_public: Všechny úkoly, které nejsou soukromé
954 954 text_issues_destroy_descendants_confirmation: "%{count} dílčí(ch) úkol(ů) bude rovněž smazán(o)."
955 955 field_commit_logs_encoding: Kódování zpráv při commitu
956 956 field_scm_path_encoding: Kódování cesty SCM
957 957 text_scm_path_encoding_note: "Výchozí: UTF-8"
958 958 field_path_to_repository: Cesta k repositáři
959 959 field_root_directory: Kořenový adresář
960 960 field_cvs_module: Modul
961 961 field_cvsroot: CVSROOT
962 962 text_mercurial_repository_note: Lokální repositář (např. /hgrepo, c:\hgrepo)
963 963 text_scm_command: Příkaz
964 964 text_scm_command_version: Verze
965 965 label_git_report_last_commit: Reportovat poslední commit pro soubory a adresáře
966 966 text_scm_config: Můžete si nastavit vaše SCM příkazy v config/configuration.yml. Restartujte, prosím, aplikaci po jejich úpravě.
967 967 text_scm_command_not_available: SCM příkaz není k dispozici. Zkontrolujte, prosím, nastavení v panelu Administrace.
968 968 notice_issue_successful_create: Úkol %{id} vytvořen.
969 969 label_between: mezi
970 970 setting_issue_group_assignment: Povolit přiřazení úkolu skupině
971 971 label_diff: rozdíl
972 972 text_git_repository_note: Repositář je "bare and local" (např. /gitrepo, c:\gitrepo)
973 973 description_query_sort_criteria_direction: Směr třídění
974 974 description_project_scope: Rozsah vyhledávání
975 975 description_filter: Filtr
976 976 description_user_mail_notification: Nastavení emailových notifikací
977 977 description_date_from: Zadejte počáteční datum
978 978 description_message_content: Obsah zprávy
979 979 description_available_columns: Dostupné sloupce
980 980 description_date_range_interval: Zvolte rozsah výběrem počátečního a koncového data
981 981 description_issue_category_reassign: Zvolte kategorii úkolu
982 982 description_search: Vyhledávací pole
983 983 description_notes: Poznámky
984 984 description_date_range_list: Zvolte rozsah ze seznamu
985 985 description_choose_project: Projekty
986 986 description_date_to: Zadejte datum
987 987 description_query_sort_criteria_attribute: Třídící atribut
988 988 description_wiki_subpages_reassign: Zvolte novou rodičovskou stránku
989 989 description_selected_columns: Vybraný sloupec
990 990 label_parent_revision: Rodič
991 991 label_child_revision: Potomek
992 992 error_scm_annotate_big_text_file: Vstup nemůže být komentován, protože překračuje povolenou velikost textového souboru
993 993 setting_default_issue_start_date_to_creation_date: Použij aktuální datum jako počáteční datum pro nové úkoly
994 994 button_edit_section: Uprav tuto část
995 995 setting_repositories_encodings: Kódování příloh a repositářů
996 996 description_all_columns: Všechny sloupce
997 997 button_export: Export
998 998 label_export_options: "nastavení exportu %{export_format}"
999 999 error_attachment_too_big: Soubor nemůže být nahrán, protože jeho velikost je větší než maximální (%{max_size})
1000 1000 notice_failed_to_save_time_entries: "Chyba při ukládání %{count} časov(ých/ého) záznam(ů) z %{total} vybraného: %{ids}."
1001 1001 label_x_issues:
1002 1002 zero: 0 Úkol
1003 1003 one: 1 Úkol
1004 1004 other: "%{count} Úkoly"
1005 1005 label_repository_new: Nový repositář
1006 1006 field_repository_is_default: Hlavní repositář
1007 1007 label_copy_attachments: Kopírovat přílohy
1008 1008 label_item_position: "%{position}/%{count}"
1009 1009 label_completed_versions: Dokončené verze
1010 1010 text_project_identifier_info: Jsou povolena pouze malá písmena (a-z), číslice, pomlčky a podtržítka.<br />Po uložení již nelze identifikátor měnit.
1011 1011 field_multiple: Více hodnot
1012 1012 setting_commit_cross_project_ref: Povolit reference a opravy úkolů ze všech ostatních projektů
1013 1013 text_issue_conflict_resolution_add_notes: Přidat moje poznámky a zahodit ostatní změny
1014 1014 text_issue_conflict_resolution_overwrite: Přesto přijmout moje úpravy (předchozí poznámky budou zachovány, ale některé změny mohou být přepsány)
1015 1015 notice_issue_update_conflict: Během vašich úprav byl úkol aktualizován jiným uživatelem.
1016 1016 text_issue_conflict_resolution_cancel: Zahoď všechny moje změny a znovu zobraz %{link}
1017 1017 permission_manage_related_issues: Spravuj související úkoly
1018 1018 field_auth_source_ldap_filter: LDAP filtr
1019 1019 label_search_for_watchers: Hledej sledující pro přidání
1020 1020 notice_account_deleted: Váš účet byl trvale smazán.
1021 1021 setting_unsubscribe: Povolit uživatelům smazání jejich vlastního účtu
1022 1022 button_delete_my_account: Smazat můj účet
1023 1023 text_account_destroy_confirmation: |-
1024 1024 Skutečně chcete pokračovat?
1025 1025 Váš účet bude nenávratně smazán.
1026 1026 error_session_expired: Vaše sezení vypršelo. Znovu se přihlaste, prosím.
1027 1027 text_session_expiration_settings: "Varování: změnou tohoto nastavení mohou vypršet aktuální sezení včetně toho vašeho."
1028 1028 setting_session_lifetime: Maximální čas sezení
1029 1029 setting_session_timeout: Vypršení sezení bez aktivity
1030 1030 label_session_expiration: Vypršení sezení
1031 1031 permission_close_project: Zavřít / Otevřít projekt
1032 1032 label_show_closed_projects: Zobrazit zavřené projekty
1033 1033 button_close: Zavřít
1034 1034 button_reopen: Znovu otevřít
1035 1035 project_status_active: aktivní
1036 1036 project_status_closed: zavřený
1037 1037 project_status_archived: archivovaný
1038 1038 text_project_closed: Tento projekt je uzevřený a je pouze pro čtení.
1039 1039 notice_user_successful_create: Uživatel %{id} vytvořen.
1040 1040 field_core_fields: Standardní pole
1041 1041 field_timeout: Vypršení (v sekundách)
1042 1042 setting_thumbnails_enabled: Zobrazit náhled přílohy
1043 1043 setting_thumbnails_size: Velikost náhledu (v pixelech)
1044 1044 label_status_transitions: Změna stavu
1045 1045 label_fields_permissions: Práva k polím
1046 1046 label_readonly: Pouze pro čtení
1047 1047 label_required: Vyžadováno
1048 1048 text_repository_identifier_info: Jou povoleny pouze malá písmena (a-z), číslice, pomlčky a podtržítka.<br />Po uložení již nelze identifikátor změnit.
1049 1049 field_board_parent: Rodičovské fórum
1050 1050 label_attribute_of_project: Projektové %{name}
1051 1051 label_attribute_of_author: Autorovo %{name}
1052 1052 label_attribute_of_assigned_to: "%{name} přiřazené(ho)"
1053 1053 label_attribute_of_fixed_version: Cílová verze %{name}
1054 1054 label_copy_subtasks: Kopírovat dílčí úkoly
1055 1055 label_copied_to: zkopírováno do
1056 1056 label_copied_from: zkopírováno z
1057 1057 label_any_issues_in_project: jakékoli úkoly v projektu
1058 1058 label_any_issues_not_in_project: jakékoli úkoly mimo projekt
1059 1059 field_private_notes: Soukromé poznámky
1060 1060 permission_view_private_notes: Zobrazit soukromé poznámky
1061 1061 permission_set_notes_private: Nastavit poznámky jako soukromé
1062 1062 label_no_issues_in_project: žádné úkoly v projektu
1063 1063 label_any: vše
1064 1064 label_last_n_weeks: poslední %{count} týdny
1065 1065 setting_cross_project_subtasks: Povolit dílčí úkoly napříč projekty
1066 1066 label_cross_project_descendants: S podprojekty
1067 1067 label_cross_project_tree: Se stromem projektu
1068 1068 label_cross_project_hierarchy: S hierarchií projektu
1069 1069 label_cross_project_system: Se všemi projekty
1070 1070 button_hide: Skrýt
1071 1071 setting_non_working_week_days: Dny pracovního volna/klidu
1072 1072 label_in_the_next_days: v přístích
1073 1073 label_in_the_past_days: v minulých
1074 1074 label_attribute_of_user: "%{name} uživatel(e/ky)"
1075 1075 text_turning_multiple_off: Jestliže zakážete více hodnot,
1076 1076 hodnoty budou smazány za účelem rezervace pouze jediné hodnoty na položku.
1077 1077 label_attribute_of_issue: "%{name} úkolu"
1078 1078 permission_add_documents: Přidat dokument
1079 1079 permission_edit_documents: Upravit dokumenty
1080 1080 permission_delete_documents: Smazet dokumenty
1081 1081 label_gantt_progress_line: Vývojová čára
1082 1082 setting_jsonp_enabled: Povolit podporu JSONP
1083 1083 field_inherit_members: Zdědit členy
1084 1084 field_closed_on: Uzavřeno
1085 1085 field_generate_password: Generovat heslo
1086 1086 setting_default_projects_tracker_ids: Výchozí fronta pro nové projekty
1087 1087 label_total_time: Celkem
1088 1088 notice_account_not_activated_yet: Neaktivovali jste si dosud Váš účet.
1089 1089 Pro opětovné zaslání aktivačního emailu <a href="%{url}">klikněte na tento odkaz</a>, prosím.
1090 1090 notice_account_locked: Váš účet je uzamčen.
1091 1091 label_hidden: Skrytý
1092 1092 label_visibility_private: pouze pro mě
1093 1093 label_visibility_roles: pouze pro tyto role
1094 1094 label_visibility_public: pro všechny uživatele
1095 1095 field_must_change_passwd: Musí změnit heslo při příštím přihlášení
1096 1096 notice_new_password_must_be_different: Nové heslo se musí lišit od stávajícího
1097 1097 setting_mail_handler_excluded_filenames: Vyřadit přílohy podle jména
1098 1098 text_convert_available: ImageMagick convert k dispozici (volitelné)
1099 1099 label_link: Odkaz
1100 1100 label_only: jenom
1101 1101 label_drop_down_list: rozbalovací seznam
1102 1102 label_checkboxes: zaškrtávátka
1103 1103 label_link_values_to: Propojit hodnoty s URL
1104 1104 setting_force_default_language_for_anonymous: Vynutit výchozí jazyk pro anonymní uživatele
1105 1105 users
1106 1106 setting_force_default_language_for_loggedin: Vynutit výchozí jazyk pro přihlášené uživatele
1107 1107 users
1108 1108 label_custom_field_select_type: Vybrat typ objektu, ke kterému bude přiřazeno uživatelské pole
1109 1109 label_issue_assigned_to_updated: Přiřazený uživatel aktualizován
1110 1110 label_check_for_updates: Zkontroluj aktualizace
1111 1111 label_latest_compatible_version: Poslední kompatibilní verze
1112 1112 label_unknown_plugin: Nezámý plugin
1113 1113 label_radio_buttons: radio tlačítka
1114 1114 label_group_anonymous: Anonymní uživatelé
1115 1115 label_group_non_member: Nečleni
1116 1116 label_add_projects: Přidat projekty
1117 1117 field_default_status: Výchozí stav
1118 1118 text_subversion_repository_note: 'Např.: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
1119 1119 field_users_visibility: Viditelnost uživatelů
1120 1120 label_users_visibility_all: Všichni aktivní uživatelé
1121 1121 label_users_visibility_members_of_visible_projects: Členové viditelných projektů
1122 1122 label_edit_attachments: Editovat přiložené soubory
1123 1123 setting_link_copied_issue: Vytvořit odkazy na kopírované úkol
1124 1124 label_link_copied_issue: Vytvořit odkaz na kopírovaný úkol
1125 1125 label_ask: Zeptat se
1126 1126 label_search_attachments_yes: Vyhledat názvy a popisy souborů
1127 1127 label_search_attachments_no: Nevyhledávat soubory
1128 1128 label_search_attachments_only: Vyhledávat pouze soubory
1129 1129 label_search_open_issues_only: Pouze otevřené úkoly
1130 1130 field_address: Email
1131 1131 setting_max_additional_emails: Maximální počet dalších emailových adres
1132 1132 label_email_address_plural: Emaily
1133 1133 label_email_address_add: Přidat emailovou adresu
1134 1134 label_enable_notifications: Povolit notifikace
1135 1135 label_disable_notifications: Zakázat notifikace
1136 1136 setting_search_results_per_page: Vyhledaných výsledků na stránku
1137 1137 label_blank_value: prázdný
1138 1138 permission_copy_issues: Kopírovat úkoly
1139 1139 error_password_expired: Platnost vašeho hesla vypršela a administrátor vás žádá o jeho změnu.
1140 1140 field_time_entries_visibility: Viditelnost šasového logu
1141 1141 setting_password_max_age: Změna hesla je vyžadována po
1142 1142 label_parent_task_attributes: Atributy rodičovského úkolu
1143 1143 label_parent_task_attributes_derived: Vypočteno z dílčích úkolů
1144 1144 label_parent_task_attributes_independent: Nezávisle na dílčích úkolech
1145 1145 label_time_entries_visibility_all: Všechny zaznamenané časy
1146 1146 label_time_entries_visibility_own: Zaznamenané časy vytvořené uživatelem
1147 1147 label_member_management: Správa členů
1148 1148 label_member_management_all_roles: Všechny role
1149 1149 label_member_management_selected_roles_only: Pouze tyto role
1150 1150 label_password_required: Pro pokračování potvrďte vaše heslo
1151 1151 label_total_spent_time: Celkem strávený čas
1152 1152 notice_import_finished: Všech %{count} položek bylo naimportováno.
1153 1153 notice_import_finished_with_errors: ! '%{count} z %{total} položek nemohlo být
1154 1154 naimportováno.'
1155 1155 error_invalid_file_encoding: Soubor není platným souborem s kódováním %{encoding}
1156 1156 error_invalid_csv_file_or_settings: Soubor není CSV soubor nebo neodpovídá
1157 1157 níže uvedenému nastavení
1158 1158 error_can_not_read_import_file: Chyba při čtení souboru pro import
1159 1159 permission_import_issues: Import úkolů
1160 1160 label_import_issues: Import úkolů
1161 1161 label_select_file_to_import: Vyberte soubor pro import
1162 1162 label_fields_separator: Oddělovač pole
1163 1163 label_fields_wrapper: Oddělovač textu
1164 1164 label_encoding: Kódování
1165 1165 label_comma_char: Čárka
1166 1166 label_semi_colon_char: Středník
1167 1167 label_quote_char: Uvozovky
1168 1168 label_double_quote_char: Dvojté uvozovky
1169 1169 label_fields_mapping: Mapování polí
1170 1170 label_file_content_preview: Náhled obsahu souboru
1171 1171 label_create_missing_values: Vytvořit chybějící hodnoty
1172 1172 button_import: Import
1173 1173 field_total_estimated_hours: Celkový odhadovaný čas
1174 1174 label_api: API
1175 1175 label_total_plural: Celkem
1176 1176 label_assigned_issues: Přiřazené úkoly
1177 1177 label_field_format_enumeration: Seznam klíčů/hodnot
1178 1178 label_f_hour_short: '%{value} hod'
1179 1179 field_default_version: Výchozí verze
1180 1180 error_attachment_extension_not_allowed: Přípona přílohy %{extension} není povolena
1181 1181 setting_attachment_extensions_allowed: Povolené přípony
1182 1182 setting_attachment_extensions_denied: Nepovolené přípony
1183 1183 label_any_open_issues: otevřené úkoly
1184 1184 label_no_open_issues: bez otevřených úkolů
1185 1185 label_default_values_for_new_users: Výchozí hodnoty pro nové uživatele
1186 error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot
1187 be reassigned to an issue that is about to be deleted
@@ -1,1201 +1,1203
1 1 # Danish translation file for standard Ruby on Rails internationalization
2 2 # by Lars Hoeg (http://www.lenio.dk/)
3 3 # updated and upgraded to 0.9 by Morten Krogh Andersen (http://www.krogh.net)
4 4
5 5 da:
6 6 direction: ltr
7 7 date:
8 8 formats:
9 9 default: "%d.%m.%Y"
10 10 short: "%e. %b %Y"
11 11 long: "%e. %B %Y"
12 12
13 13 day_names: [søndag, mandag, tirsdag, onsdag, torsdag, fredag, lørdag]
14 14 abbr_day_names: [, ma, ti, 'on', to, fr, ]
15 15 month_names: [~, januar, februar, marts, april, maj, juni, juli, august, september, oktober, november, december]
16 16 abbr_month_names: [~, jan, feb, mar, apr, maj, jun, jul, aug, sep, okt, nov, dec]
17 17 order:
18 18 - :day
19 19 - :month
20 20 - :year
21 21
22 22 time:
23 23 formats:
24 24 default: "%e. %B %Y, %H:%M"
25 25 time: "%H:%M"
26 26 short: "%e. %b %Y, %H:%M"
27 27 long: "%A, %e. %B %Y, %H:%M"
28 28 am: ""
29 29 pm: ""
30 30
31 31 support:
32 32 array:
33 33 sentence_connector: "og"
34 34 skip_last_comma: true
35 35
36 36 datetime:
37 37 distance_in_words:
38 38 half_a_minute: "et halvt minut"
39 39 less_than_x_seconds:
40 40 one: "mindre end et sekund"
41 41 other: "mindre end %{count} sekunder"
42 42 x_seconds:
43 43 one: "et sekund"
44 44 other: "%{count} sekunder"
45 45 less_than_x_minutes:
46 46 one: "mindre end et minut"
47 47 other: "mindre end %{count} minutter"
48 48 x_minutes:
49 49 one: "et minut"
50 50 other: "%{count} minutter"
51 51 about_x_hours:
52 52 one: "cirka en time"
53 53 other: "cirka %{count} timer"
54 54 x_hours:
55 55 one: "1 time"
56 56 other: "%{count} timer"
57 57 x_days:
58 58 one: "en dag"
59 59 other: "%{count} dage"
60 60 about_x_months:
61 61 one: "cirka en måned"
62 62 other: "cirka %{count} måneder"
63 63 x_months:
64 64 one: "en måned"
65 65 other: "%{count} måneder"
66 66 about_x_years:
67 67 one: "cirka et år"
68 68 other: "cirka %{count} år"
69 69 over_x_years:
70 70 one: "mere end et år"
71 71 other: "mere end %{count} år"
72 72 almost_x_years:
73 73 one: "næsten 1 år"
74 74 other: "næsten %{count} år"
75 75
76 76 number:
77 77 format:
78 78 separator: ","
79 79 delimiter: "."
80 80 precision: 3
81 81 currency:
82 82 format:
83 83 format: "%u %n"
84 84 unit: "DKK"
85 85 separator: ","
86 86 delimiter: "."
87 87 precision: 2
88 88 precision:
89 89 format:
90 90 # separator:
91 91 delimiter: ""
92 92 # precision:
93 93 human:
94 94 format:
95 95 # separator:
96 96 delimiter: ""
97 97 precision: 3
98 98 storage_units:
99 99 format: "%n %u"
100 100 units:
101 101 byte:
102 102 one: "Byte"
103 103 other: "Bytes"
104 104 kb: "KB"
105 105 mb: "MB"
106 106 gb: "GB"
107 107 tb: "TB"
108 108 percentage:
109 109 format:
110 110 # separator:
111 111 delimiter: ""
112 112 # precision:
113 113
114 114 activerecord:
115 115 errors:
116 116 template:
117 117 header:
118 118 one: "1 error prohibited this %{model} from being saved"
119 119 other: "%{count} errors prohibited this %{model} from being saved"
120 120 messages:
121 121 inclusion: "er ikke i listen"
122 122 exclusion: "er reserveret"
123 123 invalid: "er ikke gyldig"
124 124 confirmation: "stemmer ikke overens"
125 125 accepted: "skal accepteres"
126 126 empty: "må ikke udelades"
127 127 blank: "skal udfyldes"
128 128 too_long: "er for lang (højst %{count} tegn)"
129 129 too_short: "er for kort (mindst %{count} tegn)"
130 130 wrong_length: "har forkert længde (skulle være %{count} tegn)"
131 131 taken: "er allerede anvendt"
132 132 not_a_number: "er ikke et tal"
133 133 greater_than: "skal være større end %{count}"
134 134 greater_than_or_equal_to: "skal være større end eller lig med %{count}"
135 135 equal_to: "skal være lig med %{count}"
136 136 less_than: "skal være mindre end %{count}"
137 137 less_than_or_equal_to: "skal være mindre end eller lig med %{count}"
138 138 odd: "skal være ulige"
139 139 even: "skal være lige"
140 140 greater_than_start_date: "skal være senere end startdatoen"
141 141 not_same_project: "hører ikke til samme projekt"
142 142 circular_dependency: "Denne relation vil skabe et afhængighedsforhold"
143 143 cant_link_an_issue_with_a_descendant: "En sag kan ikke relateres til en af dens underopgaver"
144 144 earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues"
145 145
146 146 template:
147 147 header:
148 148 one: "En fejl forhindrede %{model} i at blive gemt"
149 149 other: "%{count} fejl forhindrede denne %{model} i at blive gemt"
150 150 body: "Der var problemer med følgende felter:"
151 151
152 152 actionview_instancetag_blank_option: Vælg venligst
153 153
154 154 general_text_No: 'Nej'
155 155 general_text_Yes: 'Ja'
156 156 general_text_no: 'nej'
157 157 general_text_yes: 'ja'
158 158 general_lang_name: 'Danish (Dansk)'
159 159 general_csv_separator: ','
160 160 general_csv_encoding: ISO-8859-1
161 161 general_pdf_fontname: freesans
162 162 general_pdf_monospaced_fontname: freemono
163 163 general_first_day_of_week: '1'
164 164
165 165 notice_account_updated: Kontoen er opdateret.
166 166 notice_account_invalid_creditentials: Ugyldig bruger og/eller kodeord
167 167 notice_account_password_updated: Kodeordet er opdateret.
168 168 notice_account_wrong_password: Forkert kodeord
169 169 notice_account_register_done: Kontoen er oprettet. For at aktivere kontoen skal du klikke på linket i den tilsendte email.
170 170 notice_account_unknown_email: Ukendt bruger.
171 171 notice_can_t_change_password: Denne konto benytter en ekstern sikkerhedsgodkendelse. Det er ikke muligt at skifte kodeord.
172 172 notice_account_lost_email_sent: En email med instruktioner til at vælge et nyt kodeord er afsendt til dig.
173 173 notice_account_activated: Din konto er aktiveret. Du kan nu logge ind.
174 174 notice_successful_create: Succesfuld oprettelse.
175 175 notice_successful_update: Succesfuld opdatering.
176 176 notice_successful_delete: Succesfuld sletning.
177 177 notice_successful_connection: Succesfuld forbindelse.
178 178 notice_file_not_found: Siden du forsøger at tilgå eksisterer ikke eller er blevet fjernet.
179 179 notice_locking_conflict: Data er opdateret af en anden bruger.
180 180 notice_not_authorized: Du har ikke adgang til denne side.
181 181 notice_email_sent: "En email er sendt til %{value}"
182 182 notice_email_error: "En fejl opstod under afsendelse af email (%{value})"
183 183 notice_feeds_access_key_reseted: Din adgangsnøgle til Atom er nulstillet.
184 184 notice_failed_to_save_issues: "Det mislykkedes at gemme %{count} sage(r) %{total} valgt: %{ids}."
185 185 notice_no_issue_selected: "Ingen sag er valgt! Vælg venligst hvilke emner du vil rette."
186 186 notice_account_pending: "Din konto er oprettet, og afventer administrators godkendelse."
187 187 notice_default_data_loaded: Standardopsætningen er indlæst.
188 188
189 189 error_can_t_load_default_data: "Standardopsætning kunne ikke indlæses: %{value}"
190 190 error_scm_not_found: "Adgang nægtet og/eller revision blev ikke fundet i det valgte repository."
191 191 error_scm_command_failed: "En fejl opstod under forbindelsen til det valgte repository: %{value}"
192 192
193 193 mail_subject_lost_password: "Dit %{value} kodeord"
194 194 mail_body_lost_password: 'Klik dette link for at ændre dit kodeord:'
195 195 mail_subject_register: "%{value} kontoaktivering"
196 196 mail_body_register: 'Klik dette link for at aktivere din konto:'
197 197 mail_body_account_information_external: "Du kan bruge din %{value} konto til at logge ind."
198 198 mail_body_account_information: Din kontoinformation
199 199 mail_subject_account_activation_request: "%{value} kontoaktivering"
200 200 mail_body_account_activation_request: "En ny bruger (%{value}) er registreret. Godkend venligst kontoen:"
201 201
202 202
203 203 field_name: Navn
204 204 field_description: Beskrivelse
205 205 field_summary: Sammenfatning
206 206 field_is_required: Skal udfyldes
207 207 field_firstname: Fornavn
208 208 field_lastname: Efternavn
209 209 field_mail: Email
210 210 field_filename: Fil
211 211 field_filesize: Størrelse
212 212 field_downloads: Downloads
213 213 field_author: Forfatter
214 214 field_created_on: Oprettet
215 215 field_updated_on: Opdateret
216 216 field_field_format: Format
217 217 field_is_for_all: For alle projekter
218 218 field_possible_values: Mulige værdier
219 219 field_regexp: Regulære udtryk
220 220 field_min_length: Mindste længde
221 221 field_max_length: Største længde
222 222 field_value: Værdi
223 223 field_category: Kategori
224 224 field_title: Titel
225 225 field_project: Projekt
226 226 field_issue: Sag
227 227 field_status: Status
228 228 field_notes: Noter
229 229 field_is_closed: Sagen er lukket
230 230 field_is_default: Standardværdi
231 231 field_tracker: Type
232 232 field_subject: Emne
233 233 field_due_date: Deadline
234 234 field_assigned_to: Tildelt til
235 235 field_priority: Prioritet
236 236 field_fixed_version: Udgave
237 237 field_user: Bruger
238 238 field_role: Rolle
239 239 field_homepage: Hjemmeside
240 240 field_is_public: Offentlig
241 241 field_parent: Underprojekt af
242 242 field_is_in_roadmap: Sager vist i roadmap
243 243 field_login: Login
244 244 field_mail_notification: Email-påmindelser
245 245 field_admin: Administrator
246 246 field_last_login_on: Sidste forbindelse
247 247 field_language: Sprog
248 248 field_effective_date: Dato
249 249 field_password: Kodeord
250 250 field_new_password: Nyt kodeord
251 251 field_password_confirmation: Bekræft
252 252 field_version: Version
253 253 field_type: Type
254 254 field_host: Vært
255 255 field_port: Port
256 256 field_account: Kode
257 257 field_base_dn: Base DN
258 258 field_attr_login: Login attribut
259 259 field_attr_firstname: Fornavn attribut
260 260 field_attr_lastname: Efternavn attribut
261 261 field_attr_mail: Email attribut
262 262 field_onthefly: løbende brugeroprettelse
263 263 field_start_date: Start dato
264 264 field_done_ratio: "% færdig"
265 265 field_auth_source: Sikkerhedsmetode
266 266 field_hide_mail: Skjul min email
267 267 field_comments: Kommentar
268 268 field_url: URL
269 269 field_start_page: Startside
270 270 field_subproject: Underprojekt
271 271 field_hours: Timer
272 272 field_activity: Aktivitet
273 273 field_spent_on: Dato
274 274 field_identifier: Identifikator
275 275 field_is_filter: Brugt som et filter
276 276 field_issue_to: Beslægtede sag
277 277 field_delay: Udsættelse
278 278 field_assignable: Sager kan tildeles denne rolle
279 279 field_redirect_existing_links: Videresend eksisterende links
280 280 field_estimated_hours: Anslået tid
281 281 field_column_names: Kolonner
282 282 field_time_zone: Tidszone
283 283 field_searchable: Søgbar
284 284 field_default_value: Standardværdi
285 285
286 286 setting_app_title: Applikationstitel
287 287 setting_app_subtitle: Applikationsundertekst
288 288 setting_welcome_text: Velkomsttekst
289 289 setting_default_language: Standardsporg
290 290 setting_login_required: Sikkerhed påkrævet
291 291 setting_self_registration: Brugeroprettelse
292 292 setting_attachment_max_size: Vedhæftede filers max størrelse
293 293 setting_issues_export_limit: Sagseksporteringsbegrænsning
294 294 setting_mail_from: Afsender-email
295 295 setting_bcc_recipients: Skjult modtager (bcc)
296 296 setting_host_name: Værtsnavn
297 297 setting_text_formatting: Tekstformatering
298 298 setting_wiki_compression: Komprimering af wiki-historik
299 299 setting_feeds_limit: Feed indholdsbegrænsning
300 300 setting_autofetch_changesets: Hent automatisk commits
301 301 setting_sys_api_enabled: Aktiver webservice for automatisk administration af repository
302 302 setting_commit_ref_keywords: Referencenøgleord
303 303 setting_commit_fix_keywords: Afslutningsnøgleord
304 304 setting_autologin: Automatisk login
305 305 setting_date_format: Datoformat
306 306 setting_time_format: Tidsformat
307 307 setting_cross_project_issue_relations: Tillad sagsrelationer på tværs af projekter
308 308 setting_issue_list_default_columns: Standardkolonner på sagslisten
309 309 setting_emails_footer: Email-fodnote
310 310 setting_protocol: Protokol
311 311 setting_user_format: Brugervisningsformat
312 312
313 313 project_module_issue_tracking: Sagssøgning
314 314 project_module_time_tracking: Tidsstyring
315 315 project_module_news: Nyheder
316 316 project_module_documents: Dokumenter
317 317 project_module_files: Filer
318 318 project_module_wiki: Wiki
319 319 project_module_repository: Repository
320 320 project_module_boards: Fora
321 321
322 322 label_user: Bruger
323 323 label_user_plural: Brugere
324 324 label_user_new: Ny bruger
325 325 label_project: Projekt
326 326 label_project_new: Nyt projekt
327 327 label_project_plural: Projekter
328 328 label_x_projects:
329 329 zero: Ingen projekter
330 330 one: 1 projekt
331 331 other: "%{count} projekter"
332 332 label_project_all: Alle projekter
333 333 label_project_latest: Seneste projekter
334 334 label_issue: Sag
335 335 label_issue_new: Opret sag
336 336 label_issue_plural: Sager
337 337 label_issue_view_all: Vis alle sager
338 338 label_issues_by: "Sager fra %{value}"
339 339 label_issue_added: Sagen er oprettet
340 340 label_issue_updated: Sagen er opdateret
341 341 label_document: Dokument
342 342 label_document_new: Nyt dokument
343 343 label_document_plural: Dokumenter
344 344 label_document_added: Dokument tilføjet
345 345 label_role: Rolle
346 346 label_role_plural: Roller
347 347 label_role_new: Ny rolle
348 348 label_role_and_permissions: Roller og rettigheder
349 349 label_member: Medlem
350 350 label_member_new: Nyt medlem
351 351 label_member_plural: Medlemmer
352 352 label_tracker: Type
353 353 label_tracker_plural: Typer
354 354 label_tracker_new: Ny type
355 355 label_workflow: Arbejdsgang
356 356 label_issue_status: Sagsstatus
357 357 label_issue_status_plural: Sagsstatusser
358 358 label_issue_status_new: Ny status
359 359 label_issue_category: Sagskategori
360 360 label_issue_category_plural: Sagskategorier
361 361 label_issue_category_new: Ny kategori
362 362 label_custom_field: Brugerdefineret felt
363 363 label_custom_field_plural: Brugerdefinerede felter
364 364 label_custom_field_new: Nyt brugerdefineret felt
365 365 label_enumerations: Værdier
366 366 label_enumeration_new: Ny værdi
367 367 label_information: Information
368 368 label_information_plural: Information
369 369 label_please_login: Login
370 370 label_register: Registrér
371 371 label_password_lost: Glemt kodeord
372 372 label_home: Forside
373 373 label_my_page: Min side
374 374 label_my_account: Min konto
375 375 label_my_projects: Mine projekter
376 376 label_administration: Administration
377 377 label_login: Log ind
378 378 label_logout: Log ud
379 379 label_help: Hjælp
380 380 label_reported_issues: Rapporterede sager
381 381 label_assigned_to_me_issues: Sager tildelt til mig
382 382 label_last_login: Sidste logintidspunkt
383 383 label_registered_on: Registreret den
384 384 label_activity: Aktivitet
385 385 label_new: Ny
386 386 label_logged_as: Registreret som
387 387 label_environment: Miljø
388 388 label_authentication: Sikkerhed
389 389 label_auth_source: Sikkerhedsmetode
390 390 label_auth_source_new: Ny sikkerhedsmetode
391 391 label_auth_source_plural: Sikkerhedsmetoder
392 392 label_subproject_plural: Underprojekter
393 393 label_min_max_length: Min - Max længde
394 394 label_list: Liste
395 395 label_date: Dato
396 396 label_integer: Heltal
397 397 label_float: Kommatal
398 398 label_boolean: Sand/falsk
399 399 label_string: Tekst
400 400 label_text: Lang tekst
401 401 label_attribute: Attribut
402 402 label_attribute_plural: Attributter
403 403 label_no_data: Ingen data at vise
404 404 label_change_status: Ændringsstatus
405 405 label_history: Historik
406 406 label_attachment: Fil
407 407 label_attachment_new: Ny fil
408 408 label_attachment_delete: Slet fil
409 409 label_attachment_plural: Filer
410 410 label_file_added: Fil tilføjet
411 411 label_report: Rapport
412 412 label_report_plural: Rapporter
413 413 label_news: Nyheder
414 414 label_news_new: Tilføj nyheder
415 415 label_news_plural: Nyheder
416 416 label_news_latest: Seneste nyheder
417 417 label_news_view_all: Vis alle nyheder
418 418 label_news_added: Nyhed tilføjet
419 419 label_settings: Indstillinger
420 420 label_overview: Oversigt
421 421 label_version: Udgave
422 422 label_version_new: Ny udgave
423 423 label_version_plural: Udgaver
424 424 label_confirmation: Bekræftelser
425 425 label_export_to: Eksporter til
426 426 label_read: Læs...
427 427 label_public_projects: Offentlige projekter
428 428 label_open_issues: åben
429 429 label_open_issues_plural: åbne
430 430 label_closed_issues: lukket
431 431 label_closed_issues_plural: lukkede
432 432 label_x_open_issues_abbr:
433 433 zero: 0 åbne
434 434 one: 1 åben
435 435 other: "%{count} åbne"
436 436 label_x_closed_issues_abbr:
437 437 zero: 0 lukkede
438 438 one: 1 lukket
439 439 other: "%{count} lukkede"
440 440 label_total: Total
441 441 label_permissions: Rettigheder
442 442 label_current_status: Nuværende status
443 443 label_new_statuses_allowed: Ny status tilladt
444 444 label_all: alle
445 445 label_none: intet
446 446 label_nobody: ingen
447 447 label_next: Næste
448 448 label_previous: Forrige
449 449 label_used_by: Brugt af
450 450 label_details: Detaljer
451 451 label_add_note: Tilføj note
452 452 label_calendar: Kalender
453 453 label_months_from: måneder frem
454 454 label_gantt: Gantt
455 455 label_internal: Intern
456 456 label_last_changes: "sidste %{count} ændringer"
457 457 label_change_view_all: Vis alle ændringer
458 458 label_personalize_page: Tilret denne side
459 459 label_comment: Kommentar
460 460 label_comment_plural: Kommentarer
461 461 label_x_comments:
462 462 zero: ingen kommentarer
463 463 one: 1 kommentar
464 464 other: "%{count} kommentarer"
465 465 label_comment_add: Tilføj en kommentar
466 466 label_comment_added: Kommentaren er tilføjet
467 467 label_comment_delete: Slet kommentar
468 468 label_query: Brugerdefineret forespørgsel
469 469 label_query_plural: Brugerdefinerede forespørgsler
470 470 label_query_new: Ny forespørgsel
471 471 label_filter_add: Tilføj filter
472 472 label_filter_plural: Filtre
473 473 label_equals: er
474 474 label_not_equals: er ikke
475 475 label_in_less_than: er mindre end
476 476 label_in_more_than: er større end
477 477 label_in: indeholdt i
478 478 label_today: i dag
479 479 label_all_time: altid
480 480 label_yesterday: i går
481 481 label_this_week: denne uge
482 482 label_last_week: sidste uge
483 483 label_last_n_days: "sidste %{count} dage"
484 484 label_this_month: denne måned
485 485 label_last_month: sidste måned
486 486 label_this_year: dette år
487 487 label_date_range: Dato interval
488 488 label_less_than_ago: mindre end dage siden
489 489 label_more_than_ago: mere end dage siden
490 490 label_ago: dage siden
491 491 label_contains: indeholder
492 492 label_not_contains: ikke indeholder
493 493 label_day_plural: dage
494 494 label_repository: Repository
495 495 label_repository_plural: Repositories
496 496 label_browse: Gennemse
497 497 label_revision: Revision
498 498 label_revision_plural: Revisioner
499 499 label_associated_revisions: Tilknyttede revisioner
500 500 label_added: tilføjet
501 501 label_modified: ændret
502 502 label_deleted: slettet
503 503 label_latest_revision: Seneste revision
504 504 label_latest_revision_plural: Seneste revisioner
505 505 label_view_revisions: Se revisioner
506 506 label_max_size: Maksimal størrelse
507 507 label_sort_highest: Flyt til toppen
508 508 label_sort_higher: Flyt op
509 509 label_sort_lower: Flyt ned
510 510 label_sort_lowest: Flyt til bunden
511 511 label_roadmap: Roadmap
512 512 label_roadmap_due_in: Deadline
513 513 label_roadmap_overdue: "%{value} forsinket"
514 514 label_roadmap_no_issues: Ingen sager i denne version
515 515 label_search: Søg
516 516 label_result_plural: Resultater
517 517 label_all_words: Alle ord
518 518 label_wiki: Wiki
519 519 label_wiki_edit: Wiki ændring
520 520 label_wiki_edit_plural: Wiki ændringer
521 521 label_wiki_page: Wiki side
522 522 label_wiki_page_plural: Wiki sider
523 523 label_index_by_title: Indhold efter titel
524 524 label_index_by_date: Indhold efter dato
525 525 label_current_version: Nuværende version
526 526 label_preview: Forhåndsvisning
527 527 label_feed_plural: Feeds
528 528 label_changes_details: Detaljer for alle ændringer
529 529 label_issue_tracking: Sagssøgning
530 530 label_spent_time: Anvendt tid
531 531 label_f_hour: "%{value} time"
532 532 label_f_hour_plural: "%{value} timer"
533 533 label_time_tracking: Tidsstyring
534 534 label_change_plural: Ændringer
535 535 label_statistics: Statistik
536 536 label_commits_per_month: Commits pr. måned
537 537 label_commits_per_author: Commits pr. bruger
538 538 label_view_diff: Vis forskelle
539 539 label_diff_inline: inline
540 540 label_diff_side_by_side: side om side
541 541 label_options: Formatering
542 542 label_copy_workflow_from: Kopier arbejdsgang fra
543 543 label_permissions_report: Godkendelsesrapport
544 544 label_watched_issues: Overvågede sager
545 545 label_related_issues: Relaterede sager
546 546 label_applied_status: Anvendte statusser
547 547 label_loading: Indlæser...
548 548 label_relation_new: Ny relation
549 549 label_relation_delete: Slet relation
550 550 label_relates_to: relaterer til
551 551 label_duplicates: duplikater
552 552 label_blocks: blokerer
553 553 label_blocked_by: blokeret af
554 554 label_precedes: kommer før
555 555 label_follows: følger
556 556 label_stay_logged_in: Forbliv indlogget
557 557 label_disabled: deaktiveret
558 558 label_show_completed_versions: Vis færdige versioner
559 559 label_me: mig
560 560 label_board: Forum
561 561 label_board_new: Nyt forum
562 562 label_board_plural: Fora
563 563 label_topic_plural: Emner
564 564 label_message_plural: Beskeder
565 565 label_message_last: Sidste besked
566 566 label_message_new: Ny besked
567 567 label_message_posted: Besked tilføjet
568 568 label_reply_plural: Besvarer
569 569 label_send_information: Send konto information til bruger
570 570 label_year: År
571 571 label_month: Måned
572 572 label_week: Uge
573 573 label_date_from: Fra
574 574 label_date_to: Til
575 575 label_language_based: Baseret på brugerens sprog
576 576 label_sort_by: "Sortér efter %{value}"
577 577 label_send_test_email: Send en test email
578 578 label_feeds_access_key_created_on: "Atom adgangsnøgle dannet for %{value} siden"
579 579 label_module_plural: Moduler
580 580 label_added_time_by: "Tilføjet af %{author} for %{age} siden"
581 581 label_updated_time: "Opdateret for %{value} siden"
582 582 label_jump_to_a_project: Skift til projekt...
583 583 label_file_plural: Filer
584 584 label_changeset_plural: Ændringer
585 585 label_default_columns: Standardkolonner
586 586 label_no_change_option: (Ingen ændringer)
587 587 label_bulk_edit_selected_issues: Masse-ret de valgte sager
588 588 label_theme: Tema
589 589 label_default: standard
590 590 label_search_titles_only: Søg kun i titler
591 591 label_user_mail_option_all: "For alle hændelser mine projekter"
592 592 label_user_mail_option_selected: "For alle hændelser de valgte projekter..."
593 593 label_user_mail_no_self_notified: "Jeg ønsker ikke besked om ændring foretaget af mig selv"
594 594 label_registration_activation_by_email: kontoaktivering på email
595 595 label_registration_manual_activation: manuel kontoaktivering
596 596 label_registration_automatic_activation: automatisk kontoaktivering
597 597 label_display_per_page: "Per side: %{value}"
598 598 label_age: Alder
599 599 label_change_properties: Ændre indstillinger
600 600 label_general: Generelt
601 601 label_more: Mere
602 602 label_scm: SCM
603 603 label_plugins: Plugins
604 604 label_ldap_authentication: LDAP-godkendelse
605 605 label_downloads_abbr: D/L
606 606
607 607 button_login: Login
608 608 button_submit: Send
609 609 button_save: Gem
610 610 button_check_all: Vælg alt
611 611 button_uncheck_all: Fravælg alt
612 612 button_delete: Slet
613 613 button_create: Opret
614 614 button_test: Test
615 615 button_edit: Ret
616 616 button_add: Tilføj
617 617 button_change: Ændre
618 618 button_apply: Anvend
619 619 button_clear: Nulstil
620 620 button_lock: Lås
621 621 button_unlock: Lås op
622 622 button_download: Download
623 623 button_list: List
624 624 button_view: Vis
625 625 button_move: Flyt
626 626 button_back: Tilbage
627 627 button_cancel: Annullér
628 628 button_activate: Aktivér
629 629 button_sort: Sortér
630 630 button_log_time: Log tid
631 631 button_rollback: Tilbagefør til denne version
632 632 button_watch: Overvåg
633 633 button_unwatch: Stop overvågning
634 634 button_reply: Besvar
635 635 button_archive: Arkivér
636 636 button_unarchive: Fjern fra arkiv
637 637 button_reset: Nulstil
638 638 button_rename: Omdøb
639 639 button_change_password: Skift kodeord
640 640 button_copy: Kopiér
641 641 button_annotate: Annotér
642 642 button_update: Opdatér
643 643 button_configure: Konfigurér
644 644
645 645 status_active: aktiv
646 646 status_registered: registreret
647 647 status_locked: låst
648 648
649 649 text_select_mail_notifications: Vælg handlinger der skal sendes email besked for.
650 650 text_regexp_info: f.eks. ^[A-ZÆØÅ0-9]+$
651 651 text_min_max_length_info: 0 betyder ingen begrænsninger
652 652 text_project_destroy_confirmation: Er du sikker på at du vil slette dette projekt og alle relaterede data?
653 653 text_workflow_edit: Vælg en rolle samt en type, for at redigere arbejdsgangen
654 654 text_are_you_sure: Er du sikker?
655 655 text_tip_issue_begin_day: opgaven begynder denne dag
656 656 text_tip_issue_end_day: opaven slutter denne dag
657 657 text_tip_issue_begin_end_day: opgaven begynder og slutter denne dag
658 658 text_caracters_maximum: "max %{count} karakterer."
659 659 text_caracters_minimum: "Skal være mindst %{count} karakterer lang."
660 660 text_length_between: "Længde skal være mellem %{min} og %{max} karakterer."
661 661 text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type
662 662 text_unallowed_characters: Ikke-tilladte karakterer
663 663 text_comma_separated: Adskillige værdier tilladt (adskilt med komma).
664 664 text_issues_ref_in_commit_messages: Referer og løser sager i commit-beskeder
665 665 text_issue_added: "Sag %{id} er rapporteret af %{author}."
666 666 text_issue_updated: "Sag %{id} er blevet opdateret af %{author}."
667 667 text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wiki og dens indhold?
668 668 text_issue_category_destroy_question: "Nogle sager (%{count}) er tildelt denne kategori. Hvad ønsker du at gøre?"
669 669 text_issue_category_destroy_assignments: Slet tildelinger af kategori
670 670 text_issue_category_reassign_to: Tildel sager til denne kategori
671 671 text_user_mail_option: "For ikke-valgte projekter vil du kun modtage beskeder omhandlende ting du er involveret i eller overvåger (f.eks. sager du har indberettet eller ejer)."
672 672 text_no_configuration_data: "Roller, typer, sagsstatusser og arbejdsgange er endnu ikke konfigureret.\nDet er anbefalet at indlæse standardopsætningen. Du vil kunne ændre denne når den er indlæst."
673 673 text_load_default_configuration: Indlæs standardopsætningen
674 674 text_status_changed_by_changeset: "Anvendt i ændring %{value}."
675 675 text_issues_destroy_confirmation: 'Er du sikker du ønsker at slette den/de valgte sag(er)?'
676 676 text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
677 677 text_default_administrator_account_changed: Standardadministratorkonto ændret
678 678 text_file_repository_writable: Filarkiv er skrivbar
679 679 text_rmagick_available: RMagick tilgængelig (valgfri)
680 680
681 681 default_role_manager: Leder
682 682 default_role_developer: Udvikler
683 683 default_role_reporter: Rapportør
684 684 default_tracker_bug: Fejl
685 685 default_tracker_feature: Funktion
686 686 default_tracker_support: Support
687 687 default_issue_status_new: Ny
688 688 default_issue_status_in_progress: Igangværende
689 689 default_issue_status_resolved: Løst
690 690 default_issue_status_feedback: Feedback
691 691 default_issue_status_closed: Lukket
692 692 default_issue_status_rejected: Afvist
693 693 default_doc_category_user: Brugerdokumentation
694 694 default_doc_category_tech: Teknisk dokumentation
695 695 default_priority_low: Lav
696 696 default_priority_normal: Normal
697 697 default_priority_high: Høj
698 698 default_priority_urgent: Akut
699 699 default_priority_immediate: Omgående
700 700 default_activity_design: Design
701 701 default_activity_development: Udvikling
702 702
703 703 enumeration_issue_priorities: Sagsprioriteter
704 704 enumeration_doc_categories: Dokumentkategorier
705 705 enumeration_activities: Aktiviteter (tidsstyring)
706 706
707 707 label_add_another_file: Tilføj endnu en fil
708 708 label_chronological_order: I kronologisk rækkefølge
709 709 setting_activity_days_default: Antal dage der vises under projektaktivitet
710 710 text_destroy_time_entries_question: "%{hours} timer er registreret denne sag som du er ved at slette. Hvad vil du gøre?"
711 711 error_issue_not_found_in_project: 'Sagen blev ikke fundet eller tilhører ikke dette projekt'
712 712 text_assign_time_entries_to_project: Tildel raporterede timer til projektet
713 713 setting_display_subprojects_issues: Vis sager for underprojekter på hovedprojektet som standard
714 714 label_optional_description: Valgfri beskrivelse
715 715 text_destroy_time_entries: Slet registrerede timer
716 716 field_comments_sorting: Vis kommentar
717 717 text_reassign_time_entries: 'Tildel registrerede timer til denne sag igen'
718 718 label_reverse_chronological_order: I omvendt kronologisk rækkefølge
719 719 label_preferences: Præferencer
720 720 label_overall_activity: Overordnet aktivitet
721 721 setting_default_projects_public: Nye projekter er offentlige som standard
722 722 error_scm_annotate: "Filen findes ikke, eller kunne ikke annoteres."
723 723 label_planning: Planlægning
724 724 text_subprojects_destroy_warning: "Dets underprojekter(er): %{value} vil også blive slettet."
725 725 permission_edit_issues: Redigér sager
726 726 setting_diff_max_lines_displayed: Højeste antal forskelle der vises
727 727 permission_edit_own_issue_notes: Redigér egne noter
728 728 setting_enabled_scm: Aktiveret SCM
729 729 button_quote: Citér
730 730 permission_view_files: Se filer
731 731 permission_add_issues: Tilføj sager
732 732 permission_edit_own_messages: Redigér egne beskeder
733 733 permission_delete_own_messages: Slet egne beskeder
734 734 permission_manage_public_queries: Administrér offentlig forespørgsler
735 735 permission_log_time: Registrér anvendt tid
736 736 label_renamed: omdøbt
737 737 label_incoming_emails: Indkommende emails
738 738 permission_view_changesets: Se ændringer
739 739 permission_manage_versions: Administrér versioner
740 740 permission_view_time_entries: Se anvendt tid
741 741 label_generate_key: Generér en nøglefil
742 742 permission_manage_categories: Administrér sagskategorier
743 743 permission_manage_wiki: Administrér wiki
744 744 setting_sequential_project_identifiers: Generér sekventielle projekt-identifikatorer
745 745 setting_plain_text_mail: Emails som almindelig tekst (ingen HTML)
746 746 field_parent_title: Siden over
747 747 text_email_delivery_not_configured: "Email-afsendelse er ikke indstillet og notifikationer er defor slået fra.\nKonfigurér din SMTP server i config/configuration.yml og genstart applikationen for at aktivere email-afsendelse."
748 748 permission_protect_wiki_pages: Beskyt wiki sider
749 749 permission_add_issue_watchers: Tilføj overvågere
750 750 warning_attachments_not_saved: "der var %{count} fil(er), som ikke kunne gemmes."
751 751 permission_comment_news: Kommentér nyheder
752 752 text_enumeration_category_reassign_to: 'Flyt dem til denne værdi:'
753 753 permission_select_project_modules: Vælg projektmoduler
754 754 permission_view_gantt: Se Gantt diagram
755 755 permission_delete_messages: Slet beskeder
756 756 permission_move_issues: Flyt sager
757 757 permission_edit_wiki_pages: Redigér wiki sider
758 758 label_user_activity: "%{value}'s aktivitet"
759 759 permission_manage_issue_relations: Administrér sags-relationer
760 760 label_issue_watchers: Overvågere
761 761 permission_delete_wiki_pages: Slet wiki sider
762 762 notice_unable_delete_version: Kan ikke slette versionen.
763 763 permission_view_wiki_edits: Se wiki historik
764 764 field_editable: Redigérbar
765 765 label_duplicated_by: dubleret af
766 766 permission_manage_boards: Administrér fora
767 767 permission_delete_wiki_pages_attachments: Slet filer vedhæftet wiki sider
768 768 permission_view_messages: Se beskeder
769 769 text_enumeration_destroy_question: "%{count} objekter er tildelt denne værdi."
770 770 permission_manage_files: Administrér filer
771 771 permission_add_messages: Opret beskeder
772 772 permission_edit_issue_notes: Redigér noter
773 773 permission_manage_news: Administrér nyheder
774 774 text_plugin_assets_writable: Der er skriverettigheder til plugin assets folderen
775 775 label_display: Vis
776 776 label_and_its_subprojects: "%{value} og dets underprojekter"
777 777 permission_view_calendar: Se kalender
778 778 button_create_and_continue: Opret og fortsæt
779 779 setting_gravatar_enabled: Anvend Gravatar brugerikoner
780 780 label_updated_time_by: "Opdateret af %{author} for %{age} siden"
781 781 text_diff_truncated: '... Listen over forskelle er blevet afkortet da den overstiger den maksimale størrelse der kan vises.'
782 782 text_user_wrote: "%{value} skrev:"
783 783 setting_mail_handler_api_enabled: Aktiver webservice for indkomne emails
784 784 permission_delete_issues: Slet sager
785 785 permission_view_documents: Se dokumenter
786 786 permission_browse_repository: Gennemse repository
787 787 permission_manage_repository: Administrér repository
788 788 permission_manage_members: Administrér medlemmer
789 789 mail_subject_reminder: "%{count} sag(er) har deadline i de kommende dage (%{days})"
790 790 permission_add_issue_notes: Tilføj noter
791 791 permission_edit_messages: Redigér beskeder
792 792 permission_view_issue_watchers: Se liste over overvågere
793 793 permission_commit_access: Commit adgang
794 794 setting_mail_handler_api_key: API nøgle
795 795 label_example: Eksempel
796 796 permission_rename_wiki_pages: Omdøb wiki sider
797 797 text_custom_field_possible_values_info: 'En linje for hver værdi'
798 798 permission_view_wiki_pages: Se wiki
799 799 permission_edit_project: Redigér projekt
800 800 permission_save_queries: Gem forespørgsler
801 801 label_copied: kopieret
802 802 text_repository_usernames_mapping: "Vælg eller opdatér de Redmine brugere der svarer til de enkelte brugere fundet i repository loggen.\nBrugere med samme brugernavn eller email adresse i både Redmine og det valgte repository bliver automatisk koblet sammen."
803 803 permission_edit_time_entries: Redigér tidsregistreringer
804 804 general_csv_decimal_separator: ','
805 805 permission_edit_own_time_entries: Redigér egne tidsregistreringer
806 806 setting_repository_log_display_limit: Højeste antal revisioner vist i fil-log
807 807 setting_file_max_size_displayed: Maksimale størrelse på tekstfiler vist inline
808 808 field_watcher: Overvåger
809 809 setting_openid: Tillad OpenID login og registrering
810 810 field_identity_url: OpenID URL
811 811 label_login_with_open_id_option: eller login med OpenID
812 812 setting_per_page_options: Enheder per side muligheder
813 813 mail_body_reminder: "%{count} sage(er) som er tildelt dig har deadline indenfor de næste %{days} dage:"
814 814 field_content: Indhold
815 815 label_descending: Aftagende
816 816 label_sort: Sortér
817 817 label_ascending: Tiltagende
818 818 label_date_from_to: Fra %{start} til %{end}
819 819 label_greater_or_equal: ">="
820 820 label_less_or_equal: <=
821 821 text_wiki_page_destroy_question: Denne side har %{descendants} underside(r) og afledte. Hvad vil du gøre?
822 822 text_wiki_page_reassign_children: Flyt undersider til denne side
823 823 text_wiki_page_nullify_children: Behold undersider som rod-sider
824 824 text_wiki_page_destroy_children: Slet undersider ogalle deres afledte sider.
825 825 setting_password_min_length: Mindste længde på kodeord
826 826 field_group_by: Gruppér resultater efter
827 827 mail_subject_wiki_content_updated: "'%{id}' wikisiden er blevet opdateret"
828 828 label_wiki_content_added: Wiki side tilføjet
829 829 mail_subject_wiki_content_added: "'%{id}' wikisiden er blevet tilføjet"
830 830 mail_body_wiki_content_added: The '%{id}' wikiside er blevet tilføjet af %{author}.
831 831 label_wiki_content_updated: Wikiside opdateret
832 832 mail_body_wiki_content_updated: Wikisiden '%{id}' er blevet opdateret af %{author}.
833 833 permission_add_project: Opret projekt
834 834 setting_new_project_user_role_id: Denne rolle gives til en bruger, som ikke er administrator, og som opretter et projekt
835 835 label_view_all_revisions: Se alle revisioner
836 836 label_tag: Tag
837 837 label_branch: Branch
838 838 error_no_tracker_in_project: Der er ingen sagshåndtering for dette projekt. Kontrollér venligst projektindstillingerne.
839 839 error_no_default_issue_status: Der er ikke defineret en standardstatus. Kontrollér venligst indstillingerne (gå til "Administration -> Sagsstatusser").
840 840 text_journal_changed: "%{label} ændret fra %{old} til %{new}"
841 841 text_journal_set_to: "%{label} sat til %{value}"
842 842 text_journal_deleted: "%{label} slettet (%{old})"
843 843 label_group_plural: Grupper
844 844 label_group: Grupper
845 845 label_group_new: Ny gruppe
846 846 label_time_entry_plural: Anvendt tid
847 847 text_journal_added: "%{label} %{value} tilføjet"
848 848 field_active: Aktiv
849 849 enumeration_system_activity: System Aktivitet
850 850 permission_delete_issue_watchers: Slet overvågere
851 851 version_status_closed: lukket
852 852 version_status_locked: låst
853 853 version_status_open: åben
854 854 error_can_not_reopen_issue_on_closed_version: En sag tildelt en lukket version kan ikke genåbnes
855 855 label_user_anonymous: Anonym
856 856 button_move_and_follow: Flyt og overvåg
857 857 setting_default_projects_modules: Standard moduler, aktiveret for nye projekter
858 858 setting_gravatar_default: Standard Gravatar billede
859 859 field_sharing: Delning
860 860 label_version_sharing_hierarchy: Med projekthierarki
861 861 label_version_sharing_system: Med alle projekter
862 862 label_version_sharing_descendants: Med underprojekter
863 863 label_version_sharing_tree: Med projekttræ
864 864 label_version_sharing_none: Ikke delt
865 865 error_can_not_archive_project: Dette projekt kan ikke arkiveres
866 866 button_duplicate: Duplikér
867 867 button_copy_and_follow: Kopiér og overvåg
868 868 label_copy_source: Kilde
869 869 setting_issue_done_ratio: Beregn sagsløsning ratio
870 870 setting_issue_done_ratio_issue_status: Benyt sagsstatus
871 871 error_issue_done_ratios_not_updated: Sagsløsnings ratio, ikke opdateret.
872 872 error_workflow_copy_target: Vælg venligst måltracker og rolle(r)
873 873 setting_issue_done_ratio_issue_field: Benyt sagsfelt
874 874 label_copy_same_as_target: Samme som mål
875 875 label_copy_target: Mål
876 876 notice_issue_done_ratios_updated: Sagsløsningsratio opdateret.
877 877 error_workflow_copy_source: Vælg venligst en kildetracker eller rolle
878 878 label_update_issue_done_ratios: Opdater sagsløsningsratio
879 879 setting_start_of_week: Start kalendre på
880 880 permission_view_issues: Vis sager
881 881 label_display_used_statuses_only: Vis kun statusser der er benyttet af denne tracker
882 882 label_revision_id: Revision %{value}
883 883 label_api_access_key: API nøgle
884 884 label_api_access_key_created_on: API nøgle genereret %{value} siden
885 885 label_feeds_access_key: Atom nøgle
886 886 notice_api_access_key_reseted: Din API nøgle er nulstillet.
887 887 setting_rest_api_enabled: Aktiver REST web service
888 888 label_missing_api_access_key: Mangler en API nøgle
889 889 label_missing_feeds_access_key: Mangler en Atom nøgle
890 890 button_show: Vis
891 891 text_line_separated: Flere væredier tilladt (en linje for hver værdi).
892 892 setting_mail_handler_body_delimiters: Trunkér emails efter en af disse linjer
893 893 permission_add_subprojects: Lav underprojekter
894 894 label_subproject_new: Nyt underprojekt
895 895 text_own_membership_delete_confirmation: |-
896 896 Du er ved at fjerne en eller flere af dine rettigheder, og kan muligvis ikke redigere projektet bagefter.
897 897 Er du sikker på du ønsker at fortsætte?
898 898 label_close_versions: Luk færdige versioner
899 899 label_board_sticky: Klistret
900 900 label_board_locked: Låst
901 901 permission_export_wiki_pages: Eksporter wiki sider
902 902 setting_cache_formatted_text: Cache formatteret tekst
903 903 permission_manage_project_activities: Administrer projektaktiviteter
904 904 error_unable_delete_issue_status: Det var ikke muligt at slette sagsstatus
905 905 label_profile: Profil
906 906 permission_manage_subtasks: Administrer underopgaver
907 907 field_parent_issue: Hovedopgave
908 908 label_subtask_plural: Underopgaver
909 909 label_project_copy_notifications: Send email notifikationer, mens projektet kopieres
910 910 error_can_not_delete_custom_field: Kan ikke slette brugerdefineret felt
911 911 error_unable_to_connect: Kan ikke forbinde (%{value})
912 912 error_can_not_remove_role: Denne rolle er i brug og kan ikke slettes.
913 913 error_can_not_delete_tracker: Denne type indeholder sager og kan ikke slettes.
914 914 field_principal: Principal
915 915 label_my_page_block: blok
916 916 notice_failed_to_save_members: "Fejl under lagring af medlem(mer): %{errors}."
917 917 text_zoom_out: Zoom ud
918 918 text_zoom_in: Zoom ind
919 919 notice_unable_delete_time_entry: Kan ikke slette tidsregistrering.
920 920 label_overall_spent_time: Overordnet forbrug af tid
921 921 field_time_entries: Log tid
922 922 project_module_gantt: Gantt
923 923 project_module_calendar: Kalender
924 924 button_edit_associated_wikipage: "Redigér tilknyttet Wiki side: %{page_title}"
925 925 field_text: Tekstfelt
926 926 label_user_mail_option_only_owner: Kun for ting jeg er ejer af
927 927 setting_default_notification_option: Standardpåmindelsesmulighed
928 928 label_user_mail_option_only_my_events: Kun for ting jeg overvåger eller er involveret i
929 929 label_user_mail_option_only_assigned: Kun for ting jeg er tildelt
930 930 label_user_mail_option_none: Ingen hændelser
931 931 field_member_of_group: Medlem af gruppe
932 932 field_assigned_to_role: Medlem af rolle
933 933 notice_not_authorized_archived_project: Projektet du prøver at tilgå, er blevet arkiveret.
934 934 label_principal_search: "Søg efter bruger eller gruppe:"
935 935 label_user_search: "Søg efter bruger:"
936 936 field_visible: Synlig
937 937 setting_commit_logtime_activity_id: Aktivitet for registreret tid
938 938 text_time_logged_by_changeset: Anvendt i changeset %{value}.
939 939 setting_commit_logtime_enabled: Aktiver tidsregistrering
940 940 notice_gantt_chart_truncated: Kortet er blevet afkortet, fordi det overstiger det maksimale antal elementer, der kan vises (%{max})
941 941 setting_gantt_items_limit: Maksimalt antal af elementer der kan vises på gantt kortet
942 942
943 943 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
944 944 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
945 945 label_my_queries: My custom queries
946 946 text_journal_changed_no_detail: "%{label} updated"
947 947 label_news_comment_added: Comment added to a news
948 948 button_expand_all: Expand all
949 949 button_collapse_all: Collapse all
950 950 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
951 951 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
952 952 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
953 953 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
954 954 label_role_anonymous: Anonymous
955 955 label_role_non_member: Non member
956 956 label_issue_note_added: Note added
957 957 label_issue_status_updated: Status updated
958 958 label_issue_priority_updated: Priority updated
959 959 label_issues_visibility_own: Issues created by or assigned to the user
960 960 field_issues_visibility: Issues visibility
961 961 label_issues_visibility_all: All issues
962 962 permission_set_own_issues_private: Set own issues public or private
963 963 field_is_private: Private
964 964 permission_set_issues_private: Set issues public or private
965 965 label_issues_visibility_public: All non private issues
966 966 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
967 967 field_commit_logs_encoding: Kodning af Commit beskeder
968 968 field_scm_path_encoding: Path encoding
969 969 text_scm_path_encoding_note: "Default: UTF-8"
970 970 field_path_to_repository: Path to repository
971 971 field_root_directory: Root directory
972 972 field_cvs_module: Module
973 973 field_cvsroot: CVSROOT
974 974 text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo)
975 975 text_scm_command: Command
976 976 text_scm_command_version: Version
977 977 label_git_report_last_commit: Report last commit for files and directories
978 978 notice_issue_successful_create: Issue %{id} created.
979 979 label_between: between
980 980 setting_issue_group_assignment: Allow issue assignment to groups
981 981 label_diff: diff
982 982 text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo)
983 983 description_query_sort_criteria_direction: Sort direction
984 984 description_project_scope: Search scope
985 985 description_filter: Filter
986 986 description_user_mail_notification: Mail notification settings
987 987 description_date_from: Enter start date
988 988 description_message_content: Message content
989 989 description_available_columns: Available Columns
990 990 description_date_range_interval: Choose range by selecting start and end date
991 991 description_issue_category_reassign: Choose issue category
992 992 description_search: Searchfield
993 993 description_notes: Notes
994 994 description_date_range_list: Choose range from list
995 995 description_choose_project: Projects
996 996 description_date_to: Enter end date
997 997 description_query_sort_criteria_attribute: Sort attribute
998 998 description_wiki_subpages_reassign: Choose new parent page
999 999 description_selected_columns: Selected Columns
1000 1000 label_parent_revision: Parent
1001 1001 label_child_revision: Child
1002 1002 error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size.
1003 1003 setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
1004 1004 button_edit_section: Edit this section
1005 1005 setting_repositories_encodings: Attachments and repositories encodings
1006 1006 description_all_columns: All Columns
1007 1007 button_export: Export
1008 1008 label_export_options: "%{export_format} export options"
1009 1009 error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})
1010 1010 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
1011 1011 label_x_issues:
1012 1012 zero: 0 sag
1013 1013 one: 1 sag
1014 1014 other: "%{count} sager"
1015 1015 label_repository_new: New repository
1016 1016 field_repository_is_default: Main repository
1017 1017 label_copy_attachments: Copy attachments
1018 1018 label_item_position: "%{position}/%{count}"
1019 1019 label_completed_versions: Completed versions
1020 1020 text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1021 1021 field_multiple: Multiple values
1022 1022 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
1023 1023 text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
1024 1024 text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
1025 1025 notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
1026 1026 text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
1027 1027 permission_manage_related_issues: Manage related issues
1028 1028 field_auth_source_ldap_filter: LDAP filter
1029 1029 label_search_for_watchers: Search for watchers to add
1030 1030 notice_account_deleted: Your account has been permanently deleted.
1031 1031 setting_unsubscribe: Allow users to delete their own account
1032 1032 button_delete_my_account: Delete my account
1033 1033 text_account_destroy_confirmation: |-
1034 1034 Are you sure you want to proceed?
1035 1035 Your account will be permanently deleted, with no way to reactivate it.
1036 1036 error_session_expired: Your session has expired. Please login again.
1037 1037 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1038 1038 setting_session_lifetime: Session maximum lifetime
1039 1039 setting_session_timeout: Session inactivity timeout
1040 1040 label_session_expiration: Session expiration
1041 1041 permission_close_project: Close / reopen the project
1042 1042 label_show_closed_projects: View closed projects
1043 1043 button_close: Close
1044 1044 button_reopen: Reopen
1045 1045 project_status_active: active
1046 1046 project_status_closed: closed
1047 1047 project_status_archived: archived
1048 1048 text_project_closed: This project is closed and read-only.
1049 1049 notice_user_successful_create: User %{id} created.
1050 1050 field_core_fields: Standard fields
1051 1051 field_timeout: Timeout (in seconds)
1052 1052 setting_thumbnails_enabled: Display attachment thumbnails
1053 1053 setting_thumbnails_size: Thumbnails size (in pixels)
1054 1054 label_status_transitions: Status transitions
1055 1055 label_fields_permissions: Fields permissions
1056 1056 label_readonly: Read-only
1057 1057 label_required: Required
1058 1058 text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1059 1059 field_board_parent: Parent forum
1060 1060 label_attribute_of_project: Project's %{name}
1061 1061 label_attribute_of_author: Author's %{name}
1062 1062 label_attribute_of_assigned_to: Assignee's %{name}
1063 1063 label_attribute_of_fixed_version: Target version's %{name}
1064 1064 label_copy_subtasks: Copy subtasks
1065 1065 label_copied_to: copied to
1066 1066 label_copied_from: copied from
1067 1067 label_any_issues_in_project: any issues in project
1068 1068 label_any_issues_not_in_project: any issues not in project
1069 1069 field_private_notes: Private notes
1070 1070 permission_view_private_notes: View private notes
1071 1071 permission_set_notes_private: Set notes as private
1072 1072 label_no_issues_in_project: no issues in project
1073 1073 label_any: alle
1074 1074 label_last_n_weeks: last %{count} weeks
1075 1075 setting_cross_project_subtasks: Allow cross-project subtasks
1076 1076 label_cross_project_descendants: Med underprojekter
1077 1077 label_cross_project_tree: Med projekttræ
1078 1078 label_cross_project_hierarchy: Med projekthierarki
1079 1079 label_cross_project_system: Med alle projekter
1080 1080 button_hide: Hide
1081 1081 setting_non_working_week_days: Non-working days
1082 1082 label_in_the_next_days: in the next
1083 1083 label_in_the_past_days: in the past
1084 1084 label_attribute_of_user: User's %{name}
1085 1085 text_turning_multiple_off: If you disable multiple values, multiple values will be
1086 1086 removed in order to preserve only one value per item.
1087 1087 label_attribute_of_issue: Issue's %{name}
1088 1088 permission_add_documents: Add documents
1089 1089 permission_edit_documents: Edit documents
1090 1090 permission_delete_documents: Delete documents
1091 1091 label_gantt_progress_line: Progress line
1092 1092 setting_jsonp_enabled: Enable JSONP support
1093 1093 field_inherit_members: Inherit members
1094 1094 field_closed_on: Closed
1095 1095 field_generate_password: Generate password
1096 1096 setting_default_projects_tracker_ids: Default trackers for new projects
1097 1097 label_total_time: Total
1098 1098 text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it.
1099 1099 text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel.
1100 1100 setting_emails_header: Email header
1101 1101 notice_account_not_activated_yet: You haven't activated your account yet. If you want
1102 1102 to receive a new activation email, please <a href="%{url}">click this link</a>.
1103 1103 notice_account_locked: Your account is locked.
1104 1104 label_hidden: Hidden
1105 1105 label_visibility_private: to me only
1106 1106 label_visibility_roles: to these roles only
1107 1107 label_visibility_public: to any users
1108 1108 field_must_change_passwd: Must change password at next logon
1109 1109 notice_new_password_must_be_different: The new password must be different from the
1110 1110 current password
1111 1111 setting_mail_handler_excluded_filenames: Exclude attachments by name
1112 1112 text_convert_available: ImageMagick convert available (optional)
1113 1113 label_link: Link
1114 1114 label_only: only
1115 1115 label_drop_down_list: drop-down list
1116 1116 label_checkboxes: checkboxes
1117 1117 label_link_values_to: Link values to URL
1118 1118 setting_force_default_language_for_anonymous: Force default language for anonymous
1119 1119 users
1120 1120 setting_force_default_language_for_loggedin: Force default language for logged-in
1121 1121 users
1122 1122 label_custom_field_select_type: Select the type of object to which the custom field
1123 1123 is to be attached
1124 1124 label_issue_assigned_to_updated: Assignee updated
1125 1125 label_check_for_updates: Check for updates
1126 1126 label_latest_compatible_version: Latest compatible version
1127 1127 label_unknown_plugin: Unknown plugin
1128 1128 label_radio_buttons: radio buttons
1129 1129 label_group_anonymous: Anonymous users
1130 1130 label_group_non_member: Non member users
1131 1131 label_add_projects: Add projects
1132 1132 field_default_status: Default status
1133 1133 text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
1134 1134 field_users_visibility: Users visibility
1135 1135 label_users_visibility_all: All active users
1136 1136 label_users_visibility_members_of_visible_projects: Members of visible projects
1137 1137 label_edit_attachments: Edit attached files
1138 1138 setting_link_copied_issue: Link issues on copy
1139 1139 label_link_copied_issue: Link copied issue
1140 1140 label_ask: Ask
1141 1141 label_search_attachments_yes: Search attachment filenames and descriptions
1142 1142 label_search_attachments_no: Do not search attachments
1143 1143 label_search_attachments_only: Search attachments only
1144 1144 label_search_open_issues_only: Open issues only
1145 1145 field_address: Email
1146 1146 setting_max_additional_emails: Maximum number of additional email addresses
1147 1147 label_email_address_plural: Emails
1148 1148 label_email_address_add: Add email address
1149 1149 label_enable_notifications: Enable notifications
1150 1150 label_disable_notifications: Disable notifications
1151 1151 setting_search_results_per_page: Search results per page
1152 1152 label_blank_value: blank
1153 1153 permission_copy_issues: Copy issues
1154 1154 error_password_expired: Your password has expired or the administrator requires you
1155 1155 to change it.
1156 1156 field_time_entries_visibility: Time logs visibility
1157 1157 setting_password_max_age: Require password change after
1158 1158 label_parent_task_attributes: Parent tasks attributes
1159 1159 label_parent_task_attributes_derived: Calculated from subtasks
1160 1160 label_parent_task_attributes_independent: Independent of subtasks
1161 1161 label_time_entries_visibility_all: All time entries
1162 1162 label_time_entries_visibility_own: Time entries created by the user
1163 1163 label_member_management: Member management
1164 1164 label_member_management_all_roles: All roles
1165 1165 label_member_management_selected_roles_only: Only these roles
1166 1166 label_password_required: Confirm your password to continue
1167 1167 label_total_spent_time: Overordnet forbrug af tid
1168 1168 notice_import_finished: All %{count} items have been imported.
1169 1169 notice_import_finished_with_errors: ! '%{count} out of %{total} items could not be
1170 1170 imported.'
1171 1171 error_invalid_file_encoding: The file is not a valid %{encoding} encoded file
1172 1172 error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the
1173 1173 settings below
1174 1174 error_can_not_read_import_file: An error occurred while reading the file to import
1175 1175 permission_import_issues: Import issues
1176 1176 label_import_issues: Import issues
1177 1177 label_select_file_to_import: Select the file to import
1178 1178 label_fields_separator: Field separator
1179 1179 label_fields_wrapper: Field wrapper
1180 1180 label_encoding: Encoding
1181 1181 label_comma_char: Comma
1182 1182 label_semi_colon_char: Semi colon
1183 1183 label_quote_char: Quote
1184 1184 label_double_quote_char: Double quote
1185 1185 label_fields_mapping: Fields mapping
1186 1186 label_file_content_preview: File content preview
1187 1187 label_create_missing_values: Create missing values
1188 1188 button_import: Import
1189 1189 field_total_estimated_hours: Total estimated time
1190 1190 label_api: API
1191 1191 label_total_plural: Totals
1192 1192 label_assigned_issues: Assigned issues
1193 1193 label_field_format_enumeration: Key/value list
1194 1194 label_f_hour_short: '%{value} h'
1195 1195 field_default_version: Default version
1196 1196 error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed
1197 1197 setting_attachment_extensions_allowed: Allowed extensions
1198 1198 setting_attachment_extensions_denied: Disallowed extensions
1199 1199 label_any_open_issues: any open issues
1200 1200 label_no_open_issues: no open issues
1201 1201 label_default_values_for_new_users: Default values for new users
1202 error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot
1203 be reassigned to an issue that is about to be deleted
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
General Comments 0
You need to be logged in to leave comments. Login now