##// END OF EJS Templates
Adds a simple API and a standalone script that can be used to forward emails from a local or remote email server to Redmine (#1110)....
Jean-Philippe Lang -
r1570:25bba80c9eb1
parent child
Show More

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

@@ -0,0 +1,44
1 # redMine - project management software
2 # Copyright (C) 2006-2008 Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 class MailHandlerController < ActionController::Base
19 before_filter :check_credential
20
21 verify :method => :post,
22 :only => :index,
23 :render => { :nothing => true, :status => 405 }
24
25 # Submits an incoming email to MailHandler
26 def index
27 options = params.dup
28 email = options.delete(:email)
29 if MailHandler.receive(email, options)
30 render :nothing => true, :status => :created
31 else
32 render :nothing => true, :status => :unprocessable_entity
33 end
34 end
35
36 private
37
38 def check_credential
39 User.current = nil
40 unless Setting.mail_handler_api_enabled? && params[:key] == Setting.mail_handler_api_key
41 render :nothing => true, :status => 403
42 end
43 end
44 end
@@ -0,0 +1,19
1 # redMine - project management software
2 # Copyright (C) 2006-2008 Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 module MailHandlerHelper
19 end
@@ -0,0 +1,18
1 <% form_tag({:action => 'edit', :tab => 'mail_handler'}) do %>
2
3 <div class="box tabular settings">
4 <p><label><%= l(:setting_mail_handler_api_enabled) %></label>
5 <%= check_box_tag 'settings[mail_handler_api_enabled]', 1, Setting.mail_handler_api_enabled?,
6 :onclick => "if (this.checked) { Form.Element.enable('settings_mail_handler_api_key'); } else { Form.Element.disable('settings_mail_handler_api_key'); }" %>
7 <%= hidden_field_tag 'settings[mail_handler_api_enabled]', 0 %></p>
8
9 <p><label><%= l(:setting_mail_handler_api_key) %></label>
10 <%= text_field_tag 'settings[mail_handler_api_key]', Setting.mail_handler_api_key,
11 :size => 30,
12 :id => 'settings_mail_handler_api_key',
13 :disabled => !Setting.mail_handler_api_enabled? %>
14 <%= link_to_function l(:label_generate_key), "if ($('settings_mail_handler_api_key').disabled == false) { $('settings_mail_handler_api_key').value = randomKey(20) }" %></p>
15 </div>
16
17 <%= submit_tag l(:button_save) %>
18 <% end %>
@@ -0,0 +1,79
1 #!/usr/bin/ruby
2
3 # rdm-mailhandler
4 # Reads an email from standard input and forward it to a Redmine server
5 # Can be used from a remote mail server
6
7 require 'net/http'
8 require 'net/https'
9 require 'uri'
10 require 'getoptlong'
11
12 class RedmineMailHandler
13 VERSION = '0.1'
14
15 attr_accessor :verbose, :project, :url, :key
16
17 def initialize
18 opts = GetoptLong.new(
19 [ '--help', '-h', GetoptLong::NO_ARGUMENT ],
20 [ '--version', '-V', GetoptLong::NO_ARGUMENT ],
21 [ '--verbose', '-v', GetoptLong::NO_ARGUMENT ],
22 [ '--url', '-u', GetoptLong::REQUIRED_ARGUMENT ],
23 [ '--key', '-k', GetoptLong::REQUIRED_ARGUMENT],
24 [ '--project', '-p', GetoptLong::REQUIRED_ARGUMENT ]
25 )
26
27 opts.each do |opt, arg|
28 case opt
29 when '--url'
30 self.url = arg.dup
31 when '--key'
32 self.key = arg.dup
33 when '--help'
34 usage
35 when '--verbose'
36 self.verbose = true
37 when '--version'
38 puts VERSION; exit
39 when '--project'
40 self.project = arg.dup
41 end
42 end
43
44 usage if url.nil?
45 end
46
47 def submit(email)
48 uri = url.gsub(%r{/*$}, '') + '/mail_handler'
49 debug "Posting to #{uri}..."
50 data = { 'key' => key, 'project' => project, 'email' => email }
51 response = Net::HTTP.post_form(URI.parse(uri), data)
52 debug "Response received: #{response.code}"
53 response.code == 201 ? 0 : 1
54 end
55
56 private
57
58 def usage
59 puts "Usage: rdm-mailhandler [options] --url=<Redmine URL> --key=<API key>"
60 puts "Reads an email from standard input and forward it to a Redmine server"
61 puts
62 puts "Options:"
63 puts " --help show this help"
64 puts " --verbose show extra information"
65 puts " --project identifier of the target project"
66 puts
67 puts "Examples:"
68 puts " rdm-mailhandler --url http://redmine.domain.foo --key secret"
69 puts " rdm-mailhandler --url https://redmine.domain.foo --key secret --project foo"
70 exit
71 end
72
73 def debug(msg)
74 puts msg if verbose
75 end
76 end
77
78 handler = RedmineMailHandler.new
79 handler.submit(STDIN.read)
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
@@ -1,27 +1,28
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 module SettingsHelper
18 module SettingsHelper
19 def administration_settings_tabs
19 def administration_settings_tabs
20 tabs = [{:name => 'general', :partial => 'settings/general', :label => :label_general},
20 tabs = [{:name => 'general', :partial => 'settings/general', :label => :label_general},
21 {:name => 'authentication', :partial => 'settings/authentication', :label => :label_authentication},
21 {:name => 'authentication', :partial => 'settings/authentication', :label => :label_authentication},
22 {:name => 'issues', :partial => 'settings/issues', :label => :label_issue_tracking},
22 {:name => 'issues', :partial => 'settings/issues', :label => :label_issue_tracking},
23 {:name => 'notifications', :partial => 'settings/notifications', :label => l(:field_mail_notification)},
23 {:name => 'notifications', :partial => 'settings/notifications', :label => l(:field_mail_notification)},
24 {:name => 'mail_handler', :partial => 'settings/mail_handler', :label => l(:label_incoming_emails)},
24 {:name => 'repositories', :partial => 'settings/repositories', :label => :label_repository_plural}
25 {:name => 'repositories', :partial => 'settings/repositories', :label => :label_repository_plural}
25 ]
26 ]
26 end
27 end
27 end
28 end
@@ -1,134 +1,134
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class MailHandler < ActionMailer::Base
18 class MailHandler < ActionMailer::Base
19
19
20 class UnauthorizedAction < StandardError; end
20 class UnauthorizedAction < StandardError; end
21 class MissingInformation < StandardError; end
21 class MissingInformation < StandardError; end
22
22
23 attr_reader :email, :user
23 attr_reader :email, :user
24
24
25 def self.receive(email, options={})
25 def self.receive(email, options={})
26 @@handler_options = options
26 @@handler_options = options
27 super email
27 super email
28 end
28 end
29
29
30 # Processes incoming emails
30 # Processes incoming emails
31 def receive(email)
31 def receive(email)
32 @email = email
32 @email = email
33 @user = User.find_active(:first, :conditions => {:mail => email.from.first})
33 @user = User.find_active(:first, :conditions => {:mail => email.from.first})
34 unless @user
34 unless @user
35 # Unknown user => the email is ignored
35 # Unknown user => the email is ignored
36 # TODO: ability to create the user's account
36 # TODO: ability to create the user's account
37 logger.info "MailHandler: email submitted by unknown user [#{email.from.first}]" if logger && logger.info
37 logger.info "MailHandler: email submitted by unknown user [#{email.from.first}]" if logger && logger.info
38 return false
38 return false
39 end
39 end
40 User.current = @user
40 User.current = @user
41 dispatch
41 dispatch
42 end
42 end
43
43
44 private
44 private
45
45
46 ISSUE_REPLY_SUBJECT_RE = %r{\[[^\]]+#(\d+)\]}
46 ISSUE_REPLY_SUBJECT_RE = %r{\[[^\]]+#(\d+)\]}
47
47
48 def dispatch
48 def dispatch
49 if m = email.subject.match(ISSUE_REPLY_SUBJECT_RE)
49 if m = email.subject.match(ISSUE_REPLY_SUBJECT_RE)
50 receive_issue_update(m[1].to_i)
50 receive_issue_update(m[1].to_i)
51 else
51 else
52 receive_issue
52 receive_issue
53 end
53 end
54 rescue ActiveRecord::RecordInvalid => e
54 rescue ActiveRecord::RecordInvalid => e
55 # TODO: send a email to the user
55 # TODO: send a email to the user
56 logger.error e.message if logger
56 logger.error e.message if logger
57 false
57 false
58 rescue MissingInformation => e
58 rescue MissingInformation => e
59 logger.error "MailHandler: missing information from #{user}: #{e.message}" if logger
59 logger.error "MailHandler: missing information from #{user}: #{e.message}" if logger
60 false
60 false
61 rescue UnauthorizedAction => e
61 rescue UnauthorizedAction => e
62 logger.error "MailHandler: unauthorized attempt from #{user}" if logger
62 logger.error "MailHandler: unauthorized attempt from #{user}" if logger
63 false
63 false
64 end
64 end
65
65
66 # Creates a new issue
66 # Creates a new issue
67 def receive_issue
67 def receive_issue
68 project = target_project
68 project = target_project
69 # TODO: make the tracker configurable
69 # TODO: make the tracker configurable
70 tracker = project.trackers.find(:first)
70 tracker = project.trackers.find(:first)
71 # check permission
71 # check permission
72 raise UnauthorizedAction unless user.allowed_to?(:add_issues, project)
72 raise UnauthorizedAction unless user.allowed_to?(:add_issues, project)
73 issue = Issue.new(:author => user, :project => project, :tracker => tracker)
73 issue = Issue.new(:author => user, :project => project, :tracker => tracker)
74 issue.subject = email.subject.chomp
74 issue.subject = email.subject.chomp
75 issue.description = email.plain_text_body.chomp
75 issue.description = email.plain_text_body.chomp
76 issue.save!
76 issue.save!
77 add_attachments(issue)
77 add_attachments(issue)
78 logger.info "MailHandler: issue ##{issue.id} created by #{user}" if logger && logger.info
78 logger.info "MailHandler: issue ##{issue.id} created by #{user}" if logger && logger.info
79 Mailer.deliver_issue_add(issue) if Setting.notified_events.include?('issue_added')
79 Mailer.deliver_issue_add(issue) if Setting.notified_events.include?('issue_added')
80 issue
80 issue
81 end
81 end
82
82
83 def target_project
83 def target_project
84 # TODO: other ways to specify project:
84 # TODO: other ways to specify project:
85 # * parse the email To field
85 # * parse the email To field
86 # * specific project (eg. Setting.mail_handler_target_project)
86 # * specific project (eg. Setting.mail_handler_target_project)
87 identifier = if @@handler_options[:project]
87 identifier = if !@@handler_options[:project].blank?
88 @@handler_options[:project]
88 @@handler_options[:project]
89 elsif email.plain_text_body =~ %r{^Project:[ \t]*(.+)$}i
89 elsif email.plain_text_body =~ %r{^Project:[ \t]*(.+)$}i
90 $1
90 $1
91 end
91 end
92
92
93 target = Project.find_by_identifier(identifier.to_s)
93 target = Project.find_by_identifier(identifier.to_s)
94 raise MissingInformation.new('Unable to determine target project') if target.nil?
94 raise MissingInformation.new('Unable to determine target project') if target.nil?
95 target
95 target
96 end
96 end
97
97
98 # Adds a note to an existing issue
98 # Adds a note to an existing issue
99 def receive_issue_update(issue_id)
99 def receive_issue_update(issue_id)
100 issue = Issue.find_by_id(issue_id)
100 issue = Issue.find_by_id(issue_id)
101 return unless issue
101 return unless issue
102 # check permission
102 # check permission
103 raise UnauthorizedAction unless user.allowed_to?(:add_issue_notes, issue.project) || user.allowed_to?(:edit_issues, issue.project)
103 raise UnauthorizedAction unless user.allowed_to?(:add_issue_notes, issue.project) || user.allowed_to?(:edit_issues, issue.project)
104 # add the note
104 # add the note
105 journal = issue.init_journal(user, email.plain_text_body.chomp)
105 journal = issue.init_journal(user, email.plain_text_body.chomp)
106 add_attachments(issue)
106 add_attachments(issue)
107 issue.save!
107 issue.save!
108 logger.info "MailHandler: issue ##{issue.id} updated by #{user}" if logger && logger.info
108 logger.info "MailHandler: issue ##{issue.id} updated by #{user}" if logger && logger.info
109 Mailer.deliver_issue_edit(journal) if Setting.notified_events.include?('issue_updated')
109 Mailer.deliver_issue_edit(journal) if Setting.notified_events.include?('issue_updated')
110 journal
110 journal
111 end
111 end
112
112
113 def add_attachments(obj)
113 def add_attachments(obj)
114 if email.has_attachments?
114 if email.has_attachments?
115 email.attachments.each do |attachment|
115 email.attachments.each do |attachment|
116 Attachment.create(:container => obj,
116 Attachment.create(:container => obj,
117 :file => attachment,
117 :file => attachment,
118 :author => user,
118 :author => user,
119 :content_type => attachment.content_type)
119 :content_type => attachment.content_type)
120 end
120 end
121 end
121 end
122 end
122 end
123 end
123 end
124
124
125 class TMail::Mail
125 class TMail::Mail
126 # Returns body of the first plain text part found if any
126 # Returns body of the first plain text part found if any
127 def plain_text_body
127 def plain_text_body
128 return @plain_text_body unless @plain_text_body.nil?
128 return @plain_text_body unless @plain_text_body.nil?
129 p = self.parts.collect {|c| (c.respond_to?(:parts) && !c.parts.empty?) ? c.parts : c}.flatten
129 p = self.parts.collect {|c| (c.respond_to?(:parts) && !c.parts.empty?) ? c.parts : c}.flatten
130 plain = p.detect {|c| c.content_type == 'text/plain'}
130 plain = p.detect {|c| c.content_type == 'text/plain'}
131 @plain_text_body = plain.nil? ? self.body : plain.body
131 @plain_text_body = plain.nil? ? self.body : plain.body
132 end
132 end
133 end
133 end
134
134
@@ -1,127 +1,131
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18
18
19 # DO NOT MODIFY THIS FILE !!!
19 # DO NOT MODIFY THIS FILE !!!
20 # Settings can be defined through the application in Admin -> Settings
20 # Settings can be defined through the application in Admin -> Settings
21
21
22 app_title:
22 app_title:
23 default: Redmine
23 default: Redmine
24 app_subtitle:
24 app_subtitle:
25 default: Project management
25 default: Project management
26 welcome_text:
26 welcome_text:
27 default:
27 default:
28 login_required:
28 login_required:
29 default: 0
29 default: 0
30 self_registration:
30 self_registration:
31 default: '2'
31 default: '2'
32 lost_password:
32 lost_password:
33 default: 1
33 default: 1
34 attachment_max_size:
34 attachment_max_size:
35 format: int
35 format: int
36 default: 5120
36 default: 5120
37 issues_export_limit:
37 issues_export_limit:
38 format: int
38 format: int
39 default: 500
39 default: 500
40 activity_days_default:
40 activity_days_default:
41 format: int
41 format: int
42 default: 30
42 default: 30
43 per_page_options:
43 per_page_options:
44 default: '25,50,100'
44 default: '25,50,100'
45 mail_from:
45 mail_from:
46 default: redmine@somenet.foo
46 default: redmine@somenet.foo
47 bcc_recipients:
47 bcc_recipients:
48 default: 1
48 default: 1
49 text_formatting:
49 text_formatting:
50 default: textile
50 default: textile
51 wiki_compression:
51 wiki_compression:
52 default: ""
52 default: ""
53 default_language:
53 default_language:
54 default: en
54 default: en
55 host_name:
55 host_name:
56 default: localhost:3000
56 default: localhost:3000
57 protocol:
57 protocol:
58 default: http
58 default: http
59 feeds_limit:
59 feeds_limit:
60 format: int
60 format: int
61 default: 15
61 default: 15
62 enabled_scm:
62 enabled_scm:
63 serialized: true
63 serialized: true
64 default:
64 default:
65 - Subversion
65 - Subversion
66 - Darcs
66 - Darcs
67 - Mercurial
67 - Mercurial
68 - Cvs
68 - Cvs
69 - Bazaar
69 - Bazaar
70 - Git
70 - Git
71 autofetch_changesets:
71 autofetch_changesets:
72 default: 1
72 default: 1
73 sys_api_enabled:
73 sys_api_enabled:
74 default: 0
74 default: 0
75 commit_ref_keywords:
75 commit_ref_keywords:
76 default: 'refs,references,IssueID'
76 default: 'refs,references,IssueID'
77 commit_fix_keywords:
77 commit_fix_keywords:
78 default: 'fixes,closes'
78 default: 'fixes,closes'
79 commit_fix_status_id:
79 commit_fix_status_id:
80 format: int
80 format: int
81 default: 0
81 default: 0
82 commit_fix_done_ratio:
82 commit_fix_done_ratio:
83 default: 100
83 default: 100
84 # autologin duration in days
84 # autologin duration in days
85 # 0 means autologin is disabled
85 # 0 means autologin is disabled
86 autologin:
86 autologin:
87 format: int
87 format: int
88 default: 0
88 default: 0
89 # date format
89 # date format
90 date_format:
90 date_format:
91 default: ''
91 default: ''
92 time_format:
92 time_format:
93 default: ''
93 default: ''
94 user_format:
94 user_format:
95 default: :firstname_lastname
95 default: :firstname_lastname
96 format: symbol
96 format: symbol
97 cross_project_issue_relations:
97 cross_project_issue_relations:
98 default: 0
98 default: 0
99 notified_events:
99 notified_events:
100 serialized: true
100 serialized: true
101 default:
101 default:
102 - issue_added
102 - issue_added
103 - issue_updated
103 - issue_updated
104 mail_handler_api_enabled:
105 default: 0
106 mail_handler_api_key:
107 default:
104 issue_list_default_columns:
108 issue_list_default_columns:
105 serialized: true
109 serialized: true
106 default:
110 default:
107 - tracker
111 - tracker
108 - status
112 - status
109 - priority
113 - priority
110 - subject
114 - subject
111 - assigned_to
115 - assigned_to
112 - updated_on
116 - updated_on
113 display_subprojects_issues:
117 display_subprojects_issues:
114 default: 1
118 default: 1
115 default_projects_public:
119 default_projects_public:
116 default: 1
120 default: 1
117 # encodings used to convert repository files content to UTF-8
121 # encodings used to convert repository files content to UTF-8
118 # multiple values accepted, comma separated
122 # multiple values accepted, comma separated
119 repositories_encodings:
123 repositories_encodings:
120 default: ''
124 default: ''
121 ui_theme:
125 ui_theme:
122 default: ''
126 default: ''
123 emails_footer:
127 emails_footer:
124 default: |-
128 default: |-
125 You have received this notification because you have either subscribed to it, or are involved in it.
129 You have received this notification because you have either subscribed to it, or are involved in it.
126 To change your notification preferences, please click here: http://hostname/my/account
130 To change your notification preferences, please click here: http://hostname/my/account
127
131
@@ -1,628 +1,632
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 ден
8 actionview_datehelper_time_in_words_day: 1 ден
9 actionview_datehelper_time_in_words_day_plural: %d дни
9 actionview_datehelper_time_in_words_day_plural: %d дни
10 actionview_datehelper_time_in_words_hour_about: около час
10 actionview_datehelper_time_in_words_hour_about: около час
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
12 actionview_datehelper_time_in_words_hour_about_single: около час
12 actionview_datehelper_time_in_words_hour_about_single: около час
13 actionview_datehelper_time_in_words_minute: 1 минута
13 actionview_datehelper_time_in_words_minute: 1 минута
14 actionview_datehelper_time_in_words_minute_half: половин минута
14 actionview_datehelper_time_in_words_minute_half: половин минута
15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
16 actionview_datehelper_time_in_words_minute_plural: %d минути
16 actionview_datehelper_time_in_words_minute_plural: %d минути
17 actionview_datehelper_time_in_words_minute_single: 1 минута
17 actionview_datehelper_time_in_words_minute_single: 1 минута
18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
20 actionview_instancetag_blank_option: Изберете
20 actionview_instancetag_blank_option: Изберете
21
21
22 activerecord_error_inclusion: не съществува в списъка
22 activerecord_error_inclusion: не съществува в списъка
23 activerecord_error_exclusion: е запазено
23 activerecord_error_exclusion: е запазено
24 activerecord_error_invalid: е невалидно
24 activerecord_error_invalid: е невалидно
25 activerecord_error_confirmation: липсва одобрение
25 activerecord_error_confirmation: липсва одобрение
26 activerecord_error_accepted: трябва да се приеме
26 activerecord_error_accepted: трябва да се приеме
27 activerecord_error_empty: не може да е празно
27 activerecord_error_empty: не може да е празно
28 activerecord_error_blank: не може да е празно
28 activerecord_error_blank: не може да е празно
29 activerecord_error_too_long: е прекалено дълго
29 activerecord_error_too_long: е прекалено дълго
30 activerecord_error_too_short: е прекалено късо
30 activerecord_error_too_short: е прекалено късо
31 activerecord_error_wrong_length: е с грешна дължина
31 activerecord_error_wrong_length: е с грешна дължина
32 activerecord_error_taken: вече съществува
32 activerecord_error_taken: вече съществува
33 activerecord_error_not_a_number: не е число
33 activerecord_error_not_a_number: не е число
34 activerecord_error_not_a_date: е невалидна дата
34 activerecord_error_not_a_date: е невалидна дата
35 activerecord_error_greater_than_start_date: трябва да е след началната дата
35 activerecord_error_greater_than_start_date: трябва да е след началната дата
36 activerecord_error_not_same_project: не е от същия проект
36 activerecord_error_not_same_project: не е от същия проект
37 activerecord_error_circular_dependency: Тази релация ще доведе до безкрайна зависимост
37 activerecord_error_circular_dependency: Тази релация ще доведе до безкрайна зависимост
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%d.%%m.%%Y
41 general_fmt_date: %%d.%%m.%%Y
42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Не'
45 general_text_No: 'Не'
46 general_text_Yes: 'Да'
46 general_text_Yes: 'Да'
47 general_text_no: 'не'
47 general_text_no: 'не'
48 general_text_yes: 'да'
48 general_text_yes: 'да'
49 general_lang_name: 'Bulgarian'
49 general_lang_name: 'Bulgarian'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: UTF-8
51 general_csv_encoding: UTF-8
52 general_pdf_encoding: UTF-8
52 general_pdf_encoding: UTF-8
53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Профилът е обновен успешно.
56 notice_account_updated: Профилът е обновен успешно.
57 notice_account_invalid_creditentials: Невалиден потребител или парола.
57 notice_account_invalid_creditentials: Невалиден потребител или парола.
58 notice_account_password_updated: Паролата е успешно променена.
58 notice_account_password_updated: Паролата е успешно променена.
59 notice_account_wrong_password: Грешна парола
59 notice_account_wrong_password: Грешна парола
60 notice_account_register_done: Профилът е създаден успешно.
60 notice_account_register_done: Профилът е създаден успешно.
61 notice_account_unknown_email: Непознат e-mail.
61 notice_account_unknown_email: Непознат e-mail.
62 notice_can_t_change_password: Този профил е с външен метод за оторизация. Невъзможна смяна на паролата.
62 notice_can_t_change_password: Този профил е с външен метод за оторизация. Невъзможна смяна на паролата.
63 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
63 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
64 notice_account_activated: Профилът ви е активиран. Вече може да влезете в системата.
64 notice_account_activated: Профилът ви е активиран. Вече може да влезете в системата.
65 notice_successful_create: Успешно създаване.
65 notice_successful_create: Успешно създаване.
66 notice_successful_update: Успешно обновяване.
66 notice_successful_update: Успешно обновяване.
67 notice_successful_delete: Успешно изтриване.
67 notice_successful_delete: Успешно изтриване.
68 notice_successful_connection: Успешно свързване.
68 notice_successful_connection: Успешно свързване.
69 notice_file_not_found: Несъществуваща или преместена страница.
69 notice_file_not_found: Несъществуваща или преместена страница.
70 notice_locking_conflict: Друг потребител променя тези данни в момента.
70 notice_locking_conflict: Друг потребител променя тези данни в момента.
71 notice_not_authorized: Нямате право на достъп до тази страница.
71 notice_not_authorized: Нямате право на достъп до тази страница.
72 notice_email_sent: Изпратен e-mail на %s
72 notice_email_sent: Изпратен e-mail на %s
73 notice_email_error: Грешка при изпращане на e-mail (%s)
73 notice_email_error: Грешка при изпращане на e-mail (%s)
74 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
74 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
75
75
76 error_scm_not_found: Несъществуващ обект в хранилището.
76 error_scm_not_found: Несъществуващ обект в хранилището.
77 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: %s"
77 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: %s"
78
78
79 mail_subject_lost_password: Вашата парола (%s)
79 mail_subject_lost_password: Вашата парола (%s)
80 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
80 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
81 mail_subject_register: Активация на профил (%s)
81 mail_subject_register: Активация на профил (%s)
82 mail_body_register: 'За да активирате профила си използвайте следния линк:'
82 mail_body_register: 'За да активирате профила си използвайте следния линк:'
83
83
84 gui_validation_error: 1 грешка
84 gui_validation_error: 1 грешка
85 gui_validation_error_plural: %d грешки
85 gui_validation_error_plural: %d грешки
86
86
87 field_name: Име
87 field_name: Име
88 field_description: Описание
88 field_description: Описание
89 field_summary: Групиран изглед
89 field_summary: Групиран изглед
90 field_is_required: Задължително
90 field_is_required: Задължително
91 field_firstname: Име
91 field_firstname: Име
92 field_lastname: Фамилия
92 field_lastname: Фамилия
93 field_mail: Email
93 field_mail: Email
94 field_filename: Файл
94 field_filename: Файл
95 field_filesize: Големина
95 field_filesize: Големина
96 field_downloads: Downloads
96 field_downloads: Downloads
97 field_author: Автор
97 field_author: Автор
98 field_created_on: От дата
98 field_created_on: От дата
99 field_updated_on: Обновена
99 field_updated_on: Обновена
100 field_field_format: Тип
100 field_field_format: Тип
101 field_is_for_all: За всички проекти
101 field_is_for_all: За всички проекти
102 field_possible_values: Възможни стойности
102 field_possible_values: Възможни стойности
103 field_regexp: Регулярен израз
103 field_regexp: Регулярен израз
104 field_min_length: Мин. дължина
104 field_min_length: Мин. дължина
105 field_max_length: Макс. дължина
105 field_max_length: Макс. дължина
106 field_value: Стойност
106 field_value: Стойност
107 field_category: Категория
107 field_category: Категория
108 field_title: Заглавие
108 field_title: Заглавие
109 field_project: Проект
109 field_project: Проект
110 field_issue: Задача
110 field_issue: Задача
111 field_status: Статус
111 field_status: Статус
112 field_notes: Бележка
112 field_notes: Бележка
113 field_is_closed: Затворена задача
113 field_is_closed: Затворена задача
114 field_is_default: Статус по подразбиране
114 field_is_default: Статус по подразбиране
115 field_tracker: Тракер
115 field_tracker: Тракер
116 field_subject: Относно
116 field_subject: Относно
117 field_due_date: Крайна дата
117 field_due_date: Крайна дата
118 field_assigned_to: Възложена на
118 field_assigned_to: Възложена на
119 field_priority: Приоритет
119 field_priority: Приоритет
120 field_fixed_version: Планувана версия
120 field_fixed_version: Планувана версия
121 field_user: Потребител
121 field_user: Потребител
122 field_role: Роля
122 field_role: Роля
123 field_homepage: Начална страница
123 field_homepage: Начална страница
124 field_is_public: Публичен
124 field_is_public: Публичен
125 field_parent: Подпроект на
125 field_parent: Подпроект на
126 field_is_in_chlog: Да се вижда ли в Изменения
126 field_is_in_chlog: Да се вижда ли в Изменения
127 field_is_in_roadmap: Да се вижда ли в Пътна карта
127 field_is_in_roadmap: Да се вижда ли в Пътна карта
128 field_login: Потребител
128 field_login: Потребител
129 field_mail_notification: Известия по пощата
129 field_mail_notification: Известия по пощата
130 field_admin: Администратор
130 field_admin: Администратор
131 field_last_login_on: Последно свързване
131 field_last_login_on: Последно свързване
132 field_language: Език
132 field_language: Език
133 field_effective_date: Дата
133 field_effective_date: Дата
134 field_password: Парола
134 field_password: Парола
135 field_new_password: Нова парола
135 field_new_password: Нова парола
136 field_password_confirmation: Потвърждение
136 field_password_confirmation: Потвърждение
137 field_version: Версия
137 field_version: Версия
138 field_type: Тип
138 field_type: Тип
139 field_host: Хост
139 field_host: Хост
140 field_port: Порт
140 field_port: Порт
141 field_account: Профил
141 field_account: Профил
142 field_base_dn: Base DN
142 field_base_dn: Base DN
143 field_attr_login: Login attribute
143 field_attr_login: Login attribute
144 field_attr_firstname: Firstname attribute
144 field_attr_firstname: Firstname attribute
145 field_attr_lastname: Lastname attribute
145 field_attr_lastname: Lastname attribute
146 field_attr_mail: Email attribute
146 field_attr_mail: Email attribute
147 field_onthefly: Динамично създаване на потребител
147 field_onthefly: Динамично създаване на потребител
148 field_start_date: Начална дата
148 field_start_date: Начална дата
149 field_done_ratio: %% Прогрес
149 field_done_ratio: %% Прогрес
150 field_auth_source: Начин на оторизация
150 field_auth_source: Начин на оторизация
151 field_hide_mail: Скрий e-mail адреса ми
151 field_hide_mail: Скрий e-mail адреса ми
152 field_comments: Коментар
152 field_comments: Коментар
153 field_url: Адрес
153 field_url: Адрес
154 field_start_page: Начална страница
154 field_start_page: Начална страница
155 field_subproject: Подпроект
155 field_subproject: Подпроект
156 field_hours: Часове
156 field_hours: Часове
157 field_activity: Дейност
157 field_activity: Дейност
158 field_spent_on: Дата
158 field_spent_on: Дата
159 field_identifier: Идентификатор
159 field_identifier: Идентификатор
160 field_is_filter: Използва се за филтър
160 field_is_filter: Използва се за филтър
161 field_issue_to_id: Свързана задача
161 field_issue_to_id: Свързана задача
162 field_delay: Отместване
162 field_delay: Отместване
163 field_assignable: Възможно е възлагане на задачи за тази роля
163 field_assignable: Възможно е възлагане на задачи за тази роля
164 field_redirect_existing_links: Пренасочване на съществуващи линкове
164 field_redirect_existing_links: Пренасочване на съществуващи линкове
165 field_estimated_hours: Изчислено време
165 field_estimated_hours: Изчислено време
166 field_default_value: Стойност по подразбиране
166 field_default_value: Стойност по подразбиране
167
167
168 setting_app_title: Заглавие
168 setting_app_title: Заглавие
169 setting_app_subtitle: Описание
169 setting_app_subtitle: Описание
170 setting_welcome_text: Допълнителен текст
170 setting_welcome_text: Допълнителен текст
171 setting_default_language: Език по подразбиране
171 setting_default_language: Език по подразбиране
172 setting_login_required: Изискване за вход в системата
172 setting_login_required: Изискване за вход в системата
173 setting_self_registration: Регистрация от потребители
173 setting_self_registration: Регистрация от потребители
174 setting_attachment_max_size: Максимална големина на прикачен файл
174 setting_attachment_max_size: Максимална големина на прикачен файл
175 setting_issues_export_limit: Лимит за експорт на задачи
175 setting_issues_export_limit: Лимит за експорт на задачи
176 setting_mail_from: E-mail адрес за емисии
176 setting_mail_from: E-mail адрес за емисии
177 setting_host_name: Хост
177 setting_host_name: Хост
178 setting_text_formatting: Форматиране на текста
178 setting_text_formatting: Форматиране на текста
179 setting_wiki_compression: Wiki компресиране на историята
179 setting_wiki_compression: Wiki компресиране на историята
180 setting_feeds_limit: Лимит на Feeds
180 setting_feeds_limit: Лимит на Feeds
181 setting_autofetch_changesets: Автоматично обработване на ревизиите
181 setting_autofetch_changesets: Автоматично обработване на ревизиите
182 setting_sys_api_enabled: Разрешаване на WS за управление
182 setting_sys_api_enabled: Разрешаване на WS за управление
183 setting_commit_ref_keywords: Отбелязващи ключови думи
183 setting_commit_ref_keywords: Отбелязващи ключови думи
184 setting_commit_fix_keywords: Приключващи ключови думи
184 setting_commit_fix_keywords: Приключващи ключови думи
185 setting_autologin: Автоматичен вход
185 setting_autologin: Автоматичен вход
186 setting_date_format: Формат на датата
186 setting_date_format: Формат на датата
187 setting_cross_project_issue_relations: Релации на задачи между проекти
187 setting_cross_project_issue_relations: Релации на задачи между проекти
188
188
189 label_user: Потребител
189 label_user: Потребител
190 label_user_plural: Потребители
190 label_user_plural: Потребители
191 label_user_new: Нов потребител
191 label_user_new: Нов потребител
192 label_project: Проект
192 label_project: Проект
193 label_project_new: Нов проект
193 label_project_new: Нов проект
194 label_project_plural: Проекти
194 label_project_plural: Проекти
195 label_project_all: Всички проекти
195 label_project_all: Всички проекти
196 label_project_latest: Последни проекти
196 label_project_latest: Последни проекти
197 label_issue: Задача
197 label_issue: Задача
198 label_issue_new: Нова задача
198 label_issue_new: Нова задача
199 label_issue_plural: Задачи
199 label_issue_plural: Задачи
200 label_issue_view_all: Всички задачи
200 label_issue_view_all: Всички задачи
201 label_document: Документ
201 label_document: Документ
202 label_document_new: Нов документ
202 label_document_new: Нов документ
203 label_document_plural: Документи
203 label_document_plural: Документи
204 label_role: Роля
204 label_role: Роля
205 label_role_plural: Роли
205 label_role_plural: Роли
206 label_role_new: Нова роля
206 label_role_new: Нова роля
207 label_role_and_permissions: Роли и права
207 label_role_and_permissions: Роли и права
208 label_member: Член
208 label_member: Член
209 label_member_new: Нов член
209 label_member_new: Нов член
210 label_member_plural: Членове
210 label_member_plural: Членове
211 label_tracker: Тракер
211 label_tracker: Тракер
212 label_tracker_plural: Тракери
212 label_tracker_plural: Тракери
213 label_tracker_new: Нов тракер
213 label_tracker_new: Нов тракер
214 label_workflow: Работен процес
214 label_workflow: Работен процес
215 label_issue_status: Статус на задача
215 label_issue_status: Статус на задача
216 label_issue_status_plural: Статуси на задачи
216 label_issue_status_plural: Статуси на задачи
217 label_issue_status_new: Нов статус
217 label_issue_status_new: Нов статус
218 label_issue_category: Категория задача
218 label_issue_category: Категория задача
219 label_issue_category_plural: Категории задачи
219 label_issue_category_plural: Категории задачи
220 label_issue_category_new: Нова категория
220 label_issue_category_new: Нова категория
221 label_custom_field: Потребителско поле
221 label_custom_field: Потребителско поле
222 label_custom_field_plural: Потребителски полета
222 label_custom_field_plural: Потребителски полета
223 label_custom_field_new: Ново потребителско поле
223 label_custom_field_new: Ново потребителско поле
224 label_enumerations: Списъци
224 label_enumerations: Списъци
225 label_enumeration_new: Нова стойност
225 label_enumeration_new: Нова стойност
226 label_information: Информация
226 label_information: Информация
227 label_information_plural: Информация
227 label_information_plural: Информация
228 label_please_login: Вход
228 label_please_login: Вход
229 label_register: Регистрация
229 label_register: Регистрация
230 label_password_lost: Забравена парола
230 label_password_lost: Забравена парола
231 label_home: Начало
231 label_home: Начало
232 label_my_page: Лична страница
232 label_my_page: Лична страница
233 label_my_account: Профил
233 label_my_account: Профил
234 label_my_projects: Проекти, в които участвам
234 label_my_projects: Проекти, в които участвам
235 label_administration: Администрация
235 label_administration: Администрация
236 label_login: Вход
236 label_login: Вход
237 label_logout: Изход
237 label_logout: Изход
238 label_help: Помощ
238 label_help: Помощ
239 label_reported_issues: Публикувани задачи
239 label_reported_issues: Публикувани задачи
240 label_assigned_to_me_issues: Възложени на мен
240 label_assigned_to_me_issues: Възложени на мен
241 label_last_login: Последно свързване
241 label_last_login: Последно свързване
242 label_last_updates: Последно обновена
242 label_last_updates: Последно обновена
243 label_last_updates_plural: %d последно обновени
243 label_last_updates_plural: %d последно обновени
244 label_registered_on: Регистрация
244 label_registered_on: Регистрация
245 label_activity: Дейност
245 label_activity: Дейност
246 label_new: Нов
246 label_new: Нов
247 label_logged_as: Логнат като
247 label_logged_as: Логнат като
248 label_environment: Среда
248 label_environment: Среда
249 label_authentication: Оторизация
249 label_authentication: Оторизация
250 label_auth_source: Начин на оторозация
250 label_auth_source: Начин на оторозация
251 label_auth_source_new: Нов начин на оторизация
251 label_auth_source_new: Нов начин на оторизация
252 label_auth_source_plural: Начини на оторизация
252 label_auth_source_plural: Начини на оторизация
253 label_subproject_plural: Подпроекти
253 label_subproject_plural: Подпроекти
254 label_min_max_length: Мин. - Макс. дължина
254 label_min_max_length: Мин. - Макс. дължина
255 label_list: Списък
255 label_list: Списък
256 label_date: Дата
256 label_date: Дата
257 label_integer: Целочислен
257 label_integer: Целочислен
258 label_boolean: Чекбокс
258 label_boolean: Чекбокс
259 label_string: Текст
259 label_string: Текст
260 label_text: Дълъг текст
260 label_text: Дълъг текст
261 label_attribute: Атрибут
261 label_attribute: Атрибут
262 label_attribute_plural: Атрибути
262 label_attribute_plural: Атрибути
263 label_download: %d Download
263 label_download: %d Download
264 label_download_plural: %d Downloads
264 label_download_plural: %d Downloads
265 label_no_data: Няма изходни данни
265 label_no_data: Няма изходни данни
266 label_change_status: Промяна на статуса
266 label_change_status: Промяна на статуса
267 label_history: История
267 label_history: История
268 label_attachment: Файл
268 label_attachment: Файл
269 label_attachment_new: Нов файл
269 label_attachment_new: Нов файл
270 label_attachment_delete: Изтриване
270 label_attachment_delete: Изтриване
271 label_attachment_plural: Файлове
271 label_attachment_plural: Файлове
272 label_report: Справка
272 label_report: Справка
273 label_report_plural: Справки
273 label_report_plural: Справки
274 label_news: Новини
274 label_news: Новини
275 label_news_new: Добави
275 label_news_new: Добави
276 label_news_plural: Новини
276 label_news_plural: Новини
277 label_news_latest: Последни новини
277 label_news_latest: Последни новини
278 label_news_view_all: Виж всички
278 label_news_view_all: Виж всички
279 label_change_log: Изменения
279 label_change_log: Изменения
280 label_settings: Настройки
280 label_settings: Настройки
281 label_overview: Общ изглед
281 label_overview: Общ изглед
282 label_version: Версия
282 label_version: Версия
283 label_version_new: Нова версия
283 label_version_new: Нова версия
284 label_version_plural: Версии
284 label_version_plural: Версии
285 label_confirmation: Одобрение
285 label_confirmation: Одобрение
286 label_export_to: Експорт към
286 label_export_to: Експорт към
287 label_read: Read...
287 label_read: Read...
288 label_public_projects: Публични проекти
288 label_public_projects: Публични проекти
289 label_open_issues: отворена
289 label_open_issues: отворена
290 label_open_issues_plural: отворени
290 label_open_issues_plural: отворени
291 label_closed_issues: затворена
291 label_closed_issues: затворена
292 label_closed_issues_plural: затворени
292 label_closed_issues_plural: затворени
293 label_total: Общо
293 label_total: Общо
294 label_permissions: Права
294 label_permissions: Права
295 label_current_status: Текущ статус
295 label_current_status: Текущ статус
296 label_new_statuses_allowed: Позволени статуси
296 label_new_statuses_allowed: Позволени статуси
297 label_all: всички
297 label_all: всички
298 label_none: никакви
298 label_none: никакви
299 label_next: Следващ
299 label_next: Следващ
300 label_previous: Предишен
300 label_previous: Предишен
301 label_used_by: Използва се от
301 label_used_by: Използва се от
302 label_details: Детайли
302 label_details: Детайли
303 label_add_note: Добавяне на бележка
303 label_add_note: Добавяне на бележка
304 label_per_page: На страница
304 label_per_page: На страница
305 label_calendar: Календар
305 label_calendar: Календар
306 label_months_from: месеца от
306 label_months_from: месеца от
307 label_gantt: Gantt
307 label_gantt: Gantt
308 label_internal: Вътрешен
308 label_internal: Вътрешен
309 label_last_changes: последни %d промени
309 label_last_changes: последни %d промени
310 label_change_view_all: Виж всички промени
310 label_change_view_all: Виж всички промени
311 label_personalize_page: Персонализиране
311 label_personalize_page: Персонализиране
312 label_comment: Коментар
312 label_comment: Коментар
313 label_comment_plural: Коментари
313 label_comment_plural: Коментари
314 label_comment_add: Добавяне на коментар
314 label_comment_add: Добавяне на коментар
315 label_comment_added: Добавен коментар
315 label_comment_added: Добавен коментар
316 label_comment_delete: Изтриване на коментари
316 label_comment_delete: Изтриване на коментари
317 label_query: Потребителска справка
317 label_query: Потребителска справка
318 label_query_plural: Потребителски справки
318 label_query_plural: Потребителски справки
319 label_query_new: Нова заявка
319 label_query_new: Нова заявка
320 label_filter_add: Добави филтър
320 label_filter_add: Добави филтър
321 label_filter_plural: Филтри
321 label_filter_plural: Филтри
322 label_equals: е
322 label_equals: е
323 label_not_equals: не е
323 label_not_equals: не е
324 label_in_less_than: след по-малко от
324 label_in_less_than: след по-малко от
325 label_in_more_than: след повече от
325 label_in_more_than: след повече от
326 label_in: в следващите
326 label_in: в следващите
327 label_today: днес
327 label_today: днес
328 label_this_week: тази седмица
328 label_this_week: тази седмица
329 label_less_than_ago: преди по-малко от
329 label_less_than_ago: преди по-малко от
330 label_more_than_ago: преди повече от
330 label_more_than_ago: преди повече от
331 label_ago: преди
331 label_ago: преди
332 label_contains: съдържа
332 label_contains: съдържа
333 label_not_contains: не съдържа
333 label_not_contains: не съдържа
334 label_day_plural: дни
334 label_day_plural: дни
335 label_repository: Хранилище
335 label_repository: Хранилище
336 label_browse: Разглеждане
336 label_browse: Разглеждане
337 label_modification: %d промяна
337 label_modification: %d промяна
338 label_modification_plural: %d промени
338 label_modification_plural: %d промени
339 label_revision: Ревизия
339 label_revision: Ревизия
340 label_revision_plural: Ревизии
340 label_revision_plural: Ревизии
341 label_added: добавено
341 label_added: добавено
342 label_modified: променено
342 label_modified: променено
343 label_deleted: изтрито
343 label_deleted: изтрито
344 label_latest_revision: Последна ревизия
344 label_latest_revision: Последна ревизия
345 label_latest_revision_plural: Последни ревизии
345 label_latest_revision_plural: Последни ревизии
346 label_view_revisions: Виж ревизиите
346 label_view_revisions: Виж ревизиите
347 label_max_size: Максимална големина
347 label_max_size: Максимална големина
348 label_on: 'от'
348 label_on: 'от'
349 label_sort_highest: Премести най-горе
349 label_sort_highest: Премести най-горе
350 label_sort_higher: Премести по-горе
350 label_sort_higher: Премести по-горе
351 label_sort_lower: Премести по-долу
351 label_sort_lower: Премести по-долу
352 label_sort_lowest: Премести най-долу
352 label_sort_lowest: Премести най-долу
353 label_roadmap: Пътна карта
353 label_roadmap: Пътна карта
354 label_roadmap_due_in: Излиза след
354 label_roadmap_due_in: Излиза след
355 label_roadmap_overdue: %s закъснение
355 label_roadmap_overdue: %s закъснение
356 label_roadmap_no_issues: Няма задачи за тази версия
356 label_roadmap_no_issues: Няма задачи за тази версия
357 label_search: Търсене
357 label_search: Търсене
358 label_result_plural: Pезултати
358 label_result_plural: Pезултати
359 label_all_words: Всички думи
359 label_all_words: Всички думи
360 label_wiki: Wiki
360 label_wiki: Wiki
361 label_wiki_edit: Wiki редакция
361 label_wiki_edit: Wiki редакция
362 label_wiki_edit_plural: Wiki редакции
362 label_wiki_edit_plural: Wiki редакции
363 label_wiki_page: Wiki page
363 label_wiki_page: Wiki page
364 label_wiki_page_plural: Wiki pages
364 label_wiki_page_plural: Wiki pages
365 label_index_by_title: Индекс
365 label_index_by_title: Индекс
366 label_index_by_date: Индекс по дата
366 label_index_by_date: Индекс по дата
367 label_current_version: Текуща версия
367 label_current_version: Текуща версия
368 label_preview: Преглед
368 label_preview: Преглед
369 label_feed_plural: Feeds
369 label_feed_plural: Feeds
370 label_changes_details: Подробни промени
370 label_changes_details: Подробни промени
371 label_issue_tracking: Тракинг
371 label_issue_tracking: Тракинг
372 label_spent_time: Отделено време
372 label_spent_time: Отделено време
373 label_f_hour: %.2f час
373 label_f_hour: %.2f час
374 label_f_hour_plural: %.2f часа
374 label_f_hour_plural: %.2f часа
375 label_time_tracking: Отделяне на време
375 label_time_tracking: Отделяне на време
376 label_change_plural: Промени
376 label_change_plural: Промени
377 label_statistics: Статистики
377 label_statistics: Статистики
378 label_commits_per_month: Ревизии по месеци
378 label_commits_per_month: Ревизии по месеци
379 label_commits_per_author: Ревизии по автор
379 label_commits_per_author: Ревизии по автор
380 label_view_diff: Виж разликите
380 label_view_diff: Виж разликите
381 label_diff_inline: хоризонтално
381 label_diff_inline: хоризонтално
382 label_diff_side_by_side: вертикално
382 label_diff_side_by_side: вертикално
383 label_options: Опции
383 label_options: Опции
384 label_copy_workflow_from: Копирай работния процес от
384 label_copy_workflow_from: Копирай работния процес от
385 label_permissions_report: Справка за права
385 label_permissions_report: Справка за права
386 label_watched_issues: Наблюдавани задачи
386 label_watched_issues: Наблюдавани задачи
387 label_related_issues: Свързани задачи
387 label_related_issues: Свързани задачи
388 label_applied_status: Промени статуса на
388 label_applied_status: Промени статуса на
389 label_loading: Зареждане...
389 label_loading: Зареждане...
390 label_relation_new: Нова релация
390 label_relation_new: Нова релация
391 label_relation_delete: Изтриване на релация
391 label_relation_delete: Изтриване на релация
392 label_relates_to: свързана със
392 label_relates_to: свързана със
393 label_duplicates: дублира
393 label_duplicates: дублира
394 label_blocks: блокира
394 label_blocks: блокира
395 label_blocked_by: блокирана от
395 label_blocked_by: блокирана от
396 label_precedes: предшества
396 label_precedes: предшества
397 label_follows: изпълнява се след
397 label_follows: изпълнява се след
398 label_end_to_start: end to start
398 label_end_to_start: end to start
399 label_end_to_end: end to end
399 label_end_to_end: end to end
400 label_start_to_start: start to start
400 label_start_to_start: start to start
401 label_start_to_end: start to end
401 label_start_to_end: start to end
402 label_stay_logged_in: Запомни ме
402 label_stay_logged_in: Запомни ме
403 label_disabled: забранено
403 label_disabled: забранено
404 label_show_completed_versions: Показване на реализирани версии
404 label_show_completed_versions: Показване на реализирани версии
405 label_me: аз
405 label_me: аз
406 label_board: Форум
406 label_board: Форум
407 label_board_new: Нов форум
407 label_board_new: Нов форум
408 label_board_plural: Форуми
408 label_board_plural: Форуми
409 label_topic_plural: Теми
409 label_topic_plural: Теми
410 label_message_plural: Съобщения
410 label_message_plural: Съобщения
411 label_message_last: Последно съобщение
411 label_message_last: Последно съобщение
412 label_message_new: Нова тема
412 label_message_new: Нова тема
413 label_reply_plural: Отговори
413 label_reply_plural: Отговори
414 label_send_information: Изпращане на информацията до потребителя
414 label_send_information: Изпращане на информацията до потребителя
415 label_year: Година
415 label_year: Година
416 label_month: Месец
416 label_month: Месец
417 label_week: Седмица
417 label_week: Седмица
418 label_date_from: От
418 label_date_from: От
419 label_date_to: До
419 label_date_to: До
420 label_language_based: В зависимост от езика
420 label_language_based: В зависимост от езика
421 label_sort_by: Сортиране по %s
421 label_sort_by: Сортиране по %s
422 label_send_test_email: Изпращане на тестов e-mail
422 label_send_test_email: Изпращане на тестов e-mail
423 label_feeds_access_key_created_on: %s от създаването на RSS ключа
423 label_feeds_access_key_created_on: %s от създаването на RSS ключа
424 label_module_plural: Модули
424 label_module_plural: Модули
425 label_added_time_by: Публикувана от %s преди %s
425 label_added_time_by: Публикувана от %s преди %s
426 label_updated_time: Обновена преди %s
426 label_updated_time: Обновена преди %s
427 label_jump_to_a_project: Проект...
427 label_jump_to_a_project: Проект...
428
428
429 button_login: Вход
429 button_login: Вход
430 button_submit: Прикачване
430 button_submit: Прикачване
431 button_save: Запис
431 button_save: Запис
432 button_check_all: Избор на всички
432 button_check_all: Избор на всички
433 button_uncheck_all: Изчистване на всички
433 button_uncheck_all: Изчистване на всички
434 button_delete: Изтриване
434 button_delete: Изтриване
435 button_create: Създаване
435 button_create: Създаване
436 button_test: Тест
436 button_test: Тест
437 button_edit: Редакция
437 button_edit: Редакция
438 button_add: Добавяне
438 button_add: Добавяне
439 button_change: Промяна
439 button_change: Промяна
440 button_apply: Приложи
440 button_apply: Приложи
441 button_clear: Изчисти
441 button_clear: Изчисти
442 button_lock: Заключване
442 button_lock: Заключване
443 button_unlock: Отключване
443 button_unlock: Отключване
444 button_download: Download
444 button_download: Download
445 button_list: Списък
445 button_list: Списък
446 button_view: Преглед
446 button_view: Преглед
447 button_move: Преместване
447 button_move: Преместване
448 button_back: Назад
448 button_back: Назад
449 button_cancel: Отказ
449 button_cancel: Отказ
450 button_activate: Активация
450 button_activate: Активация
451 button_sort: Сортиране
451 button_sort: Сортиране
452 button_log_time: Отделяне на време
452 button_log_time: Отделяне на време
453 button_rollback: Върни се към тази ревизия
453 button_rollback: Върни се към тази ревизия
454 button_watch: Наблюдавай
454 button_watch: Наблюдавай
455 button_unwatch: Спри наблюдението
455 button_unwatch: Спри наблюдението
456 button_reply: Отговор
456 button_reply: Отговор
457 button_archive: Архивиране
457 button_archive: Архивиране
458 button_unarchive: Разархивиране
458 button_unarchive: Разархивиране
459 button_reset: Генериране наново
459 button_reset: Генериране наново
460 button_rename: Преименуване
460 button_rename: Преименуване
461
461
462 status_active: активен
462 status_active: активен
463 status_registered: регистриран
463 status_registered: регистриран
464 status_locked: заключен
464 status_locked: заключен
465
465
466 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
466 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
467 text_regexp_info: пр. ^[A-Z0-9]+$
467 text_regexp_info: пр. ^[A-Z0-9]+$
468 text_min_max_length_info: 0 - без ограничения
468 text_min_max_length_info: 0 - без ограничения
469 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
469 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
470 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
470 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
471 text_are_you_sure: Сигурни ли сте?
471 text_are_you_sure: Сигурни ли сте?
472 text_journal_changed: промяна от %s на %s
472 text_journal_changed: промяна от %s на %s
473 text_journal_set_to: установено на %s
473 text_journal_set_to: установено на %s
474 text_journal_deleted: изтрито
474 text_journal_deleted: изтрито
475 text_tip_task_begin_day: задача започваща този ден
475 text_tip_task_begin_day: задача започваща този ден
476 text_tip_task_end_day: задача завършваща този ден
476 text_tip_task_end_day: задача завършваща този ден
477 text_tip_task_begin_end_day: задача започваща и завършваща този ден
477 text_tip_task_begin_end_day: задача започваща и завършваща този ден
478 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
478 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
479 text_caracters_maximum: До %d символа.
479 text_caracters_maximum: До %d символа.
480 text_length_between: От %d до %d символа.
480 text_length_between: От %d до %d символа.
481 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
481 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
482 text_unallowed_characters: Непозволени символи
482 text_unallowed_characters: Непозволени символи
483 text_comma_separated: Позволено е изброяване (с разделител запетая).
483 text_comma_separated: Позволено е изброяване (с разделител запетая).
484 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии
484 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии
485 text_issue_added: Публикувана е нова задача с номер %s (от %s).
485 text_issue_added: Публикувана е нова задача с номер %s (от %s).
486 text_issue_updated: Задача %s е обновена (от %s).
486 text_issue_updated: Задача %s е обновена (от %s).
487 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
487 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
488 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
488 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
489 text_issue_category_destroy_assignments: Премахване на връзките с категорията
489 text_issue_category_destroy_assignments: Премахване на връзките с категорията
490 text_issue_category_reassign_to: Преобвързване с категория
490 text_issue_category_reassign_to: Преобвързване с категория
491
491
492 default_role_manager: Мениджър
492 default_role_manager: Мениджър
493 default_role_developper: Разработчик
493 default_role_developper: Разработчик
494 default_role_reporter: Публикуващ
494 default_role_reporter: Публикуващ
495 default_tracker_bug: Бъг
495 default_tracker_bug: Бъг
496 default_tracker_feature: Функционалност
496 default_tracker_feature: Функционалност
497 default_tracker_support: Поддръжка
497 default_tracker_support: Поддръжка
498 default_issue_status_new: Нова
498 default_issue_status_new: Нова
499 default_issue_status_assigned: Възложена
499 default_issue_status_assigned: Възложена
500 default_issue_status_resolved: Приключена
500 default_issue_status_resolved: Приключена
501 default_issue_status_feedback: Обратна връзка
501 default_issue_status_feedback: Обратна връзка
502 default_issue_status_closed: Затворена
502 default_issue_status_closed: Затворена
503 default_issue_status_rejected: Отхвърлена
503 default_issue_status_rejected: Отхвърлена
504 default_doc_category_user: Документация за потребителя
504 default_doc_category_user: Документация за потребителя
505 default_doc_category_tech: Техническа документация
505 default_doc_category_tech: Техническа документация
506 default_priority_low: Нисък
506 default_priority_low: Нисък
507 default_priority_normal: Нормален
507 default_priority_normal: Нормален
508 default_priority_high: Висок
508 default_priority_high: Висок
509 default_priority_urgent: Спешен
509 default_priority_urgent: Спешен
510 default_priority_immediate: Веднага
510 default_priority_immediate: Веднага
511 default_activity_design: Дизайн
511 default_activity_design: Дизайн
512 default_activity_development: Разработка
512 default_activity_development: Разработка
513
513
514 enumeration_issue_priorities: Приоритети на задачи
514 enumeration_issue_priorities: Приоритети на задачи
515 enumeration_doc_categories: Категории документи
515 enumeration_doc_categories: Категории документи
516 enumeration_activities: Дейности (time tracking)
516 enumeration_activities: Дейности (time tracking)
517 label_file_plural: Файлове
517 label_file_plural: Файлове
518 label_changeset_plural: Ревизии
518 label_changeset_plural: Ревизии
519 field_column_names: Колони
519 field_column_names: Колони
520 label_default_columns: По подразбиране
520 label_default_columns: По подразбиране
521 setting_issue_list_default_columns: Показвани колони по подразбиране
521 setting_issue_list_default_columns: Показвани колони по подразбиране
522 setting_repositories_encodings: Кодови таблици
522 setting_repositories_encodings: Кодови таблици
523 notice_no_issue_selected: "Няма избрани задачи."
523 notice_no_issue_selected: "Няма избрани задачи."
524 label_bulk_edit_selected_issues: Редактиране на задачи
524 label_bulk_edit_selected_issues: Редактиране на задачи
525 label_no_change_option: (Без промяна)
525 label_no_change_option: (Без промяна)
526 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
526 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
527 label_theme: Тема
527 label_theme: Тема
528 label_default: По подразбиране
528 label_default: По подразбиране
529 label_search_titles_only: Само в заглавията
529 label_search_titles_only: Само в заглавията
530 label_nobody: никой
530 label_nobody: никой
531 button_change_password: Промяна на парола
531 button_change_password: Промяна на парола
532 text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)."
532 text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)."
533 label_user_mail_option_selected: "За всички събития само в избраните проекти..."
533 label_user_mail_option_selected: "За всички събития само в избраните проекти..."
534 label_user_mail_option_all: "За всяко събитие в проектите, в които участвам"
534 label_user_mail_option_all: "За всяко събитие в проектите, в които участвам"
535 label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)"
535 label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)"
536 setting_emails_footer: Подтекст за e-mail
536 setting_emails_footer: Подтекст за e-mail
537 label_float: Дробно
537 label_float: Дробно
538 button_copy: Копиране
538 button_copy: Копиране
539 mail_body_account_information_external: Можете да използвате вашия "%s" профил за вход.
539 mail_body_account_information_external: Можете да използвате вашия "%s" профил за вход.
540 mail_body_account_information: Информацията за профила ви
540 mail_body_account_information: Информацията за профила ви
541 setting_protocol: Протокол
541 setting_protocol: Протокол
542 label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени"
542 label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени"
543 setting_time_format: Формат на часа
543 setting_time_format: Формат на часа
544 label_registration_activation_by_email: активиране на профила по email
544 label_registration_activation_by_email: активиране на профила по email
545 mail_subject_account_activation_request: Заявка за активиране на профил в %s
545 mail_subject_account_activation_request: Заявка за активиране на профил в %s
546 mail_body_account_activation_request: 'Има новорегистриран потребител (%s), очакващ вашето одобрение:'
546 mail_body_account_activation_request: 'Има новорегистриран потребител (%s), очакващ вашето одобрение:'
547 label_registration_automatic_activation: автоматично активиране
547 label_registration_automatic_activation: автоматично активиране
548 label_registration_manual_activation: ръчно активиране
548 label_registration_manual_activation: ръчно активиране
549 notice_account_pending: "Профилът Ви е създаден и очаква одобрение от администратор."
549 notice_account_pending: "Профилът Ви е създаден и очаква одобрение от администратор."
550 field_time_zone: Часова зона
550 field_time_zone: Часова зона
551 text_caracters_minimum: Минимум %d символа.
551 text_caracters_minimum: Минимум %d символа.
552 setting_bcc_recipients: Получатели на скрито копие (bcc)
552 setting_bcc_recipients: Получатели на скрито копие (bcc)
553 button_annotate: Анотация
553 button_annotate: Анотация
554 label_issues_by: Задачи по %s
554 label_issues_by: Задачи по %s
555 field_searchable: С възможност за търсене
555 field_searchable: С възможност за търсене
556 label_display_per_page: 'На страница по: %s'
556 label_display_per_page: 'На страница по: %s'
557 setting_per_page_options: Опции за страниране
557 setting_per_page_options: Опции за страниране
558 label_age: Възраст
558 label_age: Възраст
559 notice_default_data_loaded: Примерната информацията е успешно заредена.
559 notice_default_data_loaded: Примерната информацията е успешно заредена.
560 text_load_default_configuration: Зареждане на примерна информация
560 text_load_default_configuration: Зареждане на примерна информация
561 text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, статуси на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате."
561 text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, статуси на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате."
562 error_can_t_load_default_data: "Грешка при зареждане на примерната информация: %s"
562 error_can_t_load_default_data: "Грешка при зареждане на примерната информация: %s"
563 button_update: Обновяване
563 button_update: Обновяване
564 label_change_properties: Промяна на настройки
564 label_change_properties: Промяна на настройки
565 label_general: Основни
565 label_general: Основни
566 label_repository_plural: Хранилища
566 label_repository_plural: Хранилища
567 label_associated_revisions: Асоциирани ревизии
567 label_associated_revisions: Асоциирани ревизии
568 setting_user_format: Потребителски формат
568 setting_user_format: Потребителски формат
569 text_status_changed_by_changeset: Приложено с ревизия %s.
569 text_status_changed_by_changeset: Приложено с ревизия %s.
570 label_more: Още
570 label_more: Още
571 text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?'
571 text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?'
572 label_scm: SCM (Система за контрол на кода)
572 label_scm: SCM (Система за контрол на кода)
573 text_select_project_modules: 'Изберете активните модули за този проект:'
573 text_select_project_modules: 'Изберете активните модули за този проект:'
574 label_issue_added: Добавена задача
574 label_issue_added: Добавена задача
575 label_issue_updated: Обновена задача
575 label_issue_updated: Обновена задача
576 label_document_added: Добавен документ
576 label_document_added: Добавен документ
577 label_message_posted: Добавено съобщение
577 label_message_posted: Добавено съобщение
578 label_file_added: Добавен файл
578 label_file_added: Добавен файл
579 label_news_added: Добавена новина
579 label_news_added: Добавена новина
580 project_module_boards: Форуми
580 project_module_boards: Форуми
581 project_module_issue_tracking: Тракинг
581 project_module_issue_tracking: Тракинг
582 project_module_wiki: Wiki
582 project_module_wiki: Wiki
583 project_module_files: Файлове
583 project_module_files: Файлове
584 project_module_documents: Документи
584 project_module_documents: Документи
585 project_module_repository: Хранилище
585 project_module_repository: Хранилище
586 project_module_news: Новини
586 project_module_news: Новини
587 project_module_time_tracking: Отделяне на време
587 project_module_time_tracking: Отделяне на време
588 text_file_repository_writable: Възможност за писане в хранилището с файлове
588 text_file_repository_writable: Възможност за писане в хранилището с файлове
589 text_default_administrator_account_changed: Сменен фабричния администраторски профил
589 text_default_administrator_account_changed: Сменен фабричния администраторски профил
590 text_rmagick_available: Наличен RMagick (по избор)
590 text_rmagick_available: Наличен RMagick (по избор)
591 button_configure: Конфигуриране
591 button_configure: Конфигуриране
592 label_plugins: Плъгини
592 label_plugins: Плъгини
593 label_ldap_authentication: LDAP оторизация
593 label_ldap_authentication: LDAP оторизация
594 label_downloads_abbr: D/L
594 label_downloads_abbr: D/L
595 label_this_month: текущия месец
595 label_this_month: текущия месец
596 label_last_n_days: последните %d дни
596 label_last_n_days: последните %d дни
597 label_all_time: всички
597 label_all_time: всички
598 label_this_year: текущата година
598 label_this_year: текущата година
599 label_date_range: Период
599 label_date_range: Период
600 label_last_week: последната седмица
600 label_last_week: последната седмица
601 label_yesterday: вчера
601 label_yesterday: вчера
602 label_last_month: последния месец
602 label_last_month: последния месец
603 label_add_another_file: Добавяне на друг файл
603 label_add_another_file: Добавяне на друг файл
604 label_optional_description: Незадължително описание
604 label_optional_description: Незадължително описание
605 text_destroy_time_entries_question: %.02f часа са отделени на задачите, които искате да изтриете. Какво избирате?
605 text_destroy_time_entries_question: %.02f часа са отделени на задачите, които искате да изтриете. Какво избирате?
606 error_issue_not_found_in_project: 'Задачата не е намерена или не принадлежи на този проект'
606 error_issue_not_found_in_project: 'Задачата не е намерена или не принадлежи на този проект'
607 text_assign_time_entries_to_project: Прехвърляне на отделеното време към проект
607 text_assign_time_entries_to_project: Прехвърляне на отделеното време към проект
608 text_destroy_time_entries: Изтриване на отделеното време
608 text_destroy_time_entries: Изтриване на отделеното време
609 text_reassign_time_entries: 'Прехвърляне на отделеното време към задача:'
609 text_reassign_time_entries: 'Прехвърляне на отделеното време към задача:'
610 setting_activity_days_default: Брой дни показвани на таб Дейност
610 setting_activity_days_default: Брой дни показвани на таб Дейност
611 label_chronological_order: Хронологичен ред
611 label_chronological_order: Хронологичен ред
612 field_comments_sorting: Сортиране на коментарите
612 field_comments_sorting: Сортиране на коментарите
613 label_reverse_chronological_order: Обратен хронологичен ред
613 label_reverse_chronological_order: Обратен хронологичен ред
614 label_preferences: Предпочитания
614 label_preferences: Предпочитания
615 setting_display_subprojects_issues: Показване на подпроектите в проектите по подразбиране
615 setting_display_subprojects_issues: Показване на подпроектите в проектите по подразбиране
616 label_overall_activity: Цялостна дейност
616 label_overall_activity: Цялостна дейност
617 setting_default_projects_public: Новите проекти са публични по подразбиране
617 setting_default_projects_public: Новите проекти са публични по подразбиране
618 error_scm_annotate: "Обектът не съществува или не може да бъде анотиран."
618 error_scm_annotate: "Обектът не съществува или не може да бъде анотиран."
619 label_planning: Планиране
619 label_planning: Планиране
620 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
620 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
621 label_and_its_subprojects: %s and its subprojects
621 label_and_its_subprojects: %s and its subprojects
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
623 mail_subject_reminder: "%d issue(s) due in the next days"
623 mail_subject_reminder: "%d issue(s) due in the next days"
624 text_user_wrote: '%s wrote:'
624 text_user_wrote: '%s wrote:'
625 label_duplicated_by: duplicated by
625 label_duplicated_by: duplicated by
626 setting_enabled_scm: Enabled SCM
626 setting_enabled_scm: Enabled SCM
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 label_incoming_emails: Incoming emails
630 label_generate_key: Generate a key
631 setting_mail_handler_api_enabled: Enable WS for incoming emails
632 setting_mail_handler_api_key: API key
@@ -1,633 +1,637
1 # CZ translation by Maxim Krušina | Massimo Filippi, s.r.o. | maxim@mxm.cz
1 # CZ translation by Maxim Krušina | Massimo Filippi, s.r.o. | maxim@mxm.cz
2 # Based on original CZ translation by Jan Kadleček
2 # Based on original CZ translation by Jan Kadleček
3
3
4 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
4 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
5
5
6 actionview_datehelper_select_day_prefix:
6 actionview_datehelper_select_day_prefix:
7 actionview_datehelper_select_month_names: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
7 actionview_datehelper_select_month_names: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
8 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
8 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
9 actionview_datehelper_select_month_prefix:
9 actionview_datehelper_select_month_prefix:
10 actionview_datehelper_select_year_prefix:
10 actionview_datehelper_select_year_prefix:
11 actionview_datehelper_time_in_words_day: 1 den
11 actionview_datehelper_time_in_words_day: 1 den
12 actionview_datehelper_time_in_words_day_plural: %d dny
12 actionview_datehelper_time_in_words_day_plural: %d dny
13 actionview_datehelper_time_in_words_hour_about: asi hodinou
13 actionview_datehelper_time_in_words_hour_about: asi hodinou
14 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodinami
14 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodinami
15 actionview_datehelper_time_in_words_hour_about_single: asi hodinou
15 actionview_datehelper_time_in_words_hour_about_single: asi hodinou
16 actionview_datehelper_time_in_words_minute: 1 minutou
16 actionview_datehelper_time_in_words_minute: 1 minutou
17 actionview_datehelper_time_in_words_minute_half: půl minutou
17 actionview_datehelper_time_in_words_minute_half: půl minutou
18 actionview_datehelper_time_in_words_minute_less_than: méně než minutou
18 actionview_datehelper_time_in_words_minute_less_than: méně než minutou
19 actionview_datehelper_time_in_words_minute_plural: %d minutami
19 actionview_datehelper_time_in_words_minute_plural: %d minutami
20 actionview_datehelper_time_in_words_minute_single: 1 minutou
20 actionview_datehelper_time_in_words_minute_single: 1 minutou
21 actionview_datehelper_time_in_words_second_less_than: méně než sekundou
21 actionview_datehelper_time_in_words_second_less_than: méně než sekundou
22 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekundami
22 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekundami
23 actionview_instancetag_blank_option: Prosím vyberte
23 actionview_instancetag_blank_option: Prosím vyberte
24
24
25 activerecord_error_inclusion: není zahrnuto v seznamu
25 activerecord_error_inclusion: není zahrnuto v seznamu
26 activerecord_error_exclusion: je rezervováno
26 activerecord_error_exclusion: je rezervováno
27 activerecord_error_invalid: je neplatné
27 activerecord_error_invalid: je neplatné
28 activerecord_error_confirmation: se neshoduje s potvrzením
28 activerecord_error_confirmation: se neshoduje s potvrzením
29 activerecord_error_accepted: musí být akceptováno
29 activerecord_error_accepted: musí být akceptováno
30 activerecord_error_empty: nemůže být prázdný
30 activerecord_error_empty: nemůže být prázdný
31 activerecord_error_blank: nemůže být prázdný
31 activerecord_error_blank: nemůže být prázdný
32 activerecord_error_too_long: je příliš dlouhý
32 activerecord_error_too_long: je příliš dlouhý
33 activerecord_error_too_short: je příliš krátký
33 activerecord_error_too_short: je příliš krátký
34 activerecord_error_wrong_length: má chybnou délku
34 activerecord_error_wrong_length: má chybnou délku
35 activerecord_error_taken: je již použito
35 activerecord_error_taken: je již použito
36 activerecord_error_not_a_number: není číslo
36 activerecord_error_not_a_number: není číslo
37 activerecord_error_not_a_date: není platné datum
37 activerecord_error_not_a_date: není platné datum
38 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
38 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
39 activerecord_error_not_same_project: nepatří stejnému projektu
39 activerecord_error_not_same_project: nepatří stejnému projektu
40 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
40 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
41
41
42 general_fmt_age: %d rok
42 general_fmt_age: %d rok
43 general_fmt_age_plural: %d roků
43 general_fmt_age_plural: %d roků
44 general_fmt_date: %%m/%%d/%%Y
44 general_fmt_date: %%m/%%d/%%Y
45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
47 general_fmt_time: %%I:%%M %%p
47 general_fmt_time: %%I:%%M %%p
48 general_text_No: 'Ne'
48 general_text_No: 'Ne'
49 general_text_Yes: 'Ano'
49 general_text_Yes: 'Ano'
50 general_text_no: 'ne'
50 general_text_no: 'ne'
51 general_text_yes: 'ano'
51 general_text_yes: 'ano'
52 general_lang_name: 'Čeština'
52 general_lang_name: 'Čeština'
53 general_csv_separator: ','
53 general_csv_separator: ','
54 general_csv_encoding: UTF-8
54 general_csv_encoding: UTF-8
55 general_pdf_encoding: UTF-8
55 general_pdf_encoding: UTF-8
56 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
56 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
57 general_first_day_of_week: '1'
57 general_first_day_of_week: '1'
58
58
59 notice_account_updated: Účet byl úspěšně změněn.
59 notice_account_updated: Účet byl úspěšně změněn.
60 notice_account_invalid_creditentials: Chybné jméno nebo heslo
60 notice_account_invalid_creditentials: Chybné jméno nebo heslo
61 notice_account_password_updated: Heslo bylo úspěšně změněno.
61 notice_account_password_updated: Heslo bylo úspěšně změněno.
62 notice_account_wrong_password: Chybné heslo
62 notice_account_wrong_password: Chybné heslo
63 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.
63 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.
64 notice_account_unknown_email: Neznámý uživatel.
64 notice_account_unknown_email: Neznámý uživatel.
65 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
65 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
66 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
66 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
67 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
67 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
68 notice_successful_create: Úspěšně vytvořeno.
68 notice_successful_create: Úspěšně vytvořeno.
69 notice_successful_update: Úspěšně aktualizováno.
69 notice_successful_update: Úspěšně aktualizováno.
70 notice_successful_delete: Úspěšně odstraněno.
70 notice_successful_delete: Úspěšně odstraněno.
71 notice_successful_connection: Úspěšné připojení.
71 notice_successful_connection: Úspěšné připojení.
72 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
72 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
73 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
73 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
74 notice_scm_error: Entry and/or revision doesn't exist in the repository.
74 notice_scm_error: Entry and/or revision doesn't exist in the repository.
75 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
75 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
76 notice_email_sent: Na adresu %s byl odeslán email
76 notice_email_sent: Na adresu %s byl odeslán email
77 notice_email_error: Při odesílání emailu nastala chyba (%s)
77 notice_email_error: Při odesílání emailu nastala chyba (%s)
78 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
78 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
79 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
79 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
80 notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat"
80 notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat"
81 notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem."
81 notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem."
82 notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána.
82 notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána.
83
83
84 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: %s"
84 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: %s"
85 error_scm_not_found: "Položka a/nebo revize neexistují v repository."
85 error_scm_not_found: "Položka a/nebo revize neexistují v repository."
86 error_scm_command_failed: "Při pokusu o přístup k repository došlo k chybě: %s"
86 error_scm_command_failed: "Při pokusu o přístup k repository došlo k chybě: %s"
87 error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu'
87 error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu'
88
88
89 mail_subject_lost_password: Vaše heslo (%s)
89 mail_subject_lost_password: Vaše heslo (%s)
90 mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:'
90 mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:'
91 mail_subject_register: Aktivace účtu (%s)
91 mail_subject_register: Aktivace účtu (%s)
92 mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:'
92 mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:'
93 mail_body_account_information_external: Pomocí vašeho účtu "%s" se můžete přihlásit.
93 mail_body_account_information_external: Pomocí vašeho účtu "%s" se můžete přihlásit.
94 mail_body_account_information: Informace o vašem účtu
94 mail_body_account_information: Informace o vašem účtu
95 mail_subject_account_activation_request: Aktivace %s účtu
95 mail_subject_account_activation_request: Aktivace %s účtu
96 mail_body_account_activation_request: Byl zaregistrován nový uživatel "%s". Aktivace jeho účtu závisí na vašem potvrzení.
96 mail_body_account_activation_request: Byl zaregistrován nový uživatel "%s". Aktivace jeho účtu závisí na vašem potvrzení.
97
97
98 gui_validation_error: 1 chyba
98 gui_validation_error: 1 chyba
99 gui_validation_error_plural: %d chyb(y)
99 gui_validation_error_plural: %d chyb(y)
100
100
101 field_name: Název
101 field_name: Název
102 field_description: Popis
102 field_description: Popis
103 field_summary: Přehled
103 field_summary: Přehled
104 field_is_required: Povinné pole
104 field_is_required: Povinné pole
105 field_firstname: Jméno
105 field_firstname: Jméno
106 field_lastname: Příjmení
106 field_lastname: Příjmení
107 field_mail: Email
107 field_mail: Email
108 field_filename: Soubor
108 field_filename: Soubor
109 field_filesize: Velikost
109 field_filesize: Velikost
110 field_downloads: Staženo
110 field_downloads: Staženo
111 field_author: Autor
111 field_author: Autor
112 field_created_on: Vytvořeno
112 field_created_on: Vytvořeno
113 field_updated_on: Aktualizováno
113 field_updated_on: Aktualizováno
114 field_field_format: Formát
114 field_field_format: Formát
115 field_is_for_all: Pro všechny projekty
115 field_is_for_all: Pro všechny projekty
116 field_possible_values: Možné hodnoty
116 field_possible_values: Možné hodnoty
117 field_regexp: Regulární výraz
117 field_regexp: Regulární výraz
118 field_min_length: Minimální délka
118 field_min_length: Minimální délka
119 field_max_length: Maximální délka
119 field_max_length: Maximální délka
120 field_value: Hodnota
120 field_value: Hodnota
121 field_category: Kategorie
121 field_category: Kategorie
122 field_title: Název
122 field_title: Název
123 field_project: Projekt
123 field_project: Projekt
124 field_issue: Úkol
124 field_issue: Úkol
125 field_status: Stav
125 field_status: Stav
126 field_notes: Poznámka
126 field_notes: Poznámka
127 field_is_closed: Úkol uzavřen
127 field_is_closed: Úkol uzavřen
128 field_is_default: Výchozí stav
128 field_is_default: Výchozí stav
129 field_tracker: Fronta
129 field_tracker: Fronta
130 field_subject: Předmět
130 field_subject: Předmět
131 field_due_date: Uzavřít do
131 field_due_date: Uzavřít do
132 field_assigned_to: Přiřazeno
132 field_assigned_to: Přiřazeno
133 field_priority: Priorita
133 field_priority: Priorita
134 field_fixed_version: Přiřazeno k verzi
134 field_fixed_version: Přiřazeno k verzi
135 field_user: Uživatel
135 field_user: Uživatel
136 field_role: Role
136 field_role: Role
137 field_homepage: Homepage
137 field_homepage: Homepage
138 field_is_public: Veřejný
138 field_is_public: Veřejný
139 field_parent: Nadřazený projekt
139 field_parent: Nadřazený projekt
140 field_is_in_chlog: Úkoly zobrazené v změnovém logu
140 field_is_in_chlog: Úkoly zobrazené v změnovém logu
141 field_is_in_roadmap: Úkoly zobrazené v plánu
141 field_is_in_roadmap: Úkoly zobrazené v plánu
142 field_login: Přihlášení
142 field_login: Přihlášení
143 field_mail_notification: Emailová oznámení
143 field_mail_notification: Emailová oznámení
144 field_admin: Administrátor
144 field_admin: Administrátor
145 field_last_login_on: Poslední přihlášení
145 field_last_login_on: Poslední přihlášení
146 field_language: Jazyk
146 field_language: Jazyk
147 field_effective_date: Datum
147 field_effective_date: Datum
148 field_password: Heslo
148 field_password: Heslo
149 field_new_password: Nové heslo
149 field_new_password: Nové heslo
150 field_password_confirmation: Potvrzení
150 field_password_confirmation: Potvrzení
151 field_version: Verze
151 field_version: Verze
152 field_type: Typ
152 field_type: Typ
153 field_host: Host
153 field_host: Host
154 field_port: Port
154 field_port: Port
155 field_account: Účet
155 field_account: Účet
156 field_base_dn: Base DN
156 field_base_dn: Base DN
157 field_attr_login: Přihlášení (atribut)
157 field_attr_login: Přihlášení (atribut)
158 field_attr_firstname: Jméno (atribut)
158 field_attr_firstname: Jméno (atribut)
159 field_attr_lastname: Příjemní (atribut)
159 field_attr_lastname: Příjemní (atribut)
160 field_attr_mail: Email (atribut)
160 field_attr_mail: Email (atribut)
161 field_onthefly: Automatické vytváření uživatelů
161 field_onthefly: Automatické vytváření uživatelů
162 field_start_date: Začátek
162 field_start_date: Začátek
163 field_done_ratio: %% Hotovo
163 field_done_ratio: %% Hotovo
164 field_auth_source: Autentifikační mód
164 field_auth_source: Autentifikační mód
165 field_hide_mail: Nezobrazovat můj email
165 field_hide_mail: Nezobrazovat můj email
166 field_comments: Komentář
166 field_comments: Komentář
167 field_url: URL
167 field_url: URL
168 field_start_page: Výchozí stránka
168 field_start_page: Výchozí stránka
169 field_subproject: Podprojekt
169 field_subproject: Podprojekt
170 field_hours: Hodiny
170 field_hours: Hodiny
171 field_activity: Aktivita
171 field_activity: Aktivita
172 field_spent_on: Datum
172 field_spent_on: Datum
173 field_identifier: Identifikátor
173 field_identifier: Identifikátor
174 field_is_filter: Použít jako filtr
174 field_is_filter: Použít jako filtr
175 field_issue_to_id: Související úkol
175 field_issue_to_id: Související úkol
176 field_delay: Zpoždění
176 field_delay: Zpoždění
177 field_assignable: Úkoly mohou být přiřazeny této roli
177 field_assignable: Úkoly mohou být přiřazeny této roli
178 field_redirect_existing_links: Přesměrovat stvávající odkazy
178 field_redirect_existing_links: Přesměrovat stvávající odkazy
179 field_estimated_hours: Odhadovaná doba
179 field_estimated_hours: Odhadovaná doba
180 field_column_names: Sloupce
180 field_column_names: Sloupce
181 field_time_zone: Časové pásmo
181 field_time_zone: Časové pásmo
182 field_searchable: Umožnit vyhledávání
182 field_searchable: Umožnit vyhledávání
183 field_default_value: Výchozí hodnota
183 field_default_value: Výchozí hodnota
184 field_comments_sorting: Zobrazit komentáře
184 field_comments_sorting: Zobrazit komentáře
185
185
186 setting_app_title: Název aplikace
186 setting_app_title: Název aplikace
187 setting_app_subtitle: Podtitulek aplikace
187 setting_app_subtitle: Podtitulek aplikace
188 setting_welcome_text: Uvítací text
188 setting_welcome_text: Uvítací text
189 setting_default_language: Výchozí jazyk
189 setting_default_language: Výchozí jazyk
190 setting_login_required: Auten. vyžadována
190 setting_login_required: Auten. vyžadována
191 setting_self_registration: Povolena automatická registrace
191 setting_self_registration: Povolena automatická registrace
192 setting_attachment_max_size: Maximální velikost přílohy
192 setting_attachment_max_size: Maximální velikost přílohy
193 setting_issues_export_limit: Limit pro export úkolů
193 setting_issues_export_limit: Limit pro export úkolů
194 setting_mail_from: Odesílat emaily z adresy
194 setting_mail_from: Odesílat emaily z adresy
195 setting_bcc_recipients: Příjemci skryté kopie (bcc)
195 setting_bcc_recipients: Příjemci skryté kopie (bcc)
196 setting_host_name: Host name
196 setting_host_name: Host name
197 setting_text_formatting: Formátování textu
197 setting_text_formatting: Formátování textu
198 setting_wiki_compression: Komperese historie Wiki
198 setting_wiki_compression: Komperese historie Wiki
199 setting_feeds_limit: Feed content limit
199 setting_feeds_limit: Feed content limit
200 setting_default_projects_public: Nové projekty nastavovat jako veřejné
200 setting_default_projects_public: Nové projekty nastavovat jako veřejné
201 setting_autofetch_changesets: Autofetch commits
201 setting_autofetch_changesets: Autofetch commits
202 setting_sys_api_enabled: Povolit WS pro správu repozitory
202 setting_sys_api_enabled: Povolit WS pro správu repozitory
203 setting_commit_ref_keywords: Klíčová slova pro odkazy
203 setting_commit_ref_keywords: Klíčová slova pro odkazy
204 setting_commit_fix_keywords: Klíčová slova pro uzavření
204 setting_commit_fix_keywords: Klíčová slova pro uzavření
205 setting_autologin: Automatické přihlašování
205 setting_autologin: Automatické přihlašování
206 setting_date_format: Formát data
206 setting_date_format: Formát data
207 setting_time_format: Formát času
207 setting_time_format: Formát času
208 setting_cross_project_issue_relations: Povolit vazby úkolů napříč projekty
208 setting_cross_project_issue_relations: Povolit vazby úkolů napříč projekty
209 setting_issue_list_default_columns: Výchozí sloupce zobrazené v seznamu úkolů
209 setting_issue_list_default_columns: Výchozí sloupce zobrazené v seznamu úkolů
210 setting_repositories_encodings: Kódování
210 setting_repositories_encodings: Kódování
211 setting_emails_footer: Patička emailů
211 setting_emails_footer: Patička emailů
212 setting_protocol: Protokol
212 setting_protocol: Protokol
213 setting_per_page_options: Povolené počty řádků na stránce
213 setting_per_page_options: Povolené počty řádků na stránce
214 setting_user_format: Formát zobrazení uživatele
214 setting_user_format: Formát zobrazení uživatele
215 setting_activity_days_default: Days displayed on project activity
215 setting_activity_days_default: Days displayed on project activity
216 setting_display_subprojects_issues: Display subprojects issues on main projects by default
216 setting_display_subprojects_issues: Display subprojects issues on main projects by default
217
217
218 project_module_issue_tracking: Sledování úkolů
218 project_module_issue_tracking: Sledování úkolů
219 project_module_time_tracking: Sledování času
219 project_module_time_tracking: Sledování času
220 project_module_news: Novinky
220 project_module_news: Novinky
221 project_module_documents: Dokumenty
221 project_module_documents: Dokumenty
222 project_module_files: Soubory
222 project_module_files: Soubory
223 project_module_wiki: Wiki
223 project_module_wiki: Wiki
224 project_module_repository: Repository
224 project_module_repository: Repository
225 project_module_boards: Diskuse
225 project_module_boards: Diskuse
226
226
227 label_user: Uživatel
227 label_user: Uživatel
228 label_user_plural: Uživatelé
228 label_user_plural: Uživatelé
229 label_user_new: Nový uživatel
229 label_user_new: Nový uživatel
230 label_project: Projekt
230 label_project: Projekt
231 label_project_new: Nový projekt
231 label_project_new: Nový projekt
232 label_project_plural: Projekty
232 label_project_plural: Projekty
233 label_project_all: Všechny projekty
233 label_project_all: Všechny projekty
234 label_project_latest: Poslední projekty
234 label_project_latest: Poslední projekty
235 label_issue: Úkol
235 label_issue: Úkol
236 label_issue_new: Nový úkol
236 label_issue_new: Nový úkol
237 label_issue_plural: Úkoly
237 label_issue_plural: Úkoly
238 label_issue_view_all: Všechny úkoly
238 label_issue_view_all: Všechny úkoly
239 label_issues_by: Úkoly od uživatele %s
239 label_issues_by: Úkoly od uživatele %s
240 label_issue_added: Úkol přidán
240 label_issue_added: Úkol přidán
241 label_issue_updated: Úkol aktualizován
241 label_issue_updated: Úkol aktualizován
242 label_document: Dokument
242 label_document: Dokument
243 label_document_new: Nový dokument
243 label_document_new: Nový dokument
244 label_document_plural: Dokumenty
244 label_document_plural: Dokumenty
245 label_document_added: Dokument přidán
245 label_document_added: Dokument přidán
246 label_role: Role
246 label_role: Role
247 label_role_plural: Role
247 label_role_plural: Role
248 label_role_new: Nová role
248 label_role_new: Nová role
249 label_role_and_permissions: Role a práva
249 label_role_and_permissions: Role a práva
250 label_member: Člen
250 label_member: Člen
251 label_member_new: Nový člen
251 label_member_new: Nový člen
252 label_member_plural: Členové
252 label_member_plural: Členové
253 label_tracker: Fronta
253 label_tracker: Fronta
254 label_tracker_plural: Fronty
254 label_tracker_plural: Fronty
255 label_tracker_new: Nová fronta
255 label_tracker_new: Nová fronta
256 label_workflow: Workflow
256 label_workflow: Workflow
257 label_issue_status: Stav úkolu
257 label_issue_status: Stav úkolu
258 label_issue_status_plural: Stavy úkolů
258 label_issue_status_plural: Stavy úkolů
259 label_issue_status_new: Nový stav
259 label_issue_status_new: Nový stav
260 label_issue_category: Kategorie úkolu
260 label_issue_category: Kategorie úkolu
261 label_issue_category_plural: Kategorie úkolů
261 label_issue_category_plural: Kategorie úkolů
262 label_issue_category_new: Nová kategorie
262 label_issue_category_new: Nová kategorie
263 label_custom_field: Uživatelské pole
263 label_custom_field: Uživatelské pole
264 label_custom_field_plural: Uživatelská pole
264 label_custom_field_plural: Uživatelská pole
265 label_custom_field_new: Nové uživatelské pole
265 label_custom_field_new: Nové uživatelské pole
266 label_enumerations: Seznamy
266 label_enumerations: Seznamy
267 label_enumeration_new: Nová hodnota
267 label_enumeration_new: Nová hodnota
268 label_information: Informace
268 label_information: Informace
269 label_information_plural: Informace
269 label_information_plural: Informace
270 label_please_login: Prosím přihlašte se
270 label_please_login: Prosím přihlašte se
271 label_register: Registrovat
271 label_register: Registrovat
272 label_password_lost: Zapomenuté heslo
272 label_password_lost: Zapomenuté heslo
273 label_home: Úvodní
273 label_home: Úvodní
274 label_my_page: Moje stránka
274 label_my_page: Moje stránka
275 label_my_account: Můj účet
275 label_my_account: Můj účet
276 label_my_projects: Moje projekty
276 label_my_projects: Moje projekty
277 label_administration: Administrace
277 label_administration: Administrace
278 label_login: Přihlášení
278 label_login: Přihlášení
279 label_logout: Odhlášení
279 label_logout: Odhlášení
280 label_help: Nápověda
280 label_help: Nápověda
281 label_reported_issues: Nahlášené úkoly
281 label_reported_issues: Nahlášené úkoly
282 label_assigned_to_me_issues: Mé úkoly
282 label_assigned_to_me_issues: Mé úkoly
283 label_last_login: Poslední přihlášení
283 label_last_login: Poslední přihlášení
284 label_last_updates: Poslední změna
284 label_last_updates: Poslední změna
285 label_last_updates_plural: %d poslední změny
285 label_last_updates_plural: %d poslední změny
286 label_registered_on: Registrován
286 label_registered_on: Registrován
287 label_activity: Aktivita
287 label_activity: Aktivita
288 label_overall_activity: Celková aktivita
288 label_overall_activity: Celková aktivita
289 label_new: Nový
289 label_new: Nový
290 label_logged_as: Přihlášen jako
290 label_logged_as: Přihlášen jako
291 label_environment: Prostředí
291 label_environment: Prostředí
292 label_authentication: Autentifikace
292 label_authentication: Autentifikace
293 label_auth_source: Mód autentifikace
293 label_auth_source: Mód autentifikace
294 label_auth_source_new: Nový mód autentifikace
294 label_auth_source_new: Nový mód autentifikace
295 label_auth_source_plural: Módy autentifikace
295 label_auth_source_plural: Módy autentifikace
296 label_subproject_plural: Podprojekty
296 label_subproject_plural: Podprojekty
297 label_min_max_length: Min - Max délka
297 label_min_max_length: Min - Max délka
298 label_list: Seznam
298 label_list: Seznam
299 label_date: Datum
299 label_date: Datum
300 label_integer: Celé číslo
300 label_integer: Celé číslo
301 label_float: Desetiné číslo
301 label_float: Desetiné číslo
302 label_boolean: Ano/Ne
302 label_boolean: Ano/Ne
303 label_string: Text
303 label_string: Text
304 label_text: Dlouhý text
304 label_text: Dlouhý text
305 label_attribute: Atribut
305 label_attribute: Atribut
306 label_attribute_plural: Atributy
306 label_attribute_plural: Atributy
307 label_download: %d Download
307 label_download: %d Download
308 label_download_plural: %d Downloads
308 label_download_plural: %d Downloads
309 label_no_data: Žádné položky
309 label_no_data: Žádné položky
310 label_change_status: Změnit stav
310 label_change_status: Změnit stav
311 label_history: Historie
311 label_history: Historie
312 label_attachment: Soubor
312 label_attachment: Soubor
313 label_attachment_new: Nový soubor
313 label_attachment_new: Nový soubor
314 label_attachment_delete: Odstranit soubor
314 label_attachment_delete: Odstranit soubor
315 label_attachment_plural: Soubory
315 label_attachment_plural: Soubory
316 label_file_added: Soubor přidán
316 label_file_added: Soubor přidán
317 label_report: Přeheled
317 label_report: Přeheled
318 label_report_plural: Přehledy
318 label_report_plural: Přehledy
319 label_news: Novinky
319 label_news: Novinky
320 label_news_new: Přidat novinku
320 label_news_new: Přidat novinku
321 label_news_plural: Novinky
321 label_news_plural: Novinky
322 label_news_latest: Poslední novinky
322 label_news_latest: Poslední novinky
323 label_news_view_all: Zobrazit všechny novinky
323 label_news_view_all: Zobrazit všechny novinky
324 label_news_added: Novinka přidána
324 label_news_added: Novinka přidána
325 label_change_log: Protokol změn
325 label_change_log: Protokol změn
326 label_settings: Nastavení
326 label_settings: Nastavení
327 label_overview: Přehled
327 label_overview: Přehled
328 label_version: Verze
328 label_version: Verze
329 label_version_new: Nová verze
329 label_version_new: Nová verze
330 label_version_plural: Verze
330 label_version_plural: Verze
331 label_confirmation: Potvrzení
331 label_confirmation: Potvrzení
332 label_export_to: 'Také k dispozici:'
332 label_export_to: 'Také k dispozici:'
333 label_read: Načítá se...
333 label_read: Načítá se...
334 label_public_projects: Veřejné projekty
334 label_public_projects: Veřejné projekty
335 label_open_issues: otevřený
335 label_open_issues: otevřený
336 label_open_issues_plural: otevřené
336 label_open_issues_plural: otevřené
337 label_closed_issues: uzavřený
337 label_closed_issues: uzavřený
338 label_closed_issues_plural: uzavřené
338 label_closed_issues_plural: uzavřené
339 label_total: Celkem
339 label_total: Celkem
340 label_permissions: Práva
340 label_permissions: Práva
341 label_current_status: Aktuální stav
341 label_current_status: Aktuální stav
342 label_new_statuses_allowed: Nové povolené stavy
342 label_new_statuses_allowed: Nové povolené stavy
343 label_all: vše
343 label_all: vše
344 label_none: nic
344 label_none: nic
345 label_nobody: nikdo
345 label_nobody: nikdo
346 label_next: Další
346 label_next: Další
347 label_previous: Předchozí
347 label_previous: Předchozí
348 label_used_by: Použito
348 label_used_by: Použito
349 label_details: Detaily
349 label_details: Detaily
350 label_add_note: Přidat poznámku
350 label_add_note: Přidat poznámku
351 label_per_page: Na stránku
351 label_per_page: Na stránku
352 label_calendar: Kalendář
352 label_calendar: Kalendář
353 label_months_from: měsíců od
353 label_months_from: měsíců od
354 label_gantt: Ganttův graf
354 label_gantt: Ganttův graf
355 label_internal: Interní
355 label_internal: Interní
356 label_last_changes: posledních %d změn
356 label_last_changes: posledních %d změn
357 label_change_view_all: Zobrazit všechny změny
357 label_change_view_all: Zobrazit všechny změny
358 label_personalize_page: Přizpůsobit tuto stránku
358 label_personalize_page: Přizpůsobit tuto stránku
359 label_comment: Komentář
359 label_comment: Komentář
360 label_comment_plural: Komentáře
360 label_comment_plural: Komentáře
361 label_comment_add: Přidat komentáře
361 label_comment_add: Přidat komentáře
362 label_comment_added: Komentář přidán
362 label_comment_added: Komentář přidán
363 label_comment_delete: Odstranit komentář
363 label_comment_delete: Odstranit komentář
364 label_query: Uživatelský dotaz
364 label_query: Uživatelský dotaz
365 label_query_plural: Uživatelské dotazy
365 label_query_plural: Uživatelské dotazy
366 label_query_new: Nový dotaz
366 label_query_new: Nový dotaz
367 label_filter_add: Přidat filtr
367 label_filter_add: Přidat filtr
368 label_filter_plural: Filtry
368 label_filter_plural: Filtry
369 label_equals: je
369 label_equals: je
370 label_not_equals: není
370 label_not_equals: není
371 label_in_less_than: je měší než
371 label_in_less_than: je měší než
372 label_in_more_than: je větší než
372 label_in_more_than: je větší než
373 label_in: v
373 label_in: v
374 label_today: dnes
374 label_today: dnes
375 label_all_time: vše
375 label_all_time: vše
376 label_yesterday: včera
376 label_yesterday: včera
377 label_this_week: tento týden
377 label_this_week: tento týden
378 label_last_week: minulý týden
378 label_last_week: minulý týden
379 label_last_n_days: posledních %d dnů
379 label_last_n_days: posledních %d dnů
380 label_this_month: tento měsíc
380 label_this_month: tento měsíc
381 label_last_month: minulý měsíc
381 label_last_month: minulý měsíc
382 label_this_year: tento rok
382 label_this_year: tento rok
383 label_date_range: Časový rozsah
383 label_date_range: Časový rozsah
384 label_less_than_ago: před méně jak (dny)
384 label_less_than_ago: před méně jak (dny)
385 label_more_than_ago: před více jak (dny)
385 label_more_than_ago: před více jak (dny)
386 label_ago: před (dny)
386 label_ago: před (dny)
387 label_contains: obsahuje
387 label_contains: obsahuje
388 label_not_contains: neobsahuje
388 label_not_contains: neobsahuje
389 label_day_plural: dny
389 label_day_plural: dny
390 label_repository: Repository
390 label_repository: Repository
391 label_repository_plural: Repository
391 label_repository_plural: Repository
392 label_browse: Procházet
392 label_browse: Procházet
393 label_modification: %d změna
393 label_modification: %d změna
394 label_modification_plural: %d změn
394 label_modification_plural: %d změn
395 label_revision: Revize
395 label_revision: Revize
396 label_revision_plural: Revizí
396 label_revision_plural: Revizí
397 label_associated_revisions: Související verze
397 label_associated_revisions: Související verze
398 label_added: přidáno
398 label_added: přidáno
399 label_modified: změněno
399 label_modified: změněno
400 label_deleted: odstraněno
400 label_deleted: odstraněno
401 label_latest_revision: Poslední revize
401 label_latest_revision: Poslední revize
402 label_latest_revision_plural: Poslední revize
402 label_latest_revision_plural: Poslední revize
403 label_view_revisions: Zobrazit revize
403 label_view_revisions: Zobrazit revize
404 label_max_size: Maximální velikost
404 label_max_size: Maximální velikost
405 label_on: 'zapnuto'
405 label_on: 'zapnuto'
406 label_sort_highest: Přesunout na začátek
406 label_sort_highest: Přesunout na začátek
407 label_sort_higher: Přesunout nahoru
407 label_sort_higher: Přesunout nahoru
408 label_sort_lower: Přesunout dolů
408 label_sort_lower: Přesunout dolů
409 label_sort_lowest: Přesunout na konec
409 label_sort_lowest: Přesunout na konec
410 label_roadmap: Plán
410 label_roadmap: Plán
411 label_roadmap_due_in: Zbývá
411 label_roadmap_due_in: Zbývá
412 label_roadmap_overdue: %s pozdě
412 label_roadmap_overdue: %s pozdě
413 label_roadmap_no_issues: Pro tuto verzi nejsou žádné úkoly
413 label_roadmap_no_issues: Pro tuto verzi nejsou žádné úkoly
414 label_search: Hledat
414 label_search: Hledat
415 label_result_plural: Výsledky
415 label_result_plural: Výsledky
416 label_all_words: Všechna slova
416 label_all_words: Všechna slova
417 label_wiki: Wiki
417 label_wiki: Wiki
418 label_wiki_edit: Wiki úprava
418 label_wiki_edit: Wiki úprava
419 label_wiki_edit_plural: Wiki úpravy
419 label_wiki_edit_plural: Wiki úpravy
420 label_wiki_page: Wiki stránka
420 label_wiki_page: Wiki stránka
421 label_wiki_page_plural: Wiki stránky
421 label_wiki_page_plural: Wiki stránky
422 label_index_by_title: Index dle názvu
422 label_index_by_title: Index dle názvu
423 label_index_by_date: Index dle data
423 label_index_by_date: Index dle data
424 label_current_version: Aktuální verze
424 label_current_version: Aktuální verze
425 label_preview: Náhled
425 label_preview: Náhled
426 label_feed_plural: Příspěvky
426 label_feed_plural: Příspěvky
427 label_changes_details: Detail všech změn
427 label_changes_details: Detail všech změn
428 label_issue_tracking: Sledování úkolů
428 label_issue_tracking: Sledování úkolů
429 label_spent_time: Strávený čas
429 label_spent_time: Strávený čas
430 label_f_hour: %.2f hodina
430 label_f_hour: %.2f hodina
431 label_f_hour_plural: %.2f hodin
431 label_f_hour_plural: %.2f hodin
432 label_time_tracking: Sledování času
432 label_time_tracking: Sledování času
433 label_change_plural: Změny
433 label_change_plural: Změny
434 label_statistics: Statistiky
434 label_statistics: Statistiky
435 label_commits_per_month: Commitů za měsíc
435 label_commits_per_month: Commitů za měsíc
436 label_commits_per_author: Commitů za autora
436 label_commits_per_author: Commitů za autora
437 label_view_diff: Zobrazit rozdíly
437 label_view_diff: Zobrazit rozdíly
438 label_diff_inline: uvnitř
438 label_diff_inline: uvnitř
439 label_diff_side_by_side: vedle sebe
439 label_diff_side_by_side: vedle sebe
440 label_options: Nastavení
440 label_options: Nastavení
441 label_copy_workflow_from: Kopírovat workflow z
441 label_copy_workflow_from: Kopírovat workflow z
442 label_permissions_report: Přehled práv
442 label_permissions_report: Přehled práv
443 label_watched_issues: Sledované úkoly
443 label_watched_issues: Sledované úkoly
444 label_related_issues: Související úkoly
444 label_related_issues: Související úkoly
445 label_applied_status: Použitý stav
445 label_applied_status: Použitý stav
446 label_loading: Nahrávám...
446 label_loading: Nahrávám...
447 label_relation_new: Nová souvislost
447 label_relation_new: Nová souvislost
448 label_relation_delete: Odstranit souvislost
448 label_relation_delete: Odstranit souvislost
449 label_relates_to: související s
449 label_relates_to: související s
450 label_duplicates: duplicity
450 label_duplicates: duplicity
451 label_blocks: bloků
451 label_blocks: bloků
452 label_blocked_by: zablokován
452 label_blocked_by: zablokován
453 label_precedes: předchází
453 label_precedes: předchází
454 label_follows: následuje
454 label_follows: následuje
455 label_end_to_start: od konce do začátku
455 label_end_to_start: od konce do začátku
456 label_end_to_end: od konce do konce
456 label_end_to_end: od konce do konce
457 label_start_to_start: od začátku do začátku
457 label_start_to_start: od začátku do začátku
458 label_start_to_end: od začátku do konce
458 label_start_to_end: od začátku do konce
459 label_stay_logged_in: Zůstat přihlášený
459 label_stay_logged_in: Zůstat přihlášený
460 label_disabled: zakázán
460 label_disabled: zakázán
461 label_show_completed_versions: Ukázat dokončené verze
461 label_show_completed_versions: Ukázat dokončené verze
462 label_me:
462 label_me:
463 label_board: Fórum
463 label_board: Fórum
464 label_board_new: Nové fórum
464 label_board_new: Nové fórum
465 label_board_plural: Fóra
465 label_board_plural: Fóra
466 label_topic_plural: Témata
466 label_topic_plural: Témata
467 label_message_plural: Zprávy
467 label_message_plural: Zprávy
468 label_message_last: Poslední zpráva
468 label_message_last: Poslední zpráva
469 label_message_new: Nová zpráva
469 label_message_new: Nová zpráva
470 label_message_posted: Zpráva přidána
470 label_message_posted: Zpráva přidána
471 label_reply_plural: Odpovědi
471 label_reply_plural: Odpovědi
472 label_send_information: Zaslat informace o účtu uživateli
472 label_send_information: Zaslat informace o účtu uživateli
473 label_year: Rok
473 label_year: Rok
474 label_month: Měsíc
474 label_month: Měsíc
475 label_week: Týden
475 label_week: Týden
476 label_date_from: Od
476 label_date_from: Od
477 label_date_to: Do
477 label_date_to: Do
478 label_language_based: Podle výchozího jazyku
478 label_language_based: Podle výchozího jazyku
479 label_sort_by: Seřadit podle %s
479 label_sort_by: Seřadit podle %s
480 label_send_test_email: Poslat testovací email
480 label_send_test_email: Poslat testovací email
481 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
481 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
482 label_module_plural: Moduly
482 label_module_plural: Moduly
483 label_added_time_by: 'Přidáno uživatelem %s před %s'
483 label_added_time_by: 'Přidáno uživatelem %s před %s'
484 label_updated_time: 'Aktualizováno před %s'
484 label_updated_time: 'Aktualizováno před %s'
485 label_jump_to_a_project: Zvolit projekt...
485 label_jump_to_a_project: Zvolit projekt...
486 label_file_plural: Soubory
486 label_file_plural: Soubory
487 label_changeset_plural: Changesety
487 label_changeset_plural: Changesety
488 label_default_columns: Výchozí sloupce
488 label_default_columns: Výchozí sloupce
489 label_no_change_option: (beze změny)
489 label_no_change_option: (beze změny)
490 label_bulk_edit_selected_issues: Bulk edit selected issues
490 label_bulk_edit_selected_issues: Bulk edit selected issues
491 label_theme: Téma
491 label_theme: Téma
492 label_default: Výchozí
492 label_default: Výchozí
493 label_search_titles_only: Vyhledávat pouze v názvech
493 label_search_titles_only: Vyhledávat pouze v názvech
494 label_user_mail_option_all: "Pro všechny události všech mých projektů"
494 label_user_mail_option_all: "Pro všechny události všech mých projektů"
495 label_user_mail_option_selected: "Pro všechny události vybraných projektů..."
495 label_user_mail_option_selected: "Pro všechny události vybraných projektů..."
496 label_user_mail_option_none: "Pouze pro události které sleduji nebo které se mne týkají"
496 label_user_mail_option_none: "Pouze pro události které sleduji nebo které se mne týkají"
497 label_user_mail_no_self_notified: "Nezasílat informace o mnou vytvořených změnách"
497 label_user_mail_no_self_notified: "Nezasílat informace o mnou vytvořených změnách"
498 label_registration_activation_by_email: aktivace účtu emailem
498 label_registration_activation_by_email: aktivace účtu emailem
499 label_registration_manual_activation: manuální aktivace účtu
499 label_registration_manual_activation: manuální aktivace účtu
500 label_registration_automatic_activation: automatická aktivace účtu
500 label_registration_automatic_activation: automatická aktivace účtu
501 label_display_per_page: '%s na stránku'
501 label_display_per_page: '%s na stránku'
502 label_age: Věk
502 label_age: Věk
503 label_change_properties: Změnit vlastnosti
503 label_change_properties: Změnit vlastnosti
504 label_general: Obecné
504 label_general: Obecné
505 label_more: Více
505 label_more: Více
506 label_scm: SCM
506 label_scm: SCM
507 label_plugins: Doplňky
507 label_plugins: Doplňky
508 label_ldap_authentication: Autentifikace LDAP
508 label_ldap_authentication: Autentifikace LDAP
509 label_downloads_abbr: D/L
509 label_downloads_abbr: D/L
510 label_optional_description: Volitelný popis
510 label_optional_description: Volitelný popis
511 label_add_another_file: Přidat další soubor
511 label_add_another_file: Přidat další soubor
512 label_preferences: Nastavení
512 label_preferences: Nastavení
513 label_chronological_order: V chronologickém pořadí
513 label_chronological_order: V chronologickém pořadí
514 label_reverse_chronological_order: V obrácaném chronologickém pořadí
514 label_reverse_chronological_order: V obrácaném chronologickém pořadí
515
515
516 button_login: Přihlásit
516 button_login: Přihlásit
517 button_submit: Potvrdit
517 button_submit: Potvrdit
518 button_save: Uložit
518 button_save: Uložit
519 button_check_all: Zašrtnout vše
519 button_check_all: Zašrtnout vše
520 button_uncheck_all: Odšrtnout vše
520 button_uncheck_all: Odšrtnout vše
521 button_delete: Odstranit
521 button_delete: Odstranit
522 button_create: Vytvořit
522 button_create: Vytvořit
523 button_test: Test
523 button_test: Test
524 button_edit: Upravit
524 button_edit: Upravit
525 button_add: Přidat
525 button_add: Přidat
526 button_change: Změnit
526 button_change: Změnit
527 button_apply: Použít
527 button_apply: Použít
528 button_clear: Smazat
528 button_clear: Smazat
529 button_lock: Zamknout
529 button_lock: Zamknout
530 button_unlock: Odemknout
530 button_unlock: Odemknout
531 button_download: Stáhnout
531 button_download: Stáhnout
532 button_list: Vypsat
532 button_list: Vypsat
533 button_view: Zobrazit
533 button_view: Zobrazit
534 button_move: Přesunout
534 button_move: Přesunout
535 button_back: Zpět
535 button_back: Zpět
536 button_cancel: Storno
536 button_cancel: Storno
537 button_activate: Aktivovat
537 button_activate: Aktivovat
538 button_sort: Seřadit
538 button_sort: Seřadit
539 button_log_time: Přidat čas
539 button_log_time: Přidat čas
540 button_rollback: Zpět k této verzi
540 button_rollback: Zpět k této verzi
541 button_watch: Sledovat
541 button_watch: Sledovat
542 button_unwatch: Nesledovat
542 button_unwatch: Nesledovat
543 button_reply: Odpovědět
543 button_reply: Odpovědět
544 button_archive: Archivovat
544 button_archive: Archivovat
545 button_unarchive: Odarchivovat
545 button_unarchive: Odarchivovat
546 button_reset: Reset
546 button_reset: Reset
547 button_rename: Přejmenovat
547 button_rename: Přejmenovat
548 button_change_password: Změnit heslo
548 button_change_password: Změnit heslo
549 button_copy: Kopírovat
549 button_copy: Kopírovat
550 button_annotate: Komentovat
550 button_annotate: Komentovat
551 button_update: Aktualizovat
551 button_update: Aktualizovat
552 button_configure: Konfigurovat
552 button_configure: Konfigurovat
553
553
554 status_active: aktivní
554 status_active: aktivní
555 status_registered: registrovaný
555 status_registered: registrovaný
556 status_locked: uzamčený
556 status_locked: uzamčený
557
557
558 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
558 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
559 text_regexp_info: např. ^[A-Z0-9]+$
559 text_regexp_info: např. ^[A-Z0-9]+$
560 text_min_max_length_info: 0 znamená bez limitu
560 text_min_max_length_info: 0 znamená bez limitu
561 text_project_destroy_confirmation: Jste si jisti, že chcete odstranit tento projekt a všechna související data ?
561 text_project_destroy_confirmation: Jste si jisti, že chcete odstranit tento projekt a všechna související data ?
562 text_workflow_edit: Vyberte roli a frontu k editaci workflow
562 text_workflow_edit: Vyberte roli a frontu k editaci workflow
563 text_are_you_sure: Jste si jisti?
563 text_are_you_sure: Jste si jisti?
564 text_journal_changed: změněno z %s na %s
564 text_journal_changed: změněno z %s na %s
565 text_journal_set_to: nastaveno na %s
565 text_journal_set_to: nastaveno na %s
566 text_journal_deleted: odstraněno
566 text_journal_deleted: odstraněno
567 text_tip_task_begin_day: úkol začíná v tento den
567 text_tip_task_begin_day: úkol začíná v tento den
568 text_tip_task_end_day: úkol končí v tento den
568 text_tip_task_end_day: úkol končí v tento den
569 text_tip_task_begin_end_day: úkol začíná a končí v tento den
569 text_tip_task_begin_end_day: úkol začíná a končí v tento den
570 text_project_identifier_info: 'Jsou povolena malá písmena (a-z), čísla a pomlčky.<br />Po uložení již není možné identifikátor změnit.'
570 text_project_identifier_info: 'Jsou povolena malá písmena (a-z), čísla a pomlčky.<br />Po uložení již není možné identifikátor změnit.'
571 text_caracters_maximum: %d znaků maximálně.
571 text_caracters_maximum: %d znaků maximálně.
572 text_caracters_minimum: Musí být alespoň %d znaků dlouhé.
572 text_caracters_minimum: Musí být alespoň %d znaků dlouhé.
573 text_length_between: Délka mezi %d a %d znaky.
573 text_length_between: Délka mezi %d a %d znaky.
574 text_tracker_no_workflow: Pro tuto frontu není definován žádný workflow
574 text_tracker_no_workflow: Pro tuto frontu není definován žádný workflow
575 text_unallowed_characters: Nepovolené znaky
575 text_unallowed_characters: Nepovolené znaky
576 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
576 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
577 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
577 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
578 text_issue_added: Úkol %s byl vytvořen uživatelem %s.
578 text_issue_added: Úkol %s byl vytvořen uživatelem %s.
579 text_issue_updated: Úkol %s byl aktualizován uživatelem %s.
579 text_issue_updated: Úkol %s byl aktualizován uživatelem %s.
580 text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto WIKI a celý její obsah?
580 text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto WIKI a celý její obsah?
581 text_issue_category_destroy_question: Některé úkoly (%d) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?
581 text_issue_category_destroy_question: Některé úkoly (%d) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?
582 text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii
582 text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii
583 text_issue_category_reassign_to: Přiřadit úkoly do této kategorie
583 text_issue_category_reassign_to: Přiřadit úkoly do této kategorie
584 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))."
584 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))."
585 text_no_configuration_data: "Role, fronty, stavy úkolů ani workflow nebyly zatím nakonfigurovány.\nVelice doporučujeme nahrát výchozí konfiguraci.Po si můžete vše upravit"
585 text_no_configuration_data: "Role, fronty, stavy úkolů ani workflow nebyly zatím nakonfigurovány.\nVelice doporučujeme nahrát výchozí konfiguraci.Po si můžete vše upravit"
586 text_load_default_configuration: Nahrát výchozí konfiguraci
586 text_load_default_configuration: Nahrát výchozí konfiguraci
587 text_status_changed_by_changeset: Použito v changesetu %s.
587 text_status_changed_by_changeset: Použito v changesetu %s.
588 text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
588 text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
589 text_select_project_modules: 'Aktivní moduly v tomto projektu:'
589 text_select_project_modules: 'Aktivní moduly v tomto projektu:'
590 text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno
590 text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno
591 text_file_repository_writable: Povolen zápis do repository
591 text_file_repository_writable: Povolen zápis do repository
592 text_rmagick_available: RMagick k dispozici (volitelné)
592 text_rmagick_available: RMagick k dispozici (volitelné)
593 text_destroy_time_entries_question: U úkolů, které chcete odstranit je evidováno %.02f práce. Co chete udělat?
593 text_destroy_time_entries_question: U úkolů, které chcete odstranit je evidováno %.02f práce. Co chete udělat?
594 text_destroy_time_entries: Odstranit evidované hodiny.
594 text_destroy_time_entries: Odstranit evidované hodiny.
595 text_assign_time_entries_to_project: Přiřadit evidované hodiny projektu
595 text_assign_time_entries_to_project: Přiřadit evidované hodiny projektu
596 text_reassign_time_entries: 'Přeřadit evidované hodiny k tomuto úkolu:'
596 text_reassign_time_entries: 'Přeřadit evidované hodiny k tomuto úkolu:'
597
597
598 default_role_manager: Manažer
598 default_role_manager: Manažer
599 default_role_developper: Vývojář
599 default_role_developper: Vývojář
600 default_role_reporter: Reportér
600 default_role_reporter: Reportér
601 default_tracker_bug: Chyba
601 default_tracker_bug: Chyba
602 default_tracker_feature: Požadavek
602 default_tracker_feature: Požadavek
603 default_tracker_support: Podpora
603 default_tracker_support: Podpora
604 default_issue_status_new: Nový
604 default_issue_status_new: Nový
605 default_issue_status_assigned: Přiřazený
605 default_issue_status_assigned: Přiřazený
606 default_issue_status_resolved: Vyřešený
606 default_issue_status_resolved: Vyřešený
607 default_issue_status_feedback: Čeká se
607 default_issue_status_feedback: Čeká se
608 default_issue_status_closed: Uzavřený
608 default_issue_status_closed: Uzavřený
609 default_issue_status_rejected: Odmítnutý
609 default_issue_status_rejected: Odmítnutý
610 default_doc_category_user: Uživatelská dokumentace
610 default_doc_category_user: Uživatelská dokumentace
611 default_doc_category_tech: Technická dokumentace
611 default_doc_category_tech: Technická dokumentace
612 default_priority_low: Nízká
612 default_priority_low: Nízká
613 default_priority_normal: Normální
613 default_priority_normal: Normální
614 default_priority_high: Vysoká
614 default_priority_high: Vysoká
615 default_priority_urgent: Urgentní
615 default_priority_urgent: Urgentní
616 default_priority_immediate: Okamžitá
616 default_priority_immediate: Okamžitá
617 default_activity_design: Design
617 default_activity_design: Design
618 default_activity_development: Vývoj
618 default_activity_development: Vývoj
619
619
620 enumeration_issue_priorities: Priority úkolů
620 enumeration_issue_priorities: Priority úkolů
621 enumeration_doc_categories: Kategorie dokumentů
621 enumeration_doc_categories: Kategorie dokumentů
622 enumeration_activities: Aktivity (sledování času)
622 enumeration_activities: Aktivity (sledování času)
623 error_scm_annotate: "Položka neexistuje nebo nemůže být komentována."
623 error_scm_annotate: "Položka neexistuje nebo nemůže být komentována."
624 label_planning: Plánování
624 label_planning: Plánování
625 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
625 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
626 label_and_its_subprojects: %s and its subprojects
626 label_and_its_subprojects: %s and its subprojects
627 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
627 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
628 mail_subject_reminder: "%d issue(s) due in the next days"
628 mail_subject_reminder: "%d issue(s) due in the next days"
629 text_user_wrote: '%s wrote:'
629 text_user_wrote: '%s wrote:'
630 label_duplicated_by: duplicated by
630 label_duplicated_by: duplicated by
631 setting_enabled_scm: Enabled SCM
631 setting_enabled_scm: Enabled SCM
632 text_enumeration_category_reassign_to: 'Reassign them to this value:'
632 text_enumeration_category_reassign_to: 'Reassign them to this value:'
633 text_enumeration_destroy_question: '%d objects are assigned to this value.'
633 text_enumeration_destroy_question: '%d objects are assigned to this value.'
634 label_incoming_emails: Incoming emails
635 label_generate_key: Generate a key
636 setting_mail_handler_api_enabled: Enable WS for incoming emails
637 setting_mail_handler_api_key: API key
@@ -1,630 +1,634
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,Marts,April,Maj,Juni,Juli,August,September,Oktober,November,December
4 actionview_datehelper_select_month_names: Januar,Februar,Marts,April,Maj,Juni,Juli,August,September,Oktober,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dage
9 actionview_datehelper_time_in_words_day_plural: %d dage
10 actionview_datehelper_time_in_words_hour_about: cirka en time
10 actionview_datehelper_time_in_words_hour_about: cirka en time
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timer
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timer
12 actionview_datehelper_time_in_words_hour_about_single: cirka en time
12 actionview_datehelper_time_in_words_hour_about_single: cirka en time
13 actionview_datehelper_time_in_words_minute: 1 minut
13 actionview_datehelper_time_in_words_minute: 1 minut
14 actionview_datehelper_time_in_words_minute_half: et halvt minut
14 actionview_datehelper_time_in_words_minute_half: et halvt minut
15 actionview_datehelper_time_in_words_minute_less_than: mindre end et minut
15 actionview_datehelper_time_in_words_minute_less_than: mindre end et minut
16 actionview_datehelper_time_in_words_minute_plural: %d minutter
16 actionview_datehelper_time_in_words_minute_plural: %d minutter
17 actionview_datehelper_time_in_words_minute_single: 1 minut
17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 actionview_datehelper_time_in_words_second_less_than: mindre end et sekund
18 actionview_datehelper_time_in_words_second_less_than: mindre end et sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre end %d sekunder
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre end %d sekunder
20 actionview_instancetag_blank_option: Vælg venligst
20 actionview_instancetag_blank_option: Vælg venligst
21
21
22 activerecord_error_inclusion: er ikke i listen
22 activerecord_error_inclusion: er ikke i listen
23 activerecord_error_exclusion: er reserveret
23 activerecord_error_exclusion: er reserveret
24 activerecord_error_invalid: er ugyldig
24 activerecord_error_invalid: er ugyldig
25 activerecord_error_confirmation: passer ikke bekræftelsen
25 activerecord_error_confirmation: passer ikke bekræftelsen
26 activerecord_error_accepted: skal accepteres
26 activerecord_error_accepted: skal accepteres
27 activerecord_error_empty: kan ikke være tom
27 activerecord_error_empty: kan ikke være tom
28 activerecord_error_blank: kan ikke være blank
28 activerecord_error_blank: kan ikke være blank
29 activerecord_error_too_long: er for lang
29 activerecord_error_too_long: er for lang
30 activerecord_error_too_short: er for kort
30 activerecord_error_too_short: er for kort
31 activerecord_error_wrong_length: har den forkerte længde
31 activerecord_error_wrong_length: har den forkerte længde
32 activerecord_error_taken: er allerede valgt
32 activerecord_error_taken: er allerede valgt
33 activerecord_error_not_a_number: er ikke et nummer
33 activerecord_error_not_a_number: er ikke et nummer
34 activerecord_error_not_a_date: er en ugyldig dato
34 activerecord_error_not_a_date: er en ugyldig dato
35 activerecord_error_greater_than_start_date: skal være senere end start datoen
35 activerecord_error_greater_than_start_date: skal være senere end start datoen
36 activerecord_error_not_same_project: høre ikke til samme projekt
36 activerecord_error_not_same_project: høre ikke til samme projekt
37 activerecord_error_circular_dependency: Denne relation vil skabe et afhængigheds forhold
37 activerecord_error_circular_dependency: Denne relation vil skabe et afhængigheds forhold
38
38
39 general_fmt_age: %d år
39 general_fmt_age: %d år
40 general_fmt_age_plural: %d år
40 general_fmt_age_plural: %d år
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nej'
45 general_text_No: 'Nej'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nej'
47 general_text_no: 'nej'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Danish (Dansk)'
49 general_lang_name: 'Danish (Dansk)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Mandag,Tirsdag,Onsdag,Torsdag,Fredag,Lørdag,Søndag
53 general_day_names: Mandag,Tirsdag,Onsdag,Torsdag,Fredag,Lørdag,Søndag
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Kontoen er opdateret.
56 notice_account_updated: Kontoen er opdateret.
57 notice_account_invalid_creditentials: Ugyldig bruger og kodeord
57 notice_account_invalid_creditentials: Ugyldig bruger og kodeord
58 notice_account_password_updated: Kodeordet er opdateret.
58 notice_account_password_updated: Kodeordet er opdateret.
59 notice_account_wrong_password: Forkert kodeord
59 notice_account_wrong_password: Forkert kodeord
60 notice_account_register_done: Kontoen er oprettet. For at aktivere kontoen, ska du klikke på linket i den tilsendte email.
60 notice_account_register_done: Kontoen er oprettet. For at aktivere kontoen, ska du klikke på linket i den tilsendte email.
61 notice_account_unknown_email: Ukendt bruger.
61 notice_account_unknown_email: Ukendt bruger.
62 notice_can_t_change_password: Denne konto benytter en ekstern sikkerheds godkendelse. Det er ikke muligt at skifte kodeord.
62 notice_can_t_change_password: Denne konto benytter en ekstern sikkerheds godkendelse. Det er ikke muligt at skifte kodeord.
63 notice_account_lost_email_sent: En email med instruktioner til at vælge et nyt kodeord er afsendt til dig.
63 notice_account_lost_email_sent: En email med instruktioner til at vælge et nyt kodeord er afsendt til dig.
64 notice_account_activated: Din konto er aktiveret. Du kan nu logge ind.
64 notice_account_activated: Din konto er aktiveret. Du kan nu logge ind.
65 notice_successful_create: Succesfuld oprettelsen.
65 notice_successful_create: Succesfuld oprettelsen.
66 notice_successful_update: Succesfuld opdatering.
66 notice_successful_update: Succesfuld opdatering.
67 notice_successful_delete: Succesfuld sletning.
67 notice_successful_delete: Succesfuld sletning.
68 notice_successful_connection: Succesfuld forbindelse.
68 notice_successful_connection: Succesfuld forbindelse.
69 notice_file_not_found: Siden du forsøger at tilgå, eksisterer ikke eller er blevet fjernet.
69 notice_file_not_found: Siden du forsøger at tilgå, eksisterer ikke eller er blevet fjernet.
70 notice_locking_conflict: Data er opdateret af en anden bruger.
70 notice_locking_conflict: Data er opdateret af en anden bruger.
71 notice_not_authorized: Du har ike adgang til denne side.
71 notice_not_authorized: Du har ike adgang til denne side.
72 notice_email_sent: En email er sendt til %s
72 notice_email_sent: En email er sendt til %s
73 notice_email_error: En fejl opstod under afsendelse af email (%s)
73 notice_email_error: En fejl opstod under afsendelse af email (%s)
74 notice_feeds_access_key_reseted: Din RSS adgangs nøgle er nulstillet.
74 notice_feeds_access_key_reseted: Din RSS adgangs nøgle er nulstillet.
75 notice_failed_to_save_issues: "Det mislykkedes at gemme %d sage(r) %d valgt: %s."
75 notice_failed_to_save_issues: "Det mislykkedes at gemme %d sage(r) %d valgt: %s."
76 notice_no_issue_selected: "Ingen sag er valgt! vælg venligst hvilke emner du vil rette."
76 notice_no_issue_selected: "Ingen sag er valgt! vælg venligst hvilke emner du vil rette."
77 notice_account_pending: "Din konto er oprettet, og afventer administratorens godkendelse."
77 notice_account_pending: "Din konto er oprettet, og afventer administratorens godkendelse."
78 notice_default_data_loaded: Default konfiguration er indlæst.
78 notice_default_data_loaded: Default konfiguration er indlæst.
79
79
80 error_can_t_load_default_data: "Standard konfiguration kunne ikke indlæses: %s"
80 error_can_t_load_default_data: "Standard konfiguration kunne ikke indlæses: %s"
81 error_scm_not_found: "Adgang og/eller revision blev ikke fundet i det valgte repository."
81 error_scm_not_found: "Adgang og/eller revision blev ikke fundet i det valgte repository."
82 error_scm_command_failed: "En fejl opstod under fobindelsen til det valgte repository: %s"
82 error_scm_command_failed: "En fejl opstod under fobindelsen til det valgte repository: %s"
83
83
84 mail_subject_lost_password: Dit %s kodeord
84 mail_subject_lost_password: Dit %s kodeord
85 mail_body_lost_password: 'For at ændre dit kodeord, klik dette link:'
85 mail_body_lost_password: 'For at ændre dit kodeord, klik dette link:'
86 mail_subject_register: %s konto aktivering
86 mail_subject_register: %s konto aktivering
87 mail_body_register: 'For at aktivere din konto, klik dette link:'
87 mail_body_register: 'For at aktivere din konto, klik dette link:'
88 mail_body_account_information_external: Du kan bruge din "%s" konto til at logge ind.
88 mail_body_account_information_external: Du kan bruge din "%s" konto til at logge ind.
89 mail_body_account_information: Din konto information
89 mail_body_account_information: Din konto information
90 mail_subject_account_activation_request: %s konto aktivering
90 mail_subject_account_activation_request: %s konto aktivering
91 mail_body_account_activation_request: 'En ny bruger (%s) er registreret. Godkend venligst kontoen:'
91 mail_body_account_activation_request: 'En ny bruger (%s) er registreret. Godkend venligst kontoen:'
92
92
93 gui_validation_error: 1 fejl
93 gui_validation_error: 1 fejl
94 gui_validation_error_plural: %d fejl
94 gui_validation_error_plural: %d fejl
95
95
96 field_name: Navn
96 field_name: Navn
97 field_description: Beskrivelse
97 field_description: Beskrivelse
98 field_summary: Sammenfatning
98 field_summary: Sammenfatning
99 field_is_required: Skal udfyldes
99 field_is_required: Skal udfyldes
100 field_firstname: Fornavn
100 field_firstname: Fornavn
101 field_lastname: Efternavn
101 field_lastname: Efternavn
102 field_mail: Email
102 field_mail: Email
103 field_filename: Fil
103 field_filename: Fil
104 field_filesize: Størrelse
104 field_filesize: Størrelse
105 field_downloads: Downloads
105 field_downloads: Downloads
106 field_author: Forfatter
106 field_author: Forfatter
107 field_created_on: Oprettet
107 field_created_on: Oprettet
108 field_updated_on: Opdateret
108 field_updated_on: Opdateret
109 field_field_format: Format
109 field_field_format: Format
110 field_is_for_all: For alle projekter
110 field_is_for_all: For alle projekter
111 field_possible_values: Mulige værdier
111 field_possible_values: Mulige værdier
112 field_regexp: Regulære udtryk
112 field_regexp: Regulære udtryk
113 field_min_length: Minimum længde
113 field_min_length: Minimum længde
114 field_max_length: Maximal længde
114 field_max_length: Maximal længde
115 field_value: Værdi
115 field_value: Værdi
116 field_category: Kategori
116 field_category: Kategori
117 field_title: Titel
117 field_title: Titel
118 field_project: Projekt
118 field_project: Projekt
119 field_issue: Sag
119 field_issue: Sag
120 field_status: Status
120 field_status: Status
121 field_notes: Noter
121 field_notes: Noter
122 field_is_closed: Sagen er lukket
122 field_is_closed: Sagen er lukket
123 field_is_default: Standard værdi
123 field_is_default: Standard værdi
124 field_tracker: Type
124 field_tracker: Type
125 field_subject: Emne
125 field_subject: Emne
126 field_due_date: Deadline
126 field_due_date: Deadline
127 field_assigned_to: Tildelt til
127 field_assigned_to: Tildelt til
128 field_priority: Prioritet
128 field_priority: Prioritet
129 field_fixed_version: Target version
129 field_fixed_version: Target version
130 field_user: Bruger
130 field_user: Bruger
131 field_role: Rolle
131 field_role: Rolle
132 field_homepage: Hjemmeside
132 field_homepage: Hjemmeside
133 field_is_public: Offentlig
133 field_is_public: Offentlig
134 field_parent: Underprojekt af
134 field_parent: Underprojekt af
135 field_is_in_chlog: Sager vist i ændringer
135 field_is_in_chlog: Sager vist i ændringer
136 field_is_in_roadmap: Sager vist i roadmap
136 field_is_in_roadmap: Sager vist i roadmap
137 field_login: Login
137 field_login: Login
138 field_mail_notification: Email notifikationer
138 field_mail_notification: Email notifikationer
139 field_admin: Administrator
139 field_admin: Administrator
140 field_last_login_on: Sidste forbindelse
140 field_last_login_on: Sidste forbindelse
141 field_language: Sprog
141 field_language: Sprog
142 field_effective_date: Dato
142 field_effective_date: Dato
143 field_password: Kodeord
143 field_password: Kodeord
144 field_new_password: Nyt kodeord
144 field_new_password: Nyt kodeord
145 field_password_confirmation: Bekræft
145 field_password_confirmation: Bekræft
146 field_version: Version
146 field_version: Version
147 field_type: Type
147 field_type: Type
148 field_host: Vært
148 field_host: Vært
149 field_port: Port
149 field_port: Port
150 field_account: Kode
150 field_account: Kode
151 field_base_dn: Base DN
151 field_base_dn: Base DN
152 field_attr_login: Login attribut
152 field_attr_login: Login attribut
153 field_attr_firstname: Fornavn attribut
153 field_attr_firstname: Fornavn attribut
154 field_attr_lastname: Efternavn attribut
154 field_attr_lastname: Efternavn attribut
155 field_attr_mail: Email attribut
155 field_attr_mail: Email attribut
156 field_onthefly: løbende bruger oprettelse
156 field_onthefly: løbende bruger oprettelse
157 field_start_date: Start
157 field_start_date: Start
158 field_done_ratio: %% Færdig
158 field_done_ratio: %% Færdig
159 field_auth_source: Sikkerheds metode
159 field_auth_source: Sikkerheds metode
160 field_hide_mail: Skjul min email
160 field_hide_mail: Skjul min email
161 field_comments: Kommentar
161 field_comments: Kommentar
162 field_url: URL
162 field_url: URL
163 field_start_page: Start side
163 field_start_page: Start side
164 field_subproject: Underprojekt
164 field_subproject: Underprojekt
165 field_hours: Timer
165 field_hours: Timer
166 field_activity: Aktivitet
166 field_activity: Aktivitet
167 field_spent_on: Dato
167 field_spent_on: Dato
168 field_identifier: Identificering
168 field_identifier: Identificering
169 field_is_filter: Brugt som et filter
169 field_is_filter: Brugt som et filter
170 field_issue_to_id: Beslægtede sag
170 field_issue_to_id: Beslægtede sag
171 field_delay: Udsættelse
171 field_delay: Udsættelse
172 field_assignable: Sager kan tildeles denne rolle
172 field_assignable: Sager kan tildeles denne rolle
173 field_redirect_existing_links: Videresend eksisterende links
173 field_redirect_existing_links: Videresend eksisterende links
174 field_estimated_hours: Estimeret tid
174 field_estimated_hours: Estimeret tid
175 field_column_names: Kolonner
175 field_column_names: Kolonner
176 field_time_zone: Tids zone
176 field_time_zone: Tids zone
177 field_searchable: Søgbar
177 field_searchable: Søgbar
178 field_default_value: Standard værdi
178 field_default_value: Standard værdi
179
179
180 setting_app_title: Applikations titel
180 setting_app_title: Applikations titel
181 setting_app_subtitle: Applikations undertekst
181 setting_app_subtitle: Applikations undertekst
182 setting_welcome_text: Velkomst tekst
182 setting_welcome_text: Velkomst tekst
183 setting_default_language: Standard sporg
183 setting_default_language: Standard sporg
184 setting_login_required: Sikkerhed påkrævet
184 setting_login_required: Sikkerhed påkrævet
185 setting_self_registration: Bruger oprettelse
185 setting_self_registration: Bruger oprettelse
186 setting_attachment_max_size: Vedhæftede filers max størrelse
186 setting_attachment_max_size: Vedhæftede filers max størrelse
187 setting_issues_export_limit: Sags eksporterings begrænsning
187 setting_issues_export_limit: Sags eksporterings begrænsning
188 setting_mail_from: Afsender email
188 setting_mail_from: Afsender email
189 setting_bcc_recipients: Blind carbon copy modtager (bcc)
189 setting_bcc_recipients: Blind carbon copy modtager (bcc)
190 setting_host_name: Værts navn
190 setting_host_name: Værts navn
191 setting_text_formatting: Tekst formattering
191 setting_text_formatting: Tekst formattering
192 setting_wiki_compression: Wiki historik komprimering
192 setting_wiki_compression: Wiki historik komprimering
193 setting_feeds_limit: Feed indholds begrænsning
193 setting_feeds_limit: Feed indholds begrænsning
194 setting_autofetch_changesets: Automatisk hent commits
194 setting_autofetch_changesets: Automatisk hent commits
195 setting_sys_api_enabled: Aktiver web service for automatisk repository administration
195 setting_sys_api_enabled: Aktiver web service for automatisk repository administration
196 setting_commit_ref_keywords: Reference nøgleord
196 setting_commit_ref_keywords: Reference nøgleord
197 setting_commit_fix_keywords: Afslutnings nøgleord
197 setting_commit_fix_keywords: Afslutnings nøgleord
198 setting_autologin: Autologin
198 setting_autologin: Autologin
199 setting_date_format: Dato format
199 setting_date_format: Dato format
200 setting_time_format: Tids format
200 setting_time_format: Tids format
201 setting_cross_project_issue_relations: Tillad sags relationer på tværs af projekter
201 setting_cross_project_issue_relations: Tillad sags relationer på tværs af projekter
202 setting_issue_list_default_columns: Standard kolonner på sags listen
202 setting_issue_list_default_columns: Standard kolonner på sags listen
203 setting_repositories_encodings: Repository tegnsæt
203 setting_repositories_encodings: Repository tegnsæt
204 setting_emails_footer: Email fodnote
204 setting_emails_footer: Email fodnote
205 setting_protocol: Protokol
205 setting_protocol: Protokol
206 setting_per_page_options: Objekter pr. side indstillinger
206 setting_per_page_options: Objekter pr. side indstillinger
207 setting_user_format: Bruger visnings format
207 setting_user_format: Bruger visnings format
208
208
209 project_module_issue_tracking: Sags søgning
209 project_module_issue_tracking: Sags søgning
210 project_module_time_tracking: Tids styring
210 project_module_time_tracking: Tids styring
211 project_module_news: Nyheder
211 project_module_news: Nyheder
212 project_module_documents: Dokumenter
212 project_module_documents: Dokumenter
213 project_module_files: Filer
213 project_module_files: Filer
214 project_module_wiki: Wiki
214 project_module_wiki: Wiki
215 project_module_repository: Repository
215 project_module_repository: Repository
216 project_module_boards: Opslagstavle
216 project_module_boards: Opslagstavle
217
217
218 label_user: Bruger
218 label_user: Bruger
219 label_user_plural: Brugere
219 label_user_plural: Brugere
220 label_user_new: Ny bruger
220 label_user_new: Ny bruger
221 label_project: Projekt
221 label_project: Projekt
222 label_project_new: Nyt projekt
222 label_project_new: Nyt projekt
223 label_project_plural: Projekter
223 label_project_plural: Projekter
224 label_project_all: Alle projekter
224 label_project_all: Alle projekter
225 label_project_latest: Seneste projekter
225 label_project_latest: Seneste projekter
226 label_issue: Sag
226 label_issue: Sag
227 label_issue_new: Opret sag
227 label_issue_new: Opret sag
228 label_issue_plural: Sager
228 label_issue_plural: Sager
229 label_issue_view_all: Vis alle sager
229 label_issue_view_all: Vis alle sager
230 label_issues_by: Sager fra %s
230 label_issues_by: Sager fra %s
231 label_issue_added: Sagen er oprettet
231 label_issue_added: Sagen er oprettet
232 label_issue_updated: Sagen er opdateret
232 label_issue_updated: Sagen er opdateret
233 label_document: Dokument
233 label_document: Dokument
234 label_document_new: Nyt dokument
234 label_document_new: Nyt dokument
235 label_document_plural: Dokumenter
235 label_document_plural: Dokumenter
236 label_document_added: Dokument tilføjet
236 label_document_added: Dokument tilføjet
237 label_role: Rolle
237 label_role: Rolle
238 label_role_plural: Roller
238 label_role_plural: Roller
239 label_role_new: Ny rolle
239 label_role_new: Ny rolle
240 label_role_and_permissions: Roller og rettigheder
240 label_role_and_permissions: Roller og rettigheder
241 label_member: Medlem
241 label_member: Medlem
242 label_member_new: Nyt medlem
242 label_member_new: Nyt medlem
243 label_member_plural: Medlemmer
243 label_member_plural: Medlemmer
244 label_tracker: Type
244 label_tracker: Type
245 label_tracker_plural: Typer
245 label_tracker_plural: Typer
246 label_tracker_new: Ny type
246 label_tracker_new: Ny type
247 label_workflow: Arbejdsgang
247 label_workflow: Arbejdsgang
248 label_issue_status: Sags status
248 label_issue_status: Sags status
249 label_issue_status_plural: Sags statuser
249 label_issue_status_plural: Sags statuser
250 label_issue_status_new: Ny status
250 label_issue_status_new: Ny status
251 label_issue_category: Sags kategori
251 label_issue_category: Sags kategori
252 label_issue_category_plural: Sags kategorier
252 label_issue_category_plural: Sags kategorier
253 label_issue_category_new: Ny kategori
253 label_issue_category_new: Ny kategori
254 label_custom_field: Brugerdefineret felt
254 label_custom_field: Brugerdefineret felt
255 label_custom_field_plural: Brugerdefineret felt
255 label_custom_field_plural: Brugerdefineret felt
256 label_custom_field_new: Nyt brugerdefineret felt
256 label_custom_field_new: Nyt brugerdefineret felt
257 label_enumerations: Værdier
257 label_enumerations: Værdier
258 label_enumeration_new: Ny værdi
258 label_enumeration_new: Ny værdi
259 label_information: Information
259 label_information: Information
260 label_information_plural: Information
260 label_information_plural: Information
261 label_please_login: Login
261 label_please_login: Login
262 label_register: Registrer
262 label_register: Registrer
263 label_password_lost: Glemt kodeord
263 label_password_lost: Glemt kodeord
264 label_home: Forside
264 label_home: Forside
265 label_my_page: Min side
265 label_my_page: Min side
266 label_my_account: Min konto
266 label_my_account: Min konto
267 label_my_projects: Mine projekter
267 label_my_projects: Mine projekter
268 label_administration: Administration
268 label_administration: Administration
269 label_login: Log ind
269 label_login: Log ind
270 label_logout: Log ud
270 label_logout: Log ud
271 label_help: Hjælp
271 label_help: Hjælp
272 label_reported_issues: Rapporterede sager
272 label_reported_issues: Rapporterede sager
273 label_assigned_to_me_issues: Sager tildelt til mig
273 label_assigned_to_me_issues: Sager tildelt til mig
274 label_last_login: Sidste forbindelse
274 label_last_login: Sidste forbindelse
275 label_last_updates: Sidst opdateret
275 label_last_updates: Sidst opdateret
276 label_last_updates_plural: %d sidst opdateret
276 label_last_updates_plural: %d sidst opdateret
277 label_registered_on: Registeret den
277 label_registered_on: Registeret den
278 label_activity: Aktivitet
278 label_activity: Aktivitet
279 label_new: Ny
279 label_new: Ny
280 label_logged_as: Registreret som
280 label_logged_as: Registreret som
281 label_environment: Miljø
281 label_environment: Miljø
282 label_authentication: Sikkerhed
282 label_authentication: Sikkerhed
283 label_auth_source: Sikkerheds metode
283 label_auth_source: Sikkerheds metode
284 label_auth_source_new: Ny sikkerheds metode
284 label_auth_source_new: Ny sikkerheds metode
285 label_auth_source_plural: Sikkerheds metoder
285 label_auth_source_plural: Sikkerheds metoder
286 label_subproject_plural: Underprojekter
286 label_subproject_plural: Underprojekter
287 label_min_max_length: Min - Max længde
287 label_min_max_length: Min - Max længde
288 label_list: Liste
288 label_list: Liste
289 label_date: Dato
289 label_date: Dato
290 label_integer: Heltal
290 label_integer: Heltal
291 label_float: Kommatal
291 label_float: Kommatal
292 label_boolean: Sand/falsk
292 label_boolean: Sand/falsk
293 label_string: Tekst
293 label_string: Tekst
294 label_text: Lang tekst
294 label_text: Lang tekst
295 label_attribute: Attribut
295 label_attribute: Attribut
296 label_attribute_plural: Attributter
296 label_attribute_plural: Attributter
297 label_download: %d Download
297 label_download: %d Download
298 label_download_plural: %d Downloads
298 label_download_plural: %d Downloads
299 label_no_data: Ingen data at vise
299 label_no_data: Ingen data at vise
300 label_change_status: Ændrings status
300 label_change_status: Ændrings status
301 label_history: Historik
301 label_history: Historik
302 label_attachment: Fil
302 label_attachment: Fil
303 label_attachment_new: Ny fil
303 label_attachment_new: Ny fil
304 label_attachment_delete: Slet fil
304 label_attachment_delete: Slet fil
305 label_attachment_plural: Filer
305 label_attachment_plural: Filer
306 label_file_added: Fil tilføjet
306 label_file_added: Fil tilføjet
307 label_report: Rapport
307 label_report: Rapport
308 label_report_plural: Rapporter
308 label_report_plural: Rapporter
309 label_news: Nyheder
309 label_news: Nyheder
310 label_news_new: Tilføj nyheder
310 label_news_new: Tilføj nyheder
311 label_news_plural: Nyheder
311 label_news_plural: Nyheder
312 label_news_latest: Seneste nyheder
312 label_news_latest: Seneste nyheder
313 label_news_view_all: Vis alle nyheder
313 label_news_view_all: Vis alle nyheder
314 label_news_added: Nyhed tilføjet
314 label_news_added: Nyhed tilføjet
315 label_change_log: Ændringer
315 label_change_log: Ændringer
316 label_settings: Indstillinger
316 label_settings: Indstillinger
317 label_overview: Oversigt
317 label_overview: Oversigt
318 label_version: Version
318 label_version: Version
319 label_version_new: Ny version
319 label_version_new: Ny version
320 label_version_plural: Versioner
320 label_version_plural: Versioner
321 label_confirmation: Bekræftigelser
321 label_confirmation: Bekræftigelser
322 label_export_to: Eksporter til
322 label_export_to: Eksporter til
323 label_read: Læs...
323 label_read: Læs...
324 label_public_projects: Offentlige projekter
324 label_public_projects: Offentlige projekter
325 label_open_issues: åben
325 label_open_issues: åben
326 label_open_issues_plural: åbne
326 label_open_issues_plural: åbne
327 label_closed_issues: lukket
327 label_closed_issues: lukket
328 label_closed_issues_plural: lukkede
328 label_closed_issues_plural: lukkede
329 label_total: Total
329 label_total: Total
330 label_permissions: Rettigheder
330 label_permissions: Rettigheder
331 label_current_status: Nuværende status
331 label_current_status: Nuværende status
332 label_new_statuses_allowed: Ny status tilladt
332 label_new_statuses_allowed: Ny status tilladt
333 label_all: alle
333 label_all: alle
334 label_none: intet
334 label_none: intet
335 label_nobody: ingen
335 label_nobody: ingen
336 label_next: Næste
336 label_next: Næste
337 label_previous: Forrig
337 label_previous: Forrig
338 label_used_by: Brugt af
338 label_used_by: Brugt af
339 label_details: Detaljer
339 label_details: Detaljer
340 label_add_note: Tilføj en note
340 label_add_note: Tilføj en note
341 label_per_page: Pr. side
341 label_per_page: Pr. side
342 label_calendar: Kalender
342 label_calendar: Kalender
343 label_months_from: måneder frem
343 label_months_from: måneder frem
344 label_gantt: Gantt
344 label_gantt: Gantt
345 label_internal: Intern
345 label_internal: Intern
346 label_last_changes: sidste %d ændringer
346 label_last_changes: sidste %d ændringer
347 label_change_view_all: Vis alle ændringer
347 label_change_view_all: Vis alle ændringer
348 label_personalize_page: Tilret denne side
348 label_personalize_page: Tilret denne side
349 label_comment: Kommentar
349 label_comment: Kommentar
350 label_comment_plural: Kommentarer
350 label_comment_plural: Kommentarer
351 label_comment_add: Tilføj en kommentar
351 label_comment_add: Tilføj en kommentar
352 label_comment_added: Kommentaren er tilføjet
352 label_comment_added: Kommentaren er tilføjet
353 label_comment_delete: Slet kommentar
353 label_comment_delete: Slet kommentar
354 label_query: Brugerdefineret forespørgsel
354 label_query: Brugerdefineret forespørgsel
355 label_query_plural: Brugerdefinerede forespørgsler
355 label_query_plural: Brugerdefinerede forespørgsler
356 label_query_new: Ny forespørgsel
356 label_query_new: Ny forespørgsel
357 label_filter_add: Tilføj filter
357 label_filter_add: Tilføj filter
358 label_filter_plural: Filtre
358 label_filter_plural: Filtre
359 label_equals: er
359 label_equals: er
360 label_not_equals: er ikke
360 label_not_equals: er ikke
361 label_in_less_than: er mindre end
361 label_in_less_than: er mindre end
362 label_in_more_than: er større end
362 label_in_more_than: er større end
363 label_in: indeholdt i
363 label_in: indeholdt i
364 label_today: idag
364 label_today: idag
365 label_all_time: altid
365 label_all_time: altid
366 label_yesterday: igår
366 label_yesterday: igår
367 label_this_week: denne uge
367 label_this_week: denne uge
368 label_last_week: sidste uge
368 label_last_week: sidste uge
369 label_last_n_days: sidste %d dage
369 label_last_n_days: sidste %d dage
370 label_this_month: denne måned
370 label_this_month: denne måned
371 label_last_month: sidste måned
371 label_last_month: sidste måned
372 label_this_year: dette år
372 label_this_year: dette år
373 label_date_range: Dato interval
373 label_date_range: Dato interval
374 label_less_than_ago: mindre end dage siden
374 label_less_than_ago: mindre end dage siden
375 label_more_than_ago: mere end dage siden
375 label_more_than_ago: mere end dage siden
376 label_ago: days siden
376 label_ago: days siden
377 label_contains: indeholder
377 label_contains: indeholder
378 label_not_contains: ikke indeholder
378 label_not_contains: ikke indeholder
379 label_day_plural: dage
379 label_day_plural: dage
380 label_repository: Repository
380 label_repository: Repository
381 label_repository_plural: Repositories
381 label_repository_plural: Repositories
382 label_browse: Gennemse
382 label_browse: Gennemse
383 label_modification: %d ændring
383 label_modification: %d ændring
384 label_modification_plural: %d ændringer
384 label_modification_plural: %d ændringer
385 label_revision: Revision
385 label_revision: Revision
386 label_revision_plural: Revisioner
386 label_revision_plural: Revisioner
387 label_associated_revisions: Tilnyttede revisioner
387 label_associated_revisions: Tilnyttede revisioner
388 label_added: tilføjet
388 label_added: tilføjet
389 label_modified: ændret
389 label_modified: ændret
390 label_deleted: slettet
390 label_deleted: slettet
391 label_latest_revision: Seneste revision
391 label_latest_revision: Seneste revision
392 label_latest_revision_plural: Seneste revisioner
392 label_latest_revision_plural: Seneste revisioner
393 label_view_revisions: Se revisioner
393 label_view_revisions: Se revisioner
394 label_max_size: Maximal størrelse
394 label_max_size: Maximal størrelse
395 label_on: 'til'
395 label_on: 'til'
396 label_sort_highest: Flyt til toppen
396 label_sort_highest: Flyt til toppen
397 label_sort_higher: Flyt op
397 label_sort_higher: Flyt op
398 label_sort_lower: Flyt ned
398 label_sort_lower: Flyt ned
399 label_sort_lowest: Flyt til bunden
399 label_sort_lowest: Flyt til bunden
400 label_roadmap: Roadmap
400 label_roadmap: Roadmap
401 label_roadmap_due_in: Deadline
401 label_roadmap_due_in: Deadline
402 label_roadmap_overdue: %s forsinket
402 label_roadmap_overdue: %s forsinket
403 label_roadmap_no_issues: Ingen sager til denne version
403 label_roadmap_no_issues: Ingen sager til denne version
404 label_search: Søg
404 label_search: Søg
405 label_result_plural: Resultater
405 label_result_plural: Resultater
406 label_all_words: Alle ord
406 label_all_words: Alle ord
407 label_wiki: Wiki
407 label_wiki: Wiki
408 label_wiki_edit: Wiki ændring
408 label_wiki_edit: Wiki ændring
409 label_wiki_edit_plural: Wiki ændringer
409 label_wiki_edit_plural: Wiki ændringer
410 label_wiki_page: Wiki side
410 label_wiki_page: Wiki side
411 label_wiki_page_plural: Wiki sider
411 label_wiki_page_plural: Wiki sider
412 label_index_by_title: Indhold efter titel
412 label_index_by_title: Indhold efter titel
413 label_index_by_date: Indhold efter dato
413 label_index_by_date: Indhold efter dato
414 label_current_version: Nuværende version
414 label_current_version: Nuværende version
415 label_preview: Forhåndsvisning
415 label_preview: Forhåndsvisning
416 label_feed_plural: Feeds
416 label_feed_plural: Feeds
417 label_changes_details: Detaljer for alle ænringer
417 label_changes_details: Detaljer for alle ænringer
418 label_issue_tracking: Sags søgning
418 label_issue_tracking: Sags søgning
419 label_spent_time: Brugt tid
419 label_spent_time: Brugt tid
420 label_f_hour: %.2f time
420 label_f_hour: %.2f time
421 label_f_hour_plural: %.2f timer
421 label_f_hour_plural: %.2f timer
422 label_time_tracking: Tids styring
422 label_time_tracking: Tids styring
423 label_change_plural: Ændringer
423 label_change_plural: Ændringer
424 label_statistics: Statistik
424 label_statistics: Statistik
425 label_commits_per_month: Commits pr. måned
425 label_commits_per_month: Commits pr. måned
426 label_commits_per_author: Commits pr. bruger
426 label_commits_per_author: Commits pr. bruger
427 label_view_diff: Vis forskellighed
427 label_view_diff: Vis forskellighed
428 label_diff_inline: inline
428 label_diff_inline: inline
429 label_diff_side_by_side: side ved side
429 label_diff_side_by_side: side ved side
430 label_options: Optioner
430 label_options: Optioner
431 label_copy_workflow_from: Kopier arbejdsgang fra
431 label_copy_workflow_from: Kopier arbejdsgang fra
432 label_permissions_report: Godkendelses rapport
432 label_permissions_report: Godkendelses rapport
433 label_watched_issues: Overvågede sager
433 label_watched_issues: Overvågede sager
434 label_related_issues: Relaterede sager
434 label_related_issues: Relaterede sager
435 label_applied_status: Anvendte statuser
435 label_applied_status: Anvendte statuser
436 label_loading: Indlæser...
436 label_loading: Indlæser...
437 label_relation_new: Ny relation
437 label_relation_new: Ny relation
438 label_relation_delete: Slet relation
438 label_relation_delete: Slet relation
439 label_relates_to: relaterer til
439 label_relates_to: relaterer til
440 label_duplicates: kopierer
440 label_duplicates: kopierer
441 label_blocks: blokerer
441 label_blocks: blokerer
442 label_blocked_by: blokeret af
442 label_blocked_by: blokeret af
443 label_precedes: kommer før
443 label_precedes: kommer før
444 label_follows: følger
444 label_follows: følger
445 label_end_to_start: slut til start
445 label_end_to_start: slut til start
446 label_end_to_end: slut til slut
446 label_end_to_end: slut til slut
447 label_start_to_start: start til start
447 label_start_to_start: start til start
448 label_start_to_end: start til slut
448 label_start_to_end: start til slut
449 label_stay_logged_in: Forblin indlogget
449 label_stay_logged_in: Forblin indlogget
450 label_disabled: deaktiveret
450 label_disabled: deaktiveret
451 label_show_completed_versions: Vis færdige versioner
451 label_show_completed_versions: Vis færdige versioner
452 label_me: mig
452 label_me: mig
453 label_board: Forum
453 label_board: Forum
454 label_board_new: Nyt forum
454 label_board_new: Nyt forum
455 label_board_plural: Fora
455 label_board_plural: Fora
456 label_topic_plural: Emner
456 label_topic_plural: Emner
457 label_message_plural: Beskeder
457 label_message_plural: Beskeder
458 label_message_last: Sidste besked
458 label_message_last: Sidste besked
459 label_message_new: Ny besked
459 label_message_new: Ny besked
460 label_message_posted: Besked tilføjet
460 label_message_posted: Besked tilføjet
461 label_reply_plural: Besvarer
461 label_reply_plural: Besvarer
462 label_send_information: Send konto information til bruger
462 label_send_information: Send konto information til bruger
463 label_year: År
463 label_year: År
464 label_month: Måned
464 label_month: Måned
465 label_week: Uge
465 label_week: Uge
466 label_date_from: Fra
466 label_date_from: Fra
467 label_date_to: Til
467 label_date_to: Til
468 label_language_based: Baseret på brugerens sprog
468 label_language_based: Baseret på brugerens sprog
469 label_sort_by: Sorter efter %s
469 label_sort_by: Sorter efter %s
470 label_send_test_email: Send en test email
470 label_send_test_email: Send en test email
471 label_feeds_access_key_created_on: RSS adgangsnøgle genereret %s siden
471 label_feeds_access_key_created_on: RSS adgangsnøgle genereret %s siden
472 label_module_plural: Moduler
472 label_module_plural: Moduler
473 label_added_time_by: Tilføjet af %s for %s siden
473 label_added_time_by: Tilføjet af %s for %s siden
474 label_updated_time: Opdateret for %s siden
474 label_updated_time: Opdateret for %s siden
475 label_jump_to_a_project: Skift til projekt...
475 label_jump_to_a_project: Skift til projekt...
476 label_file_plural: Filer
476 label_file_plural: Filer
477 label_changeset_plural: Ændringer
477 label_changeset_plural: Ændringer
478 label_default_columns: Standard kolonner
478 label_default_columns: Standard kolonner
479 label_no_change_option: (Ingen ændringer)
479 label_no_change_option: (Ingen ændringer)
480 label_bulk_edit_selected_issues: Masse ret de valgte sager
480 label_bulk_edit_selected_issues: Masse ret de valgte sager
481 label_theme: Tema
481 label_theme: Tema
482 label_default: standard
482 label_default: standard
483 label_search_titles_only: Søg kun i titler
483 label_search_titles_only: Søg kun i titler
484 label_user_mail_option_all: "For alle hændelser mine projekter"
484 label_user_mail_option_all: "For alle hændelser mine projekter"
485 label_user_mail_option_selected: "For alle hændelser, kun de valgte projekter..."
485 label_user_mail_option_selected: "For alle hændelser, kun de valgte projekter..."
486 label_user_mail_option_none: "Kun for ting jeg overvåger, eller jeg er involveret i"
486 label_user_mail_option_none: "Kun for ting jeg overvåger, eller jeg er involveret i"
487 label_user_mail_no_self_notified: "Jeg ønsker ikke besked, om ændring foretaget af mig selv"
487 label_user_mail_no_self_notified: "Jeg ønsker ikke besked, om ændring foretaget af mig selv"
488 label_registration_activation_by_email: konto aktivering på email
488 label_registration_activation_by_email: konto aktivering på email
489 label_registration_manual_activation: manuel konto aktivering
489 label_registration_manual_activation: manuel konto aktivering
490 label_registration_automatic_activation: automatisk konto aktivering
490 label_registration_automatic_activation: automatisk konto aktivering
491 label_display_per_page: 'Per side: %s'
491 label_display_per_page: 'Per side: %s'
492 label_age: Alder
492 label_age: Alder
493 label_change_properties: Ændre indstillinger
493 label_change_properties: Ændre indstillinger
494 label_general: Generalt
494 label_general: Generalt
495 label_more: Mere
495 label_more: Mere
496 label_scm: SCM
496 label_scm: SCM
497 label_plugins: Plugins
497 label_plugins: Plugins
498 label_ldap_authentication: LDAP godkendelse
498 label_ldap_authentication: LDAP godkendelse
499 label_downloads_abbr: D/L
499 label_downloads_abbr: D/L
500
500
501 button_login: Login
501 button_login: Login
502 button_submit: Send
502 button_submit: Send
503 button_save: Gem
503 button_save: Gem
504 button_check_all: Vælg alt
504 button_check_all: Vælg alt
505 button_uncheck_all: Fravælg alt
505 button_uncheck_all: Fravælg alt
506 button_delete: Slet
506 button_delete: Slet
507 button_create: Opret
507 button_create: Opret
508 button_test: Test
508 button_test: Test
509 button_edit: Ret
509 button_edit: Ret
510 button_add: Tilføj
510 button_add: Tilføj
511 button_change: Ændre
511 button_change: Ændre
512 button_apply: Anvend
512 button_apply: Anvend
513 button_clear: Nulstil
513 button_clear: Nulstil
514 button_lock: Lås
514 button_lock: Lås
515 button_unlock: Lås op
515 button_unlock: Lås op
516 button_download: Download
516 button_download: Download
517 button_list: List
517 button_list: List
518 button_view: Vis
518 button_view: Vis
519 button_move: Flyt
519 button_move: Flyt
520 button_back: Tilbage
520 button_back: Tilbage
521 button_cancel: Annuller
521 button_cancel: Annuller
522 button_activate: Aktiver
522 button_activate: Aktiver
523 button_sort: Sorter
523 button_sort: Sorter
524 button_log_time: Log tid
524 button_log_time: Log tid
525 button_rollback: Tilbagefør til denne version
525 button_rollback: Tilbagefør til denne version
526 button_watch: Overvåg
526 button_watch: Overvåg
527 button_unwatch: Stop overvågning
527 button_unwatch: Stop overvågning
528 button_reply: Besvar
528 button_reply: Besvar
529 button_archive: Arkiver
529 button_archive: Arkiver
530 button_unarchive: Fjern fra arkiv
530 button_unarchive: Fjern fra arkiv
531 button_reset: Nulstil
531 button_reset: Nulstil
532 button_rename: Omdøb
532 button_rename: Omdøb
533 button_change_password: Skift kodeord
533 button_change_password: Skift kodeord
534 button_copy: Kopier
534 button_copy: Kopier
535 button_annotate: Annotere
535 button_annotate: Annotere
536 button_update: Opdater
536 button_update: Opdater
537 button_configure: Konfigurer
537 button_configure: Konfigurer
538
538
539 status_active: aktiv
539 status_active: aktiv
540 status_registered: registreret
540 status_registered: registreret
541 status_locked: låst
541 status_locked: låst
542
542
543 text_select_mail_notifications: Vælg handlinger for hvilke, der skal sendes en email besked.
543 text_select_mail_notifications: Vælg handlinger for hvilke, der skal sendes en email besked.
544 text_regexp_info: f.eks. ^[A-ZÆØÅ0-9]+$
544 text_regexp_info: f.eks. ^[A-ZÆØÅ0-9]+$
545 text_min_max_length_info: 0 betyder ingen begrænsninger
545 text_min_max_length_info: 0 betyder ingen begrænsninger
546 text_project_destroy_confirmation: Er du sikker på di vil slette dette projekt og alle relaterede data ?
546 text_project_destroy_confirmation: Er du sikker på di vil slette dette projekt og alle relaterede data ?
547 text_workflow_edit: Vælg en rolle samt en type, for at redigere arbejdsgangen
547 text_workflow_edit: Vælg en rolle samt en type, for at redigere arbejdsgangen
548 text_are_you_sure: Er du sikker ?
548 text_are_you_sure: Er du sikker ?
549 text_journal_changed: ændret fra %s til %s
549 text_journal_changed: ændret fra %s til %s
550 text_journal_set_to: sat til %s
550 text_journal_set_to: sat til %s
551 text_journal_deleted: slettet
551 text_journal_deleted: slettet
552 text_tip_task_begin_day: opgaven begynder denne dag
552 text_tip_task_begin_day: opgaven begynder denne dag
553 text_tip_task_end_day: opaven slutter denne dag
553 text_tip_task_end_day: opaven slutter denne dag
554 text_tip_task_begin_end_day: opgaven begynder og slutter denne dag
554 text_tip_task_begin_end_day: opgaven begynder og slutter denne dag
555 text_project_identifier_info: 'Små bogstaver (a-z), numre og bindestreg er tilladt.<br />Når den er gemt, kan indifikatoren ikke rettes.'
555 text_project_identifier_info: 'Små bogstaver (a-z), numre og bindestreg er tilladt.<br />Når den er gemt, kan indifikatoren ikke rettes.'
556 text_caracters_maximum: max %d karakterer.
556 text_caracters_maximum: max %d karakterer.
557 text_caracters_minimum: Skal være mindst %d karakterer lang.
557 text_caracters_minimum: Skal være mindst %d karakterer lang.
558 text_length_between: Længde skal være mellem %d og %d karakterer.
558 text_length_between: Længde skal være mellem %d og %d karakterer.
559 text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type
559 text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type
560 text_unallowed_characters: Ikke tilladte karakterer
560 text_unallowed_characters: Ikke tilladte karakterer
561 text_comma_separated: Adskillige værdier tilladt (komma separeret).
561 text_comma_separated: Adskillige værdier tilladt (komma separeret).
562 text_issues_ref_in_commit_messages: Referer og løser sager i commit beskeder
562 text_issues_ref_in_commit_messages: Referer og løser sager i commit beskeder
563 text_issue_added: Sag %s er rapporteret af %s.
563 text_issue_added: Sag %s er rapporteret af %s.
564 text_issue_updated: Sag %s er blevet opdateret af %s.
564 text_issue_updated: Sag %s er blevet opdateret af %s.
565 text_wiki_destroy_confirmation: Er du sikker på at du vil slette debbe wiki, og alt indholdet ?
565 text_wiki_destroy_confirmation: Er du sikker på at du vil slette debbe wiki, og alt indholdet ?
566 text_issue_category_destroy_question: Nogle sgaer (%d) er tildelt denne kategori. Hvad ønsker du at gøre ?
566 text_issue_category_destroy_question: Nogle sgaer (%d) er tildelt denne kategori. Hvad ønsker du at gøre ?
567 text_issue_category_destroy_assignments: Slet kategori tildelinger
567 text_issue_category_destroy_assignments: Slet kategori tildelinger
568 text_issue_category_reassign_to: Tildel sager til denne kategori
568 text_issue_category_reassign_to: Tildel sager til denne kategori
569 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 ahr indberettet eller ejer)."
569 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 ahr indberettet eller ejer)."
570 text_no_configuration_data: "Roller, typer, sags statuser og arbejdsgange er endnu ikek konfigureret.\nDet er anbefalet at indlæse standard konfigurationen. Du vil kunne ændre denne når den er indlæst."
570 text_no_configuration_data: "Roller, typer, sags statuser og arbejdsgange er endnu ikek konfigureret.\nDet er anbefalet at indlæse standard konfigurationen. Du vil kunne ændre denne når den er indlæst."
571 text_load_default_configuration: Indlæs standard konfiguration
571 text_load_default_configuration: Indlæs standard konfiguration
572 text_status_changed_by_changeset: Anvendt i ændring %s.
572 text_status_changed_by_changeset: Anvendt i ændring %s.
573 text_issues_destroy_confirmation: 'Er du sikker du ønsker at slette den/de valgte sag(er) ?'
573 text_issues_destroy_confirmation: 'Er du sikker du ønsker at slette den/de valgte sag(er) ?'
574 text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
574 text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
575 text_default_administrator_account_changed: Standard administrator konto ændret
575 text_default_administrator_account_changed: Standard administrator konto ændret
576 text_file_repository_writable: Filarkiv er skrivbar
576 text_file_repository_writable: Filarkiv er skrivbar
577 text_rmagick_available: RMagick tilgængelig (valgfri)
577 text_rmagick_available: RMagick tilgængelig (valgfri)
578
578
579 default_role_manager: Leder
579 default_role_manager: Leder
580 default_role_developper: Udvikler
580 default_role_developper: Udvikler
581 default_role_reporter: Rapportør
581 default_role_reporter: Rapportør
582 default_tracker_bug: Bug
582 default_tracker_bug: Bug
583 default_tracker_feature: Feature
583 default_tracker_feature: Feature
584 default_tracker_support: Support
584 default_tracker_support: Support
585 default_issue_status_new: Ny
585 default_issue_status_new: Ny
586 default_issue_status_assigned: Tildelt
586 default_issue_status_assigned: Tildelt
587 default_issue_status_resolved: Løst
587 default_issue_status_resolved: Løst
588 default_issue_status_feedback: Feedback
588 default_issue_status_feedback: Feedback
589 default_issue_status_closed: Lukket
589 default_issue_status_closed: Lukket
590 default_issue_status_rejected: Afvist
590 default_issue_status_rejected: Afvist
591 default_doc_category_user: Bruger dokumentation
591 default_doc_category_user: Bruger dokumentation
592 default_doc_category_tech: Teknisk dokumentation
592 default_doc_category_tech: Teknisk dokumentation
593 default_priority_low: Lav
593 default_priority_low: Lav
594 default_priority_normal: Normal
594 default_priority_normal: Normal
595 default_priority_high: Høj
595 default_priority_high: Høj
596 default_priority_urgent: Akut
596 default_priority_urgent: Akut
597 default_priority_immediate: Omgående
597 default_priority_immediate: Omgående
598 default_activity_design: Design
598 default_activity_design: Design
599 default_activity_development: Udvikling
599 default_activity_development: Udvikling
600
600
601 enumeration_issue_priorities: Sags prioriteter
601 enumeration_issue_priorities: Sags prioriteter
602 enumeration_doc_categories: Dokument kategorier
602 enumeration_doc_categories: Dokument kategorier
603 enumeration_activities: Aktiviteter (tids styring)
603 enumeration_activities: Aktiviteter (tids styring)
604
604
605 label_add_another_file: Tilføj endnu en fil
605 label_add_another_file: Tilføj endnu en fil
606 label_chronological_order: I kronologisk rækkefølge
606 label_chronological_order: I kronologisk rækkefølge
607 setting_activity_days_default: Antal dage der vises under projekt aktivitet
607 setting_activity_days_default: Antal dage der vises under projekt aktivitet
608 text_destroy_time_entries_question: %.02f timer er reporteret på denne sag, som du er ved at slette. Hvad vil du gøre ?
608 text_destroy_time_entries_question: %.02f timer er reporteret på denne sag, som du er ved at slette. Hvad vil du gøre ?
609 error_issue_not_found_in_project: 'Sagen blev ikke fundet eller tilhører ikke dette projekt'
609 error_issue_not_found_in_project: 'Sagen blev ikke fundet eller tilhører ikke dette projekt'
610 text_assign_time_entries_to_project: Tildel raporterede timer til projektet
610 text_assign_time_entries_to_project: Tildel raporterede timer til projektet
611 setting_display_subprojects_issues: Vis sager for underprojekter på hovedprojektet som default
611 setting_display_subprojects_issues: Vis sager for underprojekter på hovedprojektet som default
612 label_optional_description: Optionel beskrivelse
612 label_optional_description: Optionel beskrivelse
613 text_destroy_time_entries: Slet raportede timer
613 text_destroy_time_entries: Slet raportede timer
614 field_comments_sorting: Vis kommentar
614 field_comments_sorting: Vis kommentar
615 text_reassign_time_entries: 'Tildel raportede timer til denne sag igen'
615 text_reassign_time_entries: 'Tildel raportede timer til denne sag igen'
616 label_reverse_chronological_order: I omvendt kronologisk rækkefølge
616 label_reverse_chronological_order: I omvendt kronologisk rækkefølge
617 label_preferences: Preferences
617 label_preferences: Preferences
618 label_overall_activity: Overordnet aktivitet
618 label_overall_activity: Overordnet aktivitet
619 setting_default_projects_public: Nye projekter er offentlige som default
619 setting_default_projects_public: Nye projekter er offentlige som default
620 error_scm_annotate: "The entry does not exist or can not be annotated."
620 error_scm_annotate: "The entry does not exist or can not be annotated."
621 label_planning: Planlægning
621 label_planning: Planlægning
622 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
622 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
623 label_and_its_subprojects: %s and its subprojects
623 label_and_its_subprojects: %s and its subprojects
624 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
624 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
625 mail_subject_reminder: "%d issue(s) due in the next days"
625 mail_subject_reminder: "%d issue(s) due in the next days"
626 text_user_wrote: '%s wrote:'
626 text_user_wrote: '%s wrote:'
627 label_duplicated_by: duplicated by
627 label_duplicated_by: duplicated by
628 setting_enabled_scm: Enabled SCM
628 setting_enabled_scm: Enabled SCM
629 text_enumeration_category_reassign_to: 'Reassign them to this value:'
629 text_enumeration_category_reassign_to: 'Reassign them to this value:'
630 text_enumeration_destroy_question: '%d objects are assigned to this value.'
630 text_enumeration_destroy_question: '%d objects are assigned to this value.'
631 label_incoming_emails: Incoming emails
632 label_generate_key: Generate a key
633 setting_mail_handler_api_enabled: Enable WS for incoming emails
634 setting_mail_handler_api_key: API key
@@ -1,629 +1,633
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 Tag
8 actionview_datehelper_time_in_words_day: 1 Tag
9 actionview_datehelper_time_in_words_day_plural: %d Tagen
9 actionview_datehelper_time_in_words_day_plural: %d Tagen
10 actionview_datehelper_time_in_words_hour_about: ungefähr einer Stunde
10 actionview_datehelper_time_in_words_hour_about: ungefähr einer Stunde
11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
12 actionview_datehelper_time_in_words_hour_about_single: ungefähr einer Stunde
12 actionview_datehelper_time_in_words_hour_about_single: ungefähr einer Stunde
13 actionview_datehelper_time_in_words_minute: 1 Minute
13 actionview_datehelper_time_in_words_minute: 1 Minute
14 actionview_datehelper_time_in_words_minute_half: einer halben Minute
14 actionview_datehelper_time_in_words_minute_half: einer halben Minute
15 actionview_datehelper_time_in_words_minute_less_than: weniger als einer Minute
15 actionview_datehelper_time_in_words_minute_less_than: weniger als einer Minute
16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
17 actionview_datehelper_time_in_words_minute_single: 1 Minute
17 actionview_datehelper_time_in_words_minute_single: 1 Minute
18 actionview_datehelper_time_in_words_second_less_than: weniger als einer Sekunde
18 actionview_datehelper_time_in_words_second_less_than: weniger als einer Sekunde
19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
20 actionview_instancetag_blank_option: Bitte auswählen
20 actionview_instancetag_blank_option: Bitte auswählen
21
21
22 activerecord_error_inclusion: ist nicht inbegriffen
22 activerecord_error_inclusion: ist nicht inbegriffen
23 activerecord_error_exclusion: ist reserviert
23 activerecord_error_exclusion: ist reserviert
24 activerecord_error_invalid: ist unzulässig
24 activerecord_error_invalid: ist unzulässig
25 activerecord_error_confirmation: Bestätigung nötig
25 activerecord_error_confirmation: Bestätigung nötig
26 activerecord_error_accepted: muss angenommen werden
26 activerecord_error_accepted: muss angenommen werden
27 activerecord_error_empty: darf nicht leer sein
27 activerecord_error_empty: darf nicht leer sein
28 activerecord_error_blank: darf nicht leer sein
28 activerecord_error_blank: darf nicht leer sein
29 activerecord_error_too_long: ist zu lang
29 activerecord_error_too_long: ist zu lang
30 activerecord_error_too_short: ist zu kurz
30 activerecord_error_too_short: ist zu kurz
31 activerecord_error_wrong_length: hat die falsche Länge
31 activerecord_error_wrong_length: hat die falsche Länge
32 activerecord_error_taken: ist bereits vergeben
32 activerecord_error_taken: ist bereits vergeben
33 activerecord_error_not_a_number: ist keine Zahl
33 activerecord_error_not_a_number: ist keine Zahl
34 activerecord_error_not_a_date: ist kein gültiges Datum
34 activerecord_error_not_a_date: ist kein gültiges Datum
35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
36 activerecord_error_not_same_project: gehört nicht zum selben Projekt
36 activerecord_error_not_same_project: gehört nicht zum selben Projekt
37 activerecord_error_circular_dependency: Diese Beziehung würde eine zyklische Abhängigkeit erzeugen
37 activerecord_error_circular_dependency: Diese Beziehung würde eine zyklische Abhängigkeit erzeugen
38
38
39 general_fmt_age: %d Jahr
39 general_fmt_age: %d Jahr
40 general_fmt_age_plural: %d Jahre
40 general_fmt_age_plural: %d Jahre
41 general_fmt_date: %%d.%%m.%%y
41 general_fmt_date: %%d.%%m.%%y
42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Nein'
45 general_text_No: 'Nein'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nein'
47 general_text_no: 'nein'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Deutsch'
49 general_lang_name: 'Deutsch'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
53 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Konto wurde erfolgreich aktualisiert.
56 notice_account_updated: Konto wurde erfolgreich aktualisiert.
57 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
57 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
58 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
58 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
59 notice_account_wrong_password: Falsches Kennwort
59 notice_account_wrong_password: Falsches Kennwort
60 notice_account_register_done: Konto wurde erfolgreich angelegt.
60 notice_account_register_done: Konto wurde erfolgreich angelegt.
61 notice_account_unknown_email: Unbekannter Benutzer.
61 notice_account_unknown_email: Unbekannter Benutzer.
62 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
62 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
63 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
63 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
64 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
64 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
65 notice_successful_create: Erfolgreich angelegt
65 notice_successful_create: Erfolgreich angelegt
66 notice_successful_update: Erfolgreich aktualisiert.
66 notice_successful_update: Erfolgreich aktualisiert.
67 notice_successful_delete: Erfolgreich gelöscht.
67 notice_successful_delete: Erfolgreich gelöscht.
68 notice_successful_connection: Verbindung erfolgreich.
68 notice_successful_connection: Verbindung erfolgreich.
69 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
69 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
70 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
70 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
71 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
71 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
72 notice_email_sent: Eine E-Mail wurde an %s gesendet.
72 notice_email_sent: Eine E-Mail wurde an %s gesendet.
73 notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s).
73 notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s).
74 notice_feeds_access_key_reseted: Ihr Atom-Zugriffsschlüssel wurde zurückgesetzt.
74 notice_feeds_access_key_reseted: Ihr Atom-Zugriffsschlüssel wurde zurückgesetzt.
75 notice_failed_to_save_issues: "%d von %d ausgewählten Tickets konnte(n) nicht gespeichert werden: %s."
75 notice_failed_to_save_issues: "%d von %d ausgewählten Tickets konnte(n) nicht gespeichert werden: %s."
76 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
76 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
77 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
77 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
78 notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen.
78 notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen.
79
79
80 error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: %s"
80 error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: %s"
81 error_scm_not_found: Eintrag und/oder Revision besteht nicht im Projektarchiv.
81 error_scm_not_found: Eintrag und/oder Revision besteht nicht im Projektarchiv.
82 error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: %s"
82 error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: %s"
83 error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden."
83 error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden."
84 error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehört nicht zu diesem Projekt.'
84 error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehört nicht zu diesem Projekt.'
85
85
86 mail_subject_lost_password: Ihr %s Kennwort
86 mail_subject_lost_password: Ihr %s Kennwort
87 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
87 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
88 mail_subject_register: %s Kontoaktivierung
88 mail_subject_register: %s Kontoaktivierung
89 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
89 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
90 mail_body_account_information_external: Sie können sich mit Ihrem Konto "%s" an anmelden.
90 mail_body_account_information_external: Sie können sich mit Ihrem Konto "%s" an anmelden.
91 mail_body_account_information: Ihre Konto-Informationen
91 mail_body_account_information: Ihre Konto-Informationen
92 mail_subject_account_activation_request: Antrag auf %s Kontoaktivierung
92 mail_subject_account_activation_request: Antrag auf %s Kontoaktivierung
93 mail_body_account_activation_request: 'Ein neuer Benutzer (%s) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'
93 mail_body_account_activation_request: 'Ein neuer Benutzer (%s) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'
94
94
95 gui_validation_error: 1 Fehler
95 gui_validation_error: 1 Fehler
96 gui_validation_error_plural: %d Fehler
96 gui_validation_error_plural: %d Fehler
97
97
98 field_name: Name
98 field_name: Name
99 field_description: Beschreibung
99 field_description: Beschreibung
100 field_summary: Zusammenfassung
100 field_summary: Zusammenfassung
101 field_is_required: Erforderlich
101 field_is_required: Erforderlich
102 field_firstname: Vorname
102 field_firstname: Vorname
103 field_lastname: Nachname
103 field_lastname: Nachname
104 field_mail: E-Mail
104 field_mail: E-Mail
105 field_filename: Datei
105 field_filename: Datei
106 field_filesize: Größe
106 field_filesize: Größe
107 field_downloads: Downloads
107 field_downloads: Downloads
108 field_author: Autor
108 field_author: Autor
109 field_created_on: Angelegt
109 field_created_on: Angelegt
110 field_updated_on: Aktualisiert
110 field_updated_on: Aktualisiert
111 field_field_format: Format
111 field_field_format: Format
112 field_is_for_all: Für alle Projekte
112 field_is_for_all: Für alle Projekte
113 field_possible_values: Mögliche Werte
113 field_possible_values: Mögliche Werte
114 field_regexp: Regulärer Ausdruck
114 field_regexp: Regulärer Ausdruck
115 field_min_length: Minimale Länge
115 field_min_length: Minimale Länge
116 field_max_length: Maximale Länge
116 field_max_length: Maximale Länge
117 field_value: Wert
117 field_value: Wert
118 field_category: Kategorie
118 field_category: Kategorie
119 field_title: Titel
119 field_title: Titel
120 field_project: Projekt
120 field_project: Projekt
121 field_issue: Ticket
121 field_issue: Ticket
122 field_status: Status
122 field_status: Status
123 field_notes: Kommentare
123 field_notes: Kommentare
124 field_is_closed: Ticket geschlossen
124 field_is_closed: Ticket geschlossen
125 field_is_default: Standardeinstellung
125 field_is_default: Standardeinstellung
126 field_tracker: Tracker
126 field_tracker: Tracker
127 field_subject: Thema
127 field_subject: Thema
128 field_due_date: Abgabedatum
128 field_due_date: Abgabedatum
129 field_assigned_to: Zugewiesen an
129 field_assigned_to: Zugewiesen an
130 field_priority: Priorität
130 field_priority: Priorität
131 field_fixed_version: Zielversion
131 field_fixed_version: Zielversion
132 field_user: Benutzer
132 field_user: Benutzer
133 field_role: Rolle
133 field_role: Rolle
134 field_homepage: Projekt-Homepage
134 field_homepage: Projekt-Homepage
135 field_is_public: Öffentlich
135 field_is_public: Öffentlich
136 field_parent: Unterprojekt von
136 field_parent: Unterprojekt von
137 field_is_in_chlog: Im Change-Log anzeigen
137 field_is_in_chlog: Im Change-Log anzeigen
138 field_is_in_roadmap: In der Roadmap anzeigen
138 field_is_in_roadmap: In der Roadmap anzeigen
139 field_login: Mitgliedsname
139 field_login: Mitgliedsname
140 field_mail_notification: Mailbenachrichtigung
140 field_mail_notification: Mailbenachrichtigung
141 field_admin: Administrator
141 field_admin: Administrator
142 field_last_login_on: Letzte Anmeldung
142 field_last_login_on: Letzte Anmeldung
143 field_language: Sprache
143 field_language: Sprache
144 field_effective_date: Datum
144 field_effective_date: Datum
145 field_password: Kennwort
145 field_password: Kennwort
146 field_new_password: Neues Kennwort
146 field_new_password: Neues Kennwort
147 field_password_confirmation: Bestätigung
147 field_password_confirmation: Bestätigung
148 field_version: Version
148 field_version: Version
149 field_type: Typ
149 field_type: Typ
150 field_host: Host
150 field_host: Host
151 field_port: Port
151 field_port: Port
152 field_account: Konto
152 field_account: Konto
153 field_base_dn: Base DN
153 field_base_dn: Base DN
154 field_attr_login: Mitgliedsname-Attribut
154 field_attr_login: Mitgliedsname-Attribut
155 field_attr_firstname: Vorname-Attribut
155 field_attr_firstname: Vorname-Attribut
156 field_attr_lastname: Name-Attribut
156 field_attr_lastname: Name-Attribut
157 field_attr_mail: E-Mail-Attribut
157 field_attr_mail: E-Mail-Attribut
158 field_onthefly: On-the-fly-Benutzererstellung
158 field_onthefly: On-the-fly-Benutzererstellung
159 field_start_date: Beginn
159 field_start_date: Beginn
160 field_done_ratio: %% erledigt
160 field_done_ratio: %% erledigt
161 field_auth_source: Authentifizierungs-Modus
161 field_auth_source: Authentifizierungs-Modus
162 field_hide_mail: E-Mail-Adresse nicht anzeigen
162 field_hide_mail: E-Mail-Adresse nicht anzeigen
163 field_comments: Kommentar
163 field_comments: Kommentar
164 field_url: URL
164 field_url: URL
165 field_start_page: Hauptseite
165 field_start_page: Hauptseite
166 field_subproject: Subprojekt von
166 field_subproject: Subprojekt von
167 field_hours: Stunden
167 field_hours: Stunden
168 field_activity: Aktivität
168 field_activity: Aktivität
169 field_spent_on: Datum
169 field_spent_on: Datum
170 field_identifier: Kennung
170 field_identifier: Kennung
171 field_is_filter: Als Filter benutzen
171 field_is_filter: Als Filter benutzen
172 field_issue_to_id: Zugehöriges Ticket
172 field_issue_to_id: Zugehöriges Ticket
173 field_delay: Pufferzeit
173 field_delay: Pufferzeit
174 field_assignable: Tickets können dieser Rolle zugewiesen werden
174 field_assignable: Tickets können dieser Rolle zugewiesen werden
175 field_redirect_existing_links: Existierende Links umleiten
175 field_redirect_existing_links: Existierende Links umleiten
176 field_estimated_hours: Geschätzter Aufwand
176 field_estimated_hours: Geschätzter Aufwand
177 field_column_names: Spalten
177 field_column_names: Spalten
178 field_time_zone: Zeitzone
178 field_time_zone: Zeitzone
179 field_searchable: Durchsuchbar
179 field_searchable: Durchsuchbar
180 field_default_value: Standardwert
180 field_default_value: Standardwert
181 field_comments_sorting: Kommentare anzeigen
181 field_comments_sorting: Kommentare anzeigen
182
182
183 setting_app_title: Applikations-Titel
183 setting_app_title: Applikations-Titel
184 setting_app_subtitle: Applikations-Untertitel
184 setting_app_subtitle: Applikations-Untertitel
185 setting_welcome_text: Willkommenstext
185 setting_welcome_text: Willkommenstext
186 setting_default_language: Default-Sprache
186 setting_default_language: Default-Sprache
187 setting_login_required: Authentisierung erforderlich
187 setting_login_required: Authentisierung erforderlich
188 setting_self_registration: Anmeldung ermöglicht
188 setting_self_registration: Anmeldung ermöglicht
189 setting_attachment_max_size: Max. Dateigröße
189 setting_attachment_max_size: Max. Dateigröße
190 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
190 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
191 setting_mail_from: E-Mail-Absender
191 setting_mail_from: E-Mail-Absender
192 setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden
192 setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden
193 setting_host_name: Hostname
193 setting_host_name: Hostname
194 setting_text_formatting: Textformatierung
194 setting_text_formatting: Textformatierung
195 setting_wiki_compression: Wiki-Historie komprimieren
195 setting_wiki_compression: Wiki-Historie komprimieren
196 setting_feeds_limit: Max. Anzahl Einträge pro Atom-Feed
196 setting_feeds_limit: Max. Anzahl Einträge pro Atom-Feed
197 setting_default_projects_public: Neue Projekte sind standardmäßig öffentlich
197 setting_default_projects_public: Neue Projekte sind standardmäßig öffentlich
198 setting_autofetch_changesets: Changesets automatisch abrufen
198 setting_autofetch_changesets: Changesets automatisch abrufen
199 setting_sys_api_enabled: Webservice zur Verwaltung der Projektarchive benutzen
199 setting_sys_api_enabled: Webservice zur Verwaltung der Projektarchive benutzen
200 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
200 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
201 setting_commit_fix_keywords: Schlüsselwörter (Status)
201 setting_commit_fix_keywords: Schlüsselwörter (Status)
202 setting_autologin: Automatische Anmeldung
202 setting_autologin: Automatische Anmeldung
203 setting_date_format: Datumsformat
203 setting_date_format: Datumsformat
204 setting_time_format: Zeitformat
204 setting_time_format: Zeitformat
205 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
205 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
206 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
206 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
207 setting_repositories_encodings: Kodierungen der Projektarchive
207 setting_repositories_encodings: Kodierungen der Projektarchive
208 setting_emails_footer: E-Mail-Fußzeile
208 setting_emails_footer: E-Mail-Fußzeile
209 setting_protocol: Protokoll
209 setting_protocol: Protokoll
210 setting_per_page_options: Objekte pro Seite
210 setting_per_page_options: Objekte pro Seite
211 setting_user_format: Benutzer-Anzeigeformat
211 setting_user_format: Benutzer-Anzeigeformat
212 setting_activity_days_default: Anzahl Tage pro Seite der Projekt-Aktivität
212 setting_activity_days_default: Anzahl Tage pro Seite der Projekt-Aktivität
213 setting_display_subprojects_issues: Tickets von Unterprojekten im Hauptprojekt anzeigen
213 setting_display_subprojects_issues: Tickets von Unterprojekten im Hauptprojekt anzeigen
214
214
215 project_module_issue_tracking: Ticket-Verfolgung
215 project_module_issue_tracking: Ticket-Verfolgung
216 project_module_time_tracking: Zeiterfassung
216 project_module_time_tracking: Zeiterfassung
217 project_module_news: News
217 project_module_news: News
218 project_module_documents: Dokumente
218 project_module_documents: Dokumente
219 project_module_files: Dateien
219 project_module_files: Dateien
220 project_module_wiki: Wiki
220 project_module_wiki: Wiki
221 project_module_repository: Projektarchiv
221 project_module_repository: Projektarchiv
222 project_module_boards: Foren
222 project_module_boards: Foren
223
223
224 label_user: Benutzer
224 label_user: Benutzer
225 label_user_plural: Benutzer
225 label_user_plural: Benutzer
226 label_user_new: Neuer Benutzer
226 label_user_new: Neuer Benutzer
227 label_project: Projekt
227 label_project: Projekt
228 label_project_new: Neues Projekt
228 label_project_new: Neues Projekt
229 label_project_plural: Projekte
229 label_project_plural: Projekte
230 label_project_all: Alle Projekte
230 label_project_all: Alle Projekte
231 label_project_latest: Neueste Projekte
231 label_project_latest: Neueste Projekte
232 label_issue: Ticket
232 label_issue: Ticket
233 label_issue_new: Neues Ticket
233 label_issue_new: Neues Ticket
234 label_issue_plural: Tickets
234 label_issue_plural: Tickets
235 label_issue_view_all: Alle Tickets anzeigen
235 label_issue_view_all: Alle Tickets anzeigen
236 label_issues_by: Tickets von %s
236 label_issues_by: Tickets von %s
237 label_issue_added: Ticket hinzugefügt
237 label_issue_added: Ticket hinzugefügt
238 label_issue_updated: Ticket aktualisiert
238 label_issue_updated: Ticket aktualisiert
239 label_document: Dokument
239 label_document: Dokument
240 label_document_new: Neues Dokument
240 label_document_new: Neues Dokument
241 label_document_plural: Dokumente
241 label_document_plural: Dokumente
242 label_document_added: Dokument hinzugefügt
242 label_document_added: Dokument hinzugefügt
243 label_role: Rolle
243 label_role: Rolle
244 label_role_plural: Rollen
244 label_role_plural: Rollen
245 label_role_new: Neue Rolle
245 label_role_new: Neue Rolle
246 label_role_and_permissions: Rollen und Rechte
246 label_role_and_permissions: Rollen und Rechte
247 label_member: Mitglied
247 label_member: Mitglied
248 label_member_new: Neues Mitglied
248 label_member_new: Neues Mitglied
249 label_member_plural: Mitglieder
249 label_member_plural: Mitglieder
250 label_tracker: Tracker
250 label_tracker: Tracker
251 label_tracker_plural: Tracker
251 label_tracker_plural: Tracker
252 label_tracker_new: Neuer Tracker
252 label_tracker_new: Neuer Tracker
253 label_workflow: Workflow
253 label_workflow: Workflow
254 label_issue_status: Ticket-Status
254 label_issue_status: Ticket-Status
255 label_issue_status_plural: Ticket-Status
255 label_issue_status_plural: Ticket-Status
256 label_issue_status_new: Neuer Status
256 label_issue_status_new: Neuer Status
257 label_issue_category: Ticket-Kategorie
257 label_issue_category: Ticket-Kategorie
258 label_issue_category_plural: Ticket-Kategorien
258 label_issue_category_plural: Ticket-Kategorien
259 label_issue_category_new: Neue Kategorie
259 label_issue_category_new: Neue Kategorie
260 label_custom_field: Benutzerdefiniertes Feld
260 label_custom_field: Benutzerdefiniertes Feld
261 label_custom_field_plural: Benutzerdefinierte Felder
261 label_custom_field_plural: Benutzerdefinierte Felder
262 label_custom_field_new: Neues Feld
262 label_custom_field_new: Neues Feld
263 label_enumerations: Aufzählungen
263 label_enumerations: Aufzählungen
264 label_enumeration_new: Neuer Wert
264 label_enumeration_new: Neuer Wert
265 label_information: Information
265 label_information: Information
266 label_information_plural: Informationen
266 label_information_plural: Informationen
267 label_please_login: Anmelden
267 label_please_login: Anmelden
268 label_register: Registrieren
268 label_register: Registrieren
269 label_password_lost: Kennwort vergessen
269 label_password_lost: Kennwort vergessen
270 label_home: Hauptseite
270 label_home: Hauptseite
271 label_my_page: Meine Seite
271 label_my_page: Meine Seite
272 label_my_account: Mein Konto
272 label_my_account: Mein Konto
273 label_my_projects: Meine Projekte
273 label_my_projects: Meine Projekte
274 label_administration: Administration
274 label_administration: Administration
275 label_login: Anmelden
275 label_login: Anmelden
276 label_logout: Abmelden
276 label_logout: Abmelden
277 label_help: Hilfe
277 label_help: Hilfe
278 label_reported_issues: Gemeldete Tickets
278 label_reported_issues: Gemeldete Tickets
279 label_assigned_to_me_issues: Mir zugewiesen
279 label_assigned_to_me_issues: Mir zugewiesen
280 label_last_login: Letzte Anmeldung
280 label_last_login: Letzte Anmeldung
281 label_last_updates: zuletzt aktualisiert
281 label_last_updates: zuletzt aktualisiert
282 label_last_updates_plural: %d zuletzt aktualisierten
282 label_last_updates_plural: %d zuletzt aktualisierten
283 label_registered_on: Angemeldet am
283 label_registered_on: Angemeldet am
284 label_activity: Aktivität
284 label_activity: Aktivität
285 label_overall_activity: Aktivität aller Projekte anzeigen
285 label_overall_activity: Aktivität aller Projekte anzeigen
286 label_new: Neu
286 label_new: Neu
287 label_logged_as: Angemeldet als
287 label_logged_as: Angemeldet als
288 label_environment: Environment
288 label_environment: Environment
289 label_authentication: Authentifizierung
289 label_authentication: Authentifizierung
290 label_auth_source: Authentifizierungs-Modus
290 label_auth_source: Authentifizierungs-Modus
291 label_auth_source_new: Neuer Authentifizierungs-Modus
291 label_auth_source_new: Neuer Authentifizierungs-Modus
292 label_auth_source_plural: Authentifizierungs-Arten
292 label_auth_source_plural: Authentifizierungs-Arten
293 label_subproject_plural: Unterprojekte
293 label_subproject_plural: Unterprojekte
294 label_min_max_length: Länge (Min. - Max.)
294 label_min_max_length: Länge (Min. - Max.)
295 label_list: Liste
295 label_list: Liste
296 label_date: Datum
296 label_date: Datum
297 label_integer: Zahl
297 label_integer: Zahl
298 label_float: Fließkommazahl
298 label_float: Fließkommazahl
299 label_boolean: Boolean
299 label_boolean: Boolean
300 label_string: Text
300 label_string: Text
301 label_text: Langer Text
301 label_text: Langer Text
302 label_attribute: Attribut
302 label_attribute: Attribut
303 label_attribute_plural: Attribute
303 label_attribute_plural: Attribute
304 label_download: %d Download
304 label_download: %d Download
305 label_download_plural: %d Downloads
305 label_download_plural: %d Downloads
306 label_no_data: Nichts anzuzeigen
306 label_no_data: Nichts anzuzeigen
307 label_change_status: Statuswechsel
307 label_change_status: Statuswechsel
308 label_history: Historie
308 label_history: Historie
309 label_attachment: Datei
309 label_attachment: Datei
310 label_attachment_new: Neue Datei
310 label_attachment_new: Neue Datei
311 label_attachment_delete: Anhang löschen
311 label_attachment_delete: Anhang löschen
312 label_attachment_plural: Dateien
312 label_attachment_plural: Dateien
313 label_file_added: Datei hinzugefügt
313 label_file_added: Datei hinzugefügt
314 label_report: Bericht
314 label_report: Bericht
315 label_report_plural: Berichte
315 label_report_plural: Berichte
316 label_news: News
316 label_news: News
317 label_news_new: News hinzufügen
317 label_news_new: News hinzufügen
318 label_news_plural: News
318 label_news_plural: News
319 label_news_latest: Letzte News
319 label_news_latest: Letzte News
320 label_news_view_all: Alle News anzeigen
320 label_news_view_all: Alle News anzeigen
321 label_news_added: News hinzugefügt
321 label_news_added: News hinzugefügt
322 label_change_log: Change-Log
322 label_change_log: Change-Log
323 label_settings: Konfiguration
323 label_settings: Konfiguration
324 label_overview: Übersicht
324 label_overview: Übersicht
325 label_version: Version
325 label_version: Version
326 label_version_new: Neue Version
326 label_version_new: Neue Version
327 label_version_plural: Versionen
327 label_version_plural: Versionen
328 label_confirmation: Bestätigung
328 label_confirmation: Bestätigung
329 label_export_to: "Auch abrufbar als:"
329 label_export_to: "Auch abrufbar als:"
330 label_read: Lesen...
330 label_read: Lesen...
331 label_public_projects: Öffentliche Projekte
331 label_public_projects: Öffentliche Projekte
332 label_open_issues: offen
332 label_open_issues: offen
333 label_open_issues_plural: offen
333 label_open_issues_plural: offen
334 label_closed_issues: geschlossen
334 label_closed_issues: geschlossen
335 label_closed_issues_plural: geschlossen
335 label_closed_issues_plural: geschlossen
336 label_total: Gesamtzahl
336 label_total: Gesamtzahl
337 label_permissions: Berechtigungen
337 label_permissions: Berechtigungen
338 label_current_status: Gegenwärtiger Status
338 label_current_status: Gegenwärtiger Status
339 label_new_statuses_allowed: Neue Berechtigungen
339 label_new_statuses_allowed: Neue Berechtigungen
340 label_all: alle
340 label_all: alle
341 label_none: kein
341 label_none: kein
342 label_nobody: Niemand
342 label_nobody: Niemand
343 label_next: Weiter
343 label_next: Weiter
344 label_previous: Zurück
344 label_previous: Zurück
345 label_used_by: Benutzt von
345 label_used_by: Benutzt von
346 label_details: Details
346 label_details: Details
347 label_add_note: Kommentar hinzufügen
347 label_add_note: Kommentar hinzufügen
348 label_per_page: Pro Seite
348 label_per_page: Pro Seite
349 label_calendar: Kalender
349 label_calendar: Kalender
350 label_months_from: Monate ab
350 label_months_from: Monate ab
351 label_gantt: Gantt
351 label_gantt: Gantt
352 label_internal: Intern
352 label_internal: Intern
353 label_last_changes: %d letzte Änderungen
353 label_last_changes: %d letzte Änderungen
354 label_change_view_all: Alle Änderungen anzeigen
354 label_change_view_all: Alle Änderungen anzeigen
355 label_personalize_page: Diese Seite anpassen
355 label_personalize_page: Diese Seite anpassen
356 label_comment: Kommentar
356 label_comment: Kommentar
357 label_comment_plural: Kommentare
357 label_comment_plural: Kommentare
358 label_comment_add: Kommentar hinzufügen
358 label_comment_add: Kommentar hinzufügen
359 label_comment_added: Kommentar hinzugefügt
359 label_comment_added: Kommentar hinzugefügt
360 label_comment_delete: Kommentar löschen
360 label_comment_delete: Kommentar löschen
361 label_query: Benutzerdefinierte Abfrage
361 label_query: Benutzerdefinierte Abfrage
362 label_query_plural: Benutzerdefinierte Berichte
362 label_query_plural: Benutzerdefinierte Berichte
363 label_query_new: Neuer Bericht
363 label_query_new: Neuer Bericht
364 label_filter_add: Filter hinzufügen
364 label_filter_add: Filter hinzufügen
365 label_filter_plural: Filter
365 label_filter_plural: Filter
366 label_equals: ist
366 label_equals: ist
367 label_not_equals: ist nicht
367 label_not_equals: ist nicht
368 label_in_less_than: in weniger als
368 label_in_less_than: in weniger als
369 label_in_more_than: in mehr als
369 label_in_more_than: in mehr als
370 label_in: an
370 label_in: an
371 label_today: heute
371 label_today: heute
372 label_all_time: gesamter Zeitraum
372 label_all_time: gesamter Zeitraum
373 label_yesterday: gestern
373 label_yesterday: gestern
374 label_this_week: aktuelle Woche
374 label_this_week: aktuelle Woche
375 label_last_week: vorige Woche
375 label_last_week: vorige Woche
376 label_last_n_days: die letzten %d Tage
376 label_last_n_days: die letzten %d Tage
377 label_this_month: aktueller Monat
377 label_this_month: aktueller Monat
378 label_last_month: voriger Monat
378 label_last_month: voriger Monat
379 label_this_year: aktuelles Jahr
379 label_this_year: aktuelles Jahr
380 label_date_range: Zeitraum
380 label_date_range: Zeitraum
381 label_less_than_ago: vor weniger als
381 label_less_than_ago: vor weniger als
382 label_more_than_ago: vor mehr als
382 label_more_than_ago: vor mehr als
383 label_ago: vor
383 label_ago: vor
384 label_contains: enthält
384 label_contains: enthält
385 label_not_contains: enthält nicht
385 label_not_contains: enthält nicht
386 label_day_plural: Tage
386 label_day_plural: Tage
387 label_repository: Projektarchiv
387 label_repository: Projektarchiv
388 label_repository_plural: Projektarchive
388 label_repository_plural: Projektarchive
389 label_browse: Codebrowser
389 label_browse: Codebrowser
390 label_modification: %d Änderung
390 label_modification: %d Änderung
391 label_modification_plural: %d Änderungen
391 label_modification_plural: %d Änderungen
392 label_revision: Revision
392 label_revision: Revision
393 label_revision_plural: Revisionen
393 label_revision_plural: Revisionen
394 label_associated_revisions: Zugehörige Revisionen
394 label_associated_revisions: Zugehörige Revisionen
395 label_added: hinzugefügt
395 label_added: hinzugefügt
396 label_modified: geändert
396 label_modified: geändert
397 label_deleted: gelöscht
397 label_deleted: gelöscht
398 label_latest_revision: Aktuellste Revision
398 label_latest_revision: Aktuellste Revision
399 label_latest_revision_plural: Aktuellste Revisionen
399 label_latest_revision_plural: Aktuellste Revisionen
400 label_view_revisions: Revisionen anzeigen
400 label_view_revisions: Revisionen anzeigen
401 label_max_size: Maximale Größe
401 label_max_size: Maximale Größe
402 label_on: von
402 label_on: von
403 label_sort_highest: An den Anfang
403 label_sort_highest: An den Anfang
404 label_sort_higher: Eins höher
404 label_sort_higher: Eins höher
405 label_sort_lower: Eins tiefer
405 label_sort_lower: Eins tiefer
406 label_sort_lowest: Ans Ende
406 label_sort_lowest: Ans Ende
407 label_roadmap: Roadmap
407 label_roadmap: Roadmap
408 label_roadmap_due_in: Fällig in
408 label_roadmap_due_in: Fällig in
409 label_roadmap_overdue: %s verspätet
409 label_roadmap_overdue: %s verspätet
410 label_roadmap_no_issues: Keine Tickets für diese Version
410 label_roadmap_no_issues: Keine Tickets für diese Version
411 label_search: Suche
411 label_search: Suche
412 label_result_plural: Resultate
412 label_result_plural: Resultate
413 label_all_words: Alle Wörter
413 label_all_words: Alle Wörter
414 label_wiki: Wiki
414 label_wiki: Wiki
415 label_wiki_edit: Wiki-Bearbeitung
415 label_wiki_edit: Wiki-Bearbeitung
416 label_wiki_edit_plural: Wiki-Bearbeitungen
416 label_wiki_edit_plural: Wiki-Bearbeitungen
417 label_wiki_page: Wiki-Seite
417 label_wiki_page: Wiki-Seite
418 label_wiki_page_plural: Wiki-Seiten
418 label_wiki_page_plural: Wiki-Seiten
419 label_index_by_title: Seiten nach Titel sortiert
419 label_index_by_title: Seiten nach Titel sortiert
420 label_index_by_date: Seiten nach Datum sortiert
420 label_index_by_date: Seiten nach Datum sortiert
421 label_current_version: Gegenwärtige Version
421 label_current_version: Gegenwärtige Version
422 label_preview: Vorschau
422 label_preview: Vorschau
423 label_feed_plural: Feeds
423 label_feed_plural: Feeds
424 label_changes_details: Details aller Änderungen
424 label_changes_details: Details aller Änderungen
425 label_issue_tracking: Tickets
425 label_issue_tracking: Tickets
426 label_spent_time: Aufgewendete Zeit
426 label_spent_time: Aufgewendete Zeit
427 label_f_hour: %.2f Stunde
427 label_f_hour: %.2f Stunde
428 label_f_hour_plural: %.2f Stunden
428 label_f_hour_plural: %.2f Stunden
429 label_time_tracking: Zeiterfassung
429 label_time_tracking: Zeiterfassung
430 label_change_plural: Änderungen
430 label_change_plural: Änderungen
431 label_statistics: Statistiken
431 label_statistics: Statistiken
432 label_commits_per_month: Übertragungen pro Monat
432 label_commits_per_month: Übertragungen pro Monat
433 label_commits_per_author: Übertragungen pro Autor
433 label_commits_per_author: Übertragungen pro Autor
434 label_view_diff: Unterschiede anzeigen
434 label_view_diff: Unterschiede anzeigen
435 label_diff_inline: inline
435 label_diff_inline: inline
436 label_diff_side_by_side: nebeneinander
436 label_diff_side_by_side: nebeneinander
437 label_options: Optionen
437 label_options: Optionen
438 label_copy_workflow_from: Workflow kopieren von
438 label_copy_workflow_from: Workflow kopieren von
439 label_permissions_report: Berechtigungsübersicht
439 label_permissions_report: Berechtigungsübersicht
440 label_watched_issues: Beobachtete Tickets
440 label_watched_issues: Beobachtete Tickets
441 label_related_issues: Zugehörige Tickets
441 label_related_issues: Zugehörige Tickets
442 label_applied_status: Zugewiesener Status
442 label_applied_status: Zugewiesener Status
443 label_loading: Lade...
443 label_loading: Lade...
444 label_relation_new: Neue Beziehung
444 label_relation_new: Neue Beziehung
445 label_relation_delete: Beziehung löschen
445 label_relation_delete: Beziehung löschen
446 label_relates_to: Beziehung mit
446 label_relates_to: Beziehung mit
447 label_duplicates: Duplikat von
447 label_duplicates: Duplikat von
448 label_blocks: Blockiert
448 label_blocks: Blockiert
449 label_blocked_by: Blockiert durch
449 label_blocked_by: Blockiert durch
450 label_precedes: Vorgänger von
450 label_precedes: Vorgänger von
451 label_follows: folgt
451 label_follows: folgt
452 label_end_to_start: Ende - Anfang
452 label_end_to_start: Ende - Anfang
453 label_end_to_end: Ende - Ende
453 label_end_to_end: Ende - Ende
454 label_start_to_start: Anfang - Anfang
454 label_start_to_start: Anfang - Anfang
455 label_start_to_end: Anfang - Ende
455 label_start_to_end: Anfang - Ende
456 label_stay_logged_in: Angemeldet bleiben
456 label_stay_logged_in: Angemeldet bleiben
457 label_disabled: gesperrt
457 label_disabled: gesperrt
458 label_show_completed_versions: Abgeschlossene Versionen anzeigen
458 label_show_completed_versions: Abgeschlossene Versionen anzeigen
459 label_me: ich
459 label_me: ich
460 label_board: Forum
460 label_board: Forum
461 label_board_new: Neues Forum
461 label_board_new: Neues Forum
462 label_board_plural: Foren
462 label_board_plural: Foren
463 label_topic_plural: Themen
463 label_topic_plural: Themen
464 label_message_plural: Nachrichten
464 label_message_plural: Nachrichten
465 label_message_last: Letzte Nachricht
465 label_message_last: Letzte Nachricht
466 label_message_new: Neue Nachricht
466 label_message_new: Neue Nachricht
467 label_message_posted: Forums-Beitrag hinzugefügt
467 label_message_posted: Forums-Beitrag hinzugefügt
468 label_reply_plural: Antworten
468 label_reply_plural: Antworten
469 label_send_information: Sende Kontoinformationen zum Benutzer
469 label_send_information: Sende Kontoinformationen zum Benutzer
470 label_year: Jahr
470 label_year: Jahr
471 label_month: Monat
471 label_month: Monat
472 label_week: Woche
472 label_week: Woche
473 label_date_from: Von
473 label_date_from: Von
474 label_date_to: Bis
474 label_date_to: Bis
475 label_language_based: Sprachabhängig
475 label_language_based: Sprachabhängig
476 label_sort_by: Sortiert nach %s
476 label_sort_by: Sortiert nach %s
477 label_send_test_email: Test-E-Mail senden
477 label_send_test_email: Test-E-Mail senden
478 label_feeds_access_key_created_on: Atom-Zugriffsschlüssel vor %s erstellt
478 label_feeds_access_key_created_on: Atom-Zugriffsschlüssel vor %s erstellt
479 label_module_plural: Module
479 label_module_plural: Module
480 label_added_time_by: Von %s vor %s hinzugefügt
480 label_added_time_by: Von %s vor %s hinzugefügt
481 label_updated_time: Vor %s aktualisiert
481 label_updated_time: Vor %s aktualisiert
482 label_jump_to_a_project: Zu einem Projekt springen...
482 label_jump_to_a_project: Zu einem Projekt springen...
483 label_file_plural: Dateien
483 label_file_plural: Dateien
484 label_changeset_plural: Changesets
484 label_changeset_plural: Changesets
485 label_default_columns: Default-Spalten
485 label_default_columns: Default-Spalten
486 label_no_change_option: (Keine Änderung)
486 label_no_change_option: (Keine Änderung)
487 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
487 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
488 label_theme: Stil
488 label_theme: Stil
489 label_default: Default
489 label_default: Default
490 label_search_titles_only: Nur Titel durchsuchen
490 label_search_titles_only: Nur Titel durchsuchen
491 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
491 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
492 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
492 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
493 label_user_mail_option_none: "Nur für Dinge, die ich beobachte oder an denen ich beteiligt bin"
493 label_user_mail_option_none: "Nur für Dinge, die ich beobachte oder an denen ich beteiligt bin"
494 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
494 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
495 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
495 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
496 label_registration_manual_activation: Manuelle Kontoaktivierung
496 label_registration_manual_activation: Manuelle Kontoaktivierung
497 label_registration_automatic_activation: Automatische Kontoaktivierung
497 label_registration_automatic_activation: Automatische Kontoaktivierung
498 label_display_per_page: 'Pro Seite: %s'
498 label_display_per_page: 'Pro Seite: %s'
499 label_age: Geändert vor
499 label_age: Geändert vor
500 label_change_properties: Eigenschaften ändern
500 label_change_properties: Eigenschaften ändern
501 label_general: Allgemein
501 label_general: Allgemein
502 label_more: Mehr
502 label_more: Mehr
503 label_scm: Versionskontrollsystem
503 label_scm: Versionskontrollsystem
504 label_plugins: Plugins
504 label_plugins: Plugins
505 label_ldap_authentication: LDAP-Authentifizierung
505 label_ldap_authentication: LDAP-Authentifizierung
506 label_downloads_abbr: D/L
506 label_downloads_abbr: D/L
507 label_optional_description: Beschreibung (optional)
507 label_optional_description: Beschreibung (optional)
508 label_add_another_file: Eine weitere Datei hinzufügen
508 label_add_another_file: Eine weitere Datei hinzufügen
509 label_preferences: Präferenzen
509 label_preferences: Präferenzen
510 label_chronological_order: in zeitlicher Reihenfolge
510 label_chronological_order: in zeitlicher Reihenfolge
511 label_reverse_chronological_order: in umgekehrter zeitlicher Reihenfolge
511 label_reverse_chronological_order: in umgekehrter zeitlicher Reihenfolge
512 label_planning: Terminplanung
512 label_planning: Terminplanung
513
513
514 button_login: Anmelden
514 button_login: Anmelden
515 button_submit: OK
515 button_submit: OK
516 button_save: Speichern
516 button_save: Speichern
517 button_check_all: Alles auswählen
517 button_check_all: Alles auswählen
518 button_uncheck_all: Alles abwählen
518 button_uncheck_all: Alles abwählen
519 button_delete: Löschen
519 button_delete: Löschen
520 button_create: Anlegen
520 button_create: Anlegen
521 button_test: Testen
521 button_test: Testen
522 button_edit: Bearbeiten
522 button_edit: Bearbeiten
523 button_add: Hinzufügen
523 button_add: Hinzufügen
524 button_change: Wechseln
524 button_change: Wechseln
525 button_apply: Anwenden
525 button_apply: Anwenden
526 button_clear: Zurücksetzen
526 button_clear: Zurücksetzen
527 button_lock: Sperren
527 button_lock: Sperren
528 button_unlock: Entsperren
528 button_unlock: Entsperren
529 button_download: Download
529 button_download: Download
530 button_list: Liste
530 button_list: Liste
531 button_view: Anzeigen
531 button_view: Anzeigen
532 button_move: Verschieben
532 button_move: Verschieben
533 button_back: Zurück
533 button_back: Zurück
534 button_cancel: Abbrechen
534 button_cancel: Abbrechen
535 button_activate: Aktivieren
535 button_activate: Aktivieren
536 button_sort: Sortieren
536 button_sort: Sortieren
537 button_log_time: Aufwand buchen
537 button_log_time: Aufwand buchen
538 button_rollback: Auf diese Version zurücksetzen
538 button_rollback: Auf diese Version zurücksetzen
539 button_watch: Beobachten
539 button_watch: Beobachten
540 button_unwatch: Nicht beobachten
540 button_unwatch: Nicht beobachten
541 button_reply: Antworten
541 button_reply: Antworten
542 button_archive: Archivieren
542 button_archive: Archivieren
543 button_unarchive: Entarchivieren
543 button_unarchive: Entarchivieren
544 button_reset: Zurücksetzen
544 button_reset: Zurücksetzen
545 button_rename: Umbenennen
545 button_rename: Umbenennen
546 button_change_password: Kennwort ändern
546 button_change_password: Kennwort ändern
547 button_copy: Kopieren
547 button_copy: Kopieren
548 button_annotate: Annotieren
548 button_annotate: Annotieren
549 button_update: Aktualisieren
549 button_update: Aktualisieren
550 button_configure: Konfigurieren
550 button_configure: Konfigurieren
551
551
552 status_active: aktiv
552 status_active: aktiv
553 status_registered: angemeldet
553 status_registered: angemeldet
554 status_locked: gesperrt
554 status_locked: gesperrt
555
555
556 text_select_mail_notifications: Bitte wählen Sie die Aktionen aus, für die eine Mailbenachrichtigung gesendet werden soll
556 text_select_mail_notifications: Bitte wählen Sie die Aktionen aus, für die eine Mailbenachrichtigung gesendet werden soll
557 text_regexp_info: z. B. ^[A-Z0-9]+$
557 text_regexp_info: z. B. ^[A-Z0-9]+$
558 text_min_max_length_info: 0 heißt keine Beschränkung
558 text_min_max_length_info: 0 heißt keine Beschränkung
559 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
559 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
560 text_workflow_edit: Workflow zum Bearbeiten auswählen
560 text_workflow_edit: Workflow zum Bearbeiten auswählen
561 text_are_you_sure: Sind Sie sicher?
561 text_are_you_sure: Sind Sie sicher?
562 text_journal_changed: geändert von %s zu %s
562 text_journal_changed: geändert von %s zu %s
563 text_journal_set_to: gestellt zu %s
563 text_journal_set_to: gestellt zu %s
564 text_journal_deleted: gelöscht
564 text_journal_deleted: gelöscht
565 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
565 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
566 text_tip_task_end_day: Aufgabe, die an diesem Tag endet
566 text_tip_task_end_day: Aufgabe, die an diesem Tag endet
567 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
567 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
568 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
568 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
569 text_caracters_maximum: Max. %d Zeichen.
569 text_caracters_maximum: Max. %d Zeichen.
570 text_caracters_minimum: Muss mindestens %d Zeichen lang sein.
570 text_caracters_minimum: Muss mindestens %d Zeichen lang sein.
571 text_length_between: Länge zwischen %d und %d Zeichen.
571 text_length_between: Länge zwischen %d und %d Zeichen.
572 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
572 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
573 text_unallowed_characters: Nicht erlaubte Zeichen
573 text_unallowed_characters: Nicht erlaubte Zeichen
574 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
574 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
575 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
575 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
576 text_issue_added: Ticket %s wurde erstellt by %s.
576 text_issue_added: Ticket %s wurde erstellt by %s.
577 text_issue_updated: Ticket %s wurde aktualisiert by %s.
577 text_issue_updated: Ticket %s wurde aktualisiert by %s.
578 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
578 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
579 text_issue_category_destroy_question: Einige Tickets (%d) sind dieser Kategorie zugeodnet. Was möchten Sie tun?
579 text_issue_category_destroy_question: Einige Tickets (%d) sind dieser Kategorie zugeodnet. Was möchten Sie tun?
580 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
580 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
581 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
581 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
582 text_user_mail_option: "Für nicht ausgewählte Projekte werden Sie nur Benachrichtigungen für Dinge erhalten, die Sie beobachten oder an denen Sie beteiligt sind (z. B. Tickets, deren Autor Sie sind oder die Ihnen zugewiesen sind)."
582 text_user_mail_option: "Für nicht ausgewählte Projekte werden Sie nur Benachrichtigungen für Dinge erhalten, die Sie beobachten oder an denen Sie beteiligt sind (z. B. Tickets, deren Autor Sie sind oder die Ihnen zugewiesen sind)."
583 text_no_configuration_data: "Rollen, Tracker, Ticket-Status und Workflows wurden noch nicht konfiguriert.\nEs ist sehr zu empfehlen, die Standard-Konfiguration zu laden. Sobald sie geladen ist, können Sie sie abändern."
583 text_no_configuration_data: "Rollen, Tracker, Ticket-Status und Workflows wurden noch nicht konfiguriert.\nEs ist sehr zu empfehlen, die Standard-Konfiguration zu laden. Sobald sie geladen ist, können Sie sie abändern."
584 text_load_default_configuration: Standard-Konfiguration laden
584 text_load_default_configuration: Standard-Konfiguration laden
585 text_status_changed_by_changeset: Status geändert durch Changeset %s.
585 text_status_changed_by_changeset: Status geändert durch Changeset %s.
586 text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewählten Tickets löschen möchten?'
586 text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewählten Tickets löschen möchten?'
587 text_select_project_modules: 'Bitte wählen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:'
587 text_select_project_modules: 'Bitte wählen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:'
588 text_default_administrator_account_changed: Administrator-Kennwort geändert
588 text_default_administrator_account_changed: Administrator-Kennwort geändert
589 text_file_repository_writable: Verzeichnis für Dateien beschreibbar
589 text_file_repository_writable: Verzeichnis für Dateien beschreibbar
590 text_rmagick_available: RMagick verfügbar (optional)
590 text_rmagick_available: RMagick verfügbar (optional)
591 text_destroy_time_entries_question: Es wurden bereits %.02f Stunden auf dieses Ticket gebucht. Was soll mit den Aufwänden geschehen?
591 text_destroy_time_entries_question: Es wurden bereits %.02f Stunden auf dieses Ticket gebucht. Was soll mit den Aufwänden geschehen?
592 text_destroy_time_entries: Gebuchte Aufwände löschen
592 text_destroy_time_entries: Gebuchte Aufwände löschen
593 text_assign_time_entries_to_project: Gebuchte Aufwände dem Projekt zuweisen
593 text_assign_time_entries_to_project: Gebuchte Aufwände dem Projekt zuweisen
594 text_reassign_time_entries: 'Gebuchte Aufwände diesem Ticket zuweisen:'
594 text_reassign_time_entries: 'Gebuchte Aufwände diesem Ticket zuweisen:'
595
595
596 default_role_manager: Manager
596 default_role_manager: Manager
597 default_role_developper: Entwickler
597 default_role_developper: Entwickler
598 default_role_reporter: Reporter
598 default_role_reporter: Reporter
599 default_tracker_bug: Fehler
599 default_tracker_bug: Fehler
600 default_tracker_feature: Feature
600 default_tracker_feature: Feature
601 default_tracker_support: Unterstützung
601 default_tracker_support: Unterstützung
602 default_issue_status_new: Neu
602 default_issue_status_new: Neu
603 default_issue_status_assigned: Zugewiesen
603 default_issue_status_assigned: Zugewiesen
604 default_issue_status_resolved: Gelöst
604 default_issue_status_resolved: Gelöst
605 default_issue_status_feedback: Feedback
605 default_issue_status_feedback: Feedback
606 default_issue_status_closed: Erledigt
606 default_issue_status_closed: Erledigt
607 default_issue_status_rejected: Abgewiesen
607 default_issue_status_rejected: Abgewiesen
608 default_doc_category_user: Benutzerdokumentation
608 default_doc_category_user: Benutzerdokumentation
609 default_doc_category_tech: Technische Dokumentation
609 default_doc_category_tech: Technische Dokumentation
610 default_priority_low: Niedrig
610 default_priority_low: Niedrig
611 default_priority_normal: Normal
611 default_priority_normal: Normal
612 default_priority_high: Hoch
612 default_priority_high: Hoch
613 default_priority_urgent: Dringend
613 default_priority_urgent: Dringend
614 default_priority_immediate: Sofort
614 default_priority_immediate: Sofort
615 default_activity_design: Design
615 default_activity_design: Design
616 default_activity_development: Entwicklung
616 default_activity_development: Entwicklung
617
617
618 enumeration_issue_priorities: Ticket-Prioritäten
618 enumeration_issue_priorities: Ticket-Prioritäten
619 enumeration_doc_categories: Dokumentenkategorien
619 enumeration_doc_categories: Dokumentenkategorien
620 enumeration_activities: Aktivitäten (Zeiterfassung)
620 enumeration_activities: Aktivitäten (Zeiterfassung)
621 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
621 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
622 label_and_its_subprojects: %s and its subprojects
622 label_and_its_subprojects: %s and its subprojects
623 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
623 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
624 mail_subject_reminder: "%d issue(s) due in the next days"
624 mail_subject_reminder: "%d issue(s) due in the next days"
625 text_user_wrote: '%s wrote:'
625 text_user_wrote: '%s wrote:'
626 label_duplicated_by: duplicated by
626 label_duplicated_by: duplicated by
627 setting_enabled_scm: Enabled SCM
627 setting_enabled_scm: Enabled SCM
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
630 label_incoming_emails: Incoming emails
631 label_generate_key: Generate a key
632 setting_mail_handler_api_enabled: Enable WS for incoming emails
633 setting_mail_handler_api_key: API key
@@ -1,629 +1,633
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: less than a second
18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 actionview_instancetag_blank_option: Please select
20 actionview_instancetag_blank_option: Please select
21
21
22 activerecord_error_inclusion: is not included in the list
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: is too long
29 activerecord_error_too_long: is too long
30 activerecord_error_too_short: is too short
30 activerecord_error_too_short: is too short
31 activerecord_error_wrong_length: is the wrong length
31 activerecord_error_wrong_length: is the wrong length
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: is not a number
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: is not a valid date
34 activerecord_error_not_a_date: is not a valid date
35 activerecord_error_greater_than_start_date: must be greater than start date
35 activerecord_error_greater_than_start_date: must be greater than start date
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Yes'
46 general_text_Yes: 'Yes'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'yes'
48 general_text_yes: 'yes'
49 general_lang_name: 'English'
49 general_lang_name: 'English'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
53 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Account was successfully updated.
56 notice_account_updated: Account was successfully updated.
57 notice_account_invalid_creditentials: Invalid user or password
57 notice_account_invalid_creditentials: Invalid user or password
58 notice_account_password_updated: Password was successfully updated.
58 notice_account_password_updated: Password was successfully updated.
59 notice_account_wrong_password: Wrong password
59 notice_account_wrong_password: Wrong password
60 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
60 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
61 notice_account_unknown_email: Unknown user.
61 notice_account_unknown_email: Unknown user.
62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
63 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
64 notice_account_activated: Your account has been activated. You can now log in.
64 notice_account_activated: Your account has been activated. You can now log in.
65 notice_successful_create: Successful creation.
65 notice_successful_create: Successful creation.
66 notice_successful_update: Successful update.
66 notice_successful_update: Successful update.
67 notice_successful_delete: Successful deletion.
67 notice_successful_delete: Successful deletion.
68 notice_successful_connection: Successful connection.
68 notice_successful_connection: Successful connection.
69 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
69 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
70 notice_locking_conflict: Data has been updated by another user.
70 notice_locking_conflict: Data has been updated by another user.
71 notice_not_authorized: You are not authorized to access this page.
71 notice_not_authorized: You are not authorized to access this page.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reset.
74 notice_feeds_access_key_reseted: Your RSS access key was reset.
75 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
75 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
76 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
76 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
77 notice_account_pending: "Your account was created and is now pending administrator approval."
77 notice_account_pending: "Your account was created and is now pending administrator approval."
78 notice_default_data_loaded: Default configuration successfully loaded.
78 notice_default_data_loaded: Default configuration successfully loaded.
79
79
80 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
80 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
81 error_scm_not_found: "The entry or revision was not found in the repository."
81 error_scm_not_found: "The entry or revision was not found in the repository."
82 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
82 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
83 error_scm_annotate: "The entry does not exist or can not be annotated."
83 error_scm_annotate: "The entry does not exist or can not be annotated."
84 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
84 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
85
85
86 mail_subject_lost_password: Your %s password
86 mail_subject_lost_password: Your %s password
87 mail_body_lost_password: 'To change your password, click on the following link:'
87 mail_body_lost_password: 'To change your password, click on the following link:'
88 mail_subject_register: Your %s account activation
88 mail_subject_register: Your %s account activation
89 mail_body_register: 'To activate your account, click on the following link:'
89 mail_body_register: 'To activate your account, click on the following link:'
90 mail_body_account_information_external: You can use your "%s" account to log in.
90 mail_body_account_information_external: You can use your "%s" account to log in.
91 mail_body_account_information: Your account information
91 mail_body_account_information: Your account information
92 mail_subject_account_activation_request: %s account activation request
92 mail_subject_account_activation_request: %s account activation request
93 mail_body_account_activation_request: 'A new user (%s) has registered. His account is pending your approval:'
93 mail_body_account_activation_request: 'A new user (%s) has registered. His account is pending your approval:'
94 mail_subject_reminder: "%d issue(s) due in the next days"
94 mail_subject_reminder: "%d issue(s) due in the next days"
95 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
95 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
96
96
97 gui_validation_error: 1 error
97 gui_validation_error: 1 error
98 gui_validation_error_plural: %d errors
98 gui_validation_error_plural: %d errors
99
99
100 field_name: Name
100 field_name: Name
101 field_description: Description
101 field_description: Description
102 field_summary: Summary
102 field_summary: Summary
103 field_is_required: Required
103 field_is_required: Required
104 field_firstname: Firstname
104 field_firstname: Firstname
105 field_lastname: Lastname
105 field_lastname: Lastname
106 field_mail: Email
106 field_mail: Email
107 field_filename: File
107 field_filename: File
108 field_filesize: Size
108 field_filesize: Size
109 field_downloads: Downloads
109 field_downloads: Downloads
110 field_author: Author
110 field_author: Author
111 field_created_on: Created
111 field_created_on: Created
112 field_updated_on: Updated
112 field_updated_on: Updated
113 field_field_format: Format
113 field_field_format: Format
114 field_is_for_all: For all projects
114 field_is_for_all: For all projects
115 field_possible_values: Possible values
115 field_possible_values: Possible values
116 field_regexp: Regular expression
116 field_regexp: Regular expression
117 field_min_length: Minimum length
117 field_min_length: Minimum length
118 field_max_length: Maximum length
118 field_max_length: Maximum length
119 field_value: Value
119 field_value: Value
120 field_category: Category
120 field_category: Category
121 field_title: Title
121 field_title: Title
122 field_project: Project
122 field_project: Project
123 field_issue: Issue
123 field_issue: Issue
124 field_status: Status
124 field_status: Status
125 field_notes: Notes
125 field_notes: Notes
126 field_is_closed: Issue closed
126 field_is_closed: Issue closed
127 field_is_default: Default value
127 field_is_default: Default value
128 field_tracker: Tracker
128 field_tracker: Tracker
129 field_subject: Subject
129 field_subject: Subject
130 field_due_date: Due date
130 field_due_date: Due date
131 field_assigned_to: Assigned to
131 field_assigned_to: Assigned to
132 field_priority: Priority
132 field_priority: Priority
133 field_fixed_version: Target version
133 field_fixed_version: Target version
134 field_user: User
134 field_user: User
135 field_role: Role
135 field_role: Role
136 field_homepage: Homepage
136 field_homepage: Homepage
137 field_is_public: Public
137 field_is_public: Public
138 field_parent: Subproject of
138 field_parent: Subproject of
139 field_is_in_chlog: Issues displayed in changelog
139 field_is_in_chlog: Issues displayed in changelog
140 field_is_in_roadmap: Issues displayed in roadmap
140 field_is_in_roadmap: Issues displayed in roadmap
141 field_login: Login
141 field_login: Login
142 field_mail_notification: Email notifications
142 field_mail_notification: Email notifications
143 field_admin: Administrator
143 field_admin: Administrator
144 field_last_login_on: Last connection
144 field_last_login_on: Last connection
145 field_language: Language
145 field_language: Language
146 field_effective_date: Date
146 field_effective_date: Date
147 field_password: Password
147 field_password: Password
148 field_new_password: New password
148 field_new_password: New password
149 field_password_confirmation: Confirmation
149 field_password_confirmation: Confirmation
150 field_version: Version
150 field_version: Version
151 field_type: Type
151 field_type: Type
152 field_host: Host
152 field_host: Host
153 field_port: Port
153 field_port: Port
154 field_account: Account
154 field_account: Account
155 field_base_dn: Base DN
155 field_base_dn: Base DN
156 field_attr_login: Login attribute
156 field_attr_login: Login attribute
157 field_attr_firstname: Firstname attribute
157 field_attr_firstname: Firstname attribute
158 field_attr_lastname: Lastname attribute
158 field_attr_lastname: Lastname attribute
159 field_attr_mail: Email attribute
159 field_attr_mail: Email attribute
160 field_onthefly: On-the-fly user creation
160 field_onthefly: On-the-fly user creation
161 field_start_date: Start
161 field_start_date: Start
162 field_done_ratio: %% Done
162 field_done_ratio: %% Done
163 field_auth_source: Authentication mode
163 field_auth_source: Authentication mode
164 field_hide_mail: Hide my email address
164 field_hide_mail: Hide my email address
165 field_comments: Comment
165 field_comments: Comment
166 field_url: URL
166 field_url: URL
167 field_start_page: Start page
167 field_start_page: Start page
168 field_subproject: Subproject
168 field_subproject: Subproject
169 field_hours: Hours
169 field_hours: Hours
170 field_activity: Activity
170 field_activity: Activity
171 field_spent_on: Date
171 field_spent_on: Date
172 field_identifier: Identifier
172 field_identifier: Identifier
173 field_is_filter: Used as a filter
173 field_is_filter: Used as a filter
174 field_issue_to_id: Related issue
174 field_issue_to_id: Related issue
175 field_delay: Delay
175 field_delay: Delay
176 field_assignable: Issues can be assigned to this role
176 field_assignable: Issues can be assigned to this role
177 field_redirect_existing_links: Redirect existing links
177 field_redirect_existing_links: Redirect existing links
178 field_estimated_hours: Estimated time
178 field_estimated_hours: Estimated time
179 field_column_names: Columns
179 field_column_names: Columns
180 field_time_zone: Time zone
180 field_time_zone: Time zone
181 field_searchable: Searchable
181 field_searchable: Searchable
182 field_default_value: Default value
182 field_default_value: Default value
183 field_comments_sorting: Display comments
183 field_comments_sorting: Display comments
184
184
185 setting_app_title: Application title
185 setting_app_title: Application title
186 setting_app_subtitle: Application subtitle
186 setting_app_subtitle: Application subtitle
187 setting_welcome_text: Welcome text
187 setting_welcome_text: Welcome text
188 setting_default_language: Default language
188 setting_default_language: Default language
189 setting_login_required: Authentication required
189 setting_login_required: Authentication required
190 setting_self_registration: Self-registration
190 setting_self_registration: Self-registration
191 setting_attachment_max_size: Attachment max. size
191 setting_attachment_max_size: Attachment max. size
192 setting_issues_export_limit: Issues export limit
192 setting_issues_export_limit: Issues export limit
193 setting_mail_from: Emission email address
193 setting_mail_from: Emission email address
194 setting_bcc_recipients: Blind carbon copy recipients (bcc)
194 setting_bcc_recipients: Blind carbon copy recipients (bcc)
195 setting_host_name: Host name
195 setting_host_name: Host name
196 setting_text_formatting: Text formatting
196 setting_text_formatting: Text formatting
197 setting_wiki_compression: Wiki history compression
197 setting_wiki_compression: Wiki history compression
198 setting_feeds_limit: Feed content limit
198 setting_feeds_limit: Feed content limit
199 setting_default_projects_public: New projects are public by default
199 setting_default_projects_public: New projects are public by default
200 setting_autofetch_changesets: Autofetch commits
200 setting_autofetch_changesets: Autofetch commits
201 setting_sys_api_enabled: Enable WS for repository management
201 setting_sys_api_enabled: Enable WS for repository management
202 setting_commit_ref_keywords: Referencing keywords
202 setting_commit_ref_keywords: Referencing keywords
203 setting_commit_fix_keywords: Fixing keywords
203 setting_commit_fix_keywords: Fixing keywords
204 setting_autologin: Autologin
204 setting_autologin: Autologin
205 setting_date_format: Date format
205 setting_date_format: Date format
206 setting_time_format: Time format
206 setting_time_format: Time format
207 setting_cross_project_issue_relations: Allow cross-project issue relations
207 setting_cross_project_issue_relations: Allow cross-project issue relations
208 setting_issue_list_default_columns: Default columns displayed on the issue list
208 setting_issue_list_default_columns: Default columns displayed on the issue list
209 setting_repositories_encodings: Repositories encodings
209 setting_repositories_encodings: Repositories encodings
210 setting_emails_footer: Emails footer
210 setting_emails_footer: Emails footer
211 setting_protocol: Protocol
211 setting_protocol: Protocol
212 setting_per_page_options: Objects per page options
212 setting_per_page_options: Objects per page options
213 setting_user_format: Users display format
213 setting_user_format: Users display format
214 setting_activity_days_default: Days displayed on project activity
214 setting_activity_days_default: Days displayed on project activity
215 setting_display_subprojects_issues: Display subprojects issues on main projects by default
215 setting_display_subprojects_issues: Display subprojects issues on main projects by default
216 setting_enabled_scm: Enabled SCM
216 setting_enabled_scm: Enabled SCM
217 setting_mail_handler_api_enabled: Enable WS for incoming emails
218 setting_mail_handler_api_key: API key
217
219
218 project_module_issue_tracking: Issue tracking
220 project_module_issue_tracking: Issue tracking
219 project_module_time_tracking: Time tracking
221 project_module_time_tracking: Time tracking
220 project_module_news: News
222 project_module_news: News
221 project_module_documents: Documents
223 project_module_documents: Documents
222 project_module_files: Files
224 project_module_files: Files
223 project_module_wiki: Wiki
225 project_module_wiki: Wiki
224 project_module_repository: Repository
226 project_module_repository: Repository
225 project_module_boards: Boards
227 project_module_boards: Boards
226
228
227 label_user: User
229 label_user: User
228 label_user_plural: Users
230 label_user_plural: Users
229 label_user_new: New user
231 label_user_new: New user
230 label_project: Project
232 label_project: Project
231 label_project_new: New project
233 label_project_new: New project
232 label_project_plural: Projects
234 label_project_plural: Projects
233 label_project_all: All Projects
235 label_project_all: All Projects
234 label_project_latest: Latest projects
236 label_project_latest: Latest projects
235 label_issue: Issue
237 label_issue: Issue
236 label_issue_new: New issue
238 label_issue_new: New issue
237 label_issue_plural: Issues
239 label_issue_plural: Issues
238 label_issue_view_all: View all issues
240 label_issue_view_all: View all issues
239 label_issues_by: Issues by %s
241 label_issues_by: Issues by %s
240 label_issue_added: Issue added
242 label_issue_added: Issue added
241 label_issue_updated: Issue updated
243 label_issue_updated: Issue updated
242 label_document: Document
244 label_document: Document
243 label_document_new: New document
245 label_document_new: New document
244 label_document_plural: Documents
246 label_document_plural: Documents
245 label_document_added: Document added
247 label_document_added: Document added
246 label_role: Role
248 label_role: Role
247 label_role_plural: Roles
249 label_role_plural: Roles
248 label_role_new: New role
250 label_role_new: New role
249 label_role_and_permissions: Roles and permissions
251 label_role_and_permissions: Roles and permissions
250 label_member: Member
252 label_member: Member
251 label_member_new: New member
253 label_member_new: New member
252 label_member_plural: Members
254 label_member_plural: Members
253 label_tracker: Tracker
255 label_tracker: Tracker
254 label_tracker_plural: Trackers
256 label_tracker_plural: Trackers
255 label_tracker_new: New tracker
257 label_tracker_new: New tracker
256 label_workflow: Workflow
258 label_workflow: Workflow
257 label_issue_status: Issue status
259 label_issue_status: Issue status
258 label_issue_status_plural: Issue statuses
260 label_issue_status_plural: Issue statuses
259 label_issue_status_new: New status
261 label_issue_status_new: New status
260 label_issue_category: Issue category
262 label_issue_category: Issue category
261 label_issue_category_plural: Issue categories
263 label_issue_category_plural: Issue categories
262 label_issue_category_new: New category
264 label_issue_category_new: New category
263 label_custom_field: Custom field
265 label_custom_field: Custom field
264 label_custom_field_plural: Custom fields
266 label_custom_field_plural: Custom fields
265 label_custom_field_new: New custom field
267 label_custom_field_new: New custom field
266 label_enumerations: Enumerations
268 label_enumerations: Enumerations
267 label_enumeration_new: New value
269 label_enumeration_new: New value
268 label_information: Information
270 label_information: Information
269 label_information_plural: Information
271 label_information_plural: Information
270 label_please_login: Please log in
272 label_please_login: Please log in
271 label_register: Register
273 label_register: Register
272 label_password_lost: Lost password
274 label_password_lost: Lost password
273 label_home: Home
275 label_home: Home
274 label_my_page: My page
276 label_my_page: My page
275 label_my_account: My account
277 label_my_account: My account
276 label_my_projects: My projects
278 label_my_projects: My projects
277 label_administration: Administration
279 label_administration: Administration
278 label_login: Sign in
280 label_login: Sign in
279 label_logout: Sign out
281 label_logout: Sign out
280 label_help: Help
282 label_help: Help
281 label_reported_issues: Reported issues
283 label_reported_issues: Reported issues
282 label_assigned_to_me_issues: Issues assigned to me
284 label_assigned_to_me_issues: Issues assigned to me
283 label_last_login: Last connection
285 label_last_login: Last connection
284 label_last_updates: Last updated
286 label_last_updates: Last updated
285 label_last_updates_plural: %d last updated
287 label_last_updates_plural: %d last updated
286 label_registered_on: Registered on
288 label_registered_on: Registered on
287 label_activity: Activity
289 label_activity: Activity
288 label_overall_activity: Overall activity
290 label_overall_activity: Overall activity
289 label_new: New
291 label_new: New
290 label_logged_as: Logged in as
292 label_logged_as: Logged in as
291 label_environment: Environment
293 label_environment: Environment
292 label_authentication: Authentication
294 label_authentication: Authentication
293 label_auth_source: Authentication mode
295 label_auth_source: Authentication mode
294 label_auth_source_new: New authentication mode
296 label_auth_source_new: New authentication mode
295 label_auth_source_plural: Authentication modes
297 label_auth_source_plural: Authentication modes
296 label_subproject_plural: Subprojects
298 label_subproject_plural: Subprojects
297 label_and_its_subprojects: %s and its subprojects
299 label_and_its_subprojects: %s and its subprojects
298 label_min_max_length: Min - Max length
300 label_min_max_length: Min - Max length
299 label_list: List
301 label_list: List
300 label_date: Date
302 label_date: Date
301 label_integer: Integer
303 label_integer: Integer
302 label_float: Float
304 label_float: Float
303 label_boolean: Boolean
305 label_boolean: Boolean
304 label_string: Text
306 label_string: Text
305 label_text: Long text
307 label_text: Long text
306 label_attribute: Attribute
308 label_attribute: Attribute
307 label_attribute_plural: Attributes
309 label_attribute_plural: Attributes
308 label_download: %d Download
310 label_download: %d Download
309 label_download_plural: %d Downloads
311 label_download_plural: %d Downloads
310 label_no_data: No data to display
312 label_no_data: No data to display
311 label_change_status: Change status
313 label_change_status: Change status
312 label_history: History
314 label_history: History
313 label_attachment: File
315 label_attachment: File
314 label_attachment_new: New file
316 label_attachment_new: New file
315 label_attachment_delete: Delete file
317 label_attachment_delete: Delete file
316 label_attachment_plural: Files
318 label_attachment_plural: Files
317 label_file_added: File added
319 label_file_added: File added
318 label_report: Report
320 label_report: Report
319 label_report_plural: Reports
321 label_report_plural: Reports
320 label_news: News
322 label_news: News
321 label_news_new: Add news
323 label_news_new: Add news
322 label_news_plural: News
324 label_news_plural: News
323 label_news_latest: Latest news
325 label_news_latest: Latest news
324 label_news_view_all: View all news
326 label_news_view_all: View all news
325 label_news_added: News added
327 label_news_added: News added
326 label_change_log: Change log
328 label_change_log: Change log
327 label_settings: Settings
329 label_settings: Settings
328 label_overview: Overview
330 label_overview: Overview
329 label_version: Version
331 label_version: Version
330 label_version_new: New version
332 label_version_new: New version
331 label_version_plural: Versions
333 label_version_plural: Versions
332 label_confirmation: Confirmation
334 label_confirmation: Confirmation
333 label_export_to: 'Also available in:'
335 label_export_to: 'Also available in:'
334 label_read: Read...
336 label_read: Read...
335 label_public_projects: Public projects
337 label_public_projects: Public projects
336 label_open_issues: open
338 label_open_issues: open
337 label_open_issues_plural: open
339 label_open_issues_plural: open
338 label_closed_issues: closed
340 label_closed_issues: closed
339 label_closed_issues_plural: closed
341 label_closed_issues_plural: closed
340 label_total: Total
342 label_total: Total
341 label_permissions: Permissions
343 label_permissions: Permissions
342 label_current_status: Current status
344 label_current_status: Current status
343 label_new_statuses_allowed: New statuses allowed
345 label_new_statuses_allowed: New statuses allowed
344 label_all: all
346 label_all: all
345 label_none: none
347 label_none: none
346 label_nobody: nobody
348 label_nobody: nobody
347 label_next: Next
349 label_next: Next
348 label_previous: Previous
350 label_previous: Previous
349 label_used_by: Used by
351 label_used_by: Used by
350 label_details: Details
352 label_details: Details
351 label_add_note: Add a note
353 label_add_note: Add a note
352 label_per_page: Per page
354 label_per_page: Per page
353 label_calendar: Calendar
355 label_calendar: Calendar
354 label_months_from: months from
356 label_months_from: months from
355 label_gantt: Gantt
357 label_gantt: Gantt
356 label_internal: Internal
358 label_internal: Internal
357 label_last_changes: last %d changes
359 label_last_changes: last %d changes
358 label_change_view_all: View all changes
360 label_change_view_all: View all changes
359 label_personalize_page: Personalize this page
361 label_personalize_page: Personalize this page
360 label_comment: Comment
362 label_comment: Comment
361 label_comment_plural: Comments
363 label_comment_plural: Comments
362 label_comment_add: Add a comment
364 label_comment_add: Add a comment
363 label_comment_added: Comment added
365 label_comment_added: Comment added
364 label_comment_delete: Delete comments
366 label_comment_delete: Delete comments
365 label_query: Custom query
367 label_query: Custom query
366 label_query_plural: Custom queries
368 label_query_plural: Custom queries
367 label_query_new: New query
369 label_query_new: New query
368 label_filter_add: Add filter
370 label_filter_add: Add filter
369 label_filter_plural: Filters
371 label_filter_plural: Filters
370 label_equals: is
372 label_equals: is
371 label_not_equals: is not
373 label_not_equals: is not
372 label_in_less_than: in less than
374 label_in_less_than: in less than
373 label_in_more_than: in more than
375 label_in_more_than: in more than
374 label_in: in
376 label_in: in
375 label_today: today
377 label_today: today
376 label_all_time: all time
378 label_all_time: all time
377 label_yesterday: yesterday
379 label_yesterday: yesterday
378 label_this_week: this week
380 label_this_week: this week
379 label_last_week: last week
381 label_last_week: last week
380 label_last_n_days: last %d days
382 label_last_n_days: last %d days
381 label_this_month: this month
383 label_this_month: this month
382 label_last_month: last month
384 label_last_month: last month
383 label_this_year: this year
385 label_this_year: this year
384 label_date_range: Date range
386 label_date_range: Date range
385 label_less_than_ago: less than days ago
387 label_less_than_ago: less than days ago
386 label_more_than_ago: more than days ago
388 label_more_than_ago: more than days ago
387 label_ago: days ago
389 label_ago: days ago
388 label_contains: contains
390 label_contains: contains
389 label_not_contains: doesn't contain
391 label_not_contains: doesn't contain
390 label_day_plural: days
392 label_day_plural: days
391 label_repository: Repository
393 label_repository: Repository
392 label_repository_plural: Repositories
394 label_repository_plural: Repositories
393 label_browse: Browse
395 label_browse: Browse
394 label_modification: %d change
396 label_modification: %d change
395 label_modification_plural: %d changes
397 label_modification_plural: %d changes
396 label_revision: Revision
398 label_revision: Revision
397 label_revision_plural: Revisions
399 label_revision_plural: Revisions
398 label_associated_revisions: Associated revisions
400 label_associated_revisions: Associated revisions
399 label_added: added
401 label_added: added
400 label_modified: modified
402 label_modified: modified
401 label_deleted: deleted
403 label_deleted: deleted
402 label_latest_revision: Latest revision
404 label_latest_revision: Latest revision
403 label_latest_revision_plural: Latest revisions
405 label_latest_revision_plural: Latest revisions
404 label_view_revisions: View revisions
406 label_view_revisions: View revisions
405 label_max_size: Maximum size
407 label_max_size: Maximum size
406 label_on: 'on'
408 label_on: 'on'
407 label_sort_highest: Move to top
409 label_sort_highest: Move to top
408 label_sort_higher: Move up
410 label_sort_higher: Move up
409 label_sort_lower: Move down
411 label_sort_lower: Move down
410 label_sort_lowest: Move to bottom
412 label_sort_lowest: Move to bottom
411 label_roadmap: Roadmap
413 label_roadmap: Roadmap
412 label_roadmap_due_in: Due in
414 label_roadmap_due_in: Due in
413 label_roadmap_overdue: %s late
415 label_roadmap_overdue: %s late
414 label_roadmap_no_issues: No issues for this version
416 label_roadmap_no_issues: No issues for this version
415 label_search: Search
417 label_search: Search
416 label_result_plural: Results
418 label_result_plural: Results
417 label_all_words: All words
419 label_all_words: All words
418 label_wiki: Wiki
420 label_wiki: Wiki
419 label_wiki_edit: Wiki edit
421 label_wiki_edit: Wiki edit
420 label_wiki_edit_plural: Wiki edits
422 label_wiki_edit_plural: Wiki edits
421 label_wiki_page: Wiki page
423 label_wiki_page: Wiki page
422 label_wiki_page_plural: Wiki pages
424 label_wiki_page_plural: Wiki pages
423 label_index_by_title: Index by title
425 label_index_by_title: Index by title
424 label_index_by_date: Index by date
426 label_index_by_date: Index by date
425 label_current_version: Current version
427 label_current_version: Current version
426 label_preview: Preview
428 label_preview: Preview
427 label_feed_plural: Feeds
429 label_feed_plural: Feeds
428 label_changes_details: Details of all changes
430 label_changes_details: Details of all changes
429 label_issue_tracking: Issue tracking
431 label_issue_tracking: Issue tracking
430 label_spent_time: Spent time
432 label_spent_time: Spent time
431 label_f_hour: %.2f hour
433 label_f_hour: %.2f hour
432 label_f_hour_plural: %.2f hours
434 label_f_hour_plural: %.2f hours
433 label_time_tracking: Time tracking
435 label_time_tracking: Time tracking
434 label_change_plural: Changes
436 label_change_plural: Changes
435 label_statistics: Statistics
437 label_statistics: Statistics
436 label_commits_per_month: Commits per month
438 label_commits_per_month: Commits per month
437 label_commits_per_author: Commits per author
439 label_commits_per_author: Commits per author
438 label_view_diff: View differences
440 label_view_diff: View differences
439 label_diff_inline: inline
441 label_diff_inline: inline
440 label_diff_side_by_side: side by side
442 label_diff_side_by_side: side by side
441 label_options: Options
443 label_options: Options
442 label_copy_workflow_from: Copy workflow from
444 label_copy_workflow_from: Copy workflow from
443 label_permissions_report: Permissions report
445 label_permissions_report: Permissions report
444 label_watched_issues: Watched issues
446 label_watched_issues: Watched issues
445 label_related_issues: Related issues
447 label_related_issues: Related issues
446 label_applied_status: Applied status
448 label_applied_status: Applied status
447 label_loading: Loading...
449 label_loading: Loading...
448 label_relation_new: New relation
450 label_relation_new: New relation
449 label_relation_delete: Delete relation
451 label_relation_delete: Delete relation
450 label_relates_to: related to
452 label_relates_to: related to
451 label_duplicates: duplicates
453 label_duplicates: duplicates
452 label_duplicated_by: duplicated by
454 label_duplicated_by: duplicated by
453 label_blocks: blocks
455 label_blocks: blocks
454 label_blocked_by: blocked by
456 label_blocked_by: blocked by
455 label_precedes: precedes
457 label_precedes: precedes
456 label_follows: follows
458 label_follows: follows
457 label_end_to_start: end to start
459 label_end_to_start: end to start
458 label_end_to_end: end to end
460 label_end_to_end: end to end
459 label_start_to_start: start to start
461 label_start_to_start: start to start
460 label_start_to_end: start to end
462 label_start_to_end: start to end
461 label_stay_logged_in: Stay logged in
463 label_stay_logged_in: Stay logged in
462 label_disabled: disabled
464 label_disabled: disabled
463 label_show_completed_versions: Show completed versions
465 label_show_completed_versions: Show completed versions
464 label_me: me
466 label_me: me
465 label_board: Forum
467 label_board: Forum
466 label_board_new: New forum
468 label_board_new: New forum
467 label_board_plural: Forums
469 label_board_plural: Forums
468 label_topic_plural: Topics
470 label_topic_plural: Topics
469 label_message_plural: Messages
471 label_message_plural: Messages
470 label_message_last: Last message
472 label_message_last: Last message
471 label_message_new: New message
473 label_message_new: New message
472 label_message_posted: Message added
474 label_message_posted: Message added
473 label_reply_plural: Replies
475 label_reply_plural: Replies
474 label_send_information: Send account information to the user
476 label_send_information: Send account information to the user
475 label_year: Year
477 label_year: Year
476 label_month: Month
478 label_month: Month
477 label_week: Week
479 label_week: Week
478 label_date_from: From
480 label_date_from: From
479 label_date_to: To
481 label_date_to: To
480 label_language_based: Based on user's language
482 label_language_based: Based on user's language
481 label_sort_by: Sort by %s
483 label_sort_by: Sort by %s
482 label_send_test_email: Send a test email
484 label_send_test_email: Send a test email
483 label_feeds_access_key_created_on: RSS access key created %s ago
485 label_feeds_access_key_created_on: RSS access key created %s ago
484 label_module_plural: Modules
486 label_module_plural: Modules
485 label_added_time_by: Added by %s %s ago
487 label_added_time_by: Added by %s %s ago
486 label_updated_time: Updated %s ago
488 label_updated_time: Updated %s ago
487 label_jump_to_a_project: Jump to a project...
489 label_jump_to_a_project: Jump to a project...
488 label_file_plural: Files
490 label_file_plural: Files
489 label_changeset_plural: Changesets
491 label_changeset_plural: Changesets
490 label_default_columns: Default columns
492 label_default_columns: Default columns
491 label_no_change_option: (No change)
493 label_no_change_option: (No change)
492 label_bulk_edit_selected_issues: Bulk edit selected issues
494 label_bulk_edit_selected_issues: Bulk edit selected issues
493 label_theme: Theme
495 label_theme: Theme
494 label_default: Default
496 label_default: Default
495 label_search_titles_only: Search titles only
497 label_search_titles_only: Search titles only
496 label_user_mail_option_all: "For any event on all my projects"
498 label_user_mail_option_all: "For any event on all my projects"
497 label_user_mail_option_selected: "For any event on the selected projects only..."
499 label_user_mail_option_selected: "For any event on the selected projects only..."
498 label_user_mail_option_none: "Only for things I watch or I'm involved in"
500 label_user_mail_option_none: "Only for things I watch or I'm involved in"
499 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
501 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
500 label_registration_activation_by_email: account activation by email
502 label_registration_activation_by_email: account activation by email
501 label_registration_manual_activation: manual account activation
503 label_registration_manual_activation: manual account activation
502 label_registration_automatic_activation: automatic account activation
504 label_registration_automatic_activation: automatic account activation
503 label_display_per_page: 'Per page: %s'
505 label_display_per_page: 'Per page: %s'
504 label_age: Age
506 label_age: Age
505 label_change_properties: Change properties
507 label_change_properties: Change properties
506 label_general: General
508 label_general: General
507 label_more: More
509 label_more: More
508 label_scm: SCM
510 label_scm: SCM
509 label_plugins: Plugins
511 label_plugins: Plugins
510 label_ldap_authentication: LDAP authentication
512 label_ldap_authentication: LDAP authentication
511 label_downloads_abbr: D/L
513 label_downloads_abbr: D/L
512 label_optional_description: Optional description
514 label_optional_description: Optional description
513 label_add_another_file: Add another file
515 label_add_another_file: Add another file
514 label_preferences: Preferences
516 label_preferences: Preferences
515 label_chronological_order: In chronological order
517 label_chronological_order: In chronological order
516 label_reverse_chronological_order: In reverse chronological order
518 label_reverse_chronological_order: In reverse chronological order
517 label_planning: Planning
519 label_planning: Planning
520 label_incoming_emails: Incoming emails
521 label_generate_key: Generate a key
518
522
519 button_login: Login
523 button_login: Login
520 button_submit: Submit
524 button_submit: Submit
521 button_save: Save
525 button_save: Save
522 button_check_all: Check all
526 button_check_all: Check all
523 button_uncheck_all: Uncheck all
527 button_uncheck_all: Uncheck all
524 button_delete: Delete
528 button_delete: Delete
525 button_create: Create
529 button_create: Create
526 button_test: Test
530 button_test: Test
527 button_edit: Edit
531 button_edit: Edit
528 button_add: Add
532 button_add: Add
529 button_change: Change
533 button_change: Change
530 button_apply: Apply
534 button_apply: Apply
531 button_clear: Clear
535 button_clear: Clear
532 button_lock: Lock
536 button_lock: Lock
533 button_unlock: Unlock
537 button_unlock: Unlock
534 button_download: Download
538 button_download: Download
535 button_list: List
539 button_list: List
536 button_view: View
540 button_view: View
537 button_move: Move
541 button_move: Move
538 button_back: Back
542 button_back: Back
539 button_cancel: Cancel
543 button_cancel: Cancel
540 button_activate: Activate
544 button_activate: Activate
541 button_sort: Sort
545 button_sort: Sort
542 button_log_time: Log time
546 button_log_time: Log time
543 button_rollback: Rollback to this version
547 button_rollback: Rollback to this version
544 button_watch: Watch
548 button_watch: Watch
545 button_unwatch: Unwatch
549 button_unwatch: Unwatch
546 button_reply: Reply
550 button_reply: Reply
547 button_archive: Archive
551 button_archive: Archive
548 button_unarchive: Unarchive
552 button_unarchive: Unarchive
549 button_reset: Reset
553 button_reset: Reset
550 button_rename: Rename
554 button_rename: Rename
551 button_change_password: Change password
555 button_change_password: Change password
552 button_copy: Copy
556 button_copy: Copy
553 button_annotate: Annotate
557 button_annotate: Annotate
554 button_update: Update
558 button_update: Update
555 button_configure: Configure
559 button_configure: Configure
556
560
557 status_active: active
561 status_active: active
558 status_registered: registered
562 status_registered: registered
559 status_locked: locked
563 status_locked: locked
560
564
561 text_select_mail_notifications: Select actions for which email notifications should be sent.
565 text_select_mail_notifications: Select actions for which email notifications should be sent.
562 text_regexp_info: eg. ^[A-Z0-9]+$
566 text_regexp_info: eg. ^[A-Z0-9]+$
563 text_min_max_length_info: 0 means no restriction
567 text_min_max_length_info: 0 means no restriction
564 text_project_destroy_confirmation: Are you sure you want to delete this project and related data ?
568 text_project_destroy_confirmation: Are you sure you want to delete this project and related data ?
565 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
569 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
566 text_workflow_edit: Select a role and a tracker to edit the workflow
570 text_workflow_edit: Select a role and a tracker to edit the workflow
567 text_are_you_sure: Are you sure ?
571 text_are_you_sure: Are you sure ?
568 text_journal_changed: changed from %s to %s
572 text_journal_changed: changed from %s to %s
569 text_journal_set_to: set to %s
573 text_journal_set_to: set to %s
570 text_journal_deleted: deleted
574 text_journal_deleted: deleted
571 text_tip_task_begin_day: task beginning this day
575 text_tip_task_begin_day: task beginning this day
572 text_tip_task_end_day: task ending this day
576 text_tip_task_end_day: task ending this day
573 text_tip_task_begin_end_day: task beginning and ending this day
577 text_tip_task_begin_end_day: task beginning and ending this day
574 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
578 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
575 text_caracters_maximum: %d characters maximum.
579 text_caracters_maximum: %d characters maximum.
576 text_caracters_minimum: Must be at least %d characters long.
580 text_caracters_minimum: Must be at least %d characters long.
577 text_length_between: Length between %d and %d characters.
581 text_length_between: Length between %d and %d characters.
578 text_tracker_no_workflow: No workflow defined for this tracker
582 text_tracker_no_workflow: No workflow defined for this tracker
579 text_unallowed_characters: Unallowed characters
583 text_unallowed_characters: Unallowed characters
580 text_comma_separated: Multiple values allowed (comma separated).
584 text_comma_separated: Multiple values allowed (comma separated).
581 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
585 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
582 text_issue_added: Issue %s has been reported by %s.
586 text_issue_added: Issue %s has been reported by %s.
583 text_issue_updated: Issue %s has been updated by %s.
587 text_issue_updated: Issue %s has been updated by %s.
584 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
588 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
585 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
589 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
586 text_issue_category_destroy_assignments: Remove category assignments
590 text_issue_category_destroy_assignments: Remove category assignments
587 text_issue_category_reassign_to: Reassign issues to this category
591 text_issue_category_reassign_to: Reassign issues to this category
588 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
592 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
589 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
593 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
590 text_load_default_configuration: Load the default configuration
594 text_load_default_configuration: Load the default configuration
591 text_status_changed_by_changeset: Applied in changeset %s.
595 text_status_changed_by_changeset: Applied in changeset %s.
592 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
596 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
593 text_select_project_modules: 'Select modules to enable for this project:'
597 text_select_project_modules: 'Select modules to enable for this project:'
594 text_default_administrator_account_changed: Default administrator account changed
598 text_default_administrator_account_changed: Default administrator account changed
595 text_file_repository_writable: File repository writable
599 text_file_repository_writable: File repository writable
596 text_rmagick_available: RMagick available (optional)
600 text_rmagick_available: RMagick available (optional)
597 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
601 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
598 text_destroy_time_entries: Delete reported hours
602 text_destroy_time_entries: Delete reported hours
599 text_assign_time_entries_to_project: Assign reported hours to the project
603 text_assign_time_entries_to_project: Assign reported hours to the project
600 text_reassign_time_entries: 'Reassign reported hours to this issue:'
604 text_reassign_time_entries: 'Reassign reported hours to this issue:'
601 text_user_wrote: '%s wrote:'
605 text_user_wrote: '%s wrote:'
602 text_enumeration_destroy_question: '%d objects are assigned to this value.'
606 text_enumeration_destroy_question: '%d objects are assigned to this value.'
603 text_enumeration_category_reassign_to: 'Reassign them to this value:'
607 text_enumeration_category_reassign_to: 'Reassign them to this value:'
604
608
605 default_role_manager: Manager
609 default_role_manager: Manager
606 default_role_developper: Developer
610 default_role_developper: Developer
607 default_role_reporter: Reporter
611 default_role_reporter: Reporter
608 default_tracker_bug: Bug
612 default_tracker_bug: Bug
609 default_tracker_feature: Feature
613 default_tracker_feature: Feature
610 default_tracker_support: Support
614 default_tracker_support: Support
611 default_issue_status_new: New
615 default_issue_status_new: New
612 default_issue_status_assigned: Assigned
616 default_issue_status_assigned: Assigned
613 default_issue_status_resolved: Resolved
617 default_issue_status_resolved: Resolved
614 default_issue_status_feedback: Feedback
618 default_issue_status_feedback: Feedback
615 default_issue_status_closed: Closed
619 default_issue_status_closed: Closed
616 default_issue_status_rejected: Rejected
620 default_issue_status_rejected: Rejected
617 default_doc_category_user: User documentation
621 default_doc_category_user: User documentation
618 default_doc_category_tech: Technical documentation
622 default_doc_category_tech: Technical documentation
619 default_priority_low: Low
623 default_priority_low: Low
620 default_priority_normal: Normal
624 default_priority_normal: Normal
621 default_priority_high: High
625 default_priority_high: High
622 default_priority_urgent: Urgent
626 default_priority_urgent: Urgent
623 default_priority_immediate: Immediate
627 default_priority_immediate: Immediate
624 default_activity_design: Design
628 default_activity_design: Design
625 default_activity_development: Development
629 default_activity_development: Development
626
630
627 enumeration_issue_priorities: Issue priorities
631 enumeration_issue_priorities: Issue priorities
628 enumeration_doc_categories: Document categories
632 enumeration_doc_categories: Document categories
629 enumeration_activities: Activities (time tracking)
633 enumeration_activities: Activities (time tracking)
@@ -1,631 +1,635
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 día
8 actionview_datehelper_time_in_words_day: 1 día
9 actionview_datehelper_time_in_words_day_plural: %d días
9 actionview_datehelper_time_in_words_day_plural: %d días
10 actionview_datehelper_time_in_words_hour_about: una hora aproximadamente
10 actionview_datehelper_time_in_words_hour_about: una hora aproximadamente
11 actionview_datehelper_time_in_words_hour_about_plural: aproximadamente %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: aproximadamente %d horas
12 actionview_datehelper_time_in_words_hour_about_single: una hora aproximadamente
12 actionview_datehelper_time_in_words_hour_about_single: una hora aproximadamente
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: medio minuto
14 actionview_datehelper_time_in_words_minute_half: medio minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de un minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de un minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: menos de un segundo
18 actionview_datehelper_time_in_words_second_less_than: menos de un segundo
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 actionview_instancetag_blank_option: Por favor seleccione
20 actionview_instancetag_blank_option: Por favor seleccione
21
21
22 activerecord_error_inclusion: no está incluído en la lista
22 activerecord_error_inclusion: no está incluído en la lista
23 activerecord_error_exclusion: está reservado
23 activerecord_error_exclusion: está reservado
24 activerecord_error_invalid: no es válido
24 activerecord_error_invalid: no es válido
25 activerecord_error_confirmation: la confirmación no coincide
25 activerecord_error_confirmation: la confirmación no coincide
26 activerecord_error_accepted: debe ser aceptado
26 activerecord_error_accepted: debe ser aceptado
27 activerecord_error_empty: no puede estar vacío
27 activerecord_error_empty: no puede estar vacío
28 activerecord_error_blank: no puede estar en blanco
28 activerecord_error_blank: no puede estar en blanco
29 activerecord_error_too_long: es demasiado largo
29 activerecord_error_too_long: es demasiado largo
30 activerecord_error_too_short: es demasiado corto
30 activerecord_error_too_short: es demasiado corto
31 activerecord_error_wrong_length: la longitud es incorrecta
31 activerecord_error_wrong_length: la longitud es incorrecta
32 activerecord_error_taken: ya está siendo usado
32 activerecord_error_taken: ya está siendo usado
33 activerecord_error_not_a_number: no es un número
33 activerecord_error_not_a_number: no es un número
34 activerecord_error_not_a_date: no es una fecha válida
34 activerecord_error_not_a_date: no es una fecha válida
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
36 activerecord_error_not_same_project: no pertenece al mismo proyecto
36 activerecord_error_not_same_project: no pertenece al mismo proyecto
37 activerecord_error_circular_dependency: Esta relación podría crear una dependencia anidada
37 activerecord_error_circular_dependency: Esta relación podría crear una dependencia anidada
38
38
39 general_fmt_age: %d año
39 general_fmt_age: %d año
40 general_fmt_age_plural: %d años
40 general_fmt_age_plural: %d años
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Sí'
46 general_text_Yes: 'Sí'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'sí'
48 general_text_yes: 'sí'
49 general_lang_name: 'Español'
49 general_lang_name: 'Español'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-15
51 general_csv_encoding: ISO-8859-15
52 general_pdf_encoding: ISO-8859-15
52 general_pdf_encoding: ISO-8859-15
53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Cuenta actualizada correctamente.
56 notice_account_updated: Cuenta actualizada correctamente.
57 notice_account_invalid_creditentials: Usuario o contraseña inválido.
57 notice_account_invalid_creditentials: Usuario o contraseña inválido.
58 notice_account_password_updated: Contraseña modificada correctamente.
58 notice_account_password_updated: Contraseña modificada correctamente.
59 notice_account_wrong_password: Contraseña incorrecta.
59 notice_account_wrong_password: Contraseña incorrecta.
60 notice_account_register_done: Cuenta creada correctamente.
60 notice_account_register_done: Cuenta creada correctamente.
61 notice_account_unknown_email: Usuario desconocido.
61 notice_account_unknown_email: Usuario desconocido.
62 notice_can_t_change_password: Esta cuenta utiliza una fuente de autenticación externa. No es posible cambiar la contraseña.
62 notice_can_t_change_password: Esta cuenta utiliza una fuente de autenticación externa. No es posible cambiar la contraseña.
63 notice_account_lost_email_sent: Se le ha enviado un correo con instrucciones para elegir una nueva contraseña.
63 notice_account_lost_email_sent: Se le ha enviado un correo con instrucciones para elegir una nueva contraseña.
64 notice_account_activated: Su cuenta ha sido activada. Ahora se encuentra conectado.
64 notice_account_activated: Su cuenta ha sido activada. Ahora se encuentra conectado.
65 notice_successful_create: Creación correcta.
65 notice_successful_create: Creación correcta.
66 notice_successful_update: Modificación correcta.
66 notice_successful_update: Modificación correcta.
67 notice_successful_delete: Borrado correcto.
67 notice_successful_delete: Borrado correcto.
68 notice_successful_connection: Conexión correcta.
68 notice_successful_connection: Conexión correcta.
69 notice_file_not_found: La página a la que intentas acceder no existe.
69 notice_file_not_found: La página a la que intentas acceder no existe.
70 notice_locking_conflict: Los datos han sido modificados por otro usuario.
70 notice_locking_conflict: Los datos han sido modificados por otro usuario.
71 notice_not_authorized: No tiene autorización para acceder a esta página.
71 notice_not_authorized: No tiene autorización para acceder a esta página.
72
72
73 error_scm_not_found: "La entrada y/o la revisión no existe en el repositorio."
73 error_scm_not_found: "La entrada y/o la revisión no existe en el repositorio."
74 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
74 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
75
75
76 mail_subject_lost_password: Tu contraseña del %s
76 mail_subject_lost_password: Tu contraseña del %s
77 mail_body_lost_password: 'Para cambiar su contraseña, haga click en el siguiente enlace:'
77 mail_body_lost_password: 'Para cambiar su contraseña, haga click en el siguiente enlace:'
78 mail_subject_register: Activación de la cuenta del %s
78 mail_subject_register: Activación de la cuenta del %s
79 mail_body_register: 'Para activar su cuenta, haga click en el siguiente enlace:'
79 mail_body_register: 'Para activar su cuenta, haga click en el siguiente enlace:'
80
80
81 gui_validation_error: 1 error
81 gui_validation_error: 1 error
82 gui_validation_error_plural: %d errores
82 gui_validation_error_plural: %d errores
83
83
84 field_name: Nombre
84 field_name: Nombre
85 field_description: Descripción
85 field_description: Descripción
86 field_summary: Resumen
86 field_summary: Resumen
87 field_is_required: Obligatorio
87 field_is_required: Obligatorio
88 field_firstname: Nombre
88 field_firstname: Nombre
89 field_lastname: Apellido
89 field_lastname: Apellido
90 field_mail: Correo electrónico
90 field_mail: Correo electrónico
91 field_filename: Fichero
91 field_filename: Fichero
92 field_filesize: Tamaño
92 field_filesize: Tamaño
93 field_downloads: Descargas
93 field_downloads: Descargas
94 field_author: Autor
94 field_author: Autor
95 field_created_on: Creado
95 field_created_on: Creado
96 field_updated_on: Actualizado
96 field_updated_on: Actualizado
97 field_field_format: Formato
97 field_field_format: Formato
98 field_is_for_all: Para todos los proyectos
98 field_is_for_all: Para todos los proyectos
99 field_possible_values: Valores posibles
99 field_possible_values: Valores posibles
100 field_regexp: Expresión regular
100 field_regexp: Expresión regular
101 field_min_length: Longitud mínima
101 field_min_length: Longitud mínima
102 field_max_length: Longitud máxima
102 field_max_length: Longitud máxima
103 field_value: Valor
103 field_value: Valor
104 field_category: Categoría
104 field_category: Categoría
105 field_title: Título
105 field_title: Título
106 field_project: Proyecto
106 field_project: Proyecto
107 field_issue: Petición
107 field_issue: Petición
108 field_status: Estado
108 field_status: Estado
109 field_notes: Notas
109 field_notes: Notas
110 field_is_closed: Petición resuelta
110 field_is_closed: Petición resuelta
111 field_is_default: Estado por defecto
111 field_is_default: Estado por defecto
112 field_tracker: Tracker
112 field_tracker: Tracker
113 field_subject: Tema
113 field_subject: Tema
114 field_due_date: Fecha fin
114 field_due_date: Fecha fin
115 field_assigned_to: Asignado a
115 field_assigned_to: Asignado a
116 field_priority: Prioridad
116 field_priority: Prioridad
117 field_fixed_version: Target version
117 field_fixed_version: Target version
118 field_user: Usuario
118 field_user: Usuario
119 field_role: Perfil
119 field_role: Perfil
120 field_homepage: Sitio web
120 field_homepage: Sitio web
121 field_is_public: Público
121 field_is_public: Público
122 field_parent: Proyecto padre
122 field_parent: Proyecto padre
123 field_is_in_chlog: Consultar las peticiones en el histórico
123 field_is_in_chlog: Consultar las peticiones en el histórico
124 field_is_in_roadmap: Consultar las peticiones en el roadmap
124 field_is_in_roadmap: Consultar las peticiones en el roadmap
125 field_login: Identificador
125 field_login: Identificador
126 field_mail_notification: Notificaciones por correo
126 field_mail_notification: Notificaciones por correo
127 field_admin: Administrador
127 field_admin: Administrador
128 field_last_login_on: Última conexión
128 field_last_login_on: Última conexión
129 field_language: Idioma
129 field_language: Idioma
130 field_effective_date: Fecha
130 field_effective_date: Fecha
131 field_password: Contraseña
131 field_password: Contraseña
132 field_new_password: Nueva contraseña
132 field_new_password: Nueva contraseña
133 field_password_confirmation: Confirmación
133 field_password_confirmation: Confirmación
134 field_version: Versión
134 field_version: Versión
135 field_type: Tipo
135 field_type: Tipo
136 field_host: Anfitrión
136 field_host: Anfitrión
137 field_port: Puerto
137 field_port: Puerto
138 field_account: Cuenta
138 field_account: Cuenta
139 field_base_dn: DN base
139 field_base_dn: DN base
140 field_attr_login: Cualidad del identificador
140 field_attr_login: Cualidad del identificador
141 field_attr_firstname: Cualidad del nombre
141 field_attr_firstname: Cualidad del nombre
142 field_attr_lastname: Cualidad del apellido
142 field_attr_lastname: Cualidad del apellido
143 field_attr_mail: Cualidad del Email
143 field_attr_mail: Cualidad del Email
144 field_onthefly: Creación del usuario "al vuelo"
144 field_onthefly: Creación del usuario "al vuelo"
145 field_start_date: Fecha de inicio
145 field_start_date: Fecha de inicio
146 field_done_ratio: %% Realizado
146 field_done_ratio: %% Realizado
147 field_auth_source: Modo de identificación
147 field_auth_source: Modo de identificación
148 field_hide_mail: Ocultar mi dirección de correo
148 field_hide_mail: Ocultar mi dirección de correo
149 field_comment: Comentario
149 field_comment: Comentario
150 field_url: URL
150 field_url: URL
151 field_start_page: Página principal
151 field_start_page: Página principal
152 field_subproject: Proyecto secundario
152 field_subproject: Proyecto secundario
153 field_hours: Horas
153 field_hours: Horas
154 field_activity: Actividad
154 field_activity: Actividad
155 field_spent_on: Fecha
155 field_spent_on: Fecha
156 field_identifier: Identificador
156 field_identifier: Identificador
157 field_is_filter: Usado como filtro
157 field_is_filter: Usado como filtro
158 field_issue_to_id: Petición Relacionada
158 field_issue_to_id: Petición Relacionada
159 field_delay: Retraso
159 field_delay: Retraso
160 field_default_value: Estado por defecto
160 field_default_value: Estado por defecto
161
161
162 setting_app_title: Título de la aplicación
162 setting_app_title: Título de la aplicación
163 setting_app_subtitle: Subtítulo de la aplicación
163 setting_app_subtitle: Subtítulo de la aplicación
164 setting_welcome_text: Texto de bienvenida
164 setting_welcome_text: Texto de bienvenida
165 setting_default_language: Idioma por defecto
165 setting_default_language: Idioma por defecto
166 setting_login_required: Se requiere identificación
166 setting_login_required: Se requiere identificación
167 setting_self_registration: Registro permitido
167 setting_self_registration: Registro permitido
168 setting_attachment_max_size: Tamaño máximo del fichero
168 setting_attachment_max_size: Tamaño máximo del fichero
169 setting_issues_export_limit: Límite de exportación de peticiones
169 setting_issues_export_limit: Límite de exportación de peticiones
170 setting_mail_from: Correo desde el que enviar mensajes
170 setting_mail_from: Correo desde el que enviar mensajes
171 setting_host_name: Nombre de host
171 setting_host_name: Nombre de host
172 setting_text_formatting: Formato de texto
172 setting_text_formatting: Formato de texto
173 setting_wiki_compression: Compresión del historial de Wiki
173 setting_wiki_compression: Compresión del historial de Wiki
174 setting_feeds_limit: Límite de contenido para sindicación
174 setting_feeds_limit: Límite de contenido para sindicación
175 setting_autofetch_changesets: Autorellenar los commits del repositorio
175 setting_autofetch_changesets: Autorellenar los commits del repositorio
176 setting_sys_api_enabled: Habilitar WS para la gestión del repositorio
176 setting_sys_api_enabled: Habilitar WS para la gestión del repositorio
177 setting_commit_ref_keywords: Palabras clave para la referencia
177 setting_commit_ref_keywords: Palabras clave para la referencia
178 setting_commit_fix_keywords: Palabras clave para la corrección
178 setting_commit_fix_keywords: Palabras clave para la corrección
179 setting_autologin: Conexión automática
179 setting_autologin: Conexión automática
180 setting_date_format: Formato de la fecha
180 setting_date_format: Formato de la fecha
181
181
182 label_user: Usuario
182 label_user: Usuario
183 label_user_plural: Usuarios
183 label_user_plural: Usuarios
184 label_user_new: Nuevo usuario
184 label_user_new: Nuevo usuario
185 label_project: Proyecto
185 label_project: Proyecto
186 label_project_new: Nuevo proyecto
186 label_project_new: Nuevo proyecto
187 label_project_plural: Proyectos
187 label_project_plural: Proyectos
188 label_project_all: Todos los proyectos
188 label_project_all: Todos los proyectos
189 label_project_latest: Últimos proyectos
189 label_project_latest: Últimos proyectos
190 label_issue: Petición
190 label_issue: Petición
191 label_issue_new: Nueva petición
191 label_issue_new: Nueva petición
192 label_issue_plural: Peticiones
192 label_issue_plural: Peticiones
193 label_issue_view_all: Ver todas las peticiones
193 label_issue_view_all: Ver todas las peticiones
194 label_document: Documento
194 label_document: Documento
195 label_document_new: Nuevo documento
195 label_document_new: Nuevo documento
196 label_document_plural: Documentos
196 label_document_plural: Documentos
197 label_role: Perfil
197 label_role: Perfil
198 label_role_plural: Perfiles
198 label_role_plural: Perfiles
199 label_role_new: Nuevo perfil
199 label_role_new: Nuevo perfil
200 label_role_and_permissions: Perfiles y permisos
200 label_role_and_permissions: Perfiles y permisos
201 label_member: Miembro
201 label_member: Miembro
202 label_member_new: Nuevo miembro
202 label_member_new: Nuevo miembro
203 label_member_plural: Miembros
203 label_member_plural: Miembros
204 label_tracker: Tracker
204 label_tracker: Tracker
205 label_tracker_plural: Trackers
205 label_tracker_plural: Trackers
206 label_tracker_new: Nuevo tracker
206 label_tracker_new: Nuevo tracker
207 label_workflow: Flujo de trabajo
207 label_workflow: Flujo de trabajo
208 label_issue_status: Estado de petición
208 label_issue_status: Estado de petición
209 label_issue_status_plural: Estados de las peticiones
209 label_issue_status_plural: Estados de las peticiones
210 label_issue_status_new: Nuevo estado
210 label_issue_status_new: Nuevo estado
211 label_issue_category: Categoría de las peticiones
211 label_issue_category: Categoría de las peticiones
212 label_issue_category_plural: Categorías de las peticiones
212 label_issue_category_plural: Categorías de las peticiones
213 label_issue_category_new: Nueva categoría
213 label_issue_category_new: Nueva categoría
214 label_custom_field: Campo personalizado
214 label_custom_field: Campo personalizado
215 label_custom_field_plural: Campos personalizados
215 label_custom_field_plural: Campos personalizados
216 label_custom_field_new: Nuevo campo personalizado
216 label_custom_field_new: Nuevo campo personalizado
217 label_enumerations: Listas de valores
217 label_enumerations: Listas de valores
218 label_enumeration_new: Nuevo valor
218 label_enumeration_new: Nuevo valor
219 label_information: Información
219 label_information: Información
220 label_information_plural: Información
220 label_information_plural: Información
221 label_please_login: Conexión
221 label_please_login: Conexión
222 label_register: Registrar
222 label_register: Registrar
223 label_password_lost: ¿Olvidaste la contraseña?
223 label_password_lost: ¿Olvidaste la contraseña?
224 label_home: Inicio
224 label_home: Inicio
225 label_my_page: Mi página
225 label_my_page: Mi página
226 label_my_account: Mi cuenta
226 label_my_account: Mi cuenta
227 label_my_projects: Mis proyectos
227 label_my_projects: Mis proyectos
228 label_administration: Administración
228 label_administration: Administración
229 label_login: Conexión
229 label_login: Conexión
230 label_logout: Desconexión
230 label_logout: Desconexión
231 label_help: Ayuda
231 label_help: Ayuda
232 label_reported_issues: Peticiones registradas por mí
232 label_reported_issues: Peticiones registradas por mí
233 label_assigned_to_me_issues: Peticiones que me están asignadas
233 label_assigned_to_me_issues: Peticiones que me están asignadas
234 label_last_login: Última conexión
234 label_last_login: Última conexión
235 label_last_updates: Actualizado
235 label_last_updates: Actualizado
236 label_last_updates_plural: %d Actualizados
236 label_last_updates_plural: %d Actualizados
237 label_registered_on: Inscrito el
237 label_registered_on: Inscrito el
238 label_activity: Actividad
238 label_activity: Actividad
239 label_new: Nuevo
239 label_new: Nuevo
240 label_logged_as: Conectado como
240 label_logged_as: Conectado como
241 label_environment: Entorno
241 label_environment: Entorno
242 label_authentication: Autenticación
242 label_authentication: Autenticación
243 label_auth_source: Modo de autenticación
243 label_auth_source: Modo de autenticación
244 label_auth_source_new: Nuevo modo de autenticación
244 label_auth_source_new: Nuevo modo de autenticación
245 label_auth_source_plural: Modos de autenticación
245 label_auth_source_plural: Modos de autenticación
246 label_subproject_plural: Proyectos secundarios
246 label_subproject_plural: Proyectos secundarios
247 label_min_max_length: Longitud mín - máx
247 label_min_max_length: Longitud mín - máx
248 label_list: Lista
248 label_list: Lista
249 label_date: Fecha
249 label_date: Fecha
250 label_integer: Número
250 label_integer: Número
251 label_boolean: Boleano
251 label_boolean: Boleano
252 label_string: Texto
252 label_string: Texto
253 label_text: Texto largo
253 label_text: Texto largo
254 label_attribute: Cualidad
254 label_attribute: Cualidad
255 label_attribute_plural: Cualidades
255 label_attribute_plural: Cualidades
256 label_download: %d Descarga
256 label_download: %d Descarga
257 label_download_plural: %d Descargas
257 label_download_plural: %d Descargas
258 label_no_data: Ningun dato a mostrar
258 label_no_data: Ningun dato a mostrar
259 label_change_status: Cambiar el estado
259 label_change_status: Cambiar el estado
260 label_history: Histórico
260 label_history: Histórico
261 label_attachment: Fichero
261 label_attachment: Fichero
262 label_attachment_new: Nuevo fichero
262 label_attachment_new: Nuevo fichero
263 label_attachment_delete: Borrar el fichero
263 label_attachment_delete: Borrar el fichero
264 label_attachment_plural: Ficheros
264 label_attachment_plural: Ficheros
265 label_report: Informe
265 label_report: Informe
266 label_report_plural: Informes
266 label_report_plural: Informes
267 label_news: Noticia
267 label_news: Noticia
268 label_news_new: Nueva noticia
268 label_news_new: Nueva noticia
269 label_news_plural: Noticias
269 label_news_plural: Noticias
270 label_news_latest: Últimas noticias
270 label_news_latest: Últimas noticias
271 label_news_view_all: Ver todas las noticias
271 label_news_view_all: Ver todas las noticias
272 label_change_log: Cambios
272 label_change_log: Cambios
273 label_settings: Configuración
273 label_settings: Configuración
274 label_overview: Vistazo
274 label_overview: Vistazo
275 label_version: Versión
275 label_version: Versión
276 label_version_new: Nueva versión
276 label_version_new: Nueva versión
277 label_version_plural: Versiones
277 label_version_plural: Versiones
278 label_confirmation: Confirmación
278 label_confirmation: Confirmación
279 label_export_to: Exportar a
279 label_export_to: Exportar a
280 label_read: Leer...
280 label_read: Leer...
281 label_public_projects: Proyectos públicos
281 label_public_projects: Proyectos públicos
282 label_open_issues: abierta
282 label_open_issues: abierta
283 label_open_issues_plural: abiertas
283 label_open_issues_plural: abiertas
284 label_closed_issues: cerrada
284 label_closed_issues: cerrada
285 label_closed_issues_plural: cerradas
285 label_closed_issues_plural: cerradas
286 label_total: Total
286 label_total: Total
287 label_permissions: Permisos
287 label_permissions: Permisos
288 label_current_status: Estado actual
288 label_current_status: Estado actual
289 label_new_statuses_allowed: Nuevos estados autorizados
289 label_new_statuses_allowed: Nuevos estados autorizados
290 label_all: todos
290 label_all: todos
291 label_none: ninguno
291 label_none: ninguno
292 label_next: Próximo
292 label_next: Próximo
293 label_previous: Anterior
293 label_previous: Anterior
294 label_used_by: Utilizado por
294 label_used_by: Utilizado por
295 label_details: Detalles
295 label_details: Detalles
296 label_add_note: Añadir una nota
296 label_add_note: Añadir una nota
297 label_per_page: Por la página
297 label_per_page: Por la página
298 label_calendar: Calendario
298 label_calendar: Calendario
299 label_months_from: meses de
299 label_months_from: meses de
300 label_gantt: Gantt
300 label_gantt: Gantt
301 label_internal: Interno
301 label_internal: Interno
302 label_last_changes: %d cambios del último
302 label_last_changes: %d cambios del último
303 label_change_view_all: Ver todos los cambios
303 label_change_view_all: Ver todos los cambios
304 label_personalize_page: Personalizar esta página
304 label_personalize_page: Personalizar esta página
305 label_comment: Comentario
305 label_comment: Comentario
306 label_comment_plural: Comentarios
306 label_comment_plural: Comentarios
307 label_comment_add: Añadir un comentario
307 label_comment_add: Añadir un comentario
308 label_comment_added: Comentario añadido
308 label_comment_added: Comentario añadido
309 label_comment_delete: Borrar comentarios
309 label_comment_delete: Borrar comentarios
310 label_query: Consulta personalizada
310 label_query: Consulta personalizada
311 label_query_plural: Consultas personalizadas
311 label_query_plural: Consultas personalizadas
312 label_query_new: Nueva consulta
312 label_query_new: Nueva consulta
313 label_filter_add: Añadir el filtro
313 label_filter_add: Añadir el filtro
314 label_filter_plural: Filtros
314 label_filter_plural: Filtros
315 label_equals: igual
315 label_equals: igual
316 label_not_equals: no igual
316 label_not_equals: no igual
317 label_in_less_than: en menos que
317 label_in_less_than: en menos que
318 label_in_more_than: en más que
318 label_in_more_than: en más que
319 label_in: en
319 label_in: en
320 label_today: hoy
320 label_today: hoy
321 label_less_than_ago: hace menos de
321 label_less_than_ago: hace menos de
322 label_more_than_ago: hace más de
322 label_more_than_ago: hace más de
323 label_ago: hace
323 label_ago: hace
324 label_contains: contiene
324 label_contains: contiene
325 label_not_contains: no contiene
325 label_not_contains: no contiene
326 label_day_plural: días
326 label_day_plural: días
327 label_repository: Repositorio
327 label_repository: Repositorio
328 label_browse: Hojear
328 label_browse: Hojear
329 label_modification: %d modificación
329 label_modification: %d modificación
330 label_modification_plural: %d modificaciones
330 label_modification_plural: %d modificaciones
331 label_revision: Revisión
331 label_revision: Revisión
332 label_revision_plural: Revisiones
332 label_revision_plural: Revisiones
333 label_added: añadido
333 label_added: añadido
334 label_modified: modificado
334 label_modified: modificado
335 label_deleted: suprimido
335 label_deleted: suprimido
336 label_latest_revision: Última revisión
336 label_latest_revision: Última revisión
337 label_latest_revision_plural: Últimas revisiones
337 label_latest_revision_plural: Últimas revisiones
338 label_view_revisions: Ver las revisiones
338 label_view_revisions: Ver las revisiones
339 label_max_size: Tamaño máximo
339 label_max_size: Tamaño máximo
340 label_on: de
340 label_on: de
341 label_sort_highest: Primero
341 label_sort_highest: Primero
342 label_sort_higher: Subir
342 label_sort_higher: Subir
343 label_sort_lower: Bajar
343 label_sort_lower: Bajar
344 label_sort_lowest: Último
344 label_sort_lowest: Último
345 label_roadmap: Roadmap
345 label_roadmap: Roadmap
346 label_roadmap_due_in: Finaliza en
346 label_roadmap_due_in: Finaliza en
347 label_roadmap_no_issues: No hay peticiones para esta versión
347 label_roadmap_no_issues: No hay peticiones para esta versión
348 label_search: Búsqueda
348 label_search: Búsqueda
349 label_result: %d resultado
349 label_result: %d resultado
350 label_result_plural: Resultados
350 label_result_plural: Resultados
351 label_all_words: Todas las palabras
351 label_all_words: Todas las palabras
352 label_wiki: Wiki
352 label_wiki: Wiki
353 label_wiki_edit: Wiki edicción
353 label_wiki_edit: Wiki edicción
354 label_wiki_edit_plural: Wiki edicciones
354 label_wiki_edit_plural: Wiki edicciones
355 label_wiki_page: Wiki página
355 label_wiki_page: Wiki página
356 label_wiki_page_plural: Wiki páginas
356 label_wiki_page_plural: Wiki páginas
357 label_page_index: Índice
357 label_page_index: Índice
358 label_current_version: Versión actual
358 label_current_version: Versión actual
359 label_preview: Previsualizar
359 label_preview: Previsualizar
360 label_feed_plural: Feeds
360 label_feed_plural: Feeds
361 label_changes_details: Detalles de todos los cambios
361 label_changes_details: Detalles de todos los cambios
362 label_issue_tracking: Peticiones
362 label_issue_tracking: Peticiones
363 label_spent_time: Tiempo dedicado
363 label_spent_time: Tiempo dedicado
364 label_f_hour: %.2f hora
364 label_f_hour: %.2f hora
365 label_f_hour_plural: %.2f horas
365 label_f_hour_plural: %.2f horas
366 label_time_tracking: Tiempo tracking
366 label_time_tracking: Tiempo tracking
367 label_change_plural: Cambios
367 label_change_plural: Cambios
368 label_statistics: Estadísticas
368 label_statistics: Estadísticas
369 label_commits_per_month: Commits por mes
369 label_commits_per_month: Commits por mes
370 label_commits_per_author: Commits por autor
370 label_commits_per_author: Commits por autor
371 label_view_diff: Ver diferencias
371 label_view_diff: Ver diferencias
372 label_diff_inline: en línea
372 label_diff_inline: en línea
373 label_diff_side_by_side: cara a cara
373 label_diff_side_by_side: cara a cara
374 label_options: Opciones
374 label_options: Opciones
375 label_copy_workflow_from: Copiar flujo de trabajo desde
375 label_copy_workflow_from: Copiar flujo de trabajo desde
376 label_permissions_report: Informe de permisos
376 label_permissions_report: Informe de permisos
377 label_watched_issues: Peticiones monitorizadas
377 label_watched_issues: Peticiones monitorizadas
378 label_related_issues: Peticiones relacionadas
378 label_related_issues: Peticiones relacionadas
379 label_applied_status: Aplicar estado
379 label_applied_status: Aplicar estado
380 label_loading: Cargando...
380 label_loading: Cargando...
381 label_relation_new: Nueva relación
381 label_relation_new: Nueva relación
382 label_relation_delete: Eliminar relación
382 label_relation_delete: Eliminar relación
383 label_relates_to: relacionada con
383 label_relates_to: relacionada con
384 label_duplicates: duplicada de
384 label_duplicates: duplicada de
385 label_blocks: bloquea a
385 label_blocks: bloquea a
386 label_blocked_by: bloqueado por
386 label_blocked_by: bloqueado por
387 label_precedes: anterior a
387 label_precedes: anterior a
388 label_follows: posterior a
388 label_follows: posterior a
389 label_end_to_start: fin a principio
389 label_end_to_start: fin a principio
390 label_end_to_end: fin a fin
390 label_end_to_end: fin a fin
391 label_start_to_start: principio a principio
391 label_start_to_start: principio a principio
392 label_start_to_end: principio a fin
392 label_start_to_end: principio a fin
393 label_stay_logged_in: Recordar conexión
393 label_stay_logged_in: Recordar conexión
394 label_disabled: deshabilitado
394 label_disabled: deshabilitado
395 label_show_completed_versions: Muestra las versiones completas
395 label_show_completed_versions: Muestra las versiones completas
396 label_me: yo mismo
396 label_me: yo mismo
397 label_board: Foro
397 label_board: Foro
398 label_board_new: Nuevo foro
398 label_board_new: Nuevo foro
399 label_board_plural: Foros
399 label_board_plural: Foros
400 label_topic_plural: Temas
400 label_topic_plural: Temas
401 label_message_plural: Mensajes
401 label_message_plural: Mensajes
402 label_message_last: Último mensaje
402 label_message_last: Último mensaje
403 label_message_new: Nuevo mensaje
403 label_message_new: Nuevo mensaje
404 label_reply_plural: Respuestas
404 label_reply_plural: Respuestas
405 label_send_information: Enviar información de la cuenta al usuario
405 label_send_information: Enviar información de la cuenta al usuario
406 label_year: Año
406 label_year: Año
407 label_month: Mes
407 label_month: Mes
408 label_week: Semana
408 label_week: Semana
409 label_date_from: Desde
409 label_date_from: Desde
410 label_date_to: Hasta
410 label_date_to: Hasta
411 label_language_based: Badado en el idioma
411 label_language_based: Badado en el idioma
412
412
413 button_login: Conexión
413 button_login: Conexión
414 button_submit: Aceptar
414 button_submit: Aceptar
415 button_save: Guardar
415 button_save: Guardar
416 button_check_all: Seleccionar todo
416 button_check_all: Seleccionar todo
417 button_uncheck_all: No seleccionar nada
417 button_uncheck_all: No seleccionar nada
418 button_delete: Borrar
418 button_delete: Borrar
419 button_create: Crear
419 button_create: Crear
420 button_test: Probar
420 button_test: Probar
421 button_edit: Modificar
421 button_edit: Modificar
422 button_add: Añadir
422 button_add: Añadir
423 button_change: Cambiar
423 button_change: Cambiar
424 button_apply: Aceptar
424 button_apply: Aceptar
425 button_clear: Anular
425 button_clear: Anular
426 button_lock: Bloquear
426 button_lock: Bloquear
427 button_unlock: Desbloquear
427 button_unlock: Desbloquear
428 button_download: Descargar
428 button_download: Descargar
429 button_list: Listar
429 button_list: Listar
430 button_view: Ver
430 button_view: Ver
431 button_move: Mover
431 button_move: Mover
432 button_back: Atrás
432 button_back: Atrás
433 button_cancel: Cancelar
433 button_cancel: Cancelar
434 button_activate: Activar
434 button_activate: Activar
435 button_sort: Ordenar
435 button_sort: Ordenar
436 button_log_time: Tiempo dedicado
436 button_log_time: Tiempo dedicado
437 button_rollback: Volver a esta versión
437 button_rollback: Volver a esta versión
438 button_watch: Monitorizar
438 button_watch: Monitorizar
439 button_unwatch: No monitorizar
439 button_unwatch: No monitorizar
440 button_reply: Responder
440 button_reply: Responder
441 button_archive: Archivar
441 button_archive: Archivar
442 button_unarchive: Desarchivar
442 button_unarchive: Desarchivar
443
443
444 status_active: activo
444 status_active: activo
445 status_registered: registrado
445 status_registered: registrado
446 status_locked: bloqueado
446 status_locked: bloqueado
447
447
448 text_select_mail_notifications: Seleccionar los eventos a notificar
448 text_select_mail_notifications: Seleccionar los eventos a notificar
449 text_regexp_info: eg. ^[A-Z0-9]+$
449 text_regexp_info: eg. ^[A-Z0-9]+$
450 text_min_max_length_info: 0 para ninguna restricción
450 text_min_max_length_info: 0 para ninguna restricción
451 text_project_destroy_confirmation: ¿Estás seguro de querer eliminar el proyecto?
451 text_project_destroy_confirmation: ¿Estás seguro de querer eliminar el proyecto?
452 text_workflow_edit: Seleccionar un flujo de trabajo para actualizar
452 text_workflow_edit: Seleccionar un flujo de trabajo para actualizar
453 text_are_you_sure: ¿ Estás seguro ?
453 text_are_you_sure: ¿ Estás seguro ?
454 text_journal_changed: cambiado de %s a %s
454 text_journal_changed: cambiado de %s a %s
455 text_journal_set_to: fijado a %s
455 text_journal_set_to: fijado a %s
456 text_journal_deleted: suprimido
456 text_journal_deleted: suprimido
457 text_tip_task_begin_day: tarea que comienza este día
457 text_tip_task_begin_day: tarea que comienza este día
458 text_tip_task_end_day: tarea que termina este día
458 text_tip_task_end_day: tarea que termina este día
459 text_tip_task_begin_end_day: tarea que comienza y termina este día
459 text_tip_task_begin_end_day: tarea que comienza y termina este día
460 text_project_identifier_info: 'Letras minúsculas (a-z), números y signos de puntuación permitidos.<br />Una vez guardado, el identificador no puede modificarse.'
460 text_project_identifier_info: 'Letras minúsculas (a-z), números y signos de puntuación permitidos.<br />Una vez guardado, el identificador no puede modificarse.'
461 text_caracters_maximum: %d carácteres como máximo.
461 text_caracters_maximum: %d carácteres como máximo.
462 text_length_between: Longitud entre %d y %d carácteres.
462 text_length_between: Longitud entre %d y %d carácteres.
463 text_tracker_no_workflow: No hay ningún flujo de trabajo definido para este tracker
463 text_tracker_no_workflow: No hay ningún flujo de trabajo definido para este tracker
464 text_unallowed_characters: Carácteres no permitidos
464 text_unallowed_characters: Carácteres no permitidos
465 text_comma_separated: Múltiples valores permitidos (separados por coma).
465 text_comma_separated: Múltiples valores permitidos (separados por coma).
466 text_issues_ref_in_commit_messages: Referencia y petición de corrección en los mensajes
466 text_issues_ref_in_commit_messages: Referencia y petición de corrección en los mensajes
467
467
468 default_role_manager: Jefe de proyecto
468 default_role_manager: Jefe de proyecto
469 default_role_developper: Desarrollador
469 default_role_developper: Desarrollador
470 default_role_reporter: Informador
470 default_role_reporter: Informador
471 default_tracker_bug: Errores
471 default_tracker_bug: Errores
472 default_tracker_feature: Tareas
472 default_tracker_feature: Tareas
473 default_tracker_support: Soporte
473 default_tracker_support: Soporte
474 default_issue_status_new: Nueva
474 default_issue_status_new: Nueva
475 default_issue_status_assigned: Asignada
475 default_issue_status_assigned: Asignada
476 default_issue_status_resolved: Resuelta
476 default_issue_status_resolved: Resuelta
477 default_issue_status_feedback: Comentarios
477 default_issue_status_feedback: Comentarios
478 default_issue_status_closed: Cerrada
478 default_issue_status_closed: Cerrada
479 default_issue_status_rejected: Rechazada
479 default_issue_status_rejected: Rechazada
480 default_doc_category_user: Documentación de usuario
480 default_doc_category_user: Documentación de usuario
481 default_doc_category_tech: Documentación técnica
481 default_doc_category_tech: Documentación técnica
482 default_priority_low: Baja
482 default_priority_low: Baja
483 default_priority_normal: Normal
483 default_priority_normal: Normal
484 default_priority_high: Alta
484 default_priority_high: Alta
485 default_priority_urgent: Urgente
485 default_priority_urgent: Urgente
486 default_priority_immediate: Inmediata
486 default_priority_immediate: Inmediata
487 default_activity_design: Diseño
487 default_activity_design: Diseño
488 default_activity_development: Desarrollo
488 default_activity_development: Desarrollo
489
489
490 enumeration_issue_priorities: Prioridad de las peticiones
490 enumeration_issue_priorities: Prioridad de las peticiones
491 enumeration_doc_categories: Categorías del documento
491 enumeration_doc_categories: Categorías del documento
492 enumeration_activities: Actividades (tiempo dedicado)
492 enumeration_activities: Actividades (tiempo dedicado)
493 label_index_by_date: Índice por fecha
493 label_index_by_date: Índice por fecha
494 field_column_names: Columnas
494 field_column_names: Columnas
495 button_rename: Renombrar
495 button_rename: Renombrar
496 text_issue_category_destroy_question: Algunas peticiones (%d) están asignadas a esta categoría. ¿Qué desea hacer?
496 text_issue_category_destroy_question: Algunas peticiones (%d) están asignadas a esta categoría. ¿Qué desea hacer?
497 label_feeds_access_key_created_on: Clave de acceso por RSS creada hace %s
497 label_feeds_access_key_created_on: Clave de acceso por RSS creada hace %s
498 label_default_columns: Columnas por defecto
498 label_default_columns: Columnas por defecto
499 setting_cross_project_issue_relations: Permitir relacionar peticiones de distintos proyectos
499 setting_cross_project_issue_relations: Permitir relacionar peticiones de distintos proyectos
500 label_roadmap_overdue: %s tarde
500 label_roadmap_overdue: %s tarde
501 label_module_plural: Módulos
501 label_module_plural: Módulos
502 label_this_week: esta semana
502 label_this_week: esta semana
503 label_index_by_title: Índice por título
503 label_index_by_title: Índice por título
504 label_jump_to_a_project: Ir al proyecto...
504 label_jump_to_a_project: Ir al proyecto...
505 field_assignable: Se pueden asignar peticiones a este perfil
505 field_assignable: Se pueden asignar peticiones a este perfil
506 label_sort_by: Ordenar por %s
506 label_sort_by: Ordenar por %s
507 setting_issue_list_default_columns: Columnas por defecto para la lista de peticiones
507 setting_issue_list_default_columns: Columnas por defecto para la lista de peticiones
508 text_issue_updated: La petición %s ha sido actualizada por %s.
508 text_issue_updated: La petición %s ha sido actualizada por %s.
509 notice_feeds_access_key_reseted: Su clave de acceso para RSS ha sido reiniciada
509 notice_feeds_access_key_reseted: Su clave de acceso para RSS ha sido reiniciada
510 field_redirect_existing_links: Redireccionar enlaces existentes
510 field_redirect_existing_links: Redireccionar enlaces existentes
511 text_issue_category_reassign_to: Reasignar las peticiones a la categoría
511 text_issue_category_reassign_to: Reasignar las peticiones a la categoría
512 notice_email_sent: Se ha enviado un correo a %s
512 notice_email_sent: Se ha enviado un correo a %s
513 text_issue_added: Petición añadida por %s.
513 text_issue_added: Petición añadida por %s.
514 field_comments: Comentario
514 field_comments: Comentario
515 label_file_plural: Archivos
515 label_file_plural: Archivos
516 text_wiki_destroy_confirmation: ¿Seguro que quiere borrar el wiki y todo su contenido?
516 text_wiki_destroy_confirmation: ¿Seguro que quiere borrar el wiki y todo su contenido?
517 notice_email_error: Ha ocurrido un error mientras enviando el correo (%s)
517 notice_email_error: Ha ocurrido un error mientras enviando el correo (%s)
518 label_updated_time: Actualizado hace %s
518 label_updated_time: Actualizado hace %s
519 text_issue_category_destroy_assignments: Dejar las peticiones sin categoría
519 text_issue_category_destroy_assignments: Dejar las peticiones sin categoría
520 label_send_test_email: Enviar un correo de prueba
520 label_send_test_email: Enviar un correo de prueba
521 button_reset: Reestablecer
521 button_reset: Reestablecer
522 label_added_time_by: Añadido por %s hace %s
522 label_added_time_by: Añadido por %s hace %s
523 field_estimated_hours: Tiempo estimado
523 field_estimated_hours: Tiempo estimado
524 label_changeset_plural: Cambios
524 label_changeset_plural: Cambios
525 setting_repositories_encodings: Codificaciones del repositorio
525 setting_repositories_encodings: Codificaciones del repositorio
526 notice_no_issue_selected: "Ninguna petición seleccionada. Por favor, compruebe la petición que quiere modificar"
526 notice_no_issue_selected: "Ninguna petición seleccionada. Por favor, compruebe la petición que quiere modificar"
527 label_bulk_edit_selected_issues: Editar las peticiones seleccionadas
527 label_bulk_edit_selected_issues: Editar las peticiones seleccionadas
528 label_no_change_option: (Sin cambios)
528 label_no_change_option: (Sin cambios)
529 notice_failed_to_save_issues: "Imposible salvar %s peticion(es) en %d seleccionado: %s."
529 notice_failed_to_save_issues: "Imposible salvar %s peticion(es) en %d seleccionado: %s."
530 label_theme: Tema
530 label_theme: Tema
531 label_default: Por defecto
531 label_default: Por defecto
532 label_search_titles_only: Buscar sólo en títulos
532 label_search_titles_only: Buscar sólo en títulos
533 label_nobody: nadie
533 label_nobody: nadie
534 button_change_password: Cambiar contraseña
534 button_change_password: Cambiar contraseña
535 text_user_mail_option: "En los proyectos no seleccionados, sólo recibirá notificaciones sobre elementos monitorizados o elementos en los que esté involucrado (por ejemplo, peticiones de las que usted sea autor o asignadas a usted)."
535 text_user_mail_option: "En los proyectos no seleccionados, sólo recibirá notificaciones sobre elementos monitorizados o elementos en los que esté involucrado (por ejemplo, peticiones de las que usted sea autor o asignadas a usted)."
536 label_user_mail_option_selected: "Para cualquier evento del proyecto seleccionado..."
536 label_user_mail_option_selected: "Para cualquier evento del proyecto seleccionado..."
537 label_user_mail_option_all: "Para cualquier evento en todos mis proyectos"
537 label_user_mail_option_all: "Para cualquier evento en todos mis proyectos"
538 label_user_mail_option_none: "Sólo para elementos monitorizados o relacionados conmigo"
538 label_user_mail_option_none: "Sólo para elementos monitorizados o relacionados conmigo"
539 setting_emails_footer: Pie de mensajes
539 setting_emails_footer: Pie de mensajes
540 label_float: Flotante
540 label_float: Flotante
541 button_copy: Copiar
541 button_copy: Copiar
542 mail_body_account_information_external: Puede usar su cuenta "%s" para conectarse.
542 mail_body_account_information_external: Puede usar su cuenta "%s" para conectarse.
543 mail_body_account_information: Información sobre su cuenta
543 mail_body_account_information: Información sobre su cuenta
544 setting_protocol: Protocolo
544 setting_protocol: Protocolo
545 text_caracters_minimum: %d carácteres como mínimo
545 text_caracters_minimum: %d carácteres como mínimo
546 field_time_zone: Zona horaria
546 field_time_zone: Zona horaria
547 label_registration_activation_by_email: activación de cuenta por correo
547 label_registration_activation_by_email: activación de cuenta por correo
548 label_user_mail_no_self_notified: "No quiero ser avisado de cambios hechos por mí"
548 label_user_mail_no_self_notified: "No quiero ser avisado de cambios hechos por mí"
549 mail_subject_account_activation_request: Petición de activación de cuenta %s
549 mail_subject_account_activation_request: Petición de activación de cuenta %s
550 mail_body_account_activation_request: "Un nuevo usuario (%s) ha sido registrado. Esta cuenta está pendiende de aprobación"
550 mail_body_account_activation_request: "Un nuevo usuario (%s) ha sido registrado. Esta cuenta está pendiende de aprobación"
551 label_registration_automatic_activation: activación automática de cuenta
551 label_registration_automatic_activation: activación automática de cuenta
552 label_registration_manual_activation: activación manual de cuenta
552 label_registration_manual_activation: activación manual de cuenta
553 notice_account_pending: "Su cuenta ha sido creada y está pendiende de la aprobación por parte de administrador"
553 notice_account_pending: "Su cuenta ha sido creada y está pendiende de la aprobación por parte de administrador"
554 setting_time_format: Formato de hora
554 setting_time_format: Formato de hora
555 setting_bcc_recipients: Ocultar las copias de carbon (bcc)
555 setting_bcc_recipients: Ocultar las copias de carbon (bcc)
556 button_annotate: Anotar
556 button_annotate: Anotar
557 label_issues_by: Peticiones por %s
557 label_issues_by: Peticiones por %s
558 field_searchable: Incluir en las búsquedas
558 field_searchable: Incluir en las búsquedas
559 label_display_per_page: 'Por página: %s'
559 label_display_per_page: 'Por página: %s'
560 setting_per_page_options: Objetos por página
560 setting_per_page_options: Objetos por página
561 label_age: Edad
561 label_age: Edad
562 notice_default_data_loaded: Configuración por defecto cargada correctamente.
562 notice_default_data_loaded: Configuración por defecto cargada correctamente.
563 text_load_default_configuration: Cargar la configuración por defecto
563 text_load_default_configuration: Cargar la configuración por defecto
564 text_no_configuration_data: "Todavía no se han configurado roles, ni trackers, ni estados y flujo de trabajo asociado a peticiones. Se recomiendo encarecidamente cargar la configuración por defecto. Una vez cargada, podrá modificarla."
564 text_no_configuration_data: "Todavía no se han configurado roles, ni trackers, ni estados y flujo de trabajo asociado a peticiones. Se recomiendo encarecidamente cargar la configuración por defecto. Una vez cargada, podrá modificarla."
565 error_can_t_load_default_data: "No se ha podido cargar la configuración por defecto: %s"
565 error_can_t_load_default_data: "No se ha podido cargar la configuración por defecto: %s"
566 button_update: Actualizar
566 button_update: Actualizar
567 label_change_properties: Cambiar propiedades
567 label_change_properties: Cambiar propiedades
568 label_general: General
568 label_general: General
569 label_repository_plural: Repositorios
569 label_repository_plural: Repositorios
570 label_associated_revisions: Revisiones asociadas
570 label_associated_revisions: Revisiones asociadas
571 setting_user_format: Formato de nombre de usuario
571 setting_user_format: Formato de nombre de usuario
572 text_status_changed_by_changeset: Aplicado en los cambios %s
572 text_status_changed_by_changeset: Aplicado en los cambios %s
573 label_more: Más
573 label_more: Más
574 text_issues_destroy_confirmation: '¿Seguro que quiere borrar las peticiones seleccionadas?'
574 text_issues_destroy_confirmation: '¿Seguro que quiere borrar las peticiones seleccionadas?'
575 label_scm: SCM
575 label_scm: SCM
576 text_select_project_modules: 'Seleccione los módulos a activar para este proyecto:'
576 text_select_project_modules: 'Seleccione los módulos a activar para este proyecto:'
577 label_issue_added: Petición añadida
577 label_issue_added: Petición añadida
578 label_issue_updated: Petición actualizada
578 label_issue_updated: Petición actualizada
579 label_document_added: Documento añadido
579 label_document_added: Documento añadido
580 label_message_posted: Mensaje añadido
580 label_message_posted: Mensaje añadido
581 label_file_added: Fichero añadido
581 label_file_added: Fichero añadido
582 label_news_added: Noticia añadida
582 label_news_added: Noticia añadida
583 project_module_boards: Foros
583 project_module_boards: Foros
584 project_module_issue_tracking: Peticiones
584 project_module_issue_tracking: Peticiones
585 project_module_wiki: Wiki
585 project_module_wiki: Wiki
586 project_module_files: Ficheros
586 project_module_files: Ficheros
587 project_module_documents: Documentos
587 project_module_documents: Documentos
588 project_module_repository: Repositorio
588 project_module_repository: Repositorio
589 project_module_news: Noticias
589 project_module_news: Noticias
590 project_module_time_tracking: Control de tiempo
590 project_module_time_tracking: Control de tiempo
591 text_file_repository_writable: Se puede escribir en el repositorio
591 text_file_repository_writable: Se puede escribir en el repositorio
592 text_default_administrator_account_changed: Cuenta de administrador por defecto modificada
592 text_default_administrator_account_changed: Cuenta de administrador por defecto modificada
593 text_rmagick_available: RMagick disponible (opcional)
593 text_rmagick_available: RMagick disponible (opcional)
594 button_configure: Configurar
594 button_configure: Configurar
595 label_plugins: Plugins
595 label_plugins: Plugins
596 label_ldap_authentication: Autenticación LDAP
596 label_ldap_authentication: Autenticación LDAP
597 label_downloads_abbr: D/L
597 label_downloads_abbr: D/L
598 label_this_month: este mes
598 label_this_month: este mes
599 label_last_n_days: últimos %d días
599 label_last_n_days: últimos %d días
600 label_all_time: todo el tiempo
600 label_all_time: todo el tiempo
601 label_this_year: este año
601 label_this_year: este año
602 label_date_range: Rango de fechas
602 label_date_range: Rango de fechas
603 label_last_week: última semana
603 label_last_week: última semana
604 label_yesterday: ayer
604 label_yesterday: ayer
605 label_last_month: último mes
605 label_last_month: último mes
606 label_add_another_file: Añadir otro fichero
606 label_add_another_file: Añadir otro fichero
607 label_optional_description: Descripción opcional
607 label_optional_description: Descripción opcional
608 text_destroy_time_entries_question: Existen %.02f horas asignadas a la petición que quiere borrar. ¿Qué quiere hacer ?
608 text_destroy_time_entries_question: Existen %.02f horas asignadas a la petición que quiere borrar. ¿Qué quiere hacer ?
609 error_issue_not_found_in_project: 'La petición no se encuentra o no está asociada a este proyecto'
609 error_issue_not_found_in_project: 'La petición no se encuentra o no está asociada a este proyecto'
610 text_assign_time_entries_to_project: Asignar las horas al proyecto
610 text_assign_time_entries_to_project: Asignar las horas al proyecto
611 text_destroy_time_entries: Borrar las horas
611 text_destroy_time_entries: Borrar las horas
612 text_reassign_time_entries: 'Reasignar las horas a esta petición:'
612 text_reassign_time_entries: 'Reasignar las horas a esta petición:'
613 setting_activity_days_default: Días a mostrar en la actividad de proyecto
613 setting_activity_days_default: Días a mostrar en la actividad de proyecto
614 label_chronological_order: En orden cronológico
614 label_chronological_order: En orden cronológico
615 field_comments_sorting: Mostrar comentarios
615 field_comments_sorting: Mostrar comentarios
616 label_reverse_chronological_order: En orden cronológico inverso
616 label_reverse_chronological_order: En orden cronológico inverso
617 label_preferences: Preferencias
617 label_preferences: Preferencias
618 setting_display_subprojects_issues: Mostrar peticiones de un subproyecto en el proyecto padre por defecto
618 setting_display_subprojects_issues: Mostrar peticiones de un subproyecto en el proyecto padre por defecto
619 label_overall_activity: Actividad global
619 label_overall_activity: Actividad global
620 setting_default_projects_public: Los proyectos nuevos son públicos por defecto
620 setting_default_projects_public: Los proyectos nuevos son públicos por defecto
621 error_scm_annotate: "No existe la entrada o no ha podido ser anotada"
621 error_scm_annotate: "No existe la entrada o no ha podido ser anotada"
622 label_planning: Planificación
622 label_planning: Planificación
623 text_subprojects_destroy_warning: 'Sus subprojectos: %s también se eliminarán'
623 text_subprojects_destroy_warning: 'Sus subprojectos: %s también se eliminarán'
624 label_and_its_subprojects: %s and its subprojects
624 label_and_its_subprojects: %s and its subprojects
625 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
625 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
626 mail_subject_reminder: "%d issue(s) due in the next days"
626 mail_subject_reminder: "%d issue(s) due in the next days"
627 text_user_wrote: '%s wrote:'
627 text_user_wrote: '%s wrote:'
628 label_duplicated_by: duplicated by
628 label_duplicated_by: duplicated by
629 setting_enabled_scm: Enabled SCM
629 setting_enabled_scm: Enabled SCM
630 text_enumeration_category_reassign_to: 'Reassign them to this value:'
630 text_enumeration_category_reassign_to: 'Reassign them to this value:'
631 text_enumeration_destroy_question: '%d objects are assigned to this value.'
631 text_enumeration_destroy_question: '%d objects are assigned to this value.'
632 label_incoming_emails: Incoming emails
633 label_generate_key: Generate a key
634 setting_mail_handler_api_enabled: Enable WS for incoming emails
635 setting_mail_handler_api_key: API key
@@ -1,628 +1,632
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Tammikuu,Helmikuu,Maaliskuu,Huhtikuu,Toukokuu,Kesäkuu,Heinäkuu,Elokuu,Syyskuu,Lokakuu,Marraskuu,Joulukuu
4 actionview_datehelper_select_month_names: Tammikuu,Helmikuu,Maaliskuu,Huhtikuu,Toukokuu,Kesäkuu,Heinäkuu,Elokuu,Syyskuu,Lokakuu,Marraskuu,Joulukuu
5 actionview_datehelper_select_month_names_abbr: Tammi,Helmi,Maalis,Huhti,Touko,Kesä,Heinä,Elo,Syys,Loka,Marras,Joulu
5 actionview_datehelper_select_month_names_abbr: Tammi,Helmi,Maalis,Huhti,Touko,Kesä,Heinä,Elo,Syys,Loka,Marras,Joulu
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 päivä
8 actionview_datehelper_time_in_words_day: 1 päivä
9 actionview_datehelper_time_in_words_day_plural: %d päivää
9 actionview_datehelper_time_in_words_day_plural: %d päivää
10 actionview_datehelper_time_in_words_hour_about: noin tunti
10 actionview_datehelper_time_in_words_hour_about: noin tunti
11 actionview_datehelper_time_in_words_hour_about_plural: noin %d tuntia
11 actionview_datehelper_time_in_words_hour_about_plural: noin %d tuntia
12 actionview_datehelper_time_in_words_hour_about_single: noin tunnin
12 actionview_datehelper_time_in_words_hour_about_single: noin tunnin
13 actionview_datehelper_time_in_words_minute: 1 minuutti
13 actionview_datehelper_time_in_words_minute: 1 minuutti
14 actionview_datehelper_time_in_words_minute_half: puoli minuuttia
14 actionview_datehelper_time_in_words_minute_half: puoli minuuttia
15 actionview_datehelper_time_in_words_minute_less_than: vähemmän kuin minuuttia
15 actionview_datehelper_time_in_words_minute_less_than: vähemmän kuin minuuttia
16 actionview_datehelper_time_in_words_minute_plural: %d minuuttia
16 actionview_datehelper_time_in_words_minute_plural: %d minuuttia
17 actionview_datehelper_time_in_words_minute_single: 1 minuutti
17 actionview_datehelper_time_in_words_minute_single: 1 minuutti
18 actionview_datehelper_time_in_words_second_less_than: vähemmän kuin sekuntin
18 actionview_datehelper_time_in_words_second_less_than: vähemmän kuin sekuntin
19 actionview_datehelper_time_in_words_second_less_than_plural: vähemmän kuin %d sekunttia
19 actionview_datehelper_time_in_words_second_less_than_plural: vähemmän kuin %d sekunttia
20 actionview_instancetag_blank_option: Valitse, ole hyvä
20 actionview_instancetag_blank_option: Valitse, ole hyvä
21
21
22 activerecord_error_inclusion: ei ole listalla
22 activerecord_error_inclusion: ei ole listalla
23 activerecord_error_exclusion: on varattu
23 activerecord_error_exclusion: on varattu
24 activerecord_error_invalid: ei ole kelpaava
24 activerecord_error_invalid: ei ole kelpaava
25 activerecord_error_confirmation: ei vastaa vahvistusta
25 activerecord_error_confirmation: ei vastaa vahvistusta
26 activerecord_error_accepted: tulee hyväksyä
26 activerecord_error_accepted: tulee hyväksyä
27 activerecord_error_empty: ei voi olla tyhjä
27 activerecord_error_empty: ei voi olla tyhjä
28 activerecord_error_blank: ei voi olla tyhjä
28 activerecord_error_blank: ei voi olla tyhjä
29 activerecord_error_too_long: on liian pitkä
29 activerecord_error_too_long: on liian pitkä
30 activerecord_error_too_short: on liian lyhyt
30 activerecord_error_too_short: on liian lyhyt
31 activerecord_error_wrong_length: on väärän pituinen
31 activerecord_error_wrong_length: on väärän pituinen
32 activerecord_error_taken: on jo varattu
32 activerecord_error_taken: on jo varattu
33 activerecord_error_not_a_number: ei ole numero
33 activerecord_error_not_a_number: ei ole numero
34 activerecord_error_not_a_date: ei ole oikea päivä
34 activerecord_error_not_a_date: ei ole oikea päivä
35 activerecord_error_greater_than_start_date: tulee olla aloituspäivän jälkeinen
35 activerecord_error_greater_than_start_date: tulee olla aloituspäivän jälkeinen
36 activerecord_error_not_same_project: ei kuulu samaan projektiin
36 activerecord_error_not_same_project: ei kuulu samaan projektiin
37 activerecord_error_circular_dependency: Tämä suhde loisi kiertävän suhteen.
37 activerecord_error_circular_dependency: Tämä suhde loisi kiertävän suhteen.
38
38
39 general_fmt_age: %d v.
39 general_fmt_age: %d v.
40 general_fmt_age_plural: %d vuotta
40 general_fmt_age_plural: %d vuotta
41 general_fmt_date: %%d.%%m.%%Y
41 general_fmt_date: %%d.%%m.%%Y
42 general_fmt_datetime: %%d.%%m.%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d.%%m.%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Ei'
45 general_text_No: 'Ei'
46 general_text_Yes: 'Kyllä'
46 general_text_Yes: 'Kyllä'
47 general_text_no: 'ei'
47 general_text_no: 'ei'
48 general_text_yes: 'kyllä'
48 general_text_yes: 'kyllä'
49 general_lang_name: 'Finnish (Suomi)'
49 general_lang_name: 'Finnish (Suomi)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Maanantai,Tiistai,Keskiviikko,Torstai,Perjantai,Lauantai,Sunnuntai
53 general_day_names: Maanantai,Tiistai,Keskiviikko,Torstai,Perjantai,Lauantai,Sunnuntai
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Tilin päivitys onnistui.
56 notice_account_updated: Tilin päivitys onnistui.
57 notice_account_invalid_creditentials: Väärä käyttäjä tai salasana
57 notice_account_invalid_creditentials: Väärä käyttäjä tai salasana
58 notice_account_password_updated: Salasanan päivitys onnistui.
58 notice_account_password_updated: Salasanan päivitys onnistui.
59 notice_account_wrong_password: Väärä salasana
59 notice_account_wrong_password: Väärä salasana
60 notice_account_register_done: Tilin luonti onnistui. Aktivoidaksesi tilin seuraa linkkiä joka välitettiin sähköpostiisi.
60 notice_account_register_done: Tilin luonti onnistui. Aktivoidaksesi tilin seuraa linkkiä joka välitettiin sähköpostiisi.
61 notice_account_unknown_email: Tuntematon käyttäjä.
61 notice_account_unknown_email: Tuntematon käyttäjä.
62 notice_can_t_change_password: Tämä tili käyttää ulkoista autentikointi järjestelmää. Mahdotonta muuttaa salasanaa.
62 notice_can_t_change_password: Tämä tili käyttää ulkoista autentikointi järjestelmää. Mahdotonta muuttaa salasanaa.
63 notice_account_lost_email_sent: Sinulle on lähetetty sähköposti jossa on ohje miten vaihdat salasanasi.
63 notice_account_lost_email_sent: Sinulle on lähetetty sähköposti jossa on ohje miten vaihdat salasanasi.
64 notice_account_activated: Tilisi on nyt aktivoitu, voit kirjautua sisälle.
64 notice_account_activated: Tilisi on nyt aktivoitu, voit kirjautua sisälle.
65 notice_successful_create: Luonti onnistui.
65 notice_successful_create: Luonti onnistui.
66 notice_successful_update: Päivitys onnistui.
66 notice_successful_update: Päivitys onnistui.
67 notice_successful_delete: Poisto onnistui.
67 notice_successful_delete: Poisto onnistui.
68 notice_successful_connection: Yhteyden muodostus onnistui.
68 notice_successful_connection: Yhteyden muodostus onnistui.
69 notice_file_not_found: Hakemaasi sivua ei löytynyt tai se on poistettu.
69 notice_file_not_found: Hakemaasi sivua ei löytynyt tai se on poistettu.
70 notice_locking_conflict: Toinen käyttäjä on päivittänyt tiedot.
70 notice_locking_conflict: Toinen käyttäjä on päivittänyt tiedot.
71 notice_not_authorized: Sinulla ei ole oikeutta näyttää tätä sivua.
71 notice_not_authorized: Sinulla ei ole oikeutta näyttää tätä sivua.
72 notice_email_sent: Sähköposti on lähetty osoitteeseen %s
72 notice_email_sent: Sähköposti on lähetty osoitteeseen %s
73 notice_email_error: Sähköpostilähetyksessä tapahtui virhe (%s)
73 notice_email_error: Sähköpostilähetyksessä tapahtui virhe (%s)
74 notice_feeds_access_key_reseted: RSS pääsy avaimesi on nollaantunut.
74 notice_feeds_access_key_reseted: RSS pääsy avaimesi on nollaantunut.
75 notice_failed_to_save_issues: "%d Tapahtum(an/ien) tallennus epäonnistui %d valitut: %s."
75 notice_failed_to_save_issues: "%d Tapahtum(an/ien) tallennus epäonnistui %d valitut: %s."
76 notice_no_issue_selected: "Tapahtumia ei ole valittu! Valitse tapahtumat joita haluat muokata."
76 notice_no_issue_selected: "Tapahtumia ei ole valittu! Valitse tapahtumat joita haluat muokata."
77 notice_account_pending: "Tilisi on luotu ja odottaa ylläpitäjän hyväksyntää."
77 notice_account_pending: "Tilisi on luotu ja odottaa ylläpitäjän hyväksyntää."
78 notice_default_data_loaded: Vakio asetusten palautus onnistui.
78 notice_default_data_loaded: Vakio asetusten palautus onnistui.
79
79
80 error_can_t_load_default_data: "Vakio asetuksia ei voitu ladata: %s"
80 error_can_t_load_default_data: "Vakio asetuksia ei voitu ladata: %s"
81 error_scm_not_found: "Syötettä ja/tai versiota ei löydy säiliöstä."
81 error_scm_not_found: "Syötettä ja/tai versiota ei löydy säiliöstä."
82 error_scm_command_failed: "Säiliöön pääsyssä tapahtui virhe: %s"
82 error_scm_command_failed: "Säiliöön pääsyssä tapahtui virhe: %s"
83
83
84 mail_subject_lost_password: Sinun %s salasanasi
84 mail_subject_lost_password: Sinun %s salasanasi
85 mail_body_lost_password: 'Vaihtaaksesi salasanasi, paina seuraavaa linkkiä:'
85 mail_body_lost_password: 'Vaihtaaksesi salasanasi, paina seuraavaa linkkiä:'
86 mail_subject_register: %s tilin aktivointi
86 mail_subject_register: %s tilin aktivointi
87 mail_body_register: 'Aktivoidaksesi tilisi, paina seuraavaa linkkiä:'
87 mail_body_register: 'Aktivoidaksesi tilisi, paina seuraavaa linkkiä:'
88 mail_body_account_information_external: Voit nyt käyttää "%s" tiliäsi kirjautuaksesi järjestelmään.
88 mail_body_account_information_external: Voit nyt käyttää "%s" tiliäsi kirjautuaksesi järjestelmään.
89 mail_body_account_information: Sinun tilin tiedot
89 mail_body_account_information: Sinun tilin tiedot
90 mail_subject_account_activation_request: %s tilin aktivointi pyyntö
90 mail_subject_account_activation_request: %s tilin aktivointi pyyntö
91 mail_body_account_activation_request: 'Uusi käyttäjä (%s) on rekisteröitynyt. Hänen tili odottaa hyväksyntääsi:'
91 mail_body_account_activation_request: 'Uusi käyttäjä (%s) on rekisteröitynyt. Hänen tili odottaa hyväksyntääsi:'
92
92
93 gui_validation_error: 1 virhe
93 gui_validation_error: 1 virhe
94 gui_validation_error_plural: %d virhettä
94 gui_validation_error_plural: %d virhettä
95
95
96 field_name: Nimi
96 field_name: Nimi
97 field_description: Kuvaus
97 field_description: Kuvaus
98 field_summary: Yhteenveto
98 field_summary: Yhteenveto
99 field_is_required: Vaaditaan
99 field_is_required: Vaaditaan
100 field_firstname: Etu nimi
100 field_firstname: Etu nimi
101 field_lastname: Suku nimi
101 field_lastname: Suku nimi
102 field_mail: Sähköposti
102 field_mail: Sähköposti
103 field_filename: Tiedosto
103 field_filename: Tiedosto
104 field_filesize: Koko
104 field_filesize: Koko
105 field_downloads: Latausta
105 field_downloads: Latausta
106 field_author: Tekijä
106 field_author: Tekijä
107 field_created_on: Luotu
107 field_created_on: Luotu
108 field_updated_on: Päivitetty
108 field_updated_on: Päivitetty
109 field_field_format: Muoto
109 field_field_format: Muoto
110 field_is_for_all: Kaikille projekteille
110 field_is_for_all: Kaikille projekteille
111 field_possible_values: Mahdolliset arvot
111 field_possible_values: Mahdolliset arvot
112 field_regexp: Säännönmukainen ilmentymä (reg exp)
112 field_regexp: Säännönmukainen ilmentymä (reg exp)
113 field_min_length: Minimi pituus
113 field_min_length: Minimi pituus
114 field_max_length: Maksimi pituus
114 field_max_length: Maksimi pituus
115 field_value: Arvo
115 field_value: Arvo
116 field_category: Luokka
116 field_category: Luokka
117 field_title: Otsikko
117 field_title: Otsikko
118 field_project: Projekti
118 field_project: Projekti
119 field_issue: Tapahtuma
119 field_issue: Tapahtuma
120 field_status: Tila
120 field_status: Tila
121 field_notes: Muistiinpanot
121 field_notes: Muistiinpanot
122 field_is_closed: Tapahtuma suljettu
122 field_is_closed: Tapahtuma suljettu
123 field_is_default: Vakio arvo
123 field_is_default: Vakio arvo
124 field_tracker: Tapahtuma
124 field_tracker: Tapahtuma
125 field_subject: Aihe
125 field_subject: Aihe
126 field_due_date: Määräaika
126 field_due_date: Määräaika
127 field_assigned_to: Nimetty
127 field_assigned_to: Nimetty
128 field_priority: Prioriteetti
128 field_priority: Prioriteetti
129 field_fixed_version: Kohde versio
129 field_fixed_version: Kohde versio
130 field_user: Käyttäjä
130 field_user: Käyttäjä
131 field_role: Rooli
131 field_role: Rooli
132 field_homepage: Kotisivu
132 field_homepage: Kotisivu
133 field_is_public: Julkinen
133 field_is_public: Julkinen
134 field_parent: Alaprojekti
134 field_parent: Alaprojekti
135 field_is_in_chlog: Tapahtumat näytetään muutoslokissa
135 field_is_in_chlog: Tapahtumat näytetään muutoslokissa
136 field_is_in_roadmap: Tapahtumat näytetään roadmap näkymässä
136 field_is_in_roadmap: Tapahtumat näytetään roadmap näkymässä
137 field_login: Kirjautuminen
137 field_login: Kirjautuminen
138 field_mail_notification: Sähköposti muistutukset
138 field_mail_notification: Sähköposti muistutukset
139 field_admin: Ylläpitäjä
139 field_admin: Ylläpitäjä
140 field_last_login_on: Viimeinen yhteys
140 field_last_login_on: Viimeinen yhteys
141 field_language: Kieli
141 field_language: Kieli
142 field_effective_date: Päivä
142 field_effective_date: Päivä
143 field_password: Salasana
143 field_password: Salasana
144 field_new_password: Uusi salasana
144 field_new_password: Uusi salasana
145 field_password_confirmation: Vahvistus
145 field_password_confirmation: Vahvistus
146 field_version: Versio
146 field_version: Versio
147 field_type: Tyyppi
147 field_type: Tyyppi
148 field_host: Isäntä
148 field_host: Isäntä
149 field_port: Portti
149 field_port: Portti
150 field_account: Tili
150 field_account: Tili
151 field_base_dn: Base DN
151 field_base_dn: Base DN
152 field_attr_login: Kirjautumis määre
152 field_attr_login: Kirjautumis määre
153 field_attr_firstname: Etuminen määre
153 field_attr_firstname: Etuminen määre
154 field_attr_lastname: Sukunimen määre
154 field_attr_lastname: Sukunimen määre
155 field_attr_mail: Sähköpostin määre
155 field_attr_mail: Sähköpostin määre
156 field_onthefly: Automaattinen käyttäjien luonti
156 field_onthefly: Automaattinen käyttäjien luonti
157 field_start_date: Alku
157 field_start_date: Alku
158 field_done_ratio: %% Tehty
158 field_done_ratio: %% Tehty
159 field_auth_source: Autentikointi muoto
159 field_auth_source: Autentikointi muoto
160 field_hide_mail: Piiloita sähköpostiosoitteeni
160 field_hide_mail: Piiloita sähköpostiosoitteeni
161 field_comments: Kommentti
161 field_comments: Kommentti
162 field_url: URL
162 field_url: URL
163 field_start_page: Aloitus sivu
163 field_start_page: Aloitus sivu
164 field_subproject: Alaprojekti
164 field_subproject: Alaprojekti
165 field_hours: Tuntia
165 field_hours: Tuntia
166 field_activity: Historia
166 field_activity: Historia
167 field_spent_on: Päivä
167 field_spent_on: Päivä
168 field_identifier: Tunniste
168 field_identifier: Tunniste
169 field_is_filter: Käytetään suodattimena
169 field_is_filter: Käytetään suodattimena
170 field_issue_to_id: Liittyvä tapahtuma
170 field_issue_to_id: Liittyvä tapahtuma
171 field_delay: Viive
171 field_delay: Viive
172 field_assignable: Tapahtumia voidaan nimetä tälle roolille
172 field_assignable: Tapahtumia voidaan nimetä tälle roolille
173 field_redirect_existing_links: Uudelleenohjaa olemassa olevat linkit
173 field_redirect_existing_links: Uudelleenohjaa olemassa olevat linkit
174 field_estimated_hours: Arvioitu aika
174 field_estimated_hours: Arvioitu aika
175 field_column_names: Saraketta
175 field_column_names: Saraketta
176 field_time_zone: Aikavyöhyke
176 field_time_zone: Aikavyöhyke
177 field_searchable: Haettava
177 field_searchable: Haettava
178 field_default_value: Vakio arvo
178 field_default_value: Vakio arvo
179
179
180 setting_app_title: Ohjelman otsikko
180 setting_app_title: Ohjelman otsikko
181 setting_app_subtitle: Ohjelman alaotsikko
181 setting_app_subtitle: Ohjelman alaotsikko
182 setting_welcome_text: Tervetulo teksti
182 setting_welcome_text: Tervetulo teksti
183 setting_default_language: Vakio kieli
183 setting_default_language: Vakio kieli
184 setting_login_required: Pakollinen autentikointi
184 setting_login_required: Pakollinen autentikointi
185 setting_self_registration: Tee-Se-Itse rekisteröinti
185 setting_self_registration: Tee-Se-Itse rekisteröinti
186 setting_attachment_max_size: Liitteen maksimi koko
186 setting_attachment_max_size: Liitteen maksimi koko
187 setting_issues_export_limit: Tapahtumien vienti rajoite
187 setting_issues_export_limit: Tapahtumien vienti rajoite
188 setting_mail_from: Lähettäjän sähköpostiosoite
188 setting_mail_from: Lähettäjän sähköpostiosoite
189 setting_bcc_recipients: Blind carbon copy vastaanottajat (bcc)
189 setting_bcc_recipients: Blind carbon copy vastaanottajat (bcc)
190 setting_host_name: Isännän nimi
190 setting_host_name: Isännän nimi
191 setting_text_formatting: Tekstin muotoilu
191 setting_text_formatting: Tekstin muotoilu
192 setting_wiki_compression: Wiki historian pakkaus
192 setting_wiki_compression: Wiki historian pakkaus
193 setting_feeds_limit: Syötteen sisällön raja
193 setting_feeds_limit: Syötteen sisällön raja
194 setting_autofetch_changesets: Automaatisen haun souritukset
194 setting_autofetch_changesets: Automaatisen haun souritukset
195 setting_sys_api_enabled: Salli WS säiliön hallintaan
195 setting_sys_api_enabled: Salli WS säiliön hallintaan
196 setting_commit_ref_keywords: Viittaavat hakusanat
196 setting_commit_ref_keywords: Viittaavat hakusanat
197 setting_commit_fix_keywords: Korjaavat hakusanat
197 setting_commit_fix_keywords: Korjaavat hakusanat
198 setting_autologin: Automaatinen kirjautuminen
198 setting_autologin: Automaatinen kirjautuminen
199 setting_date_format: Päivän muoto
199 setting_date_format: Päivän muoto
200 setting_time_format: Ajan muoto
200 setting_time_format: Ajan muoto
201 setting_cross_project_issue_relations: Salli projektien väliset tapahtuminen suhteet
201 setting_cross_project_issue_relations: Salli projektien väliset tapahtuminen suhteet
202 setting_issue_list_default_columns: Vakio sarakkeiden näyttö tapahtuma listauksessa
202 setting_issue_list_default_columns: Vakio sarakkeiden näyttö tapahtuma listauksessa
203 setting_repositories_encodings: Säiliön koodaus
203 setting_repositories_encodings: Säiliön koodaus
204 setting_emails_footer: Sähköpostin alatunniste
204 setting_emails_footer: Sähköpostin alatunniste
205 setting_protocol: Protokolla
205 setting_protocol: Protokolla
206 setting_per_page_options: Sivun objektien määrän asetukset
206 setting_per_page_options: Sivun objektien määrän asetukset
207
207
208 label_user: Käyttäjä
208 label_user: Käyttäjä
209 label_user_plural: Käyttäjät
209 label_user_plural: Käyttäjät
210 label_user_new: Uusi käyttäjä
210 label_user_new: Uusi käyttäjä
211 label_project: Projekti
211 label_project: Projekti
212 label_project_new: Uusi projekti
212 label_project_new: Uusi projekti
213 label_project_plural: Projektit
213 label_project_plural: Projektit
214 label_project_all: Kaikki projektit
214 label_project_all: Kaikki projektit
215 label_project_latest: Uusimmat projektit
215 label_project_latest: Uusimmat projektit
216 label_issue: Tapahtuma
216 label_issue: Tapahtuma
217 label_issue_new: Uusi tapahtuma
217 label_issue_new: Uusi tapahtuma
218 label_issue_plural: Tapahtumat
218 label_issue_plural: Tapahtumat
219 label_issue_view_all: Näytä kaikki tapahtumat
219 label_issue_view_all: Näytä kaikki tapahtumat
220 label_issues_by: Tapahtumat %s
220 label_issues_by: Tapahtumat %s
221 label_document: Dokumentti
221 label_document: Dokumentti
222 label_document_new: Uusi dokumentti
222 label_document_new: Uusi dokumentti
223 label_document_plural: Dokumentit
223 label_document_plural: Dokumentit
224 label_role: Rooli
224 label_role: Rooli
225 label_role_plural: Roolit
225 label_role_plural: Roolit
226 label_role_new: Uusi rooli
226 label_role_new: Uusi rooli
227 label_role_and_permissions: Roolit ja oikeudet
227 label_role_and_permissions: Roolit ja oikeudet
228 label_member: Jäsen
228 label_member: Jäsen
229 label_member_new: Uusi jäsen
229 label_member_new: Uusi jäsen
230 label_member_plural: Jäsenet
230 label_member_plural: Jäsenet
231 label_tracker: Tapahtuma
231 label_tracker: Tapahtuma
232 label_tracker_plural: Tapahtumat
232 label_tracker_plural: Tapahtumat
233 label_tracker_new: Uusi tapahtuma
233 label_tracker_new: Uusi tapahtuma
234 label_workflow: Työnkulku
234 label_workflow: Työnkulku
235 label_issue_status: Tapahtuman tila
235 label_issue_status: Tapahtuman tila
236 label_issue_status_plural: Tapahtumien tilat
236 label_issue_status_plural: Tapahtumien tilat
237 label_issue_status_new: Uusi tila
237 label_issue_status_new: Uusi tila
238 label_issue_category: Tapahtuma luokka
238 label_issue_category: Tapahtuma luokka
239 label_issue_category_plural: Tapahtuma luokat
239 label_issue_category_plural: Tapahtuma luokat
240 label_issue_category_new: Uusi luokka
240 label_issue_category_new: Uusi luokka
241 label_custom_field: Räätälöity kenttä
241 label_custom_field: Räätälöity kenttä
242 label_custom_field_plural: Räätälöidyt kentät
242 label_custom_field_plural: Räätälöidyt kentät
243 label_custom_field_new: Uusi räätälöity kenttä
243 label_custom_field_new: Uusi räätälöity kenttä
244 label_enumerations: Lista
244 label_enumerations: Lista
245 label_enumeration_new: Uusi arvo
245 label_enumeration_new: Uusi arvo
246 label_information: Tieto
246 label_information: Tieto
247 label_information_plural: Tiedot
247 label_information_plural: Tiedot
248 label_please_login: Kirjaudu ole hyvä
248 label_please_login: Kirjaudu ole hyvä
249 label_register: Rekisteröidy
249 label_register: Rekisteröidy
250 label_password_lost: Hukattu salasana
250 label_password_lost: Hukattu salasana
251 label_home: Koti
251 label_home: Koti
252 label_my_page: Minun sivu
252 label_my_page: Minun sivu
253 label_my_account: Minun tili
253 label_my_account: Minun tili
254 label_my_projects: Minun projektit
254 label_my_projects: Minun projektit
255 label_administration: Ylläpito
255 label_administration: Ylläpito
256 label_login: Kirjaudu sisään
256 label_login: Kirjaudu sisään
257 label_logout: Kirjaudu ulos
257 label_logout: Kirjaudu ulos
258 label_help: Ohjeet
258 label_help: Ohjeet
259 label_reported_issues: Raportoidut tapahtumat
259 label_reported_issues: Raportoidut tapahtumat
260 label_assigned_to_me_issues: Minulle nimetyt tapahtumat
260 label_assigned_to_me_issues: Minulle nimetyt tapahtumat
261 label_last_login: Viimeinen yhteys
261 label_last_login: Viimeinen yhteys
262 label_last_updates: Viimeinen päivitys
262 label_last_updates: Viimeinen päivitys
263 label_last_updates_plural: %d päivitetty viimeksi
263 label_last_updates_plural: %d päivitetty viimeksi
264 label_registered_on: Rekisteröity
264 label_registered_on: Rekisteröity
265 label_activity: Historia
265 label_activity: Historia
266 label_new: Uusi
266 label_new: Uusi
267 label_logged_as: Kirjauduttu nimellä
267 label_logged_as: Kirjauduttu nimellä
268 label_environment: Ympäristö
268 label_environment: Ympäristö
269 label_authentication: Autentikointi
269 label_authentication: Autentikointi
270 label_auth_source: Autentikointi tapa
270 label_auth_source: Autentikointi tapa
271 label_auth_source_new: Uusi autentikointi tapa
271 label_auth_source_new: Uusi autentikointi tapa
272 label_auth_source_plural: Autentikointi tavat
272 label_auth_source_plural: Autentikointi tavat
273 label_subproject_plural: Alaprojektit
273 label_subproject_plural: Alaprojektit
274 label_min_max_length: Min - Max pituudet
274 label_min_max_length: Min - Max pituudet
275 label_list: Lista
275 label_list: Lista
276 label_date: Päivä
276 label_date: Päivä
277 label_integer: Kokonaisluku
277 label_integer: Kokonaisluku
278 label_float: Liukuluku
278 label_float: Liukuluku
279 label_boolean: Totuusarvomuuttuja
279 label_boolean: Totuusarvomuuttuja
280 label_string: Merkkijono
280 label_string: Merkkijono
281 label_text: Pitkä merkkijono
281 label_text: Pitkä merkkijono
282 label_attribute: Määre
282 label_attribute: Määre
283 label_attribute_plural: Määreet
283 label_attribute_plural: Määreet
284 label_download: %d Lataus
284 label_download: %d Lataus
285 label_download_plural: %d Lataukset
285 label_download_plural: %d Lataukset
286 label_no_data: Ei tietoa näytettäväksi
286 label_no_data: Ei tietoa näytettäväksi
287 label_change_status: Muutos tila
287 label_change_status: Muutos tila
288 label_history: Historia
288 label_history: Historia
289 label_attachment: Tiedosto
289 label_attachment: Tiedosto
290 label_attachment_new: Uusi tiedosto
290 label_attachment_new: Uusi tiedosto
291 label_attachment_delete: Poista tiedosto
291 label_attachment_delete: Poista tiedosto
292 label_attachment_plural: Tiedostot
292 label_attachment_plural: Tiedostot
293 label_report: Raportti
293 label_report: Raportti
294 label_report_plural: Raportit
294 label_report_plural: Raportit
295 label_news: Uutinen
295 label_news: Uutinen
296 label_news_new: Lisää uutinen
296 label_news_new: Lisää uutinen
297 label_news_plural: Uutiset
297 label_news_plural: Uutiset
298 label_news_latest: Viimeisimmät uutiset
298 label_news_latest: Viimeisimmät uutiset
299 label_news_view_all: Näytä kaikki uutiset
299 label_news_view_all: Näytä kaikki uutiset
300 label_change_log: Muutosloki
300 label_change_log: Muutosloki
301 label_settings: Asetukset
301 label_settings: Asetukset
302 label_overview: Yleiskatsaus
302 label_overview: Yleiskatsaus
303 label_version: Versio
303 label_version: Versio
304 label_version_new: Uusi versio
304 label_version_new: Uusi versio
305 label_version_plural: Versiot
305 label_version_plural: Versiot
306 label_confirmation: Vahvistus
306 label_confirmation: Vahvistus
307 label_export_to: Vie
307 label_export_to: Vie
308 label_read: Lukee...
308 label_read: Lukee...
309 label_public_projects: Julkiset projektit
309 label_public_projects: Julkiset projektit
310 label_open_issues: avoin, yhteensä
310 label_open_issues: avoin, yhteensä
311 label_open_issues_plural: avointa, yhteensä
311 label_open_issues_plural: avointa, yhteensä
312 label_closed_issues: suljettu
312 label_closed_issues: suljettu
313 label_closed_issues_plural: suljettua
313 label_closed_issues_plural: suljettua
314 label_total: Yhteensä
314 label_total: Yhteensä
315 label_permissions: Oikeudet
315 label_permissions: Oikeudet
316 label_current_status: Nykyinen tila
316 label_current_status: Nykyinen tila
317 label_new_statuses_allowed: Uudet tilat sallittu
317 label_new_statuses_allowed: Uudet tilat sallittu
318 label_all: kaikki
318 label_all: kaikki
319 label_none: ei mitään
319 label_none: ei mitään
320 label_nobody: ei kukaan
320 label_nobody: ei kukaan
321 label_next: Seuraava
321 label_next: Seuraava
322 label_previous: Edellinen
322 label_previous: Edellinen
323 label_used_by: Käytetty
323 label_used_by: Käytetty
324 label_details: Yksityiskohdat
324 label_details: Yksityiskohdat
325 label_add_note: Lisää muistiinpano
325 label_add_note: Lisää muistiinpano
326 label_per_page: Per sivu
326 label_per_page: Per sivu
327 label_calendar: Kalenteri
327 label_calendar: Kalenteri
328 label_months_from: kuukauden päässä
328 label_months_from: kuukauden päässä
329 label_gantt: Gantt
329 label_gantt: Gantt
330 label_internal: Sisäinen
330 label_internal: Sisäinen
331 label_last_changes: viimeiset %d muutokset
331 label_last_changes: viimeiset %d muutokset
332 label_change_view_all: Näytä kaikki muutokset
332 label_change_view_all: Näytä kaikki muutokset
333 label_personalize_page: Personoi tämä sivu
333 label_personalize_page: Personoi tämä sivu
334 label_comment: Kommentti
334 label_comment: Kommentti
335 label_comment_plural: Kommentit
335 label_comment_plural: Kommentit
336 label_comment_add: Lisää kommentti
336 label_comment_add: Lisää kommentti
337 label_comment_added: Kommentti lisätty
337 label_comment_added: Kommentti lisätty
338 label_comment_delete: Poista kommentti
338 label_comment_delete: Poista kommentti
339 label_query: Räätälöity haku
339 label_query: Räätälöity haku
340 label_query_plural: Räätälöidyt haut
340 label_query_plural: Räätälöidyt haut
341 label_query_new: Uusi haku
341 label_query_new: Uusi haku
342 label_filter_add: Lisää suodatin
342 label_filter_add: Lisää suodatin
343 label_filter_plural: Suodattimet
343 label_filter_plural: Suodattimet
344 label_equals: yhtä kuin
344 label_equals: yhtä kuin
345 label_not_equals: epäsuuri kuin
345 label_not_equals: epäsuuri kuin
346 label_in_less_than: pienempi kuin
346 label_in_less_than: pienempi kuin
347 label_in_more_than: suurempi kuin
347 label_in_more_than: suurempi kuin
348 label_today: tänään
348 label_today: tänään
349 label_this_week: tällä viikolla
349 label_this_week: tällä viikolla
350 label_less_than_ago: vähemmän kuin päivää sitten
350 label_less_than_ago: vähemmän kuin päivää sitten
351 label_more_than_ago: enemän kuin päivää sitten
351 label_more_than_ago: enemän kuin päivää sitten
352 label_ago: päiviä sitten
352 label_ago: päiviä sitten
353 label_contains: sisältää
353 label_contains: sisältää
354 label_not_contains: ei sisällä
354 label_not_contains: ei sisällä
355 label_day_plural: päivää
355 label_day_plural: päivää
356 label_repository: Säiliö
356 label_repository: Säiliö
357 label_repository_plural: Säiliöt
357 label_repository_plural: Säiliöt
358 label_browse: Selaus
358 label_browse: Selaus
359 label_modification: %d muutos
359 label_modification: %d muutos
360 label_modification_plural: %d muutettu
360 label_modification_plural: %d muutettu
361 label_revision: Versio
361 label_revision: Versio
362 label_revision_plural: Versiot
362 label_revision_plural: Versiot
363 label_added: lisätty
363 label_added: lisätty
364 label_modified: muokattu
364 label_modified: muokattu
365 label_deleted: poistettu
365 label_deleted: poistettu
366 label_latest_revision: Viimeisin versio
366 label_latest_revision: Viimeisin versio
367 label_latest_revision_plural: Viimeisimmät versiot
367 label_latest_revision_plural: Viimeisimmät versiot
368 label_view_revisions: Näytä versiot
368 label_view_revisions: Näytä versiot
369 label_max_size: Maksimi koko
369 label_max_size: Maksimi koko
370 label_sort_highest: Siirrä ylimmäiseksi
370 label_sort_highest: Siirrä ylimmäiseksi
371 label_sort_higher: Siirrä ylös
371 label_sort_higher: Siirrä ylös
372 label_sort_lower: Siirrä alas
372 label_sort_lower: Siirrä alas
373 label_sort_lowest: Siirrä alimmaiseksi
373 label_sort_lowest: Siirrä alimmaiseksi
374 label_roadmap: Roadmap
374 label_roadmap: Roadmap
375 label_roadmap_due_in: Määräaika
375 label_roadmap_due_in: Määräaika
376 label_roadmap_overdue: %s myöhässä
376 label_roadmap_overdue: %s myöhässä
377 label_roadmap_no_issues: Ei tapahtumia tälle versiolle
377 label_roadmap_no_issues: Ei tapahtumia tälle versiolle
378 label_search: Haku
378 label_search: Haku
379 label_result_plural: Tulokset
379 label_result_plural: Tulokset
380 label_all_words: kaikki sanat
380 label_all_words: kaikki sanat
381 label_wiki: Wiki
381 label_wiki: Wiki
382 label_wiki_edit: Wiki muokkaus
382 label_wiki_edit: Wiki muokkaus
383 label_wiki_edit_plural: Wiki muokkaukset
383 label_wiki_edit_plural: Wiki muokkaukset
384 label_wiki_page: Wiki sivu
384 label_wiki_page: Wiki sivu
385 label_wiki_page_plural: Wiki sivut
385 label_wiki_page_plural: Wiki sivut
386 label_index_by_title: Hakemisto otsikoittain
386 label_index_by_title: Hakemisto otsikoittain
387 label_index_by_date: Hakemisto päivittäin
387 label_index_by_date: Hakemisto päivittäin
388 label_current_version: Nykyinen versio
388 label_current_version: Nykyinen versio
389 label_preview: Esikatselu
389 label_preview: Esikatselu
390 label_feed_plural: Syötteet
390 label_feed_plural: Syötteet
391 label_changes_details: Kaikkien muutosten yksityiskohdat
391 label_changes_details: Kaikkien muutosten yksityiskohdat
392 label_issue_tracking: Tapahtumien seuranta
392 label_issue_tracking: Tapahtumien seuranta
393 label_spent_time: Käytetty aika
393 label_spent_time: Käytetty aika
394 label_f_hour: %.2f tunti
394 label_f_hour: %.2f tunti
395 label_f_hour_plural: %.2f tuntia
395 label_f_hour_plural: %.2f tuntia
396 label_time_tracking: Ajan seuranta
396 label_time_tracking: Ajan seuranta
397 label_change_plural: Muutokset
397 label_change_plural: Muutokset
398 label_statistics: Tilastot
398 label_statistics: Tilastot
399 label_commits_per_month: Tapahtumaa per kuukausi
399 label_commits_per_month: Tapahtumaa per kuukausi
400 label_commits_per_author: Tapahtumaa per tekijä
400 label_commits_per_author: Tapahtumaa per tekijä
401 label_view_diff: Näytä erot
401 label_view_diff: Näytä erot
402 label_diff_inline: sisällössä
402 label_diff_inline: sisällössä
403 label_diff_side_by_side: vierekkäin
403 label_diff_side_by_side: vierekkäin
404 label_options: Valinnat
404 label_options: Valinnat
405 label_copy_workflow_from: Kopioi työnkulku
405 label_copy_workflow_from: Kopioi työnkulku
406 label_permissions_report: Oikeuksien raportti
406 label_permissions_report: Oikeuksien raportti
407 label_watched_issues: Seurattavat tapahtumat
407 label_watched_issues: Seurattavat tapahtumat
408 label_related_issues: Liittyvät tapahtumat
408 label_related_issues: Liittyvät tapahtumat
409 label_applied_status: Lisätty tila
409 label_applied_status: Lisätty tila
410 label_loading: Lataa...
410 label_loading: Lataa...
411 label_relation_new: Uusi suhde
411 label_relation_new: Uusi suhde
412 label_relation_delete: Poista suhde
412 label_relation_delete: Poista suhde
413 label_relates_to: liittyy
413 label_relates_to: liittyy
414 label_duplicates: kaksoiskappale
414 label_duplicates: kaksoiskappale
415 label_blocks: estää
415 label_blocks: estää
416 label_blocked_by: estetty
416 label_blocked_by: estetty
417 label_precedes: edeltää
417 label_precedes: edeltää
418 label_follows: seuraa
418 label_follows: seuraa
419 label_end_to_start: loppu alkuun
419 label_end_to_start: loppu alkuun
420 label_end_to_end: loppu loppuun
420 label_end_to_end: loppu loppuun
421 label_start_to_start: alku alkuun
421 label_start_to_start: alku alkuun
422 label_start_to_end: alku loppuun
422 label_start_to_end: alku loppuun
423 label_stay_logged_in: Pysy kirjautuneena
423 label_stay_logged_in: Pysy kirjautuneena
424 label_disabled: poistettu käytöstä
424 label_disabled: poistettu käytöstä
425 label_show_completed_versions: Näytä valmiit versiot
425 label_show_completed_versions: Näytä valmiit versiot
426 label_me: minä
426 label_me: minä
427 label_board: Keskustelupalsta
427 label_board: Keskustelupalsta
428 label_board_new: Uusi keskustelupalsta
428 label_board_new: Uusi keskustelupalsta
429 label_board_plural: Keskustelupalstat
429 label_board_plural: Keskustelupalstat
430 label_topic_plural: Aiheet
430 label_topic_plural: Aiheet
431 label_message_plural: Viestit
431 label_message_plural: Viestit
432 label_message_last: Viimeisin viesti
432 label_message_last: Viimeisin viesti
433 label_message_new: Uusi viesti
433 label_message_new: Uusi viesti
434 label_reply_plural: Vastaukset
434 label_reply_plural: Vastaukset
435 label_send_information: Lähetä tilin tiedot käyttäjälle
435 label_send_information: Lähetä tilin tiedot käyttäjälle
436 label_year: Vuosi
436 label_year: Vuosi
437 label_month: Kuukausi
437 label_month: Kuukausi
438 label_week: Viikko
438 label_week: Viikko
439 label_language_based: Pohjautuen käyttäjän kieleen
439 label_language_based: Pohjautuen käyttäjän kieleen
440 label_sort_by: Lajittele %s
440 label_sort_by: Lajittele %s
441 label_send_test_email: Lähetä testi sähköposti
441 label_send_test_email: Lähetä testi sähköposti
442 label_feeds_access_key_created_on: RSS pääsy avain luotiin %s sitten
442 label_feeds_access_key_created_on: RSS pääsy avain luotiin %s sitten
443 label_module_plural: Moduulit
443 label_module_plural: Moduulit
444 label_added_time_by: Lisännyt %s %s sitten
444 label_added_time_by: Lisännyt %s %s sitten
445 label_updated_time: Päivitetty %s sitten
445 label_updated_time: Päivitetty %s sitten
446 label_jump_to_a_project: Siirry projektiin...
446 label_jump_to_a_project: Siirry projektiin...
447 label_file_plural: Tiedostot
447 label_file_plural: Tiedostot
448 label_changeset_plural: Muutosryhmät
448 label_changeset_plural: Muutosryhmät
449 label_default_columns: Vakio sarakkeet
449 label_default_columns: Vakio sarakkeet
450 label_no_change_option: (Ei muutosta)
450 label_no_change_option: (Ei muutosta)
451 label_bulk_edit_selected_issues: Perusmuotoile valitut tapahtumat
451 label_bulk_edit_selected_issues: Perusmuotoile valitut tapahtumat
452 label_theme: Teema
452 label_theme: Teema
453 label_default: Vakio
453 label_default: Vakio
454 label_search_titles_only: Hae vain otsikot
454 label_search_titles_only: Hae vain otsikot
455 label_user_mail_option_all: "Kaikista tapahtumista kaikissa projekteistani"
455 label_user_mail_option_all: "Kaikista tapahtumista kaikissa projekteistani"
456 label_user_mail_option_selected: "Kaikista tapahtumista vain valitsemistani projekteista..."
456 label_user_mail_option_selected: "Kaikista tapahtumista vain valitsemistani projekteista..."
457 label_user_mail_option_none: "Vain tapahtumista joita valvon tai olen mukana"
457 label_user_mail_option_none: "Vain tapahtumista joita valvon tai olen mukana"
458 label_user_mail_no_self_notified: "En halua muistutusta muutoksista joita itse teen"
458 label_user_mail_no_self_notified: "En halua muistutusta muutoksista joita itse teen"
459 label_registration_activation_by_email: tilin aktivointi sähköpostitse
459 label_registration_activation_by_email: tilin aktivointi sähköpostitse
460 label_registration_manual_activation: manuaalinen tilin aktivointi
460 label_registration_manual_activation: manuaalinen tilin aktivointi
461 label_registration_automatic_activation: automaattinen tilin aktivointi
461 label_registration_automatic_activation: automaattinen tilin aktivointi
462 label_display_per_page: 'Per sivu: %s'
462 label_display_per_page: 'Per sivu: %s'
463 label_age: Ikä
463 label_age: Ikä
464 label_change_properties: Vaihda asetuksia
464 label_change_properties: Vaihda asetuksia
465 label_general: Yleinen
465 label_general: Yleinen
466
466
467 button_login: Kirjaudu
467 button_login: Kirjaudu
468 button_submit: Lähetä
468 button_submit: Lähetä
469 button_save: Tallenna
469 button_save: Tallenna
470 button_check_all: Valitse kaikki
470 button_check_all: Valitse kaikki
471 button_uncheck_all: Poista valinnat
471 button_uncheck_all: Poista valinnat
472 button_delete: Poista
472 button_delete: Poista
473 button_create: Luo
473 button_create: Luo
474 button_test: Testaa
474 button_test: Testaa
475 button_edit: Muokkaa
475 button_edit: Muokkaa
476 button_add: Lisää
476 button_add: Lisää
477 button_change: Muuta
477 button_change: Muuta
478 button_apply: Ota käyttöön
478 button_apply: Ota käyttöön
479 button_clear: Tyhjää
479 button_clear: Tyhjää
480 button_lock: Lukitse
480 button_lock: Lukitse
481 button_unlock: Vapauta
481 button_unlock: Vapauta
482 button_download: Lataa
482 button_download: Lataa
483 button_list: Lista
483 button_list: Lista
484 button_view: Näytä
484 button_view: Näytä
485 button_move: Siirrä
485 button_move: Siirrä
486 button_back: Takaisin
486 button_back: Takaisin
487 button_cancel: Peruuta
487 button_cancel: Peruuta
488 button_activate: Aktivoi
488 button_activate: Aktivoi
489 button_sort: Järjestä
489 button_sort: Järjestä
490 button_log_time: Seuraa aikaa
490 button_log_time: Seuraa aikaa
491 button_rollback: Siirry takaisin tähän versioon
491 button_rollback: Siirry takaisin tähän versioon
492 button_watch: Seuraa
492 button_watch: Seuraa
493 button_unwatch: Älä seuraa
493 button_unwatch: Älä seuraa
494 button_reply: Vastaa
494 button_reply: Vastaa
495 button_archive: Arkistoi
495 button_archive: Arkistoi
496 button_unarchive: Palauta
496 button_unarchive: Palauta
497 button_reset: Nollaus
497 button_reset: Nollaus
498 button_rename: Uudelleen nimeä
498 button_rename: Uudelleen nimeä
499 button_change_password: Vaihda salasana
499 button_change_password: Vaihda salasana
500 button_copy: Kopioi
500 button_copy: Kopioi
501 button_annotate: Lisää selitys
501 button_annotate: Lisää selitys
502 button_update: Päivitä
502 button_update: Päivitä
503
503
504 status_active: aktiivinen
504 status_active: aktiivinen
505 status_registered: rekisteröity
505 status_registered: rekisteröity
506 status_locked: lukittu
506 status_locked: lukittu
507
507
508 text_select_mail_notifications: Valitse tapahtumat joista tulisi lähettää sähköpostimuistutus.
508 text_select_mail_notifications: Valitse tapahtumat joista tulisi lähettää sähköpostimuistutus.
509 text_regexp_info: esim. ^[A-Z0-9]+$
509 text_regexp_info: esim. ^[A-Z0-9]+$
510 text_min_max_length_info: 0 tarkoitta, ei rajoitusta
510 text_min_max_length_info: 0 tarkoitta, ei rajoitusta
511 text_project_destroy_confirmation: Oletko varma että haluat poistaa tämän projektin ja kaikki siihen kuuluvat tiedot?
511 text_project_destroy_confirmation: Oletko varma että haluat poistaa tämän projektin ja kaikki siihen kuuluvat tiedot?
512 text_workflow_edit: Valitse rooli ja tapahtuma muokataksesi työnkulkua
512 text_workflow_edit: Valitse rooli ja tapahtuma muokataksesi työnkulkua
513 text_are_you_sure: Oletko varma?
513 text_are_you_sure: Oletko varma?
514 text_journal_changed: %s muutettu arvoksi %s
514 text_journal_changed: %s muutettu arvoksi %s
515 text_journal_set_to: muutettu %s
515 text_journal_set_to: muutettu %s
516 text_journal_deleted: poistettu
516 text_journal_deleted: poistettu
517 text_tip_task_begin_day: tehtävä joka alkaa tänä päivänä
517 text_tip_task_begin_day: tehtävä joka alkaa tänä päivänä
518 text_tip_task_end_day: tehtävä joka loppuu tänä päivänä
518 text_tip_task_end_day: tehtävä joka loppuu tänä päivänä
519 text_tip_task_begin_end_day: tehtävä joka alkaa ja loppuu tänä päivänä
519 text_tip_task_begin_end_day: tehtävä joka alkaa ja loppuu tänä päivänä
520 text_project_identifier_info: 'Pienet kirjaimet (a-z), numerot ja viivat ovat sallittu.<br />Tallentamisen jälkeen tunnistetta ei voi muuttaa.'
520 text_project_identifier_info: 'Pienet kirjaimet (a-z), numerot ja viivat ovat sallittu.<br />Tallentamisen jälkeen tunnistetta ei voi muuttaa.'
521 text_caracters_maximum: %d merkkiä enintään.
521 text_caracters_maximum: %d merkkiä enintään.
522 text_caracters_minimum: Täytyy olla vähintään %d merkkiä pitkä.
522 text_caracters_minimum: Täytyy olla vähintään %d merkkiä pitkä.
523 text_length_between: Pituus välillä %d ja %d merkkiä.
523 text_length_between: Pituus välillä %d ja %d merkkiä.
524 text_tracker_no_workflow: Ei työnkulkua määritelty tälle tapahtumalle
524 text_tracker_no_workflow: Ei työnkulkua määritelty tälle tapahtumalle
525 text_unallowed_characters: Kiellettyjä merkkejä
525 text_unallowed_characters: Kiellettyjä merkkejä
526 text_comma_separated: Useat arvot sallittu (pilkku eroteltuna).
526 text_comma_separated: Useat arvot sallittu (pilkku eroteltuna).
527 text_issues_ref_in_commit_messages: Liitän ja korjaan ongelmia syötetyssä viestissä
527 text_issues_ref_in_commit_messages: Liitän ja korjaan ongelmia syötetyssä viestissä
528 text_issue_added: Tapahtuma %s on kirjattu.
528 text_issue_added: Tapahtuma %s on kirjattu.
529 text_issue_updated: Tapahtuma %s on päivitetty.
529 text_issue_updated: Tapahtuma %s on päivitetty.
530 text_wiki_destroy_confirmation: Oletko varma että haluat poistaa tämän wiki:n ja kaikki sen sisältämän tiedon?
530 text_wiki_destroy_confirmation: Oletko varma että haluat poistaa tämän wiki:n ja kaikki sen sisältämän tiedon?
531 text_issue_category_destroy_question: Jotkut tapahtumat (%d) ovat nimetty tälle luokalle. Mitä haluat tehdä?
531 text_issue_category_destroy_question: Jotkut tapahtumat (%d) ovat nimetty tälle luokalle. Mitä haluat tehdä?
532 text_issue_category_destroy_assignments: Poista luokan tehtävät
532 text_issue_category_destroy_assignments: Poista luokan tehtävät
533 text_issue_category_reassign_to: Vaihda tapahtuma tähän luokkaan
533 text_issue_category_reassign_to: Vaihda tapahtuma tähän luokkaan
534 text_user_mail_option: "Valitesemattomille projekteille, saat vain muistutuksen asioista joita seuraat tai olet mukana (esim. tapahtumat joissa olet tekijä tai nimettynä)."
534 text_user_mail_option: "Valitesemattomille projekteille, saat vain muistutuksen asioista joita seuraat tai olet mukana (esim. tapahtumat joissa olet tekijä tai nimettynä)."
535 text_no_configuration_data: "Rooleja, tikettejä, tapahtumien tiloja ja työnkulkua ei vielä olla määritelty.\nOn erittäin suotavaa ladata vakioasetukset. Voit muuttaa sitä latauksen jälkeen."
535 text_no_configuration_data: "Rooleja, tikettejä, tapahtumien tiloja ja työnkulkua ei vielä olla määritelty.\nOn erittäin suotavaa ladata vakioasetukset. Voit muuttaa sitä latauksen jälkeen."
536 text_load_default_configuration: Lataa vakioasetukset
536 text_load_default_configuration: Lataa vakioasetukset
537
537
538 default_role_manager: Päälikkö
538 default_role_manager: Päälikkö
539 default_role_developper: Kehittäjä
539 default_role_developper: Kehittäjä
540 default_role_reporter: Tarkastelija
540 default_role_reporter: Tarkastelija
541 default_tracker_bug: Ohjelmointivirhe
541 default_tracker_bug: Ohjelmointivirhe
542 default_tracker_feature: Ominaisuus
542 default_tracker_feature: Ominaisuus
543 default_tracker_support: Tuki
543 default_tracker_support: Tuki
544 default_issue_status_new: Uusi
544 default_issue_status_new: Uusi
545 default_issue_status_assigned: Nimetty
545 default_issue_status_assigned: Nimetty
546 default_issue_status_resolved: Hyväksytty
546 default_issue_status_resolved: Hyväksytty
547 default_issue_status_feedback: Palaute
547 default_issue_status_feedback: Palaute
548 default_issue_status_closed: Suljettu
548 default_issue_status_closed: Suljettu
549 default_issue_status_rejected: Hylätty
549 default_issue_status_rejected: Hylätty
550 default_doc_category_user: Käyttäjä dokumentaatio
550 default_doc_category_user: Käyttäjä dokumentaatio
551 default_doc_category_tech: Tekninen dokumentaatio
551 default_doc_category_tech: Tekninen dokumentaatio
552 default_priority_low: Matala
552 default_priority_low: Matala
553 default_priority_normal: Normaali
553 default_priority_normal: Normaali
554 default_priority_high: Korkea
554 default_priority_high: Korkea
555 default_priority_urgent: Kiireellinen
555 default_priority_urgent: Kiireellinen
556 default_priority_immediate: Valitön
556 default_priority_immediate: Valitön
557 default_activity_design: Suunnittelu
557 default_activity_design: Suunnittelu
558 default_activity_development: Kehitys
558 default_activity_development: Kehitys
559
559
560 enumeration_issue_priorities: Tapahtuman prioriteetit
560 enumeration_issue_priorities: Tapahtuman prioriteetit
561 enumeration_doc_categories: Dokumentin luokat
561 enumeration_doc_categories: Dokumentin luokat
562 enumeration_activities: Historia (ajan seuranta)
562 enumeration_activities: Historia (ajan seuranta)
563 label_associated_revisions: Liittyvät versiot
563 label_associated_revisions: Liittyvät versiot
564 setting_user_format: Käyttäjien esitysmuoto
564 setting_user_format: Käyttäjien esitysmuoto
565 text_status_changed_by_changeset: Päivitetty muutosversioon %s.
565 text_status_changed_by_changeset: Päivitetty muutosversioon %s.
566 text_issues_destroy_confirmation: 'Oletko varma että haluat poistaa valitut tapahtumat ?'
566 text_issues_destroy_confirmation: 'Oletko varma että haluat poistaa valitut tapahtumat ?'
567 label_more: Lisää
567 label_more: Lisää
568 label_issue_added: Tapahtuma lisätty
568 label_issue_added: Tapahtuma lisätty
569 label_issue_updated: Tapahtuma päivitetty
569 label_issue_updated: Tapahtuma päivitetty
570 label_document_added: Dokumentti lisätty
570 label_document_added: Dokumentti lisätty
571 label_message_posted: Viesti lisätty
571 label_message_posted: Viesti lisätty
572 label_file_added: Tiedosto lisätty
572 label_file_added: Tiedosto lisätty
573 label_scm: SCM
573 label_scm: SCM
574 text_select_project_modules: 'Valitse modulit jotka haluat käyttöön tähän projektiin:'
574 text_select_project_modules: 'Valitse modulit jotka haluat käyttöön tähän projektiin:'
575 label_news_added: Uutinen lisätty
575 label_news_added: Uutinen lisätty
576 project_module_boards: Keskustelupalsta
576 project_module_boards: Keskustelupalsta
577 project_module_issue_tracking: Tapahtuman seuranta
577 project_module_issue_tracking: Tapahtuman seuranta
578 project_module_wiki: Wiki
578 project_module_wiki: Wiki
579 project_module_files: Tiedostot
579 project_module_files: Tiedostot
580 project_module_documents: Dokumentit
580 project_module_documents: Dokumentit
581 project_module_repository: Säiliö
581 project_module_repository: Säiliö
582 project_module_news: Uutiset
582 project_module_news: Uutiset
583 project_module_time_tracking: Ajan seuranta
583 project_module_time_tracking: Ajan seuranta
584 text_file_repository_writable: Kirjoitettava tiedosto säiliö
584 text_file_repository_writable: Kirjoitettava tiedosto säiliö
585 text_default_administrator_account_changed: Vakio hallinoijan tunnus muutettu
585 text_default_administrator_account_changed: Vakio hallinoijan tunnus muutettu
586 text_rmagick_available: RMagick saatavilla (valinnainen)
586 text_rmagick_available: RMagick saatavilla (valinnainen)
587 button_configure: Asetukset
587 button_configure: Asetukset
588 label_plugins: Lisäosat
588 label_plugins: Lisäosat
589 label_ldap_authentication: LDAP autentikointi
589 label_ldap_authentication: LDAP autentikointi
590 label_downloads_abbr: D/L
590 label_downloads_abbr: D/L
591 label_add_another_file: Lisää uusi tiedosto
591 label_add_another_file: Lisää uusi tiedosto
592 label_this_month: tässä kuussa
592 label_this_month: tässä kuussa
593 text_destroy_time_entries_question: %.02f tuntia on raportoitu tapahtumasta jonka aiot poistaa. Mitä haluat tehdä ?
593 text_destroy_time_entries_question: %.02f tuntia on raportoitu tapahtumasta jonka aiot poistaa. Mitä haluat tehdä ?
594 label_last_n_days: viimeiset %d päivää
594 label_last_n_days: viimeiset %d päivää
595 label_all_time: koko ajalta
595 label_all_time: koko ajalta
596 error_issue_not_found_in_project: 'Tapahtumaa ei löytynyt tai se ei kuulu tähän projektiin'
596 error_issue_not_found_in_project: 'Tapahtumaa ei löytynyt tai se ei kuulu tähän projektiin'
597 label_this_year: tänä vuonna
597 label_this_year: tänä vuonna
598 text_assign_time_entries_to_project: Määritä tunnit projektille
598 text_assign_time_entries_to_project: Määritä tunnit projektille
599 label_date_range: Aikaväli
599 label_date_range: Aikaväli
600 label_last_week: viime viikolla
600 label_last_week: viime viikolla
601 label_yesterday: eilen
601 label_yesterday: eilen
602 label_optional_description: Lisäkuvaus
602 label_optional_description: Lisäkuvaus
603 label_last_month: viime kuussa
603 label_last_month: viime kuussa
604 text_destroy_time_entries: Poista raportoidut tunnit
604 text_destroy_time_entries: Poista raportoidut tunnit
605 text_reassign_time_entries: 'Siirrä raportoidut tunnit tälle tapahtumalle:'
605 text_reassign_time_entries: 'Siirrä raportoidut tunnit tälle tapahtumalle:'
606 label_on: ''
606 label_on: ''
607 label_chronological_order: Aikajärjestyksessä
607 label_chronological_order: Aikajärjestyksessä
608 label_date_to: ''
608 label_date_to: ''
609 setting_activity_days_default: Päivien esittäminen projektien historiassa
609 setting_activity_days_default: Päivien esittäminen projektien historiassa
610 label_date_from: ''
610 label_date_from: ''
611 label_in: ''
611 label_in: ''
612 setting_display_subprojects_issues: Näytä alaprojektien tapahtumat pääprojektissa oletusarvoisesti
612 setting_display_subprojects_issues: Näytä alaprojektien tapahtumat pääprojektissa oletusarvoisesti
613 field_comments_sorting: Näytä kommentit
613 field_comments_sorting: Näytä kommentit
614 label_reverse_chronological_order: Käänteisessä aikajärjestyksessä
614 label_reverse_chronological_order: Käänteisessä aikajärjestyksessä
615 label_preferences: Asetukset
615 label_preferences: Asetukset
616 setting_default_projects_public: Uudet projektit ovat oletuksena julkisia
616 setting_default_projects_public: Uudet projektit ovat oletuksena julkisia
617 label_overall_activity: Kokonaishistoria
617 label_overall_activity: Kokonaishistoria
618 error_scm_annotate: "Merkintää ei ole tai siihen ei voi lisätä selityksiä."
618 error_scm_annotate: "Merkintää ei ole tai siihen ei voi lisätä selityksiä."
619 label_planning: Suunnittelu
619 label_planning: Suunnittelu
620 text_subprojects_destroy_warning: 'Tämän alaprojekti(t): %s tullaan myös poistamaan.'
620 text_subprojects_destroy_warning: 'Tämän alaprojekti(t): %s tullaan myös poistamaan.'
621 label_and_its_subprojects: %s and its subprojects
621 label_and_its_subprojects: %s and its subprojects
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
623 mail_subject_reminder: "%d issue(s) due in the next days"
623 mail_subject_reminder: "%d issue(s) due in the next days"
624 text_user_wrote: '%s wrote:'
624 text_user_wrote: '%s wrote:'
625 label_duplicated_by: duplicated by
625 label_duplicated_by: duplicated by
626 setting_enabled_scm: Enabled SCM
626 setting_enabled_scm: Enabled SCM
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 label_incoming_emails: Incoming emails
630 label_generate_key: Generate a key
631 setting_mail_handler_api_enabled: Enable WS for incoming emails
632 setting_mail_handler_api_key: API key
@@ -1,629 +1,633
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 jour
8 actionview_datehelper_time_in_words_day: 1 jour
9 actionview_datehelper_time_in_words_day_plural: %d jours
9 actionview_datehelper_time_in_words_day_plural: %d jours
10 actionview_datehelper_time_in_words_hour_about: environ une heure
10 actionview_datehelper_time_in_words_hour_about: environ une heure
11 actionview_datehelper_time_in_words_hour_about_plural: environ %d heures
11 actionview_datehelper_time_in_words_hour_about_plural: environ %d heures
12 actionview_datehelper_time_in_words_hour_about_single: environ une heure
12 actionview_datehelper_time_in_words_hour_about_single: environ une heure
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
20 actionview_instancetag_blank_option: Choisir
20 actionview_instancetag_blank_option: Choisir
21
21
22 activerecord_error_inclusion: n'est pas inclus dans la liste
22 activerecord_error_inclusion: n'est pas inclus dans la liste
23 activerecord_error_exclusion: est reservé
23 activerecord_error_exclusion: est reservé
24 activerecord_error_invalid: est invalide
24 activerecord_error_invalid: est invalide
25 activerecord_error_confirmation: ne correspond pas à la confirmation
25 activerecord_error_confirmation: ne correspond pas à la confirmation
26 activerecord_error_accepted: doit être accepté
26 activerecord_error_accepted: doit être accepté
27 activerecord_error_empty: doit être renseigné
27 activerecord_error_empty: doit être renseigné
28 activerecord_error_blank: doit être renseigné
28 activerecord_error_blank: doit être renseigné
29 activerecord_error_too_long: est trop long
29 activerecord_error_too_long: est trop long
30 activerecord_error_too_short: est trop court
30 activerecord_error_too_short: est trop court
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
32 activerecord_error_taken: est déjà utilisé
32 activerecord_error_taken: est déjà utilisé
33 activerecord_error_not_a_number: n'est pas un nombre
33 activerecord_error_not_a_number: n'est pas un nombre
34 activerecord_error_not_a_date: n'est pas une date valide
34 activerecord_error_not_a_date: n'est pas une date valide
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
36 activerecord_error_not_same_project: n'appartient pas au même projet
36 activerecord_error_not_same_project: n'appartient pas au même projet
37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
38
38
39 general_fmt_age: %d an
39 general_fmt_age: %d an
40 general_fmt_age_plural: %d ans
40 general_fmt_age_plural: %d ans
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Non'
45 general_text_No: 'Non'
46 general_text_Yes: 'Oui'
46 general_text_Yes: 'Oui'
47 general_text_no: 'non'
47 general_text_no: 'non'
48 general_text_yes: 'oui'
48 general_text_yes: 'oui'
49 general_lang_name: 'Français'
49 general_lang_name: 'Français'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
53 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Le compte a été mis à jour avec succès.
56 notice_account_updated: Le compte a été mis à jour avec succès.
57 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
57 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
58 notice_account_password_updated: Mot de passe mis à jour avec succès.
58 notice_account_password_updated: Mot de passe mis à jour avec succès.
59 notice_account_wrong_password: Mot de passe incorrect
59 notice_account_wrong_password: Mot de passe incorrect
60 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
60 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
61 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
61 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
62 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
62 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
63 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
63 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
64 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
64 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
65 notice_successful_create: Création effectuée avec succès.
65 notice_successful_create: Création effectuée avec succès.
66 notice_successful_update: Mise à jour effectuée avec succès.
66 notice_successful_update: Mise à jour effectuée avec succès.
67 notice_successful_delete: Suppression effectuée avec succès.
67 notice_successful_delete: Suppression effectuée avec succès.
68 notice_successful_connection: Connection réussie.
68 notice_successful_connection: Connection réussie.
69 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
69 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
70 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
70 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
71 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
71 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
72 notice_email_sent: "Un email a été envoyé à %s"
72 notice_email_sent: "Un email a été envoyé à %s"
73 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
73 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
74 notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée."
74 notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée."
75 notice_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s."
75 notice_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s."
76 notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour."
76 notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour."
77 notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur."
77 notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur."
78 notice_default_data_loaded: Paramétrage par défaut chargé avec succès.
78 notice_default_data_loaded: Paramétrage par défaut chargé avec succès.
79
79
80 error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s"
80 error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s"
81 error_scm_not_found: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
81 error_scm_not_found: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
82 error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt: %s"
82 error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt: %s"
83 error_scm_annotate: "L'entrée n'existe pas ou ne peut pas être annotée."
83 error_scm_annotate: "L'entrée n'existe pas ou ne peut pas être annotée."
84 error_issue_not_found_in_project: "La demande n'existe pas ou n'appartient pas à ce projet"
84 error_issue_not_found_in_project: "La demande n'existe pas ou n'appartient pas à ce projet"
85
85
86 mail_subject_lost_password: Votre mot de passe %s
86 mail_subject_lost_password: Votre mot de passe %s
87 mail_body_lost_password: 'Pour changer votre mot de passe, cliquez sur le lien suivant:'
87 mail_body_lost_password: 'Pour changer votre mot de passe, cliquez sur le lien suivant:'
88 mail_subject_register: Activation de votre compte %s
88 mail_subject_register: Activation de votre compte %s
89 mail_body_register: 'Pour activer votre compte, cliquez sur le lien suivant:'
89 mail_body_register: 'Pour activer votre compte, cliquez sur le lien suivant:'
90 mail_body_account_information_external: Vous pouvez utiliser votre compte "%s" pour vous connecter.
90 mail_body_account_information_external: Vous pouvez utiliser votre compte "%s" pour vous connecter.
91 mail_body_account_information: Paramètres de connexion de votre compte
91 mail_body_account_information: Paramètres de connexion de votre compte
92 mail_subject_account_activation_request: "Demande d'activation d'un compte %s"
92 mail_subject_account_activation_request: "Demande d'activation d'un compte %s"
93 mail_body_account_activation_request: "Un nouvel utilisateur (%s) s'est inscrit. Son compte nécessite votre approbation:"
93 mail_body_account_activation_request: "Un nouvel utilisateur (%s) s'est inscrit. Son compte nécessite votre approbation:"
94 mail_subject_reminder: "%d demande(s) arrivent à échéance"
94 mail_subject_reminder: "%d demande(s) arrivent à échéance"
95 mail_body_reminder: "%d demande(s) qui vous sont assignées arrivent à échéance dans les %d prochains jours:"
95 mail_body_reminder: "%d demande(s) qui vous sont assignées arrivent à échéance dans les %d prochains jours:"
96
96
97 gui_validation_error: 1 erreur
97 gui_validation_error: 1 erreur
98 gui_validation_error_plural: %d erreurs
98 gui_validation_error_plural: %d erreurs
99
99
100 field_name: Nom
100 field_name: Nom
101 field_description: Description
101 field_description: Description
102 field_summary: Résumé
102 field_summary: Résumé
103 field_is_required: Obligatoire
103 field_is_required: Obligatoire
104 field_firstname: Prénom
104 field_firstname: Prénom
105 field_lastname: Nom
105 field_lastname: Nom
106 field_mail: Email
106 field_mail: Email
107 field_filename: Fichier
107 field_filename: Fichier
108 field_filesize: Taille
108 field_filesize: Taille
109 field_downloads: Téléchargements
109 field_downloads: Téléchargements
110 field_author: Auteur
110 field_author: Auteur
111 field_created_on: Créé
111 field_created_on: Créé
112 field_updated_on: Mis à jour
112 field_updated_on: Mis à jour
113 field_field_format: Format
113 field_field_format: Format
114 field_is_for_all: Pour tous les projets
114 field_is_for_all: Pour tous les projets
115 field_possible_values: Valeurs possibles
115 field_possible_values: Valeurs possibles
116 field_regexp: Expression régulière
116 field_regexp: Expression régulière
117 field_min_length: Longueur minimum
117 field_min_length: Longueur minimum
118 field_max_length: Longueur maximum
118 field_max_length: Longueur maximum
119 field_value: Valeur
119 field_value: Valeur
120 field_category: Catégorie
120 field_category: Catégorie
121 field_title: Titre
121 field_title: Titre
122 field_project: Projet
122 field_project: Projet
123 field_issue: Demande
123 field_issue: Demande
124 field_status: Statut
124 field_status: Statut
125 field_notes: Notes
125 field_notes: Notes
126 field_is_closed: Demande fermée
126 field_is_closed: Demande fermée
127 field_is_default: Valeur par défaut
127 field_is_default: Valeur par défaut
128 field_tracker: Tracker
128 field_tracker: Tracker
129 field_subject: Sujet
129 field_subject: Sujet
130 field_due_date: Date d'échéance
130 field_due_date: Date d'échéance
131 field_assigned_to: Assigné à
131 field_assigned_to: Assigné à
132 field_priority: Priorité
132 field_priority: Priorité
133 field_fixed_version: Version cible
133 field_fixed_version: Version cible
134 field_user: Utilisateur
134 field_user: Utilisateur
135 field_role: Rôle
135 field_role: Rôle
136 field_homepage: Site web
136 field_homepage: Site web
137 field_is_public: Public
137 field_is_public: Public
138 field_parent: Sous-projet de
138 field_parent: Sous-projet de
139 field_is_in_chlog: Demandes affichées dans l'historique
139 field_is_in_chlog: Demandes affichées dans l'historique
140 field_is_in_roadmap: Demandes affichées dans la roadmap
140 field_is_in_roadmap: Demandes affichées dans la roadmap
141 field_login: Identifiant
141 field_login: Identifiant
142 field_mail_notification: Notifications par mail
142 field_mail_notification: Notifications par mail
143 field_admin: Administrateur
143 field_admin: Administrateur
144 field_last_login_on: Dernière connexion
144 field_last_login_on: Dernière connexion
145 field_language: Langue
145 field_language: Langue
146 field_effective_date: Date
146 field_effective_date: Date
147 field_password: Mot de passe
147 field_password: Mot de passe
148 field_new_password: Nouveau mot de passe
148 field_new_password: Nouveau mot de passe
149 field_password_confirmation: Confirmation
149 field_password_confirmation: Confirmation
150 field_version: Version
150 field_version: Version
151 field_type: Type
151 field_type: Type
152 field_host: Hôte
152 field_host: Hôte
153 field_port: Port
153 field_port: Port
154 field_account: Compte
154 field_account: Compte
155 field_base_dn: Base DN
155 field_base_dn: Base DN
156 field_attr_login: Attribut Identifiant
156 field_attr_login: Attribut Identifiant
157 field_attr_firstname: Attribut Prénom
157 field_attr_firstname: Attribut Prénom
158 field_attr_lastname: Attribut Nom
158 field_attr_lastname: Attribut Nom
159 field_attr_mail: Attribut Email
159 field_attr_mail: Attribut Email
160 field_onthefly: Création des utilisateurs à la volée
160 field_onthefly: Création des utilisateurs à la volée
161 field_start_date: Début
161 field_start_date: Début
162 field_done_ratio: %% Réalisé
162 field_done_ratio: %% Réalisé
163 field_auth_source: Mode d'authentification
163 field_auth_source: Mode d'authentification
164 field_hide_mail: Cacher mon adresse mail
164 field_hide_mail: Cacher mon adresse mail
165 field_comments: Commentaire
165 field_comments: Commentaire
166 field_url: URL
166 field_url: URL
167 field_start_page: Page de démarrage
167 field_start_page: Page de démarrage
168 field_subproject: Sous-projet
168 field_subproject: Sous-projet
169 field_hours: Heures
169 field_hours: Heures
170 field_activity: Activité
170 field_activity: Activité
171 label_overall_activity: Activité globale
171 label_overall_activity: Activité globale
172 field_spent_on: Date
172 field_spent_on: Date
173 field_identifier: Identifiant
173 field_identifier: Identifiant
174 field_is_filter: Utilisé comme filtre
174 field_is_filter: Utilisé comme filtre
175 field_issue_to_id: Demande liée
175 field_issue_to_id: Demande liée
176 field_delay: Retard
176 field_delay: Retard
177 field_assignable: Demandes assignables à ce rôle
177 field_assignable: Demandes assignables à ce rôle
178 field_redirect_existing_links: Rediriger les liens existants
178 field_redirect_existing_links: Rediriger les liens existants
179 field_estimated_hours: Temps estimé
179 field_estimated_hours: Temps estimé
180 field_column_names: Colonnes
180 field_column_names: Colonnes
181 field_time_zone: Fuseau horaire
181 field_time_zone: Fuseau horaire
182 field_searchable: Utilisé pour les recherches
182 field_searchable: Utilisé pour les recherches
183 field_default_value: Valeur par défaut
183 field_default_value: Valeur par défaut
184 field_comments_sorting: Afficher les commentaires
184 field_comments_sorting: Afficher les commentaires
185
185
186 setting_app_title: Titre de l'application
186 setting_app_title: Titre de l'application
187 setting_app_subtitle: Sous-titre de l'application
187 setting_app_subtitle: Sous-titre de l'application
188 setting_welcome_text: Texte d'accueil
188 setting_welcome_text: Texte d'accueil
189 setting_default_language: Langue par défaut
189 setting_default_language: Langue par défaut
190 setting_login_required: Authentification obligatoire
190 setting_login_required: Authentification obligatoire
191 setting_self_registration: Inscription des nouveaux utilisateurs
191 setting_self_registration: Inscription des nouveaux utilisateurs
192 setting_attachment_max_size: Taille max des fichiers
192 setting_attachment_max_size: Taille max des fichiers
193 setting_issues_export_limit: Limite export demandes
193 setting_issues_export_limit: Limite export demandes
194 setting_mail_from: Adresse d'émission
194 setting_mail_from: Adresse d'émission
195 setting_bcc_recipients: Destinataires en copie cachée (cci)
195 setting_bcc_recipients: Destinataires en copie cachée (cci)
196 setting_host_name: Nom d'hôte
196 setting_host_name: Nom d'hôte
197 setting_text_formatting: Formatage du texte
197 setting_text_formatting: Formatage du texte
198 setting_wiki_compression: Compression historique wiki
198 setting_wiki_compression: Compression historique wiki
199 setting_feeds_limit: Limite du contenu des flux RSS
199 setting_feeds_limit: Limite du contenu des flux RSS
200 setting_default_projects_public: Définir les nouveaux projects comme publics par défaut
200 setting_default_projects_public: Définir les nouveaux projects comme publics par défaut
201 setting_autofetch_changesets: Récupération auto. des commits
201 setting_autofetch_changesets: Récupération auto. des commits
202 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
202 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
203 setting_commit_ref_keywords: Mot-clés de référencement
203 setting_commit_ref_keywords: Mot-clés de référencement
204 setting_commit_fix_keywords: Mot-clés de résolution
204 setting_commit_fix_keywords: Mot-clés de résolution
205 setting_autologin: Autologin
205 setting_autologin: Autologin
206 setting_date_format: Format de date
206 setting_date_format: Format de date
207 setting_time_format: Format d'heure
207 setting_time_format: Format d'heure
208 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
208 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
209 setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes
209 setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes
210 setting_repositories_encodings: Encodages des dépôts
210 setting_repositories_encodings: Encodages des dépôts
211 setting_emails_footer: Pied-de-page des emails
211 setting_emails_footer: Pied-de-page des emails
212 setting_protocol: Protocole
212 setting_protocol: Protocole
213 setting_per_page_options: Options d'objets affichés par page
213 setting_per_page_options: Options d'objets affichés par page
214 setting_user_format: Format d'affichage des utilisateurs
214 setting_user_format: Format d'affichage des utilisateurs
215 setting_activity_days_default: Nombre de jours affichés sur l'activité des projets
215 setting_activity_days_default: Nombre de jours affichés sur l'activité des projets
216 setting_display_subprojects_issues: Afficher par défaut les demandes des sous-projets sur les projets principaux
216 setting_display_subprojects_issues: Afficher par défaut les demandes des sous-projets sur les projets principaux
217 setting_enabled_scm: SCM activés
217 setting_enabled_scm: SCM activés
218 setting_mail_handler_api_enabled: "Activer le WS pour la réception d'emails"
219 setting_mail_handler_api_key: Clé de protection de l'API
218
220
219 project_module_issue_tracking: Suivi des demandes
221 project_module_issue_tracking: Suivi des demandes
220 project_module_time_tracking: Suivi du temps passé
222 project_module_time_tracking: Suivi du temps passé
221 project_module_news: Publication d'annonces
223 project_module_news: Publication d'annonces
222 project_module_documents: Publication de documents
224 project_module_documents: Publication de documents
223 project_module_files: Publication de fichiers
225 project_module_files: Publication de fichiers
224 project_module_wiki: Wiki
226 project_module_wiki: Wiki
225 project_module_repository: Dépôt de sources
227 project_module_repository: Dépôt de sources
226 project_module_boards: Forums de discussion
228 project_module_boards: Forums de discussion
227
229
228 label_user: Utilisateur
230 label_user: Utilisateur
229 label_user_plural: Utilisateurs
231 label_user_plural: Utilisateurs
230 label_user_new: Nouvel utilisateur
232 label_user_new: Nouvel utilisateur
231 label_project: Projet
233 label_project: Projet
232 label_project_new: Nouveau projet
234 label_project_new: Nouveau projet
233 label_project_plural: Projets
235 label_project_plural: Projets
234 label_project_all: Tous les projets
236 label_project_all: Tous les projets
235 label_project_latest: Derniers projets
237 label_project_latest: Derniers projets
236 label_issue: Demande
238 label_issue: Demande
237 label_issue_new: Nouvelle demande
239 label_issue_new: Nouvelle demande
238 label_issue_plural: Demandes
240 label_issue_plural: Demandes
239 label_issue_view_all: Voir toutes les demandes
241 label_issue_view_all: Voir toutes les demandes
240 label_issue_added: Demande ajoutée
242 label_issue_added: Demande ajoutée
241 label_issue_updated: Demande mise à jour
243 label_issue_updated: Demande mise à jour
242 label_issues_by: Demandes par %s
244 label_issues_by: Demandes par %s
243 label_document: Document
245 label_document: Document
244 label_document_new: Nouveau document
246 label_document_new: Nouveau document
245 label_document_plural: Documents
247 label_document_plural: Documents
246 label_document_added: Document ajouté
248 label_document_added: Document ajouté
247 label_role: Rôle
249 label_role: Rôle
248 label_role_plural: Rôles
250 label_role_plural: Rôles
249 label_role_new: Nouveau rôle
251 label_role_new: Nouveau rôle
250 label_role_and_permissions: Rôles et permissions
252 label_role_and_permissions: Rôles et permissions
251 label_member: Membre
253 label_member: Membre
252 label_member_new: Nouveau membre
254 label_member_new: Nouveau membre
253 label_member_plural: Membres
255 label_member_plural: Membres
254 label_tracker: Tracker
256 label_tracker: Tracker
255 label_tracker_plural: Trackers
257 label_tracker_plural: Trackers
256 label_tracker_new: Nouveau tracker
258 label_tracker_new: Nouveau tracker
257 label_workflow: Workflow
259 label_workflow: Workflow
258 label_issue_status: Statut de demandes
260 label_issue_status: Statut de demandes
259 label_issue_status_plural: Statuts de demandes
261 label_issue_status_plural: Statuts de demandes
260 label_issue_status_new: Nouveau statut
262 label_issue_status_new: Nouveau statut
261 label_issue_category: Catégorie de demandes
263 label_issue_category: Catégorie de demandes
262 label_issue_category_plural: Catégories de demandes
264 label_issue_category_plural: Catégories de demandes
263 label_issue_category_new: Nouvelle catégorie
265 label_issue_category_new: Nouvelle catégorie
264 label_custom_field: Champ personnalisé
266 label_custom_field: Champ personnalisé
265 label_custom_field_plural: Champs personnalisés
267 label_custom_field_plural: Champs personnalisés
266 label_custom_field_new: Nouveau champ personnalisé
268 label_custom_field_new: Nouveau champ personnalisé
267 label_enumerations: Listes de valeurs
269 label_enumerations: Listes de valeurs
268 label_enumeration_new: Nouvelle valeur
270 label_enumeration_new: Nouvelle valeur
269 label_information: Information
271 label_information: Information
270 label_information_plural: Informations
272 label_information_plural: Informations
271 label_please_login: Identification
273 label_please_login: Identification
272 label_register: S'enregistrer
274 label_register: S'enregistrer
273 label_password_lost: Mot de passe perdu
275 label_password_lost: Mot de passe perdu
274 label_home: Accueil
276 label_home: Accueil
275 label_my_page: Ma page
277 label_my_page: Ma page
276 label_my_account: Mon compte
278 label_my_account: Mon compte
277 label_my_projects: Mes projets
279 label_my_projects: Mes projets
278 label_administration: Administration
280 label_administration: Administration
279 label_login: Connexion
281 label_login: Connexion
280 label_logout: Déconnexion
282 label_logout: Déconnexion
281 label_help: Aide
283 label_help: Aide
282 label_reported_issues: Demandes soumises
284 label_reported_issues: Demandes soumises
283 label_assigned_to_me_issues: Demandes qui me sont assignées
285 label_assigned_to_me_issues: Demandes qui me sont assignées
284 label_last_login: Dernière connexion
286 label_last_login: Dernière connexion
285 label_last_updates: Dernière mise à jour
287 label_last_updates: Dernière mise à jour
286 label_last_updates_plural: %d dernières mises à jour
288 label_last_updates_plural: %d dernières mises à jour
287 label_registered_on: Inscrit le
289 label_registered_on: Inscrit le
288 label_activity: Activité
290 label_activity: Activité
289 label_new: Nouveau
291 label_new: Nouveau
290 label_logged_as: Connecté en tant que
292 label_logged_as: Connecté en tant que
291 label_environment: Environnement
293 label_environment: Environnement
292 label_authentication: Authentification
294 label_authentication: Authentification
293 label_auth_source: Mode d'authentification
295 label_auth_source: Mode d'authentification
294 label_auth_source_new: Nouveau mode d'authentification
296 label_auth_source_new: Nouveau mode d'authentification
295 label_auth_source_plural: Modes d'authentification
297 label_auth_source_plural: Modes d'authentification
296 label_subproject_plural: Sous-projets
298 label_subproject_plural: Sous-projets
297 label_and_its_subprojects: %s et ses sous-projets
299 label_and_its_subprojects: %s et ses sous-projets
298 label_min_max_length: Longueurs mini - maxi
300 label_min_max_length: Longueurs mini - maxi
299 label_list: Liste
301 label_list: Liste
300 label_date: Date
302 label_date: Date
301 label_integer: Entier
303 label_integer: Entier
302 label_float: Nombre décimal
304 label_float: Nombre décimal
303 label_boolean: Booléen
305 label_boolean: Booléen
304 label_string: Texte
306 label_string: Texte
305 label_text: Texte long
307 label_text: Texte long
306 label_attribute: Attribut
308 label_attribute: Attribut
307 label_attribute_plural: Attributs
309 label_attribute_plural: Attributs
308 label_download: %d Téléchargement
310 label_download: %d Téléchargement
309 label_download_plural: %d Téléchargements
311 label_download_plural: %d Téléchargements
310 label_no_data: Aucune donnée à afficher
312 label_no_data: Aucune donnée à afficher
311 label_change_status: Changer le statut
313 label_change_status: Changer le statut
312 label_history: Historique
314 label_history: Historique
313 label_attachment: Fichier
315 label_attachment: Fichier
314 label_attachment_new: Nouveau fichier
316 label_attachment_new: Nouveau fichier
315 label_attachment_delete: Supprimer le fichier
317 label_attachment_delete: Supprimer le fichier
316 label_attachment_plural: Fichiers
318 label_attachment_plural: Fichiers
317 label_file_added: Fichier ajouté
319 label_file_added: Fichier ajouté
318 label_report: Rapport
320 label_report: Rapport
319 label_report_plural: Rapports
321 label_report_plural: Rapports
320 label_news: Annonce
322 label_news: Annonce
321 label_news_new: Nouvelle annonce
323 label_news_new: Nouvelle annonce
322 label_news_plural: Annonces
324 label_news_plural: Annonces
323 label_news_latest: Dernières annonces
325 label_news_latest: Dernières annonces
324 label_news_view_all: Voir toutes les annonces
326 label_news_view_all: Voir toutes les annonces
325 label_news_added: Annonce ajoutée
327 label_news_added: Annonce ajoutée
326 label_change_log: Historique
328 label_change_log: Historique
327 label_settings: Configuration
329 label_settings: Configuration
328 label_overview: Aperçu
330 label_overview: Aperçu
329 label_version: Version
331 label_version: Version
330 label_version_new: Nouvelle version
332 label_version_new: Nouvelle version
331 label_version_plural: Versions
333 label_version_plural: Versions
332 label_confirmation: Confirmation
334 label_confirmation: Confirmation
333 label_export_to: 'Formats disponibles:'
335 label_export_to: 'Formats disponibles:'
334 label_read: Lire...
336 label_read: Lire...
335 label_public_projects: Projets publics
337 label_public_projects: Projets publics
336 label_open_issues: ouvert
338 label_open_issues: ouvert
337 label_open_issues_plural: ouverts
339 label_open_issues_plural: ouverts
338 label_closed_issues: fermé
340 label_closed_issues: fermé
339 label_closed_issues_plural: fermés
341 label_closed_issues_plural: fermés
340 label_total: Total
342 label_total: Total
341 label_permissions: Permissions
343 label_permissions: Permissions
342 label_current_status: Statut actuel
344 label_current_status: Statut actuel
343 label_new_statuses_allowed: Nouveaux statuts autorisés
345 label_new_statuses_allowed: Nouveaux statuts autorisés
344 label_all: tous
346 label_all: tous
345 label_none: aucun
347 label_none: aucun
346 label_nobody: personne
348 label_nobody: personne
347 label_next: Suivant
349 label_next: Suivant
348 label_previous: Précédent
350 label_previous: Précédent
349 label_used_by: Utilisé par
351 label_used_by: Utilisé par
350 label_details: Détails
352 label_details: Détails
351 label_add_note: Ajouter une note
353 label_add_note: Ajouter une note
352 label_per_page: Par page
354 label_per_page: Par page
353 label_calendar: Calendrier
355 label_calendar: Calendrier
354 label_months_from: mois depuis
356 label_months_from: mois depuis
355 label_gantt: Gantt
357 label_gantt: Gantt
356 label_internal: Interne
358 label_internal: Interne
357 label_last_changes: %d derniers changements
359 label_last_changes: %d derniers changements
358 label_change_view_all: Voir tous les changements
360 label_change_view_all: Voir tous les changements
359 label_personalize_page: Personnaliser cette page
361 label_personalize_page: Personnaliser cette page
360 label_comment: Commentaire
362 label_comment: Commentaire
361 label_comment_plural: Commentaires
363 label_comment_plural: Commentaires
362 label_comment_add: Ajouter un commentaire
364 label_comment_add: Ajouter un commentaire
363 label_comment_added: Commentaire ajouté
365 label_comment_added: Commentaire ajouté
364 label_comment_delete: Supprimer les commentaires
366 label_comment_delete: Supprimer les commentaires
365 label_query: Rapport personnalisé
367 label_query: Rapport personnalisé
366 label_query_plural: Rapports personnalisés
368 label_query_plural: Rapports personnalisés
367 label_query_new: Nouveau rapport
369 label_query_new: Nouveau rapport
368 label_filter_add: Ajouter le filtre
370 label_filter_add: Ajouter le filtre
369 label_filter_plural: Filtres
371 label_filter_plural: Filtres
370 label_equals: égal
372 label_equals: égal
371 label_not_equals: différent
373 label_not_equals: différent
372 label_in_less_than: dans moins de
374 label_in_less_than: dans moins de
373 label_in_more_than: dans plus de
375 label_in_more_than: dans plus de
374 label_in: dans
376 label_in: dans
375 label_today: aujourd'hui
377 label_today: aujourd'hui
376 label_all_time: toute la période
378 label_all_time: toute la période
377 label_yesterday: hier
379 label_yesterday: hier
378 label_this_week: cette semaine
380 label_this_week: cette semaine
379 label_last_week: la semaine dernière
381 label_last_week: la semaine dernière
380 label_last_n_days: les %d derniers jours
382 label_last_n_days: les %d derniers jours
381 label_this_month: ce mois-ci
383 label_this_month: ce mois-ci
382 label_last_month: le mois dernier
384 label_last_month: le mois dernier
383 label_this_year: cette année
385 label_this_year: cette année
384 label_date_range: Période
386 label_date_range: Période
385 label_less_than_ago: il y a moins de
387 label_less_than_ago: il y a moins de
386 label_more_than_ago: il y a plus de
388 label_more_than_ago: il y a plus de
387 label_ago: il y a
389 label_ago: il y a
388 label_contains: contient
390 label_contains: contient
389 label_not_contains: ne contient pas
391 label_not_contains: ne contient pas
390 label_day_plural: jours
392 label_day_plural: jours
391 label_repository: Dépôt
393 label_repository: Dépôt
392 label_repository_plural: Dépôts
394 label_repository_plural: Dépôts
393 label_browse: Parcourir
395 label_browse: Parcourir
394 label_modification: %d modification
396 label_modification: %d modification
395 label_modification_plural: %d modifications
397 label_modification_plural: %d modifications
396 label_revision: Révision
398 label_revision: Révision
397 label_revision_plural: Révisions
399 label_revision_plural: Révisions
398 label_associated_revisions: Révisions associées
400 label_associated_revisions: Révisions associées
399 label_added: ajouté
401 label_added: ajouté
400 label_modified: modifié
402 label_modified: modifié
401 label_deleted: supprimé
403 label_deleted: supprimé
402 label_latest_revision: Dernière révision
404 label_latest_revision: Dernière révision
403 label_latest_revision_plural: Dernières révisions
405 label_latest_revision_plural: Dernières révisions
404 label_view_revisions: Voir les révisions
406 label_view_revisions: Voir les révisions
405 label_max_size: Taille maximale
407 label_max_size: Taille maximale
406 label_on: sur
408 label_on: sur
407 label_sort_highest: Remonter en premier
409 label_sort_highest: Remonter en premier
408 label_sort_higher: Remonter
410 label_sort_higher: Remonter
409 label_sort_lower: Descendre
411 label_sort_lower: Descendre
410 label_sort_lowest: Descendre en dernier
412 label_sort_lowest: Descendre en dernier
411 label_roadmap: Roadmap
413 label_roadmap: Roadmap
412 label_roadmap_due_in: Echéance dans
414 label_roadmap_due_in: Echéance dans
413 label_roadmap_overdue: En retard de %s
415 label_roadmap_overdue: En retard de %s
414 label_roadmap_no_issues: Aucune demande pour cette version
416 label_roadmap_no_issues: Aucune demande pour cette version
415 label_search: Recherche
417 label_search: Recherche
416 label_result_plural: Résultats
418 label_result_plural: Résultats
417 label_all_words: Tous les mots
419 label_all_words: Tous les mots
418 label_wiki: Wiki
420 label_wiki: Wiki
419 label_wiki_edit: Révision wiki
421 label_wiki_edit: Révision wiki
420 label_wiki_edit_plural: Révisions wiki
422 label_wiki_edit_plural: Révisions wiki
421 label_wiki_page: Page wiki
423 label_wiki_page: Page wiki
422 label_wiki_page_plural: Pages wiki
424 label_wiki_page_plural: Pages wiki
423 label_index_by_title: Index par titre
425 label_index_by_title: Index par titre
424 label_index_by_date: Index par date
426 label_index_by_date: Index par date
425 label_current_version: Version actuelle
427 label_current_version: Version actuelle
426 label_preview: Prévisualisation
428 label_preview: Prévisualisation
427 label_feed_plural: Flux RSS
429 label_feed_plural: Flux RSS
428 label_changes_details: Détails de tous les changements
430 label_changes_details: Détails de tous les changements
429 label_issue_tracking: Suivi des demandes
431 label_issue_tracking: Suivi des demandes
430 label_spent_time: Temps passé
432 label_spent_time: Temps passé
431 label_f_hour: %.2f heure
433 label_f_hour: %.2f heure
432 label_f_hour_plural: %.2f heures
434 label_f_hour_plural: %.2f heures
433 label_time_tracking: Suivi du temps
435 label_time_tracking: Suivi du temps
434 label_change_plural: Changements
436 label_change_plural: Changements
435 label_statistics: Statistiques
437 label_statistics: Statistiques
436 label_commits_per_month: Commits par mois
438 label_commits_per_month: Commits par mois
437 label_commits_per_author: Commits par auteur
439 label_commits_per_author: Commits par auteur
438 label_view_diff: Voir les différences
440 label_view_diff: Voir les différences
439 label_diff_inline: en ligne
441 label_diff_inline: en ligne
440 label_diff_side_by_side: côte à côte
442 label_diff_side_by_side: côte à côte
441 label_options: Options
443 label_options: Options
442 label_copy_workflow_from: Copier le workflow de
444 label_copy_workflow_from: Copier le workflow de
443 label_permissions_report: Synthèse des permissions
445 label_permissions_report: Synthèse des permissions
444 label_watched_issues: Demandes surveillées
446 label_watched_issues: Demandes surveillées
445 label_related_issues: Demandes liées
447 label_related_issues: Demandes liées
446 label_applied_status: Statut appliqué
448 label_applied_status: Statut appliqué
447 label_loading: Chargement...
449 label_loading: Chargement...
448 label_relation_new: Nouvelle relation
450 label_relation_new: Nouvelle relation
449 label_relation_delete: Supprimer la relation
451 label_relation_delete: Supprimer la relation
450 label_relates_to: lié à
452 label_relates_to: lié à
451 label_duplicates: duplique
453 label_duplicates: duplique
452 label_duplicated_by: dupliqué par
454 label_duplicated_by: dupliqué par
453 label_blocks: bloque
455 label_blocks: bloque
454 label_blocked_by: bloqué par
456 label_blocked_by: bloqué par
455 label_precedes: précède
457 label_precedes: précède
456 label_follows: suit
458 label_follows: suit
457 label_end_to_start: fin à début
459 label_end_to_start: fin à début
458 label_end_to_end: fin à fin
460 label_end_to_end: fin à fin
459 label_start_to_start: début à début
461 label_start_to_start: début à début
460 label_start_to_end: début à fin
462 label_start_to_end: début à fin
461 label_stay_logged_in: Rester connecté
463 label_stay_logged_in: Rester connecté
462 label_disabled: désactivé
464 label_disabled: désactivé
463 label_show_completed_versions: Voir les versions passées
465 label_show_completed_versions: Voir les versions passées
464 label_me: moi
466 label_me: moi
465 label_board: Forum
467 label_board: Forum
466 label_board_new: Nouveau forum
468 label_board_new: Nouveau forum
467 label_board_plural: Forums
469 label_board_plural: Forums
468 label_topic_plural: Discussions
470 label_topic_plural: Discussions
469 label_message_plural: Messages
471 label_message_plural: Messages
470 label_message_last: Dernier message
472 label_message_last: Dernier message
471 label_message_new: Nouveau message
473 label_message_new: Nouveau message
472 label_message_posted: Message ajouté
474 label_message_posted: Message ajouté
473 label_reply_plural: Réponses
475 label_reply_plural: Réponses
474 label_send_information: Envoyer les informations à l'utilisateur
476 label_send_information: Envoyer les informations à l'utilisateur
475 label_year: Année
477 label_year: Année
476 label_month: Mois
478 label_month: Mois
477 label_week: Semaine
479 label_week: Semaine
478 label_date_from: Du
480 label_date_from: Du
479 label_date_to: Au
481 label_date_to: Au
480 label_language_based: Basé sur la langue de l'utilisateur
482 label_language_based: Basé sur la langue de l'utilisateur
481 label_sort_by: Trier par %s
483 label_sort_by: Trier par %s
482 label_send_test_email: Envoyer un email de test
484 label_send_test_email: Envoyer un email de test
483 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
485 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
484 label_module_plural: Modules
486 label_module_plural: Modules
485 label_added_time_by: Ajouté par %s il y a %s
487 label_added_time_by: Ajouté par %s il y a %s
486 label_updated_time: Mis à jour il y a %s
488 label_updated_time: Mis à jour il y a %s
487 label_jump_to_a_project: Aller à un projet...
489 label_jump_to_a_project: Aller à un projet...
488 label_file_plural: Fichiers
490 label_file_plural: Fichiers
489 label_changeset_plural: Révisions
491 label_changeset_plural: Révisions
490 label_default_columns: Colonnes par défaut
492 label_default_columns: Colonnes par défaut
491 label_no_change_option: (Pas de changement)
493 label_no_change_option: (Pas de changement)
492 label_bulk_edit_selected_issues: Modifier les demandes sélectionnées
494 label_bulk_edit_selected_issues: Modifier les demandes sélectionnées
493 label_theme: Thème
495 label_theme: Thème
494 label_default: Défaut
496 label_default: Défaut
495 label_search_titles_only: Uniquement dans les titres
497 label_search_titles_only: Uniquement dans les titres
496 label_user_mail_option_all: "Pour tous les événements de tous mes projets"
498 label_user_mail_option_all: "Pour tous les événements de tous mes projets"
497 label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..."
499 label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..."
498 label_user_mail_option_none: "Seulement pour ce que je surveille ou à quoi je participe"
500 label_user_mail_option_none: "Seulement pour ce que je surveille ou à quoi je participe"
499 label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements que j'effectue"
501 label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements que j'effectue"
500 label_registration_activation_by_email: activation du compte par email
502 label_registration_activation_by_email: activation du compte par email
501 label_registration_manual_activation: activation manuelle du compte
503 label_registration_manual_activation: activation manuelle du compte
502 label_registration_automatic_activation: activation automatique du compte
504 label_registration_automatic_activation: activation automatique du compte
503 label_display_per_page: 'Par page: %s'
505 label_display_per_page: 'Par page: %s'
504 label_age: Age
506 label_age: Age
505 label_change_properties: Changer les propriétés
507 label_change_properties: Changer les propriétés
506 label_general: Général
508 label_general: Général
507 label_more: Plus
509 label_more: Plus
508 label_scm: SCM
510 label_scm: SCM
509 label_plugins: Plugins
511 label_plugins: Plugins
510 label_ldap_authentication: Authentification LDAP
512 label_ldap_authentication: Authentification LDAP
511 label_downloads_abbr: D/L
513 label_downloads_abbr: D/L
512 label_optional_description: Description facultative
514 label_optional_description: Description facultative
513 label_add_another_file: Ajouter un autre fichier
515 label_add_another_file: Ajouter un autre fichier
514 label_preferences: Préférences
516 label_preferences: Préférences
515 label_chronological_order: Dans l'ordre chronologique
517 label_chronological_order: Dans l'ordre chronologique
516 label_reverse_chronological_order: Dans l'ordre chronologique inverse
518 label_reverse_chronological_order: Dans l'ordre chronologique inverse
517 label_planning: Planning
519 label_planning: Planning
520 label_incoming_emails: Emails entrants
521 label_generate_key: Générer une clé
518
522
519 button_login: Connexion
523 button_login: Connexion
520 button_submit: Soumettre
524 button_submit: Soumettre
521 button_save: Sauvegarder
525 button_save: Sauvegarder
522 button_check_all: Tout cocher
526 button_check_all: Tout cocher
523 button_uncheck_all: Tout décocher
527 button_uncheck_all: Tout décocher
524 button_delete: Supprimer
528 button_delete: Supprimer
525 button_create: Créer
529 button_create: Créer
526 button_test: Tester
530 button_test: Tester
527 button_edit: Modifier
531 button_edit: Modifier
528 button_add: Ajouter
532 button_add: Ajouter
529 button_change: Changer
533 button_change: Changer
530 button_apply: Appliquer
534 button_apply: Appliquer
531 button_clear: Effacer
535 button_clear: Effacer
532 button_lock: Verrouiller
536 button_lock: Verrouiller
533 button_unlock: Déverrouiller
537 button_unlock: Déverrouiller
534 button_download: Télécharger
538 button_download: Télécharger
535 button_list: Lister
539 button_list: Lister
536 button_view: Voir
540 button_view: Voir
537 button_move: Déplacer
541 button_move: Déplacer
538 button_back: Retour
542 button_back: Retour
539 button_cancel: Annuler
543 button_cancel: Annuler
540 button_activate: Activer
544 button_activate: Activer
541 button_sort: Trier
545 button_sort: Trier
542 button_log_time: Saisir temps
546 button_log_time: Saisir temps
543 button_rollback: Revenir à cette version
547 button_rollback: Revenir à cette version
544 button_watch: Surveiller
548 button_watch: Surveiller
545 button_unwatch: Ne plus surveiller
549 button_unwatch: Ne plus surveiller
546 button_reply: Répondre
550 button_reply: Répondre
547 button_archive: Archiver
551 button_archive: Archiver
548 button_unarchive: Désarchiver
552 button_unarchive: Désarchiver
549 button_reset: Réinitialiser
553 button_reset: Réinitialiser
550 button_rename: Renommer
554 button_rename: Renommer
551 button_change_password: Changer de mot de passe
555 button_change_password: Changer de mot de passe
552 button_copy: Copier
556 button_copy: Copier
553 button_annotate: Annoter
557 button_annotate: Annoter
554 button_update: Mettre à jour
558 button_update: Mettre à jour
555 button_configure: Configurer
559 button_configure: Configurer
556
560
557 status_active: actif
561 status_active: actif
558 status_registered: enregistré
562 status_registered: enregistré
559 status_locked: vérouillé
563 status_locked: vérouillé
560
564
561 text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyée
565 text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyée
562 text_regexp_info: ex. ^[A-Z0-9]+$
566 text_regexp_info: ex. ^[A-Z0-9]+$
563 text_min_max_length_info: 0 pour aucune restriction
567 text_min_max_length_info: 0 pour aucune restriction
564 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et toutes ses données ?
568 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et toutes ses données ?
565 text_subprojects_destroy_warning: 'Ses sous-projets: %s seront également supprimés.'
569 text_subprojects_destroy_warning: 'Ses sous-projets: %s seront également supprimés.'
566 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
570 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
567 text_are_you_sure: Etes-vous sûr ?
571 text_are_you_sure: Etes-vous sûr ?
568 text_journal_changed: changé de %s à %s
572 text_journal_changed: changé de %s à %s
569 text_journal_set_to: mis à %s
573 text_journal_set_to: mis à %s
570 text_journal_deleted: supprimé
574 text_journal_deleted: supprimé
571 text_tip_task_begin_day: tâche commençant ce jour
575 text_tip_task_begin_day: tâche commençant ce jour
572 text_tip_task_end_day: tâche finissant ce jour
576 text_tip_task_end_day: tâche finissant ce jour
573 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
577 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
574 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
578 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
575 text_caracters_maximum: %d caractères maximum.
579 text_caracters_maximum: %d caractères maximum.
576 text_caracters_minimum: %d caractères minimum.
580 text_caracters_minimum: %d caractères minimum.
577 text_length_between: Longueur comprise entre %d et %d caractères.
581 text_length_between: Longueur comprise entre %d et %d caractères.
578 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
582 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
579 text_unallowed_characters: Caractères non autorisés
583 text_unallowed_characters: Caractères non autorisés
580 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
584 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
581 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
585 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
582 text_issue_added: La demande %s a été soumise par %s.
586 text_issue_added: La demande %s a été soumise par %s.
583 text_issue_updated: La demande %s a été mise à jour par %s.
587 text_issue_updated: La demande %s a été mise à jour par %s.
584 text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ?
588 text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ?
585 text_issue_category_destroy_question: %d demandes sont affectées à cette catégories. Que voulez-vous faire ?
589 text_issue_category_destroy_question: %d demandes sont affectées à cette catégories. Que voulez-vous faire ?
586 text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie
590 text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie
587 text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie
591 text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie
588 text_user_mail_option: "Pour les projets non sélectionnés, vous recevrez seulement des notifications pour ce que vous surveillez ou à quoi vous participez (exemple: demandes dont vous êtes l'auteur ou la personne assignée)."
592 text_user_mail_option: "Pour les projets non sélectionnés, vous recevrez seulement des notifications pour ce que vous surveillez ou à quoi vous participez (exemple: demandes dont vous êtes l'auteur ou la personne assignée)."
589 text_no_configuration_data: "Les rôles, trackers, statuts et le workflow ne sont pas encore paramétrés.\nIl est vivement recommandé de charger le paramétrage par defaut. Vous pourrez le modifier une fois chargé."
593 text_no_configuration_data: "Les rôles, trackers, statuts et le workflow ne sont pas encore paramétrés.\nIl est vivement recommandé de charger le paramétrage par defaut. Vous pourrez le modifier une fois chargé."
590 text_load_default_configuration: Charger le paramétrage par défaut
594 text_load_default_configuration: Charger le paramétrage par défaut
591 text_status_changed_by_changeset: Appliqué par commit %s.
595 text_status_changed_by_changeset: Appliqué par commit %s.
592 text_issues_destroy_confirmation: 'Etes-vous sûr de vouloir supprimer le(s) demandes(s) selectionnée(s) ?'
596 text_issues_destroy_confirmation: 'Etes-vous sûr de vouloir supprimer le(s) demandes(s) selectionnée(s) ?'
593 text_select_project_modules: 'Selectionner les modules à activer pour ce project:'
597 text_select_project_modules: 'Selectionner les modules à activer pour ce project:'
594 text_default_administrator_account_changed: Compte administrateur par défaut changé
598 text_default_administrator_account_changed: Compte administrateur par défaut changé
595 text_file_repository_writable: Répertoire de stockage des fichiers accessible en écriture
599 text_file_repository_writable: Répertoire de stockage des fichiers accessible en écriture
596 text_rmagick_available: Bibliothèque RMagick présente (optionnelle)
600 text_rmagick_available: Bibliothèque RMagick présente (optionnelle)
597 text_destroy_time_entries_question: %.02f heures ont été enregistrées sur les demandes à supprimer. Que voulez-vous faire ?
601 text_destroy_time_entries_question: %.02f heures ont été enregistrées sur les demandes à supprimer. Que voulez-vous faire ?
598 text_destroy_time_entries: Supprimer les heures
602 text_destroy_time_entries: Supprimer les heures
599 text_assign_time_entries_to_project: Reporter les heures sur le projet
603 text_assign_time_entries_to_project: Reporter les heures sur le projet
600 text_reassign_time_entries: 'Reporter les heures sur cette demande:'
604 text_reassign_time_entries: 'Reporter les heures sur cette demande:'
601 text_user_wrote: '%s a écrit:'
605 text_user_wrote: '%s a écrit:'
602 text_enumeration_destroy_question: 'Cette valeur est affectée à %d objets.'
606 text_enumeration_destroy_question: 'Cette valeur est affectée à %d objets.'
603 text_enumeration_category_reassign_to: 'Réaffecter les objets à cette valeur:'
607 text_enumeration_category_reassign_to: 'Réaffecter les objets à cette valeur:'
604
608
605 default_role_manager: Manager
609 default_role_manager: Manager
606 default_role_developper: Développeur
610 default_role_developper: Développeur
607 default_role_reporter: Rapporteur
611 default_role_reporter: Rapporteur
608 default_tracker_bug: Anomalie
612 default_tracker_bug: Anomalie
609 default_tracker_feature: Evolution
613 default_tracker_feature: Evolution
610 default_tracker_support: Assistance
614 default_tracker_support: Assistance
611 default_issue_status_new: Nouveau
615 default_issue_status_new: Nouveau
612 default_issue_status_assigned: Assigné
616 default_issue_status_assigned: Assigné
613 default_issue_status_resolved: Résolu
617 default_issue_status_resolved: Résolu
614 default_issue_status_feedback: Commentaire
618 default_issue_status_feedback: Commentaire
615 default_issue_status_closed: Fermé
619 default_issue_status_closed: Fermé
616 default_issue_status_rejected: Rejeté
620 default_issue_status_rejected: Rejeté
617 default_doc_category_user: Documentation utilisateur
621 default_doc_category_user: Documentation utilisateur
618 default_doc_category_tech: Documentation technique
622 default_doc_category_tech: Documentation technique
619 default_priority_low: Bas
623 default_priority_low: Bas
620 default_priority_normal: Normal
624 default_priority_normal: Normal
621 default_priority_high: Haut
625 default_priority_high: Haut
622 default_priority_urgent: Urgent
626 default_priority_urgent: Urgent
623 default_priority_immediate: Immédiat
627 default_priority_immediate: Immédiat
624 default_activity_design: Conception
628 default_activity_design: Conception
625 default_activity_development: Développement
629 default_activity_development: Développement
626
630
627 enumeration_issue_priorities: Priorités des demandes
631 enumeration_issue_priorities: Priorités des demandes
628 enumeration_doc_categories: Catégories des documents
632 enumeration_doc_categories: Catégories des documents
629 enumeration_activities: Activités (suivi du temps)
633 enumeration_activities: Activités (suivi du temps)
@@ -1,628 +1,632
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: ינואר,פברואר,מרץ,אפריל,מאי,יוני,יולי,אוגוסט,ספטמבר,אוקטובר,נובמבר,דצבמבר
4 actionview_datehelper_select_month_names: ינואר,פברואר,מרץ,אפריל,מאי,יוני,יולי,אוגוסט,ספטמבר,אוקטובר,נובמבר,דצבמבר
5 actionview_datehelper_select_month_names_abbr: ינו',פבו',מרץ,אפר',מאי,יונ',יול',אוג',ספט',אוקט',נוב',דצמ'
5 actionview_datehelper_select_month_names_abbr: ינו',פבו',מרץ,אפר',מאי,יונ',יול',אוג',ספט',אוקט',נוב',דצמ'
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: יום 1
8 actionview_datehelper_time_in_words_day: יום 1
9 actionview_datehelper_time_in_words_day_plural: %d ימים
9 actionview_datehelper_time_in_words_day_plural: %d ימים
10 actionview_datehelper_time_in_words_hour_about: כשעה
10 actionview_datehelper_time_in_words_hour_about: כשעה
11 actionview_datehelper_time_in_words_hour_about_plural: כ-%d שעות
11 actionview_datehelper_time_in_words_hour_about_plural: כ-%d שעות
12 actionview_datehelper_time_in_words_hour_about_single: כשעה
12 actionview_datehelper_time_in_words_hour_about_single: כשעה
13 actionview_datehelper_time_in_words_minute: דקה 1
13 actionview_datehelper_time_in_words_minute: דקה 1
14 actionview_datehelper_time_in_words_minute_half: חצי דקה
14 actionview_datehelper_time_in_words_minute_half: חצי דקה
15 actionview_datehelper_time_in_words_minute_less_than: פחות מדקה
15 actionview_datehelper_time_in_words_minute_less_than: פחות מדקה
16 actionview_datehelper_time_in_words_minute_plural: %d דקות
16 actionview_datehelper_time_in_words_minute_plural: %d דקות
17 actionview_datehelper_time_in_words_minute_single: דקה 1
17 actionview_datehelper_time_in_words_minute_single: דקה 1
18 actionview_datehelper_time_in_words_second_less_than: פחות משניה
18 actionview_datehelper_time_in_words_second_less_than: פחות משניה
19 actionview_datehelper_time_in_words_second_less_than_plural: פחות מ-%d שניות
19 actionview_datehelper_time_in_words_second_less_than_plural: פחות מ-%d שניות
20 actionview_instancetag_blank_option: בחר בבקשה
20 actionview_instancetag_blank_option: בחר בבקשה
21
21
22 activerecord_error_inclusion: לא כלול ברשימה
22 activerecord_error_inclusion: לא כלול ברשימה
23 activerecord_error_exclusion: שמור
23 activerecord_error_exclusion: שמור
24 activerecord_error_invalid: לא קביל
24 activerecord_error_invalid: לא קביל
25 activerecord_error_confirmation: לא מתאים לאישור
25 activerecord_error_confirmation: לא מתאים לאישור
26 activerecord_error_accepted: חייב להסכים
26 activerecord_error_accepted: חייב להסכים
27 activerecord_error_empty: לא יכול להיות ריק
27 activerecord_error_empty: לא יכול להיות ריק
28 activerecord_error_blank: לא יכול להיות חסר
28 activerecord_error_blank: לא יכול להיות חסר
29 activerecord_error_too_long: ארוך מדי
29 activerecord_error_too_long: ארוך מדי
30 activerecord_error_too_short: קצר מדי
30 activerecord_error_too_short: קצר מדי
31 activerecord_error_wrong_length: בארוך שגוי
31 activerecord_error_wrong_length: בארוך שגוי
32 activerecord_error_taken: כבר נלקח
32 activerecord_error_taken: כבר נלקח
33 activerecord_error_not_a_number: אינו מספר
33 activerecord_error_not_a_number: אינו מספר
34 activerecord_error_not_a_date: אינו תאריך קביל
34 activerecord_error_not_a_date: אינו תאריך קביל
35 activerecord_error_greater_than_start_date: חייב להיות מאוחר יותר מתאריך ההתחלה
35 activerecord_error_greater_than_start_date: חייב להיות מאוחר יותר מתאריך ההתחלה
36 activerecord_error_not_same_project: לא שייך לאותו הפרויקט
36 activerecord_error_not_same_project: לא שייך לאותו הפרויקט
37 activerecord_error_circular_dependency: הקשר הזה יצור תלות מעגלית
37 activerecord_error_circular_dependency: הקשר הזה יצור תלות מעגלית
38
38
39 general_fmt_age: שנה %d
39 general_fmt_age: שנה %d
40 general_fmt_age_plural: %d שנים
40 general_fmt_age_plural: %d שנים
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'לא'
45 general_text_No: 'לא'
46 general_text_Yes: 'כן'
46 general_text_Yes: 'כן'
47 general_text_no: 'לא'
47 general_text_no: 'לא'
48 general_text_yes: 'כן'
48 general_text_yes: 'כן'
49 general_lang_name: 'Hebrew (עברית)'
49 general_lang_name: 'Hebrew (עברית)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-8-I
51 general_csv_encoding: ISO-8859-8-I
52 general_pdf_encoding: ISO-8859-8-I
52 general_pdf_encoding: ISO-8859-8-I
53 general_day_names: שני,שלישי,רביעי,חמישי,שישי,שבת,ראשון
53 general_day_names: שני,שלישי,רביעי,חמישי,שישי,שבת,ראשון
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: החשבון עודכן בהצלחה!
56 notice_account_updated: החשבון עודכן בהצלחה!
57 notice_account_invalid_creditentials: שם משתמש או סיסמה שגויים
57 notice_account_invalid_creditentials: שם משתמש או סיסמה שגויים
58 notice_account_password_updated: הסיסמה עודכנה בהצלחה!
58 notice_account_password_updated: הסיסמה עודכנה בהצלחה!
59 notice_account_wrong_password: סיסמה שגויה
59 notice_account_wrong_password: סיסמה שגויה
60 notice_account_register_done: החשבון נוצר בהצלחה. להפעלת החשבון לחץ על הקישור שנשלח לדוא"ל שלך.
60 notice_account_register_done: החשבון נוצר בהצלחה. להפעלת החשבון לחץ על הקישור שנשלח לדוא"ל שלך.
61 notice_account_unknown_email: משתמש לא מוכר.
61 notice_account_unknown_email: משתמש לא מוכר.
62 notice_can_t_change_password: החשבון הזה משתמש במקור אימות חיצוני. שינוי סיסמה הינו בילתי אפשר
62 notice_can_t_change_password: החשבון הזה משתמש במקור אימות חיצוני. שינוי סיסמה הינו בילתי אפשר
63 notice_account_lost_email_sent: דוא"ל עם הוראות לבחירת סיסמה חדשה נשלח אליך.
63 notice_account_lost_email_sent: דוא"ל עם הוראות לבחירת סיסמה חדשה נשלח אליך.
64 notice_account_activated: חשבונך הופעל. אתה יכול להתחבר כעת.
64 notice_account_activated: חשבונך הופעל. אתה יכול להתחבר כעת.
65 notice_successful_create: יצירה מוצלחת.
65 notice_successful_create: יצירה מוצלחת.
66 notice_successful_update: עידכון מוצלח.
66 notice_successful_update: עידכון מוצלח.
67 notice_successful_delete: מחיקה מוצלחת.
67 notice_successful_delete: מחיקה מוצלחת.
68 notice_successful_connection: חיבור מוצלח.
68 notice_successful_connection: חיבור מוצלח.
69 notice_file_not_found: הדף שאת\ה מנסה לגשת אליו אינו קיים או שהוסר.
69 notice_file_not_found: הדף שאת\ה מנסה לגשת אליו אינו קיים או שהוסר.
70 notice_locking_conflict: המידע עודכן על ידי משתמש אחר.
70 notice_locking_conflict: המידע עודכן על ידי משתמש אחר.
71 notice_not_authorized: אינך מורשה לראות דף זה.
71 notice_not_authorized: אינך מורשה לראות דף זה.
72 notice_email_sent: דוא"ל נשלח לכתובת %s
72 notice_email_sent: דוא"ל נשלח לכתובת %s
73 notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s)
73 notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s)
74 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס.
74 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס.
75 notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s."
75 notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s."
76 notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך."
76 notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך."
77
77
78 error_scm_not_found: כניסה ו\או גירסא אינם קיימים במאגר.
78 error_scm_not_found: כניסה ו\או גירסא אינם קיימים במאגר.
79 error_scm_command_failed: "ארעה שגיאה בעת ניסון גישה למאגר: %s"
79 error_scm_command_failed: "ארעה שגיאה בעת ניסון גישה למאגר: %s"
80
80
81 mail_subject_lost_password: סיסמת ה-%s שלך
81 mail_subject_lost_password: סיסמת ה-%s שלך
82 mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:'
82 mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:'
83 mail_subject_register: הפעלת חשבון %s
83 mail_subject_register: הפעלת חשבון %s
84 mail_body_register: 'להפעלת חשבון ה-Redmine שלך, לחץ על הקישור הבא:'
84 mail_body_register: 'להפעלת חשבון ה-Redmine שלך, לחץ על הקישור הבא:'
85
85
86 gui_validation_error: שגיאה 1
86 gui_validation_error: שגיאה 1
87 gui_validation_error_plural: %d שגיאות
87 gui_validation_error_plural: %d שגיאות
88
88
89 field_name: שם
89 field_name: שם
90 field_description: תיאור
90 field_description: תיאור
91 field_summary: תקציר
91 field_summary: תקציר
92 field_is_required: נדרש
92 field_is_required: נדרש
93 field_firstname: שם פרטי
93 field_firstname: שם פרטי
94 field_lastname: שם משפחה
94 field_lastname: שם משפחה
95 field_mail: דוא"ל
95 field_mail: דוא"ל
96 field_filename: קובץ
96 field_filename: קובץ
97 field_filesize: גודל
97 field_filesize: גודל
98 field_downloads: הורדות
98 field_downloads: הורדות
99 field_author: כותב
99 field_author: כותב
100 field_created_on: נוצר
100 field_created_on: נוצר
101 field_updated_on: עודכן
101 field_updated_on: עודכן
102 field_field_format: פורמט
102 field_field_format: פורמט
103 field_is_for_all: לכל הפרויקטים
103 field_is_for_all: לכל הפרויקטים
104 field_possible_values: ערכים אפשריים
104 field_possible_values: ערכים אפשריים
105 field_regexp: ביטוי רגיל
105 field_regexp: ביטוי רגיל
106 field_min_length: אורך מינימאלי
106 field_min_length: אורך מינימאלי
107 field_max_length: אורך מקסימאלי
107 field_max_length: אורך מקסימאלי
108 field_value: ערך
108 field_value: ערך
109 field_category: קטגוריה
109 field_category: קטגוריה
110 field_title: כותרת
110 field_title: כותרת
111 field_project: פרויקט
111 field_project: פרויקט
112 field_issue: נושא
112 field_issue: נושא
113 field_status: מצב
113 field_status: מצב
114 field_notes: הערות
114 field_notes: הערות
115 field_is_closed: נושא סגור
115 field_is_closed: נושא סגור
116 field_is_default: ערך ברירת מחדל
116 field_is_default: ערך ברירת מחדל
117 field_tracker: עוקב
117 field_tracker: עוקב
118 field_subject: שם נושא
118 field_subject: שם נושא
119 field_due_date: תאריך סיום
119 field_due_date: תאריך סיום
120 field_assigned_to: מוצב ל
120 field_assigned_to: מוצב ל
121 field_priority: עדיפות
121 field_priority: עדיפות
122 field_fixed_version: גירסאת יעד
122 field_fixed_version: גירסאת יעד
123 field_user: מתשמש
123 field_user: מתשמש
124 field_role: תפקיד
124 field_role: תפקיד
125 field_homepage: דף הבית
125 field_homepage: דף הבית
126 field_is_public: פומבי
126 field_is_public: פומבי
127 field_parent: תת פרויקט של
127 field_parent: תת פרויקט של
128 field_is_in_chlog: נושאים המוצגים בדו"ח השינויים
128 field_is_in_chlog: נושאים המוצגים בדו"ח השינויים
129 field_is_in_roadmap: נושאים המוצגים במפת הדרכים
129 field_is_in_roadmap: נושאים המוצגים במפת הדרכים
130 field_login: שם משתמש
130 field_login: שם משתמש
131 field_mail_notification: הודעות דוא"ל
131 field_mail_notification: הודעות דוא"ל
132 field_admin: אדמיניסטרציה
132 field_admin: אדמיניסטרציה
133 field_last_login_on: חיבור אחרון
133 field_last_login_on: חיבור אחרון
134 field_language: שפה
134 field_language: שפה
135 field_effective_date: תאריך
135 field_effective_date: תאריך
136 field_password: סיסמה
136 field_password: סיסמה
137 field_new_password: סיסמה חדשה
137 field_new_password: סיסמה חדשה
138 field_password_confirmation: אישור
138 field_password_confirmation: אישור
139 field_version: גירסא
139 field_version: גירסא
140 field_type: סוג
140 field_type: סוג
141 field_host: שרת
141 field_host: שרת
142 field_port: פורט
142 field_port: פורט
143 field_account: חשבון
143 field_account: חשבון
144 field_base_dn: בסיס DN
144 field_base_dn: בסיס DN
145 field_attr_login: תכונת התחברות
145 field_attr_login: תכונת התחברות
146 field_attr_firstname: תכונת שם פרטים
146 field_attr_firstname: תכונת שם פרטים
147 field_attr_lastname: תכונת שם משפחה
147 field_attr_lastname: תכונת שם משפחה
148 field_attr_mail: תכונת דוא"ל
148 field_attr_mail: תכונת דוא"ל
149 field_onthefly: יצירת משתמשים זריזה
149 field_onthefly: יצירת משתמשים זריזה
150 field_start_date: התחל
150 field_start_date: התחל
151 field_done_ratio: %% גמור
151 field_done_ratio: %% גמור
152 field_auth_source: מצב אימות
152 field_auth_source: מצב אימות
153 field_hide_mail: החבא את כתובת הדוא"ל שלי
153 field_hide_mail: החבא את כתובת הדוא"ל שלי
154 field_comments: הערות
154 field_comments: הערות
155 field_url: URL
155 field_url: URL
156 field_start_page: דף התחלתי
156 field_start_page: דף התחלתי
157 field_subproject: תת פרויקט
157 field_subproject: תת פרויקט
158 field_hours: שעות
158 field_hours: שעות
159 field_activity: פעילות
159 field_activity: פעילות
160 field_spent_on: תאריך
160 field_spent_on: תאריך
161 field_identifier: מזהה
161 field_identifier: מזהה
162 field_is_filter: משמש כמסנן
162 field_is_filter: משמש כמסנן
163 field_issue_to_id: נושאים קשורים
163 field_issue_to_id: נושאים קשורים
164 field_delay: עיקוב
164 field_delay: עיקוב
165 field_assignable: ניתן להקצות נושאים לתפקיד זה
165 field_assignable: ניתן להקצות נושאים לתפקיד זה
166 field_redirect_existing_links: העבר קישורים קיימים
166 field_redirect_existing_links: העבר קישורים קיימים
167 field_estimated_hours: זמן משוער
167 field_estimated_hours: זמן משוער
168 field_column_names: עמודות
168 field_column_names: עמודות
169 field_default_value: ערך ברירת מחדל
169 field_default_value: ערך ברירת מחדל
170
170
171 setting_app_title: כותרת ישום
171 setting_app_title: כותרת ישום
172 setting_app_subtitle: תת-כותרת ישום
172 setting_app_subtitle: תת-כותרת ישום
173 setting_welcome_text: טקסט "ברוך הבא"
173 setting_welcome_text: טקסט "ברוך הבא"
174 setting_default_language: שפת ברירת מחדל
174 setting_default_language: שפת ברירת מחדל
175 setting_login_required: דרוש אימות
175 setting_login_required: דרוש אימות
176 setting_self_registration: אפשר הרשמות עצמית
176 setting_self_registration: אפשר הרשמות עצמית
177 setting_attachment_max_size: גודל דבוקה מקסימאלי
177 setting_attachment_max_size: גודל דבוקה מקסימאלי
178 setting_issues_export_limit: גבול יצוא נושאים
178 setting_issues_export_limit: גבול יצוא נושאים
179 setting_mail_from: כתובת שליחת דוא"ל
179 setting_mail_from: כתובת שליחת דוא"ל
180 setting_host_name: שם שרת
180 setting_host_name: שם שרת
181 setting_text_formatting: עיצוב טקסט
181 setting_text_formatting: עיצוב טקסט
182 setting_wiki_compression: כיווץ היסטורית WIKI
182 setting_wiki_compression: כיווץ היסטורית WIKI
183 setting_feeds_limit: גבול תוכן הזנות
183 setting_feeds_limit: גבול תוכן הזנות
184 setting_autofetch_changesets: משיכה אוטומתי של עידכונים
184 setting_autofetch_changesets: משיכה אוטומתי של עידכונים
185 setting_sys_api_enabled: אפשר WS לניהול המאגר
185 setting_sys_api_enabled: אפשר WS לניהול המאגר
186 setting_commit_ref_keywords: מילות מפתח מקשרות
186 setting_commit_ref_keywords: מילות מפתח מקשרות
187 setting_commit_fix_keywords: מילות מפתח מתקנות
187 setting_commit_fix_keywords: מילות מפתח מתקנות
188 setting_autologin: חיבור אוטומטי
188 setting_autologin: חיבור אוטומטי
189 setting_date_format: פורמט תאריך
189 setting_date_format: פורמט תאריך
190 setting_cross_project_issue_relations: הרשה קישור נושאים בין פרויקטים
190 setting_cross_project_issue_relations: הרשה קישור נושאים בין פרויקטים
191 setting_issue_list_default_columns: עמודות ברירת מחדל המוצגות ברשימת הנושאים
191 setting_issue_list_default_columns: עמודות ברירת מחדל המוצגות ברשימת הנושאים
192 setting_repositories_encodings: קידוד המאגרים
192 setting_repositories_encodings: קידוד המאגרים
193
193
194 label_user: משתמש
194 label_user: משתמש
195 label_user_plural: משתמשים
195 label_user_plural: משתמשים
196 label_user_new: משתמש חדש
196 label_user_new: משתמש חדש
197 label_project: פרויקט
197 label_project: פרויקט
198 label_project_new: פרויקט חדש
198 label_project_new: פרויקט חדש
199 label_project_plural: פרויקטים
199 label_project_plural: פרויקטים
200 label_project_all: כל הפרויקטים
200 label_project_all: כל הפרויקטים
201 label_project_latest: הפרויקטים החדשים ביותר
201 label_project_latest: הפרויקטים החדשים ביותר
202 label_issue: נושא
202 label_issue: נושא
203 label_issue_new: נושא חדש
203 label_issue_new: נושא חדש
204 label_issue_plural: נושאים
204 label_issue_plural: נושאים
205 label_issue_view_all: צפה בכל הנושאים
205 label_issue_view_all: צפה בכל הנושאים
206 label_document: מסמך
206 label_document: מסמך
207 label_document_new: מסמך חדש
207 label_document_new: מסמך חדש
208 label_document_plural: מסמכים
208 label_document_plural: מסמכים
209 label_role: תפקיד
209 label_role: תפקיד
210 label_role_plural: תפקידים
210 label_role_plural: תפקידים
211 label_role_new: תפקיד חדש
211 label_role_new: תפקיד חדש
212 label_role_and_permissions: תפקידים והרשאות
212 label_role_and_permissions: תפקידים והרשאות
213 label_member: חבר
213 label_member: חבר
214 label_member_new: חבר חדש
214 label_member_new: חבר חדש
215 label_member_plural: חברים
215 label_member_plural: חברים
216 label_tracker: עוקב
216 label_tracker: עוקב
217 label_tracker_plural: עוקבים
217 label_tracker_plural: עוקבים
218 label_tracker_new: עוקב חדש
218 label_tracker_new: עוקב חדש
219 label_workflow: זרימת עבודה
219 label_workflow: זרימת עבודה
220 label_issue_status: מצב נושא
220 label_issue_status: מצב נושא
221 label_issue_status_plural: מצבי נושא
221 label_issue_status_plural: מצבי נושא
222 label_issue_status_new: מצב חדש
222 label_issue_status_new: מצב חדש
223 label_issue_category: קטגורית נושא
223 label_issue_category: קטגורית נושא
224 label_issue_category_plural: קטגוריות נושא
224 label_issue_category_plural: קטגוריות נושא
225 label_issue_category_new: קטגוריה חדשה
225 label_issue_category_new: קטגוריה חדשה
226 label_custom_field: שדה אישי
226 label_custom_field: שדה אישי
227 label_custom_field_plural: שדות אישיים
227 label_custom_field_plural: שדות אישיים
228 label_custom_field_new: שדה אישי חדש
228 label_custom_field_new: שדה אישי חדש
229 label_enumerations: אינומרציות
229 label_enumerations: אינומרציות
230 label_enumeration_new: ערך חדש
230 label_enumeration_new: ערך חדש
231 label_information: מידע
231 label_information: מידע
232 label_information_plural: מידע
232 label_information_plural: מידע
233 label_please_login: התחבר בבקשה
233 label_please_login: התחבר בבקשה
234 label_register: הרשמה
234 label_register: הרשמה
235 label_password_lost: אבדה הסיסמה?
235 label_password_lost: אבדה הסיסמה?
236 label_home: דף הבית
236 label_home: דף הבית
237 label_my_page: הדף שלי
237 label_my_page: הדף שלי
238 label_my_account: השבון שלי
238 label_my_account: השבון שלי
239 label_my_projects: הפרויקטים שלי
239 label_my_projects: הפרויקטים שלי
240 label_administration: אדמיניסטרציה
240 label_administration: אדמיניסטרציה
241 label_login: התחבר
241 label_login: התחבר
242 label_logout: התנתק
242 label_logout: התנתק
243 label_help: עזרה
243 label_help: עזרה
244 label_reported_issues: נושאים שדווחו
244 label_reported_issues: נושאים שדווחו
245 label_assigned_to_me_issues: נושאים שהוצבו לי
245 label_assigned_to_me_issues: נושאים שהוצבו לי
246 label_last_login: חיבור אחרון
246 label_last_login: חיבור אחרון
247 label_last_updates: עידכון אחרון
247 label_last_updates: עידכון אחרון
248 label_last_updates_plural: %d עידכונים אחרונים
248 label_last_updates_plural: %d עידכונים אחרונים
249 label_registered_on: נרשם בתאריך
249 label_registered_on: נרשם בתאריך
250 label_activity: פעילות
250 label_activity: פעילות
251 label_new: חדש
251 label_new: חדש
252 label_logged_as: מחובר כ
252 label_logged_as: מחובר כ
253 label_environment: סביבה
253 label_environment: סביבה
254 label_authentication: אישור
254 label_authentication: אישור
255 label_auth_source: מצב אישור
255 label_auth_source: מצב אישור
256 label_auth_source_new: מצב אישור חדש
256 label_auth_source_new: מצב אישור חדש
257 label_auth_source_plural: מצבי אישור
257 label_auth_source_plural: מצבי אישור
258 label_subproject_plural: תת-פרויקטים
258 label_subproject_plural: תת-פרויקטים
259 label_min_max_length: אורך מינימאלי - מקסימאלי
259 label_min_max_length: אורך מינימאלי - מקסימאלי
260 label_list: רשימה
260 label_list: רשימה
261 label_date: תאריך
261 label_date: תאריך
262 label_integer: מספר שלם
262 label_integer: מספר שלם
263 label_boolean: ערך בוליאני
263 label_boolean: ערך בוליאני
264 label_string: טקסט
264 label_string: טקסט
265 label_text: טקסט ארוך
265 label_text: טקסט ארוך
266 label_attribute: תכונה
266 label_attribute: תכונה
267 label_attribute_plural: תכונות
267 label_attribute_plural: תכונות
268 label_download: הורדה %d
268 label_download: הורדה %d
269 label_download_plural: %d הורדות
269 label_download_plural: %d הורדות
270 label_no_data: אין מידע להציג
270 label_no_data: אין מידע להציג
271 label_change_status: שנה מצב
271 label_change_status: שנה מצב
272 label_history: היסטוריה
272 label_history: היסטוריה
273 label_attachment: קובץ
273 label_attachment: קובץ
274 label_attachment_new: קובץ חדש
274 label_attachment_new: קובץ חדש
275 label_attachment_delete: מחק קובץ
275 label_attachment_delete: מחק קובץ
276 label_attachment_plural: קבצים
276 label_attachment_plural: קבצים
277 label_report: דו"ח
277 label_report: דו"ח
278 label_report_plural: דו"חות
278 label_report_plural: דו"חות
279 label_news: חדשות
279 label_news: חדשות
280 label_news_new: הוסף חדשות
280 label_news_new: הוסף חדשות
281 label_news_plural: חדשות
281 label_news_plural: חדשות
282 label_news_latest: חדשות אחרונות
282 label_news_latest: חדשות אחרונות
283 label_news_view_all: צפה בכל החדשות
283 label_news_view_all: צפה בכל החדשות
284 label_change_log: דו"ח שינויים
284 label_change_log: דו"ח שינויים
285 label_settings: הגדרות
285 label_settings: הגדרות
286 label_overview: מבט רחב
286 label_overview: מבט רחב
287 label_version: גירסא
287 label_version: גירסא
288 label_version_new: גירסא חדשה
288 label_version_new: גירסא חדשה
289 label_version_plural: גירסאות
289 label_version_plural: גירסאות
290 label_confirmation: אישור
290 label_confirmation: אישור
291 label_export_to: יצא ל
291 label_export_to: יצא ל
292 label_read: קרא...
292 label_read: קרא...
293 label_public_projects: פרויקטים פומביים
293 label_public_projects: פרויקטים פומביים
294 label_open_issues: פותח
294 label_open_issues: פותח
295 label_open_issues_plural: פתוחים
295 label_open_issues_plural: פתוחים
296 label_closed_issues: סגור
296 label_closed_issues: סגור
297 label_closed_issues_plural: סגורים
297 label_closed_issues_plural: סגורים
298 label_total: סה"כ
298 label_total: סה"כ
299 label_permissions: הרשאות
299 label_permissions: הרשאות
300 label_current_status: מצב נוכחי
300 label_current_status: מצב נוכחי
301 label_new_statuses_allowed: מצבים חדשים אפשריים
301 label_new_statuses_allowed: מצבים חדשים אפשריים
302 label_all: הכל
302 label_all: הכל
303 label_none: כלום
303 label_none: כלום
304 label_next: הבא
304 label_next: הבא
305 label_previous: הקודם
305 label_previous: הקודם
306 label_used_by: בשימוש ע"י
306 label_used_by: בשימוש ע"י
307 label_details: פרטים
307 label_details: פרטים
308 label_add_note: הוסף הערה
308 label_add_note: הוסף הערה
309 label_per_page: לכל דף
309 label_per_page: לכל דף
310 label_calendar: לו"ח שנה
310 label_calendar: לו"ח שנה
311 label_months_from: חודשים מ
311 label_months_from: חודשים מ
312 label_gantt: גאנט
312 label_gantt: גאנט
313 label_internal: פנימי
313 label_internal: פנימי
314 label_last_changes: %d שינוים אחרונים
314 label_last_changes: %d שינוים אחרונים
315 label_change_view_all: צפה בכל השינוים
315 label_change_view_all: צפה בכל השינוים
316 label_personalize_page: הפוך דף זה לשלך
316 label_personalize_page: הפוך דף זה לשלך
317 label_comment: תגובה
317 label_comment: תגובה
318 label_comment_plural: תגובות
318 label_comment_plural: תגובות
319 label_comment_add: הוסף תגובה
319 label_comment_add: הוסף תגובה
320 label_comment_added: תגובה הוספה
320 label_comment_added: תגובה הוספה
321 label_comment_delete: מחק תגובות
321 label_comment_delete: מחק תגובות
322 label_query: שאילתה אישית
322 label_query: שאילתה אישית
323 label_query_plural: שאילתות אישיות
323 label_query_plural: שאילתות אישיות
324 label_query_new: שאילתה חדשה
324 label_query_new: שאילתה חדשה
325 label_filter_add: הוסף מסנן
325 label_filter_add: הוסף מסנן
326 label_filter_plural: מסננים
326 label_filter_plural: מסננים
327 label_equals: הוא
327 label_equals: הוא
328 label_not_equals: הוא לא
328 label_not_equals: הוא לא
329 label_in_less_than: בפחות מ
329 label_in_less_than: בפחות מ
330 label_in_more_than: ביותר מ
330 label_in_more_than: ביותר מ
331 label_in: ב
331 label_in: ב
332 label_today: היום
332 label_today: היום
333 label_this_week: השבוע
333 label_this_week: השבוע
334 label_less_than_ago: פחות ממספר ימים
334 label_less_than_ago: פחות ממספר ימים
335 label_more_than_ago: יותר ממספר ימים
335 label_more_than_ago: יותר ממספר ימים
336 label_ago: מספר ימים
336 label_ago: מספר ימים
337 label_contains: מכיל
337 label_contains: מכיל
338 label_not_contains: לא מכיל
338 label_not_contains: לא מכיל
339 label_day_plural: ימים
339 label_day_plural: ימים
340 label_repository: מאגר
340 label_repository: מאגר
341 label_browse: סייר
341 label_browse: סייר
342 label_modification: שינוי %d
342 label_modification: שינוי %d
343 label_modification_plural: %d שינויים
343 label_modification_plural: %d שינויים
344 label_revision: גירסא
344 label_revision: גירסא
345 label_revision_plural: גירסאות
345 label_revision_plural: גירסאות
346 label_added: הוסף
346 label_added: הוסף
347 label_modified: שונה
347 label_modified: שונה
348 label_deleted: נמחק
348 label_deleted: נמחק
349 label_latest_revision: גירסא אחרונה
349 label_latest_revision: גירסא אחרונה
350 label_latest_revision_plural: גירסאות אחרונות
350 label_latest_revision_plural: גירסאות אחרונות
351 label_view_revisions: צפה בגירסאות
351 label_view_revisions: צפה בגירסאות
352 label_max_size: גודל מקסימאלי
352 label_max_size: גודל מקסימאלי
353 label_on: 'ב'
353 label_on: 'ב'
354 label_sort_highest: הזז לראשית
354 label_sort_highest: הזז לראשית
355 label_sort_higher: הזז למעלה
355 label_sort_higher: הזז למעלה
356 label_sort_lower: הזז למטה
356 label_sort_lower: הזז למטה
357 label_sort_lowest: הזז לתחתית
357 label_sort_lowest: הזז לתחתית
358 label_roadmap: מפת הדרכים
358 label_roadmap: מפת הדרכים
359 label_roadmap_due_in: נגמר בעוד
359 label_roadmap_due_in: נגמר בעוד
360 label_roadmap_overdue: %s מאחר
360 label_roadmap_overdue: %s מאחר
361 label_roadmap_no_issues: אין נושאים לגירסא זו
361 label_roadmap_no_issues: אין נושאים לגירסא זו
362 label_search: חפש
362 label_search: חפש
363 label_result_plural: תוצאות
363 label_result_plural: תוצאות
364 label_all_words: כל המילים
364 label_all_words: כל המילים
365 label_wiki: Wiki
365 label_wiki: Wiki
366 label_wiki_edit: ערוך Wiki
366 label_wiki_edit: ערוך Wiki
367 label_wiki_edit_plural: עריכות Wiki
367 label_wiki_edit_plural: עריכות Wiki
368 label_wiki_page: דף Wiki
368 label_wiki_page: דף Wiki
369 label_wiki_page_plural: דפי Wiki
369 label_wiki_page_plural: דפי Wiki
370 label_index_by_title: סדר עך פי כותרת
370 label_index_by_title: סדר עך פי כותרת
371 label_index_by_date: סדר על פי תאריך
371 label_index_by_date: סדר על פי תאריך
372 label_current_version: גירסא נוכאית
372 label_current_version: גירסא נוכאית
373 label_preview: תצוגה מקדימה
373 label_preview: תצוגה מקדימה
374 label_feed_plural: הזנות
374 label_feed_plural: הזנות
375 label_changes_details: פירוט כל השינויים
375 label_changes_details: פירוט כל השינויים
376 label_issue_tracking: מעקב אחר נושאים
376 label_issue_tracking: מעקב אחר נושאים
377 label_spent_time: זמן שבוזבז
377 label_spent_time: זמן שבוזבז
378 label_f_hour: %.2f שעה
378 label_f_hour: %.2f שעה
379 label_f_hour_plural: %.2f שעות
379 label_f_hour_plural: %.2f שעות
380 label_time_tracking: מעקב זמנים
380 label_time_tracking: מעקב זמנים
381 label_change_plural: שינויים
381 label_change_plural: שינויים
382 label_statistics: סטטיסטיקות
382 label_statistics: סטטיסטיקות
383 label_commits_per_month: הפקדות לפי חודש
383 label_commits_per_month: הפקדות לפי חודש
384 label_commits_per_author: הפקדות לפי כותב
384 label_commits_per_author: הפקדות לפי כותב
385 label_view_diff: צפה בהבדלים
385 label_view_diff: צפה בהבדלים
386 label_diff_inline: בתוך השורה
386 label_diff_inline: בתוך השורה
387 label_diff_side_by_side: צד לצד
387 label_diff_side_by_side: צד לצד
388 label_options: אפשרויות
388 label_options: אפשרויות
389 label_copy_workflow_from: העתק זירמת עבודה מ
389 label_copy_workflow_from: העתק זירמת עבודה מ
390 label_permissions_report: דו"ח הרשאות
390 label_permissions_report: דו"ח הרשאות
391 label_watched_issues: נושאים שנצפו
391 label_watched_issues: נושאים שנצפו
392 label_related_issues: נושאים קשורים
392 label_related_issues: נושאים קשורים
393 label_applied_status: מוצב מוחל
393 label_applied_status: מוצב מוחל
394 label_loading: טוען...
394 label_loading: טוען...
395 label_relation_new: קשר חדש
395 label_relation_new: קשר חדש
396 label_relation_delete: מחק קשר
396 label_relation_delete: מחק קשר
397 label_relates_to: קשור ל
397 label_relates_to: קשור ל
398 label_duplicates: מכפיל את
398 label_duplicates: מכפיל את
399 label_blocks: חוסם את
399 label_blocks: חוסם את
400 label_blocked_by: חסום ע"י
400 label_blocked_by: חסום ע"י
401 label_precedes: מקדים את
401 label_precedes: מקדים את
402 label_follows: עוקב אחרי
402 label_follows: עוקב אחרי
403 label_end_to_start: מהתחלה לסוף
403 label_end_to_start: מהתחלה לסוף
404 label_end_to_end: מהסוף לסוף
404 label_end_to_end: מהסוף לסוף
405 label_start_to_start: מהתחלה להתחלה
405 label_start_to_start: מהתחלה להתחלה
406 label_start_to_end: מהתחלה לסוף
406 label_start_to_end: מהתחלה לסוף
407 label_stay_logged_in: השאר מחובר
407 label_stay_logged_in: השאר מחובר
408 label_disabled: מבוטל
408 label_disabled: מבוטל
409 label_show_completed_versions: הצג גירזאות גמורות
409 label_show_completed_versions: הצג גירזאות גמורות
410 label_me: אני
410 label_me: אני
411 label_board: פורום
411 label_board: פורום
412 label_board_new: פורום חדש
412 label_board_new: פורום חדש
413 label_board_plural: פורומים
413 label_board_plural: פורומים
414 label_topic_plural: נושאים
414 label_topic_plural: נושאים
415 label_message_plural: הודעות
415 label_message_plural: הודעות
416 label_message_last: הודעה אחרונה
416 label_message_last: הודעה אחרונה
417 label_message_new: הודעה חדשה
417 label_message_new: הודעה חדשה
418 label_reply_plural: השבות
418 label_reply_plural: השבות
419 label_send_information: שלח מידע על חשבון למשתמש
419 label_send_information: שלח מידע על חשבון למשתמש
420 label_year: שנה
420 label_year: שנה
421 label_month: חודש
421 label_month: חודש
422 label_week: שבוע
422 label_week: שבוע
423 label_date_from: מאת
423 label_date_from: מאת
424 label_date_to: אל
424 label_date_to: אל
425 label_language_based: מבוסס שפה
425 label_language_based: מבוסס שפה
426 label_sort_by: מין לפי %s
426 label_sort_by: מין לפי %s
427 label_send_test_email: שלח דו"ל בדיקה
427 label_send_test_email: שלח דו"ל בדיקה
428 label_feeds_access_key_created_on: מפתח הזנת RSS נוצר לפני%s
428 label_feeds_access_key_created_on: מפתח הזנת RSS נוצר לפני%s
429 label_module_plural: מודולים
429 label_module_plural: מודולים
430 label_added_time_by: הוסף על ידי %s לפני %s
430 label_added_time_by: הוסף על ידי %s לפני %s
431 label_updated_time: עודכן לפני %s
431 label_updated_time: עודכן לפני %s
432 label_jump_to_a_project: קפוץ לפרויקט...
432 label_jump_to_a_project: קפוץ לפרויקט...
433 label_file_plural: קבצים
433 label_file_plural: קבצים
434 label_changeset_plural: אוסף שינוים
434 label_changeset_plural: אוסף שינוים
435 label_default_columns: עמודת ברירת מחדל
435 label_default_columns: עמודת ברירת מחדל
436 label_no_change_option: (אין שינוים)
436 label_no_change_option: (אין שינוים)
437 label_bulk_edit_selected_issues: ערוך את הנושאים המסומנים
437 label_bulk_edit_selected_issues: ערוך את הנושאים המסומנים
438 label_theme: ערכת נושא
438 label_theme: ערכת נושא
439 label_default: ברירת מחדש
439 label_default: ברירת מחדש
440
440
441 button_login: התחבר
441 button_login: התחבר
442 button_submit: הגש
442 button_submit: הגש
443 button_save: שמור
443 button_save: שמור
444 button_check_all: בחר הכל
444 button_check_all: בחר הכל
445 button_uncheck_all: בחר כלום
445 button_uncheck_all: בחר כלום
446 button_delete: מחק
446 button_delete: מחק
447 button_create: צור
447 button_create: צור
448 button_test: בדוק
448 button_test: בדוק
449 button_edit: ערוך
449 button_edit: ערוך
450 button_add: הוסף
450 button_add: הוסף
451 button_change: שנה
451 button_change: שנה
452 button_apply: הוצא לפועל
452 button_apply: הוצא לפועל
453 button_clear: נקה
453 button_clear: נקה
454 button_lock: נעל
454 button_lock: נעל
455 button_unlock: בטל נעילה
455 button_unlock: בטל נעילה
456 button_download: הורד
456 button_download: הורד
457 button_list: רשימה
457 button_list: רשימה
458 button_view: צפה
458 button_view: צפה
459 button_move: הזז
459 button_move: הזז
460 button_back: הקודם
460 button_back: הקודם
461 button_cancel: בטח
461 button_cancel: בטח
462 button_activate: הפעל
462 button_activate: הפעל
463 button_sort: מיין
463 button_sort: מיין
464 button_log_time: זמן לוג
464 button_log_time: זמן לוג
465 button_rollback: חזור לגירסא זו
465 button_rollback: חזור לגירסא זו
466 button_watch: צפה
466 button_watch: צפה
467 button_unwatch: בטל צפיה
467 button_unwatch: בטל צפיה
468 button_reply: השב
468 button_reply: השב
469 button_archive: ארכיון
469 button_archive: ארכיון
470 button_unarchive: הוצא מהארכיון
470 button_unarchive: הוצא מהארכיון
471 button_reset: אפס
471 button_reset: אפס
472 button_rename: שנה שם
472 button_rename: שנה שם
473
473
474 status_active: פעיל
474 status_active: פעיל
475 status_registered: רשום
475 status_registered: רשום
476 status_locked: נעול
476 status_locked: נעול
477
477
478 text_select_mail_notifications: בחר פעולת שבגללן ישלח דוא"ל.
478 text_select_mail_notifications: בחר פעולת שבגללן ישלח דוא"ל.
479 text_regexp_info: כגון. ^[A-Z0-9]+$
479 text_regexp_info: כגון. ^[A-Z0-9]+$
480 text_min_max_length_info: 0 משמעו ללא הגבלות
480 text_min_max_length_info: 0 משמעו ללא הגבלות
481 text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו ?
481 text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו ?
482 text_workflow_edit: בחר תפקיד ועוקב כדי לערות את זרימת העבודה
482 text_workflow_edit: בחר תפקיד ועוקב כדי לערות את זרימת העבודה
483 text_are_you_sure: האם אתה בטוח ?
483 text_are_you_sure: האם אתה בטוח ?
484 text_journal_changed: שונה מ %s ל %s
484 text_journal_changed: שונה מ %s ל %s
485 text_journal_set_to: שונה ל %s
485 text_journal_set_to: שונה ל %s
486 text_journal_deleted: נמחק
486 text_journal_deleted: נמחק
487 text_tip_task_begin_day: מטלה המתחילה היום
487 text_tip_task_begin_day: מטלה המתחילה היום
488 text_tip_task_end_day: מטלה המסתיימת היום
488 text_tip_task_end_day: מטלה המסתיימת היום
489 text_tip_task_begin_end_day: מתלה המתחילה ומסתיימת היום
489 text_tip_task_begin_end_day: מתלה המתחילה ומסתיימת היום
490 text_project_identifier_info: 'אותיות לטיניות (a-z), מספרים ומקפים.<br />ברגע שנשמר, לא ניתן לשנות את המזהה.'
490 text_project_identifier_info: 'אותיות לטיניות (a-z), מספרים ומקפים.<br />ברגע שנשמר, לא ניתן לשנות את המזהה.'
491 text_caracters_maximum: מקסימום %d תווים.
491 text_caracters_maximum: מקסימום %d תווים.
492 text_length_between: אורך בין %d ל %d תווים.
492 text_length_between: אורך בין %d ל %d תווים.
493 text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור עוקב זה
493 text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור עוקב זה
494 text_unallowed_characters: תווים לא מורשים
494 text_unallowed_characters: תווים לא מורשים
495 text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים).
495 text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים).
496 text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדות
496 text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדות
497 text_issue_added: הנושא %s דווח (by %s).
497 text_issue_added: הנושא %s דווח (by %s).
498 text_issue_updated: הנושא %s עודכן (by %s).
498 text_issue_updated: הנושא %s עודכן (by %s).
499 text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו?
499 text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו?
500 text_issue_category_destroy_question: כמה נושאים (%d) מוצבים לקטגוריה הזו. מה ברצונך לעשות?
500 text_issue_category_destroy_question: כמה נושאים (%d) מוצבים לקטגוריה הזו. מה ברצונך לעשות?
501 text_issue_category_destroy_assignments: הסר הצבת קטגוריה
501 text_issue_category_destroy_assignments: הסר הצבת קטגוריה
502 text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים
502 text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים
503
503
504 default_role_manager: מנהל
504 default_role_manager: מנהל
505 default_role_developper: מפתח
505 default_role_developper: מפתח
506 default_role_reporter: מדווח
506 default_role_reporter: מדווח
507 default_tracker_bug: באג
507 default_tracker_bug: באג
508 default_tracker_feature: פיצ'ר
508 default_tracker_feature: פיצ'ר
509 default_tracker_support: תמיכה
509 default_tracker_support: תמיכה
510 default_issue_status_new: חדש
510 default_issue_status_new: חדש
511 default_issue_status_assigned: מוצב
511 default_issue_status_assigned: מוצב
512 default_issue_status_resolved: פתור
512 default_issue_status_resolved: פתור
513 default_issue_status_feedback: משוב
513 default_issue_status_feedback: משוב
514 default_issue_status_closed: סגור
514 default_issue_status_closed: סגור
515 default_issue_status_rejected: דחוי
515 default_issue_status_rejected: דחוי
516 default_doc_category_user: תיעוד משתמש
516 default_doc_category_user: תיעוד משתמש
517 default_doc_category_tech: תיעוד טכני
517 default_doc_category_tech: תיעוד טכני
518 default_priority_low: נמוכה
518 default_priority_low: נמוכה
519 default_priority_normal: רגילה
519 default_priority_normal: רגילה
520 default_priority_high: גהבוה
520 default_priority_high: גהבוה
521 default_priority_urgent: דחופה
521 default_priority_urgent: דחופה
522 default_priority_immediate: מידית
522 default_priority_immediate: מידית
523 default_activity_design: עיצוב
523 default_activity_design: עיצוב
524 default_activity_development: פיתוח
524 default_activity_development: פיתוח
525
525
526 enumeration_issue_priorities: עדיפות נושאים
526 enumeration_issue_priorities: עדיפות נושאים
527 enumeration_doc_categories: קטגוריות מסמכים
527 enumeration_doc_categories: קטגוריות מסמכים
528 enumeration_activities: פעילויות (מעקב אחר זמנים)
528 enumeration_activities: פעילויות (מעקב אחר זמנים)
529 label_search_titles_only: חפש בכותרות בלבד
529 label_search_titles_only: חפש בכותרות בלבד
530 label_nobody: אף אחד
530 label_nobody: אף אחד
531 button_change_password: שנה סיסמא
531 button_change_password: שנה סיסמא
532 text_user_mail_option: "בפרויקטים שלא בחרת, אתה רק תקבל התרעות על שאתה צופה או קשור אליהם (לדוגמא:נושאים שאתה היוצר שלהם או מוצבים אליך)."
532 text_user_mail_option: "בפרויקטים שלא בחרת, אתה רק תקבל התרעות על שאתה צופה או קשור אליהם (לדוגמא:נושאים שאתה היוצר שלהם או מוצבים אליך)."
533 label_user_mail_option_selected: "לכל אירוע בפרויקטים שבחרתי בלבד..."
533 label_user_mail_option_selected: "לכל אירוע בפרויקטים שבחרתי בלבד..."
534 label_user_mail_option_all: "לכל אירוע בכל הפרויקטים שלי"
534 label_user_mail_option_all: "לכל אירוע בכל הפרויקטים שלי"
535 label_user_mail_option_none: "רק לנושאים שאני צופה או קשור אליהם"
535 label_user_mail_option_none: "רק לנושאים שאני צופה או קשור אליהם"
536 setting_emails_footer: תחתית דוא"ל
536 setting_emails_footer: תחתית דוא"ל
537 label_float: צף
537 label_float: צף
538 button_copy: העתק
538 button_copy: העתק
539 mail_body_account_information_external: אתה יכול להשתמש בחשבון "%s" כדי להתחבר
539 mail_body_account_information_external: אתה יכול להשתמש בחשבון "%s" כדי להתחבר
540 mail_body_account_information: פרטי החשבון שלך
540 mail_body_account_information: פרטי החשבון שלך
541 setting_protocol: פרוטוקול
541 setting_protocol: פרוטוקול
542 label_user_mail_no_self_notified: "אני לא רוצה שיודיעו לי על שינויים שאני מבצע"
542 label_user_mail_no_self_notified: "אני לא רוצה שיודיעו לי על שינויים שאני מבצע"
543 setting_time_format: פורמט זמן
543 setting_time_format: פורמט זמן
544 label_registration_activation_by_email: הפעל חשבון באמצעות דוא"ל
544 label_registration_activation_by_email: הפעל חשבון באמצעות דוא"ל
545 mail_subject_account_activation_request: בקשת הפעלה לחשבון %s
545 mail_subject_account_activation_request: בקשת הפעלה לחשבון %s
546 mail_body_account_activation_request: 'משתמש חדש (%s) נרשם. החשבון שלו מחכה לאישור שלך:'
546 mail_body_account_activation_request: 'משתמש חדש (%s) נרשם. החשבון שלו מחכה לאישור שלך:'
547 label_registration_automatic_activation: הפעלת חשבון אוטומטית
547 label_registration_automatic_activation: הפעלת חשבון אוטומטית
548 label_registration_manual_activation: הפעלת חשבון ידנית
548 label_registration_manual_activation: הפעלת חשבון ידנית
549 notice_account_pending: "החשבון שלך נוצר ועתה מחכה לאישור מנהל המערכת."
549 notice_account_pending: "החשבון שלך נוצר ועתה מחכה לאישור מנהל המערכת."
550 field_time_zone: איזור זמן
550 field_time_zone: איזור זמן
551 text_caracters_minimum: חייב להיות לפחות באורך של %d תווים.
551 text_caracters_minimum: חייב להיות לפחות באורך של %d תווים.
552 setting_bcc_recipients: מוסתר (bcc)
552 setting_bcc_recipients: מוסתר (bcc)
553 button_annotate: הוסף תיאור מסגרת
553 button_annotate: הוסף תיאור מסגרת
554 label_issues_by: נושאים של %s
554 label_issues_by: נושאים של %s
555 field_searchable: ניתן לחיפוש
555 field_searchable: ניתן לחיפוש
556 label_display_per_page: 'לכל דף: %s'
556 label_display_per_page: 'לכל דף: %s'
557 setting_per_page_options: אפשרויות אוביקטים לפי דף
557 setting_per_page_options: אפשרויות אוביקטים לפי דף
558 label_age: גיל
558 label_age: גיל
559 notice_default_data_loaded: אפשרויות ברירת מחדל מופעלות.
559 notice_default_data_loaded: אפשרויות ברירת מחדל מופעלות.
560 text_load_default_configuration: טען את אפשרויות ברירת המחדל
560 text_load_default_configuration: טען את אפשרויות ברירת המחדל
561 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. יהיה באפשרותך לשנותו לאחר שיטען."
561 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. יהיה באפשרותך לשנותו לאחר שיטען."
562 error_can_t_load_default_data: "אפשרויות ברירת המחדל לא הצליחו להיטען: %s"
562 error_can_t_load_default_data: "אפשרויות ברירת המחדל לא הצליחו להיטען: %s"
563 button_update: עדכן
563 button_update: עדכן
564 label_change_properties: שנה מאפיינים
564 label_change_properties: שנה מאפיינים
565 label_general: כללי
565 label_general: כללי
566 label_repository_plural: מאגרים
566 label_repository_plural: מאגרים
567 label_associated_revisions: שינויים קשורים
567 label_associated_revisions: שינויים קשורים
568 setting_user_format: פורמט הצגת משתמשים
568 setting_user_format: פורמט הצגת משתמשים
569 text_status_changed_by_changeset: הוחל בסדרת השינויים %s.
569 text_status_changed_by_changeset: הוחל בסדרת השינויים %s.
570 label_more: עוד
570 label_more: עוד
571 text_issues_destroy_confirmation: 'האם את\ה בטוח שברצונך למחוק את הנושא\ים ?'
571 text_issues_destroy_confirmation: 'האם את\ה בטוח שברצונך למחוק את הנושא\ים ?'
572 label_scm: SCM
572 label_scm: SCM
573 text_select_project_modules: 'בחר מודולים להחיל על פקרויקט זה:'
573 text_select_project_modules: 'בחר מודולים להחיל על פקרויקט זה:'
574 label_issue_added: נושא הוסף
574 label_issue_added: נושא הוסף
575 label_issue_updated: נושא עודכן
575 label_issue_updated: נושא עודכן
576 label_document_added: מוסמך הוסף
576 label_document_added: מוסמך הוסף
577 label_message_posted: הודעה הוספה
577 label_message_posted: הודעה הוספה
578 label_file_added: קובץ הוסף
578 label_file_added: קובץ הוסף
579 label_news_added: חדשות הוספו
579 label_news_added: חדשות הוספו
580 project_module_boards: לוחות
580 project_module_boards: לוחות
581 project_module_issue_tracking: מעקב נושאים
581 project_module_issue_tracking: מעקב נושאים
582 project_module_wiki: Wiki
582 project_module_wiki: Wiki
583 project_module_files: קבצים
583 project_module_files: קבצים
584 project_module_documents: מסמכים
584 project_module_documents: מסמכים
585 project_module_repository: מאגר
585 project_module_repository: מאגר
586 project_module_news: חדשות
586 project_module_news: חדשות
587 project_module_time_tracking: מעקב אחר זמנים
587 project_module_time_tracking: מעקב אחר זמנים
588 text_file_repository_writable: מאגר הקבצים ניתן לכתיבה
588 text_file_repository_writable: מאגר הקבצים ניתן לכתיבה
589 text_default_administrator_account_changed: מנהל המערכת ברירת המחדל שונה
589 text_default_administrator_account_changed: מנהל המערכת ברירת המחדל שונה
590 text_rmagick_available: RMagick available (optional)
590 text_rmagick_available: RMagick available (optional)
591 button_configure: אפשרויות
591 button_configure: אפשרויות
592 label_plugins: פלאגינים
592 label_plugins: פלאגינים
593 label_ldap_authentication: אימות LDAP
593 label_ldap_authentication: אימות LDAP
594 label_downloads_abbr: D/L
594 label_downloads_abbr: D/L
595 label_this_month: החודש
595 label_this_month: החודש
596 label_last_n_days: ב-%d ימים אחרונים
596 label_last_n_days: ב-%d ימים אחרונים
597 label_all_time: תמיד
597 label_all_time: תמיד
598 label_this_year: השנה
598 label_this_year: השנה
599 label_date_range: טווח תאריכים
599 label_date_range: טווח תאריכים
600 label_last_week: שבוע שעבר
600 label_last_week: שבוע שעבר
601 label_yesterday: אתמול
601 label_yesterday: אתמול
602 label_last_month: חודש שעבר
602 label_last_month: חודש שעבר
603 label_add_another_file: הוסף עוד קובץ
603 label_add_another_file: הוסף עוד קובץ
604 label_optional_description: תיאור רשות
604 label_optional_description: תיאור רשות
605 text_destroy_time_entries_question: %.02f שעות דווחו על הנושים שאת\ה עומד\ת למחוק. מה ברצונך לעשות ?
605 text_destroy_time_entries_question: %.02f שעות דווחו על הנושים שאת\ה עומד\ת למחוק. מה ברצונך לעשות ?
606 error_issue_not_found_in_project: 'הנושאים לא נמצאו או אינם שיכים לפרויקט'
606 error_issue_not_found_in_project: 'הנושאים לא נמצאו או אינם שיכים לפרויקט'
607 text_assign_time_entries_to_project: הצב שעות שדווחו לפרויקט הזה
607 text_assign_time_entries_to_project: הצב שעות שדווחו לפרויקט הזה
608 text_destroy_time_entries: מחק שעות שדווחו
608 text_destroy_time_entries: מחק שעות שדווחו
609 text_reassign_time_entries: 'הצב מחדש שעות שדווחו לפרויקט הזה:'
609 text_reassign_time_entries: 'הצב מחדש שעות שדווחו לפרויקט הזה:'
610 setting_activity_days_default: ימים המוצגים על פעילות הפרויקט
610 setting_activity_days_default: ימים המוצגים על פעילות הפרויקט
611 label_chronological_order: בסדר כרונולוגי
611 label_chronological_order: בסדר כרונולוגי
612 field_comments_sorting: הצג הערות
612 field_comments_sorting: הצג הערות
613 label_reverse_chronological_order: בסדר כרונולוגי הפוך
613 label_reverse_chronological_order: בסדר כרונולוגי הפוך
614 label_preferences: העדפות
614 label_preferences: העדפות
615 setting_display_subprojects_issues: הצג נושאים של תת פרויקטים כברירת מחדל
615 setting_display_subprojects_issues: הצג נושאים של תת פרויקטים כברירת מחדל
616 label_overall_activity: פעילות כוללת
616 label_overall_activity: פעילות כוללת
617 setting_default_projects_public: פרויקטים חדשים הינם פומביים כברירת מחדל
617 setting_default_projects_public: פרויקטים חדשים הינם פומביים כברירת מחדל
618 error_scm_annotate: "הכניסה לא קיימת או שלא ניתן לתאר אותה."
618 error_scm_annotate: "הכניסה לא קיימת או שלא ניתן לתאר אותה."
619 label_planning: תכנון
619 label_planning: תכנון
620 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
620 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
621 label_and_its_subprojects: %s and its subprojects
621 label_and_its_subprojects: %s and its subprojects
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
623 mail_subject_reminder: "%d issue(s) due in the next days"
623 mail_subject_reminder: "%d issue(s) due in the next days"
624 text_user_wrote: '%s wrote:'
624 text_user_wrote: '%s wrote:'
625 label_duplicated_by: duplicated by
625 label_duplicated_by: duplicated by
626 setting_enabled_scm: Enabled SCM
626 setting_enabled_scm: Enabled SCM
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 label_incoming_emails: Incoming emails
630 label_generate_key: Generate a key
631 setting_mail_handler_api_enabled: Enable WS for incoming emails
632 setting_mail_handler_api_key: API key
@@ -1,629 +1,633
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Január,Február,Március,Április,Május,Június,Július,Augusztus,Szeptember,Október,November,December
4 actionview_datehelper_select_month_names: Január,Február,Március,Április,Május,Június,Július,Augusztus,Szeptember,Október,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Már,Ápr,Máj,Jún,Júl,Aug,Szept,Okt,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Már,Ápr,Máj,Jún,Júl,Aug,Szept,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 nap
8 actionview_datehelper_time_in_words_day: 1 nap
9 actionview_datehelper_time_in_words_day_plural: %d nap
9 actionview_datehelper_time_in_words_day_plural: %d nap
10 actionview_datehelper_time_in_words_hour_about: kb. 1 óra
10 actionview_datehelper_time_in_words_hour_about: kb. 1 óra
11 actionview_datehelper_time_in_words_hour_about_plural: kb. %d óra
11 actionview_datehelper_time_in_words_hour_about_plural: kb. %d óra
12 actionview_datehelper_time_in_words_hour_about_single: kb. 1 óra
12 actionview_datehelper_time_in_words_hour_about_single: kb. 1 óra
13 actionview_datehelper_time_in_words_minute: 1 perc
13 actionview_datehelper_time_in_words_minute: 1 perc
14 actionview_datehelper_time_in_words_minute_half: fél perc
14 actionview_datehelper_time_in_words_minute_half: fél perc
15 actionview_datehelper_time_in_words_minute_less_than: kevesebb, mint 1 perc
15 actionview_datehelper_time_in_words_minute_less_than: kevesebb, mint 1 perc
16 actionview_datehelper_time_in_words_minute_plural: %d perc
16 actionview_datehelper_time_in_words_minute_plural: %d perc
17 actionview_datehelper_time_in_words_minute_single: 1 perc
17 actionview_datehelper_time_in_words_minute_single: 1 perc
18 actionview_datehelper_time_in_words_second_less_than: kevesebb, mint 1 másodperc
18 actionview_datehelper_time_in_words_second_less_than: kevesebb, mint 1 másodperc
19 actionview_datehelper_time_in_words_second_less_than_plural: kevesebb, mint %d másodperc
19 actionview_datehelper_time_in_words_second_less_than_plural: kevesebb, mint %d másodperc
20 actionview_instancetag_blank_option: Kérem válasszon
20 actionview_instancetag_blank_option: Kérem válasszon
21
21
22 activerecord_error_inclusion: nem található a listában
22 activerecord_error_inclusion: nem található a listában
23 activerecord_error_exclusion: foglalt
23 activerecord_error_exclusion: foglalt
24 activerecord_error_invalid: érvénytelen
24 activerecord_error_invalid: érvénytelen
25 activerecord_error_confirmation: jóváhagyás szükséges
25 activerecord_error_confirmation: jóváhagyás szükséges
26 activerecord_error_accepted: ell kell fogadni
26 activerecord_error_accepted: ell kell fogadni
27 activerecord_error_empty: nem lehet üres
27 activerecord_error_empty: nem lehet üres
28 activerecord_error_blank: nem lehet üres
28 activerecord_error_blank: nem lehet üres
29 activerecord_error_too_long: túl hosszú
29 activerecord_error_too_long: túl hosszú
30 activerecord_error_too_short: túl rövid
30 activerecord_error_too_short: túl rövid
31 activerecord_error_wrong_length: hibás a hossza
31 activerecord_error_wrong_length: hibás a hossza
32 activerecord_error_taken: már foglalt
32 activerecord_error_taken: már foglalt
33 activerecord_error_not_a_number: nem egy szám
33 activerecord_error_not_a_number: nem egy szám
34 activerecord_error_not_a_date: nem érvényes dátum
34 activerecord_error_not_a_date: nem érvényes dátum
35 activerecord_error_greater_than_start_date: nagyobbnak kell lennie, mint az indítás dátuma
35 activerecord_error_greater_than_start_date: nagyobbnak kell lennie, mint az indítás dátuma
36 activerecord_error_not_same_project: nem azonos projekthez tartozik
36 activerecord_error_not_same_project: nem azonos projekthez tartozik
37 activerecord_error_circular_dependency: Ez a kapcsolat egy körkörös függőséget eredményez
37 activerecord_error_circular_dependency: Ez a kapcsolat egy körkörös függőséget eredményez
38
38
39 general_fmt_age: %d év
39 general_fmt_age: %d év
40 general_fmt_age_plural: %d év
40 general_fmt_age_plural: %d év
41 general_fmt_date: %%Y.%%m.%%d
41 general_fmt_date: %%Y.%%m.%%d
42 general_fmt_datetime: %%Y.%%m.%%d %%H:%%M:%%S
42 general_fmt_datetime: %%Y.%%m.%%d %%H:%%M:%%S
43 general_fmt_datetime_short: %%b %%d, %%H:%%M:%%S
43 general_fmt_datetime_short: %%b %%d, %%H:%%M:%%S
44 general_fmt_time: %%H:%%M:%%S
44 general_fmt_time: %%H:%%M:%%S
45 general_text_No: 'Nem'
45 general_text_No: 'Nem'
46 general_text_Yes: 'Igen'
46 general_text_Yes: 'Igen'
47 general_text_no: 'nem'
47 general_text_no: 'nem'
48 general_text_yes: 'igen'
48 general_text_yes: 'igen'
49 general_lang_name: 'Magyar'
49 general_lang_name: 'Magyar'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-2
51 general_csv_encoding: ISO-8859-2
52 general_pdf_encoding: ISO-8859-2
52 general_pdf_encoding: ISO-8859-2
53 general_day_names: Hétfő,Kedd,Szerda,Csütörtök,Péntek,Szombat,Vasárnap
53 general_day_names: Hétfő,Kedd,Szerda,Csütörtök,Péntek,Szombat,Vasárnap
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: A fiók adatai sikeresen frissítve.
56 notice_account_updated: A fiók adatai sikeresen frissítve.
57 notice_account_invalid_creditentials: Hibás felhasználói név, vagy jelszó
57 notice_account_invalid_creditentials: Hibás felhasználói név, vagy jelszó
58 notice_account_password_updated: A jelszó módosítása megtörtént.
58 notice_account_password_updated: A jelszó módosítása megtörtént.
59 notice_account_wrong_password: Hibás jelszó
59 notice_account_wrong_password: Hibás jelszó
60 notice_account_register_done: A fiók sikeresen létrehozva. Aktiválásához kattints az e-mailben kapott linkre
60 notice_account_register_done: A fiók sikeresen létrehozva. Aktiválásához kattints az e-mailben kapott linkre
61 notice_account_unknown_email: Ismeretlen felhasználó.
61 notice_account_unknown_email: Ismeretlen felhasználó.
62 notice_can_t_change_password: A fiók külső azonosítási forrást használ. A jelszó megváltoztatása nem lehetséges.
62 notice_can_t_change_password: A fiók külső azonosítási forrást használ. A jelszó megváltoztatása nem lehetséges.
63 notice_account_lost_email_sent: Egy e-mail üzenetben postáztunk Önnek egy leírást az új jelszó beállításáról.
63 notice_account_lost_email_sent: Egy e-mail üzenetben postáztunk Önnek egy leírást az új jelszó beállításáról.
64 notice_account_activated: Fiókját aktiváltuk. Most már be tud jelentkezni a rendszerbe.
64 notice_account_activated: Fiókját aktiváltuk. Most már be tud jelentkezni a rendszerbe.
65 notice_successful_create: Sikeres létrehozás.
65 notice_successful_create: Sikeres létrehozás.
66 notice_successful_update: Sikeres módosítás.
66 notice_successful_update: Sikeres módosítás.
67 notice_successful_delete: Sikeres törlés.
67 notice_successful_delete: Sikeres törlés.
68 notice_successful_connection: Sikeres bejelentkezés.
68 notice_successful_connection: Sikeres bejelentkezés.
69 notice_file_not_found: Az oldal, amit meg szeretne nézni nem található, vagy átkerült egy másik helyre.
69 notice_file_not_found: Az oldal, amit meg szeretne nézni nem található, vagy átkerült egy másik helyre.
70 notice_locking_conflict: Az adatot egy másik felhasználó idő közben módosította.
70 notice_locking_conflict: Az adatot egy másik felhasználó idő közben módosította.
71 notice_not_authorized: Nincs hozzáférési engedélye ehhez az oldalhoz.
71 notice_not_authorized: Nincs hozzáférési engedélye ehhez az oldalhoz.
72 notice_email_sent: Egy e-mail üzenetet küldtünk a következő címre %s
72 notice_email_sent: Egy e-mail üzenetet küldtünk a következő címre %s
73 notice_email_error: Hiba történt a levél küldése közben (%s)
73 notice_email_error: Hiba történt a levél küldése közben (%s)
74 notice_feeds_access_key_reseted: Az RSS hozzáférési kulcsát újra generáltuk.
74 notice_feeds_access_key_reseted: Az RSS hozzáférési kulcsát újra generáltuk.
75 notice_failed_to_save_issues: "Nem sikerült a %d feladat(ok) mentése a %d -ban kiválasztva: %s."
75 notice_failed_to_save_issues: "Nem sikerült a %d feladat(ok) mentése a %d -ban kiválasztva: %s."
76 notice_no_issue_selected: "Nincs feladat kiválasztva! Kérem jelölje meg melyik feladatot szeretné szerkeszteni!"
76 notice_no_issue_selected: "Nincs feladat kiválasztva! Kérem jelölje meg melyik feladatot szeretné szerkeszteni!"
77 notice_account_pending: "A fiókja létrejött, és adminisztrátori jóváhagyásra vár."
77 notice_account_pending: "A fiókja létrejött, és adminisztrátori jóváhagyásra vár."
78 notice_default_data_loaded: Az alapértelmezett konfiguráció betöltése sikeresen megtörtént.
78 notice_default_data_loaded: Az alapértelmezett konfiguráció betöltése sikeresen megtörtént.
79
79
80 error_can_t_load_default_data: "Az alapértelmezett konfiguráció betöltése nem lehetséges: %s"
80 error_can_t_load_default_data: "Az alapértelmezett konfiguráció betöltése nem lehetséges: %s"
81 error_scm_not_found: "A bejegyzés, vagy revízió nem található a tárolóban."
81 error_scm_not_found: "A bejegyzés, vagy revízió nem található a tárolóban."
82 error_scm_command_failed: "A tároló elérése közben hiba lépett fel: %s"
82 error_scm_command_failed: "A tároló elérése közben hiba lépett fel: %s"
83 error_scm_annotate: "A bejegyzés nem létezik, vagy nics jegyzetekkel ellátva."
83 error_scm_annotate: "A bejegyzés nem létezik, vagy nics jegyzetekkel ellátva."
84 error_issue_not_found_in_project: 'A feladat nem található, vagy nem ehhez a projekthez tartozik'
84 error_issue_not_found_in_project: 'A feladat nem található, vagy nem ehhez a projekthez tartozik'
85
85
86 mail_subject_lost_password: Az Ön Redmine jelszava
86 mail_subject_lost_password: Az Ön Redmine jelszava
87 mail_body_lost_password: 'A Redmine jelszó megváltoztatásához, kattintson a következő linkre:'
87 mail_body_lost_password: 'A Redmine jelszó megváltoztatásához, kattintson a következő linkre:'
88 mail_subject_register: Redmine azonosító aktiválása
88 mail_subject_register: Redmine azonosító aktiválása
89 mail_body_register: 'A Redmine azonosítója aktiválásához, kattintson a következő linkre:'
89 mail_body_register: 'A Redmine azonosítója aktiválásához, kattintson a következő linkre:'
90 mail_body_account_information_external: A "%s" azonosító használatával bejelentkezhet a Redmineba.
90 mail_body_account_information_external: A "%s" azonosító használatával bejelentkezhet a Redmineba.
91 mail_body_account_information: Az Ön Redmine azonosítójának információi
91 mail_body_account_information: Az Ön Redmine azonosítójának információi
92 mail_subject_account_activation_request: Redmine azonosító aktiválási kérelem
92 mail_subject_account_activation_request: Redmine azonosító aktiválási kérelem
93 mail_body_account_activation_request: 'Egy új felhasználó (%s) regisztrált, azonosítója jóváhasgyásra várakozik:'
93 mail_body_account_activation_request: 'Egy új felhasználó (%s) regisztrált, azonosítója jóváhasgyásra várakozik:'
94
94
95 gui_validation_error: 1 hiba
95 gui_validation_error: 1 hiba
96 gui_validation_error_plural: %d hiba
96 gui_validation_error_plural: %d hiba
97
97
98 field_name: Név
98 field_name: Név
99 field_description: Leírás
99 field_description: Leírás
100 field_summary: Összegzés
100 field_summary: Összegzés
101 field_is_required: Kötelező
101 field_is_required: Kötelező
102 field_firstname: Keresztnév
102 field_firstname: Keresztnév
103 field_lastname: Vezetéknév
103 field_lastname: Vezetéknév
104 field_mail: E-mail
104 field_mail: E-mail
105 field_filename: Fájl
105 field_filename: Fájl
106 field_filesize: Méret
106 field_filesize: Méret
107 field_downloads: Letöltések
107 field_downloads: Letöltések
108 field_author: Szerző
108 field_author: Szerző
109 field_created_on: Létrehozva
109 field_created_on: Létrehozva
110 field_updated_on: Módosítva
110 field_updated_on: Módosítva
111 field_field_format: Formátum
111 field_field_format: Formátum
112 field_is_for_all: Minden projekthez
112 field_is_for_all: Minden projekthez
113 field_possible_values: Lehetséges értékek
113 field_possible_values: Lehetséges értékek
114 field_regexp: Reguláris kifejezés
114 field_regexp: Reguláris kifejezés
115 field_min_length: Minimum hossz
115 field_min_length: Minimum hossz
116 field_max_length: Maximum hossz
116 field_max_length: Maximum hossz
117 field_value: Érték
117 field_value: Érték
118 field_category: Kategória
118 field_category: Kategória
119 field_title: Cím
119 field_title: Cím
120 field_project: Projekt
120 field_project: Projekt
121 field_issue: Feladat
121 field_issue: Feladat
122 field_status: Státusz
122 field_status: Státusz
123 field_notes: Feljegyzések
123 field_notes: Feljegyzések
124 field_is_closed: Feladat lezárva
124 field_is_closed: Feladat lezárva
125 field_is_default: Alapértelmezett érték
125 field_is_default: Alapértelmezett érték
126 field_tracker: Típus
126 field_tracker: Típus
127 field_subject: Tárgy
127 field_subject: Tárgy
128 field_due_date: Befejezés dátuma
128 field_due_date: Befejezés dátuma
129 field_assigned_to: Felelős
129 field_assigned_to: Felelős
130 field_priority: Prioritás
130 field_priority: Prioritás
131 field_fixed_version: Cél verzió
131 field_fixed_version: Cél verzió
132 field_user: Felhasználó
132 field_user: Felhasználó
133 field_role: Szerepkör
133 field_role: Szerepkör
134 field_homepage: Weboldal
134 field_homepage: Weboldal
135 field_is_public: Nyilvános
135 field_is_public: Nyilvános
136 field_parent: Szülő projekt
136 field_parent: Szülő projekt
137 field_is_in_chlog: Feladatok látszanak a változás naplóban
137 field_is_in_chlog: Feladatok látszanak a változás naplóban
138 field_is_in_roadmap: Feladatok látszanak az életútban
138 field_is_in_roadmap: Feladatok látszanak az életútban
139 field_login: Azonosító
139 field_login: Azonosító
140 field_mail_notification: E-mail értesítések
140 field_mail_notification: E-mail értesítések
141 field_admin: Adminisztrátor
141 field_admin: Adminisztrátor
142 field_last_login_on: Utolsó bejelentkezés
142 field_last_login_on: Utolsó bejelentkezés
143 field_language: Nyelv
143 field_language: Nyelv
144 field_effective_date: Dátum
144 field_effective_date: Dátum
145 field_password: Jelszó
145 field_password: Jelszó
146 field_new_password: Új jelszó
146 field_new_password: Új jelszó
147 field_password_confirmation: Megerősítés
147 field_password_confirmation: Megerősítés
148 field_version: Verzió
148 field_version: Verzió
149 field_type: Típus
149 field_type: Típus
150 field_host: Kiszolgáló
150 field_host: Kiszolgáló
151 field_port: Port
151 field_port: Port
152 field_account: Felhasználói fiók
152 field_account: Felhasználói fiók
153 field_base_dn: Base DN
153 field_base_dn: Base DN
154 field_attr_login: Bejelentkezési tulajdonság
154 field_attr_login: Bejelentkezési tulajdonság
155 field_attr_firstname: Családnév
155 field_attr_firstname: Családnév
156 field_attr_lastname: Utónév
156 field_attr_lastname: Utónév
157 field_attr_mail: E-mail
157 field_attr_mail: E-mail
158 field_onthefly: On-the-fly felhasználó létrehozás
158 field_onthefly: On-the-fly felhasználó létrehozás
159 field_start_date: Kezdés dátuma
159 field_start_date: Kezdés dátuma
160 field_done_ratio: Elkészült (%%)
160 field_done_ratio: Elkészült (%%)
161 field_auth_source: Azonosítási mód
161 field_auth_source: Azonosítási mód
162 field_hide_mail: Rejtse el az e-mail címem
162 field_hide_mail: Rejtse el az e-mail címem
163 field_comments: Megjegyzés
163 field_comments: Megjegyzés
164 field_url: URL
164 field_url: URL
165 field_start_page: Kezdőlap
165 field_start_page: Kezdőlap
166 field_subproject: Alprojekt
166 field_subproject: Alprojekt
167 field_hours: Óra
167 field_hours: Óra
168 field_activity: Aktivitás
168 field_activity: Aktivitás
169 field_spent_on: Dátum
169 field_spent_on: Dátum
170 field_identifier: Azonosító
170 field_identifier: Azonosító
171 field_is_filter: Szűrőként használható
171 field_is_filter: Szűrőként használható
172 field_issue_to_id: Kapcsolódó feladat
172 field_issue_to_id: Kapcsolódó feladat
173 field_delay: Késés
173 field_delay: Késés
174 field_assignable: Feladat rendelhető ehhez a szerepkörhöz
174 field_assignable: Feladat rendelhető ehhez a szerepkörhöz
175 field_redirect_existing_links: Létező linkek átirányítása
175 field_redirect_existing_links: Létező linkek átirányítása
176 field_estimated_hours: Becsült idő
176 field_estimated_hours: Becsült idő
177 field_column_names: Oszlopok
177 field_column_names: Oszlopok
178 field_time_zone: Időzóna
178 field_time_zone: Időzóna
179 field_searchable: Kereshető
179 field_searchable: Kereshető
180 field_default_value: Alapértelmezett érték
180 field_default_value: Alapértelmezett érték
181 field_comments_sorting: Feljegyzések megjelenítése
181 field_comments_sorting: Feljegyzések megjelenítése
182
182
183 setting_app_title: Alkalmazás címe
183 setting_app_title: Alkalmazás címe
184 setting_app_subtitle: Alkalmazás alcíme
184 setting_app_subtitle: Alkalmazás alcíme
185 setting_welcome_text: Üdvözlő üzenet
185 setting_welcome_text: Üdvözlő üzenet
186 setting_default_language: Alapértelmezett nyelv
186 setting_default_language: Alapértelmezett nyelv
187 setting_login_required: Azonosítás szükséges
187 setting_login_required: Azonosítás szükséges
188 setting_self_registration: Regisztráció
188 setting_self_registration: Regisztráció
189 setting_attachment_max_size: Melléklet max. mérete
189 setting_attachment_max_size: Melléklet max. mérete
190 setting_issues_export_limit: Feladatok exportálásának korlátja
190 setting_issues_export_limit: Feladatok exportálásának korlátja
191 setting_mail_from: Kibocsátó e-mail címe
191 setting_mail_from: Kibocsátó e-mail címe
192 setting_bcc_recipients: Titkos másolat címzet (bcc)
192 setting_bcc_recipients: Titkos másolat címzet (bcc)
193 setting_host_name: Kiszolgáló neve
193 setting_host_name: Kiszolgáló neve
194 setting_text_formatting: Szöveg formázás
194 setting_text_formatting: Szöveg formázás
195 setting_wiki_compression: Wiki történet tömörítés
195 setting_wiki_compression: Wiki történet tömörítés
196 setting_feeds_limit: RSS tartalom korlát
196 setting_feeds_limit: RSS tartalom korlát
197 setting_default_projects_public: Az új projektek alapértelmezés szerint nyilvánosak
197 setting_default_projects_public: Az új projektek alapértelmezés szerint nyilvánosak
198 setting_autofetch_changesets: Commitok automatikus lehúzása
198 setting_autofetch_changesets: Commitok automatikus lehúzása
199 setting_sys_api_enabled: WS engedélyezése a tárolók kezeléséhez
199 setting_sys_api_enabled: WS engedélyezése a tárolók kezeléséhez
200 setting_commit_ref_keywords: Hivatkozó kulcsszavak
200 setting_commit_ref_keywords: Hivatkozó kulcsszavak
201 setting_commit_fix_keywords: Javítások kulcsszavai
201 setting_commit_fix_keywords: Javítások kulcsszavai
202 setting_autologin: Automatikus bejelentkezés
202 setting_autologin: Automatikus bejelentkezés
203 setting_date_format: Dátum formátum
203 setting_date_format: Dátum formátum
204 setting_time_format: Idő formátum
204 setting_time_format: Idő formátum
205 setting_cross_project_issue_relations: Kereszt-projekt feladat hivatkozások engedélyezése
205 setting_cross_project_issue_relations: Kereszt-projekt feladat hivatkozások engedélyezése
206 setting_issue_list_default_columns: Az alapértelmezésként megjelenített oszlopok a feladat listában
206 setting_issue_list_default_columns: Az alapértelmezésként megjelenített oszlopok a feladat listában
207 setting_repositories_encodings: Tárolók kódolása
207 setting_repositories_encodings: Tárolók kódolása
208 setting_emails_footer: E-mail lábléc
208 setting_emails_footer: E-mail lábléc
209 setting_protocol: Protokol
209 setting_protocol: Protokol
210 setting_per_page_options: Objektum / oldal opciók
210 setting_per_page_options: Objektum / oldal opciók
211 setting_user_format: Felhasználók megjelenítésének formája
211 setting_user_format: Felhasználók megjelenítésének formája
212 setting_activity_days_default: Napok megjelenítése a project aktivitásnál
212 setting_activity_days_default: Napok megjelenítése a project aktivitásnál
213 setting_display_subprojects_issues: Alapértelmezettként mutassa az alprojektek feladatait is a projekteken
213 setting_display_subprojects_issues: Alapértelmezettként mutassa az alprojektek feladatait is a projekteken
214
214
215 project_module_issue_tracking: Feladat követés
215 project_module_issue_tracking: Feladat követés
216 project_module_time_tracking: Idő rögzítés
216 project_module_time_tracking: Idő rögzítés
217 project_module_news: Hírek
217 project_module_news: Hírek
218 project_module_documents: Dokumentumok
218 project_module_documents: Dokumentumok
219 project_module_files: Fájlok
219 project_module_files: Fájlok
220 project_module_wiki: Wiki
220 project_module_wiki: Wiki
221 project_module_repository: Tároló
221 project_module_repository: Tároló
222 project_module_boards: Fórumok
222 project_module_boards: Fórumok
223
223
224 label_user: Felhasználó
224 label_user: Felhasználó
225 label_user_plural: Felhasználók
225 label_user_plural: Felhasználók
226 label_user_new: Új felhasználó
226 label_user_new: Új felhasználó
227 label_project: Projekt
227 label_project: Projekt
228 label_project_new: Új projekt
228 label_project_new: Új projekt
229 label_project_plural: Projektek
229 label_project_plural: Projektek
230 label_project_all: Az összes projekt
230 label_project_all: Az összes projekt
231 label_project_latest: Legutóbbi projektek
231 label_project_latest: Legutóbbi projektek
232 label_issue: Feladat
232 label_issue: Feladat
233 label_issue_new: Új feladat
233 label_issue_new: Új feladat
234 label_issue_plural: Feladatok
234 label_issue_plural: Feladatok
235 label_issue_view_all: Minden feladat megtekintése
235 label_issue_view_all: Minden feladat megtekintése
236 label_issues_by: %s feladatai
236 label_issues_by: %s feladatai
237 label_issue_added: Feladat hozzáadva
237 label_issue_added: Feladat hozzáadva
238 label_issue_updated: Feladat frissítve
238 label_issue_updated: Feladat frissítve
239 label_document: Dokumentum
239 label_document: Dokumentum
240 label_document_new: Új dokumentum
240 label_document_new: Új dokumentum
241 label_document_plural: Dokumentumok
241 label_document_plural: Dokumentumok
242 label_document_added: Dokumentum hozzáadva
242 label_document_added: Dokumentum hozzáadva
243 label_role: Szerepkör
243 label_role: Szerepkör
244 label_role_plural: Szerepkörök
244 label_role_plural: Szerepkörök
245 label_role_new: Új szerepkör
245 label_role_new: Új szerepkör
246 label_role_and_permissions: Szerepkörök, és jogosultságok
246 label_role_and_permissions: Szerepkörök, és jogosultságok
247 label_member: Résztvevő
247 label_member: Résztvevő
248 label_member_new: Új résztvevő
248 label_member_new: Új résztvevő
249 label_member_plural: Résztvevők
249 label_member_plural: Résztvevők
250 label_tracker: Feladat típus
250 label_tracker: Feladat típus
251 label_tracker_plural: Feladat típusok
251 label_tracker_plural: Feladat típusok
252 label_tracker_new: Új feladat típus
252 label_tracker_new: Új feladat típus
253 label_workflow: Workflow
253 label_workflow: Workflow
254 label_issue_status: Feladat státusz
254 label_issue_status: Feladat státusz
255 label_issue_status_plural: Feladat státuszok
255 label_issue_status_plural: Feladat státuszok
256 label_issue_status_new: Új státusz
256 label_issue_status_new: Új státusz
257 label_issue_category: Feladat kategória
257 label_issue_category: Feladat kategória
258 label_issue_category_plural: Feladat kategóriák
258 label_issue_category_plural: Feladat kategóriák
259 label_issue_category_new: Új kategória
259 label_issue_category_new: Új kategória
260 label_custom_field: Egyéni mező
260 label_custom_field: Egyéni mező
261 label_custom_field_plural: Egyéni mezők
261 label_custom_field_plural: Egyéni mezők
262 label_custom_field_new: Új egyéni mező
262 label_custom_field_new: Új egyéni mező
263 label_enumerations: Felsorolások
263 label_enumerations: Felsorolások
264 label_enumeration_new: Új érték
264 label_enumeration_new: Új érték
265 label_information: Információ
265 label_information: Információ
266 label_information_plural: Információk
266 label_information_plural: Információk
267 label_please_login: Jelentkezzen be
267 label_please_login: Jelentkezzen be
268 label_register: Regisztráljon
268 label_register: Regisztráljon
269 label_password_lost: Elfelejtett jelszó
269 label_password_lost: Elfelejtett jelszó
270 label_home: Kezdőlap
270 label_home: Kezdőlap
271 label_my_page: Saját kezdőlapom
271 label_my_page: Saját kezdőlapom
272 label_my_account: Fiókom adatai
272 label_my_account: Fiókom adatai
273 label_my_projects: Saját projektem
273 label_my_projects: Saját projektem
274 label_administration: Adminisztráció
274 label_administration: Adminisztráció
275 label_login: Bejelentkezés
275 label_login: Bejelentkezés
276 label_logout: Kijelentkezés
276 label_logout: Kijelentkezés
277 label_help: Súgó
277 label_help: Súgó
278 label_reported_issues: Bejelentett feladatok
278 label_reported_issues: Bejelentett feladatok
279 label_assigned_to_me_issues: A nekem kiosztott feladatok
279 label_assigned_to_me_issues: A nekem kiosztott feladatok
280 label_last_login: Utolsó bejelentkezés
280 label_last_login: Utolsó bejelentkezés
281 label_last_updates: Utoljára frissítve
281 label_last_updates: Utoljára frissítve
282 label_last_updates_plural: Utoljára módosítva %d
282 label_last_updates_plural: Utoljára módosítva %d
283 label_registered_on: Regisztrált
283 label_registered_on: Regisztrált
284 label_activity: Tevékenységek
284 label_activity: Tevékenységek
285 label_overall_activity: Teljes aktivitás
285 label_overall_activity: Teljes aktivitás
286 label_new: Új
286 label_new: Új
287 label_logged_as: Bejelentkezve, mint
287 label_logged_as: Bejelentkezve, mint
288 label_environment: Környezet
288 label_environment: Környezet
289 label_authentication: Azonosítás
289 label_authentication: Azonosítás
290 label_auth_source: Azonosítás módja
290 label_auth_source: Azonosítás módja
291 label_auth_source_new: Új azonosítási mód
291 label_auth_source_new: Új azonosítási mód
292 label_auth_source_plural: Azonosítási módok
292 label_auth_source_plural: Azonosítási módok
293 label_subproject_plural: Alprojektek
293 label_subproject_plural: Alprojektek
294 label_and_its_subprojects: %s és alprojektjei
294 label_and_its_subprojects: %s és alprojektjei
295 label_min_max_length: Min - Max hossz
295 label_min_max_length: Min - Max hossz
296 label_list: Lista
296 label_list: Lista
297 label_date: Dátum
297 label_date: Dátum
298 label_integer: Egész
298 label_integer: Egész
299 label_float: Lebegőpontos
299 label_float: Lebegőpontos
300 label_boolean: Logikai
300 label_boolean: Logikai
301 label_string: Szöveg
301 label_string: Szöveg
302 label_text: Hosszú szöveg
302 label_text: Hosszú szöveg
303 label_attribute: Tulajdonság
303 label_attribute: Tulajdonság
304 label_attribute_plural: Tulajdonságok
304 label_attribute_plural: Tulajdonságok
305 label_download: %d Letöltés
305 label_download: %d Letöltés
306 label_download_plural: %d Letöltések
306 label_download_plural: %d Letöltések
307 label_no_data: Nincs megjeleníthető adat
307 label_no_data: Nincs megjeleníthető adat
308 label_change_status: Státusz módosítása
308 label_change_status: Státusz módosítása
309 label_history: Történet
309 label_history: Történet
310 label_attachment: Fájl
310 label_attachment: Fájl
311 label_attachment_new: Új fájl
311 label_attachment_new: Új fájl
312 label_attachment_delete: Fájl törlése
312 label_attachment_delete: Fájl törlése
313 label_attachment_plural: Fájlok
313 label_attachment_plural: Fájlok
314 label_file_added: Fájl hozzáadva
314 label_file_added: Fájl hozzáadva
315 label_report: Jelentés
315 label_report: Jelentés
316 label_report_plural: Jelentések
316 label_report_plural: Jelentések
317 label_news: Hírek
317 label_news: Hírek
318 label_news_new: Hír hozzáadása
318 label_news_new: Hír hozzáadása
319 label_news_plural: Hírek
319 label_news_plural: Hírek
320 label_news_latest: Legutóbbi hírek
320 label_news_latest: Legutóbbi hírek
321 label_news_view_all: Minden hír megtekintése
321 label_news_view_all: Minden hír megtekintése
322 label_news_added: Hír hozzáadva
322 label_news_added: Hír hozzáadva
323 label_change_log: Változás napló
323 label_change_log: Változás napló
324 label_settings: Beállítások
324 label_settings: Beállítások
325 label_overview: Áttekintés
325 label_overview: Áttekintés
326 label_version: Verzió
326 label_version: Verzió
327 label_version_new: Új verzió
327 label_version_new: Új verzió
328 label_version_plural: Verziók
328 label_version_plural: Verziók
329 label_confirmation: Jóváhagyás
329 label_confirmation: Jóváhagyás
330 label_export_to: Exportálás
330 label_export_to: Exportálás
331 label_read: Olvas...
331 label_read: Olvas...
332 label_public_projects: Nyilvános projektek
332 label_public_projects: Nyilvános projektek
333 label_open_issues: nyitott
333 label_open_issues: nyitott
334 label_open_issues_plural: nyitott
334 label_open_issues_plural: nyitott
335 label_closed_issues: lezárt
335 label_closed_issues: lezárt
336 label_closed_issues_plural: lezárt
336 label_closed_issues_plural: lezárt
337 label_total: Összesen
337 label_total: Összesen
338 label_permissions: Jogosultságok
338 label_permissions: Jogosultságok
339 label_current_status: Jelenlegi státusz
339 label_current_status: Jelenlegi státusz
340 label_new_statuses_allowed: Státusz változtatások engedélyei
340 label_new_statuses_allowed: Státusz változtatások engedélyei
341 label_all: mind
341 label_all: mind
342 label_none: nincs
342 label_none: nincs
343 label_nobody: senki
343 label_nobody: senki
344 label_next: Következő
344 label_next: Következő
345 label_previous: Előző
345 label_previous: Előző
346 label_used_by: Használja
346 label_used_by: Használja
347 label_details: Részletek
347 label_details: Részletek
348 label_add_note: Jegyzet hozzáadása
348 label_add_note: Jegyzet hozzáadása
349 label_per_page: Oldalanként
349 label_per_page: Oldalanként
350 label_calendar: Naptár
350 label_calendar: Naptár
351 label_months_from: hónap, kezdve
351 label_months_from: hónap, kezdve
352 label_gantt: Gantt
352 label_gantt: Gantt
353 label_internal: Belső
353 label_internal: Belső
354 label_last_changes: utolsó %d változás
354 label_last_changes: utolsó %d változás
355 label_change_view_all: Minden változás megtekintése
355 label_change_view_all: Minden változás megtekintése
356 label_personalize_page: Az oldal testreszabása
356 label_personalize_page: Az oldal testreszabása
357 label_comment: Megjegyzés
357 label_comment: Megjegyzés
358 label_comment_plural: Megjegyzések
358 label_comment_plural: Megjegyzések
359 label_comment_add: Megjegyzés hozzáadása
359 label_comment_add: Megjegyzés hozzáadása
360 label_comment_added: Megjegyzés hozzáadva
360 label_comment_added: Megjegyzés hozzáadva
361 label_comment_delete: Megjegyzések törlése
361 label_comment_delete: Megjegyzések törlése
362 label_query: Egyéni lekérdezés
362 label_query: Egyéni lekérdezés
363 label_query_plural: Egyéni lekérdezések
363 label_query_plural: Egyéni lekérdezések
364 label_query_new: Új lekérdezés
364 label_query_new: Új lekérdezés
365 label_filter_add: Szűrő hozzáadása
365 label_filter_add: Szűrő hozzáadása
366 label_filter_plural: Szűrők
366 label_filter_plural: Szűrők
367 label_equals: egyenlő
367 label_equals: egyenlő
368 label_not_equals: nem egyenlő
368 label_not_equals: nem egyenlő
369 label_in_less_than: kevesebb, mint
369 label_in_less_than: kevesebb, mint
370 label_in_more_than: több, mint
370 label_in_more_than: több, mint
371 label_in: in
371 label_in: in
372 label_today: ma
372 label_today: ma
373 label_all_time: mindenkor
373 label_all_time: mindenkor
374 label_yesterday: tegnap
374 label_yesterday: tegnap
375 label_this_week: aktuális hét
375 label_this_week: aktuális hét
376 label_last_week: múlt hét
376 label_last_week: múlt hét
377 label_last_n_days: az elmúlt %d nap
377 label_last_n_days: az elmúlt %d nap
378 label_this_month: aktuális hónap
378 label_this_month: aktuális hónap
379 label_last_month: múlt hónap
379 label_last_month: múlt hónap
380 label_this_year: aktuális év
380 label_this_year: aktuális év
381 label_date_range: Dátum intervallum
381 label_date_range: Dátum intervallum
382 label_less_than_ago: kevesebb, mint nappal ezelőtt
382 label_less_than_ago: kevesebb, mint nappal ezelőtt
383 label_more_than_ago: több, mint nappal ezelőtt
383 label_more_than_ago: több, mint nappal ezelőtt
384 label_ago: nappal ezelőtt
384 label_ago: nappal ezelőtt
385 label_contains: tartalmazza
385 label_contains: tartalmazza
386 label_not_contains: nem tartalmazza
386 label_not_contains: nem tartalmazza
387 label_day_plural: nap
387 label_day_plural: nap
388 label_repository: Tároló
388 label_repository: Tároló
389 label_repository_plural: Tárolók
389 label_repository_plural: Tárolók
390 label_browse: Tallóz
390 label_browse: Tallóz
391 label_modification: %d változás
391 label_modification: %d változás
392 label_modification_plural: %d változások
392 label_modification_plural: %d változások
393 label_revision: Revízió
393 label_revision: Revízió
394 label_revision_plural: Revíziók
394 label_revision_plural: Revíziók
395 label_associated_revisions: Kapcsolt revíziók
395 label_associated_revisions: Kapcsolt revíziók
396 label_added: hozzáadva
396 label_added: hozzáadva
397 label_modified: módosítva
397 label_modified: módosítva
398 label_deleted: törölve
398 label_deleted: törölve
399 label_latest_revision: Legutolsó revízió
399 label_latest_revision: Legutolsó revízió
400 label_latest_revision_plural: Legutolsó revíziók
400 label_latest_revision_plural: Legutolsó revíziók
401 label_view_revisions: Revíziók megtekintése
401 label_view_revisions: Revíziók megtekintése
402 label_max_size: Maximális méret
402 label_max_size: Maximális méret
403 label_on: 'összesen'
403 label_on: 'összesen'
404 label_sort_highest: Az elejére
404 label_sort_highest: Az elejére
405 label_sort_higher: Eggyel feljebb
405 label_sort_higher: Eggyel feljebb
406 label_sort_lower: Eggyel lejjebb
406 label_sort_lower: Eggyel lejjebb
407 label_sort_lowest: Az aljára
407 label_sort_lowest: Az aljára
408 label_roadmap: Életút
408 label_roadmap: Életút
409 label_roadmap_due_in: Elkészültéig várhatóan még
409 label_roadmap_due_in: Elkészültéig várhatóan még
410 label_roadmap_overdue: %s késésben
410 label_roadmap_overdue: %s késésben
411 label_roadmap_no_issues: Nincsenek feladatok ehhez a verzióhoz
411 label_roadmap_no_issues: Nincsenek feladatok ehhez a verzióhoz
412 label_search: Keresés
412 label_search: Keresés
413 label_result_plural: Találatok
413 label_result_plural: Találatok
414 label_all_words: Minden szó
414 label_all_words: Minden szó
415 label_wiki: Wiki
415 label_wiki: Wiki
416 label_wiki_edit: Wiki szerkesztés
416 label_wiki_edit: Wiki szerkesztés
417 label_wiki_edit_plural: Wiki szerkesztések
417 label_wiki_edit_plural: Wiki szerkesztések
418 label_wiki_page: Wiki oldal
418 label_wiki_page: Wiki oldal
419 label_wiki_page_plural: Wiki oldalak
419 label_wiki_page_plural: Wiki oldalak
420 label_index_by_title: Cím szerint indexelve
420 label_index_by_title: Cím szerint indexelve
421 label_index_by_date: Dátum szerint indexelve
421 label_index_by_date: Dátum szerint indexelve
422 label_current_version: Jelenlegi verzió
422 label_current_version: Jelenlegi verzió
423 label_preview: Előnézet
423 label_preview: Előnézet
424 label_feed_plural: Visszajelzések
424 label_feed_plural: Visszajelzések
425 label_changes_details: Változások részletei
425 label_changes_details: Változások részletei
426 label_issue_tracking: Feladat követés
426 label_issue_tracking: Feladat követés
427 label_spent_time: Ráfordított idő
427 label_spent_time: Ráfordított idő
428 label_f_hour: %.2f óra
428 label_f_hour: %.2f óra
429 label_f_hour_plural: %.2f óra
429 label_f_hour_plural: %.2f óra
430 label_time_tracking: Idő követés
430 label_time_tracking: Idő követés
431 label_change_plural: Változások
431 label_change_plural: Változások
432 label_statistics: Statisztikák
432 label_statistics: Statisztikák
433 label_commits_per_month: Commits havonta
433 label_commits_per_month: Commits havonta
434 label_commits_per_author: Commits szerzőnként
434 label_commits_per_author: Commits szerzőnként
435 label_view_diff: Különbségek megtekintése
435 label_view_diff: Különbségek megtekintése
436 label_diff_inline: inline
436 label_diff_inline: inline
437 label_diff_side_by_side: side by side
437 label_diff_side_by_side: side by side
438 label_options: Opciók
438 label_options: Opciók
439 label_copy_workflow_from: Workflow másolása innen
439 label_copy_workflow_from: Workflow másolása innen
440 label_permissions_report: Jogosultsági riport
440 label_permissions_report: Jogosultsági riport
441 label_watched_issues: Megfigyelt feladatok
441 label_watched_issues: Megfigyelt feladatok
442 label_related_issues: Kapcsolódó feladatok
442 label_related_issues: Kapcsolódó feladatok
443 label_applied_status: Alkalmazandó státusz
443 label_applied_status: Alkalmazandó státusz
444 label_loading: Betöltés...
444 label_loading: Betöltés...
445 label_relation_new: Új kapcsolat
445 label_relation_new: Új kapcsolat
446 label_relation_delete: Kapcsolat törlése
446 label_relation_delete: Kapcsolat törlése
447 label_relates_to: kapcsolódik
447 label_relates_to: kapcsolódik
448 label_duplicates: duplikálja
448 label_duplicates: duplikálja
449 label_blocks: zárolja
449 label_blocks: zárolja
450 label_blocked_by: zárolta
450 label_blocked_by: zárolta
451 label_precedes: megelőzi
451 label_precedes: megelőzi
452 label_follows: követi
452 label_follows: követi
453 label_end_to_start: végétől indulásig
453 label_end_to_start: végétől indulásig
454 label_end_to_end: végétől végéig
454 label_end_to_end: végétől végéig
455 label_start_to_start: indulástól indulásig
455 label_start_to_start: indulástól indulásig
456 label_start_to_end: indulástól végéig
456 label_start_to_end: indulástól végéig
457 label_stay_logged_in: Emlékezzen rám
457 label_stay_logged_in: Emlékezzen rám
458 label_disabled: kikapcsolva
458 label_disabled: kikapcsolva
459 label_show_completed_versions: A kész verziók mutatása
459 label_show_completed_versions: A kész verziók mutatása
460 label_me: én
460 label_me: én
461 label_board: Fórum
461 label_board: Fórum
462 label_board_new: Új fórum
462 label_board_new: Új fórum
463 label_board_plural: Fórumok
463 label_board_plural: Fórumok
464 label_topic_plural: Témák
464 label_topic_plural: Témák
465 label_message_plural: Üzenetek
465 label_message_plural: Üzenetek
466 label_message_last: Utolsó üzenet
466 label_message_last: Utolsó üzenet
467 label_message_new: Új üzenet
467 label_message_new: Új üzenet
468 label_message_posted: Üzenet hozzáadva
468 label_message_posted: Üzenet hozzáadva
469 label_reply_plural: Válaszok
469 label_reply_plural: Válaszok
470 label_send_information: Fiók infomációk küldése a felhasználónak
470 label_send_information: Fiók infomációk küldése a felhasználónak
471 label_year: Év
471 label_year: Év
472 label_month: Hónap
472 label_month: Hónap
473 label_week: Hét
473 label_week: Hét
474 label_date_from: 'Kezdet:'
474 label_date_from: 'Kezdet:'
475 label_date_to: 'Vége:'
475 label_date_to: 'Vége:'
476 label_language_based: A felhasználó nyelve alapján
476 label_language_based: A felhasználó nyelve alapján
477 label_sort_by: %s szerint rendezve
477 label_sort_by: %s szerint rendezve
478 label_send_test_email: Teszt e-mail küldése
478 label_send_test_email: Teszt e-mail küldése
479 label_feeds_access_key_created_on: 'RSS hozzáférési kulcs létrehozva ennyivel ezelőtt: %s'
479 label_feeds_access_key_created_on: 'RSS hozzáférési kulcs létrehozva ennyivel ezelőtt: %s'
480 label_module_plural: Modulok
480 label_module_plural: Modulok
481 label_added_time_by: '%s adta hozzá ennyivel ezelőtt: %s'
481 label_added_time_by: '%s adta hozzá ennyivel ezelőtt: %s'
482 label_updated_time: 'Utolsó módosítás ennyivel ezelőtt: %s'
482 label_updated_time: 'Utolsó módosítás ennyivel ezelőtt: %s'
483 label_jump_to_a_project: Ugrás projekthez...
483 label_jump_to_a_project: Ugrás projekthez...
484 label_file_plural: Fájlok
484 label_file_plural: Fájlok
485 label_changeset_plural: Changesets
485 label_changeset_plural: Changesets
486 label_default_columns: Alapértelmezett oszlopok
486 label_default_columns: Alapértelmezett oszlopok
487 label_no_change_option: (Nincs változás)
487 label_no_change_option: (Nincs változás)
488 label_bulk_edit_selected_issues: A kiválasztott feladatok kötegelt szerkesztése
488 label_bulk_edit_selected_issues: A kiválasztott feladatok kötegelt szerkesztése
489 label_theme: Téma
489 label_theme: Téma
490 label_default: Alapértelmezett
490 label_default: Alapértelmezett
491 label_search_titles_only: Keresés csak a címekben
491 label_search_titles_only: Keresés csak a címekben
492 label_user_mail_option_all: "Minden eseményről minden saját projektemben"
492 label_user_mail_option_all: "Minden eseményről minden saját projektemben"
493 label_user_mail_option_selected: "Minden eseményről a kiválasztott projektekben..."
493 label_user_mail_option_selected: "Minden eseményről a kiválasztott projektekben..."
494 label_user_mail_option_none: "Csak a megfigyelt dolgokról, vagy, amiben részt veszek"
494 label_user_mail_option_none: "Csak a megfigyelt dolgokról, vagy, amiben részt veszek"
495 label_user_mail_no_self_notified: "Nem kérek értesítést az általam végzett módosításokról"
495 label_user_mail_no_self_notified: "Nem kérek értesítést az általam végzett módosításokról"
496 label_registration_activation_by_email: Fiók aktiválása e-mailben
496 label_registration_activation_by_email: Fiók aktiválása e-mailben
497 label_registration_manual_activation: Manuális fiók aktiválás
497 label_registration_manual_activation: Manuális fiók aktiválás
498 label_registration_automatic_activation: Automatikus fiók aktiválás
498 label_registration_automatic_activation: Automatikus fiók aktiválás
499 label_display_per_page: 'Oldalanként: %s'
499 label_display_per_page: 'Oldalanként: %s'
500 label_age: Kor
500 label_age: Kor
501 label_change_properties: Tulajdonságok változtatása
501 label_change_properties: Tulajdonságok változtatása
502 label_general: Általános
502 label_general: Általános
503 label_more: továbbiak
503 label_more: továbbiak
504 label_scm: SCM
504 label_scm: SCM
505 label_plugins: Pluginek
505 label_plugins: Pluginek
506 label_ldap_authentication: LDAP azonosítás
506 label_ldap_authentication: LDAP azonosítás
507 label_downloads_abbr: D/L
507 label_downloads_abbr: D/L
508 label_optional_description: Opcionális leírás
508 label_optional_description: Opcionális leírás
509 label_add_another_file: Újabb fájl hozzáadása
509 label_add_another_file: Újabb fájl hozzáadása
510 label_preferences: Tulajdonságok
510 label_preferences: Tulajdonságok
511 label_chronological_order: Időrendben
511 label_chronological_order: Időrendben
512 label_reverse_chronological_order: Fordított időrendben
512 label_reverse_chronological_order: Fordított időrendben
513 label_planning: Tervezés
513 label_planning: Tervezés
514
514
515 button_login: Bejelentkezés
515 button_login: Bejelentkezés
516 button_submit: Elfogad
516 button_submit: Elfogad
517 button_save: Mentés
517 button_save: Mentés
518 button_check_all: Mindent kijelöl
518 button_check_all: Mindent kijelöl
519 button_uncheck_all: Kijelölés törlése
519 button_uncheck_all: Kijelölés törlése
520 button_delete: Töröl
520 button_delete: Töröl
521 button_create: Létrehoz
521 button_create: Létrehoz
522 button_test: Teszt
522 button_test: Teszt
523 button_edit: Szerkeszt
523 button_edit: Szerkeszt
524 button_add: Hozzáad
524 button_add: Hozzáad
525 button_change: Változtat
525 button_change: Változtat
526 button_apply: Alkalmaz
526 button_apply: Alkalmaz
527 button_clear: Töröl
527 button_clear: Töröl
528 button_lock: Zárol
528 button_lock: Zárol
529 button_unlock: Felold
529 button_unlock: Felold
530 button_download: Letöltés
530 button_download: Letöltés
531 button_list: Lista
531 button_list: Lista
532 button_view: Megnéz
532 button_view: Megnéz
533 button_move: Mozgat
533 button_move: Mozgat
534 button_back: Vissza
534 button_back: Vissza
535 button_cancel: Mégse
535 button_cancel: Mégse
536 button_activate: Aktivál
536 button_activate: Aktivál
537 button_sort: Rendezés
537 button_sort: Rendezés
538 button_log_time: Idő rögzítés
538 button_log_time: Idő rögzítés
539 button_rollback: Visszaáll erre a verzióra
539 button_rollback: Visszaáll erre a verzióra
540 button_watch: Megfigyel
540 button_watch: Megfigyel
541 button_unwatch: Megfigyelés törlése
541 button_unwatch: Megfigyelés törlése
542 button_reply: Válasz
542 button_reply: Válasz
543 button_archive: Archivál
543 button_archive: Archivál
544 button_unarchive: Dearchivál
544 button_unarchive: Dearchivál
545 button_reset: Reset
545 button_reset: Reset
546 button_rename: Átnevez
546 button_rename: Átnevez
547 button_change_password: Jelszó megváltoztatása
547 button_change_password: Jelszó megváltoztatása
548 button_copy: Másol
548 button_copy: Másol
549 button_annotate: Jegyzetel
549 button_annotate: Jegyzetel
550 button_update: Módosít
550 button_update: Módosít
551 button_configure: Konfigurál
551 button_configure: Konfigurál
552
552
553 status_active: aktív
553 status_active: aktív
554 status_registered: regisztrált
554 status_registered: regisztrált
555 status_locked: zárolt
555 status_locked: zárolt
556
556
557 text_select_mail_notifications: Válasszon eseményeket, amelyekről e-mail értesítést kell küldeni.
557 text_select_mail_notifications: Válasszon eseményeket, amelyekről e-mail értesítést kell küldeni.
558 text_regexp_info: eg. ^[A-Z0-9]+$
558 text_regexp_info: eg. ^[A-Z0-9]+$
559 text_min_max_length_info: 0 = nincs korlátozás
559 text_min_max_length_info: 0 = nincs korlátozás
560 text_project_destroy_confirmation: Biztosan törölni szeretné a projektet és vele együtt minden kapcsolódó adatot ?
560 text_project_destroy_confirmation: Biztosan törölni szeretné a projektet és vele együtt minden kapcsolódó adatot ?
561 text_subprojects_destroy_warning: 'Az alprojekt(ek): %s szintén törlésre kerülnek.'
561 text_subprojects_destroy_warning: 'Az alprojekt(ek): %s szintén törlésre kerülnek.'
562 text_workflow_edit: Válasszon egy szerepkört, és egy trackert a workflow szerkesztéséhez
562 text_workflow_edit: Válasszon egy szerepkört, és egy trackert a workflow szerkesztéséhez
563 text_are_you_sure: Biztos benne ?
563 text_are_you_sure: Biztos benne ?
564 text_journal_changed: "változás: %s volt, %s lett"
564 text_journal_changed: "változás: %s volt, %s lett"
565 text_journal_set_to: "beállítva: %s"
565 text_journal_set_to: "beállítva: %s"
566 text_journal_deleted: törölve
566 text_journal_deleted: törölve
567 text_tip_task_begin_day: a feladat ezen a napon kezdődik
567 text_tip_task_begin_day: a feladat ezen a napon kezdődik
568 text_tip_task_end_day: a feladat ezen a napon ér véget
568 text_tip_task_end_day: a feladat ezen a napon ér véget
569 text_tip_task_begin_end_day: a feladat ezen a napon kezdődik és ér véget
569 text_tip_task_begin_end_day: a feladat ezen a napon kezdődik és ér véget
570 text_project_identifier_info: 'Kis betűk (a-z), számok és kötőjel megengedett.<br />Mentés után az azonosítót megváltoztatni nem lehet.'
570 text_project_identifier_info: 'Kis betűk (a-z), számok és kötőjel megengedett.<br />Mentés után az azonosítót megváltoztatni nem lehet.'
571 text_caracters_maximum: maximum %d karakter.
571 text_caracters_maximum: maximum %d karakter.
572 text_caracters_minimum: Legkevesebb %d karakter hosszúnek kell lennie.
572 text_caracters_minimum: Legkevesebb %d karakter hosszúnek kell lennie.
573 text_length_between: Legalább %d és legfeljebb %d hosszú karakter.
573 text_length_between: Legalább %d és legfeljebb %d hosszú karakter.
574 text_tracker_no_workflow: Nincs workflow definiálva ehhez a tracker-hez
574 text_tracker_no_workflow: Nincs workflow definiálva ehhez a tracker-hez
575 text_unallowed_characters: Tiltott karakterek
575 text_unallowed_characters: Tiltott karakterek
576 text_comma_separated: Több érték megengedett (vesszővel elválasztva)
576 text_comma_separated: Több érték megengedett (vesszővel elválasztva)
577 text_issues_ref_in_commit_messages: Hivatkozás feladatokra, feladatok javítása a commit üzenetekben
577 text_issues_ref_in_commit_messages: Hivatkozás feladatokra, feladatok javítása a commit üzenetekben
578 text_issue_added: %s feladat bejelentve.
578 text_issue_added: %s feladat bejelentve.
579 text_issue_updated: %s feladat frissítve.
579 text_issue_updated: %s feladat frissítve.
580 text_wiki_destroy_confirmation: Biztosan törölni szeretné ezt a wiki-t minden tartalmával együtt ?
580 text_wiki_destroy_confirmation: Biztosan törölni szeretné ezt a wiki-t minden tartalmával együtt ?
581 text_issue_category_destroy_question: Néhány feladat (%d) hozzá van rendelve ehhez a kategóriához. Mit szeretne tenni ?
581 text_issue_category_destroy_question: Néhány feladat (%d) hozzá van rendelve ehhez a kategóriához. Mit szeretne tenni ?
582 text_issue_category_destroy_assignments: Kategória hozzárendelés megszűntetése
582 text_issue_category_destroy_assignments: Kategória hozzárendelés megszűntetése
583 text_issue_category_reassign_to: Feladatok újra hozzárendelése a kategóriához
583 text_issue_category_reassign_to: Feladatok újra hozzárendelése a kategóriához
584 text_user_mail_option: "A nem kiválasztott projektekről csak akkor kap értesítést, ha figyelést kér rá, vagy részt vesz benne (pl. Ön a létrehozó, vagy a hozzárendelő)"
584 text_user_mail_option: "A nem kiválasztott projektekről csak akkor kap értesítést, ha figyelést kér rá, vagy részt vesz benne (pl. Ön a létrehozó, vagy a hozzárendelő)"
585 text_no_configuration_data: "Szerepkörök, trackerek, feladat státuszok, és workflow adatok még nincsenek konfigurálva.\nErősen ajánlott, az alapértelmezett konfiguráció betöltése, és utána módosíthatja azt."
585 text_no_configuration_data: "Szerepkörök, trackerek, feladat státuszok, és workflow adatok még nincsenek konfigurálva.\nErősen ajánlott, az alapértelmezett konfiguráció betöltése, és utána módosíthatja azt."
586 text_load_default_configuration: Alapértelmezett konfiguráció betöltése
586 text_load_default_configuration: Alapértelmezett konfiguráció betöltése
587 text_status_changed_by_changeset: Applied in changeset %s.
587 text_status_changed_by_changeset: Applied in changeset %s.
588 text_issues_destroy_confirmation: 'Biztos benne, hogy törölni szeretné a kijelölt feladato(ka)t ?'
588 text_issues_destroy_confirmation: 'Biztos benne, hogy törölni szeretné a kijelölt feladato(ka)t ?'
589 text_select_project_modules: 'Válassza ki az engedélyezett modulokat ehhez a projekthez:'
589 text_select_project_modules: 'Válassza ki az engedélyezett modulokat ehhez a projekthez:'
590 text_default_administrator_account_changed: Alapértelmezett adminisztrátor fiók megváltoztatva
590 text_default_administrator_account_changed: Alapértelmezett adminisztrátor fiók megváltoztatva
591 text_file_repository_writable: Fájl tároló írható
591 text_file_repository_writable: Fájl tároló írható
592 text_rmagick_available: RMagick elérhető (opcionális)
592 text_rmagick_available: RMagick elérhető (opcionális)
593 text_destroy_time_entries_question: %.02f órányi munka van rögzítve a feladatokon, amiket törölni szeretne. Mit szeretne tenni ?
593 text_destroy_time_entries_question: %.02f órányi munka van rögzítve a feladatokon, amiket törölni szeretne. Mit szeretne tenni ?
594 text_destroy_time_entries: A rögzített órák törlése
594 text_destroy_time_entries: A rögzített órák törlése
595 text_assign_time_entries_to_project: A rögzített órák hozzárendelése a projekthez
595 text_assign_time_entries_to_project: A rögzített órák hozzárendelése a projekthez
596 text_reassign_time_entries: 'A rögzített órák újra hozzárendelése ehhez a feladathoz:'
596 text_reassign_time_entries: 'A rögzített órák újra hozzárendelése ehhez a feladathoz:'
597
597
598 default_role_manager: Vezető
598 default_role_manager: Vezető
599 default_role_developper: Fejlesztő
599 default_role_developper: Fejlesztő
600 default_role_reporter: Bejelentő
600 default_role_reporter: Bejelentő
601 default_tracker_bug: Hiba
601 default_tracker_bug: Hiba
602 default_tracker_feature: Fejlesztés
602 default_tracker_feature: Fejlesztés
603 default_tracker_support: Support
603 default_tracker_support: Support
604 default_issue_status_new: Új
604 default_issue_status_new: Új
605 default_issue_status_assigned: Kiosztva
605 default_issue_status_assigned: Kiosztva
606 default_issue_status_resolved: Megoldva
606 default_issue_status_resolved: Megoldva
607 default_issue_status_feedback: Visszajelzés
607 default_issue_status_feedback: Visszajelzés
608 default_issue_status_closed: Lezárt
608 default_issue_status_closed: Lezárt
609 default_issue_status_rejected: Elutasított
609 default_issue_status_rejected: Elutasított
610 default_doc_category_user: Felhasználói dokumentáció
610 default_doc_category_user: Felhasználói dokumentáció
611 default_doc_category_tech: Technikai dokumentáció
611 default_doc_category_tech: Technikai dokumentáció
612 default_priority_low: Alacsony
612 default_priority_low: Alacsony
613 default_priority_normal: Normál
613 default_priority_normal: Normál
614 default_priority_high: Magas
614 default_priority_high: Magas
615 default_priority_urgent: Sürgős
615 default_priority_urgent: Sürgős
616 default_priority_immediate: Azonnal
616 default_priority_immediate: Azonnal
617 default_activity_design: Tervezés
617 default_activity_design: Tervezés
618 default_activity_development: Fejlesztés
618 default_activity_development: Fejlesztés
619
619
620 enumeration_issue_priorities: Feladat prioritások
620 enumeration_issue_priorities: Feladat prioritások
621 enumeration_doc_categories: Dokumentum kategóriák
621 enumeration_doc_categories: Dokumentum kategóriák
622 enumeration_activities: Tevékenységek (idő rögzítés)
622 enumeration_activities: Tevékenységek (idő rögzítés)
623 mail_body_reminder: "%d neked kiosztott feladat határidős az elkövetkező %d napban:"
623 mail_body_reminder: "%d neked kiosztott feladat határidős az elkövetkező %d napban:"
624 mail_subject_reminder: "%d feladat határidős az elkövetkező napokban"
624 mail_subject_reminder: "%d feladat határidős az elkövetkező napokban"
625 text_user_wrote: '%s írta:'
625 text_user_wrote: '%s írta:'
626 label_duplicated_by: duplikálta
626 label_duplicated_by: duplikálta
627 setting_enabled_scm: Forráskódkezelő (SCM) engedélyezése
627 setting_enabled_scm: Forráskódkezelő (SCM) engedélyezése
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
630 label_incoming_emails: Incoming emails
631 label_generate_key: Generate a key
632 setting_mail_handler_api_enabled: Enable WS for incoming emails
633 setting_mail_handler_api_key: API key
@@ -1,628 +1,632
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 giorno
8 actionview_datehelper_time_in_words_day: 1 giorno
9 actionview_datehelper_time_in_words_day_plural: %d giorni
9 actionview_datehelper_time_in_words_day_plural: %d giorni
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
20 actionview_instancetag_blank_option: Scegli
20 actionview_instancetag_blank_option: Scegli
21
21
22 activerecord_error_inclusion: non è incluso nella lista
22 activerecord_error_inclusion: non è incluso nella lista
23 activerecord_error_exclusion: e' riservato
23 activerecord_error_exclusion: e' riservato
24 activerecord_error_invalid: non e' valido
24 activerecord_error_invalid: non e' valido
25 activerecord_error_confirmation: non coincide con la conferma
25 activerecord_error_confirmation: non coincide con la conferma
26 activerecord_error_accepted: deve essere accettato
26 activerecord_error_accepted: deve essere accettato
27 activerecord_error_empty: non puo' essere vuoto
27 activerecord_error_empty: non puo' essere vuoto
28 activerecord_error_blank: non puo' essere blank
28 activerecord_error_blank: non puo' essere blank
29 activerecord_error_too_long: e' troppo lungo/a
29 activerecord_error_too_long: e' troppo lungo/a
30 activerecord_error_too_short: e' troppo corto/a
30 activerecord_error_too_short: e' troppo corto/a
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
32 activerecord_error_taken: e' gia' stato/a preso/a
32 activerecord_error_taken: e' gia' stato/a preso/a
33 activerecord_error_not_a_number: non e' un numero
33 activerecord_error_not_a_number: non e' un numero
34 activerecord_error_not_a_date: non e' una data valida
34 activerecord_error_not_a_date: non e' una data valida
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Si'
46 general_text_Yes: 'Si'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'si'
48 general_text_yes: 'si'
49 general_lang_name: 'Italiano'
49 general_lang_name: 'Italiano'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
53 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: L'utenza è stata aggiornata.
56 notice_account_updated: L'utenza è stata aggiornata.
57 notice_account_invalid_creditentials: Nome utente o password non validi.
57 notice_account_invalid_creditentials: Nome utente o password non validi.
58 notice_account_password_updated: La password è stata aggiornata.
58 notice_account_password_updated: La password è stata aggiornata.
59 notice_account_wrong_password: Password errata
59 notice_account_wrong_password: Password errata
60 notice_account_register_done: L'utenza è stata creata.
60 notice_account_register_done: L'utenza è stata creata.
61 notice_account_unknown_email: Utente sconosciuto.
61 notice_account_unknown_email: Utente sconosciuto.
62 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
62 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
63 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
63 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
64 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
64 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
65 notice_successful_create: Creazione effettuata.
65 notice_successful_create: Creazione effettuata.
66 notice_successful_update: Modifica effettuata.
66 notice_successful_update: Modifica effettuata.
67 notice_successful_delete: Eliminazione effettuata.
67 notice_successful_delete: Eliminazione effettuata.
68 notice_successful_connection: Connessione effettuata.
68 notice_successful_connection: Connessione effettuata.
69 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
69 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
70 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
70 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
71 notice_not_authorized: You are not authorized to access this page.
71 notice_not_authorized: You are not authorized to access this page.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75
75
76 error_scm_not_found: "La risorsa e/o la versione non esistono nel repository."
76 error_scm_not_found: "La risorsa e/o la versione non esistono nel repository."
77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78
78
79 mail_subject_lost_password: Password %s
79 mail_subject_lost_password: Password %s
80 mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:'
80 mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:'
81 mail_subject_register: Attivazione utenza %s
81 mail_subject_register: Attivazione utenza %s
82 mail_body_register: 'Per attivare la vostra utenza, usate il seguente collegamento:'
82 mail_body_register: 'Per attivare la vostra utenza, usate il seguente collegamento:'
83
83
84 gui_validation_error: 1 errore
84 gui_validation_error: 1 errore
85 gui_validation_error_plural: %d errori
85 gui_validation_error_plural: %d errori
86
86
87 field_name: Nome
87 field_name: Nome
88 field_description: Descrizione
88 field_description: Descrizione
89 field_summary: Sommario
89 field_summary: Sommario
90 field_is_required: Richiesto
90 field_is_required: Richiesto
91 field_firstname: Nome
91 field_firstname: Nome
92 field_lastname: Cognome
92 field_lastname: Cognome
93 field_mail: Email
93 field_mail: Email
94 field_filename: File
94 field_filename: File
95 field_filesize: Dimensione
95 field_filesize: Dimensione
96 field_downloads: Download
96 field_downloads: Download
97 field_author: Autore
97 field_author: Autore
98 field_created_on: Creato
98 field_created_on: Creato
99 field_updated_on: Aggiornato
99 field_updated_on: Aggiornato
100 field_field_format: Formato
100 field_field_format: Formato
101 field_is_for_all: Per tutti i progetti
101 field_is_for_all: Per tutti i progetti
102 field_possible_values: Valori possibili
102 field_possible_values: Valori possibili
103 field_regexp: Espressione regolare
103 field_regexp: Espressione regolare
104 field_min_length: Lunghezza minima
104 field_min_length: Lunghezza minima
105 field_max_length: Lunghezza massima
105 field_max_length: Lunghezza massima
106 field_value: Valore
106 field_value: Valore
107 field_category: Categoria
107 field_category: Categoria
108 field_title: Titolo
108 field_title: Titolo
109 field_project: Progetto
109 field_project: Progetto
110 field_issue: Issue
110 field_issue: Issue
111 field_status: Stato
111 field_status: Stato
112 field_notes: Note
112 field_notes: Note
113 field_is_closed: Chiude il contesto
113 field_is_closed: Chiude il contesto
114 field_is_default: Stato predefinito
114 field_is_default: Stato predefinito
115 field_tracker: Tracker
115 field_tracker: Tracker
116 field_subject: Oggetto
116 field_subject: Oggetto
117 field_due_date: Data ultima
117 field_due_date: Data ultima
118 field_assigned_to: Assegnato a
118 field_assigned_to: Assegnato a
119 field_priority: Priorita'
119 field_priority: Priorita'
120 field_fixed_version: Target version
120 field_fixed_version: Target version
121 field_user: Utente
121 field_user: Utente
122 field_role: Ruolo
122 field_role: Ruolo
123 field_homepage: Homepage
123 field_homepage: Homepage
124 field_is_public: Pubblico
124 field_is_public: Pubblico
125 field_parent: Sottoprogetto di
125 field_parent: Sottoprogetto di
126 field_is_in_chlog: Contesti mostrati nel changelog
126 field_is_in_chlog: Contesti mostrati nel changelog
127 field_is_in_roadmap: Contesti mostrati nel roadmap
127 field_is_in_roadmap: Contesti mostrati nel roadmap
128 field_login: Login
128 field_login: Login
129 field_mail_notification: Notifiche via e-mail
129 field_mail_notification: Notifiche via e-mail
130 field_admin: Amministratore
130 field_admin: Amministratore
131 field_last_login_on: Ultima connessione
131 field_last_login_on: Ultima connessione
132 field_language: Lingua
132 field_language: Lingua
133 field_effective_date: Data
133 field_effective_date: Data
134 field_password: Password
134 field_password: Password
135 field_new_password: Nuova password
135 field_new_password: Nuova password
136 field_password_confirmation: Conferma
136 field_password_confirmation: Conferma
137 field_version: Versione
137 field_version: Versione
138 field_type: Tipo
138 field_type: Tipo
139 field_host: Host
139 field_host: Host
140 field_port: Porta
140 field_port: Porta
141 field_account: Utenza
141 field_account: Utenza
142 field_base_dn: DN base
142 field_base_dn: DN base
143 field_attr_login: Attributo login
143 field_attr_login: Attributo login
144 field_attr_firstname: Attributo nome
144 field_attr_firstname: Attributo nome
145 field_attr_lastname: Attributo cognome
145 field_attr_lastname: Attributo cognome
146 field_attr_mail: Attributo e-mail
146 field_attr_mail: Attributo e-mail
147 field_onthefly: Creazione utenza "al volo"
147 field_onthefly: Creazione utenza "al volo"
148 field_start_date: Inizio
148 field_start_date: Inizio
149 field_done_ratio: %% completo
149 field_done_ratio: %% completo
150 field_auth_source: Modalità di autenticazione
150 field_auth_source: Modalità di autenticazione
151 field_hide_mail: Nascondi il mio indirizzo di e-mail
151 field_hide_mail: Nascondi il mio indirizzo di e-mail
152 field_comments: Commento
152 field_comments: Commento
153 field_url: URL
153 field_url: URL
154 field_start_page: Pagina principale
154 field_start_page: Pagina principale
155 field_subproject: Sottoprogetto
155 field_subproject: Sottoprogetto
156 field_hours: Hours
156 field_hours: Hours
157 field_activity: Activity
157 field_activity: Activity
158 field_spent_on: Data
158 field_spent_on: Data
159 field_identifier: Identifier
159 field_identifier: Identifier
160 field_is_filter: Used as a filter
160 field_is_filter: Used as a filter
161 field_issue_to_id: Related issue
161 field_issue_to_id: Related issue
162 field_delay: Delay
162 field_delay: Delay
163 field_assignable: Issues can be assigned to this role
163 field_assignable: Issues can be assigned to this role
164 field_redirect_existing_links: Redirect existing links
164 field_redirect_existing_links: Redirect existing links
165 field_estimated_hours: Estimated time
165 field_estimated_hours: Estimated time
166 field_default_value: Stato predefinito
166 field_default_value: Stato predefinito
167
167
168 setting_app_title: Titolo applicazione
168 setting_app_title: Titolo applicazione
169 setting_app_subtitle: Sottotitolo applicazione
169 setting_app_subtitle: Sottotitolo applicazione
170 setting_welcome_text: Testo di benvenuto
170 setting_welcome_text: Testo di benvenuto
171 setting_default_language: Lingua di default
171 setting_default_language: Lingua di default
172 setting_login_required: Autenticazione richiesta
172 setting_login_required: Autenticazione richiesta
173 setting_self_registration: Auto-registrazione abilitata
173 setting_self_registration: Auto-registrazione abilitata
174 setting_attachment_max_size: Massima dimensione allegati
174 setting_attachment_max_size: Massima dimensione allegati
175 setting_issues_export_limit: Limite esportazione contesti
175 setting_issues_export_limit: Limite esportazione contesti
176 setting_mail_from: Indirizzo sorgente e-mail
176 setting_mail_from: Indirizzo sorgente e-mail
177 setting_host_name: Nome host
177 setting_host_name: Nome host
178 setting_text_formatting: Formattazione testo
178 setting_text_formatting: Formattazione testo
179 setting_wiki_compression: Compressione di storia di Wiki
179 setting_wiki_compression: Compressione di storia di Wiki
180 setting_feeds_limit: Limite contenuti del feed
180 setting_feeds_limit: Limite contenuti del feed
181 setting_autofetch_changesets: Acquisisci automaticamente le commit
181 setting_autofetch_changesets: Acquisisci automaticamente le commit
182 setting_sys_api_enabled: Abilita WS per la gestione del repository
182 setting_sys_api_enabled: Abilita WS per la gestione del repository
183 setting_commit_ref_keywords: Referencing keywords
183 setting_commit_ref_keywords: Referencing keywords
184 setting_commit_fix_keywords: Fixing keywords
184 setting_commit_fix_keywords: Fixing keywords
185 setting_autologin: Autologin
185 setting_autologin: Autologin
186 setting_date_format: Date format
186 setting_date_format: Date format
187 setting_cross_project_issue_relations: Allow cross-project issue relations
187 setting_cross_project_issue_relations: Allow cross-project issue relations
188
188
189 label_user: Utente
189 label_user: Utente
190 label_user_plural: Utenti
190 label_user_plural: Utenti
191 label_user_new: Nuovo utente
191 label_user_new: Nuovo utente
192 label_project: Progetto
192 label_project: Progetto
193 label_project_new: Nuovo progetto
193 label_project_new: Nuovo progetto
194 label_project_plural: Progetti
194 label_project_plural: Progetti
195 label_project_all: All Projects
195 label_project_all: All Projects
196 label_project_latest: Ultimi progetti registrati
196 label_project_latest: Ultimi progetti registrati
197 label_issue: Contesto
197 label_issue: Contesto
198 label_issue_new: Nuovo contesto
198 label_issue_new: Nuovo contesto
199 label_issue_plural: Contesti
199 label_issue_plural: Contesti
200 label_issue_view_all: Mostra tutti i contesti
200 label_issue_view_all: Mostra tutti i contesti
201 label_document: Documento
201 label_document: Documento
202 label_document_new: Nuovo documento
202 label_document_new: Nuovo documento
203 label_document_plural: Documenti
203 label_document_plural: Documenti
204 label_role: Ruolo
204 label_role: Ruolo
205 label_role_plural: Ruoli
205 label_role_plural: Ruoli
206 label_role_new: Nuovo ruolo
206 label_role_new: Nuovo ruolo
207 label_role_and_permissions: Ruoli e permessi
207 label_role_and_permissions: Ruoli e permessi
208 label_member: Membro
208 label_member: Membro
209 label_member_new: Nuovo membro
209 label_member_new: Nuovo membro
210 label_member_plural: Membri
210 label_member_plural: Membri
211 label_tracker: Tracker
211 label_tracker: Tracker
212 label_tracker_plural: Tracker
212 label_tracker_plural: Tracker
213 label_tracker_new: Nuovo tracker
213 label_tracker_new: Nuovo tracker
214 label_workflow: Workflow
214 label_workflow: Workflow
215 label_issue_status: Stato contesti
215 label_issue_status: Stato contesti
216 label_issue_status_plural: Stati contesto
216 label_issue_status_plural: Stati contesto
217 label_issue_status_new: Nuovo stato
217 label_issue_status_new: Nuovo stato
218 label_issue_category: Categorie contesti
218 label_issue_category: Categorie contesti
219 label_issue_category_plural: Categorie contesto
219 label_issue_category_plural: Categorie contesto
220 label_issue_category_new: Nuova categoria
220 label_issue_category_new: Nuova categoria
221 label_custom_field: Campo personalizzato
221 label_custom_field: Campo personalizzato
222 label_custom_field_plural: Campi personalizzati
222 label_custom_field_plural: Campi personalizzati
223 label_custom_field_new: Nuovo campo personalizzato
223 label_custom_field_new: Nuovo campo personalizzato
224 label_enumerations: Enumerazioni
224 label_enumerations: Enumerazioni
225 label_enumeration_new: Nuovo valore
225 label_enumeration_new: Nuovo valore
226 label_information: Informazione
226 label_information: Informazione
227 label_information_plural: Informazioni
227 label_information_plural: Informazioni
228 label_please_login: Autenticarsi
228 label_please_login: Autenticarsi
229 label_register: Registrati
229 label_register: Registrati
230 label_password_lost: Password dimenticata
230 label_password_lost: Password dimenticata
231 label_home: Home
231 label_home: Home
232 label_my_page: Pagina personale
232 label_my_page: Pagina personale
233 label_my_account: La mia utenza
233 label_my_account: La mia utenza
234 label_my_projects: I miei progetti
234 label_my_projects: I miei progetti
235 label_administration: Amministrazione
235 label_administration: Amministrazione
236 label_login: Login
236 label_login: Login
237 label_logout: Logout
237 label_logout: Logout
238 label_help: Aiuto
238 label_help: Aiuto
239 label_reported_issues: Contesti segnalati
239 label_reported_issues: Contesti segnalati
240 label_assigned_to_me_issues: I miei contesti
240 label_assigned_to_me_issues: I miei contesti
241 label_last_login: Ultimo collegamento
241 label_last_login: Ultimo collegamento
242 label_last_updates: Ultimo aggiornamento
242 label_last_updates: Ultimo aggiornamento
243 label_last_updates_plural: %d ultimo aggiornamento
243 label_last_updates_plural: %d ultimo aggiornamento
244 label_registered_on: Registrato il
244 label_registered_on: Registrato il
245 label_activity: Attività
245 label_activity: Attività
246 label_new: Nuovo
246 label_new: Nuovo
247 label_logged_as: Autenticato come
247 label_logged_as: Autenticato come
248 label_environment: Ambiente
248 label_environment: Ambiente
249 label_authentication: Autenticazione
249 label_authentication: Autenticazione
250 label_auth_source: Modalità di autenticazione
250 label_auth_source: Modalità di autenticazione
251 label_auth_source_new: Nuova modalità di autenticazione
251 label_auth_source_new: Nuova modalità di autenticazione
252 label_auth_source_plural: Modalità di autenticazione
252 label_auth_source_plural: Modalità di autenticazione
253 label_subproject_plural: Sottoprogetti
253 label_subproject_plural: Sottoprogetti
254 label_min_max_length: Lunghezza minima - massima
254 label_min_max_length: Lunghezza minima - massima
255 label_list: Elenco
255 label_list: Elenco
256 label_date: Data
256 label_date: Data
257 label_integer: Intero
257 label_integer: Intero
258 label_boolean: Booleano
258 label_boolean: Booleano
259 label_string: Testo
259 label_string: Testo
260 label_text: Testo esteso
260 label_text: Testo esteso
261 label_attribute: Attributo
261 label_attribute: Attributo
262 label_attribute_plural: Attributi
262 label_attribute_plural: Attributi
263 label_download: %d Download
263 label_download: %d Download
264 label_download_plural: %d Download
264 label_download_plural: %d Download
265 label_no_data: Nessun dato disponibile
265 label_no_data: Nessun dato disponibile
266 label_change_status: Cambia stato
266 label_change_status: Cambia stato
267 label_history: Cronologia
267 label_history: Cronologia
268 label_attachment: File
268 label_attachment: File
269 label_attachment_new: Nuovo file
269 label_attachment_new: Nuovo file
270 label_attachment_delete: Elimina file
270 label_attachment_delete: Elimina file
271 label_attachment_plural: File
271 label_attachment_plural: File
272 label_report: Report
272 label_report: Report
273 label_report_plural: Report
273 label_report_plural: Report
274 label_news: Notizia
274 label_news: Notizia
275 label_news_new: Aggiungi notizia
275 label_news_new: Aggiungi notizia
276 label_news_plural: Notizie
276 label_news_plural: Notizie
277 label_news_latest: Utime notizie
277 label_news_latest: Utime notizie
278 label_news_view_all: Tutte le notizie
278 label_news_view_all: Tutte le notizie
279 label_change_log: Change log
279 label_change_log: Change log
280 label_settings: Impostazioni
280 label_settings: Impostazioni
281 label_overview: Panoramica
281 label_overview: Panoramica
282 label_version: Versione
282 label_version: Versione
283 label_version_new: Nuova versione
283 label_version_new: Nuova versione
284 label_version_plural: Versioni
284 label_version_plural: Versioni
285 label_confirmation: Conferma
285 label_confirmation: Conferma
286 label_export_to: Esporta su
286 label_export_to: Esporta su
287 label_read: Leggi...
287 label_read: Leggi...
288 label_public_projects: Progetti pubblici
288 label_public_projects: Progetti pubblici
289 label_open_issues: aperta
289 label_open_issues: aperta
290 label_open_issues_plural: aperte
290 label_open_issues_plural: aperte
291 label_closed_issues: chiusa
291 label_closed_issues: chiusa
292 label_closed_issues_plural: chiuse
292 label_closed_issues_plural: chiuse
293 label_total: Totale
293 label_total: Totale
294 label_permissions: Permessi
294 label_permissions: Permessi
295 label_current_status: Stato attuale
295 label_current_status: Stato attuale
296 label_new_statuses_allowed: Nuovi stati possibili
296 label_new_statuses_allowed: Nuovi stati possibili
297 label_all: tutti
297 label_all: tutti
298 label_none: nessuno
298 label_none: nessuno
299 label_next: Successivo
299 label_next: Successivo
300 label_previous: Precedente
300 label_previous: Precedente
301 label_used_by: Usato da
301 label_used_by: Usato da
302 label_details: Dettagli
302 label_details: Dettagli
303 label_add_note: Aggiungi una nota
303 label_add_note: Aggiungi una nota
304 label_per_page: Per pagina
304 label_per_page: Per pagina
305 label_calendar: Calendario
305 label_calendar: Calendario
306 label_months_from: mesi da
306 label_months_from: mesi da
307 label_gantt: Gantt
307 label_gantt: Gantt
308 label_internal: Interno
308 label_internal: Interno
309 label_last_changes: ultime %d modifiche
309 label_last_changes: ultime %d modifiche
310 label_change_view_all: Tutte le modifiche
310 label_change_view_all: Tutte le modifiche
311 label_personalize_page: Personalizza la pagina
311 label_personalize_page: Personalizza la pagina
312 label_comment: Commento
312 label_comment: Commento
313 label_comment_plural: Commenti
313 label_comment_plural: Commenti
314 label_comment_add: Aggiungi un commento
314 label_comment_add: Aggiungi un commento
315 label_comment_added: Commento aggiunto
315 label_comment_added: Commento aggiunto
316 label_comment_delete: Elimina commenti
316 label_comment_delete: Elimina commenti
317 label_query: Custom query
317 label_query: Custom query
318 label_query_plural: Query personalizzate
318 label_query_plural: Query personalizzate
319 label_query_new: Nuova query
319 label_query_new: Nuova query
320 label_filter_add: Aggiungi filtro
320 label_filter_add: Aggiungi filtro
321 label_filter_plural: Filtri
321 label_filter_plural: Filtri
322 label_equals: è
322 label_equals: è
323 label_not_equals: non è
323 label_not_equals: non è
324 label_in_less_than: è minore di
324 label_in_less_than: è minore di
325 label_in_more_than: è maggiore di
325 label_in_more_than: è maggiore di
326 label_in: in
326 label_in: in
327 label_today: oggi
327 label_today: oggi
328 label_this_week: this week
328 label_this_week: this week
329 label_less_than_ago: meno di giorni fa
329 label_less_than_ago: meno di giorni fa
330 label_more_than_ago: più di giorni fa
330 label_more_than_ago: più di giorni fa
331 label_ago: giorni fa
331 label_ago: giorni fa
332 label_contains: contiene
332 label_contains: contiene
333 label_not_contains: non contiene
333 label_not_contains: non contiene
334 label_day_plural: giorni
334 label_day_plural: giorni
335 label_repository: Repository
335 label_repository: Repository
336 label_browse: Browse
336 label_browse: Browse
337 label_modification: %d modifica
337 label_modification: %d modifica
338 label_modification_plural: %d modifiche
338 label_modification_plural: %d modifiche
339 label_revision: Versione
339 label_revision: Versione
340 label_revision_plural: Versioni
340 label_revision_plural: Versioni
341 label_added: aggiunto
341 label_added: aggiunto
342 label_modified: modificato
342 label_modified: modificato
343 label_deleted: eliminato
343 label_deleted: eliminato
344 label_latest_revision: Ultima versione
344 label_latest_revision: Ultima versione
345 label_latest_revision_plural: Ultime versioni
345 label_latest_revision_plural: Ultime versioni
346 label_view_revisions: Mostra versioni
346 label_view_revisions: Mostra versioni
347 label_max_size: Dimensione massima
347 label_max_size: Dimensione massima
348 label_on: 'on'
348 label_on: 'on'
349 label_sort_highest: Sposta in cima
349 label_sort_highest: Sposta in cima
350 label_sort_higher: Su
350 label_sort_higher: Su
351 label_sort_lower: Giù
351 label_sort_lower: Giù
352 label_sort_lowest: Sposta in fondo
352 label_sort_lowest: Sposta in fondo
353 label_roadmap: Roadmap
353 label_roadmap: Roadmap
354 label_roadmap_due_in: Da ultimare in
354 label_roadmap_due_in: Da ultimare in
355 label_roadmap_overdue: %s late
355 label_roadmap_overdue: %s late
356 label_roadmap_no_issues: Nessun contesto per questa versione
356 label_roadmap_no_issues: Nessun contesto per questa versione
357 label_search: Ricerca
357 label_search: Ricerca
358 label_result_plural: Risultati
358 label_result_plural: Risultati
359 label_all_words: Tutte le parole
359 label_all_words: Tutte le parole
360 label_wiki: Wiki
360 label_wiki: Wiki
361 label_wiki_edit: Modifica Wiki
361 label_wiki_edit: Modifica Wiki
362 label_wiki_edit_plural: Modfiche wiki
362 label_wiki_edit_plural: Modfiche wiki
363 label_wiki_page: Wiki page
363 label_wiki_page: Wiki page
364 label_wiki_page_plural: Wiki pages
364 label_wiki_page_plural: Wiki pages
365 label_index_by_title: Index by title
365 label_index_by_title: Index by title
366 label_index_by_date: Index by date
366 label_index_by_date: Index by date
367 label_current_version: Versione corrente
367 label_current_version: Versione corrente
368 label_preview: Anteprima
368 label_preview: Anteprima
369 label_feed_plural: Feed
369 label_feed_plural: Feed
370 label_changes_details: Particolari di tutti i cambiamenti
370 label_changes_details: Particolari di tutti i cambiamenti
371 label_issue_tracking: tracking dei contesti
371 label_issue_tracking: tracking dei contesti
372 label_spent_time: Tempo impiegato
372 label_spent_time: Tempo impiegato
373 label_f_hour: %.2f ora
373 label_f_hour: %.2f ora
374 label_f_hour_plural: %.2f ore
374 label_f_hour_plural: %.2f ore
375 label_time_tracking: Tracking del tempo
375 label_time_tracking: Tracking del tempo
376 label_change_plural: Modifiche
376 label_change_plural: Modifiche
377 label_statistics: Statistiche
377 label_statistics: Statistiche
378 label_commits_per_month: Commit per mese
378 label_commits_per_month: Commit per mese
379 label_commits_per_author: Commit per autore
379 label_commits_per_author: Commit per autore
380 label_view_diff: mostra differenze
380 label_view_diff: mostra differenze
381 label_diff_inline: inline
381 label_diff_inline: inline
382 label_diff_side_by_side: side by side
382 label_diff_side_by_side: side by side
383 label_options: Opzioni
383 label_options: Opzioni
384 label_copy_workflow_from: Copia workflow da
384 label_copy_workflow_from: Copia workflow da
385 label_permissions_report: Report permessi
385 label_permissions_report: Report permessi
386 label_watched_issues: Watched issues
386 label_watched_issues: Watched issues
387 label_related_issues: Related issues
387 label_related_issues: Related issues
388 label_applied_status: Applied status
388 label_applied_status: Applied status
389 label_loading: Loading...
389 label_loading: Loading...
390 label_relation_new: New relation
390 label_relation_new: New relation
391 label_relation_delete: Delete relation
391 label_relation_delete: Delete relation
392 label_relates_to: related to
392 label_relates_to: related to
393 label_duplicates: duplicates
393 label_duplicates: duplicates
394 label_blocks: blocks
394 label_blocks: blocks
395 label_blocked_by: blocked by
395 label_blocked_by: blocked by
396 label_precedes: precedes
396 label_precedes: precedes
397 label_follows: follows
397 label_follows: follows
398 label_end_to_start: end to start
398 label_end_to_start: end to start
399 label_end_to_end: end to end
399 label_end_to_end: end to end
400 label_start_to_start: start to start
400 label_start_to_start: start to start
401 label_start_to_end: start to end
401 label_start_to_end: start to end
402 label_stay_logged_in: Stay logged in
402 label_stay_logged_in: Stay logged in
403 label_disabled: disabled
403 label_disabled: disabled
404 label_show_completed_versions: Show completed versions
404 label_show_completed_versions: Show completed versions
405 label_me: me
405 label_me: me
406 label_board: Forum
406 label_board: Forum
407 label_board_new: New forum
407 label_board_new: New forum
408 label_board_plural: Forums
408 label_board_plural: Forums
409 label_topic_plural: Topics
409 label_topic_plural: Topics
410 label_message_plural: Messages
410 label_message_plural: Messages
411 label_message_last: Last message
411 label_message_last: Last message
412 label_message_new: New message
412 label_message_new: New message
413 label_reply_plural: Replies
413 label_reply_plural: Replies
414 label_send_information: Send account information to the user
414 label_send_information: Send account information to the user
415 label_year: Year
415 label_year: Year
416 label_month: Month
416 label_month: Month
417 label_week: Week
417 label_week: Week
418 label_date_from: From
418 label_date_from: From
419 label_date_to: To
419 label_date_to: To
420 label_language_based: Language based
420 label_language_based: Language based
421 label_sort_by: Sort by %s
421 label_sort_by: Sort by %s
422 label_send_test_email: Send a test email
422 label_send_test_email: Send a test email
423 label_feeds_access_key_created_on: RSS access key created %s ago
423 label_feeds_access_key_created_on: RSS access key created %s ago
424 label_module_plural: Modules
424 label_module_plural: Modules
425 label_added_time_by: Added by %s %s ago
425 label_added_time_by: Added by %s %s ago
426 label_updated_time: Updated %s ago
426 label_updated_time: Updated %s ago
427 label_jump_to_a_project: Jump to a project...
427 label_jump_to_a_project: Jump to a project...
428
428
429 button_login: Login
429 button_login: Login
430 button_submit: Invia
430 button_submit: Invia
431 button_save: Salva
431 button_save: Salva
432 button_check_all: Seleziona tutti
432 button_check_all: Seleziona tutti
433 button_uncheck_all: Deseleziona tutti
433 button_uncheck_all: Deseleziona tutti
434 button_delete: Elimina
434 button_delete: Elimina
435 button_create: Crea
435 button_create: Crea
436 button_test: Test
436 button_test: Test
437 button_edit: Modifica
437 button_edit: Modifica
438 button_add: Aggiungi
438 button_add: Aggiungi
439 button_change: Modifica
439 button_change: Modifica
440 button_apply: Applica
440 button_apply: Applica
441 button_clear: Pulisci
441 button_clear: Pulisci
442 button_lock: Blocca
442 button_lock: Blocca
443 button_unlock: Sblocca
443 button_unlock: Sblocca
444 button_download: Scarica
444 button_download: Scarica
445 button_list: Elenca
445 button_list: Elenca
446 button_view: Mostra
446 button_view: Mostra
447 button_move: Sposta
447 button_move: Sposta
448 button_back: Indietro
448 button_back: Indietro
449 button_cancel: Annulla
449 button_cancel: Annulla
450 button_activate: Attiva
450 button_activate: Attiva
451 button_sort: Ordina
451 button_sort: Ordina
452 button_log_time: Registra tempo
452 button_log_time: Registra tempo
453 button_rollback: Ripristina questa versione
453 button_rollback: Ripristina questa versione
454 button_watch: Watch
454 button_watch: Watch
455 button_unwatch: Unwatch
455 button_unwatch: Unwatch
456 button_reply: Reply
456 button_reply: Reply
457 button_archive: Archive
457 button_archive: Archive
458 button_unarchive: Unarchive
458 button_unarchive: Unarchive
459 button_reset: Reset
459 button_reset: Reset
460 button_rename: Rename
460 button_rename: Rename
461
461
462 status_active: attivo
462 status_active: attivo
463 status_registered: registrato
463 status_registered: registrato
464 status_locked: bloccato
464 status_locked: bloccato
465
465
466 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
466 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
467 text_regexp_info: eg. ^[A-Z0-9]+$
467 text_regexp_info: eg. ^[A-Z0-9]+$
468 text_min_max_length_info: 0 significa nessuna restrizione
468 text_min_max_length_info: 0 significa nessuna restrizione
469 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
469 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
470 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
470 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
471 text_are_you_sure: Sei sicuro ?
471 text_are_you_sure: Sei sicuro ?
472 text_journal_changed: cambiato da %s a %s
472 text_journal_changed: cambiato da %s a %s
473 text_journal_set_to: impostato a %s
473 text_journal_set_to: impostato a %s
474 text_journal_deleted: cancellato
474 text_journal_deleted: cancellato
475 text_tip_task_begin_day: attività che iniziano in questa giornata
475 text_tip_task_begin_day: attività che iniziano in questa giornata
476 text_tip_task_end_day: attività che terminano in questa giornata
476 text_tip_task_end_day: attività che terminano in questa giornata
477 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
477 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
478 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
478 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
479 text_caracters_maximum: massimo %d caratteri.
479 text_caracters_maximum: massimo %d caratteri.
480 text_length_between: Lunghezza compresa tra %d e %d caratteri.
480 text_length_between: Lunghezza compresa tra %d e %d caratteri.
481 text_tracker_no_workflow: Nessun workflow definito per questo tracker
481 text_tracker_no_workflow: Nessun workflow definito per questo tracker
482 text_unallowed_characters: Unallowed characters
482 text_unallowed_characters: Unallowed characters
483 text_comma_separated: Multiple values allowed (comma separated).
483 text_comma_separated: Multiple values allowed (comma separated).
484 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
484 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
485 text_issue_added: "E' stata segnalata l'anomalia %s da %s."
485 text_issue_added: "E' stata segnalata l'anomalia %s da %s."
486 text_issue_updated: "L'anomalia %s e' stata aggiornata da %s."
486 text_issue_updated: "L'anomalia %s e' stata aggiornata da %s."
487 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
487 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
488 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
488 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
489 text_issue_category_destroy_assignments: Remove category assignments
489 text_issue_category_destroy_assignments: Remove category assignments
490 text_issue_category_reassign_to: Reassing issues to this category
490 text_issue_category_reassign_to: Reassing issues to this category
491
491
492 default_role_manager: Manager
492 default_role_manager: Manager
493 default_role_developper: Sviluppatore
493 default_role_developper: Sviluppatore
494 default_role_reporter: Reporter
494 default_role_reporter: Reporter
495 default_tracker_bug: Contesto
495 default_tracker_bug: Contesto
496 default_tracker_feature: Funzione
496 default_tracker_feature: Funzione
497 default_tracker_support: Supporto
497 default_tracker_support: Supporto
498 default_issue_status_new: Nuovo/a
498 default_issue_status_new: Nuovo/a
499 default_issue_status_assigned: Assegnato/a
499 default_issue_status_assigned: Assegnato/a
500 default_issue_status_resolved: Risolto/a
500 default_issue_status_resolved: Risolto/a
501 default_issue_status_feedback: Feedback
501 default_issue_status_feedback: Feedback
502 default_issue_status_closed: Chiuso/a
502 default_issue_status_closed: Chiuso/a
503 default_issue_status_rejected: Rifiutato/a
503 default_issue_status_rejected: Rifiutato/a
504 default_doc_category_user: Documentazione utente
504 default_doc_category_user: Documentazione utente
505 default_doc_category_tech: Documentazione tecnica
505 default_doc_category_tech: Documentazione tecnica
506 default_priority_low: Bassa
506 default_priority_low: Bassa
507 default_priority_normal: Normale
507 default_priority_normal: Normale
508 default_priority_high: Alta
508 default_priority_high: Alta
509 default_priority_urgent: Urgente
509 default_priority_urgent: Urgente
510 default_priority_immediate: Immediata
510 default_priority_immediate: Immediata
511 default_activity_design: Design
511 default_activity_design: Design
512 default_activity_development: Development
512 default_activity_development: Development
513
513
514 enumeration_issue_priorities: Priorità contesti
514 enumeration_issue_priorities: Priorità contesti
515 enumeration_doc_categories: Categorie di documenti
515 enumeration_doc_categories: Categorie di documenti
516 enumeration_activities: Attività (time tracking)
516 enumeration_activities: Attività (time tracking)
517 label_file_plural: Files
517 label_file_plural: Files
518 label_changeset_plural: Changesets
518 label_changeset_plural: Changesets
519 field_column_names: Columns
519 field_column_names: Columns
520 label_default_columns: Default columns
520 label_default_columns: Default columns
521 setting_issue_list_default_columns: Default columns displayed on the issue list
521 setting_issue_list_default_columns: Default columns displayed on the issue list
522 setting_repositories_encodings: Repositories encodings
522 setting_repositories_encodings: Repositories encodings
523 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
523 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
524 label_bulk_edit_selected_issues: Bulk edit selected issues
524 label_bulk_edit_selected_issues: Bulk edit selected issues
525 label_no_change_option: (No change)
525 label_no_change_option: (No change)
526 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
526 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
527 label_theme: Theme
527 label_theme: Theme
528 label_default: Default
528 label_default: Default
529 label_search_titles_only: Search titles only
529 label_search_titles_only: Search titles only
530 label_nobody: nobody
530 label_nobody: nobody
531 button_change_password: Change password
531 button_change_password: Change password
532 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
532 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
533 label_user_mail_option_selected: "For any event on the selected projects only..."
533 label_user_mail_option_selected: "For any event on the selected projects only..."
534 label_user_mail_option_all: "For any event on all my projects"
534 label_user_mail_option_all: "For any event on all my projects"
535 label_user_mail_option_none: "Only for things I watch or I'm involved in"
535 label_user_mail_option_none: "Only for things I watch or I'm involved in"
536 setting_emails_footer: Emails footer
536 setting_emails_footer: Emails footer
537 label_float: Float
537 label_float: Float
538 button_copy: Copy
538 button_copy: Copy
539 mail_body_account_information_external: You can use your "%s" account to log in.
539 mail_body_account_information_external: You can use your "%s" account to log in.
540 mail_body_account_information: Your account information
540 mail_body_account_information: Your account information
541 setting_protocol: Protocol
541 setting_protocol: Protocol
542 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
542 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
543 setting_time_format: Time format
543 setting_time_format: Time format
544 label_registration_activation_by_email: account activation by email
544 label_registration_activation_by_email: account activation by email
545 mail_subject_account_activation_request: %s account activation request
545 mail_subject_account_activation_request: %s account activation request
546 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
546 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
547 label_registration_automatic_activation: automatic account activation
547 label_registration_automatic_activation: automatic account activation
548 label_registration_manual_activation: manual account activation
548 label_registration_manual_activation: manual account activation
549 notice_account_pending: "Your account was created and is now pending administrator approval."
549 notice_account_pending: "Your account was created and is now pending administrator approval."
550 field_time_zone: Time zone
550 field_time_zone: Time zone
551 text_caracters_minimum: Must be at least %d characters long.
551 text_caracters_minimum: Must be at least %d characters long.
552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
553 button_annotate: Annotate
553 button_annotate: Annotate
554 label_issues_by: Issues by %s
554 label_issues_by: Issues by %s
555 field_searchable: Searchable
555 field_searchable: Searchable
556 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
557 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
558 label_age: Age
558 label_age: Age
559 notice_default_data_loaded: Default configuration successfully loaded.
559 notice_default_data_loaded: Default configuration successfully loaded.
560 text_load_default_configuration: Load the default configuration
560 text_load_default_configuration: Load the default configuration
561 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
561 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
562 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
562 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
563 button_update: Update
563 button_update: Update
564 label_change_properties: Change properties
564 label_change_properties: Change properties
565 label_general: General
565 label_general: General
566 label_repository_plural: Repositories
566 label_repository_plural: Repositories
567 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
568 setting_user_format: Users display format
568 setting_user_format: Users display format
569 text_status_changed_by_changeset: Applied in changeset %s.
569 text_status_changed_by_changeset: Applied in changeset %s.
570 label_more: More
570 label_more: More
571 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
571 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
572 label_scm: SCM
572 label_scm: SCM
573 text_select_project_modules: 'Select modules to enable for this project:'
573 text_select_project_modules: 'Select modules to enable for this project:'
574 label_issue_added: Issue added
574 label_issue_added: Issue added
575 label_issue_updated: Issue updated
575 label_issue_updated: Issue updated
576 label_document_added: Document added
576 label_document_added: Document added
577 label_message_posted: Message added
577 label_message_posted: Message added
578 label_file_added: File added
578 label_file_added: File added
579 label_news_added: News added
579 label_news_added: News added
580 project_module_boards: Boards
580 project_module_boards: Boards
581 project_module_issue_tracking: Issue tracking
581 project_module_issue_tracking: Issue tracking
582 project_module_wiki: Wiki
582 project_module_wiki: Wiki
583 project_module_files: Files
583 project_module_files: Files
584 project_module_documents: Documents
584 project_module_documents: Documents
585 project_module_repository: Repository
585 project_module_repository: Repository
586 project_module_news: News
586 project_module_news: News
587 project_module_time_tracking: Time tracking
587 project_module_time_tracking: Time tracking
588 text_file_repository_writable: File repository writable
588 text_file_repository_writable: File repository writable
589 text_default_administrator_account_changed: Default administrator account changed
589 text_default_administrator_account_changed: Default administrator account changed
590 text_rmagick_available: RMagick available (optional)
590 text_rmagick_available: RMagick available (optional)
591 button_configure: Configure
591 button_configure: Configure
592 label_plugins: Plugins
592 label_plugins: Plugins
593 label_ldap_authentication: LDAP authentication
593 label_ldap_authentication: LDAP authentication
594 label_downloads_abbr: D/L
594 label_downloads_abbr: D/L
595 label_this_month: this month
595 label_this_month: this month
596 label_last_n_days: last %d days
596 label_last_n_days: last %d days
597 label_all_time: all time
597 label_all_time: all time
598 label_this_year: this year
598 label_this_year: this year
599 label_date_range: Date range
599 label_date_range: Date range
600 label_last_week: last week
600 label_last_week: last week
601 label_yesterday: yesterday
601 label_yesterday: yesterday
602 label_last_month: last month
602 label_last_month: last month
603 label_add_another_file: Add another file
603 label_add_another_file: Add another file
604 label_optional_description: Optional description
604 label_optional_description: Optional description
605 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
605 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
606 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
606 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
607 text_assign_time_entries_to_project: Assign reported hours to the project
607 text_assign_time_entries_to_project: Assign reported hours to the project
608 text_destroy_time_entries: Delete reported hours
608 text_destroy_time_entries: Delete reported hours
609 text_reassign_time_entries: 'Reassign reported hours to this issue:'
609 text_reassign_time_entries: 'Reassign reported hours to this issue:'
610 setting_activity_days_default: Days displayed on project activity
610 setting_activity_days_default: Days displayed on project activity
611 label_chronological_order: In chronological order
611 label_chronological_order: In chronological order
612 field_comments_sorting: Display comments
612 field_comments_sorting: Display comments
613 label_reverse_chronological_order: In reverse chronological order
613 label_reverse_chronological_order: In reverse chronological order
614 label_preferences: Preferences
614 label_preferences: Preferences
615 setting_display_subprojects_issues: Display subprojects issues on main projects by default
615 setting_display_subprojects_issues: Display subprojects issues on main projects by default
616 label_overall_activity: Overall activity
616 label_overall_activity: Overall activity
617 setting_default_projects_public: New projects are public by default
617 setting_default_projects_public: New projects are public by default
618 error_scm_annotate: "The entry does not exist or can not be annotated."
618 error_scm_annotate: "The entry does not exist or can not be annotated."
619 label_planning: Planning
619 label_planning: Planning
620 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
620 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
621 label_and_its_subprojects: %s and its subprojects
621 label_and_its_subprojects: %s and its subprojects
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
623 mail_subject_reminder: "%d issue(s) due in the next days"
623 mail_subject_reminder: "%d issue(s) due in the next days"
624 text_user_wrote: '%s wrote:'
624 text_user_wrote: '%s wrote:'
625 label_duplicated_by: duplicated by
625 label_duplicated_by: duplicated by
626 setting_enabled_scm: Enabled SCM
626 setting_enabled_scm: Enabled SCM
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 label_incoming_emails: Incoming emails
630 label_generate_key: Generate a key
631 setting_mail_handler_api_enabled: Enable WS for incoming emails
632 setting_mail_handler_api_key: API key
@@ -1,629 +1,633
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
4 actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
5 actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
5 actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_select_year_suffix:
8 actionview_datehelper_select_year_suffix:
9 actionview_datehelper_time_in_words_day: 1日
9 actionview_datehelper_time_in_words_day: 1日
10 actionview_datehelper_time_in_words_day_plural: %d日
10 actionview_datehelper_time_in_words_day_plural: %d日
11 actionview_datehelper_time_in_words_hour_about: 約1時間
11 actionview_datehelper_time_in_words_hour_about: 約1時間
12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
14 actionview_datehelper_time_in_words_minute: 1分
14 actionview_datehelper_time_in_words_minute: 1分
15 actionview_datehelper_time_in_words_minute_half: 約30秒
15 actionview_datehelper_time_in_words_minute_half: 約30秒
16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
17 actionview_datehelper_time_in_words_minute_plural: %d分
17 actionview_datehelper_time_in_words_minute_plural: %d分
18 actionview_datehelper_time_in_words_minute_single: 1分
18 actionview_datehelper_time_in_words_minute_single: 1分
19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
21 actionview_instancetag_blank_option: 選んでください
21 actionview_instancetag_blank_option: 選んでください
22
22
23 activerecord_error_inclusion: がリストに含まれていません
23 activerecord_error_inclusion: がリストに含まれていません
24 activerecord_error_exclusion: が予約されています
24 activerecord_error_exclusion: が予約されています
25 activerecord_error_invalid: が無効です
25 activerecord_error_invalid: が無効です
26 activerecord_error_confirmation: 確認のパスワードと合っていません
26 activerecord_error_confirmation: 確認のパスワードと合っていません
27 activerecord_error_accepted: を承諾してください
27 activerecord_error_accepted: を承諾してください
28 activerecord_error_empty: が空です
28 activerecord_error_empty: が空です
29 activerecord_error_blank: が空白です
29 activerecord_error_blank: が空白です
30 activerecord_error_too_long: が長すぎます
30 activerecord_error_too_long: が長すぎます
31 activerecord_error_too_short: が短かすぎます
31 activerecord_error_too_short: が短かすぎます
32 activerecord_error_wrong_length: の長さが間違っています
32 activerecord_error_wrong_length: の長さが間違っています
33 activerecord_error_taken: はすでに登録されています
33 activerecord_error_taken: はすでに登録されています
34 activerecord_error_not_a_number: が数字ではありません
34 activerecord_error_not_a_number: が数字ではありません
35 activerecord_error_not_a_date: の日付が間違っています
35 activerecord_error_not_a_date: の日付が間違っています
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
37 activerecord_error_not_same_project: 同じプロジェクトに属していません
37 activerecord_error_not_same_project: 同じプロジェクトに属していません
38 activerecord_error_circular_dependency: この関係では、循環依存になります
38 activerecord_error_circular_dependency: この関係では、循環依存になります
39
39
40 general_fmt_age: %d歳
40 general_fmt_age: %d歳
41 general_fmt_age_plural: %d歳
41 general_fmt_age_plural: %d歳
42 general_fmt_date: %%Y年%%m月%%d日
42 general_fmt_date: %%Y年%%m月%%d日
43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
45 general_fmt_time: %%H:%%M %%p
45 general_fmt_time: %%H:%%M %%p
46 general_text_No: 'いいえ'
46 general_text_No: 'いいえ'
47 general_text_Yes: 'はい'
47 general_text_Yes: 'はい'
48 general_text_no: 'いいえ'
48 general_text_no: 'いいえ'
49 general_text_yes: 'はい'
49 general_text_yes: 'はい'
50 general_lang_name: 'Japanese (日本語)'
50 general_lang_name: 'Japanese (日本語)'
51 general_csv_separator: ','
51 general_csv_separator: ','
52 general_csv_encoding: SJIS
52 general_csv_encoding: SJIS
53 general_pdf_encoding: UTF-8
53 general_pdf_encoding: UTF-8
54 general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日
54 general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日
55 general_first_day_of_week: '7'
55 general_first_day_of_week: '7'
56
56
57 notice_account_updated: アカウントが更新されました。
57 notice_account_updated: アカウントが更新されました。
58 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
58 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
59 notice_account_password_updated: パスワードが更新されました。
59 notice_account_password_updated: パスワードが更新されました。
60 notice_account_wrong_password: パスワードが違います
60 notice_account_wrong_password: パスワードが違います
61 notice_account_register_done: アカウントが作成されました。
61 notice_account_register_done: アカウントが作成されました。
62 notice_account_unknown_email: ユーザが存在しません。
62 notice_account_unknown_email: ユーザが存在しません。
63 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
63 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
64 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
64 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
65 notice_account_activated: アカウントが有効になりました。ログインできます。
65 notice_account_activated: アカウントが有効になりました。ログインできます。
66 notice_successful_create: 作成しました。
66 notice_successful_create: 作成しました。
67 notice_successful_update: 更新しました。
67 notice_successful_update: 更新しました。
68 notice_successful_delete: 削除しました。
68 notice_successful_delete: 削除しました。
69 notice_successful_connection: 接続しました。
69 notice_successful_connection: 接続しました。
70 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
70 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
71 notice_locking_conflict: 別のユーザがデータを更新しています。
71 notice_locking_conflict: 別のユーザがデータを更新しています。
72 notice_not_authorized: このページにアクセスするには認証が必要です。
72 notice_not_authorized: このページにアクセスするには認証が必要です。
73 notice_email_sent: %s宛にメールを送信しました。
73 notice_email_sent: %s宛にメールを送信しました。
74 notice_email_error: メール送信中にエラーが発生しました(%s)
74 notice_email_error: メール送信中にエラーが発生しました(%s)
75 notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。
75 notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。
76
76
77 error_scm_not_found: リポジトリに、エントリ/リビジョンが存在しません。
77 error_scm_not_found: リポジトリに、エントリ/リビジョンが存在しません。
78 error_scm_command_failed: "リポジトリへアクセスしようとしてエラーになりました: %s"
78 error_scm_command_failed: "リポジトリへアクセスしようとしてエラーになりました: %s"
79
79
80 mail_subject_lost_password: %sパスワード
80 mail_subject_lost_password: %sパスワード
81 mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:'
81 mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:'
82 mail_subject_register: %sアカウントのアクティブ化
82 mail_subject_register: %sアカウントのアクティブ化
83 mail_body_register: 'アカウントをアクティブにするには、以下のリンクをたどってください:'
83 mail_body_register: 'アカウントをアクティブにするには、以下のリンクをたどってください:'
84
84
85 gui_validation_error: 1件のエラー
85 gui_validation_error: 1件のエラー
86 gui_validation_error_plural: %d件のエラー
86 gui_validation_error_plural: %d件のエラー
87
87
88 field_name: 名前
88 field_name: 名前
89 field_description: 説明
89 field_description: 説明
90 field_summary: サマリ
90 field_summary: サマリ
91 field_is_required: 必須
91 field_is_required: 必須
92 field_firstname: 名前
92 field_firstname: 名前
93 field_lastname: 苗字
93 field_lastname: 苗字
94 field_mail: メールアドレス
94 field_mail: メールアドレス
95 field_filename: ファイル
95 field_filename: ファイル
96 field_filesize: サイズ
96 field_filesize: サイズ
97 field_downloads: ダウンロード
97 field_downloads: ダウンロード
98 field_author: 起票者
98 field_author: 起票者
99 field_created_on: 作成日
99 field_created_on: 作成日
100 field_updated_on: 更新日
100 field_updated_on: 更新日
101 field_field_format: 書式
101 field_field_format: 書式
102 field_is_for_all: 全プロジェクト向け
102 field_is_for_all: 全プロジェクト向け
103 field_possible_values: 選択肢
103 field_possible_values: 選択肢
104 field_regexp: 正規表現
104 field_regexp: 正規表現
105 field_min_length: 最小値
105 field_min_length: 最小値
106 field_max_length: 最大値
106 field_max_length: 最大値
107 field_value:
107 field_value:
108 field_category: カテゴリ
108 field_category: カテゴリ
109 field_title: タイトル
109 field_title: タイトル
110 field_project: プロジェクト
110 field_project: プロジェクト
111 field_issue: チケット
111 field_issue: チケット
112 field_status: ステータス
112 field_status: ステータス
113 field_notes: 注記
113 field_notes: 注記
114 field_is_closed: 終了したチケット
114 field_is_closed: 終了したチケット
115 field_is_default: デフォルトのステータス
115 field_is_default: デフォルトのステータス
116 field_tracker: トラッカー
116 field_tracker: トラッカー
117 field_subject: 題名
117 field_subject: 題名
118 field_due_date: 期限日
118 field_due_date: 期限日
119 field_assigned_to: 担当者
119 field_assigned_to: 担当者
120 field_priority: 優先度
120 field_priority: 優先度
121 field_fixed_version: Target version
121 field_fixed_version: Target version
122 field_user: ユーザ
122 field_user: ユーザ
123 field_role: 役割
123 field_role: 役割
124 field_homepage: ホームページ
124 field_homepage: ホームページ
125 field_is_public: 公開
125 field_is_public: 公開
126 field_parent: 親プロジェクト名
126 field_parent: 親プロジェクト名
127 field_is_in_chlog: 変更記録に表示されているチケット
127 field_is_in_chlog: 変更記録に表示されているチケット
128 field_is_in_roadmap: ロードマップに表示されているチケット
128 field_is_in_roadmap: ロードマップに表示されているチケット
129 field_login: ログイン
129 field_login: ログイン
130 field_mail_notification: メール通知
130 field_mail_notification: メール通知
131 field_admin: 管理者
131 field_admin: 管理者
132 field_last_login_on: 最終接続日
132 field_last_login_on: 最終接続日
133 field_language: 言語
133 field_language: 言語
134 field_effective_date: 日付
134 field_effective_date: 日付
135 field_password: パスワード
135 field_password: パスワード
136 field_new_password: 新しいパスワード
136 field_new_password: 新しいパスワード
137 field_password_confirmation: パスワードの確認
137 field_password_confirmation: パスワードの確認
138 field_version: バージョン
138 field_version: バージョン
139 field_type: タイプ
139 field_type: タイプ
140 field_host: ホスト
140 field_host: ホスト
141 field_port: ポート
141 field_port: ポート
142 field_account: アカウント
142 field_account: アカウント
143 field_base_dn: Base DN
143 field_base_dn: Base DN
144 field_attr_login: ログイン名属性
144 field_attr_login: ログイン名属性
145 field_attr_firstname: 名前属性
145 field_attr_firstname: 名前属性
146 field_attr_lastname: 苗字属性
146 field_attr_lastname: 苗字属性
147 field_attr_mail: メール属性
147 field_attr_mail: メール属性
148 field_onthefly: あわせてユーザを作成
148 field_onthefly: あわせてユーザを作成
149 field_start_date: 開始日
149 field_start_date: 開始日
150 field_done_ratio: 進捗 %%
150 field_done_ratio: 進捗 %%
151 field_auth_source: 認証モード
151 field_auth_source: 認証モード
152 field_hide_mail: メールアドレスを隠す
152 field_hide_mail: メールアドレスを隠す
153 field_comments: コメント
153 field_comments: コメント
154 field_url: URL
154 field_url: URL
155 field_start_page: メインページ
155 field_start_page: メインページ
156 field_subproject: サブプロジェクト
156 field_subproject: サブプロジェクト
157 field_hours: 時間
157 field_hours: 時間
158 field_activity: 活動
158 field_activity: 活動
159 field_spent_on: 日付
159 field_spent_on: 日付
160 field_identifier: 識別子
160 field_identifier: 識別子
161 field_is_filter: フィルタとして使う
161 field_is_filter: フィルタとして使う
162 field_issue_to_id: 関連するチケット
162 field_issue_to_id: 関連するチケット
163 field_delay: 遅延
163 field_delay: 遅延
164 field_assignable: チケットはこのロールに割り当てることができます
164 field_assignable: チケットはこのロールに割り当てることができます
165 field_redirect_existing_links: 既存のリンクをリダイレクトする
165 field_redirect_existing_links: 既存のリンクをリダイレクトする
166 field_estimated_hours: 予定工数
166 field_estimated_hours: 予定工数
167 field_default_value: デフォルトのステータス
167 field_default_value: デフォルトのステータス
168
168
169 setting_app_title: アプリケーションのタイトル
169 setting_app_title: アプリケーションのタイトル
170 setting_app_subtitle: アプリケーションのサブタイトル
170 setting_app_subtitle: アプリケーションのサブタイトル
171 setting_welcome_text: ウェルカムメッセージ
171 setting_welcome_text: ウェルカムメッセージ
172 setting_default_language: 既定の言語
172 setting_default_language: 既定の言語
173 setting_login_required: 認証が必要
173 setting_login_required: 認証が必要
174 setting_self_registration: ユーザは自分で登録できる
174 setting_self_registration: ユーザは自分で登録できる
175 setting_attachment_max_size: 添付の最大サイズ
175 setting_attachment_max_size: 添付の最大サイズ
176 setting_issues_export_limit: 出力するチケット数の上限
176 setting_issues_export_limit: 出力するチケット数の上限
177 setting_mail_from: 送信元メールアドレス
177 setting_mail_from: 送信元メールアドレス
178 setting_host_name: ホスト名
178 setting_host_name: ホスト名
179 setting_text_formatting: テキストの書式
179 setting_text_formatting: テキストの書式
180 setting_wiki_compression: Wiki履歴を圧縮する
180 setting_wiki_compression: Wiki履歴を圧縮する
181 setting_feeds_limit: フィード内容の上限
181 setting_feeds_limit: フィード内容の上限
182 setting_autofetch_changesets: コミットを自動取得する
182 setting_autofetch_changesets: コミットを自動取得する
183 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
183 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
184 setting_commit_ref_keywords: 参照用キーワード
184 setting_commit_ref_keywords: 参照用キーワード
185 setting_commit_fix_keywords: 修正用キーワード
185 setting_commit_fix_keywords: 修正用キーワード
186 setting_autologin: 自動ログイン
186 setting_autologin: 自動ログイン
187 setting_date_format: 日付の形式
187 setting_date_format: 日付の形式
188 setting_cross_project_issue_relations: 異なるプロジェクトのチケット間で関係の設定を許可
188 setting_cross_project_issue_relations: 異なるプロジェクトのチケット間で関係の設定を許可
189
189
190 label_user: ユーザ
190 label_user: ユーザ
191 label_user_plural: ユーザ
191 label_user_plural: ユーザ
192 label_user_new: 新しいユーザ
192 label_user_new: 新しいユーザ
193 label_project: プロジェクト
193 label_project: プロジェクト
194 label_project_new: 新しいプロジェクト
194 label_project_new: 新しいプロジェクト
195 label_project_plural: プロジェクト
195 label_project_plural: プロジェクト
196 label_project_all: 全プロジェクト
196 label_project_all: 全プロジェクト
197 label_project_latest: 最近のプロジェクト
197 label_project_latest: 最近のプロジェクト
198 label_issue: チケット
198 label_issue: チケット
199 label_issue_new: 新しいチケット
199 label_issue_new: 新しいチケット
200 label_issue_plural: チケット
200 label_issue_plural: チケット
201 label_issue_view_all: チケットを全て見る
201 label_issue_view_all: チケットを全て見る
202 label_document: 文書
202 label_document: 文書
203 label_document_new: 新しい文書
203 label_document_new: 新しい文書
204 label_document_plural: 文書
204 label_document_plural: 文書
205 label_role: ロール
205 label_role: ロール
206 label_role_plural: ロール
206 label_role_plural: ロール
207 label_role_new: 新しいロール
207 label_role_new: 新しいロール
208 label_role_and_permissions: ロールと権限
208 label_role_and_permissions: ロールと権限
209 label_member: メンバー
209 label_member: メンバー
210 label_member_new: 新しいメンバー
210 label_member_new: 新しいメンバー
211 label_member_plural: メンバー
211 label_member_plural: メンバー
212 label_tracker: トラッカー
212 label_tracker: トラッカー
213 label_tracker_plural: トラッカー
213 label_tracker_plural: トラッカー
214 label_tracker_new: 新しいトラッカーを作成
214 label_tracker_new: 新しいトラッカーを作成
215 label_workflow: ワークフロー
215 label_workflow: ワークフロー
216 label_issue_status: チケットのステータス
216 label_issue_status: チケットのステータス
217 label_issue_status_plural: チケットのステータス
217 label_issue_status_plural: チケットのステータス
218 label_issue_status_new: 新しいステータス
218 label_issue_status_new: 新しいステータス
219 label_issue_category: チケットのカテゴリ
219 label_issue_category: チケットのカテゴリ
220 label_issue_category_plural: チケットのカテゴリ
220 label_issue_category_plural: チケットのカテゴリ
221 label_issue_category_new: 新しいカテゴリ
221 label_issue_category_new: 新しいカテゴリ
222 label_custom_field: カスタムフィールド
222 label_custom_field: カスタムフィールド
223 label_custom_field_plural: カスタムフィールド
223 label_custom_field_plural: カスタムフィールド
224 label_custom_field_new: 新しいカスタムフィールドを作成
224 label_custom_field_new: 新しいカスタムフィールドを作成
225 label_enumerations: 列挙項目
225 label_enumerations: 列挙項目
226 label_enumeration_new: 新しい値
226 label_enumeration_new: 新しい値
227 label_information: 情報
227 label_information: 情報
228 label_information_plural: 情報
228 label_information_plural: 情報
229 label_please_login: ログインしてください
229 label_please_login: ログインしてください
230 label_register: 登録する
230 label_register: 登録する
231 label_password_lost: パスワードの再発行
231 label_password_lost: パスワードの再発行
232 label_home: ホーム
232 label_home: ホーム
233 label_my_page: マイページ
233 label_my_page: マイページ
234 label_my_account: マイアカウント
234 label_my_account: マイアカウント
235 label_my_projects: マイプロジェクト
235 label_my_projects: マイプロジェクト
236 label_administration: 管理
236 label_administration: 管理
237 label_login: ログイン
237 label_login: ログイン
238 label_logout: ログアウト
238 label_logout: ログアウト
239 label_help: ヘルプ
239 label_help: ヘルプ
240 label_reported_issues: 報告したチケット
240 label_reported_issues: 報告したチケット
241 label_assigned_to_me_issues: 担当しているチケット
241 label_assigned_to_me_issues: 担当しているチケット
242 label_last_login: 最近の接続
242 label_last_login: 最近の接続
243 label_last_updates: 最近の更新1件
243 label_last_updates: 最近の更新1件
244 label_last_updates_plural: 最近の更新%d件
244 label_last_updates_plural: 最近の更新%d件
245 label_registered_on: 登録日
245 label_registered_on: 登録日
246 label_activity: 活動
246 label_activity: 活動
247 label_new: 新しく作成
247 label_new: 新しく作成
248 label_logged_as: ログイン中:
248 label_logged_as: ログイン中:
249 label_environment: 環境
249 label_environment: 環境
250 label_authentication: 認証
250 label_authentication: 認証
251 label_auth_source: 認証モード
251 label_auth_source: 認証モード
252 label_auth_source_new: 新しい認証モード
252 label_auth_source_new: 新しい認証モード
253 label_auth_source_plural: 認証モード
253 label_auth_source_plural: 認証モード
254 label_subproject_plural: サブプロジェクト
254 label_subproject_plural: サブプロジェクト
255 label_min_max_length: 最小値 - 最大値の長さ
255 label_min_max_length: 最小値 - 最大値の長さ
256 label_list: リストから選択
256 label_list: リストから選択
257 label_date: 日付
257 label_date: 日付
258 label_integer: 整数
258 label_integer: 整数
259 label_boolean: 真偽値
259 label_boolean: 真偽値
260 label_string: テキスト
260 label_string: テキスト
261 label_text: 長いテキスト
261 label_text: 長いテキスト
262 label_attribute: 属性
262 label_attribute: 属性
263 label_attribute_plural: 属性
263 label_attribute_plural: 属性
264 label_download: %d ダウンロード
264 label_download: %d ダウンロード
265 label_download_plural: %d ダウンロード
265 label_download_plural: %d ダウンロード
266 label_no_data: 表示するデータがありません
266 label_no_data: 表示するデータがありません
267 label_change_status: ステータスの変更
267 label_change_status: ステータスの変更
268 label_history: 履歴
268 label_history: 履歴
269 label_attachment: ファイル
269 label_attachment: ファイル
270 label_attachment_new: 新しいファイル
270 label_attachment_new: 新しいファイル
271 label_attachment_delete: ファイルを削除
271 label_attachment_delete: ファイルを削除
272 label_attachment_plural: ファイル
272 label_attachment_plural: ファイル
273 label_report: レポート
273 label_report: レポート
274 label_report_plural: レポート
274 label_report_plural: レポート
275 label_news: ニュース
275 label_news: ニュース
276 label_news_new: ニュースを追加
276 label_news_new: ニュースを追加
277 label_news_plural: ニュース
277 label_news_plural: ニュース
278 label_news_latest: 最新ニュース
278 label_news_latest: 最新ニュース
279 label_news_view_all: 全てのニュースを見る
279 label_news_view_all: 全てのニュースを見る
280 label_change_log: 変更記録
280 label_change_log: 変更記録
281 label_settings: 設定
281 label_settings: 設定
282 label_overview: 概要
282 label_overview: 概要
283 label_version: バージョン
283 label_version: バージョン
284 label_version_new: 新しいバージョン
284 label_version_new: 新しいバージョン
285 label_version_plural: バージョン
285 label_version_plural: バージョン
286 label_confirmation: 確認
286 label_confirmation: 確認
287 label_export_to: 他の形式に出力
287 label_export_to: 他の形式に出力
288 label_read: 読む...
288 label_read: 読む...
289 label_public_projects: 公開プロジェクト
289 label_public_projects: 公開プロジェクト
290 label_open_issues: 未完了
290 label_open_issues: 未完了
291 label_open_issues_plural: 未完了
291 label_open_issues_plural: 未完了
292 label_closed_issues: 終了
292 label_closed_issues: 終了
293 label_closed_issues_plural: 終了
293 label_closed_issues_plural: 終了
294 label_total: 合計
294 label_total: 合計
295 label_permissions: 権限
295 label_permissions: 権限
296 label_current_status: 現在のステータス
296 label_current_status: 現在のステータス
297 label_new_statuses_allowed: ステータスの移行先
297 label_new_statuses_allowed: ステータスの移行先
298 label_all: 全て
298 label_all: 全て
299 label_none: なし
299 label_none: なし
300 label_next:
300 label_next:
301 label_previous:
301 label_previous:
302 label_used_by: 使用中
302 label_used_by: 使用中
303 label_details: 詳細
303 label_details: 詳細
304 label_add_note: 注記を追加
304 label_add_note: 注記を追加
305 label_per_page: ページ毎
305 label_per_page: ページ毎
306 label_calendar: カレンダー
306 label_calendar: カレンダー
307 label_months_from: ヶ月 from
307 label_months_from: ヶ月 from
308 label_gantt: ガントチャート
308 label_gantt: ガントチャート
309 label_internal: Internal
309 label_internal: Internal
310 label_last_changes: 最新の変更%d件
310 label_last_changes: 最新の変更%d件
311 label_change_view_all: 全ての変更を見る
311 label_change_view_all: 全ての変更を見る
312 label_personalize_page: このページをパーソナライズする
312 label_personalize_page: このページをパーソナライズする
313 label_comment: コメント
313 label_comment: コメント
314 label_comment_plural: コメント
314 label_comment_plural: コメント
315 label_comment_add: コメント追加
315 label_comment_add: コメント追加
316 label_comment_added: 追加されたコメント
316 label_comment_added: 追加されたコメント
317 label_comment_delete: コメント削除
317 label_comment_delete: コメント削除
318 label_query: カスタムクエリ
318 label_query: カスタムクエリ
319 label_query_plural: カスタムクエリ
319 label_query_plural: カスタムクエリ
320 label_query_new: 新しいクエリ
320 label_query_new: 新しいクエリ
321 label_filter_add: フィルタ追加
321 label_filter_add: フィルタ追加
322 label_filter_plural: フィルタ
322 label_filter_plural: フィルタ
323 label_equals: 等しい
323 label_equals: 等しい
324 label_not_equals: 等しくない
324 label_not_equals: 等しくない
325 label_in_less_than: 残日数がこれより多い
325 label_in_less_than: 残日数がこれより多い
326 label_in_more_than: 残日数がこれより少ない
326 label_in_more_than: 残日数がこれより少ない
327 label_in: 残日数
327 label_in: 残日数
328 label_today: 今日
328 label_today: 今日
329 label_this_week: この週
329 label_this_week: この週
330 label_less_than_ago: 経過日数がこれより少ない
330 label_less_than_ago: 経過日数がこれより少ない
331 label_more_than_ago: 経過日数がこれより多い
331 label_more_than_ago: 経過日数がこれより多い
332 label_ago: 日前
332 label_ago: 日前
333 label_contains: 含む
333 label_contains: 含む
334 label_not_contains: 含まない
334 label_not_contains: 含まない
335 label_day_plural:
335 label_day_plural:
336 label_repository: リポジトリ
336 label_repository: リポジトリ
337 label_browse: ブラウズ
337 label_browse: ブラウズ
338 label_modification: %d点の変更
338 label_modification: %d点の変更
339 label_modification_plural: %d点の変更
339 label_modification_plural: %d点の変更
340 label_revision: リビジョン
340 label_revision: リビジョン
341 label_revision_plural: リビジョン
341 label_revision_plural: リビジョン
342 label_added: 追加
342 label_added: 追加
343 label_modified: 変更
343 label_modified: 変更
344 label_deleted: 削除
344 label_deleted: 削除
345 label_latest_revision: 最新リビジョン
345 label_latest_revision: 最新リビジョン
346 label_latest_revision_plural: 最新リビジョン
346 label_latest_revision_plural: 最新リビジョン
347 label_view_revisions: リビジョンを見る
347 label_view_revisions: リビジョンを見る
348 label_max_size: 最大サイズ
348 label_max_size: 最大サイズ
349 label_on: 合計
349 label_on: 合計
350 label_sort_highest: 一番上へ
350 label_sort_highest: 一番上へ
351 label_sort_higher: 上へ
351 label_sort_higher: 上へ
352 label_sort_lower: 下へ
352 label_sort_lower: 下へ
353 label_sort_lowest: 一番下へ
353 label_sort_lowest: 一番下へ
354 label_roadmap: ロードマップ
354 label_roadmap: ロードマップ
355 label_roadmap_due_in: 期日まで
355 label_roadmap_due_in: 期日まで
356 label_roadmap_overdue: %s late
356 label_roadmap_overdue: %s late
357 label_roadmap_no_issues: このバージョンに向けてのチケットはありません
357 label_roadmap_no_issues: このバージョンに向けてのチケットはありません
358 label_search: 検索
358 label_search: 検索
359 label_result_plural: 結果
359 label_result_plural: 結果
360 label_all_words: すべての単語
360 label_all_words: すべての単語
361 label_wiki: Wiki
361 label_wiki: Wiki
362 label_wiki_edit: Wiki編集
362 label_wiki_edit: Wiki編集
363 label_wiki_edit_plural: Wiki編集
363 label_wiki_edit_plural: Wiki編集
364 label_wiki_page: Wiki page
364 label_wiki_page: Wiki page
365 label_wiki_page_plural: Wikiページ
365 label_wiki_page_plural: Wikiページ
366 label_index_by_title: 索引(名前順)
366 label_index_by_title: 索引(名前順)
367 label_index_by_date: 索引(日付順)
367 label_index_by_date: 索引(日付順)
368 label_current_version: 最新版
368 label_current_version: 最新版
369 label_preview: プレビュー
369 label_preview: プレビュー
370 label_feed_plural: フィード
370 label_feed_plural: フィード
371 label_changes_details: 全変更の詳細
371 label_changes_details: 全変更の詳細
372 label_issue_tracking: チケットトラッキング
372 label_issue_tracking: チケットトラッキング
373 label_spent_time: 経過時間
373 label_spent_time: 経過時間
374 label_f_hour: %.2f 時間
374 label_f_hour: %.2f 時間
375 label_f_hour_plural: %.2f 時間
375 label_f_hour_plural: %.2f 時間
376 label_time_tracking: 時間トラッキング
376 label_time_tracking: 時間トラッキング
377 label_change_plural: 変更
377 label_change_plural: 変更
378 label_statistics: 統計
378 label_statistics: 統計
379 label_commits_per_month: 月別のコミット
379 label_commits_per_month: 月別のコミット
380 label_commits_per_author: 起票者別のコミット
380 label_commits_per_author: 起票者別のコミット
381 label_view_diff: 差分を見る
381 label_view_diff: 差分を見る
382 label_diff_inline: インライン
382 label_diff_inline: インライン
383 label_diff_side_by_side: 横に並べる
383 label_diff_side_by_side: 横に並べる
384 label_options: オプション
384 label_options: オプション
385 label_copy_workflow_from: ワークフローをここからコピー
385 label_copy_workflow_from: ワークフローをここからコピー
386 label_permissions_report: 権限レポート
386 label_permissions_report: 権限レポート
387 label_watched_issues: ウォッチ中のチケット
387 label_watched_issues: ウォッチ中のチケット
388 label_related_issues: 関連するチケット
388 label_related_issues: 関連するチケット
389 label_applied_status: 適用されたステータス
389 label_applied_status: 適用されたステータス
390 label_loading: ロード中...
390 label_loading: ロード中...
391 label_relation_new: 新しい関連
391 label_relation_new: 新しい関連
392 label_relation_delete: 関連の削除
392 label_relation_delete: 関連の削除
393 label_relates_to: 関係している
393 label_relates_to: 関係している
394 label_duplicates: 重複している
394 label_duplicates: 重複している
395 label_blocks: ブロックしている
395 label_blocks: ブロックしている
396 label_blocked_by: ブロックされている
396 label_blocked_by: ブロックされている
397 label_precedes: 先行する
397 label_precedes: 先行する
398 label_follows: 後続する
398 label_follows: 後続する
399 label_end_to_start: end to start
399 label_end_to_start: end to start
400 label_end_to_end: end to end
400 label_end_to_end: end to end
401 label_start_to_start: start to start
401 label_start_to_start: start to start
402 label_start_to_end: start to end
402 label_start_to_end: start to end
403 label_stay_logged_in: ログインを維持
403 label_stay_logged_in: ログインを維持
404 label_disabled: 無効
404 label_disabled: 無効
405 label_show_completed_versions: 完了したバージョンを表示
405 label_show_completed_versions: 完了したバージョンを表示
406 label_me: 自分
406 label_me: 自分
407 label_board: フォーラム
407 label_board: フォーラム
408 label_board_new: 新しいフォーラム
408 label_board_new: 新しいフォーラム
409 label_board_plural: フォーラム
409 label_board_plural: フォーラム
410 label_topic_plural: トピック
410 label_topic_plural: トピック
411 label_message_plural: メッセージ
411 label_message_plural: メッセージ
412 label_message_last: 最新のメッセージ
412 label_message_last: 最新のメッセージ
413 label_message_new: 新しいメッセージ
413 label_message_new: 新しいメッセージ
414 label_reply_plural: 返答
414 label_reply_plural: 返答
415 label_send_information: アカウント情報をユーザに送信
415 label_send_information: アカウント情報をユーザに送信
416 label_year:
416 label_year:
417 label_month:
417 label_month:
418 label_week:
418 label_week:
419 label_date_from: "日付指定: "
419 label_date_from: "日付指定: "
420 label_date_to: から
420 label_date_to: から
421 label_language_based: 既定の言語の設定に従う
421 label_language_based: 既定の言語の設定に従う
422 label_sort_by: %sで並び替え
422 label_sort_by: %sで並び替え
423 label_send_test_email: テストメールを送信
423 label_send_test_email: テストメールを送信
424 label_feeds_access_key_created_on: RSSアクセスキーは%s前に作成されました
424 label_feeds_access_key_created_on: RSSアクセスキーは%s前に作成されました
425 label_module_plural: モジュール
425 label_module_plural: モジュール
426 label_added_time_by: %sが%s前に追加しました
426 label_added_time_by: %sが%s前に追加しました
427 label_updated_time: %s前に更新されました
427 label_updated_time: %s前に更新されました
428 label_jump_to_a_project: プロジェクトへ移動...
428 label_jump_to_a_project: プロジェクトへ移動...
429
429
430 button_login: ログイン
430 button_login: ログイン
431 button_submit: 変更
431 button_submit: 変更
432 button_save: 保存
432 button_save: 保存
433 button_check_all: チェックを全部つける
433 button_check_all: チェックを全部つける
434 button_uncheck_all: チェックを全部外す
434 button_uncheck_all: チェックを全部外す
435 button_delete: 削除
435 button_delete: 削除
436 button_create: 作成
436 button_create: 作成
437 button_test: テスト
437 button_test: テスト
438 button_edit: 編集
438 button_edit: 編集
439 button_add: 追加
439 button_add: 追加
440 button_change: 変更
440 button_change: 変更
441 button_apply: 適用
441 button_apply: 適用
442 button_clear: クリア
442 button_clear: クリア
443 button_lock: ロック
443 button_lock: ロック
444 button_unlock: アンロック
444 button_unlock: アンロック
445 button_download: ダウンロード
445 button_download: ダウンロード
446 button_list: 一覧
446 button_list: 一覧
447 button_view: 見る
447 button_view: 見る
448 button_move: 移動
448 button_move: 移動
449 button_back: 戻る
449 button_back: 戻る
450 button_cancel: キャンセル
450 button_cancel: キャンセル
451 button_activate: 有効にする
451 button_activate: 有効にする
452 button_sort: ソート
452 button_sort: ソート
453 button_log_time: 時間を記録
453 button_log_time: 時間を記録
454 button_rollback: このバージョンにロールバック
454 button_rollback: このバージョンにロールバック
455 button_watch: ウォッチ
455 button_watch: ウォッチ
456 button_unwatch: ウォッチをやめる
456 button_unwatch: ウォッチをやめる
457 button_reply: 返答
457 button_reply: 返答
458 button_archive: 書庫に保存
458 button_archive: 書庫に保存
459 button_unarchive: 書庫から戻す
459 button_unarchive: 書庫から戻す
460 button_reset: リセット
460 button_reset: リセット
461 button_rename: 名前変更
461 button_rename: 名前変更
462
462
463 status_active: 有効
463 status_active: 有効
464 status_registered: 登録
464 status_registered: 登録
465 status_locked: ロック
465 status_locked: ロック
466
466
467 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
467 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
468 text_regexp_info: 例) ^[A-Z0-9]+$
468 text_regexp_info: 例) ^[A-Z0-9]+$
469 text_min_max_length_info: 0だと無制限になります
469 text_min_max_length_info: 0だと無制限になります
470 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
470 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
471 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
471 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
472 text_are_you_sure: よろしいですか?
472 text_are_you_sure: よろしいですか?
473 text_journal_changed: %sから%sに変更
473 text_journal_changed: %sから%sに変更
474 text_journal_set_to: %sにセット
474 text_journal_set_to: %sにセット
475 text_journal_deleted: 削除
475 text_journal_deleted: 削除
476 text_tip_task_begin_day: この日に開始するタスク
476 text_tip_task_begin_day: この日に開始するタスク
477 text_tip_task_end_day: この日に終了するタスク
477 text_tip_task_end_day: この日に終了するタスク
478 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
478 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
479 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
479 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
480 text_caracters_maximum: 最大 %d 文字です。
480 text_caracters_maximum: 最大 %d 文字です。
481 text_length_between: 長さは %d から %d 文字までです。
481 text_length_between: 長さは %d から %d 文字までです。
482 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
482 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
483 text_unallowed_characters: 使えない文字です
483 text_unallowed_characters: 使えない文字です
484 text_comma_separated: (カンマで区切った)複数の値が使えます
484 text_comma_separated: (カンマで区切った)複数の値が使えます
485 text_issues_ref_in_commit_messages: コミットメッセージ内でチケットの参照/修正
485 text_issues_ref_in_commit_messages: コミットメッセージ内でチケットの参照/修正
486 text_issue_added: チケット %s が報告されました。 (by %s)
486 text_issue_added: チケット %s が報告されました。 (by %s)
487 text_issue_updated: チケット %s が更新されました。 (by %s)
487 text_issue_updated: チケット %s が更新されました。 (by %s)
488 text_wiki_destroy_confirmation: 本当にこのwikiとその内容の全てを削除しますか?
488 text_wiki_destroy_confirmation: 本当にこのwikiとその内容の全てを削除しますか?
489 text_issue_category_destroy_question: このカテゴリに割り当て済みのチケット(%d)があります。何をしようとしていますか?
489 text_issue_category_destroy_question: このカテゴリに割り当て済みのチケット(%d)があります。何をしようとしていますか?
490 text_issue_category_destroy_assignments: カテゴリの割り当てを削除する
490 text_issue_category_destroy_assignments: カテゴリの割り当てを削除する
491 text_issue_category_reassign_to: チケットをこのカテゴリに再割り当てする
491 text_issue_category_reassign_to: チケットをこのカテゴリに再割り当てする
492
492
493 default_role_manager: 管理者
493 default_role_manager: 管理者
494 default_role_developper: 開発者
494 default_role_developper: 開発者
495 default_role_reporter: 報告者
495 default_role_reporter: 報告者
496 default_tracker_bug: バグ
496 default_tracker_bug: バグ
497 default_tracker_feature: 機能
497 default_tracker_feature: 機能
498 default_tracker_support: サポート
498 default_tracker_support: サポート
499 default_issue_status_new: 新規
499 default_issue_status_new: 新規
500 default_issue_status_assigned: 担当
500 default_issue_status_assigned: 担当
501 default_issue_status_resolved: 解決
501 default_issue_status_resolved: 解決
502 default_issue_status_feedback: フィードバック
502 default_issue_status_feedback: フィードバック
503 default_issue_status_closed: 終了
503 default_issue_status_closed: 終了
504 default_issue_status_rejected: 却下
504 default_issue_status_rejected: 却下
505 default_doc_category_user: ユーザ文書
505 default_doc_category_user: ユーザ文書
506 default_doc_category_tech: 技術文書
506 default_doc_category_tech: 技術文書
507 default_priority_low: 低め
507 default_priority_low: 低め
508 default_priority_normal: 通常
508 default_priority_normal: 通常
509 default_priority_high: 高め
509 default_priority_high: 高め
510 default_priority_urgent: 急いで
510 default_priority_urgent: 急いで
511 default_priority_immediate: 今すぐ
511 default_priority_immediate: 今すぐ
512 default_activity_design: デザイン作業
512 default_activity_design: デザイン作業
513 default_activity_development: 開発作業
513 default_activity_development: 開発作業
514
514
515 enumeration_issue_priorities: チケットの優先度
515 enumeration_issue_priorities: チケットの優先度
516 enumeration_doc_categories: 文書カテゴリ
516 enumeration_doc_categories: 文書カテゴリ
517 enumeration_activities: 作業分類 (時間トラッキング)
517 enumeration_activities: 作業分類 (時間トラッキング)
518 label_file_plural: ファイル
518 label_file_plural: ファイル
519 label_changeset_plural: チェンジセット
519 label_changeset_plural: チェンジセット
520 field_column_names: 項目
520 field_column_names: 項目
521 label_default_columns: 既定の項目
521 label_default_columns: 既定の項目
522 setting_issue_list_default_columns: チケットの一覧で表示する項目
522 setting_issue_list_default_columns: チケットの一覧で表示する項目
523 setting_repositories_encodings: リポジトリのエンコーディング
523 setting_repositories_encodings: リポジトリのエンコーディング
524 notice_no_issue_selected: "チケットが選択されていません! 更新対象のチケットを選択してください。"
524 notice_no_issue_selected: "チケットが選択されていません! 更新対象のチケットを選択してください。"
525 label_bulk_edit_selected_issues: チケットの一括編集
525 label_bulk_edit_selected_issues: チケットの一括編集
526 label_no_change_option: (変更無し)
526 label_no_change_option: (変更無し)
527 notice_failed_to_save_issues: "%d件のチケットが保存できませんでした(%d件選択のうち) : %s."
527 notice_failed_to_save_issues: "%d件のチケットが保存できませんでした(%d件選択のうち) : %s."
528 label_theme: テーマ
528 label_theme: テーマ
529 label_default: 既定
529 label_default: 既定
530 label_search_titles_only: タイトルのみ
530 label_search_titles_only: タイトルのみ
531 label_nobody: nobody
531 label_nobody: nobody
532 button_change_password: パスワード変更
532 button_change_password: パスワード変更
533 text_user_mail_option: "未選択のプロジェクトでは、ウォッチまたは関係しているチケット(例: 自分が報告者もしくは担当者であるチケット)のみメールが送信されます。"
533 text_user_mail_option: "未選択のプロジェクトでは、ウォッチまたは関係しているチケット(例: 自分が報告者もしくは担当者であるチケット)のみメールが送信されます。"
534 label_user_mail_option_selected: "選択したプロジェクト..."
534 label_user_mail_option_selected: "選択したプロジェクト..."
535 label_user_mail_option_all: "参加しているプロジェクトの全てのチケット"
535 label_user_mail_option_all: "参加しているプロジェクトの全てのチケット"
536 label_user_mail_option_none: "ウォッチまたは関係しているチケットのみ"
536 label_user_mail_option_none: "ウォッチまたは関係しているチケットのみ"
537 setting_emails_footer: メールのフッタ
537 setting_emails_footer: メールのフッタ
538 label_float: 小数
538 label_float: 小数
539 button_copy: コピー
539 button_copy: コピー
540 mail_body_account_information_external: 「%s」アカウントを使ってにログインできます。
540 mail_body_account_information_external: 「%s」アカウントを使ってにログインできます。
541 mail_body_account_information: アカウント情報
541 mail_body_account_information: アカウント情報
542 setting_protocol: プロトコル
542 setting_protocol: プロトコル
543 label_user_mail_no_self_notified: 自分自身による変更の通知は不要です
543 label_user_mail_no_self_notified: 自分自身による変更の通知は不要です
544 setting_time_format: 時刻の形式
544 setting_time_format: 時刻の形式
545 label_registration_activation_by_email: メールでアカウントを有効化
545 label_registration_activation_by_email: メールでアカウントを有効化
546 mail_subject_account_activation_request: %sアカウントの有効化要求
546 mail_subject_account_activation_request: %sアカウントの有効化要求
547 mail_body_account_activation_request: 新しいユーザ(%s)が登録しています。このアカウントはあなたの承認待ちです:
547 mail_body_account_activation_request: 新しいユーザ(%s)が登録しています。このアカウントはあなたの承認待ちです:
548 label_registration_automatic_activation: 自動でアカウントを有効化
548 label_registration_automatic_activation: 自動でアカウントを有効化
549 label_registration_manual_activation: 手動でアカウントを有効化
549 label_registration_manual_activation: 手動でアカウントを有効化
550 notice_account_pending: アカウントは作成済みで、管理者の承認待ちです。
550 notice_account_pending: アカウントは作成済みで、管理者の承認待ちです。
551 field_time_zone: タイムゾーン
551 field_time_zone: タイムゾーン
552 text_caracters_minimum: 最低%d文字の長さが必要です
552 text_caracters_minimum: 最低%d文字の長さが必要です
553 setting_bcc_recipients: ブラインドカーボンコピーで受信(bcc)
553 setting_bcc_recipients: ブラインドカーボンコピーで受信(bcc)
554 button_annotate: 注釈
554 button_annotate: 注釈
555 label_issues_by: %s別のチケット
555 label_issues_by: %s別のチケット
556 field_searchable: Searchable
556 field_searchable: Searchable
557 label_display_per_page: '1ページに: %s'
557 label_display_per_page: '1ページに: %s'
558 setting_per_page_options: ページ毎の表示件数
558 setting_per_page_options: ページ毎の表示件数
559 label_age: 年齢
559 label_age: 年齢
560 notice_default_data_loaded: デフォルト設定をロードしました。
560 notice_default_data_loaded: デフォルト設定をロードしました。
561 text_load_default_configuration: デフォルト設定をロード
561 text_load_default_configuration: デフォルト設定をロード
562 text_no_configuration_data: "ロール、トラッカー、チケットのステータス、ワークフローがまだ設定されていません。\nデフォルト設定のロードを強くお勧めします。ロードした後、それを修正することができます。"
562 text_no_configuration_data: "ロール、トラッカー、チケットのステータス、ワークフローがまだ設定されていません。\nデフォルト設定のロードを強くお勧めします。ロードした後、それを修正することができます。"
563 error_can_t_load_default_data: "デフォルト設定がロードできませんでした: %s"
563 error_can_t_load_default_data: "デフォルト設定がロードできませんでした: %s"
564 button_update: 更新
564 button_update: 更新
565 label_change_properties: プロパティの変更
565 label_change_properties: プロパティの変更
566 label_general: 全般
566 label_general: 全般
567 label_repository_plural: リポジトリ
567 label_repository_plural: リポジトリ
568 label_associated_revisions: 関係しているリビジョン
568 label_associated_revisions: 関係しているリビジョン
569 setting_user_format: ユーザ名の表示書式
569 setting_user_format: ユーザ名の表示書式
570 text_status_changed_by_changeset: チェンジセット%sで適用されました。
570 text_status_changed_by_changeset: チェンジセット%sで適用されました。
571 label_more: 続き
571 label_more: 続き
572 text_issues_destroy_confirmation: '本当に選択したチケットを削除しますか?'
572 text_issues_destroy_confirmation: '本当に選択したチケットを削除しますか?'
573 label_scm: SCM
573 label_scm: SCM
574 text_select_project_modules: 'このプロジェクトで使用するモジュールを選択してください:'
574 text_select_project_modules: 'このプロジェクトで使用するモジュールを選択してください:'
575 label_issue_added: チケットが追加されました
575 label_issue_added: チケットが追加されました
576 label_issue_updated: チケットが更新されました
576 label_issue_updated: チケットが更新されました
577 label_document_added: 文書が追加されました
577 label_document_added: 文書が追加されました
578 label_message_posted: メッセージが追加されました
578 label_message_posted: メッセージが追加されました
579 label_file_added: ファイルが追加されました
579 label_file_added: ファイルが追加されました
580 label_news_added: ニュースが追加されました
580 label_news_added: ニュースが追加されました
581 project_module_boards: フォーラム
581 project_module_boards: フォーラム
582 project_module_issue_tracking: チケットトラッキング
582 project_module_issue_tracking: チケットトラッキング
583 project_module_wiki: Wiki
583 project_module_wiki: Wiki
584 project_module_files: ファイル
584 project_module_files: ファイル
585 project_module_documents: 文書
585 project_module_documents: 文書
586 project_module_repository: リポジトリ
586 project_module_repository: リポジトリ
587 project_module_news: ニュース
587 project_module_news: ニュース
588 project_module_time_tracking: 時間トラッキング
588 project_module_time_tracking: 時間トラッキング
589 text_file_repository_writable: ファイルリポジトリに書き込み可能
589 text_file_repository_writable: ファイルリポジトリに書き込み可能
590 text_default_administrator_account_changed: デフォルト管理アカウントが変更済
590 text_default_administrator_account_changed: デフォルト管理アカウントが変更済
591 text_rmagick_available: RMagickが使用可能 (オプション)
591 text_rmagick_available: RMagickが使用可能 (オプション)
592 button_configure: 設定
592 button_configure: 設定
593 label_plugins: プラグイン
593 label_plugins: プラグイン
594 label_ldap_authentication: LDAP認証
594 label_ldap_authentication: LDAP認証
595 label_downloads_abbr: DL
595 label_downloads_abbr: DL
596 label_this_month: 今月
596 label_this_month: 今月
597 label_last_n_days: 最後の%d日間
597 label_last_n_days: 最後の%d日間
598 label_all_time: 全期間
598 label_all_time: 全期間
599 label_this_year: 今年
599 label_this_year: 今年
600 label_date_range: 日付の範囲
600 label_date_range: 日付の範囲
601 label_last_week: 先週
601 label_last_week: 先週
602 label_yesterday: 昨日
602 label_yesterday: 昨日
603 label_last_month: 先月
603 label_last_month: 先月
604 label_add_another_file: 別のファイルを追加
604 label_add_another_file: 別のファイルを追加
605 text_destroy_time_entries_question: チケットに記録された%.02f時間を削除しようとしています。何がしたいのですか?
605 text_destroy_time_entries_question: チケットに記録された%.02f時間を削除しようとしています。何がしたいのですか?
606 error_issue_not_found_in_project: 'チケットが見つかりません、もしくはこのプロジェクトに属していません'
606 error_issue_not_found_in_project: 'チケットが見つかりません、もしくはこのプロジェクトに属していません'
607 text_assign_time_entries_to_project: 記録された時間をプロジェクトに割り当て
607 text_assign_time_entries_to_project: 記録された時間をプロジェクトに割り当て
608 label_optional_description: 任意のコメント
608 label_optional_description: 任意のコメント
609 text_destroy_time_entries: 記録された時間を削除
609 text_destroy_time_entries: 記録された時間を削除
610 text_reassign_time_entries: '記録された時間をこのチケットに再割り当て:'
610 text_reassign_time_entries: '記録された時間をこのチケットに再割り当て:'
611 setting_activity_days_default: プロジェクトの活動ページに表示される日数
611 setting_activity_days_default: プロジェクトの活動ページに表示される日数
612 label_chronological_order: 古い順
612 label_chronological_order: 古い順
613 field_comments_sorting: コメントを表示
613 field_comments_sorting: コメントを表示
614 label_reverse_chronological_order: 新しい順
614 label_reverse_chronological_order: 新しい順
615 label_preferences: 設定
615 label_preferences: 設定
616 setting_display_subprojects_issues: デフォルトでサブプロジェクトのチケットをメインプロジェクトに表示する
616 setting_display_subprojects_issues: デフォルトでサブプロジェクトのチケットをメインプロジェクトに表示する
617 label_overall_activity: 全ての活動
617 label_overall_activity: 全ての活動
618 setting_default_projects_public: デフォルトで新しいプロジェクトは公開にする
618 setting_default_projects_public: デフォルトで新しいプロジェクトは公開にする
619 error_scm_annotate: "エントリが存在しない、もしくはアノテートできません。"
619 error_scm_annotate: "エントリが存在しない、もしくはアノテートできません。"
620 label_planning: 計画
620 label_planning: 計画
621 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
621 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
622 label_and_its_subprojects: %s and its subprojects
622 label_and_its_subprojects: %s and its subprojects
623 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
623 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
624 mail_subject_reminder: "%d issue(s) due in the next days"
624 mail_subject_reminder: "%d issue(s) due in the next days"
625 text_user_wrote: '%s wrote:'
625 text_user_wrote: '%s wrote:'
626 label_duplicated_by: duplicated by
626 label_duplicated_by: duplicated by
627 setting_enabled_scm: Enabled SCM
627 setting_enabled_scm: Enabled SCM
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
630 label_incoming_emails: Incoming emails
631 label_generate_key: Generate a key
632 setting_mail_handler_api_enabled: Enable WS for incoming emails
633 setting_mail_handler_api_key: API key
@@ -1,628 +1,632
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: 1월,2월,3월,4월,5월,6월,7월,8월,9월,10월,11월,12월
4 actionview_datehelper_select_month_names: 1월,2월,3월,4월,5월,6월,7월,8월,9월,10월,11월,12월
5 actionview_datehelper_select_month_names_abbr: 1월,2월,3월,4월,5월,6월,7월,8월,9월,10월,11월,12월
5 actionview_datehelper_select_month_names_abbr: 1월,2월,3월,4월,5월,6월,7월,8월,9월,10월,11월,12월
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 하루
8 actionview_datehelper_time_in_words_day: 하루
9 actionview_datehelper_time_in_words_day_plural: %d 일
9 actionview_datehelper_time_in_words_day_plural: %d 일
10 actionview_datehelper_time_in_words_hour_about: 약 한 시간
10 actionview_datehelper_time_in_words_hour_about: 약 한 시간
11 actionview_datehelper_time_in_words_hour_about_plural: 약 %d 시간
11 actionview_datehelper_time_in_words_hour_about_plural: 약 %d 시간
12 actionview_datehelper_time_in_words_hour_about_single: 약 한 시간
12 actionview_datehelper_time_in_words_hour_about_single: 약 한 시간
13 actionview_datehelper_time_in_words_minute: 1 분
13 actionview_datehelper_time_in_words_minute: 1 분
14 actionview_datehelper_time_in_words_minute_half: 30초
14 actionview_datehelper_time_in_words_minute_half: 30초
15 actionview_datehelper_time_in_words_minute_less_than: 1분 이내
15 actionview_datehelper_time_in_words_minute_less_than: 1분 이내
16 actionview_datehelper_time_in_words_minute_plural: %d 분
16 actionview_datehelper_time_in_words_minute_plural: %d 분
17 actionview_datehelper_time_in_words_minute_single: 1 분
17 actionview_datehelper_time_in_words_minute_single: 1 분
18 actionview_datehelper_time_in_words_second_less_than: 1초 이내
18 actionview_datehelper_time_in_words_second_less_than: 1초 이내
19 actionview_datehelper_time_in_words_second_less_than_plural: %d 초 이전
19 actionview_datehelper_time_in_words_second_less_than_plural: %d 초 이전
20 actionview_instancetag_blank_option: 선택하세요
20 actionview_instancetag_blank_option: 선택하세요
21
21
22 activerecord_error_inclusion: 은(는) 목록에 포함되어 있지 않습니다.
22 activerecord_error_inclusion: 은(는) 목록에 포함되어 있지 않습니다.
23 activerecord_error_exclusion: 은(는) 예약되어 있습니다.
23 activerecord_error_exclusion: 은(는) 예약되어 있습니다.
24 activerecord_error_invalid: 은(는) 유효하지 않습니다.
24 activerecord_error_invalid: 은(는) 유효하지 않습니다.
25 activerecord_error_confirmation: 는 제약조건(confirmation)에 맞지 않습니다.
25 activerecord_error_confirmation: 는 제약조건(confirmation)에 맞지 않습니다.
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: 는 길이가 0일 수가 없습니다.
27 activerecord_error_empty: 는 길이가 0일 수가 없습니다.
28 activerecord_error_blank: 는 빈 값이어서는 안됩니다.
28 activerecord_error_blank: 는 빈 값이어서는 안됩니다.
29 activerecord_error_too_long: 는 너무 깁니다.
29 activerecord_error_too_long: 는 너무 깁니다.
30 activerecord_error_too_short: 는 너무 짧습니다.
30 activerecord_error_too_short: 는 너무 짧습니다.
31 activerecord_error_wrong_length: 는 잘못된 길이입니다.
31 activerecord_error_wrong_length: 는 잘못된 길이입니다.
32 activerecord_error_taken: 가 이미 값을 가지고 있습니다.
32 activerecord_error_taken: 가 이미 값을 가지고 있습니다.
33 activerecord_error_not_a_number: 는 숫자가 아닙니다.
33 activerecord_error_not_a_number: 는 숫자가 아닙니다.
34 activerecord_error_not_a_date: 는 잘못된 날짜 값입니다.
34 activerecord_error_not_a_date: 는 잘못된 날짜 값입니다.
35 activerecord_error_greater_than_start_date: 는 시작날짜보다 커야 합니다.
35 activerecord_error_greater_than_start_date: 는 시작날짜보다 커야 합니다.
36 activerecord_error_not_same_project: 는 같은 프로젝트에 속해 있지 않습니다.
36 activerecord_error_not_same_project: 는 같은 프로젝트에 속해 있지 않습니다.
37 activerecord_error_circular_dependency: 이 관계는 순환 의존관계를 만들 수있습니다.
37 activerecord_error_circular_dependency: 이 관계는 순환 의존관계를 만들 수있습니다.
38
38
39 general_fmt_age: %d 년
39 general_fmt_age: %d 년
40 general_fmt_age_plural: %d 년
40 general_fmt_age_plural: %d 년
41 general_fmt_date: %%Y-%%m-%%d
41 general_fmt_date: %%Y-%%m-%%d
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: '아니오'
45 general_text_No: '아니오'
46 general_text_Yes: '예'
46 general_text_Yes: '예'
47 general_text_no: '아니오'
47 general_text_no: '아니오'
48 general_text_yes: '예'
48 general_text_yes: '예'
49 general_lang_name: 'Korean (한국어)'
49 general_lang_name: 'Korean (한국어)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: CP949
51 general_csv_encoding: CP949
52 general_pdf_encoding: CP949
52 general_pdf_encoding: CP949
53 general_day_names: 월요일,화요일,수요일,목요일,금요일,토요일,일요일
53 general_day_names: 월요일,화요일,수요일,목요일,금요일,토요일,일요일
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: 계정이 성공적으로 변경 되었습니다.
56 notice_account_updated: 계정이 성공적으로 변경 되었습니다.
57 notice_account_invalid_creditentials: 잘못된 계정 또는 패스워드
57 notice_account_invalid_creditentials: 잘못된 계정 또는 패스워드
58 notice_account_password_updated: 비밀번호가 잘 변경되었습니다.
58 notice_account_password_updated: 비밀번호가 잘 변경되었습니다.
59 notice_account_wrong_password: 잘못된 패스워드
59 notice_account_wrong_password: 잘못된 패스워드
60 notice_account_register_done: 계정이 성공적으로 생성되었습니다. 계정을 활성화 하기 위해서 수신한 Email의 링크를 클릭해주세요.
60 notice_account_register_done: 계정이 성공적으로 생성되었습니다. 계정을 활성화 하기 위해서 수신한 Email의 링크를 클릭해주세요.
61 notice_account_unknown_email: 알려지지 않은 사용자.
61 notice_account_unknown_email: 알려지지 않은 사용자.
62 notice_can_t_change_password: 이 계정은 외부 인증을 이용합니다. 비밀번호 변경이 불가능 합니다.
62 notice_can_t_change_password: 이 계정은 외부 인증을 이용합니다. 비밀번호 변경이 불가능 합니다.
63 notice_account_lost_email_sent: 새로운 패스워드를 위한 Email이 발송되었습니다.
63 notice_account_lost_email_sent: 새로운 패스워드를 위한 Email이 발송되었습니다.
64 notice_account_activated: 계정이 활성화 되었습니다. 이제 로그인 하실수 있습니다.
64 notice_account_activated: 계정이 활성화 되었습니다. 이제 로그인 하실수 있습니다.
65 notice_successful_create: 생성 성공.
65 notice_successful_create: 생성 성공.
66 notice_successful_update: 변경 성공.
66 notice_successful_update: 변경 성공.
67 notice_successful_delete: 삭제 성공.
67 notice_successful_delete: 삭제 성공.
68 notice_successful_connection: 연결 성공.
68 notice_successful_connection: 연결 성공.
69 notice_file_not_found: 요청하신 페이지는 삭제되었거나 옮겨졌습니다.
69 notice_file_not_found: 요청하신 페이지는 삭제되었거나 옮겨졌습니다.
70 notice_locking_conflict: 다른 사용자에 의해서 데이터가 변경되었습니다.
70 notice_locking_conflict: 다른 사용자에 의해서 데이터가 변경되었습니다.
71 notice_not_authorized: 이 페이지에 접근할 권한이 없습니다.
71 notice_not_authorized: 이 페이지에 접근할 권한이 없습니다.
72 notice_email_sent: %s 님에게 Email이 발송되었습니다.
72 notice_email_sent: %s 님에게 Email이 발송되었습니다.
73 notice_email_error: 메일을 전송하는 과정에 오류가 발생했습니다. (%s)
73 notice_email_error: 메일을 전송하는 과정에 오류가 발생했습니다. (%s)
74 notice_feeds_access_key_reseted: RSS에 접근가능한 열쇠(key)가 생성되었습니다.
74 notice_feeds_access_key_reseted: RSS에 접근가능한 열쇠(key)가 생성되었습니다.
75 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
75 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
76 notice_no_issue_selected: "이슈가 선택되지 않았습니다. 수정하기 원하는 이슈를 선택하세요"
76 notice_no_issue_selected: "이슈가 선택되지 않았습니다. 수정하기 원하는 이슈를 선택하세요"
77
77
78 error_scm_not_found: 소스 저장소에 해당 내용이 존재하지 않습니다.
78 error_scm_not_found: 소스 저장소에 해당 내용이 존재하지 않습니다.
79 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
79 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
80
80
81 mail_subject_lost_password: 당신의 비밀번호 (%s)
81 mail_subject_lost_password: 당신의 비밀번호 (%s)
82 mail_body_lost_password: '비밀번호를 변경하기 위해서 링크를 이용하세요'
82 mail_body_lost_password: '비밀번호를 변경하기 위해서 링크를 이용하세요'
83 mail_subject_register: 당신의 계정 활성화 (%s)
83 mail_subject_register: 당신의 계정 활성화 (%s)
84 mail_body_register: '계정을 활성화 하기 위해서 링크를 이용하세요 :'
84 mail_body_register: '계정을 활성화 하기 위해서 링크를 이용하세요 :'
85
85
86 gui_validation_error: 1 에러
86 gui_validation_error: 1 에러
87 gui_validation_error_plural: %d 에러
87 gui_validation_error_plural: %d 에러
88
88
89 field_name: 이름
89 field_name: 이름
90 field_description: 설명
90 field_description: 설명
91 field_summary: 요약
91 field_summary: 요약
92 field_is_required: 필수
92 field_is_required: 필수
93 field_firstname: 이름
93 field_firstname: 이름
94 field_lastname:
94 field_lastname:
95 field_mail: 메일
95 field_mail: 메일
96 field_filename: 파일
96 field_filename: 파일
97 field_filesize: 크기
97 field_filesize: 크기
98 field_downloads: 다운로드
98 field_downloads: 다운로드
99 field_author: 보고자
99 field_author: 보고자
100 field_created_on: 보고시간
100 field_created_on: 보고시간
101 field_updated_on: 변경시간
101 field_updated_on: 변경시간
102 field_field_format: 포맷
102 field_field_format: 포맷
103 field_is_for_all: 모든 프로젝트
103 field_is_for_all: 모든 프로젝트
104 field_possible_values: 가능한 값들
104 field_possible_values: 가능한 값들
105 field_regexp: 정규식
105 field_regexp: 정규식
106 field_min_length: 최소 길이
106 field_min_length: 최소 길이
107 field_max_length: 최대 길이
107 field_max_length: 최대 길이
108 field_value:
108 field_value:
109 field_category: 카테고리
109 field_category: 카테고리
110 field_title: 제목
110 field_title: 제목
111 field_project: 프로젝트
111 field_project: 프로젝트
112 field_issue: 이슈
112 field_issue: 이슈
113 field_status: 상태
113 field_status: 상태
114 field_notes: 노트
114 field_notes: 노트
115 field_is_closed: 완료된 이슈
115 field_is_closed: 완료된 이슈
116 field_is_default: 기본값
116 field_is_default: 기본값
117 field_tracker: 구분
117 field_tracker: 구분
118 field_subject: 제목
118 field_subject: 제목
119 field_due_date: 완료 기한
119 field_due_date: 완료 기한
120 field_assigned_to: 담당자
120 field_assigned_to: 담당자
121 field_priority: 우선순위
121 field_priority: 우선순위
122 field_fixed_version: Target version
122 field_fixed_version: Target version
123 field_user: 유저
123 field_user: 유저
124 field_role: 역할
124 field_role: 역할
125 field_homepage: 홈페이지
125 field_homepage: 홈페이지
126 field_is_public: 공개
126 field_is_public: 공개
127 field_parent: 상위 프로젝트
127 field_parent: 상위 프로젝트
128 field_is_in_chlog: 변경이력(changelog)에서 보여지는 이슈들
128 field_is_in_chlog: 변경이력(changelog)에서 보여지는 이슈들
129 field_is_in_roadmap: 로드맵에서 보여지는 이슈들
129 field_is_in_roadmap: 로드맵에서 보여지는 이슈들
130 field_login: 로그인
130 field_login: 로그인
131 field_mail_notification: 메일 알림
131 field_mail_notification: 메일 알림
132 field_admin: 관리자
132 field_admin: 관리자
133 field_last_login_on: 최종 접속
133 field_last_login_on: 최종 접속
134 field_language: 언어
134 field_language: 언어
135 field_effective_date: 일자
135 field_effective_date: 일자
136 field_password: 비밀번호
136 field_password: 비밀번호
137 field_new_password: 신규 비밀번호
137 field_new_password: 신규 비밀번호
138 field_password_confirmation: 비밀번호 확인
138 field_password_confirmation: 비밀번호 확인
139 field_version: 버전
139 field_version: 버전
140 field_type: 타입
140 field_type: 타입
141 field_host: 호스트
141 field_host: 호스트
142 field_port: 포트
142 field_port: 포트
143 field_account: 계정
143 field_account: 계정
144 field_base_dn: Base DN
144 field_base_dn: Base DN
145 field_attr_login: 로그인 속성
145 field_attr_login: 로그인 속성
146 field_attr_firstname: 이름 속성
146 field_attr_firstname: 이름 속성
147 field_attr_lastname: 성 속성
147 field_attr_lastname: 성 속성
148 field_attr_mail: 메일 속성
148 field_attr_mail: 메일 속성
149 field_onthefly: On-the-fly user creation
149 field_onthefly: On-the-fly user creation
150 field_start_date: 시작시간
150 field_start_date: 시작시간
151 field_done_ratio: 완료 %%
151 field_done_ratio: 완료 %%
152 field_auth_source: 인증 방법
152 field_auth_source: 인증 방법
153 field_hide_mail: 내 메일 주소 숨기기
153 field_hide_mail: 내 메일 주소 숨기기
154 field_comments: 코멘트
154 field_comments: 코멘트
155 field_url: URL
155 field_url: URL
156 field_start_page: 시작 페이지
156 field_start_page: 시작 페이지
157 field_subproject: 서브 프로젝트
157 field_subproject: 서브 프로젝트
158 field_hours: 시간
158 field_hours: 시간
159 field_activity: 작업종류
159 field_activity: 작업종류
160 field_spent_on: 작업시간
160 field_spent_on: 작업시간
161 field_identifier: 식별자
161 field_identifier: 식별자
162 field_is_filter: 필터로 사용됨
162 field_is_filter: 필터로 사용됨
163 field_issue_to_id: 연관된 이슈
163 field_issue_to_id: 연관된 이슈
164 field_delay: 지연
164 field_delay: 지연
165 field_assignable: 이 역할에 할당될수 있는 이슈
165 field_assignable: 이 역할에 할당될수 있는 이슈
166 field_redirect_existing_links: Redirect existing links
166 field_redirect_existing_links: Redirect existing links
167 field_estimated_hours: 추정시간
167 field_estimated_hours: 추정시간
168 field_column_names: 컬럼
168 field_column_names: 컬럼
169 field_default_value: 기본값
169 field_default_value: 기본값
170
170
171 setting_app_title: 레드마인 제목
171 setting_app_title: 레드마인 제목
172 setting_app_subtitle: 레드마인 부제목
172 setting_app_subtitle: 레드마인 부제목
173 setting_welcome_text: 환영 메시지
173 setting_welcome_text: 환영 메시지
174 setting_default_language: 기본 언어
174 setting_default_language: 기본 언어
175 setting_login_required: 인증이 필요함.
175 setting_login_required: 인증이 필요함.
176 setting_self_registration: Self-registration
176 setting_self_registration: Self-registration
177 setting_attachment_max_size: 최대 첨부파일 크기
177 setting_attachment_max_size: 최대 첨부파일 크기
178 setting_issues_export_limit: Issues export limit
178 setting_issues_export_limit: Issues export limit
179 setting_mail_from: Emission mail address
179 setting_mail_from: Emission mail address
180 setting_host_name: 호스트 이름
180 setting_host_name: 호스트 이름
181 setting_text_formatting: 텍스트 형식
181 setting_text_formatting: 텍스트 형식
182 setting_wiki_compression: 위키 기록(history) 압축
182 setting_wiki_compression: 위키 기록(history) 압축
183 setting_feeds_limit: Feed content limit
183 setting_feeds_limit: Feed content limit
184 setting_autofetch_changesets: Autofetch commits
184 setting_autofetch_changesets: Autofetch commits
185 setting_sys_api_enabled: Enable WS for repository management
185 setting_sys_api_enabled: Enable WS for repository management
186 setting_commit_ref_keywords: 이슈 참조에 사용할 키워드들
186 setting_commit_ref_keywords: 이슈 참조에 사용할 키워드들
187 setting_commit_fix_keywords: 이슈 해결에 사용할 키워드들
187 setting_commit_fix_keywords: 이슈 해결에 사용할 키워드들
188 setting_autologin: 자동 로그인
188 setting_autologin: 자동 로그인
189 setting_date_format: 날짜 형식
189 setting_date_format: 날짜 형식
190 setting_cross_project_issue_relations: 프로젝트간 이슈에 관련을 맺는 것을 허용
190 setting_cross_project_issue_relations: 프로젝트간 이슈에 관련을 맺는 것을 허용
191 setting_issue_list_default_columns: 이슈 목록에 보여줄 기본 컬럼들
191 setting_issue_list_default_columns: 이슈 목록에 보여줄 기본 컬럼들
192 setting_repositories_encodings: 저장소 인코딩
192 setting_repositories_encodings: 저장소 인코딩
193 setting_emails_footer: 메일 꼬리
193 setting_emails_footer: 메일 꼬리
194
194
195 label_user: 사용자
195 label_user: 사용자
196 label_user_plural: 사용자관리
196 label_user_plural: 사용자관리
197 label_user_new: 신규 유저
197 label_user_new: 신규 유저
198 label_project: 프로젝트
198 label_project: 프로젝트
199 label_project_new: 신규 프로젝트
199 label_project_new: 신규 프로젝트
200 label_project_plural: 프로젝트
200 label_project_plural: 프로젝트
201 label_project_all: 모든 프로젝트
201 label_project_all: 모든 프로젝트
202 label_project_latest: 최근 프로젝트
202 label_project_latest: 최근 프로젝트
203 label_issue: 이슈 보기
203 label_issue: 이슈 보기
204 label_issue_new: 새 이슈만들기
204 label_issue_new: 새 이슈만들기
205 label_issue_plural: 이슈 보기
205 label_issue_plural: 이슈 보기
206 label_issue_view_all: 모든 이슈 보기
206 label_issue_view_all: 모든 이슈 보기
207 label_document: 문서
207 label_document: 문서
208 label_document_new: 새로운 문서
208 label_document_new: 새로운 문서
209 label_document_plural: 문서
209 label_document_plural: 문서
210 label_role: 역할
210 label_role: 역할
211 label_role_plural: 역할
211 label_role_plural: 역할
212 label_role_new: 새로운 역할
212 label_role_new: 새로운 역할
213 label_role_and_permissions: 권한관리
213 label_role_and_permissions: 권한관리
214 label_member: 담당자
214 label_member: 담당자
215 label_member_new: 새로운 담당자
215 label_member_new: 새로운 담당자
216 label_member_plural: 담당자
216 label_member_plural: 담당자
217 label_tracker: 이슈 유형
217 label_tracker: 이슈 유형
218 label_tracker_plural: 이슈 유형
218 label_tracker_plural: 이슈 유형
219 label_tracker_new: 새로운 이슈 유형
219 label_tracker_new: 새로운 이슈 유형
220 label_workflow: 워크플로(Workflow)
220 label_workflow: 워크플로(Workflow)
221 label_issue_status: 이슈 상태
221 label_issue_status: 이슈 상태
222 label_issue_status_plural: 이슈 상태
222 label_issue_status_plural: 이슈 상태
223 label_issue_status_new: 새로운 이슈 상태
223 label_issue_status_new: 새로운 이슈 상태
224 label_issue_category: 카테고리
224 label_issue_category: 카테고리
225 label_issue_category_plural: 카테고리
225 label_issue_category_plural: 카테고리
226 label_issue_category_new: 새 카테고리
226 label_issue_category_new: 새 카테고리
227 label_custom_field: 사용자 정의 항목
227 label_custom_field: 사용자 정의 항목
228 label_custom_field_plural: 사용자 정의 항목
228 label_custom_field_plural: 사용자 정의 항목
229 label_custom_field_new: 새로운 사용자 정의 항목
229 label_custom_field_new: 새로운 사용자 정의 항목
230 label_enumerations: 코드값 설정
230 label_enumerations: 코드값 설정
231 label_enumeration_new: 새로운 코드값
231 label_enumeration_new: 새로운 코드값
232 label_information: 정보
232 label_information: 정보
233 label_information_plural: 정보
233 label_information_plural: 정보
234 label_please_login: 로그인하세요.
234 label_please_login: 로그인하세요.
235 label_register: 등록
235 label_register: 등록
236 label_password_lost: 비밀번호 찾기
236 label_password_lost: 비밀번호 찾기
237 label_home: 초기화면
237 label_home: 초기화면
238 label_my_page: 내페이지
238 label_my_page: 내페이지
239 label_my_account: 내계정
239 label_my_account: 내계정
240 label_my_projects: 나의 프로젝트
240 label_my_projects: 나의 프로젝트
241 label_administration: 관리자
241 label_administration: 관리자
242 label_login: 로그인
242 label_login: 로그인
243 label_logout: 로그아웃
243 label_logout: 로그아웃
244 label_help: 도움말
244 label_help: 도움말
245 label_reported_issues: 보고된 이슈
245 label_reported_issues: 보고된 이슈
246 label_assigned_to_me_issues: 나에게 할당된 이슈
246 label_assigned_to_me_issues: 나에게 할당된 이슈
247 label_last_login: 최종 접속
247 label_last_login: 최종 접속
248 label_last_updates: 최종 변경 내역
248 label_last_updates: 최종 변경 내역
249 label_last_updates_plural: 최종변경 %d
249 label_last_updates_plural: 최종변경 %d
250 label_registered_on: Registered on
250 label_registered_on: Registered on
251 label_activity: 진행중인 작업
251 label_activity: 진행중인 작업
252 label_new: 신규
252 label_new: 신규
253 label_logged_as:
253 label_logged_as:
254 label_environment: 환경
254 label_environment: 환경
255 label_authentication: 인증설정
255 label_authentication: 인증설정
256 label_auth_source: 인증 모드
256 label_auth_source: 인증 모드
257 label_auth_source_new: 신규 인증 모드
257 label_auth_source_new: 신규 인증 모드
258 label_auth_source_plural: 인증 모드
258 label_auth_source_plural: 인증 모드
259 label_subproject_plural: 서브 프로젝트
259 label_subproject_plural: 서브 프로젝트
260 label_min_max_length: 최소 - 최대 길이
260 label_min_max_length: 최소 - 최대 길이
261 label_list: 리스트
261 label_list: 리스트
262 label_date: 날짜
262 label_date: 날짜
263 label_integer: 정수
263 label_integer: 정수
264 label_float: 부동상수
264 label_float: 부동상수
265 label_boolean: 부울린
265 label_boolean: 부울린
266 label_string: 문자열
266 label_string: 문자열
267 label_text: 텍스트
267 label_text: 텍스트
268 label_attribute: 속성
268 label_attribute: 속성
269 label_attribute_plural: 속성
269 label_attribute_plural: 속성
270 label_download: %d 다운로드
270 label_download: %d 다운로드
271 label_download_plural: %d 다운로드
271 label_download_plural: %d 다운로드
272 label_no_data: 데이터가 없습니다.
272 label_no_data: 데이터가 없습니다.
273 label_change_status: 상태 변경
273 label_change_status: 상태 변경
274 label_history: 히스토리
274 label_history: 히스토리
275 label_attachment: 파일
275 label_attachment: 파일
276 label_attachment_new: 파일추가
276 label_attachment_new: 파일추가
277 label_attachment_delete: 파일삭제
277 label_attachment_delete: 파일삭제
278 label_attachment_plural: 관련파일
278 label_attachment_plural: 관련파일
279 label_report: 보고서
279 label_report: 보고서
280 label_report_plural: 보고서
280 label_report_plural: 보고서
281 label_news: 뉴스
281 label_news: 뉴스
282 label_news_new: 뉴스추가
282 label_news_new: 뉴스추가
283 label_news_plural: 뉴스
283 label_news_plural: 뉴스
284 label_news_latest: 최근 뉴스
284 label_news_latest: 최근 뉴스
285 label_news_view_all: 모든 뉴스
285 label_news_view_all: 모든 뉴스
286 label_change_log: 변경 로그
286 label_change_log: 변경 로그
287 label_settings: 설정
287 label_settings: 설정
288 label_overview: 개요
288 label_overview: 개요
289 label_version: 버전
289 label_version: 버전
290 label_version_new: 새로운 버전
290 label_version_new: 새로운 버전
291 label_version_plural: 버전
291 label_version_plural: 버전
292 label_confirmation: 확인
292 label_confirmation: 확인
293 label_export_to: 내보내기
293 label_export_to: 내보내기
294 label_read: 읽기...
294 label_read: 읽기...
295 label_public_projects: 공개된 프로젝트
295 label_public_projects: 공개된 프로젝트
296 label_open_issues: 진행중
296 label_open_issues: 진행중
297 label_open_issues_plural: 진행중
297 label_open_issues_plural: 진행중
298 label_closed_issues: 완료됨
298 label_closed_issues: 완료됨
299 label_closed_issues_plural: 완료됨
299 label_closed_issues_plural: 완료됨
300 label_total: Total
300 label_total: Total
301 label_permissions: 허가권한
301 label_permissions: 허가권한
302 label_current_status: 이슈 상태
302 label_current_status: 이슈 상태
303 label_new_statuses_allowed: 허용되는 이슈 상태
303 label_new_statuses_allowed: 허용되는 이슈 상태
304 label_all: 모두
304 label_all: 모두
305 label_none: 없음
305 label_none: 없음
306 label_next: 다음
306 label_next: 다음
307 label_previous: 이전
307 label_previous: 이전
308 label_used_by: 사용됨
308 label_used_by: 사용됨
309 label_details: 상세
309 label_details: 상세
310 label_add_note: 이슈노트 추가
310 label_add_note: 이슈노트 추가
311 label_per_page: 페이지별
311 label_per_page: 페이지별
312 label_calendar: 달력
312 label_calendar: 달력
313 label_months_from: 개월 동안 | 다음부터
313 label_months_from: 개월 동안 | 다음부터
314 label_gantt: Gantt 챠트
314 label_gantt: Gantt 챠트
315 label_internal: Internal
315 label_internal: Internal
316 label_last_changes: 지난 변경사항 %d 건
316 label_last_changes: 지난 변경사항 %d 건
317 label_change_view_all: 모든 변경 내역 보기
317 label_change_view_all: 모든 변경 내역 보기
318 label_personalize_page: 입맛대로 구성하기(Drag & Drop)
318 label_personalize_page: 입맛대로 구성하기(Drag & Drop)
319 label_comment: 댓글
319 label_comment: 댓글
320 label_comment_plural: 댓글
320 label_comment_plural: 댓글
321 label_comment_add: 댓글 추가
321 label_comment_add: 댓글 추가
322 label_comment_added: 댓글이 추가되었습니다.
322 label_comment_added: 댓글이 추가되었습니다.
323 label_comment_delete: 댓글 삭제
323 label_comment_delete: 댓글 삭제
324 label_query: 사용자 검색조건
324 label_query: 사용자 검색조건
325 label_query_plural: 사용자 검색조건
325 label_query_plural: 사용자 검색조건
326 label_query_new: 새로운 사용자 검색조건
326 label_query_new: 새로운 사용자 검색조건
327 label_filter_add: 필터 추가
327 label_filter_add: 필터 추가
328 label_filter_plural: 필터
328 label_filter_plural: 필터
329 label_equals: 이다
329 label_equals: 이다
330 label_not_equals: 아니다
330 label_not_equals: 아니다
331 label_in_less_than: 이내
331 label_in_less_than: 이내
332 label_in_more_than: 이후
332 label_in_more_than: 이후
333 label_in: 이내
333 label_in: 이내
334 label_today: 오늘
334 label_today: 오늘
335 label_this_week: 이번주
335 label_this_week: 이번주
336 label_less_than_ago: 이전
336 label_less_than_ago: 이전
337 label_more_than_ago: 이후
337 label_more_than_ago: 이후
338 label_ago: 일 전
338 label_ago: 일 전
339 label_contains: 포함되는 키워드
339 label_contains: 포함되는 키워드
340 label_not_contains: 포함하지 않는 키워드
340 label_not_contains: 포함하지 않는 키워드
341 label_day_plural:
341 label_day_plural:
342 label_repository: 저장소
342 label_repository: 저장소
343 label_browse: 저장소 살피기
343 label_browse: 저장소 살피기
344 label_modification: %d 변경
344 label_modification: %d 변경
345 label_modification_plural: %d 변경
345 label_modification_plural: %d 변경
346 label_revision: 개정판(Revision)
346 label_revision: 개정판(Revision)
347 label_revision_plural: 개정판(Revisions)
347 label_revision_plural: 개정판(Revisions)
348 label_added: added
348 label_added: added
349 label_modified: modified
349 label_modified: modified
350 label_deleted: deleted
350 label_deleted: deleted
351 label_latest_revision: 최근 개정판
351 label_latest_revision: 최근 개정판
352 label_latest_revision_plural: 최근 개정판
352 label_latest_revision_plural: 최근 개정판
353 label_view_revisions: 개정판 보기
353 label_view_revisions: 개정판 보기
354 label_max_size: 최대 크기
354 label_max_size: 최대 크기
355 label_on: 'on'
355 label_on: 'on'
356 label_sort_highest: 최상단으로
356 label_sort_highest: 최상단으로
357 label_sort_higher: 위로
357 label_sort_higher: 위로
358 label_sort_lower: 아래로
358 label_sort_lower: 아래로
359 label_sort_lowest: 최하단으로
359 label_sort_lowest: 최하단으로
360 label_roadmap: 로드맵
360 label_roadmap: 로드맵
361 label_roadmap_due_in: 기한
361 label_roadmap_due_in: 기한
362 label_roadmap_overdue: %s 지연
362 label_roadmap_overdue: %s 지연
363 label_roadmap_no_issues: 이버전에 해당하는 이슈 없음
363 label_roadmap_no_issues: 이버전에 해당하는 이슈 없음
364 label_search: 검색
364 label_search: 검색
365 label_result_plural: 결과
365 label_result_plural: 결과
366 label_all_words: 모든 단어
366 label_all_words: 모든 단어
367 label_wiki: 위키
367 label_wiki: 위키
368 label_wiki_edit: 위키 편집
368 label_wiki_edit: 위키 편집
369 label_wiki_edit_plural: 위키 편집
369 label_wiki_edit_plural: 위키 편집
370 label_wiki_page: 위키
370 label_wiki_page: 위키
371 label_wiki_page_plural: 위키
371 label_wiki_page_plural: 위키
372 label_index_by_title: 제목별 색인
372 label_index_by_title: 제목별 색인
373 label_index_by_date: 날짜별 색인
373 label_index_by_date: 날짜별 색인
374 label_current_version: 현재 버전
374 label_current_version: 현재 버전
375 label_preview: 미리보기
375 label_preview: 미리보기
376 label_feed_plural: 피드(Feeds)
376 label_feed_plural: 피드(Feeds)
377 label_changes_details: 모든 상세 변경 내역
377 label_changes_details: 모든 상세 변경 내역
378 label_issue_tracking: 이슈 추적
378 label_issue_tracking: 이슈 추적
379 label_spent_time: 작업 시간
379 label_spent_time: 작업 시간
380 label_f_hour: %.2f 시간
380 label_f_hour: %.2f 시간
381 label_f_hour_plural: %.2f 시간
381 label_f_hour_plural: %.2f 시간
382 label_time_tracking: 시간추적
382 label_time_tracking: 시간추적
383 label_change_plural: 변경사항들
383 label_change_plural: 변경사항들
384 label_statistics: 통계
384 label_statistics: 통계
385 label_commits_per_month: 월별 커밋 내역
385 label_commits_per_month: 월별 커밋 내역
386 label_commits_per_author: 아이디별 커밋 내역
386 label_commits_per_author: 아이디별 커밋 내역
387 label_view_diff: diff 보기
387 label_view_diff: diff 보기
388 label_diff_inline: 한줄로
388 label_diff_inline: 한줄로
389 label_diff_side_by_side: 두줄로
389 label_diff_side_by_side: 두줄로
390 label_options: Options
390 label_options: Options
391 label_copy_workflow_from: Copy workflow from
391 label_copy_workflow_from: Copy workflow from
392 label_permissions_report: 권한 보고서
392 label_permissions_report: 권한 보고서
393 label_watched_issues: 감시중인 이슈
393 label_watched_issues: 감시중인 이슈
394 label_related_issues: 연결된 이슈
394 label_related_issues: 연결된 이슈
395 label_applied_status: Applied status
395 label_applied_status: Applied status
396 label_loading: 읽는 중...
396 label_loading: 읽는 중...
397 label_relation_new: New relation
397 label_relation_new: New relation
398 label_relation_delete: Delete relation
398 label_relation_delete: Delete relation
399 label_relates_to: 다음 이슈와 관련되어 있음
399 label_relates_to: 다음 이슈와 관련되어 있음
400 label_duplicates: 다음 이슈와 중복됨.
400 label_duplicates: 다음 이슈와 중복됨.
401 label_blocks: 다음 이슈가 해결을 막고 있음.
401 label_blocks: 다음 이슈가 해결을 막고 있음.
402 label_blocked_by: 막고 있는 이슈
402 label_blocked_by: 막고 있는 이슈
403 label_precedes: 다음 이슈보다 앞서서 처리해야 함.
403 label_precedes: 다음 이슈보다 앞서서 처리해야 함.
404 label_follows: 선처리 이슈
404 label_follows: 선처리 이슈
405 label_end_to_start: end to start
405 label_end_to_start: end to start
406 label_end_to_end: end to end
406 label_end_to_end: end to end
407 label_start_to_start: start to start
407 label_start_to_start: start to start
408 label_start_to_end: start to end
408 label_start_to_end: start to end
409 label_stay_logged_in: 로그인 유지
409 label_stay_logged_in: 로그인 유지
410 label_disabled: 비활성화
410 label_disabled: 비활성화
411 label_show_completed_versions: 완료된 버전 보기
411 label_show_completed_versions: 완료된 버전 보기
412 label_me:
412 label_me:
413 label_board: 게시판
413 label_board: 게시판
414 label_board_new: 신규 게시판
414 label_board_new: 신규 게시판
415 label_board_plural: 게시판
415 label_board_plural: 게시판
416 label_topic_plural: 주제
416 label_topic_plural: 주제
417 label_message_plural: 관련글
417 label_message_plural: 관련글
418 label_message_last: 최종 글
418 label_message_last: 최종 글
419 label_message_new: 새글쓰기
419 label_message_new: 새글쓰기
420 label_reply_plural: 답글
420 label_reply_plural: 답글
421 label_send_information: 사용자에게 계정정보를 보냄
421 label_send_information: 사용자에게 계정정보를 보냄
422 label_year:
422 label_year:
423 label_month:
423 label_month:
424 label_week:
424 label_week:
425 label_date_from: 에서
425 label_date_from: 에서
426 label_date_to: (으)로
426 label_date_to: (으)로
427 label_language_based: Language based
427 label_language_based: Language based
428 label_sort_by: 정렬방법(%s)
428 label_sort_by: 정렬방법(%s)
429 label_send_test_email: 테스트 메일 보내기
429 label_send_test_email: 테스트 메일 보내기
430 label_feeds_access_key_created_on: RSS access key created %s ago
430 label_feeds_access_key_created_on: RSS access key created %s ago
431 label_module_plural: 모듈
431 label_module_plural: 모듈
432 label_added_time_by: %s이(가) %s 전에 추가함
432 label_added_time_by: %s이(가) %s 전에 추가함
433 label_updated_time: %s 전에 수정됨
433 label_updated_time: %s 전에 수정됨
434 label_jump_to_a_project: 다른 프로젝트로 이동하기
434 label_jump_to_a_project: 다른 프로젝트로 이동하기
435 label_file_plural: 파일
435 label_file_plural: 파일
436 label_changeset_plural: 변경사항
436 label_changeset_plural: 변경사항
437 label_default_columns: 기본 컬럼
437 label_default_columns: 기본 컬럼
438 label_no_change_option: (수정 안함)
438 label_no_change_option: (수정 안함)
439 label_bulk_edit_selected_issues: 선택된 이슈들을 한꺼번에 수정하기
439 label_bulk_edit_selected_issues: 선택된 이슈들을 한꺼번에 수정하기
440 label_theme: 테마
440 label_theme: 테마
441 label_default: 기본
441 label_default: 기본
442 label_search_titles_only: 제목에서만 찾기
442 label_search_titles_only: 제목에서만 찾기
443 label_user_mail_option_all: "내가 속한 프로젝트로들부터 모든 메일 받기"
443 label_user_mail_option_all: "내가 속한 프로젝트로들부터 모든 메일 받기"
444 label_user_mail_option_selected: "선택한 프로젝트들로부터 모든 메일 받기.."
444 label_user_mail_option_selected: "선택한 프로젝트들로부터 모든 메일 받기.."
445 label_user_mail_option_none: "내가 속하거나 감시 중인 사항에 대해서만"
445 label_user_mail_option_none: "내가 속하거나 감시 중인 사항에 대해서만"
446
446
447 button_login: 로그인
447 button_login: 로그인
448 button_submit: 확인
448 button_submit: 확인
449 button_save: 저장
449 button_save: 저장
450 button_check_all: 모두선택
450 button_check_all: 모두선택
451 button_uncheck_all: 선택해제
451 button_uncheck_all: 선택해제
452 button_delete: 삭제
452 button_delete: 삭제
453 button_create: 완료
453 button_create: 완료
454 button_test: 테스트
454 button_test: 테스트
455 button_edit: 편집
455 button_edit: 편집
456 button_add: 추가
456 button_add: 추가
457 button_change: 변경
457 button_change: 변경
458 button_apply: 적용
458 button_apply: 적용
459 button_clear: 초기화
459 button_clear: 초기화
460 button_lock: 잠금
460 button_lock: 잠금
461 button_unlock: 잠금해제
461 button_unlock: 잠금해제
462 button_download: 다운로드
462 button_download: 다운로드
463 button_list: 목록
463 button_list: 목록
464 button_view: 보기
464 button_view: 보기
465 button_move: 이동
465 button_move: 이동
466 button_back: 뒤로
466 button_back: 뒤로
467 button_cancel: 취소
467 button_cancel: 취소
468 button_activate: 활성화
468 button_activate: 활성화
469 button_sort: 정렬
469 button_sort: 정렬
470 button_log_time: 작업시간 기록
470 button_log_time: 작업시간 기록
471 button_rollback: 이 버전으로 롤백
471 button_rollback: 이 버전으로 롤백
472 button_watch: 감시하기
472 button_watch: 감시하기
473 button_unwatch: 감시해제
473 button_unwatch: 감시해제
474 button_reply: 답글
474 button_reply: 답글
475 button_archive: 잠금보관
475 button_archive: 잠금보관
476 button_unarchive: 잠금보관해제
476 button_unarchive: 잠금보관해제
477 button_reset: 리셋
477 button_reset: 리셋
478 button_rename: 이름 변경
478 button_rename: 이름 변경
479
479
480 status_active: 사용중
480 status_active: 사용중
481 status_registered: 등록대기
481 status_registered: 등록대기
482 status_locked: 잠김
482 status_locked: 잠김
483
483
484 text_select_mail_notifications: 알림메일이 필요한 작업을 선택하세요.
484 text_select_mail_notifications: 알림메일이 필요한 작업을 선택하세요.
485 text_regexp_info: 예) ^[A-Z0-9]+$
485 text_regexp_info: 예) ^[A-Z0-9]+$
486 text_min_max_length_info: 0 는 제한이 없음을 의미함
486 text_min_max_length_info: 0 는 제한이 없음을 의미함
487 text_project_destroy_confirmation: 이 프로젝트를 삭제하고 모든 데이터를 지우시겠습니까?
487 text_project_destroy_confirmation: 이 프로젝트를 삭제하고 모든 데이터를 지우시겠습니까?
488 text_workflow_edit: 워크플로를 수정하기 위해서 역할과 이슈유형을 선택하세요.
488 text_workflow_edit: 워크플로를 수정하기 위해서 역할과 이슈유형을 선택하세요.
489 text_are_you_sure: 계속 진행 하시겠습니까?
489 text_are_you_sure: 계속 진행 하시겠습니까?
490 text_journal_changed: %s에서 %s(으)로 변경
490 text_journal_changed: %s에서 %s(으)로 변경
491 text_journal_set_to: %s로 설정
491 text_journal_set_to: %s로 설정
492 text_journal_deleted: 삭제됨
492 text_journal_deleted: 삭제됨
493 text_tip_task_begin_day: 오늘 시작하는 업무(task)
493 text_tip_task_begin_day: 오늘 시작하는 업무(task)
494 text_tip_task_end_day: 오늘 종료하는 업무(task)
494 text_tip_task_end_day: 오늘 종료하는 업무(task)
495 text_tip_task_begin_end_day: 오늘 시작하고 종료하는 업무(task)
495 text_tip_task_begin_end_day: 오늘 시작하고 종료하는 업무(task)
496 text_project_identifier_info: '영문 소문자 (a-z), 숫자 대쉬(-) 가능.<br />저장된후에는 식별자 변경 불가능.'
496 text_project_identifier_info: '영문 소문자 (a-z), 숫자 대쉬(-) 가능.<br />저장된후에는 식별자 변경 불가능.'
497 text_caracters_maximum: 최대 %d 글자 가능.
497 text_caracters_maximum: 최대 %d 글자 가능.
498 text_length_between: %d 에서 %d 글자
498 text_length_between: %d 에서 %d 글자
499 text_tracker_no_workflow: 이 추적타입(tracker)에 워크플로우가 정의되지 않았습니다.
499 text_tracker_no_workflow: 이 추적타입(tracker)에 워크플로우가 정의되지 않았습니다.
500 text_unallowed_characters: 허용되지 않는 문자열
500 text_unallowed_characters: 허용되지 않는 문자열
501 text_comma_separated: 복수의 값들이 허용됩니다.(구분자 ,)
501 text_comma_separated: 복수의 값들이 허용됩니다.(구분자 ,)
502 text_issues_ref_in_commit_messages: 커밋메시지에서 이슈를 참조하거나 해결하기
502 text_issues_ref_in_commit_messages: 커밋메시지에서 이슈를 참조하거나 해결하기
503 text_issue_added: 이슈[%s]가 보고되었습니다.
503 text_issue_added: 이슈[%s]가 보고되었습니다.
504 text_issue_updated: 이슈[%s]가 수정되었습니다.
504 text_issue_updated: 이슈[%s]가 수정되었습니다.
505 text_wiki_destroy_confirmation: 이 위키와 모든 내용을 지우시겠습니까?
505 text_wiki_destroy_confirmation: 이 위키와 모든 내용을 지우시겠습니까?
506 text_issue_category_destroy_question: 일부 이슈들(%d개)이 이 카테고리에 할당되어 있습니다. 어떻게 하시겠습니까?
506 text_issue_category_destroy_question: 일부 이슈들(%d개)이 이 카테고리에 할당되어 있습니다. 어떻게 하시겠습니까?
507 text_issue_category_destroy_assignments: 카테고리 할당 지우기
507 text_issue_category_destroy_assignments: 카테고리 할당 지우기
508 text_issue_category_reassign_to: 이슈를 이 카테고리에 다시 할당하기
508 text_issue_category_reassign_to: 이슈를 이 카테고리에 다시 할당하기
509 text_user_mail_option: "선택하지 않은 프로젝트에서도, 모니터링 중이거나 속해있는 사항(이슈를 발행했거나 할당된 경우)이 있으면 알림메일을 받게 됩니다."
509 text_user_mail_option: "선택하지 않은 프로젝트에서도, 모니터링 중이거나 속해있는 사항(이슈를 발행했거나 할당된 경우)이 있으면 알림메일을 받게 됩니다."
510
510
511 default_role_manager: 관리자
511 default_role_manager: 관리자
512 default_role_developper: 개발자
512 default_role_developper: 개발자
513 default_role_reporter: 보고자
513 default_role_reporter: 보고자
514 default_tracker_bug: 버그
514 default_tracker_bug: 버그
515 default_tracker_feature: 새기능
515 default_tracker_feature: 새기능
516 default_tracker_support: 지원
516 default_tracker_support: 지원
517 default_issue_status_new: 신규
517 default_issue_status_new: 신규
518 default_issue_status_assigned: 확인
518 default_issue_status_assigned: 확인
519 default_issue_status_resolved: 해결
519 default_issue_status_resolved: 해결
520 default_issue_status_feedback: 피드백
520 default_issue_status_feedback: 피드백
521 default_issue_status_closed: 완료
521 default_issue_status_closed: 완료
522 default_issue_status_rejected: 재처리
522 default_issue_status_rejected: 재처리
523 default_doc_category_user: 사용자 문서
523 default_doc_category_user: 사용자 문서
524 default_doc_category_tech: 기술 문서
524 default_doc_category_tech: 기술 문서
525 default_priority_low: 낮음
525 default_priority_low: 낮음
526 default_priority_normal: 보통
526 default_priority_normal: 보통
527 default_priority_high: 높음
527 default_priority_high: 높음
528 default_priority_urgent: 긴급
528 default_priority_urgent: 긴급
529 default_priority_immediate: 즉시
529 default_priority_immediate: 즉시
530 default_activity_design: 설계
530 default_activity_design: 설계
531 default_activity_development: 개발
531 default_activity_development: 개발
532
532
533 enumeration_issue_priorities: 이슈 우선순위
533 enumeration_issue_priorities: 이슈 우선순위
534 enumeration_doc_categories: 문서 카테고리
534 enumeration_doc_categories: 문서 카테고리
535 enumeration_activities: 진행활동(시간 추적)
535 enumeration_activities: 진행활동(시간 추적)
536 button_copy: 복사
536 button_copy: 복사
537 mail_body_account_information_external: 레드마인에 로그인할 때 "%s" 계정을 사용하실 수 있습니다.
537 mail_body_account_information_external: 레드마인에 로그인할 때 "%s" 계정을 사용하실 수 있습니다.
538 button_change_password: 비밀번호 변경
538 button_change_password: 비밀번호 변경
539 label_nobody: nobody
539 label_nobody: nobody
540 setting_protocol: 프로토콜
540 setting_protocol: 프로토콜
541 mail_body_account_information: 계정 정보
541 mail_body_account_information: 계정 정보
542 label_user_mail_no_self_notified: "내가 만든 변경사항들에 대해서는 알림메일을 받지 않습니다."
542 label_user_mail_no_self_notified: "내가 만든 변경사항들에 대해서는 알림메일을 받지 않습니다."
543 setting_time_format: 시간 형식
543 setting_time_format: 시간 형식
544 label_registration_activation_by_email: 메일로 계정을 활성화하기
544 label_registration_activation_by_email: 메일로 계정을 활성화하기
545 mail_subject_account_activation_request: 레드마인 계정 활성화 요청 (%s)
545 mail_subject_account_activation_request: 레드마인 계정 활성화 요청 (%s)
546 mail_body_account_activation_request: '새 계정(%s)이 등록되었습니다. 관리자님의 승인을 기다리고 있습니다.:'
546 mail_body_account_activation_request: '새 계정(%s)이 등록되었습니다. 관리자님의 승인을 기다리고 있습니다.:'
547 label_registration_automatic_activation: 자동 계정 활성화
547 label_registration_automatic_activation: 자동 계정 활성화
548 label_registration_manual_activation: 수동 계정 활성화
548 label_registration_manual_activation: 수동 계정 활성화
549 notice_account_pending: "계정이 만들어 졌습니다. 관리자의 승인이 있을 때까지 기다려야 합니다."
549 notice_account_pending: "계정이 만들어 졌습니다. 관리자의 승인이 있을 때까지 기다려야 합니다."
550 field_time_zone: 타임존
550 field_time_zone: 타임존
551 text_caracters_minimum: 최소한 %d 글자 이상이어야 합니다.
551 text_caracters_minimum: 최소한 %d 글자 이상이어야 합니다.
552 setting_bcc_recipients: 참조자들을 bcc로 숨기기
552 setting_bcc_recipients: 참조자들을 bcc로 숨기기
553 button_annotate: Annotate
553 button_annotate: Annotate
554 label_issues_by: Issues by %s
554 label_issues_by: Issues by %s
555 field_searchable: 검색가능
555 field_searchable: 검색가능
556 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
557 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
558 label_age: Age
558 label_age: Age
559 notice_default_data_loaded: 기본 설정을 성공적으로 로드하였습니다.
559 notice_default_data_loaded: 기본 설정을 성공적으로 로드하였습니다.
560 text_load_default_configuration: 기본 설정을 로딩하기
560 text_load_default_configuration: 기본 설정을 로딩하기
561 text_no_configuration_data: "역할, 이슈 타입, 이슈 상태들과 워크플로가 아직 설정되지 않았습니다.\n기본 설정을 로딩하는 것을 권장합니다. 로드된 후에 수정할 있습니다."
561 text_no_configuration_data: "역할, 이슈 타입, 이슈 상태들과 워크플로가 아직 설정되지 않았습니다.\n기본 설정을 로딩하는 것을 권장합니다. 로드된 후에 수정할 있습니다."
562 error_can_t_load_default_data: "기본 설정을 로드할 없습니다.: %s"
562 error_can_t_load_default_data: "기본 설정을 로드할 없습니다.: %s"
563 button_update: 변경사항기록
563 button_update: 변경사항기록
564 label_change_properties: 속성 변경
564 label_change_properties: 속성 변경
565 label_general: 일반
565 label_general: 일반
566 label_repository_plural: 저장소들
566 label_repository_plural: 저장소들
567 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
568 setting_user_format: Users display format
568 setting_user_format: Users display format
569 text_status_changed_by_changeset: Applied in changeset %s.
569 text_status_changed_by_changeset: Applied in changeset %s.
570 label_more: More
570 label_more: More
571 text_issues_destroy_confirmation: '선택한 이슈를 정말로 삭제하시겠습니까?'
571 text_issues_destroy_confirmation: '선택한 이슈를 정말로 삭제하시겠습니까?'
572 label_scm: SCM
572 label_scm: SCM
573 text_select_project_modules: '이 프로젝트에서 활성화시킬 모듈을 선택하세요:'
573 text_select_project_modules: '이 프로젝트에서 활성화시킬 모듈을 선택하세요:'
574 label_issue_added: Issue added
574 label_issue_added: Issue added
575 label_issue_updated: Issue updated
575 label_issue_updated: Issue updated
576 label_document_added: Document added
576 label_document_added: Document added
577 label_message_posted: Message added
577 label_message_posted: Message added
578 label_file_added: File added
578 label_file_added: File added
579 label_news_added: News added
579 label_news_added: News added
580 project_module_boards: 게시판
580 project_module_boards: 게시판
581 project_module_issue_tracking: 이슈관리
581 project_module_issue_tracking: 이슈관리
582 project_module_wiki: 위키
582 project_module_wiki: 위키
583 project_module_files: 관련파일
583 project_module_files: 관련파일
584 project_module_documents: 문서
584 project_module_documents: 문서
585 project_module_repository: 저장소
585 project_module_repository: 저장소
586 project_module_news: 뉴스
586 project_module_news: 뉴스
587 project_module_time_tracking: Time tracking
587 project_module_time_tracking: Time tracking
588 text_file_repository_writable: File repository writable
588 text_file_repository_writable: File repository writable
589 text_default_administrator_account_changed: 기본 관리자 계정이 변경되었습니다.
589 text_default_administrator_account_changed: 기본 관리자 계정이 변경되었습니다.
590 text_rmagick_available: RMagick available (optional)
590 text_rmagick_available: RMagick available (optional)
591 button_configure: 설정
591 button_configure: 설정
592 label_plugins: 플러그인
592 label_plugins: 플러그인
593 label_ldap_authentication: LDAP 인증
593 label_ldap_authentication: LDAP 인증
594 label_downloads_abbr: D/L
594 label_downloads_abbr: D/L
595 label_add_another_file: Add another file
595 label_add_another_file: Add another file
596 label_this_month: this month
596 label_this_month: this month
597 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
597 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
598 label_last_n_days: last %d days
598 label_last_n_days: last %d days
599 label_all_time: all time
599 label_all_time: all time
600 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
600 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
601 label_this_year: this year
601 label_this_year: this year
602 text_assign_time_entries_to_project: Assign reported hours to the project
602 text_assign_time_entries_to_project: Assign reported hours to the project
603 label_date_range: Date range
603 label_date_range: Date range
604 label_last_week: last week
604 label_last_week: last week
605 label_yesterday: yesterday
605 label_yesterday: yesterday
606 label_optional_description: Optional description
606 label_optional_description: Optional description
607 label_last_month: last month
607 label_last_month: last month
608 text_destroy_time_entries: Delete reported hours
608 text_destroy_time_entries: Delete reported hours
609 text_reassign_time_entries: 'Reassign reported hours to this issue:'
609 text_reassign_time_entries: 'Reassign reported hours to this issue:'
610 setting_activity_days_default: Days displayed on project activity
610 setting_activity_days_default: Days displayed on project activity
611 label_chronological_order: In chronological order
611 label_chronological_order: In chronological order
612 field_comments_sorting: Display comments
612 field_comments_sorting: Display comments
613 label_reverse_chronological_order: In reverse chronological order
613 label_reverse_chronological_order: In reverse chronological order
614 label_preferences: Preferences
614 label_preferences: Preferences
615 setting_display_subprojects_issues: Display subprojects issues on main projects by default
615 setting_display_subprojects_issues: Display subprojects issues on main projects by default
616 label_overall_activity: Overall activity
616 label_overall_activity: Overall activity
617 setting_default_projects_public: New projects are public by default
617 setting_default_projects_public: New projects are public by default
618 error_scm_annotate: "The entry does not exist or can not be annotated."
618 error_scm_annotate: "The entry does not exist or can not be annotated."
619 label_planning: Planning
619 label_planning: Planning
620 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
620 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
621 label_and_its_subprojects: %s and its subprojects
621 label_and_its_subprojects: %s and its subprojects
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
623 mail_subject_reminder: "%d issue(s) due in the next days"
623 mail_subject_reminder: "%d issue(s) due in the next days"
624 text_user_wrote: '%s wrote:'
624 text_user_wrote: '%s wrote:'
625 label_duplicated_by: duplicated by
625 label_duplicated_by: duplicated by
626 setting_enabled_scm: Enabled SCM
626 setting_enabled_scm: Enabled SCM
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 label_incoming_emails: Incoming emails
630 label_generate_key: Generate a key
631 setting_mail_handler_api_enabled: Enable WS for incoming emails
632 setting_mail_handler_api_key: API key
@@ -1,630 +1,634
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: sausis,vasaris,kovas,balandis,gegužė,birželis,liepa,rugpjūtis,rugsėjis,spalis,lapkritis,gruodis
4 actionview_datehelper_select_month_names: sausis,vasaris,kovas,balandis,gegužė,birželis,liepa,rugpjūtis,rugsėjis,spalis,lapkritis,gruodis
5 actionview_datehelper_select_month_names_abbr: Sau,Vas,Kov,Bal,Geg,Brž,Lie,Rgp,Rgs,Spl,Lap,Grd
5 actionview_datehelper_select_month_names_abbr: Sau,Vas,Kov,Bal,Geg,Brž,Lie,Rgp,Rgs,Spl,Lap,Grd
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 diena
8 actionview_datehelper_time_in_words_day: 1 diena
9 actionview_datehelper_time_in_words_day_plural: %d dienų
9 actionview_datehelper_time_in_words_day_plural: %d dienų
10 actionview_datehelper_time_in_words_hour_about: apytiksliai valanda
10 actionview_datehelper_time_in_words_hour_about: apytiksliai valanda
11 actionview_datehelper_time_in_words_hour_about_plural: apie %d valandas
11 actionview_datehelper_time_in_words_hour_about_plural: apie %d valandas
12 actionview_datehelper_time_in_words_hour_about_single: apytiksliai valanda
12 actionview_datehelper_time_in_words_hour_about_single: apytiksliai valanda
13 actionview_datehelper_time_in_words_minute: 1 minutė
13 actionview_datehelper_time_in_words_minute: 1 minutė
14 actionview_datehelper_time_in_words_minute_half: pusė minutės
14 actionview_datehelper_time_in_words_minute_half: pusė minutės
15 actionview_datehelper_time_in_words_minute_less_than: mažiau kaip minutė
15 actionview_datehelper_time_in_words_minute_less_than: mažiau kaip minutė
16 actionview_datehelper_time_in_words_minute_plural: %d minutės
16 actionview_datehelper_time_in_words_minute_plural: %d minutės
17 actionview_datehelper_time_in_words_minute_single: 1 minutė
17 actionview_datehelper_time_in_words_minute_single: 1 minutė
18 actionview_datehelper_time_in_words_second_less_than: mažiau kaip sekundė
18 actionview_datehelper_time_in_words_second_less_than: mažiau kaip sekundė
19 actionview_datehelper_time_in_words_second_less_than_plural: mažiau, negu %d sekundės
19 actionview_datehelper_time_in_words_second_less_than_plural: mažiau, negu %d sekundės
20 actionview_instancetag_blank_option: prašom išrinkti
20 actionview_instancetag_blank_option: prašom išrinkti
21
21
22 activerecord_error_inclusion: nėra įtrauktas į sąrašą
22 activerecord_error_inclusion: nėra įtrauktas į sąrašą
23 activerecord_error_exclusion: yra rezervuota(as)
23 activerecord_error_exclusion: yra rezervuota(as)
24 activerecord_error_invalid: yra negaliojanti(is)
24 activerecord_error_invalid: yra negaliojanti(is)
25 activerecord_error_confirmation: neatitinka patvirtinimo
25 activerecord_error_confirmation: neatitinka patvirtinimo
26 activerecord_error_accepted: turi būti priimtas
26 activerecord_error_accepted: turi būti priimtas
27 activerecord_error_empty: negali būti tuščiu
27 activerecord_error_empty: negali būti tuščiu
28 activerecord_error_blank: negali būti tuščiu
28 activerecord_error_blank: negali būti tuščiu
29 activerecord_error_too_long: yra per ilgas
29 activerecord_error_too_long: yra per ilgas
30 activerecord_error_too_short: yra per trumpas
30 activerecord_error_too_short: yra per trumpas
31 activerecord_error_wrong_length: neteisingas ilgis
31 activerecord_error_wrong_length: neteisingas ilgis
32 activerecord_error_taken: buvo jau paimtas
32 activerecord_error_taken: buvo jau paimtas
33 activerecord_error_not_a_number: nėra skaičius
33 activerecord_error_not_a_number: nėra skaičius
34 activerecord_error_not_a_date: data nėra galiojanti
34 activerecord_error_not_a_date: data nėra galiojanti
35 activerecord_error_greater_than_start_date: turi būti didesnė negu pradžios data
35 activerecord_error_greater_than_start_date: turi būti didesnė negu pradžios data
36 activerecord_error_not_same_project: nepriklauso tam pačiam projektui
36 activerecord_error_not_same_project: nepriklauso tam pačiam projektui
37 activerecord_error_circular_dependency: Šis ryšys sukurtų ciklinę priklausomybę
37 activerecord_error_circular_dependency: Šis ryšys sukurtų ciklinę priklausomybę
38
38
39 general_fmt_age: %d m.
39 general_fmt_age: %d m.
40 general_fmt_age_plural: %d metų(ai)
40 general_fmt_age_plural: %d metų(ai)
41 general_fmt_date: %%Y-%%m-%%d
41 general_fmt_date: %%Y-%%m-%%d
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Ne'
45 general_text_No: 'Ne'
46 general_text_Yes: 'Taip'
46 general_text_Yes: 'Taip'
47 general_text_no: 'ne'
47 general_text_no: 'ne'
48 general_text_yes: 'taip'
48 general_text_yes: 'taip'
49 general_lang_name: 'Lithuanian (lietuvių)'
49 general_lang_name: 'Lithuanian (lietuvių)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: UTF-8
51 general_csv_encoding: UTF-8
52 general_pdf_encoding: UTF-8
52 general_pdf_encoding: UTF-8
53 general_day_names: pirmadienis,antradienis,trečiadienis,ketvirtadienis,penktadienis,šeštadienis,sekmadienis
53 general_day_names: pirmadienis,antradienis,trečiadienis,ketvirtadienis,penktadienis,šeštadienis,sekmadienis
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Paskyra buvo sėkmingai atnaujinta.
56 notice_account_updated: Paskyra buvo sėkmingai atnaujinta.
57 notice_account_invalid_creditentials: Negaliojantis vartotojo vardas ar slaptažodis
57 notice_account_invalid_creditentials: Negaliojantis vartotojo vardas ar slaptažodis
58 notice_account_password_updated: Slaptažodis buvo sėkmingai atnaujintas.
58 notice_account_password_updated: Slaptažodis buvo sėkmingai atnaujintas.
59 notice_account_wrong_password: Neteisingas slaptažodis
59 notice_account_wrong_password: Neteisingas slaptažodis
60 notice_account_register_done: Paskyra buvo sėkmingai sukurta. Kad aktyvintumėte savo paskyrą, paspauskite sąsają, kuri jums buvo siųsta elektroniniu paštu.
60 notice_account_register_done: Paskyra buvo sėkmingai sukurta. Kad aktyvintumėte savo paskyrą, paspauskite sąsają, kuri jums buvo siųsta elektroniniu paštu.
61 notice_account_unknown_email: Nežinomas vartotojas.
61 notice_account_unknown_email: Nežinomas vartotojas.
62 notice_can_t_change_password: Šis pranešimas naudoja išorinį autentiškumo nustatymo šaltinį. Neįmanoma pakeisti slaptažodį.
62 notice_can_t_change_password: Šis pranešimas naudoja išorinį autentiškumo nustatymo šaltinį. Neįmanoma pakeisti slaptažodį.
63 notice_account_lost_email_sent: Į Jūsų pašą išsiūstas laiškas su naujo slaptažodžio pasirinkimo instrukcija.
63 notice_account_lost_email_sent: Į Jūsų pašą išsiūstas laiškas su naujo slaptažodžio pasirinkimo instrukcija.
64 notice_account_activated: Jūsų paskyra aktyvuota. Galite prisijungti.
64 notice_account_activated: Jūsų paskyra aktyvuota. Galite prisijungti.
65 notice_successful_create: Sėkmingas sukūrimas.
65 notice_successful_create: Sėkmingas sukūrimas.
66 notice_successful_update: Sėkmingas atnaujinimas.
66 notice_successful_update: Sėkmingas atnaujinimas.
67 notice_successful_delete: Sėkmingas panaikinimas.
67 notice_successful_delete: Sėkmingas panaikinimas.
68 notice_successful_connection: Sėkmingas susijungimas.
68 notice_successful_connection: Sėkmingas susijungimas.
69 notice_file_not_found: Puslapis, į kurį ketinate įeiti, neegzistuoja arba pašalintas.
69 notice_file_not_found: Puslapis, į kurį ketinate įeiti, neegzistuoja arba pašalintas.
70 notice_locking_conflict: Duomenys atnaujinti kito vartotojo.
70 notice_locking_conflict: Duomenys atnaujinti kito vartotojo.
71 notice_scm_error: Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja.
71 notice_scm_error: Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja.
72 notice_not_authorized: Jūs neturite teisių gauti prieigą prie šio puslapio.
72 notice_not_authorized: Jūs neturite teisių gauti prieigą prie šio puslapio.
73 notice_email_sent: Laiškas išsiųstas %s
73 notice_email_sent: Laiškas išsiųstas %s
74 notice_email_error: Laiško siųntimo metu įvyko klaida (%s)
74 notice_email_error: Laiško siųntimo metu įvyko klaida (%s)
75 notice_feeds_access_key_reseted: Jūsų RSS raktas buvo atnaujintas.
75 notice_feeds_access_key_reseted: Jūsų RSS raktas buvo atnaujintas.
76 notice_failed_to_save_issues: "Nepavyko išsaugoti %d problemos(ų) %d pasirinkto: %s."
76 notice_failed_to_save_issues: "Nepavyko išsaugoti %d problemos(ų) %d pasirinkto: %s."
77 notice_no_issue_selected: "Nepasirinkta viena problema! Prašom pažymėti problemą, kurią norite redaguoti."
77 notice_no_issue_selected: "Nepasirinkta viena problema! Prašom pažymėti problemą, kurią norite redaguoti."
78 notice_account_pending: "Jūsų paskyra buvo sukūrta ir dabar laukiama administratoriaus patvirtinimo."
78 notice_account_pending: "Jūsų paskyra buvo sukūrta ir dabar laukiama administratoriaus patvirtinimo."
79
79
80 error_scm_not_found: "Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja."
80 error_scm_not_found: "Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja."
81 error_scm_command_failed: "Įvyko klaida jungiantis prie saugyklos: %s"
81 error_scm_command_failed: "Įvyko klaida jungiantis prie saugyklos: %s"
82
82
83 mail_subject_lost_password: Jūsų %s slaptažodis
83 mail_subject_lost_password: Jūsų %s slaptažodis
84 mail_body_lost_password: 'Norėdami pakeisti slaptažodį, spauskite nuorodą:'
84 mail_body_lost_password: 'Norėdami pakeisti slaptažodį, spauskite nuorodą:'
85 mail_subject_register: '%s paskyros aktyvavymas'
85 mail_subject_register: '%s paskyros aktyvavymas'
86 mail_body_register: 'Norėdami aktyvuoti paskyrą, spauskite nuorodą:'
86 mail_body_register: 'Norėdami aktyvuoti paskyrą, spauskite nuorodą:'
87 mail_body_account_information_external: Jūs galite naudoti Jūsų "%s" paskyrą, norėdami prisijungti.
87 mail_body_account_information_external: Jūs galite naudoti Jūsų "%s" paskyrą, norėdami prisijungti.
88 mail_body_account_information: Informacija apie Jūsų paskyrą
88 mail_body_account_information: Informacija apie Jūsų paskyrą
89 mail_subject_account_activation_request: %s paskyros aktyvavimo prašymas
89 mail_subject_account_activation_request: %s paskyros aktyvavimo prašymas
90 mail_body_account_activation_request: 'Užsiregistravo naujas vartotojas (%s). Jo paskyra laukia jūsų patvirtinimo:'
90 mail_body_account_activation_request: 'Užsiregistravo naujas vartotojas (%s). Jo paskyra laukia jūsų patvirtinimo:'
91
91
92 gui_validation_error: 1 klaida
92 gui_validation_error: 1 klaida
93 gui_validation_error_plural: %d klaidų(os)
93 gui_validation_error_plural: %d klaidų(os)
94
94
95 field_name: Pavadinimas
95 field_name: Pavadinimas
96 field_description: Aprašas
96 field_description: Aprašas
97 field_summary: Santrauka
97 field_summary: Santrauka
98 field_is_required: Reikalaujama
98 field_is_required: Reikalaujama
99 field_firstname: Vardas
99 field_firstname: Vardas
100 field_lastname: Pavardė
100 field_lastname: Pavardė
101 field_mail: Email
101 field_mail: Email
102 field_filename: Byla
102 field_filename: Byla
103 field_filesize: Dydis
103 field_filesize: Dydis
104 field_downloads: Atsiuntimai
104 field_downloads: Atsiuntimai
105 field_author: Autorius
105 field_author: Autorius
106 field_created_on: Sukūrta
106 field_created_on: Sukūrta
107 field_updated_on: Atnaujinta
107 field_updated_on: Atnaujinta
108 field_field_format: Formatas
108 field_field_format: Formatas
109 field_is_for_all: Visiems projektams
109 field_is_for_all: Visiems projektams
110 field_possible_values: Galimos reikšmės
110 field_possible_values: Galimos reikšmės
111 field_regexp: Pastovi išraiška
111 field_regexp: Pastovi išraiška
112 field_min_length: Minimalus ilgis
112 field_min_length: Minimalus ilgis
113 field_max_length: Maksimalus ilgis
113 field_max_length: Maksimalus ilgis
114 field_value: Vertė
114 field_value: Vertė
115 field_category: Kategorija
115 field_category: Kategorija
116 field_title: Pavadinimas
116 field_title: Pavadinimas
117 field_project: Projektas
117 field_project: Projektas
118 field_issue: Darbas
118 field_issue: Darbas
119 field_status: Būsena
119 field_status: Būsena
120 field_notes: Pastabos
120 field_notes: Pastabos
121 field_is_closed: Darbas uždarytas
121 field_is_closed: Darbas uždarytas
122 field_is_default: Numatytoji vertė
122 field_is_default: Numatytoji vertė
123 field_tracker: Pėdsekys
123 field_tracker: Pėdsekys
124 field_subject: Tema
124 field_subject: Tema
125 field_due_date: Užbaigimo data
125 field_due_date: Užbaigimo data
126 field_assigned_to: Paskirtas
126 field_assigned_to: Paskirtas
127 field_priority: Prioritetas
127 field_priority: Prioritetas
128 field_fixed_version: Target version
128 field_fixed_version: Target version
129 field_user: Vartotojas
129 field_user: Vartotojas
130 field_role: Vaidmuo
130 field_role: Vaidmuo
131 field_homepage: Pagrindinis puslapis
131 field_homepage: Pagrindinis puslapis
132 field_is_public: Viešas
132 field_is_public: Viešas
133 field_parent: Priklauso projektui
133 field_parent: Priklauso projektui
134 field_is_in_chlog: Darbai rodomi pokyčių žurnale
134 field_is_in_chlog: Darbai rodomi pokyčių žurnale
135 field_is_in_roadmap: Darbai rodomi veiklos grafike
135 field_is_in_roadmap: Darbai rodomi veiklos grafike
136 field_login: Registracijos vardas
136 field_login: Registracijos vardas
137 field_mail_notification: Elektroninio pašto pranešimai
137 field_mail_notification: Elektroninio pašto pranešimai
138 field_admin: Administratorius
138 field_admin: Administratorius
139 field_last_login_on: Paskutinis ryšys
139 field_last_login_on: Paskutinis ryšys
140 field_language: Kalba
140 field_language: Kalba
141 field_effective_date: Data
141 field_effective_date: Data
142 field_password: Slaptažodis
142 field_password: Slaptažodis
143 field_new_password: Naujas slaptažodis
143 field_new_password: Naujas slaptažodis
144 field_password_confirmation: Patvirtinimas
144 field_password_confirmation: Patvirtinimas
145 field_version: Versija
145 field_version: Versija
146 field_type: Tipas
146 field_type: Tipas
147 field_host: Pagrindinis kompiuteris
147 field_host: Pagrindinis kompiuteris
148 field_port: Jungtis
148 field_port: Jungtis
149 field_account: Paskyra
149 field_account: Paskyra
150 field_base_dn: Bazinis skiriamasis vardas
150 field_base_dn: Bazinis skiriamasis vardas
151 field_attr_login: Registracijos vardo požymis
151 field_attr_login: Registracijos vardo požymis
152 field_attr_firstname: Vardo priskiria
152 field_attr_firstname: Vardo priskiria
153 field_attr_lastname: Pavardės priskiria
153 field_attr_lastname: Pavardės priskiria
154 field_attr_mail: Elektroninio pašto požymis
154 field_attr_mail: Elektroninio pašto požymis
155 field_onthefly: Vartotojų sukūrimas paskubomis
155 field_onthefly: Vartotojų sukūrimas paskubomis
156 field_start_date: Pradėti
156 field_start_date: Pradėti
157 field_done_ratio: %% Atlikta
157 field_done_ratio: %% Atlikta
158 field_auth_source: Autentiškumo nustatymo būdas
158 field_auth_source: Autentiškumo nustatymo būdas
159 field_hide_mail: Paslėpkite mano elektroninio pašto adresą
159 field_hide_mail: Paslėpkite mano elektroninio pašto adresą
160 field_comments: Komentaras
160 field_comments: Komentaras
161 field_url: URL
161 field_url: URL
162 field_start_page: Pradžios puslapis
162 field_start_page: Pradžios puslapis
163 field_subproject: Subprojektas
163 field_subproject: Subprojektas
164 field_hours: Valandos
164 field_hours: Valandos
165 field_activity: Veikla
165 field_activity: Veikla
166 field_spent_on: Data
166 field_spent_on: Data
167 field_identifier: Identifikuotojas
167 field_identifier: Identifikuotojas
168 field_is_filter: Panaudotas kaip filtras
168 field_is_filter: Panaudotas kaip filtras
169 field_issue_to_id: Susijęs darbas
169 field_issue_to_id: Susijęs darbas
170 field_delay: Užlaikymas
170 field_delay: Užlaikymas
171 field_assignable: Darbai gali būti paskirti šiam vaidmeniui
171 field_assignable: Darbai gali būti paskirti šiam vaidmeniui
172 field_redirect_existing_links: Peradresuokite egzistuojančias sąsajas
172 field_redirect_existing_links: Peradresuokite egzistuojančias sąsajas
173 field_estimated_hours: Numatyta trukmė
173 field_estimated_hours: Numatyta trukmė
174 field_column_names: Skiltys
174 field_column_names: Skiltys
175 field_time_zone: Laiko juosta
175 field_time_zone: Laiko juosta
176 field_searchable: Randamas
176 field_searchable: Randamas
177 field_default_value: Numatytoji vertė
177 field_default_value: Numatytoji vertė
178 setting_app_title: Programos pavadinimas
178 setting_app_title: Programos pavadinimas
179 setting_app_subtitle: Programos paantraštė
179 setting_app_subtitle: Programos paantraštė
180 setting_welcome_text: Pasveikinimas
180 setting_welcome_text: Pasveikinimas
181 setting_default_language: Numatytoji kalba
181 setting_default_language: Numatytoji kalba
182 setting_login_required: Reikalingas autentiškumo nustatymas
182 setting_login_required: Reikalingas autentiškumo nustatymas
183 setting_self_registration: Saviregistracija
183 setting_self_registration: Saviregistracija
184 setting_attachment_max_size: Priedo maks. dydis
184 setting_attachment_max_size: Priedo maks. dydis
185 setting_issues_export_limit pagal dydį: Darbų eksportavimo riba
185 setting_issues_export_limit pagal dydį: Darbų eksportavimo riba
186 setting_mail_from: Emisijos elektroninio pašto adresas
186 setting_mail_from: Emisijos elektroninio pašto adresas
187 setting_bcc_recipients: Akli tikslios kopijos gavėjai (bcc)
187 setting_bcc_recipients: Akli tikslios kopijos gavėjai (bcc)
188 setting_host_name: Pagrindinio kompiuterio vardas
188 setting_host_name: Pagrindinio kompiuterio vardas
189 setting_text_formatting: Teksto apipavidalinimas
189 setting_text_formatting: Teksto apipavidalinimas
190 setting_wiki_compression: Wiki istorijos suspaudimas
190 setting_wiki_compression: Wiki istorijos suspaudimas
191 setting_feeds_limit: Perdavimo turinio riba
191 setting_feeds_limit: Perdavimo turinio riba
192 setting_autofetch_changesets: Automatinis pakeitimų siuntimas
192 setting_autofetch_changesets: Automatinis pakeitimų siuntimas
193 setting_sys_api_enabled: Įgalinkite WS sandėlio vadybai
193 setting_sys_api_enabled: Įgalinkite WS sandėlio vadybai
194 setting_commit_ref_keywords: Nurodymo reikšminiai žodžiai
194 setting_commit_ref_keywords: Nurodymo reikšminiai žodžiai
195 setting_commit_fix_keywords: Fiksavimo reikšminiai žodžiai
195 setting_commit_fix_keywords: Fiksavimo reikšminiai žodžiai
196 setting_autologin: Autoregistracija
196 setting_autologin: Autoregistracija
197 setting_date_format: Datos formatas
197 setting_date_format: Datos formatas
198 setting_time_format: Laiko formatas
198 setting_time_format: Laiko formatas
199 setting_cross_project_issue_relations: Leisti tarprojektinius darbų ryšius
199 setting_cross_project_issue_relations: Leisti tarprojektinius darbų ryšius
200 setting_issue_list_default_columns: Numatytosios skiltys darbų sąraše
200 setting_issue_list_default_columns: Numatytosios skiltys darbų sąraše
201 setting_repositories_encodings: Saugyklos enkodingas
201 setting_repositories_encodings: Saugyklos enkodingas
202 setting_emails_footer: elektroninio pašto puslapinė poraštė
202 setting_emails_footer: elektroninio pašto puslapinė poraštė
203 setting_protocol: Protokolas
203 setting_protocol: Protokolas
204
204
205 label_user: Vartotojas
205 label_user: Vartotojas
206 label_user_plural: Vartotojai
206 label_user_plural: Vartotojai
207 label_user_new: Naujas vartotojas
207 label_user_new: Naujas vartotojas
208 label_project: Projektas
208 label_project: Projektas
209 label_project_new: Naujas projektas
209 label_project_new: Naujas projektas
210 label_project_plural: Projektai
210 label_project_plural: Projektai
211 label_project_all: Visi Projektai
211 label_project_all: Visi Projektai
212 label_project_latest: Paskutiniai projektai
212 label_project_latest: Paskutiniai projektai
213 label_issue: Darbas
213 label_issue: Darbas
214 label_issue_new: Naujas darbas
214 label_issue_new: Naujas darbas
215 label_issue_plural: Darbai
215 label_issue_plural: Darbai
216 label_issue_view_all: Peržiūrėti visus darbus
216 label_issue_view_all: Peržiūrėti visus darbus
217 label_issues_by: Darbai pagal %s
217 label_issues_by: Darbai pagal %s
218 label_document: Dokumentas
218 label_document: Dokumentas
219 label_document_new: Naujas dokumentas
219 label_document_new: Naujas dokumentas
220 label_document_plural: Dokumentai
220 label_document_plural: Dokumentai
221 label_role: Vaidmuo
221 label_role: Vaidmuo
222 label_role_plural: Vaidmenys
222 label_role_plural: Vaidmenys
223 label_role_new: Naujas vaidmuo
223 label_role_new: Naujas vaidmuo
224 label_role_and_permissions: Vaidmenys ir leidimai
224 label_role_and_permissions: Vaidmenys ir leidimai
225 label_member: Narys
225 label_member: Narys
226 label_member_new: Naujas narys
226 label_member_new: Naujas narys
227 label_member_plural: Nariai
227 label_member_plural: Nariai
228 label_tracker: Pėdsekys
228 label_tracker: Pėdsekys
229 label_tracker_plural: Pėdsekiai
229 label_tracker_plural: Pėdsekiai
230 label_tracker_new: Naujas pėdsekys
230 label_tracker_new: Naujas pėdsekys
231 label_workflow: Darbų eiga
231 label_workflow: Darbų eiga
232 label_issue_status: Darbo padėtis
232 label_issue_status: Darbo padėtis
233 label_issue_status_plural: Darbų padėtys
233 label_issue_status_plural: Darbų padėtys
234 label_issue_status_new: Nauja padėtis
234 label_issue_status_new: Nauja padėtis
235 label_issue_category: Darbo kategorija
235 label_issue_category: Darbo kategorija
236 label_issue_category_plural: Darbo kategorijos
236 label_issue_category_plural: Darbo kategorijos
237 label_issue_category_new: Nauja kategorija
237 label_issue_category_new: Nauja kategorija
238 label_custom_field: Kliento laukas
238 label_custom_field: Kliento laukas
239 label_custom_field_plural: Kliento laukai
239 label_custom_field_plural: Kliento laukai
240 label_custom_field_new: Naujas kliento laukas
240 label_custom_field_new: Naujas kliento laukas
241 label_enumerations: Išvardinimai
241 label_enumerations: Išvardinimai
242 label_enumeration_new: Nauja vertė
242 label_enumeration_new: Nauja vertė
243 label_information: Informacija
243 label_information: Informacija
244 label_information_plural: Informacija
244 label_information_plural: Informacija
245 label_please_login: Prašom prisijungti
245 label_please_login: Prašom prisijungti
246 label_register: Užsiregistruoti
246 label_register: Užsiregistruoti
247 label_password_lost: Prarastas slaptažodis
247 label_password_lost: Prarastas slaptažodis
248 label_home: Pagrindinis
248 label_home: Pagrindinis
249 label_my_page: Mano puslapis
249 label_my_page: Mano puslapis
250 label_my_account: Mano paskyra
250 label_my_account: Mano paskyra
251 label_my_projects: Mano projektai
251 label_my_projects: Mano projektai
252 label_administration: Administravimas
252 label_administration: Administravimas
253 label_login: Prisijungti
253 label_login: Prisijungti
254 label_logout: Atsijungti
254 label_logout: Atsijungti
255 label_help: Pagalba
255 label_help: Pagalba
256 label_reported_issues: Pranešti darbai
256 label_reported_issues: Pranešti darbai
257 label_assigned_to_me_issues: Darbai, priskirti man
257 label_assigned_to_me_issues: Darbai, priskirti man
258 label_last_login: Paskutinis ryšys
258 label_last_login: Paskutinis ryšys
259 label_last_updates: Paskutinis atnaujinimas
259 label_last_updates: Paskutinis atnaujinimas
260 label_last_updates_plural: %d paskutinis atnaujinimas
260 label_last_updates_plural: %d paskutinis atnaujinimas
261 label_registered_on: Užregistruota
261 label_registered_on: Užregistruota
262 label_activity: Veikla
262 label_activity: Veikla
263 label_new: Naujas
263 label_new: Naujas
264 label_logged_as: Prisijungęs kaip
264 label_logged_as: Prisijungęs kaip
265 label_environment: Aplinka
265 label_environment: Aplinka
266 label_authentication: Autentiškumo nustatymas
266 label_authentication: Autentiškumo nustatymas
267 label_auth_source: Autentiškumo nustatymo būdas
267 label_auth_source: Autentiškumo nustatymo būdas
268 label_auth_source_new: Naujas autentiškumo nustatymo būdas
268 label_auth_source_new: Naujas autentiškumo nustatymo būdas
269 label_auth_source_plural: Autentiškumo nustatymo būdai
269 label_auth_source_plural: Autentiškumo nustatymo būdai
270 label_subproject_plural: Subprojektai
270 label_subproject_plural: Subprojektai
271 label_min_max_length: Min - Maks ilgis
271 label_min_max_length: Min - Maks ilgis
272 label_list: Sąrašas
272 label_list: Sąrašas
273 label_date: Data
273 label_date: Data
274 label_integer: Sveikasis skaičius
274 label_integer: Sveikasis skaičius
275 label_float: Float
275 label_float: Float
276 label_boolean: Boolean
276 label_boolean: Boolean
277 label_string: Tekstas
277 label_string: Tekstas
278 label_text: Ilgas tekstas
278 label_text: Ilgas tekstas
279 label_attribute: Požymis
279 label_attribute: Požymis
280 label_attribute_plural: Požymiai
280 label_attribute_plural: Požymiai
281 label_download: %d Persiuntimas
281 label_download: %d Persiuntimas
282 label_download_plural: %d Persiuntimai
282 label_download_plural: %d Persiuntimai
283 label_no_data: Nėra ką atvaizduoti
283 label_no_data: Nėra ką atvaizduoti
284 label_change_status: Pakeitimo padėtis
284 label_change_status: Pakeitimo padėtis
285 label_history: Istorija
285 label_history: Istorija
286 label_attachment: Rinkmena
286 label_attachment: Rinkmena
287 label_attachment_new: Nauja rinkmena
287 label_attachment_new: Nauja rinkmena
288 label_attachment_delete: Pašalinkite rinkmeną
288 label_attachment_delete: Pašalinkite rinkmeną
289 label_attachment_plural: Rinkmenos
289 label_attachment_plural: Rinkmenos
290 label_report: Ataskaita
290 label_report: Ataskaita
291 label_report_plural: Ataskaitos
291 label_report_plural: Ataskaitos
292 label_news: Žinia
292 label_news: Žinia
293 label_news_new: Pridėkite žinią
293 label_news_new: Pridėkite žinią
294 label_news_plural: Žinios
294 label_news_plural: Žinios
295 label_news_latest: Paskutinės naujienos
295 label_news_latest: Paskutinės naujienos
296 label_news_view_all: Peržiūrėti visas žinias
296 label_news_view_all: Peržiūrėti visas žinias
297 label_change_log: Pakeitimų žurnalas
297 label_change_log: Pakeitimų žurnalas
298 label_settings: Nustatymai
298 label_settings: Nustatymai
299 label_overview: Apžvalga
299 label_overview: Apžvalga
300 label_version: Versija
300 label_version: Versija
301 label_version_new: Nauja versija
301 label_version_new: Nauja versija
302 label_version_plural: Versijos
302 label_version_plural: Versijos
303 label_confirmation: Patvirtinimas
303 label_confirmation: Patvirtinimas
304 label_export_to: Eksportuoti į
304 label_export_to: Eksportuoti į
305 label_read: Skaitykite...
305 label_read: Skaitykite...
306 label_public_projects: Vieši projektai
306 label_public_projects: Vieši projektai
307 label_open_issues: atidaryta
307 label_open_issues: atidaryta
308 label_open_issues_plural: atidarytos
308 label_open_issues_plural: atidarytos
309 label_closed_issues: uždaryta
309 label_closed_issues: uždaryta
310 label_closed_issues_plural: uždarytos
310 label_closed_issues_plural: uždarytos
311 label_total: Bendra suma
311 label_total: Bendra suma
312 label_permissions: Leidimai
312 label_permissions: Leidimai
313 label_current_status: Einamoji padėtis
313 label_current_status: Einamoji padėtis
314 label_new_statuses_allowed: Naujos padėtys galimos
314 label_new_statuses_allowed: Naujos padėtys galimos
315 label_all: visi
315 label_all: visi
316 label_none: niekas
316 label_none: niekas
317 label_nobody: niekas
317 label_nobody: niekas
318 label_next: Kitas
318 label_next: Kitas
319 label_previous: Ankstesnis
319 label_previous: Ankstesnis
320 label_used_by: Naudotas
320 label_used_by: Naudotas
321 label_details: Detalės
321 label_details: Detalės
322 label_add_note: Pridėkite pastabą
322 label_add_note: Pridėkite pastabą
323 label_per_page: Per puslapį
323 label_per_page: Per puslapį
324 label_calendar: Kalendorius
324 label_calendar: Kalendorius
325 label_months_from: mėnesiai nuo
325 label_months_from: mėnesiai nuo
326 label_gantt: Gantt
326 label_gantt: Gantt
327 label_internal: Vidinis
327 label_internal: Vidinis
328 label_last_changes: paskutiniai %d, pokyčiai
328 label_last_changes: paskutiniai %d, pokyčiai
329 label_change_view_all: Peržiūrėti visus pakeitimus
329 label_change_view_all: Peržiūrėti visus pakeitimus
330 label_personalize_page: Suasmeninti šį puslapį
330 label_personalize_page: Suasmeninti šį puslapį
331 label_comment: Komentaras
331 label_comment: Komentaras
332 label_comment_plural: Komentarai
332 label_comment_plural: Komentarai
333 label_comment_add: Pridėkite komentarą
333 label_comment_add: Pridėkite komentarą
334 label_comment_added: Komentaras pridėtas
334 label_comment_added: Komentaras pridėtas
335 label_comment_delete: Pašalinkite komentarus
335 label_comment_delete: Pašalinkite komentarus
336 label_query: Užklausa
336 label_query: Užklausa
337 label_query_plural: Užklausos
337 label_query_plural: Užklausos
338 label_query_new: Nauja užklausa
338 label_query_new: Nauja užklausa
339 label_filter_add: Pridėti filtrą
339 label_filter_add: Pridėti filtrą
340 label_filter_plural: Filtrai
340 label_filter_plural: Filtrai
341 label_equals: yra
341 label_equals: yra
342 label_not_equals: nėra
342 label_not_equals: nėra
343 label_in_less_than: mažiau negu
343 label_in_less_than: mažiau negu
344 label_in_more_than: daugiau negu
344 label_in_more_than: daugiau negu
345 label_in: in
345 label_in: in
346 label_today: šiandien
346 label_today: šiandien
347 label_this_week: šią savaitę
347 label_this_week: šią savaitę
348 label_less_than_ago: mažiau negu dienomis prieš
348 label_less_than_ago: mažiau negu dienomis prieš
349 label_more_than_ago: daugiau negu dienomis prieš
349 label_more_than_ago: daugiau negu dienomis prieš
350 label_ago: dienomis prieš
350 label_ago: dienomis prieš
351 label_contains: turi savyje
351 label_contains: turi savyje
352 label_not_contains: neturi savyje
352 label_not_contains: neturi savyje
353 label_day_plural: dienos
353 label_day_plural: dienos
354 label_repository: Saugykla
354 label_repository: Saugykla
355 label_browse: Naršyti
355 label_browse: Naršyti
356 label_modification: %d pakeitimas
356 label_modification: %d pakeitimas
357 label_modification_plural: %d pakeitimai
357 label_modification_plural: %d pakeitimai
358 label_revision: Revizija
358 label_revision: Revizija
359 label_revision_plural: Revizijos
359 label_revision_plural: Revizijos
360 label_added: pridėtas
360 label_added: pridėtas
361 label_modified: pakeistas
361 label_modified: pakeistas
362 label_deleted: pašalintas
362 label_deleted: pašalintas
363 label_latest_revision: Paskutinė revizija
363 label_latest_revision: Paskutinė revizija
364 label_latest_revision_plural: Paskutinės revizijos
364 label_latest_revision_plural: Paskutinės revizijos
365 label_view_revisions: Pežiūrėti revizijas
365 label_view_revisions: Pežiūrėti revizijas
366 label_max_size: Maksimalus dydis
366 label_max_size: Maksimalus dydis
367 label_on: 'iš'
367 label_on: 'iš'
368 label_sort_highest: Perkelti į viršūnę
368 label_sort_highest: Perkelti į viršūnę
369 label_sort_higher: Perkelti į viršų
369 label_sort_higher: Perkelti į viršų
370 label_sort_lower: Perkelti žemyn
370 label_sort_lower: Perkelti žemyn
371 label_sort_lowest: Perkelti į apačią
371 label_sort_lowest: Perkelti į apačią
372 label_roadmap: Veiklos grafikas
372 label_roadmap: Veiklos grafikas
373 label_roadmap_due_in: Baigiasi po
373 label_roadmap_due_in: Baigiasi po
374 label_roadmap_overdue: %s vėluojama
374 label_roadmap_overdue: %s vėluojama
375 label_roadmap_no_issues: Jokio darbo šiai versijai nėra
375 label_roadmap_no_issues: Jokio darbo šiai versijai nėra
376 label_search: Ieškoti
376 label_search: Ieškoti
377 label_result_plural: Rezultatai
377 label_result_plural: Rezultatai
378 label_all_words: Visi žodžiai
378 label_all_words: Visi žodžiai
379 label_wiki: Wiki
379 label_wiki: Wiki
380 label_wiki_edit: Wiki redakcija
380 label_wiki_edit: Wiki redakcija
381 label_wiki_edit_plural: Wiki redakcijos
381 label_wiki_edit_plural: Wiki redakcijos
382 label_wiki_page: Wiki puslapis
382 label_wiki_page: Wiki puslapis
383 label_wiki_page_plural: Wiki puslapiai
383 label_wiki_page_plural: Wiki puslapiai
384 label_index_by_title: Indeksas prie pavadinimo
384 label_index_by_title: Indeksas prie pavadinimo
385 label_index_by_date: Indeksas prie datos
385 label_index_by_date: Indeksas prie datos
386 label_current_version: Einamoji versija
386 label_current_version: Einamoji versija
387 label_preview: Peržiūra
387 label_preview: Peržiūra
388 label_feed_plural: Įeitys(Feeds)
388 label_feed_plural: Įeitys(Feeds)
389 label_changes_details: Visų pakeitimų detalės
389 label_changes_details: Visų pakeitimų detalės
390 label_issue_tracking: Darbų sekimas
390 label_issue_tracking: Darbų sekimas
391 label_spent_time: Sugaištas laikas
391 label_spent_time: Sugaištas laikas
392 label_f_hour: %.2f valanda
392 label_f_hour: %.2f valanda
393 label_f_hour_plural: %.2f valandų
393 label_f_hour_plural: %.2f valandų
394 label_time_tracking: Laiko sekimas
394 label_time_tracking: Laiko sekimas
395 label_change_plural: Pakeitimai
395 label_change_plural: Pakeitimai
396 label_statistics: Statistika
396 label_statistics: Statistika
397 label_commits_per_month: Paveda(commit) per mėnesį
397 label_commits_per_month: Paveda(commit) per mėnesį
398 label_commits_per_author: Autoriaus pavedos(commit)
398 label_commits_per_author: Autoriaus pavedos(commit)
399 label_view_diff: Skirtumų peržiūra
399 label_view_diff: Skirtumų peržiūra
400 label_diff_inline: įterptas
400 label_diff_inline: įterptas
401 label_diff_side_by_side: šalia
401 label_diff_side_by_side: šalia
402 label_options: Pasirinkimai
402 label_options: Pasirinkimai
403 label_copy_workflow_from: Kopijuoti darbų eiga iš
403 label_copy_workflow_from: Kopijuoti darbų eiga iš
404 label_permissions_report: Leidimų pranešimas
404 label_permissions_report: Leidimų pranešimas
405 label_watched_issues: Stebimi darbai
405 label_watched_issues: Stebimi darbai
406 label_related_issues: Susiję darbai
406 label_related_issues: Susiję darbai
407 label_applied_status: Taikomoji padėtis
407 label_applied_status: Taikomoji padėtis
408 label_loading: Kraunama...
408 label_loading: Kraunama...
409 label_relation_new: Naujas ryšys
409 label_relation_new: Naujas ryšys
410 label_relation_delete: Pašalinkite ryšį
410 label_relation_delete: Pašalinkite ryšį
411 label_relates_to: susietas su
411 label_relates_to: susietas su
412 label_duplicates: dublikatai
412 label_duplicates: dublikatai
413 label_blocks: blokai
413 label_blocks: blokai
414 label_blocked_by: blokuotas
414 label_blocked_by: blokuotas
415 label_precedes: įvyksta pirma
415 label_precedes: įvyksta pirma
416 label_follows: seka
416 label_follows: seka
417 label_end_to_start: užbaigti, kad pradėti
417 label_end_to_start: užbaigti, kad pradėti
418 label_end_to_end: užbaigti, kad pabaigti
418 label_end_to_end: užbaigti, kad pabaigti
419 label_start_to_start: pradėkite pradėti
419 label_start_to_start: pradėkite pradėti
420 label_start_to_end: pradėkite užbaigti
420 label_start_to_end: pradėkite užbaigti
421 label_stay_logged_in: Likti prisijungus
421 label_stay_logged_in: Likti prisijungus
422 label_disabled: išjungta(as)
422 label_disabled: išjungta(as)
423 label_show_completed_versions: Parodyti užbaigtas versijas
423 label_show_completed_versions: Parodyti užbaigtas versijas
424 label_me:
424 label_me:
425 label_board: Forumas
425 label_board: Forumas
426 label_board_new: Naujas forumas
426 label_board_new: Naujas forumas
427 label_board_plural: Forumai
427 label_board_plural: Forumai
428 label_topic_plural: Temos
428 label_topic_plural: Temos
429 label_message_plural: Pranešimai
429 label_message_plural: Pranešimai
430 label_message_last: Paskutinis pranešimas
430 label_message_last: Paskutinis pranešimas
431 label_message_new: Naujas pranešimas
431 label_message_new: Naujas pranešimas
432 label_reply_plural: Atsakymai
432 label_reply_plural: Atsakymai
433 label_send_information: Nusiųsti paskyros informaciją vartotojui
433 label_send_information: Nusiųsti paskyros informaciją vartotojui
434 label_year: Metai
434 label_year: Metai
435 label_month: Mėnuo
435 label_month: Mėnuo
436 label_week: Savaitė
436 label_week: Savaitė
437 label_date_from: Nuo
437 label_date_from: Nuo
438 label_date_to: Iki
438 label_date_to: Iki
439 label_language_based: Pagrįsta vartotojo kalba
439 label_language_based: Pagrįsta vartotojo kalba
440 label_sort_by: Rūšiuoti pagal %s
440 label_sort_by: Rūšiuoti pagal %s
441 label_send_test_email: Nusiųsti bandomąjį elektroninį laišką
441 label_send_test_email: Nusiųsti bandomąjį elektroninį laišką
442 label_feeds_access_key_created_on: RSS prieigos raktas sukūrtas prieš %s
442 label_feeds_access_key_created_on: RSS prieigos raktas sukūrtas prieš %s
443 label_module_plural: Moduliai
443 label_module_plural: Moduliai
444 label_added_time_by: Pridėjo %s prieš %s
444 label_added_time_by: Pridėjo %s prieš %s
445 label_updated_time: Atnaujinta prieš %s
445 label_updated_time: Atnaujinta prieš %s
446 label_jump_to_a_project: Šuolis į projektą...
446 label_jump_to_a_project: Šuolis į projektą...
447 label_file_plural: Bylos
447 label_file_plural: Bylos
448 label_changeset_plural: Changesets
448 label_changeset_plural: Changesets
449 label_default_columns: Numatytosios skiltys
449 label_default_columns: Numatytosios skiltys
450 label_no_change_option: (Jokio pakeitimo)
450 label_no_change_option: (Jokio pakeitimo)
451 label_bulk_edit_selected_issues: Masinis pasirinktų darbų(issues) redagavimas
451 label_bulk_edit_selected_issues: Masinis pasirinktų darbų(issues) redagavimas
452 label_theme: Tema
452 label_theme: Tema
453 label_default: Numatyta(as)
453 label_default: Numatyta(as)
454 label_search_titles_only: Ieškoti pavadinimų tiktai
454 label_search_titles_only: Ieškoti pavadinimų tiktai
455 label_user_mail_option_all: "Bet kokiam įvykiui visuose mano projektuose"
455 label_user_mail_option_all: "Bet kokiam įvykiui visuose mano projektuose"
456 label_user_mail_option_selected: "Bet kokiam įvykiui tiktai pasirinktuose projektuose ..."
456 label_user_mail_option_selected: "Bet kokiam įvykiui tiktai pasirinktuose projektuose ..."
457 label_user_mail_option_none: "Tiktai dalykai kuriuos stebiu ar esu įtrauktas į"
457 label_user_mail_option_none: "Tiktai dalykai kuriuos stebiu ar esu įtrauktas į"
458 label_user_mail_no_self_notified: "Nenoriu būti informuotas apie pakeitimus, kuriuos pats atlieku"
458 label_user_mail_no_self_notified: "Nenoriu būti informuotas apie pakeitimus, kuriuos pats atlieku"
459 label_registration_activation_by_email: "paskyros aktyvacija per e-paštą"
459 label_registration_activation_by_email: "paskyros aktyvacija per e-paštą"
460 label_registration_manual_activation: "rankinė paskyros aktyvacija"
460 label_registration_manual_activation: "rankinė paskyros aktyvacija"
461 label_registration_automatic_activation: "automatinė paskyros aktyvacija"
461 label_registration_automatic_activation: "automatinė paskyros aktyvacija"
462
462
463 button_login: Registruotis
463 button_login: Registruotis
464 button_submit: Pateikti
464 button_submit: Pateikti
465 button_save: Išsaugoti
465 button_save: Išsaugoti
466 button_check_all: Žymėti visus
466 button_check_all: Žymėti visus
467 button_uncheck_all: Atžymėti visus
467 button_uncheck_all: Atžymėti visus
468 button_delete: Trinti
468 button_delete: Trinti
469 button_create: Sukurti
469 button_create: Sukurti
470 button_test: Testas
470 button_test: Testas
471 button_edit: Redaguoti
471 button_edit: Redaguoti
472 button_add: Pridėti
472 button_add: Pridėti
473 button_change: Keisti
473 button_change: Keisti
474 button_apply: Pritaikyti
474 button_apply: Pritaikyti
475 button_clear: Išvalyti
475 button_clear: Išvalyti
476 button_lock: Rakinti
476 button_lock: Rakinti
477 button_unlock: Atrakinti
477 button_unlock: Atrakinti
478 button_download: Atsisiųsti
478 button_download: Atsisiųsti
479 button_list: Sąrašas
479 button_list: Sąrašas
480 button_view: Žiūrėti
480 button_view: Žiūrėti
481 button_move: Perkelti
481 button_move: Perkelti
482 button_back: Atgal
482 button_back: Atgal
483 button_cancel: Atšaukti
483 button_cancel: Atšaukti
484 button_activate: Aktyvinti
484 button_activate: Aktyvinti
485 button_sort: Rūšiuoti
485 button_sort: Rūšiuoti
486 button_log_time: Praleistas laikas
486 button_log_time: Praleistas laikas
487 button_rollback: Grįžti į šią versiją
487 button_rollback: Grįžti į šią versiją
488 button_watch: Stebėti
488 button_watch: Stebėti
489 button_unwatch: Nestebėti
489 button_unwatch: Nestebėti
490 button_reply: Atsakyti
490 button_reply: Atsakyti
491 button_archive: Archyvuoti
491 button_archive: Archyvuoti
492 button_unarchive: Išpakuoti
492 button_unarchive: Išpakuoti
493 button_reset: Reset
493 button_reset: Reset
494 button_rename: Pervadinti
494 button_rename: Pervadinti
495 button_change_password: Pakeisti slaptažodį
495 button_change_password: Pakeisti slaptažodį
496 button_copy: Kopijuoti
496 button_copy: Kopijuoti
497 button_annotate: Rašyti pastabą
497 button_annotate: Rašyti pastabą
498
498
499 status_active: aktyvus
499 status_active: aktyvus
500 status_registered: užregistruotas
500 status_registered: užregistruotas
501 status_locked: užrakintas
501 status_locked: užrakintas
502
502
503 text_select_mail_notifications: Išrinkite veiksmus, apie kuriuos būtų pranešta elektroniniu paštu.
503 text_select_mail_notifications: Išrinkite veiksmus, apie kuriuos būtų pranešta elektroniniu paštu.
504 text_regexp_info: pvz. ^[A-Z0-9]+$
504 text_regexp_info: pvz. ^[A-Z0-9]+$
505 text_min_max_length_info: 0 reiškia jokių apribojimų
505 text_min_max_length_info: 0 reiškia jokių apribojimų
506 text_project_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti šį projektą ir visus susijusius duomenis?
506 text_project_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti šį projektą ir visus susijusius duomenis?
507 text_workflow_edit: Išrinkite vaidmenį ir pėdsekį, kad redaguotumėte darbų eigą
507 text_workflow_edit: Išrinkite vaidmenį ir pėdsekį, kad redaguotumėte darbų eigą
508 text_are_you_sure: Ar esate įsitikinęs?
508 text_are_you_sure: Ar esate įsitikinęs?
509 text_journal_changed: pakeistas iš %s į %s
509 text_journal_changed: pakeistas iš %s į %s
510 text_journal_set_to: nustatyta į %s
510 text_journal_set_to: nustatyta į %s
511 text_journal_deleted: ištrintas
511 text_journal_deleted: ištrintas
512 text_tip_task_begin_day: užduotis, prasidedanti šią dieną
512 text_tip_task_begin_day: užduotis, prasidedanti šią dieną
513 text_tip_task_end_day: užduotis, pasibaigianti šią dieną
513 text_tip_task_end_day: užduotis, pasibaigianti šią dieną
514 text_tip_task_begin_end_day: užduotis, prasidedanti ir pasibaigianti šią dieną
514 text_tip_task_begin_end_day: užduotis, prasidedanti ir pasibaigianti šią dieną
515 text_project_identifier_info: 'Mažosios raidės (a-z), skaičiai ir brūkšniai galimi.<br/>Išsaugojus, identifikuotojas negali būti keičiamas.'
515 text_project_identifier_info: 'Mažosios raidės (a-z), skaičiai ir brūkšniai galimi.<br/>Išsaugojus, identifikuotojas negali būti keičiamas.'
516 text_caracters_maximum: %d simbolių maksimumas.
516 text_caracters_maximum: %d simbolių maksimumas.
517 text_caracters_minimum: Turi būti mažiausiai %d simbolių ilgio.
517 text_caracters_minimum: Turi būti mažiausiai %d simbolių ilgio.
518 text_length_between: Ilgis tarp %d ir %d simbolių.
518 text_length_between: Ilgis tarp %d ir %d simbolių.
519 text_tracker_no_workflow: Jokia darbų eiga neapibrėžta šiam pėdsekiui
519 text_tracker_no_workflow: Jokia darbų eiga neapibrėžta šiam pėdsekiui
520 text_unallowed_characters: Neleistini simboliai
520 text_unallowed_characters: Neleistini simboliai
521 text_comma_separated: Leistinos kelios reikšmės (atskirtos kableliu).
521 text_comma_separated: Leistinos kelios reikšmės (atskirtos kableliu).
522 text_issues_ref_in_commit_messages: Darbų pavedimų(commit) nurodymas ir fiksavimas pranešimuose
522 text_issues_ref_in_commit_messages: Darbų pavedimų(commit) nurodymas ir fiksavimas pranešimuose
523 text_issue_added: Darbas %s buvo praneštas (by %s).
523 text_issue_added: Darbas %s buvo praneštas (by %s).
524 text_issue_updated: Darbas %s buvo atnaujintas (by %s).
524 text_issue_updated: Darbas %s buvo atnaujintas (by %s).
525 text_wiki_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti wiki ir visą jos turinį?
525 text_wiki_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti wiki ir visą jos turinį?
526 text_issue_category_destroy_question: Kai kurie darbai (%d) yra paskirti šiai kategorijai. Ką jūs norite daryti?
526 text_issue_category_destroy_question: Kai kurie darbai (%d) yra paskirti šiai kategorijai. Ką jūs norite daryti?
527 text_issue_category_destroy_assignments: Pašalinti kategorijos užduotis
527 text_issue_category_destroy_assignments: Pašalinti kategorijos užduotis
528 text_issue_category_reassign_to: Iš naujo priskirti darbus šiai kategorijai
528 text_issue_category_reassign_to: Iš naujo priskirti darbus šiai kategorijai
529 text_user_mail_option: "neišrinktiems projektams, jūs tiktai gausite pranešimus apie įvykius, kuriuos jūs stebite, arba į kuriuos esate įtrauktas (pvz. darbai, jūs esate autorius ar įgaliotinis)."
529 text_user_mail_option: "neišrinktiems projektams, jūs tiktai gausite pranešimus apie įvykius, kuriuos jūs stebite, arba į kuriuos esate įtrauktas (pvz. darbai, jūs esate autorius ar įgaliotinis)."
530
530
531 default_role_manager: Vadovas
531 default_role_manager: Vadovas
532 default_role_developper: Projektuotojas
532 default_role_developper: Projektuotojas
533 default_role_reporter: Pranešėjas
533 default_role_reporter: Pranešėjas
534 default_tracker_bug: Klaida
534 default_tracker_bug: Klaida
535 default_tracker_feature: Ypatybė
535 default_tracker_feature: Ypatybė
536 default_tracker_support: Palaikymas
536 default_tracker_support: Palaikymas
537 default_issue_status_new: Nauja
537 default_issue_status_new: Nauja
538 default_issue_status_assigned: Priskirta
538 default_issue_status_assigned: Priskirta
539 default_issue_status_resolved: Išspręsta
539 default_issue_status_resolved: Išspręsta
540 default_issue_status_feedback: Grįžtamasis ryšys
540 default_issue_status_feedback: Grįžtamasis ryšys
541 default_issue_status_closed: Uždaryta
541 default_issue_status_closed: Uždaryta
542 default_issue_status_rejected: Atmesta
542 default_issue_status_rejected: Atmesta
543 default_doc_category_user: Vartotojo dokumentacija
543 default_doc_category_user: Vartotojo dokumentacija
544 default_doc_category_tech: Techniniai dokumentacija
544 default_doc_category_tech: Techniniai dokumentacija
545 default_priority_low: Žemas
545 default_priority_low: Žemas
546 default_priority_normal: Normalus
546 default_priority_normal: Normalus
547 default_priority_high: Aukštas
547 default_priority_high: Aukštas
548 default_priority_urgent: Skubus
548 default_priority_urgent: Skubus
549 default_priority_immediate: Neatidėliotinas
549 default_priority_immediate: Neatidėliotinas
550 default_activity_design: Projektavimas
550 default_activity_design: Projektavimas
551 default_activity_development: Vystymas
551 default_activity_development: Vystymas
552
552
553 enumeration_issue_priorities: Darbo prioritetai
553 enumeration_issue_priorities: Darbo prioritetai
554 enumeration_doc_categories: Dokumento kategorijos
554 enumeration_doc_categories: Dokumento kategorijos
555 enumeration_activities: Veiklos (laiko sekimas)
555 enumeration_activities: Veiklos (laiko sekimas)
556 label_display_per_page: '%s įrašų puslapyje'
556 label_display_per_page: '%s įrašų puslapyje'
557 setting_per_page_options: Įrašų puslapyje nustatimas
557 setting_per_page_options: Įrašų puslapyje nustatimas
558 notice_default_data_loaded: Numatytoji konfiguracija sėkmingai užkrauta.
558 notice_default_data_loaded: Numatytoji konfiguracija sėkmingai užkrauta.
559 label_age: Amžius
559 label_age: Amžius
560 label_general: Bendri
560 label_general: Bendri
561 button_update: Atnaujinti
561 button_update: Atnaujinti
562 setting_issues_export_limit: Darbų eksportavimo limitas
562 setting_issues_export_limit: Darbų eksportavimo limitas
563 label_change_properties: Pakeisti nustatymus
563 label_change_properties: Pakeisti nustatymus
564 text_load_default_configuration: Užkrauti numatytąj konfiguraciją
564 text_load_default_configuration: Užkrauti numatytąj konfiguraciją
565 text_no_configuration_data: "Vaidmenys, pėdsekiai, darbų būsenos ir darbų eiga dar nebuvo konfigūruoti.\nGriežtai rekomenduojam užkrauti numatytąją(default)konfiguraciją. Užkrovus, galėsite modifikuoti."
565 text_no_configuration_data: "Vaidmenys, pėdsekiai, darbų būsenos ir darbų eiga dar nebuvo konfigūruoti.\nGriežtai rekomenduojam užkrauti numatytąją(default)konfiguraciją. Užkrovus, galėsite modifikuoti."
566 label_repository_plural: Saugiklos
566 label_repository_plural: Saugiklos
567 error_can_t_load_default_data: "Numatytoji konfiguracija negali būti užkrauta: %s"
567 error_can_t_load_default_data: "Numatytoji konfiguracija negali būti užkrauta: %s"
568 label_associated_revisions: susijusios revizijos
568 label_associated_revisions: susijusios revizijos
569 setting_user_format: Vartotojo atvaizdavimo formatas
569 setting_user_format: Vartotojo atvaizdavimo formatas
570 text_status_changed_by_changeset: Pakeista %s revizijoi.
570 text_status_changed_by_changeset: Pakeista %s revizijoi.
571 label_more: Daugiau
571 label_more: Daugiau
572 text_issues_destroy_confirmation: 'Ar jūs tikrai norite panaikinti pažimėtą(us) darbą(us)?'
572 text_issues_destroy_confirmation: 'Ar jūs tikrai norite panaikinti pažimėtą(us) darbą(us)?'
573 label_scm: SCM
573 label_scm: SCM
574 text_select_project_modules: 'Parinkite modulius, kuriuos norite naudoti šiame projekte:'
574 text_select_project_modules: 'Parinkite modulius, kuriuos norite naudoti šiame projekte:'
575 label_issue_added: Darbas pridėtas
575 label_issue_added: Darbas pridėtas
576 label_issue_updated: Darbas atnaujintas
576 label_issue_updated: Darbas atnaujintas
577 label_document_added: Dokumentas pridėtas
577 label_document_added: Dokumentas pridėtas
578 label_message_posted: Pranešimas pridėtas
578 label_message_posted: Pranešimas pridėtas
579 label_file_added: Byla pridėta
579 label_file_added: Byla pridėta
580 label_news_added: Naujiena pridėta
580 label_news_added: Naujiena pridėta
581 project_module_boards: Forumai
581 project_module_boards: Forumai
582 project_module_issue_tracking: Darbu pėdsekys
582 project_module_issue_tracking: Darbu pėdsekys
583 project_module_wiki: Wiki
583 project_module_wiki: Wiki
584 project_module_files: Rinkmenos
584 project_module_files: Rinkmenos
585 project_module_documents: Dokumentai
585 project_module_documents: Dokumentai
586 project_module_repository: Saugykla
586 project_module_repository: Saugykla
587 project_module_news: Žinios
587 project_module_news: Žinios
588 project_module_time_tracking: Laiko pėdsekys
588 project_module_time_tracking: Laiko pėdsekys
589 text_file_repository_writable: Į rinkmenu saugyklą galima saugoti (RW)
589 text_file_repository_writable: Į rinkmenu saugyklą galima saugoti (RW)
590 text_default_administrator_account_changed: Administratoriaus numatyta paskyra pakeista
590 text_default_administrator_account_changed: Administratoriaus numatyta paskyra pakeista
591 text_rmagick_available: RMagick pasiekiamas (pasirinktinai)
591 text_rmagick_available: RMagick pasiekiamas (pasirinktinai)
592 button_configure: Konfiguruoti
592 button_configure: Konfiguruoti
593 label_plugins: Plugins
593 label_plugins: Plugins
594 label_ldap_authentication: LDAP autentifikacija
594 label_ldap_authentication: LDAP autentifikacija
595 label_downloads_abbr: siunt.
595 label_downloads_abbr: siunt.
596 label_this_month: šis menuo
596 label_this_month: šis menuo
597 label_last_n_days: paskutinių %d dienų
597 label_last_n_days: paskutinių %d dienų
598 label_all_time: visas laikas
598 label_all_time: visas laikas
599 label_this_year: šiemet
599 label_this_year: šiemet
600 label_date_range: Dienų diapazonas
600 label_date_range: Dienų diapazonas
601 label_last_week: paskutinė savaitė
601 label_last_week: paskutinė savaitė
602 label_yesterday: vakar
602 label_yesterday: vakar
603 label_last_month: paskutinis menuo
603 label_last_month: paskutinis menuo
604 label_add_another_file: Pridėti kitą bylą
604 label_add_another_file: Pridėti kitą bylą
605 label_optional_description: Apibūdinimas (laisvai pasirenkamas)
605 label_optional_description: Apibūdinimas (laisvai pasirenkamas)
606 text_destroy_time_entries_question: Naikinamam darbui paskelbta %.02f valandų. Ką jūs noryte su jomis daryti?
606 text_destroy_time_entries_question: Naikinamam darbui paskelbta %.02f valandų. Ką jūs noryte su jomis daryti?
607 error_issue_not_found_in_project: 'Darbas nerastas arba nesurištas su šiuo projektu'
607 error_issue_not_found_in_project: 'Darbas nerastas arba nesurištas su šiuo projektu'
608 text_assign_time_entries_to_project: Priskirti valandas prie projekto
608 text_assign_time_entries_to_project: Priskirti valandas prie projekto
609 text_destroy_time_entries: Ištrinti paskelbtas valandas
609 text_destroy_time_entries: Ištrinti paskelbtas valandas
610 text_reassign_time_entries: 'Priskirti paskelbtas valandas šiam darbui:'
610 text_reassign_time_entries: 'Priskirti paskelbtas valandas šiam darbui:'
611 setting_activity_days_default: Atvaizduojamos dienos projekto veikloje
611 setting_activity_days_default: Atvaizduojamos dienos projekto veikloje
612 label_chronological_order: Chronologine tvarka
612 label_chronological_order: Chronologine tvarka
613 field_comments_sorting: rodyti komentarus
613 field_comments_sorting: rodyti komentarus
614 label_reverse_chronological_order: Atbuline chronologine tvarka
614 label_reverse_chronological_order: Atbuline chronologine tvarka
615 label_preferences: Savybės
615 label_preferences: Savybės
616 setting_display_subprojects_issues: Pagal nutylėjimą rodyti subprojektų darbus pagrindiniame projekte
616 setting_display_subprojects_issues: Pagal nutylėjimą rodyti subprojektų darbus pagrindiniame projekte
617 label_overall_activity: Visa veikla
617 label_overall_activity: Visa veikla
618 setting_default_projects_public: Naujas projektas viešas pagal nutylėjimą
618 setting_default_projects_public: Naujas projektas viešas pagal nutylėjimą
619 error_scm_annotate: "Įrašas neegzituoja arba negalima jo atvaizduoti."
619 error_scm_annotate: "Įrašas neegzituoja arba negalima jo atvaizduoti."
620 label_planning: Planavimas
620 label_planning: Planavimas
621 text_subprojects_destroy_warning: 'Šis(ie) subprojektas(ai): %s taip pat bus ištrintas(i).'
621 text_subprojects_destroy_warning: 'Šis(ie) subprojektas(ai): %s taip pat bus ištrintas(i).'
622 label_and_its_subprojects: %s projektas ir jo subprojektai
622 label_and_its_subprojects: %s projektas ir jo subprojektai
623
623
624 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
624 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
625 mail_subject_reminder: "%d issue(s) due in the next days"
625 mail_subject_reminder: "%d issue(s) due in the next days"
626 text_user_wrote: '%s wrote:'
626 text_user_wrote: '%s wrote:'
627 label_duplicated_by: duplicated by
627 label_duplicated_by: duplicated by
628 setting_enabled_scm: Enabled SCM
628 setting_enabled_scm: Enabled SCM
629 text_enumeration_category_reassign_to: 'Reassign them to this value:'
629 text_enumeration_category_reassign_to: 'Reassign them to this value:'
630 text_enumeration_destroy_question: '%d objects are assigned to this value.'
630 text_enumeration_destroy_question: '%d objects are assigned to this value.'
631 label_incoming_emails: Incoming emails
632 label_generate_key: Generate a key
633 setting_mail_handler_api_enabled: Enable WS for incoming emails
634 setting_mail_handler_api_key: API key
@@ -1,629 +1,633
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
4 actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dagen
9 actionview_datehelper_time_in_words_day_plural: %d dagen
10 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
10 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
11 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
11 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
12 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
12 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
13 actionview_datehelper_time_in_words_minute: 1 minuut
13 actionview_datehelper_time_in_words_minute: 1 minuut
14 actionview_datehelper_time_in_words_minute_half: een halve minuut
14 actionview_datehelper_time_in_words_minute_half: een halve minuut
15 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
15 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
16 actionview_datehelper_time_in_words_minute_plural: %d minuten
16 actionview_datehelper_time_in_words_minute_plural: %d minuten
17 actionview_datehelper_time_in_words_minute_single: 1 minuut
17 actionview_datehelper_time_in_words_minute_single: 1 minuut
18 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
18 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
19 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
19 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
20 actionview_instancetag_blank_option: Selecteer
20 actionview_instancetag_blank_option: Selecteer
21
21
22 activerecord_error_inclusion: staat niet in de lijst
22 activerecord_error_inclusion: staat niet in de lijst
23 activerecord_error_exclusion: is gereserveerd
23 activerecord_error_exclusion: is gereserveerd
24 activerecord_error_invalid: is ongeldig
24 activerecord_error_invalid: is ongeldig
25 activerecord_error_confirmation: komt niet overeen met confirmatie
25 activerecord_error_confirmation: komt niet overeen met confirmatie
26 activerecord_error_accepted: moet geaccepteerd worden
26 activerecord_error_accepted: moet geaccepteerd worden
27 activerecord_error_empty: mag niet leeg zijn
27 activerecord_error_empty: mag niet leeg zijn
28 activerecord_error_blank: mag niet blanco zijn
28 activerecord_error_blank: mag niet blanco zijn
29 activerecord_error_too_long: is te lang
29 activerecord_error_too_long: is te lang
30 activerecord_error_too_short: is te kort
30 activerecord_error_too_short: is te kort
31 activerecord_error_wrong_length: heeft de verkeerde lengte
31 activerecord_error_wrong_length: heeft de verkeerde lengte
32 activerecord_error_taken: is al in gebruik
32 activerecord_error_taken: is al in gebruik
33 activerecord_error_not_a_number: is geen getal
33 activerecord_error_not_a_number: is geen getal
34 activerecord_error_not_a_date: is geen valide datum
34 activerecord_error_not_a_date: is geen valide datum
35 activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum
35 activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum
36 activerecord_error_not_same_project: hoort niet bij hetzelfde project
36 activerecord_error_not_same_project: hoort niet bij hetzelfde project
37 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
37 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
38
38
39 general_fmt_age: %d jr
39 general_fmt_age: %d jr
40 general_fmt_age_plural: %d jr
40 general_fmt_age_plural: %d jr
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nee'
45 general_text_No: 'Nee'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nee'
47 general_text_no: 'nee'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Nederlands'
49 general_lang_name: 'Nederlands'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
53 general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Account is met succes gewijzigd
56 notice_account_updated: Account is met succes gewijzigd
57 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
57 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
58 notice_account_password_updated: Wachtwoord is met succes gewijzigd
58 notice_account_password_updated: Wachtwoord is met succes gewijzigd
59 notice_account_wrong_password: Incorrect wachtwoord
59 notice_account_wrong_password: Incorrect wachtwoord
60 notice_account_register_done: Account is met succes aangemaakt.
60 notice_account_register_done: Account is met succes aangemaakt.
61 notice_account_unknown_email: Onbekende gebruiker.
61 notice_account_unknown_email: Onbekende gebruiker.
62 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
62 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
63 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
63 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
64 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
64 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
65 notice_successful_create: Maken succesvol.
65 notice_successful_create: Maken succesvol.
66 notice_successful_update: Wijzigen succesvol.
66 notice_successful_update: Wijzigen succesvol.
67 notice_successful_delete: Verwijderen succesvol.
67 notice_successful_delete: Verwijderen succesvol.
68 notice_successful_connection: Verbinding succesvol.
68 notice_successful_connection: Verbinding succesvol.
69 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
69 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
70 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
70 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
71 notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen.
71 notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75
75
76 error_scm_not_found: "Deze ingang of revisie bestaat niet in de repository."
76 error_scm_not_found: "Deze ingang of revisie bestaat niet in de repository."
77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78
78
79 mail_subject_lost_password: Uw %s wachtwoord
79 mail_subject_lost_password: Uw %s wachtwoord
80 mail_body_lost_password: 'Gebruik de volgende link om Uw wachtwoord te wijzigen:'
80 mail_body_lost_password: 'Gebruik de volgende link om Uw wachtwoord te wijzigen:'
81 mail_subject_register: Uw %s account activatie
81 mail_subject_register: Uw %s account activatie
82 mail_body_register: 'Gebruik de volgende link om Uw account te activeren:'
82 mail_body_register: 'Gebruik de volgende link om Uw account te activeren:'
83
83
84 gui_validation_error: 1 fout
84 gui_validation_error: 1 fout
85 gui_validation_error_plural: %d fouten
85 gui_validation_error_plural: %d fouten
86
86
87 field_name: Naam
87 field_name: Naam
88 field_description: Beschrijving
88 field_description: Beschrijving
89 field_summary: Samenvatting
89 field_summary: Samenvatting
90 field_is_required: Verplicht
90 field_is_required: Verplicht
91 field_firstname: Voornaam
91 field_firstname: Voornaam
92 field_lastname: Achternaam
92 field_lastname: Achternaam
93 field_mail: Email
93 field_mail: Email
94 field_filename: Bestand
94 field_filename: Bestand
95 field_filesize: Grootte
95 field_filesize: Grootte
96 field_downloads: Downloads
96 field_downloads: Downloads
97 field_author: Auteur
97 field_author: Auteur
98 field_created_on: Aangemaakt
98 field_created_on: Aangemaakt
99 field_updated_on: Gewijzigd
99 field_updated_on: Gewijzigd
100 field_field_format: Formaat
100 field_field_format: Formaat
101 field_is_for_all: Voor alle projecten
101 field_is_for_all: Voor alle projecten
102 field_possible_values: Mogelijke waarden
102 field_possible_values: Mogelijke waarden
103 field_regexp: Reguliere expressie
103 field_regexp: Reguliere expressie
104 field_min_length: Minimale lengte
104 field_min_length: Minimale lengte
105 field_max_length: Maximale lengte
105 field_max_length: Maximale lengte
106 field_value: Waarde
106 field_value: Waarde
107 field_category: Categorie
107 field_category: Categorie
108 field_title: Titel
108 field_title: Titel
109 field_project: Project
109 field_project: Project
110 field_issue: Issue
110 field_issue: Issue
111 field_status: Status
111 field_status: Status
112 field_notes: Notities
112 field_notes: Notities
113 field_is_closed: Issue gesloten
113 field_is_closed: Issue gesloten
114 field_is_default: Default
114 field_is_default: Default
115 field_tracker: Tracker
115 field_tracker: Tracker
116 field_subject: Onderwerp
116 field_subject: Onderwerp
117 field_due_date: Verwachte datum gereed
117 field_due_date: Verwachte datum gereed
118 field_assigned_to: Toegewezen aan
118 field_assigned_to: Toegewezen aan
119 field_priority: Prioriteit
119 field_priority: Prioriteit
120 field_fixed_version: Target version
120 field_fixed_version: Target version
121 field_user: Gebruiker
121 field_user: Gebruiker
122 field_role: Rol
122 field_role: Rol
123 field_homepage: Homepage
123 field_homepage: Homepage
124 field_is_public: Publiek
124 field_is_public: Publiek
125 field_parent: Subproject van
125 field_parent: Subproject van
126 field_is_in_chlog: Issues weergegeven in wijzigingslog
126 field_is_in_chlog: Issues weergegeven in wijzigingslog
127 field_is_in_roadmap: Issues weergegeven in roadmap
127 field_is_in_roadmap: Issues weergegeven in roadmap
128 field_login: Inloggen
128 field_login: Inloggen
129 field_mail_notification: Mail mededelingen
129 field_mail_notification: Mail mededelingen
130 field_admin: Administrateur
130 field_admin: Administrateur
131 field_last_login_on: Laatste bezoek
131 field_last_login_on: Laatste bezoek
132 field_language: Taal
132 field_language: Taal
133 field_effective_date: Datum
133 field_effective_date: Datum
134 field_password: Wachtwoord
134 field_password: Wachtwoord
135 field_new_password: Nieuw wachtwoord
135 field_new_password: Nieuw wachtwoord
136 field_password_confirmation: Bevestigen
136 field_password_confirmation: Bevestigen
137 field_version: Versie
137 field_version: Versie
138 field_type: Type
138 field_type: Type
139 field_host: Host
139 field_host: Host
140 field_port: Port
140 field_port: Port
141 field_account: Account
141 field_account: Account
142 field_base_dn: Base DN
142 field_base_dn: Base DN
143 field_attr_login: Login attribuut
143 field_attr_login: Login attribuut
144 field_attr_firstname: Voornaam attribuut
144 field_attr_firstname: Voornaam attribuut
145 field_attr_lastname: Achternaam attribuut
145 field_attr_lastname: Achternaam attribuut
146 field_attr_mail: Email attribuut
146 field_attr_mail: Email attribuut
147 field_onthefly: On-the-fly aanmaken van een gebruiker
147 field_onthefly: On-the-fly aanmaken van een gebruiker
148 field_start_date: Start
148 field_start_date: Start
149 field_done_ratio: %% Gereed
149 field_done_ratio: %% Gereed
150 field_auth_source: Authenticatiemethode
150 field_auth_source: Authenticatiemethode
151 field_hide_mail: Verberg mijn emailadres
151 field_hide_mail: Verberg mijn emailadres
152 field_comments: Commentaar
152 field_comments: Commentaar
153 field_url: URL
153 field_url: URL
154 field_start_page: Startpagina
154 field_start_page: Startpagina
155 field_subproject: Subproject
155 field_subproject: Subproject
156 field_hours: Uren
156 field_hours: Uren
157 field_activity: Activiteit
157 field_activity: Activiteit
158 field_spent_on: Datum
158 field_spent_on: Datum
159 field_identifier: Identificatiecode
159 field_identifier: Identificatiecode
160 field_is_filter: Gebruikt als een filter
160 field_is_filter: Gebruikt als een filter
161 field_issue_to_id: Gerelateerd issue
161 field_issue_to_id: Gerelateerd issue
162 field_delay: Vertraging
162 field_delay: Vertraging
163 field_assignable: Issues can be assigned to this role
163 field_assignable: Issues can be assigned to this role
164 field_redirect_existing_links: Redirect existing links
164 field_redirect_existing_links: Redirect existing links
165 field_estimated_hours: Estimated time
165 field_estimated_hours: Estimated time
166 field_default_value: Default value
166 field_default_value: Default value
167
167
168 setting_app_title: Applicatie titel
168 setting_app_title: Applicatie titel
169 setting_app_subtitle: Applicatie ondertitel
169 setting_app_subtitle: Applicatie ondertitel
170 setting_welcome_text: Welkomsttekst
170 setting_welcome_text: Welkomsttekst
171 setting_default_language: Default taal
171 setting_default_language: Default taal
172 setting_login_required: Authent. nodig
172 setting_login_required: Authent. nodig
173 setting_self_registration: Zelf-registratie toegestaan
173 setting_self_registration: Zelf-registratie toegestaan
174 setting_attachment_max_size: Attachment max. grootte
174 setting_attachment_max_size: Attachment max. grootte
175 setting_issues_export_limit: Limiet export issues
175 setting_issues_export_limit: Limiet export issues
176 setting_mail_from: Afzender mail adres
176 setting_mail_from: Afzender mail adres
177 setting_host_name: Host naam
177 setting_host_name: Host naam
178 setting_text_formatting: Tekst formaat
178 setting_text_formatting: Tekst formaat
179 setting_wiki_compression: Wiki geschiedenis comprimeren
179 setting_wiki_compression: Wiki geschiedenis comprimeren
180 setting_feeds_limit: Feed inhoud limiet
180 setting_feeds_limit: Feed inhoud limiet
181 setting_autofetch_changesets: Haal commits automatisch op
181 setting_autofetch_changesets: Haal commits automatisch op
182 setting_sys_api_enabled: Gebruik WS voor repository beheer
182 setting_sys_api_enabled: Gebruik WS voor repository beheer
183 setting_commit_ref_keywords: Referencing keywords
183 setting_commit_ref_keywords: Referencing keywords
184 setting_commit_fix_keywords: Fixing keywords
184 setting_commit_fix_keywords: Fixing keywords
185 setting_autologin: Autologin
185 setting_autologin: Autologin
186 setting_date_format: Date format
186 setting_date_format: Date format
187 setting_cross_project_issue_relations: Allow cross-project issue relations
187 setting_cross_project_issue_relations: Allow cross-project issue relations
188
188
189 label_user: Gebruiker
189 label_user: Gebruiker
190 label_user_plural: Gebruikers
190 label_user_plural: Gebruikers
191 label_user_new: Nieuwe gebruiker
191 label_user_new: Nieuwe gebruiker
192 label_project: Project
192 label_project: Project
193 label_project_new: Nieuw project
193 label_project_new: Nieuw project
194 label_project_plural: Projecten
194 label_project_plural: Projecten
195 label_project_all: Alle Projecten
195 label_project_all: Alle Projecten
196 label_project_latest: Nieuwste projecten
196 label_project_latest: Nieuwste projecten
197 label_issue: Issue
197 label_issue: Issue
198 label_issue_new: Nieuw issue
198 label_issue_new: Nieuw issue
199 label_issue_plural: Issues
199 label_issue_plural: Issues
200 label_issue_view_all: Bekijk alle issues
200 label_issue_view_all: Bekijk alle issues
201 label_document: Document
201 label_document: Document
202 label_document_new: Nieuw document
202 label_document_new: Nieuw document
203 label_document_plural: Documenten
203 label_document_plural: Documenten
204 label_role: Rol
204 label_role: Rol
205 label_role_plural: Rollen
205 label_role_plural: Rollen
206 label_role_new: Nieuwe rol
206 label_role_new: Nieuwe rol
207 label_role_and_permissions: Rollen en permissies
207 label_role_and_permissions: Rollen en permissies
208 label_member: Lid
208 label_member: Lid
209 label_member_new: Nieuw lid
209 label_member_new: Nieuw lid
210 label_member_plural: Leden
210 label_member_plural: Leden
211 label_tracker: Tracker
211 label_tracker: Tracker
212 label_tracker_plural: Trackers
212 label_tracker_plural: Trackers
213 label_tracker_new: Nieuwe tracker
213 label_tracker_new: Nieuwe tracker
214 label_workflow: Workflow
214 label_workflow: Workflow
215 label_issue_status: Issue status
215 label_issue_status: Issue status
216 label_issue_status_plural: Issue statussen
216 label_issue_status_plural: Issue statussen
217 label_issue_status_new: Nieuwe status
217 label_issue_status_new: Nieuwe status
218 label_issue_category: Issue categorie
218 label_issue_category: Issue categorie
219 label_issue_category_plural: Issue categorieën
219 label_issue_category_plural: Issue categorieën
220 label_issue_category_new: Nieuwe categorie
220 label_issue_category_new: Nieuwe categorie
221 label_custom_field: Custom veld
221 label_custom_field: Custom veld
222 label_custom_field_plural: Custom velden
222 label_custom_field_plural: Custom velden
223 label_custom_field_new: Nieuw custom veld
223 label_custom_field_new: Nieuw custom veld
224 label_enumerations: Enumeraties
224 label_enumerations: Enumeraties
225 label_enumeration_new: Nieuwe waarde
225 label_enumeration_new: Nieuwe waarde
226 label_information: Informatie
226 label_information: Informatie
227 label_information_plural: Informatie
227 label_information_plural: Informatie
228 label_please_login: Gaarne inloggen
228 label_please_login: Gaarne inloggen
229 label_register: Registreer
229 label_register: Registreer
230 label_password_lost: Wachtwoord verloren
230 label_password_lost: Wachtwoord verloren
231 label_home: Home
231 label_home: Home
232 label_my_page: Mijn pagina
232 label_my_page: Mijn pagina
233 label_my_account: Mijn account
233 label_my_account: Mijn account
234 label_my_projects: Mijn projecten
234 label_my_projects: Mijn projecten
235 label_administration: Administratie
235 label_administration: Administratie
236 label_login: Inloggen
236 label_login: Inloggen
237 label_logout: Uitloggen
237 label_logout: Uitloggen
238 label_help: Help
238 label_help: Help
239 label_reported_issues: Gemelde issues
239 label_reported_issues: Gemelde issues
240 label_assigned_to_me_issues: Aan mij toegewezen issues
240 label_assigned_to_me_issues: Aan mij toegewezen issues
241 label_last_login: Laatste bezoek
241 label_last_login: Laatste bezoek
242 label_last_updates: Laatste wijziging
242 label_last_updates: Laatste wijziging
243 label_last_updates_plural: %d laatste wijziging
243 label_last_updates_plural: %d laatste wijziging
244 label_registered_on: Geregistreerd op
244 label_registered_on: Geregistreerd op
245 label_activity: Activiteit
245 label_activity: Activiteit
246 label_new: Nieuw
246 label_new: Nieuw
247 label_logged_as: Ingelogd als
247 label_logged_as: Ingelogd als
248 label_environment: Omgeving
248 label_environment: Omgeving
249 label_authentication: Authenticatie
249 label_authentication: Authenticatie
250 label_auth_source: Authenticatie modus
250 label_auth_source: Authenticatie modus
251 label_auth_source_new: Nieuwe authenticatie modus
251 label_auth_source_new: Nieuwe authenticatie modus
252 label_auth_source_plural: Authenticatie modi
252 label_auth_source_plural: Authenticatie modi
253 label_subproject_plural: Subprojecten
253 label_subproject_plural: Subprojecten
254 label_min_max_length: Min - Max lengte
254 label_min_max_length: Min - Max lengte
255 label_list: Lijst
255 label_list: Lijst
256 label_date: Datum
256 label_date: Datum
257 label_integer: Integer
257 label_integer: Integer
258 label_boolean: Boolean
258 label_boolean: Boolean
259 label_string: Tekst
259 label_string: Tekst
260 label_text: Lange tekst
260 label_text: Lange tekst
261 label_attribute: Attribuut
261 label_attribute: Attribuut
262 label_attribute_plural: Attributen
262 label_attribute_plural: Attributen
263 label_download: %d Download
263 label_download: %d Download
264 label_download_plural: %d Downloads
264 label_download_plural: %d Downloads
265 label_no_data: Geen gegevens om te tonen
265 label_no_data: Geen gegevens om te tonen
266 label_change_status: Wijzig status
266 label_change_status: Wijzig status
267 label_history: Geschiedenis
267 label_history: Geschiedenis
268 label_attachment: Bestand
268 label_attachment: Bestand
269 label_attachment_new: Nieuw bestand
269 label_attachment_new: Nieuw bestand
270 label_attachment_delete: Verwijder bestand
270 label_attachment_delete: Verwijder bestand
271 label_attachment_plural: Bestanden
271 label_attachment_plural: Bestanden
272 label_report: Rapport
272 label_report: Rapport
273 label_report_plural: Rapporten
273 label_report_plural: Rapporten
274 label_news: Nieuws
274 label_news: Nieuws
275 label_news_new: Voeg nieuws toe
275 label_news_new: Voeg nieuws toe
276 label_news_plural: Nieuws
276 label_news_plural: Nieuws
277 label_news_latest: Laatste nieuws
277 label_news_latest: Laatste nieuws
278 label_news_view_all: Bekijk al het nieuws
278 label_news_view_all: Bekijk al het nieuws
279 label_change_log: Wijzigingslog
279 label_change_log: Wijzigingslog
280 label_settings: Instellingen
280 label_settings: Instellingen
281 label_overview: Overzicht
281 label_overview: Overzicht
282 label_version: Versie
282 label_version: Versie
283 label_version_new: Nieuwe versie
283 label_version_new: Nieuwe versie
284 label_version_plural: Versies
284 label_version_plural: Versies
285 label_confirmation: Bevestiging
285 label_confirmation: Bevestiging
286 label_export_to: Exporteer naar
286 label_export_to: Exporteer naar
287 label_read: Lees...
287 label_read: Lees...
288 label_public_projects: Publieke projecten
288 label_public_projects: Publieke projecten
289 label_open_issues: open
289 label_open_issues: open
290 label_open_issues_plural: open
290 label_open_issues_plural: open
291 label_closed_issues: gesloten
291 label_closed_issues: gesloten
292 label_closed_issues_plural: gesloten
292 label_closed_issues_plural: gesloten
293 label_total: Totaal
293 label_total: Totaal
294 label_permissions: Permissies
294 label_permissions: Permissies
295 label_current_status: Huidige status
295 label_current_status: Huidige status
296 label_new_statuses_allowed: Nieuwe statuses toegestaan
296 label_new_statuses_allowed: Nieuwe statuses toegestaan
297 label_all: alle
297 label_all: alle
298 label_none: geen
298 label_none: geen
299 label_next: Volgende
299 label_next: Volgende
300 label_previous: Vorige
300 label_previous: Vorige
301 label_used_by: Gebruikt door
301 label_used_by: Gebruikt door
302 label_details: Details
302 label_details: Details
303 label_add_note: Voeg een notitie toe
303 label_add_note: Voeg een notitie toe
304 label_per_page: Per pagina
304 label_per_page: Per pagina
305 label_calendar: Kalender
305 label_calendar: Kalender
306 label_months_from: maanden vanaf
306 label_months_from: maanden vanaf
307 label_gantt: Gantt
307 label_gantt: Gantt
308 label_internal: Intern
308 label_internal: Intern
309 label_last_changes: laatste %d wijzigingen
309 label_last_changes: laatste %d wijzigingen
310 label_change_view_all: Bekijk alle wijzigingen
310 label_change_view_all: Bekijk alle wijzigingen
311 label_personalize_page: Personaliseer deze pagina
311 label_personalize_page: Personaliseer deze pagina
312 label_comment: Commentaar
312 label_comment: Commentaar
313 label_comment_plural: Commentaar
313 label_comment_plural: Commentaar
314 label_comment_add: Voeg commentaar toe
314 label_comment_add: Voeg commentaar toe
315 label_comment_added: Commentaar toegevoegd
315 label_comment_added: Commentaar toegevoegd
316 label_comment_delete: Verwijder commentaar
316 label_comment_delete: Verwijder commentaar
317 label_query: Eigen zoekvraag
317 label_query: Eigen zoekvraag
318 label_query_plural: Eigen zoekvragen
318 label_query_plural: Eigen zoekvragen
319 label_query_new: Nieuwe zoekvraag
319 label_query_new: Nieuwe zoekvraag
320 label_filter_add: Voeg filter toe
320 label_filter_add: Voeg filter toe
321 label_filter_plural: Filters
321 label_filter_plural: Filters
322 label_equals: is gelijk
322 label_equals: is gelijk
323 label_not_equals: is niet gelijk
323 label_not_equals: is niet gelijk
324 label_in_less_than: in minder dan
324 label_in_less_than: in minder dan
325 label_in_more_than: in meer dan
325 label_in_more_than: in meer dan
326 label_in: in
326 label_in: in
327 label_today: vandaag
327 label_today: vandaag
328 label_this_week: this week
328 label_this_week: this week
329 label_less_than_ago: minder dan dagen geleden
329 label_less_than_ago: minder dan dagen geleden
330 label_more_than_ago: meer dan dagen geleden
330 label_more_than_ago: meer dan dagen geleden
331 label_ago: dagen geleden
331 label_ago: dagen geleden
332 label_contains: bevat
332 label_contains: bevat
333 label_not_contains: bevat niet
333 label_not_contains: bevat niet
334 label_day_plural: dagen
334 label_day_plural: dagen
335 label_repository: Repository
335 label_repository: Repository
336 label_browse: Blader
336 label_browse: Blader
337 label_modification: %d wijziging
337 label_modification: %d wijziging
338 label_modification_plural: %d wijzigingen
338 label_modification_plural: %d wijzigingen
339 label_revision: Revisie
339 label_revision: Revisie
340 label_revision_plural: Revisies
340 label_revision_plural: Revisies
341 label_added: toegevoegd
341 label_added: toegevoegd
342 label_modified: gewijzigd
342 label_modified: gewijzigd
343 label_deleted: verwijderd
343 label_deleted: verwijderd
344 label_latest_revision: Meest recente revisie
344 label_latest_revision: Meest recente revisie
345 label_latest_revision_plural: Meest recente revisies
345 label_latest_revision_plural: Meest recente revisies
346 label_view_revisions: Bekijk revisies
346 label_view_revisions: Bekijk revisies
347 label_max_size: Maximum grootte
347 label_max_size: Maximum grootte
348 label_on: 'van'
348 label_on: 'van'
349 label_sort_highest: Verplaats naar begin
349 label_sort_highest: Verplaats naar begin
350 label_sort_higher: Verplaats naar boven
350 label_sort_higher: Verplaats naar boven
351 label_sort_lower: Verplaats naar beneden
351 label_sort_lower: Verplaats naar beneden
352 label_sort_lowest: Verplaats naar eind
352 label_sort_lowest: Verplaats naar eind
353 label_roadmap: Roadmap
353 label_roadmap: Roadmap
354 label_roadmap_due_in: Due in
354 label_roadmap_due_in: Due in
355 label_roadmap_overdue: %s late
355 label_roadmap_overdue: %s late
356 label_roadmap_no_issues: Geen issues voor deze versie
356 label_roadmap_no_issues: Geen issues voor deze versie
357 label_search: Zoeken
357 label_search: Zoeken
358 label_result_plural: Resultaten
358 label_result_plural: Resultaten
359 label_all_words: Alle woorden
359 label_all_words: Alle woorden
360 label_wiki: Wiki
360 label_wiki: Wiki
361 label_wiki_edit: Wiki edit
361 label_wiki_edit: Wiki edit
362 label_wiki_edit_plural: Wiki edits
362 label_wiki_edit_plural: Wiki edits
363 label_wiki_page: Wiki page
363 label_wiki_page: Wiki page
364 label_wiki_page_plural: Wiki pages
364 label_wiki_page_plural: Wiki pages
365 label_index_by_title: Index by title
365 label_index_by_title: Index by title
366 label_index_by_date: Index by date
366 label_index_by_date: Index by date
367 label_current_version: Huidige versie
367 label_current_version: Huidige versie
368 label_preview: Testweergave
368 label_preview: Testweergave
369 label_feed_plural: Feeds
369 label_feed_plural: Feeds
370 label_changes_details: Details van alle wijzigingen
370 label_changes_details: Details van alle wijzigingen
371 label_issue_tracking: Issue tracking
371 label_issue_tracking: Issue tracking
372 label_spent_time: Gespendeerde tijd
372 label_spent_time: Gespendeerde tijd
373 label_f_hour: %.2f uur
373 label_f_hour: %.2f uur
374 label_f_hour_plural: %.2f uren
374 label_f_hour_plural: %.2f uren
375 label_time_tracking: Tijd tracking
375 label_time_tracking: Tijd tracking
376 label_change_plural: Wijzigingen
376 label_change_plural: Wijzigingen
377 label_statistics: Statistieken
377 label_statistics: Statistieken
378 label_commits_per_month: Commits per maand
378 label_commits_per_month: Commits per maand
379 label_commits_per_author: Commits per auteur
379 label_commits_per_author: Commits per auteur
380 label_view_diff: Bekijk verschillen
380 label_view_diff: Bekijk verschillen
381 label_diff_inline: inline
381 label_diff_inline: inline
382 label_diff_side_by_side: naast elkaar
382 label_diff_side_by_side: naast elkaar
383 label_options: Opties
383 label_options: Opties
384 label_copy_workflow_from: Kopieer workflow van
384 label_copy_workflow_from: Kopieer workflow van
385 label_permissions_report: Permissies rapport
385 label_permissions_report: Permissies rapport
386 label_watched_issues: Gemonitorde issues
386 label_watched_issues: Gemonitorde issues
387 label_related_issues: Gerelateerde issues
387 label_related_issues: Gerelateerde issues
388 label_applied_status: Toegekende status
388 label_applied_status: Toegekende status
389 label_loading: Laden...
389 label_loading: Laden...
390 label_relation_new: Nieuwe relatie
390 label_relation_new: Nieuwe relatie
391 label_relation_delete: Verwijder relatie
391 label_relation_delete: Verwijder relatie
392 label_relates_to: gerelateerd aan
392 label_relates_to: gerelateerd aan
393 label_duplicates: dupliceert
393 label_duplicates: dupliceert
394 label_blocks: blokkeert
394 label_blocks: blokkeert
395 label_blocked_by: geblokkeerd door
395 label_blocked_by: geblokkeerd door
396 label_precedes: gaat vooraf aan
396 label_precedes: gaat vooraf aan
397 label_follows: volgt op
397 label_follows: volgt op
398 label_end_to_start: eind tot start
398 label_end_to_start: eind tot start
399 label_end_to_end: eind tot eind
399 label_end_to_end: eind tot eind
400 label_start_to_start: start tot start
400 label_start_to_start: start tot start
401 label_start_to_end: start tot eind
401 label_start_to_end: start tot eind
402 label_stay_logged_in: Blijf ingelogd
402 label_stay_logged_in: Blijf ingelogd
403 label_disabled: uitgeschakeld
403 label_disabled: uitgeschakeld
404 label_show_completed_versions: Toon afgeronde versies
404 label_show_completed_versions: Toon afgeronde versies
405 label_me: ik
405 label_me: ik
406 label_board: Forum
406 label_board: Forum
407 label_board_new: Nieuw forum
407 label_board_new: Nieuw forum
408 label_board_plural: Forums
408 label_board_plural: Forums
409 label_topic_plural: Onderwerpen
409 label_topic_plural: Onderwerpen
410 label_message_plural: Berichten
410 label_message_plural: Berichten
411 label_message_last: Laatste bericht
411 label_message_last: Laatste bericht
412 label_message_new: Nieuw bericht
412 label_message_new: Nieuw bericht
413 label_reply_plural: Antwoorden
413 label_reply_plural: Antwoorden
414 label_send_information: Send account information to the user
414 label_send_information: Send account information to the user
415 label_year: Year
415 label_year: Year
416 label_month: Month
416 label_month: Month
417 label_week: Week
417 label_week: Week
418 label_date_from: From
418 label_date_from: From
419 label_date_to: To
419 label_date_to: To
420 label_language_based: Language based
420 label_language_based: Language based
421 label_sort_by: Sort by %s
421 label_sort_by: Sort by %s
422 label_send_test_email: Send a test email
422 label_send_test_email: Send a test email
423 label_feeds_access_key_created_on: RSS access key created %s ago
423 label_feeds_access_key_created_on: RSS access key created %s ago
424 label_module_plural: Modules
424 label_module_plural: Modules
425 label_added_time_by: Added by %s %s ago
425 label_added_time_by: Added by %s %s ago
426 label_updated_time: Updated %s ago
426 label_updated_time: Updated %s ago
427 label_jump_to_a_project: Jump to a project...
427 label_jump_to_a_project: Jump to a project...
428
428
429 button_login: Inloggen
429 button_login: Inloggen
430 button_submit: Toevoegen
430 button_submit: Toevoegen
431 button_save: Bewaren
431 button_save: Bewaren
432 button_check_all: Selecteer alle
432 button_check_all: Selecteer alle
433 button_uncheck_all: Deselecteer alle
433 button_uncheck_all: Deselecteer alle
434 button_delete: Verwijder
434 button_delete: Verwijder
435 button_create: Maak
435 button_create: Maak
436 button_test: Test
436 button_test: Test
437 button_edit: Bewerk
437 button_edit: Bewerk
438 button_add: Voeg toe
438 button_add: Voeg toe
439 button_change: Wijzig
439 button_change: Wijzig
440 button_apply: Pas toe
440 button_apply: Pas toe
441 button_clear: Leeg maken
441 button_clear: Leeg maken
442 button_lock: Lock
442 button_lock: Lock
443 button_unlock: Unlock
443 button_unlock: Unlock
444 button_download: Download
444 button_download: Download
445 button_list: Lijst
445 button_list: Lijst
446 button_view: Bekijken
446 button_view: Bekijken
447 button_move: Verplaatsen
447 button_move: Verplaatsen
448 button_back: Terug
448 button_back: Terug
449 button_cancel: Annuleer
449 button_cancel: Annuleer
450 button_activate: Activeer
450 button_activate: Activeer
451 button_sort: Sorteer
451 button_sort: Sorteer
452 button_log_time: Log tijd
452 button_log_time: Log tijd
453 button_rollback: Rollback naar deze versie
453 button_rollback: Rollback naar deze versie
454 button_watch: Monitor
454 button_watch: Monitor
455 button_unwatch: Niet meer monitoren
455 button_unwatch: Niet meer monitoren
456 button_reply: Antwoord
456 button_reply: Antwoord
457 button_archive: Archive
457 button_archive: Archive
458 button_unarchive: Unarchive
458 button_unarchive: Unarchive
459 button_reset: Reset
459 button_reset: Reset
460 button_rename: Rename
460 button_rename: Rename
461
461
462 status_active: Actief
462 status_active: Actief
463 status_registered: geregistreerd
463 status_registered: geregistreerd
464 status_locked: gelockt
464 status_locked: gelockt
465
465
466 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
466 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
467 text_regexp_info: bv. ^[A-Z0-9]+$
467 text_regexp_info: bv. ^[A-Z0-9]+$
468 text_min_max_length_info: 0 betekent geen restrictie
468 text_min_max_length_info: 0 betekent geen restrictie
469 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
469 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
470 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
470 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
471 text_are_you_sure: Weet U het zeker ?
471 text_are_you_sure: Weet U het zeker ?
472 text_journal_changed: gewijzigd van %s naar %s
472 text_journal_changed: gewijzigd van %s naar %s
473 text_journal_set_to: ingesteld op %s
473 text_journal_set_to: ingesteld op %s
474 text_journal_deleted: verwijderd
474 text_journal_deleted: verwijderd
475 text_tip_task_begin_day: taak die op deze dag begint
475 text_tip_task_begin_day: taak die op deze dag begint
476 text_tip_task_end_day: taak die op deze dag eindigt
476 text_tip_task_end_day: taak die op deze dag eindigt
477 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
477 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
478 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
478 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
479 text_caracters_maximum: %d van maximum aantal tekens.
479 text_caracters_maximum: %d van maximum aantal tekens.
480 text_length_between: Lengte tussen %d en %d tekens.
480 text_length_between: Lengte tussen %d en %d tekens.
481 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
481 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
482 text_unallowed_characters: Niet toegestane tekens
482 text_unallowed_characters: Niet toegestane tekens
483 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
483 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
484 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
484 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
485 text_issue_added: Issue %s is gerapporteerd (by %s).
485 text_issue_added: Issue %s is gerapporteerd (by %s).
486 text_issue_updated: Issue %s is gewijzigd (by %s).
486 text_issue_updated: Issue %s is gewijzigd (by %s).
487 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
487 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
488 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
488 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
489 text_issue_category_destroy_assignments: Remove category assignments
489 text_issue_category_destroy_assignments: Remove category assignments
490 text_issue_category_reassign_to: Reassing issues to this category
490 text_issue_category_reassign_to: Reassing issues to this category
491
491
492 default_role_manager: Manager
492 default_role_manager: Manager
493 default_role_developper: Ontwikkelaar
493 default_role_developper: Ontwikkelaar
494 default_role_reporter: Rapporteur
494 default_role_reporter: Rapporteur
495 default_tracker_bug: Bug
495 default_tracker_bug: Bug
496 default_tracker_feature: Feature
496 default_tracker_feature: Feature
497 default_tracker_support: Support
497 default_tracker_support: Support
498 default_issue_status_new: Nieuw
498 default_issue_status_new: Nieuw
499 default_issue_status_assigned: Toegewezen
499 default_issue_status_assigned: Toegewezen
500 default_issue_status_resolved: Opgelost
500 default_issue_status_resolved: Opgelost
501 default_issue_status_feedback: Terugkoppeling
501 default_issue_status_feedback: Terugkoppeling
502 default_issue_status_closed: Gesloten
502 default_issue_status_closed: Gesloten
503 default_issue_status_rejected: Afgewezen
503 default_issue_status_rejected: Afgewezen
504 default_doc_category_user: Gebruikersdocumentatie
504 default_doc_category_user: Gebruikersdocumentatie
505 default_doc_category_tech: Technische documentatie
505 default_doc_category_tech: Technische documentatie
506 default_priority_low: Laag
506 default_priority_low: Laag
507 default_priority_normal: Normaal
507 default_priority_normal: Normaal
508 default_priority_high: Hoog
508 default_priority_high: Hoog
509 default_priority_urgent: Spoed
509 default_priority_urgent: Spoed
510 default_priority_immediate: Onmiddellijk
510 default_priority_immediate: Onmiddellijk
511 default_activity_design: Design
511 default_activity_design: Design
512 default_activity_development: Development
512 default_activity_development: Development
513
513
514 enumeration_issue_priorities: Issue prioriteiten
514 enumeration_issue_priorities: Issue prioriteiten
515 enumeration_doc_categories: Document categorieën
515 enumeration_doc_categories: Document categorieën
516 enumeration_activities: Activiteiten (tijd tracking)
516 enumeration_activities: Activiteiten (tijd tracking)
517 text_comma_separated: Multiple values allowed (comma separated).
517 text_comma_separated: Multiple values allowed (comma separated).
518 label_file_plural: Files
518 label_file_plural: Files
519 label_changeset_plural: Changesets
519 label_changeset_plural: Changesets
520 field_column_names: Columns
520 field_column_names: Columns
521 label_default_columns: Default columns
521 label_default_columns: Default columns
522 setting_issue_list_default_columns: Default columns displayed on the issue list
522 setting_issue_list_default_columns: Default columns displayed on the issue list
523 setting_repositories_encodings: Repositories encodings
523 setting_repositories_encodings: Repositories encodings
524 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
524 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
525 label_bulk_edit_selected_issues: Bulk edit selected issues
525 label_bulk_edit_selected_issues: Bulk edit selected issues
526 label_no_change_option: (No change)
526 label_no_change_option: (No change)
527 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
527 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
528 label_theme: Theme
528 label_theme: Theme
529 label_default: Default
529 label_default: Default
530 label_search_titles_only: Search titles only
530 label_search_titles_only: Search titles only
531 label_nobody: nobody
531 label_nobody: nobody
532 button_change_password: Change password
532 button_change_password: Change password
533 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
533 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
534 label_user_mail_option_selected: "For any event on the selected projects only..."
534 label_user_mail_option_selected: "For any event on the selected projects only..."
535 label_user_mail_option_all: "For any event on all my projects"
535 label_user_mail_option_all: "For any event on all my projects"
536 label_user_mail_option_none: "Only for things I watch or I'm involved in"
536 label_user_mail_option_none: "Only for things I watch or I'm involved in"
537 setting_emails_footer: Emails footer
537 setting_emails_footer: Emails footer
538 label_float: Float
538 label_float: Float
539 button_copy: Copy
539 button_copy: Copy
540 mail_body_account_information_external: You can use your "%s" account to log in.
540 mail_body_account_information_external: You can use your "%s" account to log in.
541 mail_body_account_information: Your account information
541 mail_body_account_information: Your account information
542 setting_protocol: Protocol
542 setting_protocol: Protocol
543 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
543 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
544 setting_time_format: Time format
544 setting_time_format: Time format
545 label_registration_activation_by_email: account activation by email
545 label_registration_activation_by_email: account activation by email
546 mail_subject_account_activation_request: %s account activation request
546 mail_subject_account_activation_request: %s account activation request
547 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
547 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
548 label_registration_automatic_activation: automatic account activation
548 label_registration_automatic_activation: automatic account activation
549 label_registration_manual_activation: manual account activation
549 label_registration_manual_activation: manual account activation
550 notice_account_pending: "Your account was created and is now pending administrator approval."
550 notice_account_pending: "Your account was created and is now pending administrator approval."
551 field_time_zone: Time zone
551 field_time_zone: Time zone
552 text_caracters_minimum: Must be at least %d characters long.
552 text_caracters_minimum: Must be at least %d characters long.
553 setting_bcc_recipients: Blind carbon copy recipients (bcc)
553 setting_bcc_recipients: Blind carbon copy recipients (bcc)
554 button_annotate: Annotate
554 button_annotate: Annotate
555 label_issues_by: Issues by %s
555 label_issues_by: Issues by %s
556 field_searchable: Searchable
556 field_searchable: Searchable
557 label_display_per_page: 'Per page: %s'
557 label_display_per_page: 'Per page: %s'
558 setting_per_page_options: Objects per page options
558 setting_per_page_options: Objects per page options
559 label_age: Age
559 label_age: Age
560 notice_default_data_loaded: Default configuration successfully loaded.
560 notice_default_data_loaded: Default configuration successfully loaded.
561 text_load_default_configuration: Load the default configuration
561 text_load_default_configuration: Load the default configuration
562 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
562 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
563 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
563 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
564 button_update: Update
564 button_update: Update
565 label_change_properties: Change properties
565 label_change_properties: Change properties
566 label_general: General
566 label_general: General
567 label_repository_plural: Repositories
567 label_repository_plural: Repositories
568 label_associated_revisions: Associated revisions
568 label_associated_revisions: Associated revisions
569 setting_user_format: Users display format
569 setting_user_format: Users display format
570 text_status_changed_by_changeset: Applied in changeset %s.
570 text_status_changed_by_changeset: Applied in changeset %s.
571 label_more: More
571 label_more: More
572 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
572 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
573 label_scm: SCM
573 label_scm: SCM
574 text_select_project_modules: 'Select modules to enable for this project:'
574 text_select_project_modules: 'Select modules to enable for this project:'
575 label_issue_added: Issue added
575 label_issue_added: Issue added
576 label_issue_updated: Issue updated
576 label_issue_updated: Issue updated
577 label_document_added: Document added
577 label_document_added: Document added
578 label_message_posted: Message added
578 label_message_posted: Message added
579 label_file_added: File added
579 label_file_added: File added
580 label_news_added: News added
580 label_news_added: News added
581 project_module_boards: Boards
581 project_module_boards: Boards
582 project_module_issue_tracking: Issue tracking
582 project_module_issue_tracking: Issue tracking
583 project_module_wiki: Wiki
583 project_module_wiki: Wiki
584 project_module_files: Files
584 project_module_files: Files
585 project_module_documents: Documents
585 project_module_documents: Documents
586 project_module_repository: Repository
586 project_module_repository: Repository
587 project_module_news: News
587 project_module_news: News
588 project_module_time_tracking: Time tracking
588 project_module_time_tracking: Time tracking
589 text_file_repository_writable: File repository writable
589 text_file_repository_writable: File repository writable
590 text_default_administrator_account_changed: Default administrator account changed
590 text_default_administrator_account_changed: Default administrator account changed
591 text_rmagick_available: RMagick available (optional)
591 text_rmagick_available: RMagick available (optional)
592 button_configure: Configure
592 button_configure: Configure
593 label_plugins: Plugins
593 label_plugins: Plugins
594 label_ldap_authentication: LDAP authentication
594 label_ldap_authentication: LDAP authentication
595 label_downloads_abbr: D/L
595 label_downloads_abbr: D/L
596 label_this_month: this month
596 label_this_month: this month
597 label_last_n_days: last %d days
597 label_last_n_days: last %d days
598 label_all_time: all time
598 label_all_time: all time
599 label_this_year: this year
599 label_this_year: this year
600 label_date_range: Date range
600 label_date_range: Date range
601 label_last_week: last week
601 label_last_week: last week
602 label_yesterday: yesterday
602 label_yesterday: yesterday
603 label_last_month: last month
603 label_last_month: last month
604 label_add_another_file: Add another file
604 label_add_another_file: Add another file
605 label_optional_description: Optional description
605 label_optional_description: Optional description
606 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
606 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
607 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
607 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
608 text_assign_time_entries_to_project: Assign reported hours to the project
608 text_assign_time_entries_to_project: Assign reported hours to the project
609 text_destroy_time_entries: Delete reported hours
609 text_destroy_time_entries: Delete reported hours
610 text_reassign_time_entries: 'Reassign reported hours to this issue:'
610 text_reassign_time_entries: 'Reassign reported hours to this issue:'
611 setting_activity_days_default: Days displayed on project activity
611 setting_activity_days_default: Days displayed on project activity
612 label_chronological_order: In chronological order
612 label_chronological_order: In chronological order
613 field_comments_sorting: Display comments
613 field_comments_sorting: Display comments
614 label_reverse_chronological_order: In reverse chronological order
614 label_reverse_chronological_order: In reverse chronological order
615 label_preferences: Preferences
615 label_preferences: Preferences
616 setting_display_subprojects_issues: Display subprojects issues on main projects by default
616 setting_display_subprojects_issues: Display subprojects issues on main projects by default
617 label_overall_activity: Overall activity
617 label_overall_activity: Overall activity
618 setting_default_projects_public: New projects are public by default
618 setting_default_projects_public: New projects are public by default
619 error_scm_annotate: "The entry does not exist or can not be annotated."
619 error_scm_annotate: "The entry does not exist or can not be annotated."
620 label_planning: Planning
620 label_planning: Planning
621 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
621 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
622 label_and_its_subprojects: %s and its subprojects
622 label_and_its_subprojects: %s and its subprojects
623 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
623 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
624 mail_subject_reminder: "%d issue(s) due in the next days"
624 mail_subject_reminder: "%d issue(s) due in the next days"
625 text_user_wrote: '%s wrote:'
625 text_user_wrote: '%s wrote:'
626 label_duplicated_by: duplicated by
626 label_duplicated_by: duplicated by
627 setting_enabled_scm: Enabled SCM
627 setting_enabled_scm: Enabled SCM
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
630 label_incoming_emails: Incoming emails
631 label_generate_key: Generate a key
632 setting_mail_handler_api_enabled: Enable WS for incoming emails
633 setting_mail_handler_api_key: API key
@@ -1,629 +1,633
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,Mars,April,Mai,Juni,Juli,August,September,Oktober,November,Desember
4 actionview_datehelper_select_month_names: Januar,Februar,Mars,April,Mai,Juni,Juli,August,September,Oktober,November,Desember
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Des
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Des
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dager
9 actionview_datehelper_time_in_words_day_plural: %d dager
10 actionview_datehelper_time_in_words_hour_about: ca. en time
10 actionview_datehelper_time_in_words_hour_about: ca. en time
11 actionview_datehelper_time_in_words_hour_about_plural: ca. %d timer
11 actionview_datehelper_time_in_words_hour_about_plural: ca. %d timer
12 actionview_datehelper_time_in_words_hour_about_single: ca. en time
12 actionview_datehelper_time_in_words_hour_about_single: ca. en time
13 actionview_datehelper_time_in_words_minute: 1 minutt
13 actionview_datehelper_time_in_words_minute: 1 minutt
14 actionview_datehelper_time_in_words_minute_half: et halvt minutt
14 actionview_datehelper_time_in_words_minute_half: et halvt minutt
15 actionview_datehelper_time_in_words_minute_less_than: mindre enn et minutt
15 actionview_datehelper_time_in_words_minute_less_than: mindre enn et minutt
16 actionview_datehelper_time_in_words_minute_plural: %d minutter
16 actionview_datehelper_time_in_words_minute_plural: %d minutter
17 actionview_datehelper_time_in_words_minute_single: 1 minutt
17 actionview_datehelper_time_in_words_minute_single: 1 minutt
18 actionview_datehelper_time_in_words_second_less_than: mindre enn et sekund
18 actionview_datehelper_time_in_words_second_less_than: mindre enn et sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre enn %d sekunder
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre enn %d sekunder
20 actionview_instancetag_blank_option: Vennligst velg
20 actionview_instancetag_blank_option: Vennligst velg
21
21
22 activerecord_error_inclusion: finnes ikke i listen
22 activerecord_error_inclusion: finnes ikke i listen
23 activerecord_error_exclusion: er reservert
23 activerecord_error_exclusion: er reservert
24 activerecord_error_invalid: er ugyldig
24 activerecord_error_invalid: er ugyldig
25 activerecord_error_confirmation: stemmer ikke med bekreftelsen
25 activerecord_error_confirmation: stemmer ikke med bekreftelsen
26 activerecord_error_accepted: må aksepteres
26 activerecord_error_accepted: må aksepteres
27 activerecord_error_empty: kan ikke være tom
27 activerecord_error_empty: kan ikke være tom
28 activerecord_error_blank: kan ikke være blank
28 activerecord_error_blank: kan ikke være blank
29 activerecord_error_too_long: er for langt
29 activerecord_error_too_long: er for langt
30 activerecord_error_too_short: er for kort
30 activerecord_error_too_short: er for kort
31 activerecord_error_wrong_length: har feil lengde
31 activerecord_error_wrong_length: har feil lengde
32 activerecord_error_taken: er opptatt
32 activerecord_error_taken: er opptatt
33 activerecord_error_not_a_number: er ikke et nummer
33 activerecord_error_not_a_number: er ikke et nummer
34 activerecord_error_not_a_date: er ikke en gyldig dato
34 activerecord_error_not_a_date: er ikke en gyldig dato
35 activerecord_error_greater_than_start_date: må være større enn startdato
35 activerecord_error_greater_than_start_date: må være større enn startdato
36 activerecord_error_not_same_project: hører ikke til samme prosjekt
36 activerecord_error_not_same_project: hører ikke til samme prosjekt
37 activerecord_error_circular_dependency: Denne relasjonen ville lagd en sirkulær avhengighet
37 activerecord_error_circular_dependency: Denne relasjonen ville lagd en sirkulær avhengighet
38
38
39 general_fmt_age: %d år
39 general_fmt_age: %d år
40 general_fmt_age_plural: %d år
40 general_fmt_age_plural: %d år
41 general_fmt_date: %%d. %%B %%Y
41 general_fmt_date: %%d. %%B %%Y
42 general_fmt_datetime: %%d. %%B %%H:%%M
42 general_fmt_datetime: %%d. %%B %%H:%%M
43 general_fmt_datetime_short: %%d.%%m.%%Y, %%H:%%M
43 general_fmt_datetime_short: %%d.%%m.%%Y, %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Nei'
45 general_text_No: 'Nei'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nei'
47 general_text_no: 'nei'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Norwegian (Norsk bokmål)'
49 general_lang_name: 'Norwegian (Norsk bokmål)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Mandag,Tirsdag,Onsdag,Torsdag,Fredag,Lørdag,Søndag
53 general_day_names: Mandag,Tirsdag,Onsdag,Torsdag,Fredag,Lørdag,Søndag
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Kontoen er oppdatert.
56 notice_account_updated: Kontoen er oppdatert.
57 notice_account_invalid_creditentials: Feil brukernavn eller passord
57 notice_account_invalid_creditentials: Feil brukernavn eller passord
58 notice_account_password_updated: Passordet er oppdatert.
58 notice_account_password_updated: Passordet er oppdatert.
59 notice_account_wrong_password: Feil passord
59 notice_account_wrong_password: Feil passord
60 notice_account_register_done: Kontoen er opprettet. Klikk lenken som er sendt deg i e-post for å aktivere kontoen.
60 notice_account_register_done: Kontoen er opprettet. Klikk lenken som er sendt deg i e-post for å aktivere kontoen.
61 notice_account_unknown_email: Ukjent bruker.
61 notice_account_unknown_email: Ukjent bruker.
62 notice_can_t_change_password: Denne kontoen bruker ekstern godkjenning. Passordet kan ikke endres.
62 notice_can_t_change_password: Denne kontoen bruker ekstern godkjenning. Passordet kan ikke endres.
63 notice_account_lost_email_sent: En e-post med instruksjoner for å velge et nytt passord er sendt til deg.
63 notice_account_lost_email_sent: En e-post med instruksjoner for å velge et nytt passord er sendt til deg.
64 notice_account_activated: Din konto er aktivert. Du kan nå logge inn.
64 notice_account_activated: Din konto er aktivert. Du kan nå logge inn.
65 notice_successful_create: Opprettet.
65 notice_successful_create: Opprettet.
66 notice_successful_update: Oppdatert.
66 notice_successful_update: Oppdatert.
67 notice_successful_delete: Slettet.
67 notice_successful_delete: Slettet.
68 notice_successful_connection: Koblet opp.
68 notice_successful_connection: Koblet opp.
69 notice_file_not_found: Siden du forsøkte å vise eksisterer ikke, eller er slettet.
69 notice_file_not_found: Siden du forsøkte å vise eksisterer ikke, eller er slettet.
70 notice_locking_conflict: Data har blitt oppdatert av en annen bruker.
70 notice_locking_conflict: Data har blitt oppdatert av en annen bruker.
71 notice_not_authorized: Du har ikke adgang til denne siden.
71 notice_not_authorized: Du har ikke adgang til denne siden.
72 notice_email_sent: En e-post er sendt til %s
72 notice_email_sent: En e-post er sendt til %s
73 notice_email_error: En feil oppstod under sending av e-post (%s)
73 notice_email_error: En feil oppstod under sending av e-post (%s)
74 notice_feeds_access_key_reseted: Din RSS-tilgangsnøkkel er nullstilt.
74 notice_feeds_access_key_reseted: Din RSS-tilgangsnøkkel er nullstilt.
75 notice_failed_to_save_issues: "Lykkes ikke å lagre %d sak(er) %d valgt: %s."
75 notice_failed_to_save_issues: "Lykkes ikke å lagre %d sak(er) %d valgt: %s."
76 notice_no_issue_selected: "Ingen sak valgt! Vennligst merk sakene du vil endre."
76 notice_no_issue_selected: "Ingen sak valgt! Vennligst merk sakene du vil endre."
77 notice_account_pending: "Din konto ble opprettet og avventer administrativ godkjenning."
77 notice_account_pending: "Din konto ble opprettet og avventer administrativ godkjenning."
78 notice_default_data_loaded: Standardkonfigurasjonen lastet inn.
78 notice_default_data_loaded: Standardkonfigurasjonen lastet inn.
79
79
80 error_can_t_load_default_data: "Standardkonfigurasjonen kunne ikke lastes inn: %s"
80 error_can_t_load_default_data: "Standardkonfigurasjonen kunne ikke lastes inn: %s"
81 error_scm_not_found: "Elementet og/eller revisjonen eksisterer ikke i depoet."
81 error_scm_not_found: "Elementet og/eller revisjonen eksisterer ikke i depoet."
82 error_scm_command_failed: "En feil oppstod under tilkobling til depoet: %s"
82 error_scm_command_failed: "En feil oppstod under tilkobling til depoet: %s"
83 error_scm_annotate: "Elementet eksisterer ikke, eller kan ikke noteres."
83 error_scm_annotate: "Elementet eksisterer ikke, eller kan ikke noteres."
84 error_issue_not_found_in_project: 'Saken eksisterer ikke, eller hører ikke til dette prosjektet'
84 error_issue_not_found_in_project: 'Saken eksisterer ikke, eller hører ikke til dette prosjektet'
85
85
86 mail_subject_lost_password: Ditt %s passord
86 mail_subject_lost_password: Ditt %s passord
87 mail_body_lost_password: 'Klikk følgende lenke for å endre ditt passord:'
87 mail_body_lost_password: 'Klikk følgende lenke for å endre ditt passord:'
88 mail_subject_register: %s kontoaktivering
88 mail_subject_register: %s kontoaktivering
89 mail_body_register: 'Klikk følgende lenke for å aktivere din konto:'
89 mail_body_register: 'Klikk følgende lenke for å aktivere din konto:'
90 mail_body_account_information_external: Du kan bruke din "%s"-konto for å logge inn.
90 mail_body_account_information_external: Du kan bruke din "%s"-konto for å logge inn.
91 mail_body_account_information: Informasjon om din konto
91 mail_body_account_information: Informasjon om din konto
92 mail_subject_account_activation_request: %s kontoaktivering
92 mail_subject_account_activation_request: %s kontoaktivering
93 mail_body_account_activation_request: 'En ny bruker (%s) er registrert, og avventer din godkjenning:'
93 mail_body_account_activation_request: 'En ny bruker (%s) er registrert, og avventer din godkjenning:'
94 mail_subject_reminder: "%d sak(er) har frist de kommende dagene"
94 mail_subject_reminder: "%d sak(er) har frist de kommende dagene"
95 mail_body_reminder: "%d sak(er) som er tildelt deg har frist de kommende %d dager:"
95 mail_body_reminder: "%d sak(er) som er tildelt deg har frist de kommende %d dager:"
96
96
97 gui_validation_error: 1 feil
97 gui_validation_error: 1 feil
98 gui_validation_error_plural: %d feil
98 gui_validation_error_plural: %d feil
99
99
100 field_name: Navn
100 field_name: Navn
101 field_description: Beskrivelse
101 field_description: Beskrivelse
102 field_summary: Oppsummering
102 field_summary: Oppsummering
103 field_is_required: Kreves
103 field_is_required: Kreves
104 field_firstname: Fornavn
104 field_firstname: Fornavn
105 field_lastname: Etternavn
105 field_lastname: Etternavn
106 field_mail: E-post
106 field_mail: E-post
107 field_filename: Fil
107 field_filename: Fil
108 field_filesize: Størrelse
108 field_filesize: Størrelse
109 field_downloads: Nedlastinger
109 field_downloads: Nedlastinger
110 field_author: Forfatter
110 field_author: Forfatter
111 field_created_on: Opprettet
111 field_created_on: Opprettet
112 field_updated_on: Oppdatert
112 field_updated_on: Oppdatert
113 field_field_format: Format
113 field_field_format: Format
114 field_is_for_all: For alle prosjekter
114 field_is_for_all: For alle prosjekter
115 field_possible_values: Lovlige verdier
115 field_possible_values: Lovlige verdier
116 field_regexp: Regular expression
116 field_regexp: Regular expression
117 field_min_length: Minimum lengde
117 field_min_length: Minimum lengde
118 field_max_length: Maksimum lengde
118 field_max_length: Maksimum lengde
119 field_value: Verdi
119 field_value: Verdi
120 field_category: Kategori
120 field_category: Kategori
121 field_title: Tittel
121 field_title: Tittel
122 field_project: Prosjekt
122 field_project: Prosjekt
123 field_issue: Sak
123 field_issue: Sak
124 field_status: Status
124 field_status: Status
125 field_notes: Notater
125 field_notes: Notater
126 field_is_closed: Lukker saken
126 field_is_closed: Lukker saken
127 field_is_default: Standardverdi
127 field_is_default: Standardverdi
128 field_tracker: Sakstype
128 field_tracker: Sakstype
129 field_subject: Emne
129 field_subject: Emne
130 field_due_date: Frist
130 field_due_date: Frist
131 field_assigned_to: Tildelt til
131 field_assigned_to: Tildelt til
132 field_priority: Prioritet
132 field_priority: Prioritet
133 field_fixed_version: Mål-versjon
133 field_fixed_version: Mål-versjon
134 field_user: Bruker
134 field_user: Bruker
135 field_role: Rolle
135 field_role: Rolle
136 field_homepage: Hjemmeside
136 field_homepage: Hjemmeside
137 field_is_public: Offentlig
137 field_is_public: Offentlig
138 field_parent: Underprosjekt til
138 field_parent: Underprosjekt til
139 field_is_in_chlog: Vises i endringslogg
139 field_is_in_chlog: Vises i endringslogg
140 field_is_in_roadmap: Vises i veikart
140 field_is_in_roadmap: Vises i veikart
141 field_login: Brukernavn
141 field_login: Brukernavn
142 field_mail_notification: E-post-varsling
142 field_mail_notification: E-post-varsling
143 field_admin: Administrator
143 field_admin: Administrator
144 field_last_login_on: Sist innlogget
144 field_last_login_on: Sist innlogget
145 field_language: Språk
145 field_language: Språk
146 field_effective_date: Dato
146 field_effective_date: Dato
147 field_password: Passord
147 field_password: Passord
148 field_new_password: Nytt passord
148 field_new_password: Nytt passord
149 field_password_confirmation: Bekreft passord
149 field_password_confirmation: Bekreft passord
150 field_version: Versjon
150 field_version: Versjon
151 field_type: Type
151 field_type: Type
152 field_host: Vert
152 field_host: Vert
153 field_port: Port
153 field_port: Port
154 field_account: Konto
154 field_account: Konto
155 field_base_dn: Base DN
155 field_base_dn: Base DN
156 field_attr_login: Brukernavnsattributt
156 field_attr_login: Brukernavnsattributt
157 field_attr_firstname: Fornavnsattributt
157 field_attr_firstname: Fornavnsattributt
158 field_attr_lastname: Etternavnsattributt
158 field_attr_lastname: Etternavnsattributt
159 field_attr_mail: E-post-attributt
159 field_attr_mail: E-post-attributt
160 field_onthefly: On-the-fly brukeropprettelse
160 field_onthefly: On-the-fly brukeropprettelse
161 field_start_date: Start
161 field_start_date: Start
162 field_done_ratio: %% Ferdig
162 field_done_ratio: %% Ferdig
163 field_auth_source: Autentifikasjonsmodus
163 field_auth_source: Autentifikasjonsmodus
164 field_hide_mail: Skjul min e-post-adresse
164 field_hide_mail: Skjul min e-post-adresse
165 field_comments: Kommentarer
165 field_comments: Kommentarer
166 field_url: URL
166 field_url: URL
167 field_start_page: Startside
167 field_start_page: Startside
168 field_subproject: Underprosjekt
168 field_subproject: Underprosjekt
169 field_hours: Timer
169 field_hours: Timer
170 field_activity: Aktivitet
170 field_activity: Aktivitet
171 field_spent_on: Dato
171 field_spent_on: Dato
172 field_identifier: Identifikasjon
172 field_identifier: Identifikasjon
173 field_is_filter: Brukes som filter
173 field_is_filter: Brukes som filter
174 field_issue_to_id: Relatert saker
174 field_issue_to_id: Relatert saker
175 field_delay: Forsinkelse
175 field_delay: Forsinkelse
176 field_assignable: Saker kan tildeles denne rollen
176 field_assignable: Saker kan tildeles denne rollen
177 field_redirect_existing_links: Viderekoble eksisterende lenker
177 field_redirect_existing_links: Viderekoble eksisterende lenker
178 field_estimated_hours: Estimert tid
178 field_estimated_hours: Estimert tid
179 field_column_names: Kolonner
179 field_column_names: Kolonner
180 field_time_zone: Tidssone
180 field_time_zone: Tidssone
181 field_searchable: Søkbar
181 field_searchable: Søkbar
182 field_default_value: Standardverdi
182 field_default_value: Standardverdi
183 field_comments_sorting: Vis kommentarer
183 field_comments_sorting: Vis kommentarer
184
184
185 setting_app_title: Applikasjonstittel
185 setting_app_title: Applikasjonstittel
186 setting_app_subtitle: Applikasjonens undertittel
186 setting_app_subtitle: Applikasjonens undertittel
187 setting_welcome_text: Velkomsttekst
187 setting_welcome_text: Velkomsttekst
188 setting_default_language: Standardspråk
188 setting_default_language: Standardspråk
189 setting_login_required: Krever innlogging
189 setting_login_required: Krever innlogging
190 setting_self_registration: Selvregistrering
190 setting_self_registration: Selvregistrering
191 setting_attachment_max_size: Maks. størrelse vedlegg
191 setting_attachment_max_size: Maks. størrelse vedlegg
192 setting_issues_export_limit: Eksportgrense for saker
192 setting_issues_export_limit: Eksportgrense for saker
193 setting_mail_from: Avsenders e-post
193 setting_mail_from: Avsenders e-post
194 setting_bcc_recipients: Blindkopi (bcc) til mottakere
194 setting_bcc_recipients: Blindkopi (bcc) til mottakere
195 setting_host_name: Vertsnavn
195 setting_host_name: Vertsnavn
196 setting_text_formatting: Tekstformattering
196 setting_text_formatting: Tekstformattering
197 setting_wiki_compression: Komprimering av Wiki-historikk
197 setting_wiki_compression: Komprimering av Wiki-historikk
198 setting_feeds_limit: Innholdsgrense for Feed
198 setting_feeds_limit: Innholdsgrense for Feed
199 setting_default_projects_public: Nye prosjekter er offentlige som standard
199 setting_default_projects_public: Nye prosjekter er offentlige som standard
200 setting_autofetch_changesets: Autohenting av innsendinger
200 setting_autofetch_changesets: Autohenting av innsendinger
201 setting_sys_api_enabled: Aktiver webservice for depot-administrasjon
201 setting_sys_api_enabled: Aktiver webservice for depot-administrasjon
202 setting_commit_ref_keywords: Nøkkelord for referanse
202 setting_commit_ref_keywords: Nøkkelord for referanse
203 setting_commit_fix_keywords: Nøkkelord for retting
203 setting_commit_fix_keywords: Nøkkelord for retting
204 setting_autologin: Autoinnlogging
204 setting_autologin: Autoinnlogging
205 setting_date_format: Datoformat
205 setting_date_format: Datoformat
206 setting_time_format: Tidsformat
206 setting_time_format: Tidsformat
207 setting_cross_project_issue_relations: Tillat saksrelasjoner mellom prosjekter
207 setting_cross_project_issue_relations: Tillat saksrelasjoner mellom prosjekter
208 setting_issue_list_default_columns: Standardkolonner vist i sakslisten
208 setting_issue_list_default_columns: Standardkolonner vist i sakslisten
209 setting_repositories_encodings: Depot-tegnsett
209 setting_repositories_encodings: Depot-tegnsett
210 setting_emails_footer: E-post-signatur
210 setting_emails_footer: E-post-signatur
211 setting_protocol: Protokoll
211 setting_protocol: Protokoll
212 setting_per_page_options: Alternativer, objekter pr. side
212 setting_per_page_options: Alternativer, objekter pr. side
213 setting_user_format: Visningsformat, brukere
213 setting_user_format: Visningsformat, brukere
214 setting_activity_days_default: Dager vist på prosjektaktivitet
214 setting_activity_days_default: Dager vist på prosjektaktivitet
215 setting_display_subprojects_issues: Vis saker fra underprosjekter på hovedprosjekt som standard
215 setting_display_subprojects_issues: Vis saker fra underprosjekter på hovedprosjekt som standard
216 setting_enabled_scm: Aktiviserte SCM
216 setting_enabled_scm: Aktiviserte SCM
217
217
218 project_module_issue_tracking: Sakssporing
218 project_module_issue_tracking: Sakssporing
219 project_module_time_tracking: Tidssporing
219 project_module_time_tracking: Tidssporing
220 project_module_news: Nyheter
220 project_module_news: Nyheter
221 project_module_documents: Dokumenter
221 project_module_documents: Dokumenter
222 project_module_files: Filer
222 project_module_files: Filer
223 project_module_wiki: Wiki
223 project_module_wiki: Wiki
224 project_module_repository: Depot
224 project_module_repository: Depot
225 project_module_boards: Forumer
225 project_module_boards: Forumer
226
226
227 label_user: Bruker
227 label_user: Bruker
228 label_user_plural: Brukere
228 label_user_plural: Brukere
229 label_user_new: Ny bruker
229 label_user_new: Ny bruker
230 label_project: Prosjekt
230 label_project: Prosjekt
231 label_project_new: Nytt prosjekt
231 label_project_new: Nytt prosjekt
232 label_project_plural: Prosjekter
232 label_project_plural: Prosjekter
233 label_project_all: Alle prosjekter
233 label_project_all: Alle prosjekter
234 label_project_latest: Siste prosjekter
234 label_project_latest: Siste prosjekter
235 label_issue: Sak
235 label_issue: Sak
236 label_issue_new: Ny sak
236 label_issue_new: Ny sak
237 label_issue_plural: Saker
237 label_issue_plural: Saker
238 label_issue_view_all: Vis alle saker
238 label_issue_view_all: Vis alle saker
239 label_issues_by: Saker etter %s
239 label_issues_by: Saker etter %s
240 label_issue_added: Sak lagt til
240 label_issue_added: Sak lagt til
241 label_issue_updated: Sak oppdatert
241 label_issue_updated: Sak oppdatert
242 label_document: Dokument
242 label_document: Dokument
243 label_document_new: Nytt dokument
243 label_document_new: Nytt dokument
244 label_document_plural: Dokumenter
244 label_document_plural: Dokumenter
245 label_document_added: Dokument lagt til
245 label_document_added: Dokument lagt til
246 label_role: Rolle
246 label_role: Rolle
247 label_role_plural: Roller
247 label_role_plural: Roller
248 label_role_new: Ny rolle
248 label_role_new: Ny rolle
249 label_role_and_permissions: Roller og tillatelser
249 label_role_and_permissions: Roller og tillatelser
250 label_member: Medlem
250 label_member: Medlem
251 label_member_new: Nytt medlem
251 label_member_new: Nytt medlem
252 label_member_plural: Medlemmer
252 label_member_plural: Medlemmer
253 label_tracker: Sakstype
253 label_tracker: Sakstype
254 label_tracker_plural: Sakstyper
254 label_tracker_plural: Sakstyper
255 label_tracker_new: Ny sakstype
255 label_tracker_new: Ny sakstype
256 label_workflow: Arbeidsflyt
256 label_workflow: Arbeidsflyt
257 label_issue_status: Saksstatus
257 label_issue_status: Saksstatus
258 label_issue_status_plural: Saksstatuser
258 label_issue_status_plural: Saksstatuser
259 label_issue_status_new: Ny status
259 label_issue_status_new: Ny status
260 label_issue_category: Sakskategori
260 label_issue_category: Sakskategori
261 label_issue_category_plural: Sakskategorier
261 label_issue_category_plural: Sakskategorier
262 label_issue_category_new: Ny kategori
262 label_issue_category_new: Ny kategori
263 label_custom_field: Eget felt
263 label_custom_field: Eget felt
264 label_custom_field_plural: Egne felt
264 label_custom_field_plural: Egne felt
265 label_custom_field_new: Nytt eget felt
265 label_custom_field_new: Nytt eget felt
266 label_enumerations: Kodelister
266 label_enumerations: Kodelister
267 label_enumeration_new: Ny verdi
267 label_enumeration_new: Ny verdi
268 label_information: Informasjon
268 label_information: Informasjon
269 label_information_plural: Informasjon
269 label_information_plural: Informasjon
270 label_please_login: Vennlist logg inn
270 label_please_login: Vennlist logg inn
271 label_register: Registrer
271 label_register: Registrer
272 label_password_lost: Mistet passord
272 label_password_lost: Mistet passord
273 label_home: Hjem
273 label_home: Hjem
274 label_my_page: Min side
274 label_my_page: Min side
275 label_my_account: Min konto
275 label_my_account: Min konto
276 label_my_projects: Mine prosjekter
276 label_my_projects: Mine prosjekter
277 label_administration: Administrasjon
277 label_administration: Administrasjon
278 label_login: Logg inn
278 label_login: Logg inn
279 label_logout: Logg ut
279 label_logout: Logg ut
280 label_help: Hjelp
280 label_help: Hjelp
281 label_reported_issues: Rapporterte saker
281 label_reported_issues: Rapporterte saker
282 label_assigned_to_me_issues: Saker tildelt meg
282 label_assigned_to_me_issues: Saker tildelt meg
283 label_last_login: Sist innlogget
283 label_last_login: Sist innlogget
284 label_last_updates: Sist oppdatert
284 label_last_updates: Sist oppdatert
285 label_last_updates_plural: %d siste oppdaterte
285 label_last_updates_plural: %d siste oppdaterte
286 label_registered_on: Registrert
286 label_registered_on: Registrert
287 label_activity: Aktivitet
287 label_activity: Aktivitet
288 label_overall_activity: All aktivitet
288 label_overall_activity: All aktivitet
289 label_new: Ny
289 label_new: Ny
290 label_logged_as: Innlogget som
290 label_logged_as: Innlogget som
291 label_environment: Miljø
291 label_environment: Miljø
292 label_authentication: Autentifikasjon
292 label_authentication: Autentifikasjon
293 label_auth_source: Autentifikasjonsmodus
293 label_auth_source: Autentifikasjonsmodus
294 label_auth_source_new: Ny autentifikasjonmodus
294 label_auth_source_new: Ny autentifikasjonmodus
295 label_auth_source_plural: Autentifikasjonsmoduser
295 label_auth_source_plural: Autentifikasjonsmoduser
296 label_subproject_plural: Underprosjekter
296 label_subproject_plural: Underprosjekter
297 label_and_its_subprojects: %s og dets underprosjekter
297 label_and_its_subprojects: %s og dets underprosjekter
298 label_min_max_length: Min.-maks. lengde
298 label_min_max_length: Min.-maks. lengde
299 label_list: Liste
299 label_list: Liste
300 label_date: Dato
300 label_date: Dato
301 label_integer: Heltall
301 label_integer: Heltall
302 label_float: Kommatall
302 label_float: Kommatall
303 label_boolean: Sann/usann
303 label_boolean: Sann/usann
304 label_string: Tekst
304 label_string: Tekst
305 label_text: Lang tekst
305 label_text: Lang tekst
306 label_attribute: Attributt
306 label_attribute: Attributt
307 label_attribute_plural: Attributter
307 label_attribute_plural: Attributter
308 label_download: %d Nedlasting
308 label_download: %d Nedlasting
309 label_download_plural: %d Nedlastinger
309 label_download_plural: %d Nedlastinger
310 label_no_data: Ingen data å vise
310 label_no_data: Ingen data å vise
311 label_change_status: Endre status
311 label_change_status: Endre status
312 label_history: Historikk
312 label_history: Historikk
313 label_attachment: Fil
313 label_attachment: Fil
314 label_attachment_new: Ny fil
314 label_attachment_new: Ny fil
315 label_attachment_delete: Slett fil
315 label_attachment_delete: Slett fil
316 label_attachment_plural: Filer
316 label_attachment_plural: Filer
317 label_file_added: Fil lagt til
317 label_file_added: Fil lagt til
318 label_report: Rapport
318 label_report: Rapport
319 label_report_plural: Rapporter
319 label_report_plural: Rapporter
320 label_news: Nyheter
320 label_news: Nyheter
321 label_news_new: Legg til nyhet
321 label_news_new: Legg til nyhet
322 label_news_plural: Nyheter
322 label_news_plural: Nyheter
323 label_news_latest: Siste nyheter
323 label_news_latest: Siste nyheter
324 label_news_view_all: Vis alle nyheter
324 label_news_view_all: Vis alle nyheter
325 label_news_added: Nyhet lagt til
325 label_news_added: Nyhet lagt til
326 label_change_log: Endringslogg
326 label_change_log: Endringslogg
327 label_settings: Innstillinger
327 label_settings: Innstillinger
328 label_overview: Oversikt
328 label_overview: Oversikt
329 label_version: Versjon
329 label_version: Versjon
330 label_version_new: Ny versjon
330 label_version_new: Ny versjon
331 label_version_plural: Versjoner
331 label_version_plural: Versjoner
332 label_confirmation: Bekreftelse
332 label_confirmation: Bekreftelse
333 label_export_to: Eksporter til
333 label_export_to: Eksporter til
334 label_read: Leser...
334 label_read: Leser...
335 label_public_projects: Offentlige prosjekt
335 label_public_projects: Offentlige prosjekt
336 label_open_issues: åpen
336 label_open_issues: åpen
337 label_open_issues_plural: åpne
337 label_open_issues_plural: åpne
338 label_closed_issues: lukket
338 label_closed_issues: lukket
339 label_closed_issues_plural: lukkede
339 label_closed_issues_plural: lukkede
340 label_total: Total
340 label_total: Total
341 label_permissions: Godkjenninger
341 label_permissions: Godkjenninger
342 label_current_status: Nåværende status
342 label_current_status: Nåværende status
343 label_new_statuses_allowed: Tillatte nye statuser
343 label_new_statuses_allowed: Tillatte nye statuser
344 label_all: alle
344 label_all: alle
345 label_none: ingen
345 label_none: ingen
346 label_nobody: ingen
346 label_nobody: ingen
347 label_next: Neste
347 label_next: Neste
348 label_previous: Forrige
348 label_previous: Forrige
349 label_used_by: Brukt av
349 label_used_by: Brukt av
350 label_details: Detaljer
350 label_details: Detaljer
351 label_add_note: Legg til notis
351 label_add_note: Legg til notis
352 label_per_page: Pr. side
352 label_per_page: Pr. side
353 label_calendar: Kalender
353 label_calendar: Kalender
354 label_months_from: måneder fra
354 label_months_from: måneder fra
355 label_gantt: Gantt
355 label_gantt: Gantt
356 label_internal: Intern
356 label_internal: Intern
357 label_last_changes: siste %d endringer
357 label_last_changes: siste %d endringer
358 label_change_view_all: Vis alle endringer
358 label_change_view_all: Vis alle endringer
359 label_personalize_page: Tilpass denne siden
359 label_personalize_page: Tilpass denne siden
360 label_comment: Kommentar
360 label_comment: Kommentar
361 label_comment_plural: Kommentarer
361 label_comment_plural: Kommentarer
362 label_comment_add: Legg til kommentar
362 label_comment_add: Legg til kommentar
363 label_comment_added: Kommentar lagt til
363 label_comment_added: Kommentar lagt til
364 label_comment_delete: Slett kommentar
364 label_comment_delete: Slett kommentar
365 label_query: Egen spørring
365 label_query: Egen spørring
366 label_query_plural: Egne spørringer
366 label_query_plural: Egne spørringer
367 label_query_new: Ny spørring
367 label_query_new: Ny spørring
368 label_filter_add: Legg til filter
368 label_filter_add: Legg til filter
369 label_filter_plural: Filtre
369 label_filter_plural: Filtre
370 label_equals: er
370 label_equals: er
371 label_not_equals: er ikke
371 label_not_equals: er ikke
372 label_in_less_than: er mindre enn
372 label_in_less_than: er mindre enn
373 label_in_more_than: in mer enn
373 label_in_more_than: in mer enn
374 label_in: i
374 label_in: i
375 label_today: idag
375 label_today: idag
376 label_all_time: all tid
376 label_all_time: all tid
377 label_yesterday: i går
377 label_yesterday: i går
378 label_this_week: denne uken
378 label_this_week: denne uken
379 label_last_week: sist uke
379 label_last_week: sist uke
380 label_last_n_days: siste %d dager
380 label_last_n_days: siste %d dager
381 label_this_month: denne måneden
381 label_this_month: denne måneden
382 label_last_month: siste måned
382 label_last_month: siste måned
383 label_this_year: dette året
383 label_this_year: dette året
384 label_date_range: Dato-spenn
384 label_date_range: Dato-spenn
385 label_less_than_ago: mindre enn dager siden
385 label_less_than_ago: mindre enn dager siden
386 label_more_than_ago: mer enn dager siden
386 label_more_than_ago: mer enn dager siden
387 label_ago: dager siden
387 label_ago: dager siden
388 label_contains: inneholder
388 label_contains: inneholder
389 label_not_contains: ikke inneholder
389 label_not_contains: ikke inneholder
390 label_day_plural: dager
390 label_day_plural: dager
391 label_repository: Depot
391 label_repository: Depot
392 label_repository_plural: Depoter
392 label_repository_plural: Depoter
393 label_browse: Utforsk
393 label_browse: Utforsk
394 label_modification: %d endring
394 label_modification: %d endring
395 label_modification_plural: %d endringer
395 label_modification_plural: %d endringer
396 label_revision: Revisjon
396 label_revision: Revisjon
397 label_revision_plural: Revisjoner
397 label_revision_plural: Revisjoner
398 label_associated_revisions: Assosierte revisjoner
398 label_associated_revisions: Assosierte revisjoner
399 label_added: lagt til
399 label_added: lagt til
400 label_modified: endret
400 label_modified: endret
401 label_deleted: slettet
401 label_deleted: slettet
402 label_latest_revision: Siste revisjon
402 label_latest_revision: Siste revisjon
403 label_latest_revision_plural: Siste revisjoner
403 label_latest_revision_plural: Siste revisjoner
404 label_view_revisions: Vis revisjoner
404 label_view_revisions: Vis revisjoner
405 label_max_size: Maksimum størrelse
405 label_max_size: Maksimum størrelse
406 label_on: 'av'
406 label_on: 'av'
407 label_sort_highest: Flytt til toppen
407 label_sort_highest: Flytt til toppen
408 label_sort_higher: Flytt opp
408 label_sort_higher: Flytt opp
409 label_sort_lower: Flytt ned
409 label_sort_lower: Flytt ned
410 label_sort_lowest: Flytt til bunnen
410 label_sort_lowest: Flytt til bunnen
411 label_roadmap: Veikart
411 label_roadmap: Veikart
412 label_roadmap_due_in: Frist om
412 label_roadmap_due_in: Frist om
413 label_roadmap_overdue: %s over fristen
413 label_roadmap_overdue: %s over fristen
414 label_roadmap_no_issues: Ingen saker for denne versjonen
414 label_roadmap_no_issues: Ingen saker for denne versjonen
415 label_search: Søk
415 label_search: Søk
416 label_result_plural: Resultater
416 label_result_plural: Resultater
417 label_all_words: Alle ord
417 label_all_words: Alle ord
418 label_wiki: Wiki
418 label_wiki: Wiki
419 label_wiki_edit: Wiki endring
419 label_wiki_edit: Wiki endring
420 label_wiki_edit_plural: Wiki endringer
420 label_wiki_edit_plural: Wiki endringer
421 label_wiki_page: Wiki-side
421 label_wiki_page: Wiki-side
422 label_wiki_page_plural: Wiki-sider
422 label_wiki_page_plural: Wiki-sider
423 label_index_by_title: Indekser etter tittel
423 label_index_by_title: Indekser etter tittel
424 label_index_by_date: Indekser etter dato
424 label_index_by_date: Indekser etter dato
425 label_current_version: Gjeldende versjon
425 label_current_version: Gjeldende versjon
426 label_preview: Forhåndsvis
426 label_preview: Forhåndsvis
427 label_feed_plural: Feeder
427 label_feed_plural: Feeder
428 label_changes_details: Detaljer om alle endringer
428 label_changes_details: Detaljer om alle endringer
429 label_issue_tracking: Sakssporing
429 label_issue_tracking: Sakssporing
430 label_spent_time: Brukt tid
430 label_spent_time: Brukt tid
431 label_f_hour: %.2f time
431 label_f_hour: %.2f time
432 label_f_hour_plural: %.2f timer
432 label_f_hour_plural: %.2f timer
433 label_time_tracking: Tidssporing
433 label_time_tracking: Tidssporing
434 label_change_plural: Endringer
434 label_change_plural: Endringer
435 label_statistics: Statistikk
435 label_statistics: Statistikk
436 label_commits_per_month: Innsendinger pr. måned
436 label_commits_per_month: Innsendinger pr. måned
437 label_commits_per_author: Innsendinger pr. forfatter
437 label_commits_per_author: Innsendinger pr. forfatter
438 label_view_diff: Vis forskjeller
438 label_view_diff: Vis forskjeller
439 label_diff_inline: i teksten
439 label_diff_inline: i teksten
440 label_diff_side_by_side: side ved side
440 label_diff_side_by_side: side ved side
441 label_options: Alternativer
441 label_options: Alternativer
442 label_copy_workflow_from: Kopier arbeidsflyt fra
442 label_copy_workflow_from: Kopier arbeidsflyt fra
443 label_permissions_report: Godkjenningsrapport
443 label_permissions_report: Godkjenningsrapport
444 label_watched_issues: Overvåkede saker
444 label_watched_issues: Overvåkede saker
445 label_related_issues: Relaterte saker
445 label_related_issues: Relaterte saker
446 label_applied_status: Gitt status
446 label_applied_status: Gitt status
447 label_loading: Laster...
447 label_loading: Laster...
448 label_relation_new: Ny relasjon
448 label_relation_new: Ny relasjon
449 label_relation_delete: Slett relasjon
449 label_relation_delete: Slett relasjon
450 label_relates_to: relatert til
450 label_relates_to: relatert til
451 label_duplicates: dupliserer
451 label_duplicates: dupliserer
452 label_duplicated_by: duplisert av
452 label_duplicated_by: duplisert av
453 label_blocks: blokkerer
453 label_blocks: blokkerer
454 label_blocked_by: blokkert av
454 label_blocked_by: blokkert av
455 label_precedes: kommer før
455 label_precedes: kommer før
456 label_follows: følger
456 label_follows: følger
457 label_end_to_start: slutt til start
457 label_end_to_start: slutt til start
458 label_end_to_end: slutt til slutt
458 label_end_to_end: slutt til slutt
459 label_start_to_start: start til start
459 label_start_to_start: start til start
460 label_start_to_end: start til slutt
460 label_start_to_end: start til slutt
461 label_stay_logged_in: Hold meg innlogget
461 label_stay_logged_in: Hold meg innlogget
462 label_disabled: avslått
462 label_disabled: avslått
463 label_show_completed_versions: Vis ferdige versjoner
463 label_show_completed_versions: Vis ferdige versjoner
464 label_me: meg
464 label_me: meg
465 label_board: Forum
465 label_board: Forum
466 label_board_new: Nytt forum
466 label_board_new: Nytt forum
467 label_board_plural: Forumer
467 label_board_plural: Forumer
468 label_topic_plural: Emner
468 label_topic_plural: Emner
469 label_message_plural: Meldinger
469 label_message_plural: Meldinger
470 label_message_last: Siste melding
470 label_message_last: Siste melding
471 label_message_new: Ny melding
471 label_message_new: Ny melding
472 label_message_posted: Melding lagt til
472 label_message_posted: Melding lagt til
473 label_reply_plural: Svar
473 label_reply_plural: Svar
474 label_send_information: Send kontoinformasjon til brukeren
474 label_send_information: Send kontoinformasjon til brukeren
475 label_year: År
475 label_year: År
476 label_month: Måned
476 label_month: Måned
477 label_week: Uke
477 label_week: Uke
478 label_date_from: Fra
478 label_date_from: Fra
479 label_date_to: Til
479 label_date_to: Til
480 label_language_based: Basert på brukerens språk
480 label_language_based: Basert på brukerens språk
481 label_sort_by: Sorter etter %s
481 label_sort_by: Sorter etter %s
482 label_send_test_email: Send en e-post-test
482 label_send_test_email: Send en e-post-test
483 label_feeds_access_key_created_on: RSS tilgangsnøkkel opprettet for %s siden
483 label_feeds_access_key_created_on: RSS tilgangsnøkkel opprettet for %s siden
484 label_module_plural: Moduler
484 label_module_plural: Moduler
485 label_added_time_by: Lagt til av %s for %s siden
485 label_added_time_by: Lagt til av %s for %s siden
486 label_updated_time: Oppdatert for %s siden
486 label_updated_time: Oppdatert for %s siden
487 label_jump_to_a_project: Gå til et prosjekt...
487 label_jump_to_a_project: Gå til et prosjekt...
488 label_file_plural: Filer
488 label_file_plural: Filer
489 label_changeset_plural: Endringssett
489 label_changeset_plural: Endringssett
490 label_default_columns: Standardkolonner
490 label_default_columns: Standardkolonner
491 label_no_change_option: (Ingen endring)
491 label_no_change_option: (Ingen endring)
492 label_bulk_edit_selected_issues: Samlet endring av valgte saker
492 label_bulk_edit_selected_issues: Samlet endring av valgte saker
493 label_theme: Tema
493 label_theme: Tema
494 label_default: Standard
494 label_default: Standard
495 label_search_titles_only: Søk bare i titler
495 label_search_titles_only: Søk bare i titler
496 label_user_mail_option_all: "For alle hendelser mine prosjekter"
496 label_user_mail_option_all: "For alle hendelser mine prosjekter"
497 label_user_mail_option_selected: "For alle hendelser valgte prosjekt..."
497 label_user_mail_option_selected: "For alle hendelser valgte prosjekt..."
498 label_user_mail_option_none: "Bare for ting jeg overvåker eller er involvert i"
498 label_user_mail_option_none: "Bare for ting jeg overvåker eller er involvert i"
499 label_user_mail_no_self_notified: "Jeg vil ikke bli varslet om endringer jeg selv gjør"
499 label_user_mail_no_self_notified: "Jeg vil ikke bli varslet om endringer jeg selv gjør"
500 label_registration_activation_by_email: kontoaktivering pr. e-post
500 label_registration_activation_by_email: kontoaktivering pr. e-post
501 label_registration_manual_activation: manuell kontoaktivering
501 label_registration_manual_activation: manuell kontoaktivering
502 label_registration_automatic_activation: automatisk kontoaktivering
502 label_registration_automatic_activation: automatisk kontoaktivering
503 label_display_per_page: 'Pr. side: %s'
503 label_display_per_page: 'Pr. side: %s'
504 label_age: Alder
504 label_age: Alder
505 label_change_properties: Endre egenskaper
505 label_change_properties: Endre egenskaper
506 label_general: Generell
506 label_general: Generell
507 label_more: Mer
507 label_more: Mer
508 label_scm: SCM
508 label_scm: SCM
509 label_plugins: Tillegg
509 label_plugins: Tillegg
510 label_ldap_authentication: LDAP-autentifikasjon
510 label_ldap_authentication: LDAP-autentifikasjon
511 label_downloads_abbr: Nedl.
511 label_downloads_abbr: Nedl.
512 label_optional_description: Valgfri beskrivelse
512 label_optional_description: Valgfri beskrivelse
513 label_add_another_file: Legg til en fil til
513 label_add_another_file: Legg til en fil til
514 label_preferences: Brukerinnstillinger
514 label_preferences: Brukerinnstillinger
515 label_chronological_order: I kronologisk rekkefølge
515 label_chronological_order: I kronologisk rekkefølge
516 label_reverse_chronological_order: I omvendt kronologisk rekkefølge
516 label_reverse_chronological_order: I omvendt kronologisk rekkefølge
517 label_planning: Planlegging
517 label_planning: Planlegging
518
518
519 button_login: Logg inn
519 button_login: Logg inn
520 button_submit: Send
520 button_submit: Send
521 button_save: Lagre
521 button_save: Lagre
522 button_check_all: Merk alle
522 button_check_all: Merk alle
523 button_uncheck_all: Avmerk alle
523 button_uncheck_all: Avmerk alle
524 button_delete: Slett
524 button_delete: Slett
525 button_create: Opprett
525 button_create: Opprett
526 button_test: Test
526 button_test: Test
527 button_edit: Endre
527 button_edit: Endre
528 button_add: Legg til
528 button_add: Legg til
529 button_change: Endre
529 button_change: Endre
530 button_apply: Bruk
530 button_apply: Bruk
531 button_clear: Nullstill
531 button_clear: Nullstill
532 button_lock: Lås
532 button_lock: Lås
533 button_unlock: Lås opp
533 button_unlock: Lås opp
534 button_download: Last ned
534 button_download: Last ned
535 button_list: Liste
535 button_list: Liste
536 button_view: Vis
536 button_view: Vis
537 button_move: Flytt
537 button_move: Flytt
538 button_back: Tilbake
538 button_back: Tilbake
539 button_cancel: Avbryt
539 button_cancel: Avbryt
540 button_activate: Aktiver
540 button_activate: Aktiver
541 button_sort: Sorter
541 button_sort: Sorter
542 button_log_time: Logg tid
542 button_log_time: Logg tid
543 button_rollback: Rull tilbake til denne versjonen
543 button_rollback: Rull tilbake til denne versjonen
544 button_watch: Overvåk
544 button_watch: Overvåk
545 button_unwatch: Stopp overvåkning
545 button_unwatch: Stopp overvåkning
546 button_reply: Svar
546 button_reply: Svar
547 button_archive: Arkiver
547 button_archive: Arkiver
548 button_unarchive: Gjør om arkivering
548 button_unarchive: Gjør om arkivering
549 button_reset: Nullstill
549 button_reset: Nullstill
550 button_rename: Endre navn
550 button_rename: Endre navn
551 button_change_password: Endre passord
551 button_change_password: Endre passord
552 button_copy: Kopier
552 button_copy: Kopier
553 button_annotate: Notér
553 button_annotate: Notér
554 button_update: Oppdater
554 button_update: Oppdater
555 button_configure: Konfigurer
555 button_configure: Konfigurer
556
556
557 status_active: aktiv
557 status_active: aktiv
558 status_registered: registrert
558 status_registered: registrert
559 status_locked: låst
559 status_locked: låst
560
560
561 text_select_mail_notifications: Velg hendelser som skal varsles med e-post.
561 text_select_mail_notifications: Velg hendelser som skal varsles med e-post.
562 text_regexp_info: eg. ^[A-Z0-9]+$
562 text_regexp_info: eg. ^[A-Z0-9]+$
563 text_min_max_length_info: 0 betyr ingen begrensning
563 text_min_max_length_info: 0 betyr ingen begrensning
564 text_project_destroy_confirmation: Er du sikker på at du vil slette dette prosjekter og alle relatert data ?
564 text_project_destroy_confirmation: Er du sikker på at du vil slette dette prosjekter og alle relatert data ?
565 text_subprojects_destroy_warning: 'Underprojekt(ene): %s vil også bli slettet.'
565 text_subprojects_destroy_warning: 'Underprojekt(ene): %s vil også bli slettet.'
566 text_workflow_edit: Velg en rolle og en sakstype for å endre arbeidsflyten
566 text_workflow_edit: Velg en rolle og en sakstype for å endre arbeidsflyten
567 text_are_you_sure: Er du sikker ?
567 text_are_you_sure: Er du sikker ?
568 text_journal_changed: endret fra %s til %s
568 text_journal_changed: endret fra %s til %s
569 text_journal_set_to: satt til %s
569 text_journal_set_to: satt til %s
570 text_journal_deleted: slettet
570 text_journal_deleted: slettet
571 text_tip_task_begin_day: oppgaven starter denne dagen
571 text_tip_task_begin_day: oppgaven starter denne dagen
572 text_tip_task_end_day: oppgaven avsluttes denne dagen
572 text_tip_task_end_day: oppgaven avsluttes denne dagen
573 text_tip_task_begin_end_day: oppgaven starter og avsluttes denne dagen
573 text_tip_task_begin_end_day: oppgaven starter og avsluttes denne dagen
574 text_project_identifier_info: 'Små bokstaver (a-z), nummer og bindestrek tillatt.<br />Identifikatoren kan ikke endres etter den er lagret.'
574 text_project_identifier_info: 'Små bokstaver (a-z), nummer og bindestrek tillatt.<br />Identifikatoren kan ikke endres etter den er lagret.'
575 text_caracters_maximum: %d tegn maksimum.
575 text_caracters_maximum: %d tegn maksimum.
576 text_caracters_minimum: Må være minst %d tegn langt.
576 text_caracters_minimum: Må være minst %d tegn langt.
577 text_length_between: Lengde mellom %d og %d tegn.
577 text_length_between: Lengde mellom %d og %d tegn.
578 text_tracker_no_workflow: Ingen arbeidsflyt definert for denne sakstypen
578 text_tracker_no_workflow: Ingen arbeidsflyt definert for denne sakstypen
579 text_unallowed_characters: Ugyldige tegn
579 text_unallowed_characters: Ugyldige tegn
580 text_comma_separated: Flere verdier tillat (kommaseparert).
580 text_comma_separated: Flere verdier tillat (kommaseparert).
581 text_issues_ref_in_commit_messages: Referering og retting av saker i innsendingsmelding
581 text_issues_ref_in_commit_messages: Referering og retting av saker i innsendingsmelding
582 text_issue_added: Sak %s er rapportert.
582 text_issue_added: Sak %s er rapportert.
583 text_issue_updated: Sak %s er oppdatert.
583 text_issue_updated: Sak %s er oppdatert.
584 text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wikien og alt innholdet ?
584 text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wikien og alt innholdet ?
585 text_issue_category_destroy_question: Noen saker (%d) er lagt til i denne kategorien. Hva vil du gjøre ?
585 text_issue_category_destroy_question: Noen saker (%d) er lagt til i denne kategorien. Hva vil du gjøre ?
586 text_issue_category_destroy_assignments: Fjern bruk av kategorier
586 text_issue_category_destroy_assignments: Fjern bruk av kategorier
587 text_issue_category_reassign_to: Overfør sakene til denne kategorien
587 text_issue_category_reassign_to: Overfør sakene til denne kategorien
588 text_user_mail_option: "For ikke-valgte prosjekter vil du bare motta varsling om ting du overvåker eller er involveret i (eks. saker du er forfatter av eller er tildelt)."
588 text_user_mail_option: "For ikke-valgte prosjekter vil du bare motta varsling om ting du overvåker eller er involveret i (eks. saker du er forfatter av eller er tildelt)."
589 text_no_configuration_data: "Roller, arbeidsflyt, sakstyper og -statuser er ikke konfigurert enda.\nDet anbefales sterkt å laste inn standardkonfigurasjonen. Du vil kunne endre denne etter den er innlastet."
589 text_no_configuration_data: "Roller, arbeidsflyt, sakstyper og -statuser er ikke konfigurert enda.\nDet anbefales sterkt å laste inn standardkonfigurasjonen. Du vil kunne endre denne etter den er innlastet."
590 text_load_default_configuration: Last inn standardkonfigurasjonen
590 text_load_default_configuration: Last inn standardkonfigurasjonen
591 text_status_changed_by_changeset: Brukt i endringssett %s.
591 text_status_changed_by_changeset: Brukt i endringssett %s.
592 text_issues_destroy_confirmation: 'Er du sikker at du vil slette valgte sak(er) ?'
592 text_issues_destroy_confirmation: 'Er du sikker at du vil slette valgte sak(er) ?'
593 text_select_project_modules: 'Velg moduler du vil aktivere for dette prosjektet:'
593 text_select_project_modules: 'Velg moduler du vil aktivere for dette prosjektet:'
594 text_default_administrator_account_changed: Standard administrator-konto er endret
594 text_default_administrator_account_changed: Standard administrator-konto er endret
595 text_file_repository_writable: Fil-arkivet er skrivbart
595 text_file_repository_writable: Fil-arkivet er skrivbart
596 text_rmagick_available: RMagick er tilgjengelig (valgfritt)
596 text_rmagick_available: RMagick er tilgjengelig (valgfritt)
597 text_destroy_time_entries_question: %.02f timer er ført på sakene du er i ferd med å slette. Hva vil du gjøre ?
597 text_destroy_time_entries_question: %.02f timer er ført på sakene du er i ferd med å slette. Hva vil du gjøre ?
598 text_destroy_time_entries: Slett førte timer
598 text_destroy_time_entries: Slett førte timer
599 text_assign_time_entries_to_project: Overfør førte timer til prosjektet
599 text_assign_time_entries_to_project: Overfør førte timer til prosjektet
600 text_reassign_time_entries: 'Overfør førte timer til denne saken:'
600 text_reassign_time_entries: 'Overfør førte timer til denne saken:'
601 text_user_wrote: '%s skrev:'
601 text_user_wrote: '%s skrev:'
602
602
603 default_role_manager: Leder
603 default_role_manager: Leder
604 default_role_developper: Utvikler
604 default_role_developper: Utvikler
605 default_role_reporter: Rapportør
605 default_role_reporter: Rapportør
606 default_tracker_bug: Feil
606 default_tracker_bug: Feil
607 default_tracker_feature: Funksjon
607 default_tracker_feature: Funksjon
608 default_tracker_support: Support
608 default_tracker_support: Support
609 default_issue_status_new: Ny
609 default_issue_status_new: Ny
610 default_issue_status_assigned: Tildelt
610 default_issue_status_assigned: Tildelt
611 default_issue_status_resolved: Avklart
611 default_issue_status_resolved: Avklart
612 default_issue_status_feedback: Tilbakemelding
612 default_issue_status_feedback: Tilbakemelding
613 default_issue_status_closed: Lukket
613 default_issue_status_closed: Lukket
614 default_issue_status_rejected: Avvist
614 default_issue_status_rejected: Avvist
615 default_doc_category_user: Bruker-dokumentasjon
615 default_doc_category_user: Bruker-dokumentasjon
616 default_doc_category_tech: Teknisk dokumentasjon
616 default_doc_category_tech: Teknisk dokumentasjon
617 default_priority_low: Lav
617 default_priority_low: Lav
618 default_priority_normal: Normal
618 default_priority_normal: Normal
619 default_priority_high: Høy
619 default_priority_high: Høy
620 default_priority_urgent: Haster
620 default_priority_urgent: Haster
621 default_priority_immediate: Omgående
621 default_priority_immediate: Omgående
622 default_activity_design: Design
622 default_activity_design: Design
623 default_activity_development: Utvikling
623 default_activity_development: Utvikling
624
624
625 enumeration_issue_priorities: Sakssprioriteringer
625 enumeration_issue_priorities: Sakssprioriteringer
626 enumeration_doc_categories: Dokument-kategorier
626 enumeration_doc_categories: Dokument-kategorier
627 enumeration_activities: Aktiviteter (tidssporing)
627 enumeration_activities: Aktiviteter (tidssporing)
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
630 label_incoming_emails: Incoming emails
631 label_generate_key: Generate a key
632 setting_mail_handler_api_enabled: Enable WS for incoming emails
633 setting_mail_handler_api_key: API key
@@ -1,628 +1,632
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Styczeń,Luty,Marzec,Kwiecień,Maj,Czerwiec,Lipiec,Sierpień,Wrzesień,Październik,Listopad,Grudzień
4 actionview_datehelper_select_month_names: Styczeń,Luty,Marzec,Kwiecień,Maj,Czerwiec,Lipiec,Sierpień,Wrzesień,Październik,Listopad,Grudzień
5 actionview_datehelper_select_month_names_abbr: Sty,Lut,Mar,Kwi,Maj,Cze,Lip,Sie,Wrz,Paź,Lis,Gru
5 actionview_datehelper_select_month_names_abbr: Sty,Lut,Mar,Kwi,Maj,Cze,Lip,Sie,Wrz,Paź,Lis,Gru
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dzień
8 actionview_datehelper_time_in_words_day: 1 dzień
9 actionview_datehelper_time_in_words_day_plural: %d dni
9 actionview_datehelper_time_in_words_day_plural: %d dni
10 actionview_datehelper_time_in_words_hour_about: około godziny
10 actionview_datehelper_time_in_words_hour_about: około godziny
11 actionview_datehelper_time_in_words_hour_about_plural: około %d godzin
11 actionview_datehelper_time_in_words_hour_about_plural: około %d godzin
12 actionview_datehelper_time_in_words_hour_about_single: około godziny
12 actionview_datehelper_time_in_words_hour_about_single: około godziny
13 actionview_datehelper_time_in_words_minute: 1 minuta
13 actionview_datehelper_time_in_words_minute: 1 minuta
14 actionview_datehelper_time_in_words_minute_half: pół minuty
14 actionview_datehelper_time_in_words_minute_half: pół minuty
15 actionview_datehelper_time_in_words_minute_less_than: mniej niż minuta
15 actionview_datehelper_time_in_words_minute_less_than: mniej niż minuta
16 actionview_datehelper_time_in_words_minute_plural: %d minut
16 actionview_datehelper_time_in_words_minute_plural: %d minut
17 actionview_datehelper_time_in_words_minute_single: 1 minuta
17 actionview_datehelper_time_in_words_minute_single: 1 minuta
18 actionview_datehelper_time_in_words_second_less_than: mniej niż sekunda
18 actionview_datehelper_time_in_words_second_less_than: mniej niż sekunda
19 actionview_datehelper_time_in_words_second_less_than_plural: mniej niż %d sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mniej niż %d sekund
20 actionview_instancetag_blank_option: Proszę wybierz
20 actionview_instancetag_blank_option: Proszę wybierz
21
21
22 activerecord_error_inclusion: nie jest zawarte na liście
22 activerecord_error_inclusion: nie jest zawarte na liście
23 activerecord_error_exclusion: jest zarezerwowane
23 activerecord_error_exclusion: jest zarezerwowane
24 activerecord_error_invalid: jest nieprawidłowe
24 activerecord_error_invalid: jest nieprawidłowe
25 activerecord_error_confirmation: nie pasuje do potwierdzenia
25 activerecord_error_confirmation: nie pasuje do potwierdzenia
26 activerecord_error_accepted: musi być zaakceptowane
26 activerecord_error_accepted: musi być zaakceptowane
27 activerecord_error_empty: nie może być puste
27 activerecord_error_empty: nie może być puste
28 activerecord_error_blank: nie może być czyste
28 activerecord_error_blank: nie może być czyste
29 activerecord_error_too_long: jest za długie
29 activerecord_error_too_long: jest za długie
30 activerecord_error_too_short: jest za krótkie
30 activerecord_error_too_short: jest za krótkie
31 activerecord_error_wrong_length: ma złą długość
31 activerecord_error_wrong_length: ma złą długość
32 activerecord_error_taken: jest już wybrane
32 activerecord_error_taken: jest już wybrane
33 activerecord_error_not_a_number: nie jest numerem
33 activerecord_error_not_a_number: nie jest numerem
34 activerecord_error_not_a_date: nie jest prawidłową datą
34 activerecord_error_not_a_date: nie jest prawidłową datą
35 activerecord_error_greater_than_start_date: musi być większe niż początkowa data
35 activerecord_error_greater_than_start_date: musi być większe niż początkowa data
36 activerecord_error_not_same_project: nie należy do tego samego projektu
36 activerecord_error_not_same_project: nie należy do tego samego projektu
37 activerecord_error_circular_dependency: Ta relacja może wytworzyć kołową zależność
37 activerecord_error_circular_dependency: Ta relacja może wytworzyć kołową zależność
38
38
39 general_fmt_age: %d lat
39 general_fmt_age: %d lat
40 general_fmt_age_plural: %d lat
40 general_fmt_age_plural: %d lat
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nie'
45 general_text_No: 'Nie'
46 general_text_Yes: 'Tak'
46 general_text_Yes: 'Tak'
47 general_text_no: 'nie'
47 general_text_no: 'nie'
48 general_text_yes: 'tak'
48 general_text_yes: 'tak'
49 general_lang_name: 'Polski'
49 general_lang_name: 'Polski'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-2
51 general_csv_encoding: ISO-8859-2
52 general_pdf_encoding: ISO-8859-2
52 general_pdf_encoding: ISO-8859-2
53 general_day_names: Poniedziałek,Wtorek,Środa,Czwartek,Piątek,Sobota,Niedziela
53 general_day_names: Poniedziałek,Wtorek,Środa,Czwartek,Piątek,Sobota,Niedziela
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Konto prawidłowo zaktualizowane.
56 notice_account_updated: Konto prawidłowo zaktualizowane.
57 notice_account_invalid_creditentials: Zły użytkownik lub hasło
57 notice_account_invalid_creditentials: Zły użytkownik lub hasło
58 notice_account_password_updated: Hasło prawidłowo zmienione.
58 notice_account_password_updated: Hasło prawidłowo zmienione.
59 notice_account_wrong_password: Złe hasło
59 notice_account_wrong_password: Złe hasło
60 notice_account_register_done: Konto prawidłowo stworzone.
60 notice_account_register_done: Konto prawidłowo stworzone.
61 notice_account_unknown_email: Nieznany użytkownik.
61 notice_account_unknown_email: Nieznany użytkownik.
62 notice_can_t_change_password: To konto ma zewnętrzne źródło identyfikacji. Nie możesz zmienić hasła.
62 notice_can_t_change_password: To konto ma zewnętrzne źródło identyfikacji. Nie możesz zmienić hasła.
63 notice_account_lost_email_sent: Email z instrukcjami zmiany hasła został wysłany do Ciebie.
63 notice_account_lost_email_sent: Email z instrukcjami zmiany hasła został wysłany do Ciebie.
64 notice_account_activated: Twoje konto zostało aktywowane. Możesz się zalogować.
64 notice_account_activated: Twoje konto zostało aktywowane. Możesz się zalogować.
65 notice_successful_create: Udane stworzenie.
65 notice_successful_create: Udane stworzenie.
66 notice_successful_update: Udane poprawienie.
66 notice_successful_update: Udane poprawienie.
67 notice_successful_delete: Udane usunięcie.
67 notice_successful_delete: Udane usunięcie.
68 notice_successful_connection: Udane nawiązanie połączenia.
68 notice_successful_connection: Udane nawiązanie połączenia.
69 notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta.
69 notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta.
70 notice_locking_conflict: Dane poprawione przez innego użytkownika.
70 notice_locking_conflict: Dane poprawione przez innego użytkownika.
71 notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę.
71 notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę.
72
72
73 error_scm_not_found: "Obiekt lub wersja nie zostały znalezione w repozytorium."
73 error_scm_not_found: "Obiekt lub wersja nie zostały znalezione w repozytorium."
74 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
74 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
75
75
76 mail_subject_lost_password: Twoje hasło do %s
76 mail_subject_lost_password: Twoje hasło do %s
77 mail_body_lost_password: 'W celu zmiany swojego hasła użyj poniższego odnośnika:'
77 mail_body_lost_password: 'W celu zmiany swojego hasła użyj poniższego odnośnika:'
78 mail_subject_register: Aktywacja konta w %s
78 mail_subject_register: Aktywacja konta w %s
79 mail_body_register: 'W celu aktywacji Twojego konta, użyj poniższego odnośnika:'
79 mail_body_register: 'W celu aktywacji Twojego konta, użyj poniższego odnośnika:'
80
80
81 gui_validation_error: 1 błąd
81 gui_validation_error: 1 błąd
82 gui_validation_error_plural: %d błędów
82 gui_validation_error_plural: %d błędów
83
83
84 field_name: Nazwa
84 field_name: Nazwa
85 field_description: Opis
85 field_description: Opis
86 field_summary: Podsumowanie
86 field_summary: Podsumowanie
87 field_is_required: Wymagane
87 field_is_required: Wymagane
88 field_firstname: Imię
88 field_firstname: Imię
89 field_lastname: Nazwisko
89 field_lastname: Nazwisko
90 field_mail: Email
90 field_mail: Email
91 field_filename: Plik
91 field_filename: Plik
92 field_filesize: Rozmiar
92 field_filesize: Rozmiar
93 field_downloads: Pobrań
93 field_downloads: Pobrań
94 field_author: Autor
94 field_author: Autor
95 field_created_on: Stworzone
95 field_created_on: Stworzone
96 field_updated_on: Zmienione
96 field_updated_on: Zmienione
97 field_field_format: Format
97 field_field_format: Format
98 field_is_for_all: Dla wszystkich projektów
98 field_is_for_all: Dla wszystkich projektów
99 field_possible_values: Możliwe wartości
99 field_possible_values: Możliwe wartości
100 field_regexp: Wyrażenie regularne
100 field_regexp: Wyrażenie regularne
101 field_min_length: Minimalna długość
101 field_min_length: Minimalna długość
102 field_max_length: Maksymalna długość
102 field_max_length: Maksymalna długość
103 field_value: Wartość
103 field_value: Wartość
104 field_category: Kategoria
104 field_category: Kategoria
105 field_title: Tytuł
105 field_title: Tytuł
106 field_project: Projekt
106 field_project: Projekt
107 field_issue: Zagadnienie
107 field_issue: Zagadnienie
108 field_status: Status
108 field_status: Status
109 field_notes: Notatki
109 field_notes: Notatki
110 field_is_closed: Zagadnienie zamknięte
110 field_is_closed: Zagadnienie zamknięte
111 field_is_default: Domyślny status
111 field_is_default: Domyślny status
112 field_tracker: Typ zagadnienia
112 field_tracker: Typ zagadnienia
113 field_subject: Temat
113 field_subject: Temat
114 field_due_date: Data oddania
114 field_due_date: Data oddania
115 field_assigned_to: Przydzielony do
115 field_assigned_to: Przydzielony do
116 field_priority: Priorytet
116 field_priority: Priorytet
117 field_fixed_version: Wersja docelowa
117 field_fixed_version: Wersja docelowa
118 field_user: Użytkownik
118 field_user: Użytkownik
119 field_role: Rola
119 field_role: Rola
120 field_homepage: Strona www
120 field_homepage: Strona www
121 field_is_public: Publiczny
121 field_is_public: Publiczny
122 field_parent: Nadprojekt
122 field_parent: Nadprojekt
123 field_is_in_chlog: Zagadnienie pokazywane w zapisie zmian
123 field_is_in_chlog: Zagadnienie pokazywane w zapisie zmian
124 field_is_in_roadmap: Zagadnienie pokazywane na mapie
124 field_is_in_roadmap: Zagadnienie pokazywane na mapie
125 field_login: Login
125 field_login: Login
126 field_mail_notification: Powiadomienia Email
126 field_mail_notification: Powiadomienia Email
127 field_admin: Administrator
127 field_admin: Administrator
128 field_last_login_on: Ostatnie połączenie
128 field_last_login_on: Ostatnie połączenie
129 field_language: Język
129 field_language: Język
130 field_effective_date: Data
130 field_effective_date: Data
131 field_password: Hasło
131 field_password: Hasło
132 field_new_password: Nowe hasło
132 field_new_password: Nowe hasło
133 field_password_confirmation: Potwierdzenie
133 field_password_confirmation: Potwierdzenie
134 field_version: Wersja
134 field_version: Wersja
135 field_type: Typ
135 field_type: Typ
136 field_host: Host
136 field_host: Host
137 field_port: Port
137 field_port: Port
138 field_account: Konto
138 field_account: Konto
139 field_base_dn: Base DN
139 field_base_dn: Base DN
140 field_attr_login: Login atrybut
140 field_attr_login: Login atrybut
141 field_attr_firstname: Imię atrybut
141 field_attr_firstname: Imię atrybut
142 field_attr_lastname: Nazwisko atrybut
142 field_attr_lastname: Nazwisko atrybut
143 field_attr_mail: Email atrybut
143 field_attr_mail: Email atrybut
144 field_onthefly: Tworzenie użytkownika w locie
144 field_onthefly: Tworzenie użytkownika w locie
145 field_start_date: Start
145 field_start_date: Start
146 field_done_ratio: %% Wykonane
146 field_done_ratio: %% Wykonane
147 field_auth_source: Tryb identyfikacji
147 field_auth_source: Tryb identyfikacji
148 field_hide_mail: Ukryj mój adres email
148 field_hide_mail: Ukryj mój adres email
149 field_comments: Komentarz
149 field_comments: Komentarz
150 field_url: URL
150 field_url: URL
151 field_start_page: Strona startowa
151 field_start_page: Strona startowa
152 field_subproject: Podprojekt
152 field_subproject: Podprojekt
153 field_hours: Godzin
153 field_hours: Godzin
154 field_activity: Aktywność
154 field_activity: Aktywność
155 field_spent_on: Data
155 field_spent_on: Data
156 field_identifier: Identifikator
156 field_identifier: Identifikator
157 field_is_filter: Atrybut filtrowania
157 field_is_filter: Atrybut filtrowania
158 field_issue_to_id: Powiązania zagadnienia
158 field_issue_to_id: Powiązania zagadnienia
159 field_delay: Opóźnienie
159 field_delay: Opóźnienie
160 field_default_value: Domyślny
160 field_default_value: Domyślny
161
161
162 setting_app_title: Tytuł aplikacji
162 setting_app_title: Tytuł aplikacji
163 setting_app_subtitle: Podtytuł aplikacji
163 setting_app_subtitle: Podtytuł aplikacji
164 setting_welcome_text: Tekst powitalny
164 setting_welcome_text: Tekst powitalny
165 setting_default_language: Domyślny język
165 setting_default_language: Domyślny język
166 setting_login_required: Identyfikacja wymagana
166 setting_login_required: Identyfikacja wymagana
167 setting_self_registration: Własna rejestracja umożliwiona
167 setting_self_registration: Własna rejestracja umożliwiona
168 setting_attachment_max_size: Maks. rozm. załącznika
168 setting_attachment_max_size: Maks. rozm. załącznika
169 setting_issues_export_limit: Limit eksportu zagadnień
169 setting_issues_export_limit: Limit eksportu zagadnień
170 setting_mail_from: Adres email wysyłki
170 setting_mail_from: Adres email wysyłki
171 setting_host_name: Nazwa hosta
171 setting_host_name: Nazwa hosta
172 setting_text_formatting: Formatowanie tekstu
172 setting_text_formatting: Formatowanie tekstu
173 setting_wiki_compression: Kompresja historii Wiki
173 setting_wiki_compression: Kompresja historii Wiki
174 setting_feeds_limit: Limit danych RSS
174 setting_feeds_limit: Limit danych RSS
175 setting_autofetch_changesets: Automatyczne pobieranie zmian
175 setting_autofetch_changesets: Automatyczne pobieranie zmian
176 setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium
176 setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium
177 setting_commit_ref_keywords: Słowa tworzące powiązania
177 setting_commit_ref_keywords: Słowa tworzące powiązania
178 setting_commit_fix_keywords: Słowa zmieniające status
178 setting_commit_fix_keywords: Słowa zmieniające status
179 setting_autologin: Auto logowanie
179 setting_autologin: Auto logowanie
180 setting_date_format: Format daty
180 setting_date_format: Format daty
181
181
182 label_user: Użytkownik
182 label_user: Użytkownik
183 label_user_plural: Użytkownicy
183 label_user_plural: Użytkownicy
184 label_user_new: Nowy użytkownik
184 label_user_new: Nowy użytkownik
185 label_project: Projekt
185 label_project: Projekt
186 label_project_new: Nowy projekt
186 label_project_new: Nowy projekt
187 label_project_plural: Projekty
187 label_project_plural: Projekty
188 label_project_all: Wszystkie projekty
188 label_project_all: Wszystkie projekty
189 label_project_latest: Ostatnie projekty
189 label_project_latest: Ostatnie projekty
190 label_issue: Zagadnienie
190 label_issue: Zagadnienie
191 label_issue_new: Nowe zagadnienie
191 label_issue_new: Nowe zagadnienie
192 label_issue_plural: Zagadnienia
192 label_issue_plural: Zagadnienia
193 label_issue_view_all: Zobacz wszystkie zagadnienia
193 label_issue_view_all: Zobacz wszystkie zagadnienia
194 label_document: Dokument
194 label_document: Dokument
195 label_document_new: Nowy dokument
195 label_document_new: Nowy dokument
196 label_document_plural: Dokumenty
196 label_document_plural: Dokumenty
197 label_role: Rola
197 label_role: Rola
198 label_role_plural: Role
198 label_role_plural: Role
199 label_role_new: Nowa rola
199 label_role_new: Nowa rola
200 label_role_and_permissions: Role i Uprawnienia
200 label_role_and_permissions: Role i Uprawnienia
201 label_member: Uczestnik
201 label_member: Uczestnik
202 label_member_new: Nowy uczestnik
202 label_member_new: Nowy uczestnik
203 label_member_plural: Uczestnicy
203 label_member_plural: Uczestnicy
204 label_tracker: Typ zagadnienia
204 label_tracker: Typ zagadnienia
205 label_tracker_plural: Typy zagadnień
205 label_tracker_plural: Typy zagadnień
206 label_tracker_new: Nowy typ zagadnienia
206 label_tracker_new: Nowy typ zagadnienia
207 label_workflow: Przepływ
207 label_workflow: Przepływ
208 label_issue_status: Status zagadnienia
208 label_issue_status: Status zagadnienia
209 label_issue_status_plural: Statusy zagadnień
209 label_issue_status_plural: Statusy zagadnień
210 label_issue_status_new: Nowy status
210 label_issue_status_new: Nowy status
211 label_issue_category: Kategoria zagadnienia
211 label_issue_category: Kategoria zagadnienia
212 label_issue_category_plural: Kategorie zagadnień
212 label_issue_category_plural: Kategorie zagadnień
213 label_issue_category_new: Nowa kategoria
213 label_issue_category_new: Nowa kategoria
214 label_custom_field: Dowolne pole
214 label_custom_field: Dowolne pole
215 label_custom_field_plural: Dowolne pola
215 label_custom_field_plural: Dowolne pola
216 label_custom_field_new: Nowe dowolne pole
216 label_custom_field_new: Nowe dowolne pole
217 label_enumerations: Wyliczenia
217 label_enumerations: Wyliczenia
218 label_enumeration_new: Nowa wartość
218 label_enumeration_new: Nowa wartość
219 label_information: Informacja
219 label_information: Informacja
220 label_information_plural: Informacje
220 label_information_plural: Informacje
221 label_please_login: Zaloguj się
221 label_please_login: Zaloguj się
222 label_register: Rejestracja
222 label_register: Rejestracja
223 label_password_lost: Zapomniane hasło
223 label_password_lost: Zapomniane hasło
224 label_home: Główna
224 label_home: Główna
225 label_my_page: Moja strona
225 label_my_page: Moja strona
226 label_my_account: Moje konto
226 label_my_account: Moje konto
227 label_my_projects: Moje projekty
227 label_my_projects: Moje projekty
228 label_administration: Administracja
228 label_administration: Administracja
229 label_login: Login
229 label_login: Login
230 label_logout: Wylogowanie
230 label_logout: Wylogowanie
231 label_help: Pomoc
231 label_help: Pomoc
232 label_reported_issues: Wprowadzone zagadnienia
232 label_reported_issues: Wprowadzone zagadnienia
233 label_assigned_to_me_issues: Zagadnienia przypisane do mnie
233 label_assigned_to_me_issues: Zagadnienia przypisane do mnie
234 label_last_login: Ostatnie połączenie
234 label_last_login: Ostatnie połączenie
235 label_last_updates: Ostatnia zmieniana
235 label_last_updates: Ostatnia zmieniana
236 label_last_updates_plural: %d ostatnie zmiany
236 label_last_updates_plural: %d ostatnie zmiany
237 label_registered_on: Zarejestrowany
237 label_registered_on: Zarejestrowany
238 label_activity: Aktywność
238 label_activity: Aktywność
239 label_new: Nowy
239 label_new: Nowy
240 label_logged_as: Zalogowany jako
240 label_logged_as: Zalogowany jako
241 label_environment: Środowisko
241 label_environment: Środowisko
242 label_authentication: Identyfikacja
242 label_authentication: Identyfikacja
243 label_auth_source: Tryb identyfikacji
243 label_auth_source: Tryb identyfikacji
244 label_auth_source_new: Nowy tryb identyfikacji
244 label_auth_source_new: Nowy tryb identyfikacji
245 label_auth_source_plural: Tryby identyfikacji
245 label_auth_source_plural: Tryby identyfikacji
246 label_subproject_plural: Podprojekty
246 label_subproject_plural: Podprojekty
247 label_min_max_length: Min - Maks długość
247 label_min_max_length: Min - Maks długość
248 label_list: Lista
248 label_list: Lista
249 label_date: Data
249 label_date: Data
250 label_integer: Liczba całkowita
250 label_integer: Liczba całkowita
251 label_boolean: Wartość logiczna
251 label_boolean: Wartość logiczna
252 label_string: Tekst
252 label_string: Tekst
253 label_text: Długi tekst
253 label_text: Długi tekst
254 label_attribute: Atrybut
254 label_attribute: Atrybut
255 label_attribute_plural: Atrybuty
255 label_attribute_plural: Atrybuty
256 label_download: %d Pobranie
256 label_download: %d Pobranie
257 label_download_plural: %d Pobrania
257 label_download_plural: %d Pobrania
258 label_no_data: Brak danych do pokazania
258 label_no_data: Brak danych do pokazania
259 label_change_status: Status zmian
259 label_change_status: Status zmian
260 label_history: Historia
260 label_history: Historia
261 label_attachment: Plik
261 label_attachment: Plik
262 label_attachment_new: Nowy plik
262 label_attachment_new: Nowy plik
263 label_attachment_delete: Skasuj plik
263 label_attachment_delete: Skasuj plik
264 label_attachment_plural: Pliki
264 label_attachment_plural: Pliki
265 label_report: Raport
265 label_report: Raport
266 label_report_plural: Raporty
266 label_report_plural: Raporty
267 label_news: Wiadomość
267 label_news: Wiadomość
268 label_news_new: Dodaj wiadomość
268 label_news_new: Dodaj wiadomość
269 label_news_plural: Wiadomości
269 label_news_plural: Wiadomości
270 label_news_latest: Ostatnie wiadomości
270 label_news_latest: Ostatnie wiadomości
271 label_news_view_all: Pokaż wszystkie wiadomości
271 label_news_view_all: Pokaż wszystkie wiadomości
272 label_change_log: Lista zmian
272 label_change_log: Lista zmian
273 label_settings: Ustawienia
273 label_settings: Ustawienia
274 label_overview: Przegląd
274 label_overview: Przegląd
275 label_version: Wersja
275 label_version: Wersja
276 label_version_new: Nowa wersja
276 label_version_new: Nowa wersja
277 label_version_plural: Wersje
277 label_version_plural: Wersje
278 label_confirmation: Potwierdzenie
278 label_confirmation: Potwierdzenie
279 label_export_to: Eksportuj do
279 label_export_to: Eksportuj do
280 label_read: Czytanie...
280 label_read: Czytanie...
281 label_public_projects: Projekty publiczne
281 label_public_projects: Projekty publiczne
282 label_open_issues: otwarte
282 label_open_issues: otwarte
283 label_open_issues_plural: otwarte
283 label_open_issues_plural: otwarte
284 label_closed_issues: zamknięte
284 label_closed_issues: zamknięte
285 label_closed_issues_plural: zamknięte
285 label_closed_issues_plural: zamknięte
286 label_total: Ogółem
286 label_total: Ogółem
287 label_permissions: Uprawnienia
287 label_permissions: Uprawnienia
288 label_current_status: Obecny status
288 label_current_status: Obecny status
289 label_new_statuses_allowed: Uprawnione nowe statusy
289 label_new_statuses_allowed: Uprawnione nowe statusy
290 label_all: wszystko
290 label_all: wszystko
291 label_none: brak
291 label_none: brak
292 label_next: Następne
292 label_next: Następne
293 label_previous: Poprzednie
293 label_previous: Poprzednie
294 label_used_by: Używane przez
294 label_used_by: Używane przez
295 label_details: Szczegóły
295 label_details: Szczegóły
296 label_add_note: Dodaj notatkę
296 label_add_note: Dodaj notatkę
297 label_per_page: Na stronę
297 label_per_page: Na stronę
298 label_calendar: Kalendarz
298 label_calendar: Kalendarz
299 label_months_from: miesiące od
299 label_months_from: miesiące od
300 label_gantt: Gantt
300 label_gantt: Gantt
301 label_internal: Wewnętrzny
301 label_internal: Wewnętrzny
302 label_last_changes: ostatnie %d zmian
302 label_last_changes: ostatnie %d zmian
303 label_change_view_all: Pokaż wszystkie zmiany
303 label_change_view_all: Pokaż wszystkie zmiany
304 label_personalize_page: Personalizuj tą stronę
304 label_personalize_page: Personalizuj tą stronę
305 label_comment: Komentarz
305 label_comment: Komentarz
306 label_comment_plural: Komentarze
306 label_comment_plural: Komentarze
307 label_comment_add: Dodaj komentarz
307 label_comment_add: Dodaj komentarz
308 label_comment_added: Komentarz dodany
308 label_comment_added: Komentarz dodany
309 label_comment_delete: Usuń komentarze
309 label_comment_delete: Usuń komentarze
310 label_query: Dowolne zapytanie
310 label_query: Dowolne zapytanie
311 label_query_plural: Dowolne zapytania
311 label_query_plural: Dowolne zapytania
312 label_query_new: Nowe zapytanie
312 label_query_new: Nowe zapytanie
313 label_filter_add: Dodaj filtr
313 label_filter_add: Dodaj filtr
314 label_filter_plural: Filtry
314 label_filter_plural: Filtry
315 label_equals: jest
315 label_equals: jest
316 label_not_equals: nie jest
316 label_not_equals: nie jest
317 label_in_less_than: w mniejszych od
317 label_in_less_than: w mniejszych od
318 label_in_more_than: w większych niż
318 label_in_more_than: w większych niż
319 label_in: w
319 label_in: w
320 label_today: dzisiaj
320 label_today: dzisiaj
321 label_less_than_ago: dni mniej
321 label_less_than_ago: dni mniej
322 label_more_than_ago: dni więcej
322 label_more_than_ago: dni więcej
323 label_ago: dni temu
323 label_ago: dni temu
324 label_contains: zawiera
324 label_contains: zawiera
325 label_not_contains: nie zawiera
325 label_not_contains: nie zawiera
326 label_day_plural: dni
326 label_day_plural: dni
327 label_repository: Repozytorium
327 label_repository: Repozytorium
328 label_browse: Przegląd
328 label_browse: Przegląd
329 label_modification: %d modyfikacja
329 label_modification: %d modyfikacja
330 label_modification_plural: %d modyfikacja
330 label_modification_plural: %d modyfikacja
331 label_revision: Rewizja
331 label_revision: Rewizja
332 label_revision_plural: Rewizje
332 label_revision_plural: Rewizje
333 label_added: dodane
333 label_added: dodane
334 label_modified: zmodyfikowane
334 label_modified: zmodyfikowane
335 label_deleted: usunięte
335 label_deleted: usunięte
336 label_latest_revision: Najnowsza rewizja
336 label_latest_revision: Najnowsza rewizja
337 label_latest_revision_plural: Najnowsze rewizje
337 label_latest_revision_plural: Najnowsze rewizje
338 label_view_revisions: Pokaż rewizje
338 label_view_revisions: Pokaż rewizje
339 label_max_size: Maksymalny rozmiar
339 label_max_size: Maksymalny rozmiar
340 label_on: 'z'
340 label_on: 'z'
341 label_sort_highest: Przesuń na górę
341 label_sort_highest: Przesuń na górę
342 label_sort_higher: Do góry
342 label_sort_higher: Do góry
343 label_sort_lower: Do dołu
343 label_sort_lower: Do dołu
344 label_sort_lowest: Przesuń na dół
344 label_sort_lowest: Przesuń na dół
345 label_roadmap: Mapa
345 label_roadmap: Mapa
346 label_roadmap_due_in: W czasie
346 label_roadmap_due_in: W czasie
347 label_roadmap_no_issues: Brak zagadnień do tej wersji
347 label_roadmap_no_issues: Brak zagadnień do tej wersji
348 label_search: Szukaj
348 label_search: Szukaj
349 label_result_plural: Rezultatów
349 label_result_plural: Rezultatów
350 label_all_words: Wszystkie słowa
350 label_all_words: Wszystkie słowa
351 label_wiki: Wiki
351 label_wiki: Wiki
352 label_wiki_edit: Edycja wiki
352 label_wiki_edit: Edycja wiki
353 label_wiki_edit_plural: Edycje wiki
353 label_wiki_edit_plural: Edycje wiki
354 label_wiki_page: Strona wiki
354 label_wiki_page: Strona wiki
355 label_wiki_page_plural: Strony wiki
355 label_wiki_page_plural: Strony wiki
356 label_index_by_title: Indeks
356 label_index_by_title: Indeks
357 label_index_by_date: Index by date
357 label_index_by_date: Index by date
358 label_current_version: Obecna wersja
358 label_current_version: Obecna wersja
359 label_preview: Podgląd
359 label_preview: Podgląd
360 label_feed_plural: Ilość RSS
360 label_feed_plural: Ilość RSS
361 label_changes_details: Szczegóły wszystkich zmian
361 label_changes_details: Szczegóły wszystkich zmian
362 label_issue_tracking: Śledzenie zagadnień
362 label_issue_tracking: Śledzenie zagadnień
363 label_spent_time: Spędzony czas
363 label_spent_time: Spędzony czas
364 label_f_hour: %.2f godzina
364 label_f_hour: %.2f godzina
365 label_f_hour_plural: %.2f godzin
365 label_f_hour_plural: %.2f godzin
366 label_time_tracking: Śledzenie czasu
366 label_time_tracking: Śledzenie czasu
367 label_change_plural: Zmiany
367 label_change_plural: Zmiany
368 label_statistics: Statystyki
368 label_statistics: Statystyki
369 label_commits_per_month: Zatwierdzenia według miesięcy
369 label_commits_per_month: Zatwierdzenia według miesięcy
370 label_commits_per_author: Zatwierdzenia według autorów
370 label_commits_per_author: Zatwierdzenia według autorów
371 label_view_diff: Pokaż różnice
371 label_view_diff: Pokaż różnice
372 label_diff_inline: w linii
372 label_diff_inline: w linii
373 label_diff_side_by_side: obok siebie
373 label_diff_side_by_side: obok siebie
374 label_options: Opcje
374 label_options: Opcje
375 label_copy_workflow_from: Kopiuj przepływ z
375 label_copy_workflow_from: Kopiuj przepływ z
376 label_permissions_report: Raport uprawnień
376 label_permissions_report: Raport uprawnień
377 label_watched_issues: Obserwowane zagadnienia
377 label_watched_issues: Obserwowane zagadnienia
378 label_related_issues: Powiązane zagadnienia
378 label_related_issues: Powiązane zagadnienia
379 label_applied_status: Stosowany status
379 label_applied_status: Stosowany status
380 label_loading: Ładowanie...
380 label_loading: Ładowanie...
381 label_relation_new: Nowe powiązanie
381 label_relation_new: Nowe powiązanie
382 label_relation_delete: Usuń powiązanie
382 label_relation_delete: Usuń powiązanie
383 label_relates_to: powiązane z
383 label_relates_to: powiązane z
384 label_duplicates: duplikaty
384 label_duplicates: duplikaty
385 label_blocks: blokady
385 label_blocks: blokady
386 label_blocked_by: zablokowane przez
386 label_blocked_by: zablokowane przez
387 label_precedes: poprzedza
387 label_precedes: poprzedza
388 label_follows: podąża
388 label_follows: podąża
389 label_end_to_start: koniec do początku
389 label_end_to_start: koniec do początku
390 label_end_to_end: koniec do końca
390 label_end_to_end: koniec do końca
391 label_start_to_start: początek do początku
391 label_start_to_start: początek do początku
392 label_start_to_end: początek do końca
392 label_start_to_end: początek do końca
393 label_stay_logged_in: Pozostań zalogowany
393 label_stay_logged_in: Pozostań zalogowany
394 label_disabled: zablokowany
394 label_disabled: zablokowany
395 label_show_completed_versions: Pokaż kompletne wersje
395 label_show_completed_versions: Pokaż kompletne wersje
396 label_me: ja
396 label_me: ja
397 label_board: Forum
397 label_board: Forum
398 label_board_new: Nowe forum
398 label_board_new: Nowe forum
399 label_board_plural: Fora
399 label_board_plural: Fora
400 label_topic_plural: Tematy
400 label_topic_plural: Tematy
401 label_message_plural: Wiadomości
401 label_message_plural: Wiadomości
402 label_message_last: Ostatnia wiadomość
402 label_message_last: Ostatnia wiadomość
403 label_message_new: Nowa wiadomość
403 label_message_new: Nowa wiadomość
404 label_reply_plural: Odpowiedzi
404 label_reply_plural: Odpowiedzi
405 label_send_information: Wyślij informację użytkownikowi
405 label_send_information: Wyślij informację użytkownikowi
406 label_year: Rok
406 label_year: Rok
407 label_month: Miesiąc
407 label_month: Miesiąc
408 label_week: Tydzień
408 label_week: Tydzień
409 label_date_from: Z
409 label_date_from: Z
410 label_date_to: Do
410 label_date_to: Do
411 label_language_based: Na podstawie języka
411 label_language_based: Na podstawie języka
412
412
413 button_login: Login
413 button_login: Login
414 button_submit: Wyślij
414 button_submit: Wyślij
415 button_save: Zapisz
415 button_save: Zapisz
416 button_check_all: Zaznacz wszystko
416 button_check_all: Zaznacz wszystko
417 button_uncheck_all: Odznacz wszystko
417 button_uncheck_all: Odznacz wszystko
418 button_delete: Usuń
418 button_delete: Usuń
419 button_create: Stwórz
419 button_create: Stwórz
420 button_test: Testuj
420 button_test: Testuj
421 button_edit: Edytuj
421 button_edit: Edytuj
422 button_add: Dodaj
422 button_add: Dodaj
423 button_change: Zmień
423 button_change: Zmień
424 button_apply: Ustaw
424 button_apply: Ustaw
425 button_clear: Wyczyść
425 button_clear: Wyczyść
426 button_lock: Zablokuj
426 button_lock: Zablokuj
427 button_unlock: Odblokuj
427 button_unlock: Odblokuj
428 button_download: Pobierz
428 button_download: Pobierz
429 button_list: Lista
429 button_list: Lista
430 button_view: Pokaż
430 button_view: Pokaż
431 button_move: Przenieś
431 button_move: Przenieś
432 button_back: Wstecz
432 button_back: Wstecz
433 button_cancel: Anuluj
433 button_cancel: Anuluj
434 button_activate: Aktywuj
434 button_activate: Aktywuj
435 button_sort: Sortuj
435 button_sort: Sortuj
436 button_log_time: Log czasu
436 button_log_time: Log czasu
437 button_rollback: Przywróc do tej wersji
437 button_rollback: Przywróc do tej wersji
438 button_watch: Obserwuj
438 button_watch: Obserwuj
439 button_unwatch: Nie obserwuj
439 button_unwatch: Nie obserwuj
440 button_reply: Odpowiedz
440 button_reply: Odpowiedz
441 button_archive: Archiwizuj
441 button_archive: Archiwizuj
442 button_unarchive: Przywróc z archiwum
442 button_unarchive: Przywróc z archiwum
443
443
444 status_active: aktywny
444 status_active: aktywny
445 status_registered: zarejestrowany
445 status_registered: zarejestrowany
446 status_locked: zablokowany
446 status_locked: zablokowany
447
447
448 text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony mailem.
448 text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony mailem.
449 text_regexp_info: np. ^[A-Z0-9]+$
449 text_regexp_info: np. ^[A-Z0-9]+$
450 text_min_max_length_info: 0 oznacza brak restrykcji
450 text_min_max_length_info: 0 oznacza brak restrykcji
451 text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane?
451 text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane?
452 text_workflow_edit: Zaznacz rolę i typ zagadnienia do edycji przepływu
452 text_workflow_edit: Zaznacz rolę i typ zagadnienia do edycji przepływu
453 text_are_you_sure: Jesteś pewien ?
453 text_are_you_sure: Jesteś pewien ?
454 text_journal_changed: zmienione %s do %s
454 text_journal_changed: zmienione %s do %s
455 text_journal_set_to: ustawione na %s
455 text_journal_set_to: ustawione na %s
456 text_journal_deleted: usunięte
456 text_journal_deleted: usunięte
457 text_tip_task_begin_day: zadanie zaczynające się dzisiaj
457 text_tip_task_begin_day: zadanie zaczynające się dzisiaj
458 text_tip_task_end_day: zadanie kończące się dzisiaj
458 text_tip_task_end_day: zadanie kończące się dzisiaj
459 text_tip_task_begin_end_day: zadanie zaczynające i kończące się dzisiaj
459 text_tip_task_begin_end_day: zadanie zaczynające i kończące się dzisiaj
460 text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.'
460 text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.'
461 text_caracters_maximum: %d znaków maksymalnie.
461 text_caracters_maximum: %d znaków maksymalnie.
462 text_length_between: Długość pomiędzy %d i %d znaków.
462 text_length_between: Długość pomiędzy %d i %d znaków.
463 text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego typu zagadnienia
463 text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego typu zagadnienia
464 text_unallowed_characters: Niedozwolone znaki
464 text_unallowed_characters: Niedozwolone znaki
465 text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
465 text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
466 text_issues_ref_in_commit_messages: Odwołania do zagadnień w komentarzach zatwierdzeń
466 text_issues_ref_in_commit_messages: Odwołania do zagadnień w komentarzach zatwierdzeń
467
467
468 default_role_manager: Kierownik
468 default_role_manager: Kierownik
469 default_role_developper: Programista
469 default_role_developper: Programista
470 default_role_reporter: Wprowadzajacy
470 default_role_reporter: Wprowadzajacy
471 default_tracker_bug: Błąd
471 default_tracker_bug: Błąd
472 default_tracker_feature: Zadanie
472 default_tracker_feature: Zadanie
473 default_tracker_support: Wsparcie
473 default_tracker_support: Wsparcie
474 default_issue_status_new: Nowy
474 default_issue_status_new: Nowy
475 default_issue_status_assigned: Przypisany
475 default_issue_status_assigned: Przypisany
476 default_issue_status_resolved: Rozwiązany
476 default_issue_status_resolved: Rozwiązany
477 default_issue_status_feedback: Odpowiedź
477 default_issue_status_feedback: Odpowiedź
478 default_issue_status_closed: Zamknięty
478 default_issue_status_closed: Zamknięty
479 default_issue_status_rejected: Odrzucony
479 default_issue_status_rejected: Odrzucony
480 default_doc_category_user: Dokumentacja użytkownika
480 default_doc_category_user: Dokumentacja użytkownika
481 default_doc_category_tech: Dokumentacja techniczna
481 default_doc_category_tech: Dokumentacja techniczna
482 default_priority_low: Niski
482 default_priority_low: Niski
483 default_priority_normal: Normalny
483 default_priority_normal: Normalny
484 default_priority_high: Wysoki
484 default_priority_high: Wysoki
485 default_priority_urgent: Pilny
485 default_priority_urgent: Pilny
486 default_priority_immediate: Natychmiastowy
486 default_priority_immediate: Natychmiastowy
487 default_activity_design: Projektowanie
487 default_activity_design: Projektowanie
488 default_activity_development: Rozwój
488 default_activity_development: Rozwój
489
489
490 enumeration_issue_priorities: Priorytety zagadnień
490 enumeration_issue_priorities: Priorytety zagadnień
491 enumeration_doc_categories: Kategorie dokumentów
491 enumeration_doc_categories: Kategorie dokumentów
492 enumeration_activities: Działania (śledzenie czasu)
492 enumeration_activities: Działania (śledzenie czasu)
493 button_rename: Zmień nazwę
493 button_rename: Zmień nazwę
494 text_issue_category_destroy_question: Zagadnienia (%d) są przypisane do tej kategorii. Co chcesz uczynić?
494 text_issue_category_destroy_question: Zagadnienia (%d) są przypisane do tej kategorii. Co chcesz uczynić?
495 label_feeds_access_key_created_on: Klucz dostępu RSS stworzony %s dni temu
495 label_feeds_access_key_created_on: Klucz dostępu RSS stworzony %s dni temu
496 setting_cross_project_issue_relations: Zezwól na powiązania zagadnień między projektami
496 setting_cross_project_issue_relations: Zezwól na powiązania zagadnień między projektami
497 label_roadmap_overdue: %s spóźnienia
497 label_roadmap_overdue: %s spóźnienia
498 label_module_plural: Moduły
498 label_module_plural: Moduły
499 label_this_week: ten tydzień
499 label_this_week: ten tydzień
500 label_jump_to_a_project: Skocz do projektu...
500 label_jump_to_a_project: Skocz do projektu...
501 field_assignable: Zagadnienia mogą być przypisane do tej roli
501 field_assignable: Zagadnienia mogą być przypisane do tej roli
502 label_sort_by: Sortuj po %s
502 label_sort_by: Sortuj po %s
503 text_issue_updated: Zagadnienie %s zostało zaktualizowane (by %s).
503 text_issue_updated: Zagadnienie %s zostało zaktualizowane (by %s).
504 notice_feeds_access_key_reseted: Twój klucz dostępu RSS został zrestetowany.
504 notice_feeds_access_key_reseted: Twój klucz dostępu RSS został zrestetowany.
505 field_redirect_existing_links: Przekierowanie istniejących odnośników
505 field_redirect_existing_links: Przekierowanie istniejących odnośników
506 text_issue_category_reassign_to: Przydziel zagadnienie do tej kategorii
506 text_issue_category_reassign_to: Przydziel zagadnienie do tej kategorii
507 notice_email_sent: Email został wysłany do %s
507 notice_email_sent: Email został wysłany do %s
508 text_issue_added: Zagadnienie %s zostało wprowadzone (by %s).
508 text_issue_added: Zagadnienie %s zostało wprowadzone (by %s).
509 text_wiki_destroy_confirmation: Jesteś pewien, że chcesz usunąć to wiki i całą jego zawartość ?
509 text_wiki_destroy_confirmation: Jesteś pewien, że chcesz usunąć to wiki i całą jego zawartość ?
510 notice_email_error: Wystąpił błąd w trakcie wysyłania maila (%s)
510 notice_email_error: Wystąpił błąd w trakcie wysyłania maila (%s)
511 label_updated_time: Zaktualizowane %s temu
511 label_updated_time: Zaktualizowane %s temu
512 text_issue_category_destroy_assignments: Usuń przydziały kategorii
512 text_issue_category_destroy_assignments: Usuń przydziały kategorii
513 label_send_test_email: Wyślij próbny email
513 label_send_test_email: Wyślij próbny email
514 button_reset: Resetuj
514 button_reset: Resetuj
515 label_added_time_by: Dodane przez %s %s temu
515 label_added_time_by: Dodane przez %s %s temu
516 field_estimated_hours: Szacowany czas
516 field_estimated_hours: Szacowany czas
517 label_file_plural: Pliki
517 label_file_plural: Pliki
518 label_changeset_plural: Zestawienia zmian
518 label_changeset_plural: Zestawienia zmian
519 field_column_names: Nazwy kolumn
519 field_column_names: Nazwy kolumn
520 label_default_columns: Domyślne kolumny
520 label_default_columns: Domyślne kolumny
521 setting_issue_list_default_columns: Domyślne kolumny wiświetlane na liście zagadnień
521 setting_issue_list_default_columns: Domyślne kolumny wiświetlane na liście zagadnień
522 setting_repositories_encodings: Kodowanie repozytoriów
522 setting_repositories_encodings: Kodowanie repozytoriów
523 notice_no_issue_selected: "Nie wybrano zagadnienia! Zaznacz zagadnienie, które chcesz edytować."
523 notice_no_issue_selected: "Nie wybrano zagadnienia! Zaznacz zagadnienie, które chcesz edytować."
524 label_bulk_edit_selected_issues: Zbiorowa edycja zagadnień
524 label_bulk_edit_selected_issues: Zbiorowa edycja zagadnień
525 label_no_change_option: (Bez zmian)
525 label_no_change_option: (Bez zmian)
526 notice_failed_to_save_issues: "Błąd podczas zapisu zagadnień %d z %d zaznaczonych: %s."
526 notice_failed_to_save_issues: "Błąd podczas zapisu zagadnień %d z %d zaznaczonych: %s."
527 label_theme: Temat
527 label_theme: Temat
528 label_default: Domyślne
528 label_default: Domyślne
529 label_search_titles_only: Przeszukuj tylko tytuły
529 label_search_titles_only: Przeszukuj tylko tytuły
530 label_nobody: nikt
530 label_nobody: nikt
531 button_change_password: Zmień hasło
531 button_change_password: Zmień hasło
532 text_user_mail_option: "W przypadku niezaznaczonych projektów, będziesz otrzymywał powiadomienia tylko na temat zagadnien, które obserwujesz, lub w których bierzesz udział (np. jesteś autorem lub adresatem)."
532 text_user_mail_option: "W przypadku niezaznaczonych projektów, będziesz otrzymywał powiadomienia tylko na temat zagadnien, które obserwujesz, lub w których bierzesz udział (np. jesteś autorem lub adresatem)."
533 label_user_mail_option_selected: "Tylko dla każdego zdarzenia w wybranych projektach..."
533 label_user_mail_option_selected: "Tylko dla każdego zdarzenia w wybranych projektach..."
534 label_user_mail_option_all: "Dla każdego zdarzenia w każdym moim projekcie"
534 label_user_mail_option_all: "Dla każdego zdarzenia w każdym moim projekcie"
535 label_user_mail_option_none: "Tylko to co obserwuje lub w czym biorę udział"
535 label_user_mail_option_none: "Tylko to co obserwuje lub w czym biorę udział"
536 setting_emails_footer: Stopka e-mail
536 setting_emails_footer: Stopka e-mail
537 label_float: Liczba rzeczywista
537 label_float: Liczba rzeczywista
538 button_copy: Kopia
538 button_copy: Kopia
539 mail_body_account_information_external: Możesz użyć twojego "%s" konta do zalogowania.
539 mail_body_account_information_external: Możesz użyć twojego "%s" konta do zalogowania.
540 mail_body_account_information: Twoje konto
540 mail_body_account_information: Twoje konto
541 setting_protocol: Protokoł
541 setting_protocol: Protokoł
542 label_user_mail_no_self_notified: "Nie chcę powiadomień o zmianach, które sam wprowadzam."
542 label_user_mail_no_self_notified: "Nie chcę powiadomień o zmianach, które sam wprowadzam."
543 setting_time_format: Format czasu
543 setting_time_format: Format czasu
544 label_registration_activation_by_email: aktywacja konta przez e-mail
544 label_registration_activation_by_email: aktywacja konta przez e-mail
545 mail_subject_account_activation_request: Zapytanie aktywacyjne konta %s
545 mail_subject_account_activation_request: Zapytanie aktywacyjne konta %s
546 mail_body_account_activation_request: 'Zarejestrowano nowego użytkownika: (%s). Konto oczekuje na twoje zatwierdzenie:'
546 mail_body_account_activation_request: 'Zarejestrowano nowego użytkownika: (%s). Konto oczekuje na twoje zatwierdzenie:'
547 label_registration_automatic_activation: automatyczna aktywacja kont
547 label_registration_automatic_activation: automatyczna aktywacja kont
548 label_registration_manual_activation: manualna aktywacja kont
548 label_registration_manual_activation: manualna aktywacja kont
549 notice_account_pending: "Twoje konto zostało utworzone i oczekuje na zatwierdzenie administratora."
549 notice_account_pending: "Twoje konto zostało utworzone i oczekuje na zatwierdzenie administratora."
550 field_time_zone: Strefa czasowa
550 field_time_zone: Strefa czasowa
551 text_caracters_minimum: Musi być nie krótsze niż %d znaków.
551 text_caracters_minimum: Musi być nie krótsze niż %d znaków.
552 setting_bcc_recipients: Odbiorcy kopii tajnej (kt/bcc)
552 setting_bcc_recipients: Odbiorcy kopii tajnej (kt/bcc)
553 button_annotate: Adnotuj
553 button_annotate: Adnotuj
554 label_issues_by: Zagadnienia wprowadzone przez %s
554 label_issues_by: Zagadnienia wprowadzone przez %s
555 field_searchable: Przeszukiwalne
555 field_searchable: Przeszukiwalne
556 label_display_per_page: 'Na stronę: %s'
556 label_display_per_page: 'Na stronę: %s'
557 setting_per_page_options: Opcje ilości obiektów na stronie
557 setting_per_page_options: Opcje ilości obiektów na stronie
558 label_age: Wiek
558 label_age: Wiek
559 notice_default_data_loaded: Domyślna konfiguracja została pomyślnie załadowana.
559 notice_default_data_loaded: Domyślna konfiguracja została pomyślnie załadowana.
560 text_load_default_configuration: Załaduj domyślną konfigurację
560 text_load_default_configuration: Załaduj domyślną konfigurację
561 text_no_configuration_data: "Role użytkowników, typy zagadnień, statusy zagadnień oraz przepływ pracy nie zostały jeszcze skonfigurowane.\nJest wysoce rekomendowane by załadować domyślną konfigurację. Po załadowaniu będzie możliwość edycji tych danych."
561 text_no_configuration_data: "Role użytkowników, typy zagadnień, statusy zagadnień oraz przepływ pracy nie zostały jeszcze skonfigurowane.\nJest wysoce rekomendowane by załadować domyślną konfigurację. Po załadowaniu będzie możliwość edycji tych danych."
562 error_can_t_load_default_data: "Domyślna konfiguracja nie może być załadowana: %s"
562 error_can_t_load_default_data: "Domyślna konfiguracja nie może być załadowana: %s"
563 button_update: Uaktualnij
563 button_update: Uaktualnij
564 label_change_properties: Zmień właściwości
564 label_change_properties: Zmień właściwości
565 label_general: Ogólne
565 label_general: Ogólne
566 label_repository_plural: Repozytoria
566 label_repository_plural: Repozytoria
567 label_associated_revisions: Skojarzone rewizje
567 label_associated_revisions: Skojarzone rewizje
568 setting_user_format: Personalny format wyświetlania
568 setting_user_format: Personalny format wyświetlania
569 text_status_changed_by_changeset: Zastosowane w zmianach %s.
569 text_status_changed_by_changeset: Zastosowane w zmianach %s.
570 label_more: Więcej
570 label_more: Więcej
571 text_issues_destroy_confirmation: 'Czy jestes pewien, że chcesz usunąć wskazane zagadnienia?'
571 text_issues_destroy_confirmation: 'Czy jestes pewien, że chcesz usunąć wskazane zagadnienia?'
572 label_scm: SCM
572 label_scm: SCM
573 text_select_project_modules: 'Wybierz moduły do aktywacji w tym projekcie:'
573 text_select_project_modules: 'Wybierz moduły do aktywacji w tym projekcie:'
574 label_issue_added: Dodano zagadnienie
574 label_issue_added: Dodano zagadnienie
575 label_issue_updated: Uaktualniono zagadnienie
575 label_issue_updated: Uaktualniono zagadnienie
576 label_document_added: Dodano dokument
576 label_document_added: Dodano dokument
577 label_message_posted: Dodano wiadomość
577 label_message_posted: Dodano wiadomość
578 label_file_added: Dodano plik
578 label_file_added: Dodano plik
579 label_news_added: Dodano wiadomość
579 label_news_added: Dodano wiadomość
580 project_module_boards: Fora
580 project_module_boards: Fora
581 project_module_issue_tracking: Śledzenie zagadnień
581 project_module_issue_tracking: Śledzenie zagadnień
582 project_module_wiki: Wiki
582 project_module_wiki: Wiki
583 project_module_files: Pliki
583 project_module_files: Pliki
584 project_module_documents: Dokumenty
584 project_module_documents: Dokumenty
585 project_module_repository: Repozytorium
585 project_module_repository: Repozytorium
586 project_module_news: Wiadomości
586 project_module_news: Wiadomości
587 project_module_time_tracking: Śledzenie czasu
587 project_module_time_tracking: Śledzenie czasu
588 text_file_repository_writable: Zapisywalne repozytorium plików
588 text_file_repository_writable: Zapisywalne repozytorium plików
589 text_default_administrator_account_changed: Zmieniono domyślne hasło administratora
589 text_default_administrator_account_changed: Zmieniono domyślne hasło administratora
590 text_rmagick_available: RMagick dostępne (opcjonalnie)
590 text_rmagick_available: RMagick dostępne (opcjonalnie)
591 button_configure: Konfiguruj
591 button_configure: Konfiguruj
592 label_plugins: Wtyczki
592 label_plugins: Wtyczki
593 label_ldap_authentication: Autoryzacja LDAP
593 label_ldap_authentication: Autoryzacja LDAP
594 label_downloads_abbr: Pobieranie
594 label_downloads_abbr: Pobieranie
595 label_this_month: ten miesiąc
595 label_this_month: ten miesiąc
596 label_last_n_days: ostatnie %d dni
596 label_last_n_days: ostatnie %d dni
597 label_all_time: cały czas
597 label_all_time: cały czas
598 label_this_year: ten rok
598 label_this_year: ten rok
599 label_date_range: Zakres datowy
599 label_date_range: Zakres datowy
600 label_last_week: ostatni tydzień
600 label_last_week: ostatni tydzień
601 label_yesterday: wczoraj
601 label_yesterday: wczoraj
602 label_last_month: ostatni miesiąc
602 label_last_month: ostatni miesiąc
603 label_add_another_file: Dodaj kolejny plik
603 label_add_another_file: Dodaj kolejny plik
604 label_optional_description: Opcjonalny opis
604 label_optional_description: Opcjonalny opis
605 text_destroy_time_entries_question: Zalogowano %.02f godzin przy zagadnieniu, które chcesz usunąć. Co chcesz zrobić?
605 text_destroy_time_entries_question: Zalogowano %.02f godzin przy zagadnieniu, które chcesz usunąć. Co chcesz zrobić?
606 error_issue_not_found_in_project: 'Zaganienie nie zostało znalezione lub nie należy do tego projektu'
606 error_issue_not_found_in_project: 'Zaganienie nie zostało znalezione lub nie należy do tego projektu'
607 text_assign_time_entries_to_project: Przypisz logowany czas do projektu
607 text_assign_time_entries_to_project: Przypisz logowany czas do projektu
608 text_destroy_time_entries: Usuń zalogowany czas
608 text_destroy_time_entries: Usuń zalogowany czas
609 text_reassign_time_entries: 'Przepnij zalogowany czas do tego zagadnienia:'
609 text_reassign_time_entries: 'Przepnij zalogowany czas do tego zagadnienia:'
610 label_chronological_order: W kolejności chronologicznej
610 label_chronological_order: W kolejności chronologicznej
611 setting_activity_days_default: Dni wyświetlane w aktywności projektu
611 setting_activity_days_default: Dni wyświetlane w aktywności projektu
612 setting_display_subprojects_issues: Domyślnie pokazuj zagadnienia podprojektów w głównym projekcie
612 setting_display_subprojects_issues: Domyślnie pokazuj zagadnienia podprojektów w głównym projekcie
613 field_comments_sorting: Pokazuj komentarze
613 field_comments_sorting: Pokazuj komentarze
614 label_reverse_chronological_order: W kolejności odwrotnej do chronologicznej
614 label_reverse_chronological_order: W kolejności odwrotnej do chronologicznej
615 label_preferences: Preferencje
615 label_preferences: Preferencje
616 label_overall_activity: Ogólna aktywność
616 label_overall_activity: Ogólna aktywność
617 setting_default_projects_public: Nowe projekty są domyślnie publiczne
617 setting_default_projects_public: Nowe projekty są domyślnie publiczne
618 error_scm_annotate: "Wpis nie istnieje lub nie można do niego dodawać adnotacji."
618 error_scm_annotate: "Wpis nie istnieje lub nie można do niego dodawać adnotacji."
619 label_planning: Planning
619 label_planning: Planning
620 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
620 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
621 label_and_its_subprojects: %s and its subprojects
621 label_and_its_subprojects: %s and its subprojects
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
623 mail_subject_reminder: "%d issue(s) due in the next days"
623 mail_subject_reminder: "%d issue(s) due in the next days"
624 text_user_wrote: '%s wrote:'
624 text_user_wrote: '%s wrote:'
625 label_duplicated_by: duplicated by
625 label_duplicated_by: duplicated by
626 setting_enabled_scm: Enabled SCM
626 setting_enabled_scm: Enabled SCM
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 label_incoming_emails: Incoming emails
630 label_generate_key: Generate a key
631 setting_mail_handler_api_enabled: Enable WS for incoming emails
632 setting_mail_handler_api_key: API key
@@ -1,628 +1,632
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dia
8 actionview_datehelper_time_in_words_day: 1 dia
9 actionview_datehelper_time_in_words_day_plural: %d dias
9 actionview_datehelper_time_in_words_day_plural: %d dias
10 actionview_datehelper_time_in_words_hour_about: aproximadamente uma hora
10 actionview_datehelper_time_in_words_hour_about: aproximadamente uma hora
11 actionview_datehelper_time_in_words_hour_about_plural: aproximadamente %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: aproximadamente %d horas
12 actionview_datehelper_time_in_words_hour_about_single: aproximadamente uma hora
12 actionview_datehelper_time_in_words_hour_about_single: aproximadamente uma hora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de um minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de um minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: menos de um segundo
18 actionview_datehelper_time_in_words_second_less_than: menos de um segundo
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 actionview_instancetag_blank_option: Selecione
20 actionview_instancetag_blank_option: Selecione
21
21
22 activerecord_error_inclusion: não está incluso na lista
22 activerecord_error_inclusion: não está incluso na lista
23 activerecord_error_exclusion: está reservado
23 activerecord_error_exclusion: está reservado
24 activerecord_error_invalid: é inválido
24 activerecord_error_invalid: é inválido
25 activerecord_error_confirmation: confirmação não confere
25 activerecord_error_confirmation: confirmação não confere
26 activerecord_error_accepted: deve ser aceito
26 activerecord_error_accepted: deve ser aceito
27 activerecord_error_empty: não pode ser vazio
27 activerecord_error_empty: não pode ser vazio
28 activerecord_error_blank: não pode estar em branco
28 activerecord_error_blank: não pode estar em branco
29 activerecord_error_too_long: é muito longo
29 activerecord_error_too_long: é muito longo
30 activerecord_error_too_short: é muito curto
30 activerecord_error_too_short: é muito curto
31 activerecord_error_wrong_length: esta com o tamanho errado
31 activerecord_error_wrong_length: esta com o tamanho errado
32 activerecord_error_taken: já foi obtido
32 activerecord_error_taken: já foi obtido
33 activerecord_error_not_a_number: não é um numero
33 activerecord_error_not_a_number: não é um numero
34 activerecord_error_not_a_date: não é uma data valida
34 activerecord_error_not_a_date: não é uma data valida
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 activerecord_error_not_same_project: não pode pertencer ao mesmo projeto
36 activerecord_error_not_same_project: não pode pertencer ao mesmo projeto
37 activerecord_error_circular_dependency: Esta relação geraria uma dependência circular
37 activerecord_error_circular_dependency: Esta relação geraria uma dependência circular
38
38
39 general_fmt_age: %d ano
39 general_fmt_age: %d ano
40 general_fmt_age_plural: %d anos
40 general_fmt_age_plural: %d anos
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Não'
45 general_text_No: 'Não'
46 general_text_Yes: 'Sim'
46 general_text_Yes: 'Sim'
47 general_text_no: 'não'
47 general_text_no: 'não'
48 general_text_yes: 'sim'
48 general_text_yes: 'sim'
49 general_lang_name: 'Português(Brasil)'
49 general_lang_name: 'Português(Brasil)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sabado,Domingo
53 general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sabado,Domingo
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Conta foi alterada com sucesso.
56 notice_account_updated: Conta foi alterada com sucesso.
57 notice_account_invalid_creditentials: Usuário ou senha inválido.
57 notice_account_invalid_creditentials: Usuário ou senha inválido.
58 notice_account_password_updated: Senha alterada com sucesso.
58 notice_account_password_updated: Senha alterada com sucesso.
59 notice_account_wrong_password: Senha inválida.
59 notice_account_wrong_password: Senha inválida.
60 notice_account_register_done: Conta criada com sucesso.
60 notice_account_register_done: Conta criada com sucesso.
61 notice_account_unknown_email: Usuário desconhecido.
61 notice_account_unknown_email: Usuário desconhecido.
62 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível alterar a senha.
62 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível alterar a senha.
63 notice_account_lost_email_sent: Um email com instruções para escolher uma nova senha foi enviado para você.
63 notice_account_lost_email_sent: Um email com instruções para escolher uma nova senha foi enviado para você.
64 notice_account_activated: Sua conta foi ativada. Você pode acessá-la agora.
64 notice_account_activated: Sua conta foi ativada. Você pode acessá-la agora.
65 notice_successful_create: Criado com sucesso.
65 notice_successful_create: Criado com sucesso.
66 notice_successful_update: Alterado com sucesso.
66 notice_successful_update: Alterado com sucesso.
67 notice_successful_delete: Excluído com sucesso.
67 notice_successful_delete: Excluído com sucesso.
68 notice_successful_connection: Conectado com sucesso.
68 notice_successful_connection: Conectado com sucesso.
69 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
69 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
70 notice_locking_conflict: Os dados foram atualizados por outro usuário.
70 notice_locking_conflict: Os dados foram atualizados por outro usuário.
71 notice_not_authorized: Você não está autorizado a acessar esta página.
71 notice_not_authorized: Você não está autorizado a acessar esta página.
72 notice_email_sent: Um email foi enviado para %s
72 notice_email_sent: Um email foi enviado para %s
73 notice_email_error: Um erro ocorreu ao enviar o email (%s)
73 notice_email_error: Um erro ocorreu ao enviar o email (%s)
74 notice_feeds_access_key_reseted: Sua chave RSS foi reconfigurada.
74 notice_feeds_access_key_reseted: Sua chave RSS foi reconfigurada.
75
75
76 error_scm_not_found: "A entrada e/ou a revisão não existe no repositório."
76 error_scm_not_found: "A entrada e/ou a revisão não existe no repositório."
77 error_scm_command_failed: "Ocorreu um erro ao tentar acessar o repositório: %s"
77 error_scm_command_failed: "Ocorreu um erro ao tentar acessar o repositório: %s"
78
78
79 mail_subject_lost_password: Sua senha do %s.
79 mail_subject_lost_password: Sua senha do %s.
80 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
80 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
81 mail_subject_register: Ativação de conta do %s.
81 mail_subject_register: Ativação de conta do %s.
82 mail_body_register: 'Para ativar sua conta, clique no link abaixo:'
82 mail_body_register: 'Para ativar sua conta, clique no link abaixo:'
83
83
84 gui_validation_error: 1 erro
84 gui_validation_error: 1 erro
85 gui_validation_error_plural: %d erros
85 gui_validation_error_plural: %d erros
86
86
87 field_name: Nome
87 field_name: Nome
88 field_description: Descrição
88 field_description: Descrição
89 field_summary: Resumo
89 field_summary: Resumo
90 field_is_required: Obrigatório
90 field_is_required: Obrigatório
91 field_firstname: Primeiro nome
91 field_firstname: Primeiro nome
92 field_lastname: Último nome
92 field_lastname: Último nome
93 field_mail: Email
93 field_mail: Email
94 field_filename: Arquivo
94 field_filename: Arquivo
95 field_filesize: Tamanho
95 field_filesize: Tamanho
96 field_downloads: Downloads
96 field_downloads: Downloads
97 field_author: Autor
97 field_author: Autor
98 field_created_on: Criado em
98 field_created_on: Criado em
99 field_updated_on: Alterado em
99 field_updated_on: Alterado em
100 field_field_format: Formato
100 field_field_format: Formato
101 field_is_for_all: Para todos os projetos
101 field_is_for_all: Para todos os projetos
102 field_possible_values: Possíveis valores
102 field_possible_values: Possíveis valores
103 field_regexp: Expressão regular
103 field_regexp: Expressão regular
104 field_min_length: Tamanho mínimo
104 field_min_length: Tamanho mínimo
105 field_max_length: Tamanho máximo
105 field_max_length: Tamanho máximo
106 field_value: Valor
106 field_value: Valor
107 field_category: Categoria
107 field_category: Categoria
108 field_title: Título
108 field_title: Título
109 field_project: Projeto
109 field_project: Projeto
110 field_issue: Ticket
110 field_issue: Ticket
111 field_status: Status
111 field_status: Status
112 field_notes: Notas
112 field_notes: Notas
113 field_is_closed: Ticket fechado
113 field_is_closed: Ticket fechado
114 field_is_default: Status padrão
114 field_is_default: Status padrão
115 field_tracker: Tipo
115 field_tracker: Tipo
116 field_subject: Título
116 field_subject: Título
117 field_due_date: Data prevista
117 field_due_date: Data prevista
118 field_assigned_to: Atribuído para
118 field_assigned_to: Atribuído para
119 field_priority: Prioridade
119 field_priority: Prioridade
120 field_fixed_version: Versão
120 field_fixed_version: Versão
121 field_user: Usuário
121 field_user: Usuário
122 field_role: Papel
122 field_role: Papel
123 field_homepage: Página inicial
123 field_homepage: Página inicial
124 field_is_public: Público
124 field_is_public: Público
125 field_parent: Sub-projeto de
125 field_parent: Sub-projeto de
126 field_is_in_chlog: Tarefas exibidas no registro de alterações
126 field_is_in_chlog: Tarefas exibidas no registro de alterações
127 field_is_in_roadmap: Tarefas exibidas no planejamento
127 field_is_in_roadmap: Tarefas exibidas no planejamento
128 field_login: Login
128 field_login: Login
129 field_mail_notification: Notificações por email
129 field_mail_notification: Notificações por email
130 field_admin: Administrador
130 field_admin: Administrador
131 field_last_login_on: Última conexão
131 field_last_login_on: Última conexão
132 field_language: Idioma
132 field_language: Idioma
133 field_effective_date: Data
133 field_effective_date: Data
134 field_password: Senha
134 field_password: Senha
135 field_new_password: Nova senha
135 field_new_password: Nova senha
136 field_password_confirmation: Confirmação
136 field_password_confirmation: Confirmação
137 field_version: Versão
137 field_version: Versão
138 field_type: Tipo
138 field_type: Tipo
139 field_host: Servidor
139 field_host: Servidor
140 field_port: Porta
140 field_port: Porta
141 field_account: Conta
141 field_account: Conta
142 field_base_dn: Base DN
142 field_base_dn: Base DN
143 field_attr_login: Atributo login
143 field_attr_login: Atributo login
144 field_attr_firstname: Atributo primeiro nome
144 field_attr_firstname: Atributo primeiro nome
145 field_attr_lastname: Atributo último nome
145 field_attr_lastname: Atributo último nome
146 field_attr_mail: Atributo email
146 field_attr_mail: Atributo email
147 field_onthefly: Criação automática de usuário
147 field_onthefly: Criação automática de usuário
148 field_start_date: Início
148 field_start_date: Início
149 field_done_ratio: %% Terminado
149 field_done_ratio: %% Terminado
150 field_auth_source: Modo de autenticação
150 field_auth_source: Modo de autenticação
151 field_hide_mail: Ocultar meu email
151 field_hide_mail: Ocultar meu email
152 field_comments: Comentário
152 field_comments: Comentário
153 field_url: URL
153 field_url: URL
154 field_start_page: Página inicial
154 field_start_page: Página inicial
155 field_subproject: Sub-projeto
155 field_subproject: Sub-projeto
156 field_hours: Horas
156 field_hours: Horas
157 field_activity: Atividade
157 field_activity: Atividade
158 field_spent_on: Data
158 field_spent_on: Data
159 field_identifier: Identificador
159 field_identifier: Identificador
160 field_is_filter: É um filtro
160 field_is_filter: É um filtro
161 field_issue_to_id: Ticket relacionado
161 field_issue_to_id: Ticket relacionado
162 field_delay: Espera
162 field_delay: Espera
163 field_assignable: Tickets podem ser atribuídos para este papel
163 field_assignable: Tickets podem ser atribuídos para este papel
164 field_redirect_existing_links: Redirecionar links existentes
164 field_redirect_existing_links: Redirecionar links existentes
165 field_estimated_hours: Tempo estimado
165 field_estimated_hours: Tempo estimado
166 field_default_value: Padrão
166 field_default_value: Padrão
167
167
168 setting_app_title: Título da aplicação
168 setting_app_title: Título da aplicação
169 setting_app_subtitle: Sub-título da aplicação
169 setting_app_subtitle: Sub-título da aplicação
170 setting_welcome_text: Texto de boas-vindas
170 setting_welcome_text: Texto de boas-vindas
171 setting_default_language: Idioma padrão
171 setting_default_language: Idioma padrão
172 setting_login_required: Autenticação obrigatória
172 setting_login_required: Autenticação obrigatória
173 setting_self_registration: Permitido Auto-registro
173 setting_self_registration: Permitido Auto-registro
174 setting_attachment_max_size: Tamanho máximo do anexo
174 setting_attachment_max_size: Tamanho máximo do anexo
175 setting_issues_export_limit: Limite de exportação das tarefas
175 setting_issues_export_limit: Limite de exportação das tarefas
176 setting_mail_from: Email enviado de
176 setting_mail_from: Email enviado de
177 setting_host_name: Servidor
177 setting_host_name: Servidor
178 setting_text_formatting: Formato do texto
178 setting_text_formatting: Formato do texto
179 setting_wiki_compression: Compactação de histórico do Wiki
179 setting_wiki_compression: Compactação de histórico do Wiki
180 setting_feeds_limit: Limite do Feed
180 setting_feeds_limit: Limite do Feed
181 setting_autofetch_changesets: Auto-obter commits
181 setting_autofetch_changesets: Auto-obter commits
182 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
182 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
183 setting_commit_ref_keywords: Palavras de referência
183 setting_commit_ref_keywords: Palavras de referência
184 setting_commit_fix_keywords: Palavras de fechamento
184 setting_commit_fix_keywords: Palavras de fechamento
185 setting_autologin: Auto-login
185 setting_autologin: Auto-login
186 setting_date_format: Formato da data
186 setting_date_format: Formato da data
187 setting_cross_project_issue_relations: Permitir relacionar tickets entre projetos
187 setting_cross_project_issue_relations: Permitir relacionar tickets entre projetos
188
188
189 label_user: Usuário
189 label_user: Usuário
190 label_user_plural: Usuários
190 label_user_plural: Usuários
191 label_user_new: Novo usuário
191 label_user_new: Novo usuário
192 label_project: Projeto
192 label_project: Projeto
193 label_project_new: Novo projeto
193 label_project_new: Novo projeto
194 label_project_plural: Projetos
194 label_project_plural: Projetos
195 label_project_all: Todos os projetos
195 label_project_all: Todos os projetos
196 label_project_latest: Últimos projetos
196 label_project_latest: Últimos projetos
197 label_issue: Ticket
197 label_issue: Ticket
198 label_issue_new: Novo ticket
198 label_issue_new: Novo ticket
199 label_issue_plural: Tickets
199 label_issue_plural: Tickets
200 label_issue_view_all: Ver todos os tickets
200 label_issue_view_all: Ver todos os tickets
201 label_document: Documento
201 label_document: Documento
202 label_document_new: Novo documento
202 label_document_new: Novo documento
203 label_document_plural: Documentos
203 label_document_plural: Documentos
204 label_role: Papel
204 label_role: Papel
205 label_role_plural: Papéis
205 label_role_plural: Papéis
206 label_role_new: Novo papel
206 label_role_new: Novo papel
207 label_role_and_permissions: Papéis e permissões
207 label_role_and_permissions: Papéis e permissões
208 label_member: Membro
208 label_member: Membro
209 label_member_new: Novo membro
209 label_member_new: Novo membro
210 label_member_plural: Membros
210 label_member_plural: Membros
211 label_tracker: Tipo de ticket
211 label_tracker: Tipo de ticket
212 label_tracker_plural: Tipos de ticket
212 label_tracker_plural: Tipos de ticket
213 label_tracker_new: Novo tipo
213 label_tracker_new: Novo tipo
214 label_workflow: Workflow
214 label_workflow: Workflow
215 label_issue_status: Status do ticket
215 label_issue_status: Status do ticket
216 label_issue_status_plural: Status dos tickets
216 label_issue_status_plural: Status dos tickets
217 label_issue_status_new: Novo status
217 label_issue_status_new: Novo status
218 label_issue_category: Categoria de ticket
218 label_issue_category: Categoria de ticket
219 label_issue_category_plural: Categorias de tickets
219 label_issue_category_plural: Categorias de tickets
220 label_issue_category_new: Nova categoria
220 label_issue_category_new: Nova categoria
221 label_custom_field: Campo personalizado
221 label_custom_field: Campo personalizado
222 label_custom_field_plural: Campos personalizados
222 label_custom_field_plural: Campos personalizados
223 label_custom_field_new: Novo campo personalizado
223 label_custom_field_new: Novo campo personalizado
224 label_enumerations: 'Tipos & Categorias'
224 label_enumerations: 'Tipos & Categorias'
225 label_enumeration_new: Novo
225 label_enumeration_new: Novo
226 label_information: Informação
226 label_information: Informação
227 label_information_plural: Informações
227 label_information_plural: Informações
228 label_please_login: Efetue o login
228 label_please_login: Efetue o login
229 label_register: Registre-se
229 label_register: Registre-se
230 label_password_lost: Perdi minha senha
230 label_password_lost: Perdi minha senha
231 label_home: Página inicial
231 label_home: Página inicial
232 label_my_page: Minha página
232 label_my_page: Minha página
233 label_my_account: Minha conta
233 label_my_account: Minha conta
234 label_my_projects: Meus projetos
234 label_my_projects: Meus projetos
235 label_administration: Administração
235 label_administration: Administração
236 label_login: Entrar
236 label_login: Entrar
237 label_logout: Sair
237 label_logout: Sair
238 label_help: Ajuda
238 label_help: Ajuda
239 label_reported_issues: Tickets reportados
239 label_reported_issues: Tickets reportados
240 label_assigned_to_me_issues: Meus tickets
240 label_assigned_to_me_issues: Meus tickets
241 label_last_login: Última conexao
241 label_last_login: Última conexao
242 label_last_updates: Última alteração
242 label_last_updates: Última alteração
243 label_last_updates_plural: %d Últimas alterações
243 label_last_updates_plural: %d Últimas alterações
244 label_registered_on: Registrado em
244 label_registered_on: Registrado em
245 label_activity: Atividade
245 label_activity: Atividade
246 label_new: Novo
246 label_new: Novo
247 label_logged_as: "Acessando como:"
247 label_logged_as: "Acessando como:"
248 label_environment: Ambiente
248 label_environment: Ambiente
249 label_authentication: Autenticação
249 label_authentication: Autenticação
250 label_auth_source: Modo de autenticação
250 label_auth_source: Modo de autenticação
251 label_auth_source_new: Novo modo de autenticação
251 label_auth_source_new: Novo modo de autenticação
252 label_auth_source_plural: Modos de autenticação
252 label_auth_source_plural: Modos de autenticação
253 label_subproject_plural: Sub-projetos
253 label_subproject_plural: Sub-projetos
254 label_min_max_length: Tamanho mín-máx
254 label_min_max_length: Tamanho mín-máx
255 label_list: Lista
255 label_list: Lista
256 label_date: Data
256 label_date: Data
257 label_integer: Inteiro
257 label_integer: Inteiro
258 label_boolean: Boleano
258 label_boolean: Boleano
259 label_string: Texto
259 label_string: Texto
260 label_text: Texto longo
260 label_text: Texto longo
261 label_attribute: Atributo
261 label_attribute: Atributo
262 label_attribute_plural: Atributos
262 label_attribute_plural: Atributos
263 label_download: %d Download
263 label_download: %d Download
264 label_download_plural: %d Downloads
264 label_download_plural: %d Downloads
265 label_no_data: Nenhuma informação disponível
265 label_no_data: Nenhuma informação disponível
266 label_change_status: Alterar status
266 label_change_status: Alterar status
267 label_history: Histórico
267 label_history: Histórico
268 label_attachment: Arquivo
268 label_attachment: Arquivo
269 label_attachment_new: Novo arquivo
269 label_attachment_new: Novo arquivo
270 label_attachment_delete: Apagar arquivo
270 label_attachment_delete: Apagar arquivo
271 label_attachment_plural: Arquivos
271 label_attachment_plural: Arquivos
272 label_report: Relatório
272 label_report: Relatório
273 label_report_plural: Relatório
273 label_report_plural: Relatório
274 label_news: Notícia
274 label_news: Notícia
275 label_news_new: Adicionar notícias
275 label_news_new: Adicionar notícias
276 label_news_plural: Notícias
276 label_news_plural: Notícias
277 label_news_latest: Últimas notícias
277 label_news_latest: Últimas notícias
278 label_news_view_all: Ver todas as notícias
278 label_news_view_all: Ver todas as notícias
279 label_change_log: Registro de alterações
279 label_change_log: Registro de alterações
280 label_settings: Configurações
280 label_settings: Configurações
281 label_overview: Visão geral
281 label_overview: Visão geral
282 label_version: Versão
282 label_version: Versão
283 label_version_new: Nova versão
283 label_version_new: Nova versão
284 label_version_plural: Versões
284 label_version_plural: Versões
285 label_confirmation: Confirmação
285 label_confirmation: Confirmação
286 label_export_to: Exportar para
286 label_export_to: Exportar para
287 label_read: Ler...
287 label_read: Ler...
288 label_public_projects: Projetos públicos
288 label_public_projects: Projetos públicos
289 label_open_issues: Aberto
289 label_open_issues: Aberto
290 label_open_issues_plural: Abertos
290 label_open_issues_plural: Abertos
291 label_closed_issues: Fechado
291 label_closed_issues: Fechado
292 label_closed_issues_plural: Fechados
292 label_closed_issues_plural: Fechados
293 label_total: Total
293 label_total: Total
294 label_permissions: Permissões
294 label_permissions: Permissões
295 label_current_status: Status atual
295 label_current_status: Status atual
296 label_new_statuses_allowed: Novo status permitido
296 label_new_statuses_allowed: Novo status permitido
297 label_all: todos
297 label_all: todos
298 label_none: nenhum
298 label_none: nenhum
299 label_next: Próximo
299 label_next: Próximo
300 label_previous: Anterior
300 label_previous: Anterior
301 label_used_by: Usado por
301 label_used_by: Usado por
302 label_details: Detalhes
302 label_details: Detalhes
303 label_add_note: Adicionar nota
303 label_add_note: Adicionar nota
304 label_per_page: Por página
304 label_per_page: Por página
305 label_calendar: Calendário
305 label_calendar: Calendário
306 label_months_from: meses a partir de
306 label_months_from: meses a partir de
307 label_gantt: Gantt
307 label_gantt: Gantt
308 label_internal: Interno
308 label_internal: Interno
309 label_last_changes: últimas %d alteraçoes
309 label_last_changes: últimas %d alteraçoes
310 label_change_view_all: Mostrar todas as alteraçoes
310 label_change_view_all: Mostrar todas as alteraçoes
311 label_personalize_page: Personalizar esta página
311 label_personalize_page: Personalizar esta página
312 label_comment: Comentário
312 label_comment: Comentário
313 label_comment_plural: Comentários
313 label_comment_plural: Comentários
314 label_comment_add: Adicionar comentário
314 label_comment_add: Adicionar comentário
315 label_comment_added: Comentário adicionado
315 label_comment_added: Comentário adicionado
316 label_comment_delete: Apagar comentário
316 label_comment_delete: Apagar comentário
317 label_query: Consulta personalizada
317 label_query: Consulta personalizada
318 label_query_plural: Consultas personalizadas
318 label_query_plural: Consultas personalizadas
319 label_query_new: Nova consulta
319 label_query_new: Nova consulta
320 label_filter_add: Adicionar filtro
320 label_filter_add: Adicionar filtro
321 label_filter_plural: Filtros
321 label_filter_plural: Filtros
322 label_equals: é
322 label_equals: é
323 label_not_equals: não é
323 label_not_equals: não é
324 label_in_less_than: é maior que
324 label_in_less_than: é maior que
325 label_in_more_than: é menor que
325 label_in_more_than: é menor que
326 label_in: em
326 label_in: em
327 label_today: hoje
327 label_today: hoje
328 label_this_week: esta semana
328 label_this_week: esta semana
329 label_less_than_ago: faz menos de
329 label_less_than_ago: faz menos de
330 label_more_than_ago: faz mais de
330 label_more_than_ago: faz mais de
331 label_ago: dias atrás
331 label_ago: dias atrás
332 label_contains: contém
332 label_contains: contém
333 label_not_contains: não contem
333 label_not_contains: não contem
334 label_day_plural: dias
334 label_day_plural: dias
335 label_repository: Repositório
335 label_repository: Repositório
336 label_browse: Procurar
336 label_browse: Procurar
337 label_modification: %d alteração
337 label_modification: %d alteração
338 label_modification_plural: %d alterações
338 label_modification_plural: %d alterações
339 label_revision: Revisão
339 label_revision: Revisão
340 label_revision_plural: Revisões
340 label_revision_plural: Revisões
341 label_added: adicionado
341 label_added: adicionado
342 label_modified: modificado
342 label_modified: modificado
343 label_deleted: excluído
343 label_deleted: excluído
344 label_latest_revision: Última revisão
344 label_latest_revision: Última revisão
345 label_latest_revision_plural: Últimas revisões
345 label_latest_revision_plural: Últimas revisões
346 label_view_revisions: Visualizar revisões
346 label_view_revisions: Visualizar revisões
347 label_max_size: Tamanho máximo
347 label_max_size: Tamanho máximo
348 label_on: 'em'
348 label_on: 'em'
349 label_sort_highest: Mover para o início
349 label_sort_highest: Mover para o início
350 label_sort_higher: Mover para cima
350 label_sort_higher: Mover para cima
351 label_sort_lower: Mover para baixo
351 label_sort_lower: Mover para baixo
352 label_sort_lowest: Mover para o fim
352 label_sort_lowest: Mover para o fim
353 label_roadmap: Planejamento
353 label_roadmap: Planejamento
354 label_roadmap_due_in: Previsão em
354 label_roadmap_due_in: Previsão em
355 label_roadmap_overdue: %s atrasado
355 label_roadmap_overdue: %s atrasado
356 label_roadmap_no_issues: Sem tickets para esta versão
356 label_roadmap_no_issues: Sem tickets para esta versão
357 label_search: Busca
357 label_search: Busca
358 label_result_plural: Resultados
358 label_result_plural: Resultados
359 label_all_words: Todas as palavras
359 label_all_words: Todas as palavras
360 label_wiki: Wiki
360 label_wiki: Wiki
361 label_wiki_edit: Editar Wiki
361 label_wiki_edit: Editar Wiki
362 label_wiki_edit_plural: Edições Wiki
362 label_wiki_edit_plural: Edições Wiki
363 label_wiki_page: Página Wiki
363 label_wiki_page: Página Wiki
364 label_wiki_page_plural: Páginas Wiki
364 label_wiki_page_plural: Páginas Wiki
365 label_index_by_title: Índice por título
365 label_index_by_title: Índice por título
366 label_index_by_date: Índice por data
366 label_index_by_date: Índice por data
367 label_current_version: Versão atual
367 label_current_version: Versão atual
368 label_preview: Pré-visualizar
368 label_preview: Pré-visualizar
369 label_feed_plural: Feeds
369 label_feed_plural: Feeds
370 label_changes_details: Detalhes de todas as alterações
370 label_changes_details: Detalhes de todas as alterações
371 label_issue_tracking: Tickets
371 label_issue_tracking: Tickets
372 label_spent_time: Tempo gasto
372 label_spent_time: Tempo gasto
373 label_f_hour: %.2f hora
373 label_f_hour: %.2f hora
374 label_f_hour_plural: %.2f horas
374 label_f_hour_plural: %.2f horas
375 label_time_tracking: Tempo trabalhado
375 label_time_tracking: Tempo trabalhado
376 label_change_plural: Mudanças
376 label_change_plural: Mudanças
377 label_statistics: Estatísticas
377 label_statistics: Estatísticas
378 label_commits_per_month: Commits por mês
378 label_commits_per_month: Commits por mês
379 label_commits_per_author: Commits por autor
379 label_commits_per_author: Commits por autor
380 label_view_diff: Ver diferenças
380 label_view_diff: Ver diferenças
381 label_diff_inline: inline
381 label_diff_inline: inline
382 label_diff_side_by_side: lado a lado
382 label_diff_side_by_side: lado a lado
383 label_options: Opções
383 label_options: Opções
384 label_copy_workflow_from: Copiar workflow de
384 label_copy_workflow_from: Copiar workflow de
385 label_permissions_report: Relatório de permissões
385 label_permissions_report: Relatório de permissões
386 label_watched_issues: Tickes acompanhados
386 label_watched_issues: Tickes acompanhados
387 label_related_issues: Tickets relacionados
387 label_related_issues: Tickets relacionados
388 label_applied_status: Status aplicado
388 label_applied_status: Status aplicado
389 label_loading: Carregando...
389 label_loading: Carregando...
390 label_relation_new: Nova relação
390 label_relation_new: Nova relação
391 label_relation_delete: Excluir relação
391 label_relation_delete: Excluir relação
392 label_relates_to: relacionado a
392 label_relates_to: relacionado a
393 label_duplicates: duplicado de
393 label_duplicates: duplicado de
394 label_blocks: bloqueia
394 label_blocks: bloqueia
395 label_blocked_by: bloqueado por
395 label_blocked_by: bloqueado por
396 label_precedes: precede
396 label_precedes: precede
397 label_follows: segue
397 label_follows: segue
398 label_end_to_start: fim para o início
398 label_end_to_start: fim para o início
399 label_end_to_end: fim para fim
399 label_end_to_end: fim para fim
400 label_start_to_start: início para início
400 label_start_to_start: início para início
401 label_start_to_end: início para fim
401 label_start_to_end: início para fim
402 label_stay_logged_in: Permanecer logado
402 label_stay_logged_in: Permanecer logado
403 label_disabled: desabilitado
403 label_disabled: desabilitado
404 label_show_completed_versions: Exibir versões completas
404 label_show_completed_versions: Exibir versões completas
405 label_me: eu
405 label_me: eu
406 label_board: Fórum
406 label_board: Fórum
407 label_board_new: Novo fórum
407 label_board_new: Novo fórum
408 label_board_plural: Fóruns
408 label_board_plural: Fóruns
409 label_topic_plural: Tópicos
409 label_topic_plural: Tópicos
410 label_message_plural: Mensagens
410 label_message_plural: Mensagens
411 label_message_last: Última mensagem
411 label_message_last: Última mensagem
412 label_message_new: Nova mensagem
412 label_message_new: Nova mensagem
413 label_reply_plural: Respostas
413 label_reply_plural: Respostas
414 label_send_information: Enviar informação de conta para o usuário
414 label_send_information: Enviar informação de conta para o usuário
415 label_year: Ano
415 label_year: Ano
416 label_month: Mês
416 label_month: Mês
417 label_week: Semana
417 label_week: Semana
418 label_date_from: De
418 label_date_from: De
419 label_date_to: Para
419 label_date_to: Para
420 label_language_based: Com base no idioma
420 label_language_based: Com base no idioma
421 label_sort_by: Ordenar por %s
421 label_sort_by: Ordenar por %s
422 label_send_test_email: Enviar um email de teste
422 label_send_test_email: Enviar um email de teste
423 label_feeds_access_key_created_on: chave de acesso RSS criada %s atrás
423 label_feeds_access_key_created_on: chave de acesso RSS criada %s atrás
424 label_module_plural: Módulos
424 label_module_plural: Módulos
425 label_added_time_by: Adicionado por %s %s atrás
425 label_added_time_by: Adicionado por %s %s atrás
426 label_updated_time: Atualizado %s atrás
426 label_updated_time: Atualizado %s atrás
427 label_jump_to_a_project: Ir para o projeto...
427 label_jump_to_a_project: Ir para o projeto...
428
428
429 button_login: Login
429 button_login: Login
430 button_submit: Enviar
430 button_submit: Enviar
431 button_save: Salvar
431 button_save: Salvar
432 button_check_all: Marcar todos
432 button_check_all: Marcar todos
433 button_uncheck_all: Desmarcar todos
433 button_uncheck_all: Desmarcar todos
434 button_delete: Apagar
434 button_delete: Apagar
435 button_create: Criar
435 button_create: Criar
436 button_test: Testar
436 button_test: Testar
437 button_edit: Editar
437 button_edit: Editar
438 button_add: Adicionar
438 button_add: Adicionar
439 button_change: Alterar
439 button_change: Alterar
440 button_apply: Aplicar
440 button_apply: Aplicar
441 button_clear: Limpar
441 button_clear: Limpar
442 button_lock: Bloquear
442 button_lock: Bloquear
443 button_unlock: Desbloquear
443 button_unlock: Desbloquear
444 button_download: Download
444 button_download: Download
445 button_list: Listar
445 button_list: Listar
446 button_view: Ver
446 button_view: Ver
447 button_move: Mover
447 button_move: Mover
448 button_back: Voltar
448 button_back: Voltar
449 button_cancel: Cancelar
449 button_cancel: Cancelar
450 button_activate: Ativar
450 button_activate: Ativar
451 button_sort: Ordenar
451 button_sort: Ordenar
452 button_log_time: Tempo de trabalho
452 button_log_time: Tempo de trabalho
453 button_rollback: Voltar para esta versão
453 button_rollback: Voltar para esta versão
454 button_watch: Acompanhar
454 button_watch: Acompanhar
455 button_unwatch: Não Acompanhar
455 button_unwatch: Não Acompanhar
456 button_reply: Responder
456 button_reply: Responder
457 button_archive: Arquivar
457 button_archive: Arquivar
458 button_unarchive: Desarquivar
458 button_unarchive: Desarquivar
459 button_reset: Redefinir
459 button_reset: Redefinir
460 button_rename: Renomear
460 button_rename: Renomear
461
461
462 status_active: ativo
462 status_active: ativo
463 status_registered: registrado
463 status_registered: registrado
464 status_locked: bloqueado
464 status_locked: bloqueado
465
465
466 text_select_mail_notifications: Selecionar ações para ser enviado uma notificação por email
466 text_select_mail_notifications: Selecionar ações para ser enviado uma notificação por email
467 text_regexp_info: ex. ^[A-Z0-9]+$
467 text_regexp_info: ex. ^[A-Z0-9]+$
468 text_min_max_length_info: 0 siginifica sem restrição
468 text_min_max_length_info: 0 siginifica sem restrição
469 text_project_destroy_confirmation: Você tem certeza que deseja excluir este projeto e todos os dados relacionados?
469 text_project_destroy_confirmation: Você tem certeza que deseja excluir este projeto e todos os dados relacionados?
470 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
470 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
471 text_are_you_sure: Você tem certeza?
471 text_are_you_sure: Você tem certeza?
472 text_journal_changed: alterado de %s para %s
472 text_journal_changed: alterado de %s para %s
473 text_journal_set_to: setar para %s
473 text_journal_set_to: setar para %s
474 text_journal_deleted: apagado
474 text_journal_deleted: apagado
475 text_tip_task_begin_day: tarefa inicia neste dia
475 text_tip_task_begin_day: tarefa inicia neste dia
476 text_tip_task_end_day: tarefa termina neste dia
476 text_tip_task_end_day: tarefa termina neste dia
477 text_tip_task_begin_end_day: tarefa inicia e termina neste dia
477 text_tip_task_begin_end_day: tarefa inicia e termina neste dia
478 text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitidos.<br />Uma vez salvo, o identificador não pode ser alterado.'
478 text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitidos.<br />Uma vez salvo, o identificador não pode ser alterado.'
479 text_caracters_maximum: máximo %d caracteres
479 text_caracters_maximum: máximo %d caracteres
480 text_length_between: Tamanho entre %d e %d caracteres.
480 text_length_between: Tamanho entre %d e %d caracteres.
481 text_tracker_no_workflow: Sem workflow definido para este tipo.
481 text_tracker_no_workflow: Sem workflow definido para este tipo.
482 text_unallowed_characters: Caracteres não permitidos
482 text_unallowed_characters: Caracteres não permitidos
483 text_comma_separated: Múltiplos valores são permitidos (separados por vírgula).
483 text_comma_separated: Múltiplos valores são permitidos (separados por vírgula).
484 text_issues_ref_in_commit_messages: Referenciando e fixando tickets nas mensagens de commit
484 text_issues_ref_in_commit_messages: Referenciando e fixando tickets nas mensagens de commit
485 text_issue_added: Tarefa %s foi incluída (por %s).
485 text_issue_added: Tarefa %s foi incluída (por %s).
486 text_issue_updated: Tarefa %s foi alterada (por %s).
486 text_issue_updated: Tarefa %s foi alterada (por %s).
487 text_wiki_destroy_confirmation: Você tem certeza que deseja excluir este wiki e todo o seu conteúdo?
487 text_wiki_destroy_confirmation: Você tem certeza que deseja excluir este wiki e todo o seu conteúdo?
488 text_issue_category_destroy_question: Alguns tickets (%d) estão atribuídos a esta categoria. O que você deseja fazer?
488 text_issue_category_destroy_question: Alguns tickets (%d) estão atribuídos a esta categoria. O que você deseja fazer?
489 text_issue_category_destroy_assignments: Remover atribuições da categoria
489 text_issue_category_destroy_assignments: Remover atribuições da categoria
490 text_issue_category_reassign_to: Redefinir tickets para esta categoria
490 text_issue_category_reassign_to: Redefinir tickets para esta categoria
491
491
492 default_role_manager: Gerente
492 default_role_manager: Gerente
493 default_role_developper: Desenvolvedor
493 default_role_developper: Desenvolvedor
494 default_role_reporter: Informante
494 default_role_reporter: Informante
495 default_tracker_bug: Problema
495 default_tracker_bug: Problema
496 default_tracker_feature: Implementação
496 default_tracker_feature: Implementação
497 default_tracker_support: Suporte
497 default_tracker_support: Suporte
498 default_issue_status_new: Novo
498 default_issue_status_new: Novo
499 default_issue_status_assigned: Atribuído
499 default_issue_status_assigned: Atribuído
500 default_issue_status_resolved: Resolvido
500 default_issue_status_resolved: Resolvido
501 default_issue_status_feedback: Feedback
501 default_issue_status_feedback: Feedback
502 default_issue_status_closed: Fechado
502 default_issue_status_closed: Fechado
503 default_issue_status_rejected: Rejeitado
503 default_issue_status_rejected: Rejeitado
504 default_doc_category_user: Documentação do usuário
504 default_doc_category_user: Documentação do usuário
505 default_doc_category_tech: Documentação técnica
505 default_doc_category_tech: Documentação técnica
506 default_priority_low: Baixo
506 default_priority_low: Baixo
507 default_priority_normal: Normal
507 default_priority_normal: Normal
508 default_priority_high: Alto
508 default_priority_high: Alto
509 default_priority_urgent: Urgente
509 default_priority_urgent: Urgente
510 default_priority_immediate: Imediato
510 default_priority_immediate: Imediato
511 default_activity_design: Design
511 default_activity_design: Design
512 default_activity_development: Desenvolvimento
512 default_activity_development: Desenvolvimento
513
513
514 enumeration_issue_priorities: Prioridade das tarefas
514 enumeration_issue_priorities: Prioridade das tarefas
515 enumeration_doc_categories: Categorias de documento
515 enumeration_doc_categories: Categorias de documento
516 enumeration_activities: Atividades (time tracking)
516 enumeration_activities: Atividades (time tracking)
517 label_file_plural: Arquivos
517 label_file_plural: Arquivos
518 label_changeset_plural: Changesets
518 label_changeset_plural: Changesets
519 field_column_names: Colunas
519 field_column_names: Colunas
520 label_default_columns: Colunas padrão
520 label_default_columns: Colunas padrão
521 setting_issue_list_default_columns: Colunas padrão visíveis na lista de tickets
521 setting_issue_list_default_columns: Colunas padrão visíveis na lista de tickets
522 setting_repositories_encodings: Codificação dos repositórios
522 setting_repositories_encodings: Codificação dos repositórios
523 notice_no_issue_selected: "Nenhum ticket está selecionado! Por favor, marque os tickets que você deseja alterar."
523 notice_no_issue_selected: "Nenhum ticket está selecionado! Por favor, marque os tickets que você deseja alterar."
524 label_bulk_edit_selected_issues: Edição em massa dos tickets selecionados.
524 label_bulk_edit_selected_issues: Edição em massa dos tickets selecionados.
525 label_no_change_option: (Sem alteração)
525 label_no_change_option: (Sem alteração)
526 notice_failed_to_save_issues: "Problema ao salvar %d ticket(s) no %d selecionado: %s."
526 notice_failed_to_save_issues: "Problema ao salvar %d ticket(s) no %d selecionado: %s."
527 label_theme: Tema
527 label_theme: Tema
528 label_default: Padrão
528 label_default: Padrão
529 label_search_titles_only: Pesquisar somente títulos
529 label_search_titles_only: Pesquisar somente títulos
530 label_nobody: ninguém
530 label_nobody: ninguém
531 button_change_password: Alterar senha
531 button_change_password: Alterar senha
532 text_user_mail_option: "Para projetos não selecionados, você somente receberá notificações sobre o que você acompanha ou está envolvido (ex. tickets que você é autor ou está atribuído)"
532 text_user_mail_option: "Para projetos não selecionados, você somente receberá notificações sobre o que você acompanha ou está envolvido (ex. tickets que você é autor ou está atribuído)"
533 label_user_mail_option_selected: "Para qualquer evento somente no(s) projeto(s) selecionado(s)..."
533 label_user_mail_option_selected: "Para qualquer evento somente no(s) projeto(s) selecionado(s)..."
534 label_user_mail_option_all: "Para qualquer evento em todos os meus projetos"
534 label_user_mail_option_all: "Para qualquer evento em todos os meus projetos"
535 label_user_mail_option_none: "Somente eventos que eu acompanho ou estou envolvido"
535 label_user_mail_option_none: "Somente eventos que eu acompanho ou estou envolvido"
536 setting_emails_footer: Rodapé dos emails
536 setting_emails_footer: Rodapé dos emails
537 label_float: Flutuante
537 label_float: Flutuante
538 button_copy: Copiar
538 button_copy: Copiar
539 mail_body_account_information_external: Você pode usar sua conta "%s" para entrar.
539 mail_body_account_information_external: Você pode usar sua conta "%s" para entrar.
540 mail_body_account_information: Informações de sua conta
540 mail_body_account_information: Informações de sua conta
541 setting_protocol: Protocolo
541 setting_protocol: Protocolo
542 label_user_mail_no_self_notified: "Eu não desejo ser notificado de minhas próprias modificações"
542 label_user_mail_no_self_notified: "Eu não desejo ser notificado de minhas próprias modificações"
543 setting_time_format: Formato de data
543 setting_time_format: Formato de data
544 label_registration_activation_by_email: ativação de conta por email
544 label_registration_activation_by_email: ativação de conta por email
545 mail_subject_account_activation_request: %s requisição de ativação de conta
545 mail_subject_account_activation_request: %s requisição de ativação de conta
546 mail_body_account_activation_request: 'Um novo usuário (%s) se registrou. A conta está aguardando sua aprovação:'
546 mail_body_account_activation_request: 'Um novo usuário (%s) se registrou. A conta está aguardando sua aprovação:'
547 label_registration_automatic_activation: ativação automática de conta
547 label_registration_automatic_activation: ativação automática de conta
548 label_registration_manual_activation: ativação manual de conta
548 label_registration_manual_activation: ativação manual de conta
549 notice_account_pending: "Sua conta foi criada e está aguardando aprovação do administrador."
549 notice_account_pending: "Sua conta foi criada e está aguardando aprovação do administrador."
550 field_time_zone: Fuso-horário
550 field_time_zone: Fuso-horário
551 text_caracters_minimum: Precisa ter ao menos %d caracteres.
551 text_caracters_minimum: Precisa ter ao menos %d caracteres.
552 setting_bcc_recipients: Destinatários com cópia oculta (cco)
552 setting_bcc_recipients: Destinatários com cópia oculta (cco)
553 button_annotate: Anotar
553 button_annotate: Anotar
554 label_issues_by: Tickets por %s
554 label_issues_by: Tickets por %s
555 field_searchable: Pesquisável
555 field_searchable: Pesquisável
556 label_display_per_page: 'Por página: %s'
556 label_display_per_page: 'Por página: %s'
557 setting_per_page_options: Opções de itens por página
557 setting_per_page_options: Opções de itens por página
558 notice_default_data_loaded: Configuração padrão carregada com sucesso.
558 notice_default_data_loaded: Configuração padrão carregada com sucesso.
559 text_load_default_configuration: Carregar a configuração padrão
559 text_load_default_configuration: Carregar a configuração padrão
560 text_no_configuration_data: "Os Papéis, tipos de tickets, status de tickets e workflows não foram configurados ainda.\nÉ altamente recomendado carregar as configurações padrão. Você poderá modificar estas configurações assim que carregadas."
560 text_no_configuration_data: "Os Papéis, tipos de tickets, status de tickets e workflows não foram configurados ainda.\nÉ altamente recomendado carregar as configurações padrão. Você poderá modificar estas configurações assim que carregadas."
561 error_can_t_load_default_data: "Configuração padrão não pôde ser carregada: %s"
561 error_can_t_load_default_data: "Configuração padrão não pôde ser carregada: %s"
562 button_update: Atualizar
562 button_update: Atualizar
563 label_change_properties: Alterar propriedades
563 label_change_properties: Alterar propriedades
564 label_general: Geral
564 label_general: Geral
565 label_repository_plural: Repositórios
565 label_repository_plural: Repositórios
566 label_associated_revisions: Revisões associadas
566 label_associated_revisions: Revisões associadas
567 setting_user_format: Formato de visualização dos usuários
567 setting_user_format: Formato de visualização dos usuários
568 text_status_changed_by_changeset: Aplicado no changeset %s.
568 text_status_changed_by_changeset: Aplicado no changeset %s.
569 label_more: Mais
569 label_more: Mais
570 text_issues_destroy_confirmation: 'Você tem certeza que deseja excluir o(s) ticket(s) selecionado(s)?'
570 text_issues_destroy_confirmation: 'Você tem certeza que deseja excluir o(s) ticket(s) selecionado(s)?'
571 label_scm: SCM
571 label_scm: SCM
572 text_select_project_modules: 'Selecione módulos para habilitar para este projeto:'
572 text_select_project_modules: 'Selecione módulos para habilitar para este projeto:'
573 label_issue_added: Ticket adicionado
573 label_issue_added: Ticket adicionado
574 label_issue_updated: Ticket atualizado
574 label_issue_updated: Ticket atualizado
575 label_document_added: Documento adicionado
575 label_document_added: Documento adicionado
576 label_message_posted: Mensagem enviada
576 label_message_posted: Mensagem enviada
577 label_file_added: Arquivo adicionado
577 label_file_added: Arquivo adicionado
578 label_news_added: Notícia adicionada
578 label_news_added: Notícia adicionada
579 project_module_boards: Fóruns
579 project_module_boards: Fóruns
580 project_module_issue_tracking: Gerenciamento de Tickets
580 project_module_issue_tracking: Gerenciamento de Tickets
581 project_module_wiki: Wiki
581 project_module_wiki: Wiki
582 project_module_files: Arquivos
582 project_module_files: Arquivos
583 project_module_documents: Documentos
583 project_module_documents: Documentos
584 project_module_repository: Repositório
584 project_module_repository: Repositório
585 project_module_news: Notícias
585 project_module_news: Notícias
586 project_module_time_tracking: Gerenciamento de tempo
586 project_module_time_tracking: Gerenciamento de tempo
587 text_file_repository_writable: Repositório de arquivos gravável
587 text_file_repository_writable: Repositório de arquivos gravável
588 text_default_administrator_account_changed: Conta de administrador padrão modificada
588 text_default_administrator_account_changed: Conta de administrador padrão modificada
589 text_rmagick_available: RMagick disponível (opcional)
589 text_rmagick_available: RMagick disponível (opcional)
590 button_configure: Configuração
590 button_configure: Configuração
591 label_plugins: Plugins
591 label_plugins: Plugins
592 label_ldap_authentication: autenticação LDAP
592 label_ldap_authentication: autenticação LDAP
593 label_downloads_abbr: D/L
593 label_downloads_abbr: D/L
594 label_this_month: este mês
594 label_this_month: este mês
595 label_last_n_days: últimos %d dias
595 label_last_n_days: últimos %d dias
596 label_all_time: todo o tempo
596 label_all_time: todo o tempo
597 label_this_year: este ano
597 label_this_year: este ano
598 label_date_range: Intervalo de datas
598 label_date_range: Intervalo de datas
599 label_last_week: última semana
599 label_last_week: última semana
600 label_yesterday: ontem
600 label_yesterday: ontem
601 label_last_month: último mês
601 label_last_month: último mês
602 label_add_another_file: Adicionar outro arquivo
602 label_add_another_file: Adicionar outro arquivo
603 label_optional_description: Descrição opcional
603 label_optional_description: Descrição opcional
604 text_destroy_time_entries_question: %.02f horas foram reportadas neste ticket que você está excluindo. O que você deseja fazer?
604 text_destroy_time_entries_question: %.02f horas foram reportadas neste ticket que você está excluindo. O que você deseja fazer?
605 error_issue_not_found_in_project: 'O ticket não foi encontrado ou não pertence a este projeto'
605 error_issue_not_found_in_project: 'O ticket não foi encontrado ou não pertence a este projeto'
606 text_assign_time_entries_to_project: Atribuir horas reportadas para o projeto
606 text_assign_time_entries_to_project: Atribuir horas reportadas para o projeto
607 text_destroy_time_entries: Excluir horas reportadas
607 text_destroy_time_entries: Excluir horas reportadas
608 text_reassign_time_entries: 'Redefinir horas reportadas para este ticket:'
608 text_reassign_time_entries: 'Redefinir horas reportadas para este ticket:'
609 setting_activity_days_default: Dias visualizados na atividade do projeto
609 setting_activity_days_default: Dias visualizados na atividade do projeto
610 label_chronological_order: Em ordem cronológica
610 label_chronological_order: Em ordem cronológica
611 field_comments_sorting: Visualizar comentários
611 field_comments_sorting: Visualizar comentários
612 label_reverse_chronological_order: Em order cronológica reversa
612 label_reverse_chronological_order: Em order cronológica reversa
613 label_preferences: Preferências
613 label_preferences: Preferências
614 setting_display_subprojects_issues: Visualizar tickets dos subprojetos nos projetos principais por padrão
614 setting_display_subprojects_issues: Visualizar tickets dos subprojetos nos projetos principais por padrão
615 label_overall_activity: Atividade geral
615 label_overall_activity: Atividade geral
616 setting_default_projects_public: Novos projetos são públicos por padrão
616 setting_default_projects_public: Novos projetos são públicos por padrão
617 error_scm_annotate: "Esta entrada não existe ou não pode ser anotada."
617 error_scm_annotate: "Esta entrada não existe ou não pode ser anotada."
618 label_planning: Planejamento
618 label_planning: Planejamento
619 text_subprojects_destroy_warning: 'Seu(s) subprojeto(s): %s também serão excluídos.'
619 text_subprojects_destroy_warning: 'Seu(s) subprojeto(s): %s também serão excluídos.'
620 label_age: Age
620 label_age: Age
621 label_and_its_subprojects: %s and its subprojects
621 label_and_its_subprojects: %s and its subprojects
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
622 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
623 mail_subject_reminder: "%d issue(s) due in the next days"
623 mail_subject_reminder: "%d issue(s) due in the next days"
624 text_user_wrote: '%s wrote:'
624 text_user_wrote: '%s wrote:'
625 label_duplicated_by: duplicated by
625 label_duplicated_by: duplicated by
626 setting_enabled_scm: Enabled SCM
626 setting_enabled_scm: Enabled SCM
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
627 text_enumeration_category_reassign_to: 'Reassign them to this value:'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
628 text_enumeration_destroy_question: '%d objects are assigned to this value.'
629 label_incoming_emails: Incoming emails
630 label_generate_key: Generate a key
631 setting_mail_handler_api_enabled: Enable WS for incoming emails
632 setting_mail_handler_api_key: API key
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
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