##// END OF EJS Templates
Show explicit error message when the scm command failed (eg. when svn binary is not available)....
Jean-Philippe Lang -
r1080:91dc13f4b22c
parent child
Show More

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

@@ -1,207 +1,212
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 ApplicationController < ActionController::Base
18 class ApplicationController < ActionController::Base
19 before_filter :user_setup, :check_if_login_required, :set_localization
19 before_filter :user_setup, :check_if_login_required, :set_localization
20 filter_parameter_logging :password
20 filter_parameter_logging :password
21
21
22 include Redmine::MenuManager::MenuController
22 include Redmine::MenuManager::MenuController
23 helper Redmine::MenuManager::MenuHelper
23 helper Redmine::MenuManager::MenuHelper
24
24
25 REDMINE_SUPPORTED_SCM.each do |scm|
25 REDMINE_SUPPORTED_SCM.each do |scm|
26 require_dependency "repository/#{scm.underscore}"
26 require_dependency "repository/#{scm.underscore}"
27 end
27 end
28
28
29 def current_role
29 def current_role
30 @current_role ||= User.current.role_for_project(@project)
30 @current_role ||= User.current.role_for_project(@project)
31 end
31 end
32
32
33 def user_setup
33 def user_setup
34 # Check the settings cache for each request
34 # Check the settings cache for each request
35 Setting.check_cache
35 Setting.check_cache
36 # Find the current user
36 # Find the current user
37 User.current = find_current_user
37 User.current = find_current_user
38 end
38 end
39
39
40 # Returns the current user or nil if no user is logged in
40 # Returns the current user or nil if no user is logged in
41 def find_current_user
41 def find_current_user
42 if session[:user_id]
42 if session[:user_id]
43 # existing session
43 # existing session
44 (User.find_active(session[:user_id]) rescue nil)
44 (User.find_active(session[:user_id]) rescue nil)
45 elsif cookies[:autologin] && Setting.autologin?
45 elsif cookies[:autologin] && Setting.autologin?
46 # auto-login feature
46 # auto-login feature
47 User.find_by_autologin_key(cookies[:autologin])
47 User.find_by_autologin_key(cookies[:autologin])
48 elsif params[:key] && accept_key_auth_actions.include?(params[:action])
48 elsif params[:key] && accept_key_auth_actions.include?(params[:action])
49 # RSS key authentication
49 # RSS key authentication
50 User.find_by_rss_key(params[:key])
50 User.find_by_rss_key(params[:key])
51 end
51 end
52 end
52 end
53
53
54 # check if login is globally required to access the application
54 # check if login is globally required to access the application
55 def check_if_login_required
55 def check_if_login_required
56 # no check needed if user is already logged in
56 # no check needed if user is already logged in
57 return true if User.current.logged?
57 return true if User.current.logged?
58 require_login if Setting.login_required?
58 require_login if Setting.login_required?
59 end
59 end
60
60
61 def set_localization
61 def set_localization
62 lang = begin
62 lang = begin
63 if !User.current.language.blank? and GLoc.valid_languages.include? User.current.language.to_sym
63 if !User.current.language.blank? and GLoc.valid_languages.include? User.current.language.to_sym
64 User.current.language
64 User.current.language
65 elsif request.env['HTTP_ACCEPT_LANGUAGE']
65 elsif request.env['HTTP_ACCEPT_LANGUAGE']
66 accept_lang = parse_qvalues(request.env['HTTP_ACCEPT_LANGUAGE']).first.split('-').first
66 accept_lang = parse_qvalues(request.env['HTTP_ACCEPT_LANGUAGE']).first.split('-').first
67 if accept_lang and !accept_lang.empty? and GLoc.valid_languages.include? accept_lang.to_sym
67 if accept_lang and !accept_lang.empty? and GLoc.valid_languages.include? accept_lang.to_sym
68 accept_lang
68 accept_lang
69 end
69 end
70 end
70 end
71 rescue
71 rescue
72 nil
72 nil
73 end || Setting.default_language
73 end || Setting.default_language
74 set_language_if_valid(lang)
74 set_language_if_valid(lang)
75 end
75 end
76
76
77 def require_login
77 def require_login
78 if !User.current.logged?
78 if !User.current.logged?
79 store_location
79 store_location
80 redirect_to :controller => "account", :action => "login"
80 redirect_to :controller => "account", :action => "login"
81 return false
81 return false
82 end
82 end
83 true
83 true
84 end
84 end
85
85
86 def require_admin
86 def require_admin
87 return unless require_login
87 return unless require_login
88 if !User.current.admin?
88 if !User.current.admin?
89 render_403
89 render_403
90 return false
90 return false
91 end
91 end
92 true
92 true
93 end
93 end
94
94
95 # Authorize the user for the requested action
95 # Authorize the user for the requested action
96 def authorize(ctrl = params[:controller], action = params[:action])
96 def authorize(ctrl = params[:controller], action = params[:action])
97 allowed = User.current.allowed_to?({:controller => ctrl, :action => action}, @project)
97 allowed = User.current.allowed_to?({:controller => ctrl, :action => action}, @project)
98 allowed ? true : (User.current.logged? ? render_403 : require_login)
98 allowed ? true : (User.current.logged? ? render_403 : require_login)
99 end
99 end
100
100
101 # make sure that the user is a member of the project (or admin) if project is private
101 # make sure that the user is a member of the project (or admin) if project is private
102 # used as a before_filter for actions that do not require any particular permission on the project
102 # used as a before_filter for actions that do not require any particular permission on the project
103 def check_project_privacy
103 def check_project_privacy
104 unless @project.active?
104 unless @project.active?
105 @project = nil
105 @project = nil
106 render_404
106 render_404
107 return false
107 return false
108 end
108 end
109 return true if @project.is_public? || User.current.member_of?(@project) || User.current.admin?
109 return true if @project.is_public? || User.current.member_of?(@project) || User.current.admin?
110 User.current.logged? ? render_403 : require_login
110 User.current.logged? ? render_403 : require_login
111 end
111 end
112
112
113 # store current uri in session.
113 # store current uri in session.
114 # return to this location by calling redirect_back_or_default
114 # return to this location by calling redirect_back_or_default
115 def store_location
115 def store_location
116 session[:return_to_params] = params
116 session[:return_to_params] = params
117 end
117 end
118
118
119 # move to the last store_location call or to the passed default one
119 # move to the last store_location call or to the passed default one
120 def redirect_back_or_default(default)
120 def redirect_back_or_default(default)
121 if session[:return_to_params].nil?
121 if session[:return_to_params].nil?
122 redirect_to default
122 redirect_to default
123 else
123 else
124 redirect_to session[:return_to_params]
124 redirect_to session[:return_to_params]
125 session[:return_to_params] = nil
125 session[:return_to_params] = nil
126 end
126 end
127 end
127 end
128
128
129 def render_403
129 def render_403
130 @project = nil
130 @project = nil
131 render :template => "common/403", :layout => !request.xhr?, :status => 403
131 render :template => "common/403", :layout => !request.xhr?, :status => 403
132 return false
132 return false
133 end
133 end
134
134
135 def render_404
135 def render_404
136 render :template => "common/404", :layout => !request.xhr?, :status => 404
136 render :template => "common/404", :layout => !request.xhr?, :status => 404
137 return false
137 return false
138 end
138 end
139
139
140 def render_error(msg)
141 flash.now[:error] = msg
142 render :nothing => true, :layout => !request.xhr?, :status => 500
143 end
144
140 def render_feed(items, options={})
145 def render_feed(items, options={})
141 @items = items || []
146 @items = items || []
142 @items.sort! {|x,y| y.event_datetime <=> x.event_datetime }
147 @items.sort! {|x,y| y.event_datetime <=> x.event_datetime }
143 @title = options[:title] || Setting.app_title
148 @title = options[:title] || Setting.app_title
144 render :template => "common/feed.atom.rxml", :layout => false, :content_type => 'application/atom+xml'
149 render :template => "common/feed.atom.rxml", :layout => false, :content_type => 'application/atom+xml'
145 end
150 end
146
151
147 def self.accept_key_auth(*actions)
152 def self.accept_key_auth(*actions)
148 actions = actions.flatten.map(&:to_s)
153 actions = actions.flatten.map(&:to_s)
149 write_inheritable_attribute('accept_key_auth_actions', actions)
154 write_inheritable_attribute('accept_key_auth_actions', actions)
150 end
155 end
151
156
152 def accept_key_auth_actions
157 def accept_key_auth_actions
153 self.class.read_inheritable_attribute('accept_key_auth_actions') || []
158 self.class.read_inheritable_attribute('accept_key_auth_actions') || []
154 end
159 end
155
160
156 # TODO: move to model
161 # TODO: move to model
157 def attach_files(obj, files)
162 def attach_files(obj, files)
158 attachments = []
163 attachments = []
159 if files && files.is_a?(Array)
164 if files && files.is_a?(Array)
160 files.each do |file|
165 files.each do |file|
161 next unless file.size > 0
166 next unless file.size > 0
162 a = Attachment.create(:container => obj, :file => file, :author => User.current)
167 a = Attachment.create(:container => obj, :file => file, :author => User.current)
163 attachments << a unless a.new_record?
168 attachments << a unless a.new_record?
164 end
169 end
165 end
170 end
166 attachments
171 attachments
167 end
172 end
168
173
169 # Returns the number of objects that should be displayed
174 # Returns the number of objects that should be displayed
170 # on the paginated list
175 # on the paginated list
171 def per_page_option
176 def per_page_option
172 per_page = nil
177 per_page = nil
173 if params[:per_page] && Setting.per_page_options_array.include?(params[:per_page].to_s.to_i)
178 if params[:per_page] && Setting.per_page_options_array.include?(params[:per_page].to_s.to_i)
174 per_page = params[:per_page].to_s.to_i
179 per_page = params[:per_page].to_s.to_i
175 session[:per_page] = per_page
180 session[:per_page] = per_page
176 elsif session[:per_page]
181 elsif session[:per_page]
177 per_page = session[:per_page]
182 per_page = session[:per_page]
178 else
183 else
179 per_page = Setting.per_page_options_array.first || 25
184 per_page = Setting.per_page_options_array.first || 25
180 end
185 end
181 per_page
186 per_page
182 end
187 end
183
188
184 # qvalues http header parser
189 # qvalues http header parser
185 # code taken from webrick
190 # code taken from webrick
186 def parse_qvalues(value)
191 def parse_qvalues(value)
187 tmp = []
192 tmp = []
188 if value
193 if value
189 parts = value.split(/,\s*/)
194 parts = value.split(/,\s*/)
190 parts.each {|part|
195 parts.each {|part|
191 if m = %r{^([^\s,]+?)(?:;\s*q=(\d+(?:\.\d+)?))?$}.match(part)
196 if m = %r{^([^\s,]+?)(?:;\s*q=(\d+(?:\.\d+)?))?$}.match(part)
192 val = m[1]
197 val = m[1]
193 q = (m[2] or 1).to_f
198 q = (m[2] or 1).to_f
194 tmp.push([val, q])
199 tmp.push([val, q])
195 end
200 end
196 }
201 }
197 tmp = tmp.sort_by{|val, q| -q}
202 tmp = tmp.sort_by{|val, q| -q}
198 tmp.collect!{|val, q| val}
203 tmp.collect!{|val, q| val}
199 end
204 end
200 return tmp
205 return tmp
201 end
206 end
202
207
203 # Returns a string that can be used as filename value in Content-Disposition header
208 # Returns a string that can be used as filename value in Content-Disposition header
204 def filename_for_content_disposition(name)
209 def filename_for_content_disposition(name)
205 request.env['HTTP_USER_AGENT'] =~ %r{MSIE} ? ERB::Util.url_encode(name) : name
210 request.env['HTTP_USER_AGENT'] =~ %r{MSIE} ? ERB::Util.url_encode(name) : name
206 end
211 end
207 end
212 end
@@ -1,281 +1,298
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 require 'SVG/Graph/Bar'
18 require 'SVG/Graph/Bar'
19 require 'SVG/Graph/BarHorizontal'
19 require 'SVG/Graph/BarHorizontal'
20 require 'digest/sha1'
20 require 'digest/sha1'
21
21
22 class ChangesetNotFound < Exception
22 class ChangesetNotFound < Exception
23 end
23 end
24
24
25 class RepositoriesController < ApplicationController
25 class RepositoriesController < ApplicationController
26 layout 'base'
26 layout 'base'
27 menu_item :repository
27 menu_item :repository
28 before_filter :find_repository, :except => :edit
28 before_filter :find_repository, :except => :edit
29 before_filter :find_project, :only => :edit
29 before_filter :find_project, :only => :edit
30 before_filter :authorize
30 before_filter :authorize
31 accept_key_auth :revisions
31 accept_key_auth :revisions
32
32
33 def edit
33 def edit
34 @repository = @project.repository
34 @repository = @project.repository
35 if !@repository
35 if !@repository
36 @repository = Repository.factory(params[:repository_scm])
36 @repository = Repository.factory(params[:repository_scm])
37 @repository.project = @project
37 @repository.project = @project
38 end
38 end
39 if request.post?
39 if request.post?
40 @repository.attributes = params[:repository]
40 @repository.attributes = params[:repository]
41 @repository.save
41 @repository.save
42 end
42 end
43 render(:update) {|page| page.replace_html "tab-content-repository", :partial => 'projects/settings/repository'}
43 render(:update) {|page| page.replace_html "tab-content-repository", :partial => 'projects/settings/repository'}
44 end
44 end
45
45
46 def destroy
46 def destroy
47 @repository.destroy
47 @repository.destroy
48 redirect_to :controller => 'projects', :action => 'settings', :id => @project, :tab => 'repository'
48 redirect_to :controller => 'projects', :action => 'settings', :id => @project, :tab => 'repository'
49 end
49 end
50
50
51 def show
51 def show
52 # check if new revisions have been committed in the repository
52 # check if new revisions have been committed in the repository
53 @repository.fetch_changesets if Setting.autofetch_changesets?
53 @repository.fetch_changesets if Setting.autofetch_changesets?
54 # get entries for the browse frame
54 # get entries for the browse frame
55 @entries = @repository.entries('')
55 @entries = @repository.entries('')
56 # latest changesets
56 # latest changesets
57 @changesets = @repository.changesets.find(:all, :limit => 10, :order => "committed_on DESC")
57 @changesets = @repository.changesets.find(:all, :limit => 10, :order => "committed_on DESC")
58 show_error and return unless @entries || @changesets.any?
58 show_error and return unless @entries || @changesets.any?
59 rescue Redmine::Scm::Adapters::CommandFailed => e
60 show_error_command_failed(e.message)
59 end
61 end
60
62
61 def browse
63 def browse
62 @entries = @repository.entries(@path, @rev)
64 @entries = @repository.entries(@path, @rev)
63 if request.xhr?
65 if request.xhr?
64 @entries ? render(:partial => 'dir_list_content') : render(:nothing => true)
66 @entries ? render(:partial => 'dir_list_content') : render(:nothing => true)
65 else
67 else
66 show_error unless @entries
68 show_error unless @entries
67 end
69 end
70 rescue Redmine::Scm::Adapters::CommandFailed => e
71 show_error_command_failed(e.message)
68 end
72 end
69
73
70 def changes
74 def changes
71 @entry = @repository.scm.entry(@path, @rev)
75 @entry = @repository.scm.entry(@path, @rev)
72 show_error and return unless @entry
76 show_error and return unless @entry
73 @changesets = @repository.changesets_for_path(@path)
77 @changesets = @repository.changesets_for_path(@path)
78 rescue Redmine::Scm::Adapters::CommandFailed => e
79 show_error_command_failed(e.message)
74 end
80 end
75
81
76 def revisions
82 def revisions
77 @changeset_count = @repository.changesets.count
83 @changeset_count = @repository.changesets.count
78 @changeset_pages = Paginator.new self, @changeset_count,
84 @changeset_pages = Paginator.new self, @changeset_count,
79 per_page_option,
85 per_page_option,
80 params['page']
86 params['page']
81 @changesets = @repository.changesets.find(:all,
87 @changesets = @repository.changesets.find(:all,
82 :limit => @changeset_pages.items_per_page,
88 :limit => @changeset_pages.items_per_page,
83 :offset => @changeset_pages.current.offset)
89 :offset => @changeset_pages.current.offset)
84
90
85 respond_to do |format|
91 respond_to do |format|
86 format.html { render :layout => false if request.xhr? }
92 format.html { render :layout => false if request.xhr? }
87 format.atom { render_feed(@changesets, :title => "#{@project.name}: #{l(:label_revision_plural)}") }
93 format.atom { render_feed(@changesets, :title => "#{@project.name}: #{l(:label_revision_plural)}") }
88 end
94 end
89 end
95 end
90
96
91 def entry
97 def entry
92 @content = @repository.scm.cat(@path, @rev)
98 @content = @repository.scm.cat(@path, @rev)
93 show_error and return unless @content
99 show_error and return unless @content
94 if 'raw' == params[:format]
100 if 'raw' == params[:format]
95 send_data @content, :filename => @path.split('/').last
101 send_data @content, :filename => @path.split('/').last
96 else
102 else
97 # Prevent empty lines when displaying a file with Windows style eol
103 # Prevent empty lines when displaying a file with Windows style eol
98 @content.gsub!("\r\n", "\n")
104 @content.gsub!("\r\n", "\n")
99 end
105 end
106 rescue Redmine::Scm::Adapters::CommandFailed => e
107 show_error_command_failed(e.message)
100 end
108 end
101
109
102 def annotate
110 def annotate
103 @annotate = @repository.scm.annotate(@path, @rev)
111 @annotate = @repository.scm.annotate(@path, @rev)
104 show_error and return if @annotate.nil? || @annotate.empty?
112 show_error and return if @annotate.nil? || @annotate.empty?
113 rescue Redmine::Scm::Adapters::CommandFailed => e
114 show_error_command_failed(e.message)
105 end
115 end
106
116
107 def revision
117 def revision
108 @changeset = @repository.changesets.find_by_revision(@rev)
118 @changeset = @repository.changesets.find_by_revision(@rev)
109 raise ChangesetNotFound unless @changeset
119 raise ChangesetNotFound unless @changeset
110 @changes_count = @changeset.changes.size
120 @changes_count = @changeset.changes.size
111 @changes_pages = Paginator.new self, @changes_count, 150, params['page']
121 @changes_pages = Paginator.new self, @changes_count, 150, params['page']
112 @changes = @changeset.changes.find(:all,
122 @changes = @changeset.changes.find(:all,
113 :limit => @changes_pages.items_per_page,
123 :limit => @changes_pages.items_per_page,
114 :offset => @changes_pages.current.offset)
124 :offset => @changes_pages.current.offset)
115
125
116 respond_to do |format|
126 respond_to do |format|
117 format.html
127 format.html
118 format.js {render :layout => false}
128 format.js {render :layout => false}
119 end
129 end
120 rescue ChangesetNotFound
130 rescue ChangesetNotFound
121 show_error
131 show_error
132 rescue Redmine::Scm::Adapters::CommandFailed => e
133 show_error_command_failed(e.message)
122 end
134 end
123
135
124 def diff
136 def diff
125 @rev_to = params[:rev_to] ? params[:rev_to].to_i : (@rev - 1)
137 @rev_to = params[:rev_to] ? params[:rev_to].to_i : (@rev - 1)
126 @diff_type = params[:type] || User.current.pref[:diff_type] || 'inline'
138 @diff_type = params[:type] || User.current.pref[:diff_type] || 'inline'
127 @diff_type = 'inline' unless %w(inline sbs).include?(@diff_type)
139 @diff_type = 'inline' unless %w(inline sbs).include?(@diff_type)
128
140
129 # Save diff type as user preference
141 # Save diff type as user preference
130 if User.current.logged? && @diff_type != User.current.pref[:diff_type]
142 if User.current.logged? && @diff_type != User.current.pref[:diff_type]
131 User.current.pref[:diff_type] = @diff_type
143 User.current.pref[:diff_type] = @diff_type
132 User.current.preference.save
144 User.current.preference.save
133 end
145 end
134
146
135 @cache_key = "repositories/diff/#{@repository.id}/" + Digest::MD5.hexdigest("#{@path}-#{@rev}-#{@rev_to}-#{@diff_type}")
147 @cache_key = "repositories/diff/#{@repository.id}/" + Digest::MD5.hexdigest("#{@path}-#{@rev}-#{@rev_to}-#{@diff_type}")
136 unless read_fragment(@cache_key)
148 unless read_fragment(@cache_key)
137 @diff = @repository.diff(@path, @rev, @rev_to, @diff_type)
149 @diff = @repository.diff(@path, @rev, @rev_to, @diff_type)
138 show_error and return unless @diff
150 show_error and return unless @diff
139 end
151 end
152 rescue Redmine::Scm::Adapters::CommandFailed => e
153 show_error_command_failed(e.message)
140 end
154 end
141
155
142 def stats
156 def stats
143 end
157 end
144
158
145 def graph
159 def graph
146 data = nil
160 data = nil
147 case params[:graph]
161 case params[:graph]
148 when "commits_per_month"
162 when "commits_per_month"
149 data = graph_commits_per_month(@repository)
163 data = graph_commits_per_month(@repository)
150 when "commits_per_author"
164 when "commits_per_author"
151 data = graph_commits_per_author(@repository)
165 data = graph_commits_per_author(@repository)
152 end
166 end
153 if data
167 if data
154 headers["Content-Type"] = "image/svg+xml"
168 headers["Content-Type"] = "image/svg+xml"
155 send_data(data, :type => "image/svg+xml", :disposition => "inline")
169 send_data(data, :type => "image/svg+xml", :disposition => "inline")
156 else
170 else
157 render_404
171 render_404
158 end
172 end
159 end
173 end
160
174
161 private
175 private
162 def find_project
176 def find_project
163 @project = Project.find(params[:id])
177 @project = Project.find(params[:id])
164 rescue ActiveRecord::RecordNotFound
178 rescue ActiveRecord::RecordNotFound
165 render_404
179 render_404
166 end
180 end
167
181
168 def find_repository
182 def find_repository
169 @project = Project.find(params[:id])
183 @project = Project.find(params[:id])
170 @repository = @project.repository
184 @repository = @project.repository
171 render_404 and return false unless @repository
185 render_404 and return false unless @repository
172 @path = params[:path].join('/') unless params[:path].nil?
186 @path = params[:path].join('/') unless params[:path].nil?
173 @path ||= ''
187 @path ||= ''
174 @rev = params[:rev].to_i if params[:rev]
188 @rev = params[:rev].to_i if params[:rev]
175 rescue ActiveRecord::RecordNotFound
189 rescue ActiveRecord::RecordNotFound
176 render_404
190 render_404
177 end
191 end
178
192
179 def show_error
193 def show_error_not_found
180 flash.now[:error] = l(:notice_scm_error)
194 render_error l(:error_scm_not_found)
181 render :nothing => true, :layout => true
195 end
196
197 def show_error_command_failed(msg)
198 render_error l(:error_scm_command_failed, msg)
182 end
199 end
183
200
184 def graph_commits_per_month(repository)
201 def graph_commits_per_month(repository)
185 @date_to = Date.today
202 @date_to = Date.today
186 @date_from = @date_to << 11
203 @date_from = @date_to << 11
187 @date_from = Date.civil(@date_from.year, @date_from.month, 1)
204 @date_from = Date.civil(@date_from.year, @date_from.month, 1)
188 commits_by_day = repository.changesets.count(:all, :group => :commit_date, :conditions => ["commit_date BETWEEN ? AND ?", @date_from, @date_to])
205 commits_by_day = repository.changesets.count(:all, :group => :commit_date, :conditions => ["commit_date BETWEEN ? AND ?", @date_from, @date_to])
189 commits_by_month = [0] * 12
206 commits_by_month = [0] * 12
190 commits_by_day.each {|c| commits_by_month[c.first.to_date.months_ago] += c.last }
207 commits_by_day.each {|c| commits_by_month[c.first.to_date.months_ago] += c.last }
191
208
192 changes_by_day = repository.changes.count(:all, :group => :commit_date, :conditions => ["commit_date BETWEEN ? AND ?", @date_from, @date_to])
209 changes_by_day = repository.changes.count(:all, :group => :commit_date, :conditions => ["commit_date BETWEEN ? AND ?", @date_from, @date_to])
193 changes_by_month = [0] * 12
210 changes_by_month = [0] * 12
194 changes_by_day.each {|c| changes_by_month[c.first.to_date.months_ago] += c.last }
211 changes_by_day.each {|c| changes_by_month[c.first.to_date.months_ago] += c.last }
195
212
196 fields = []
213 fields = []
197 month_names = l(:actionview_datehelper_select_month_names_abbr).split(',')
214 month_names = l(:actionview_datehelper_select_month_names_abbr).split(',')
198 12.times {|m| fields << month_names[((Date.today.month - 1 - m) % 12)]}
215 12.times {|m| fields << month_names[((Date.today.month - 1 - m) % 12)]}
199
216
200 graph = SVG::Graph::Bar.new(
217 graph = SVG::Graph::Bar.new(
201 :height => 300,
218 :height => 300,
202 :width => 500,
219 :width => 500,
203 :fields => fields.reverse,
220 :fields => fields.reverse,
204 :stack => :side,
221 :stack => :side,
205 :scale_integers => true,
222 :scale_integers => true,
206 :step_x_labels => 2,
223 :step_x_labels => 2,
207 :show_data_values => false,
224 :show_data_values => false,
208 :graph_title => l(:label_commits_per_month),
225 :graph_title => l(:label_commits_per_month),
209 :show_graph_title => true
226 :show_graph_title => true
210 )
227 )
211
228
212 graph.add_data(
229 graph.add_data(
213 :data => commits_by_month[0..11].reverse,
230 :data => commits_by_month[0..11].reverse,
214 :title => l(:label_revision_plural)
231 :title => l(:label_revision_plural)
215 )
232 )
216
233
217 graph.add_data(
234 graph.add_data(
218 :data => changes_by_month[0..11].reverse,
235 :data => changes_by_month[0..11].reverse,
219 :title => l(:label_change_plural)
236 :title => l(:label_change_plural)
220 )
237 )
221
238
222 graph.burn
239 graph.burn
223 end
240 end
224
241
225 def graph_commits_per_author(repository)
242 def graph_commits_per_author(repository)
226 commits_by_author = repository.changesets.count(:all, :group => :committer)
243 commits_by_author = repository.changesets.count(:all, :group => :committer)
227 commits_by_author.sort! {|x, y| x.last <=> y.last}
244 commits_by_author.sort! {|x, y| x.last <=> y.last}
228
245
229 changes_by_author = repository.changes.count(:all, :group => :committer)
246 changes_by_author = repository.changes.count(:all, :group => :committer)
230 h = changes_by_author.inject({}) {|o, i| o[i.first] = i.last; o}
247 h = changes_by_author.inject({}) {|o, i| o[i.first] = i.last; o}
231
248
232 fields = commits_by_author.collect {|r| r.first}
249 fields = commits_by_author.collect {|r| r.first}
233 commits_data = commits_by_author.collect {|r| r.last}
250 commits_data = commits_by_author.collect {|r| r.last}
234 changes_data = commits_by_author.collect {|r| h[r.first] || 0}
251 changes_data = commits_by_author.collect {|r| h[r.first] || 0}
235
252
236 fields = fields + [""]*(10 - fields.length) if fields.length<10
253 fields = fields + [""]*(10 - fields.length) if fields.length<10
237 commits_data = commits_data + [0]*(10 - commits_data.length) if commits_data.length<10
254 commits_data = commits_data + [0]*(10 - commits_data.length) if commits_data.length<10
238 changes_data = changes_data + [0]*(10 - changes_data.length) if changes_data.length<10
255 changes_data = changes_data + [0]*(10 - changes_data.length) if changes_data.length<10
239
256
240 graph = SVG::Graph::BarHorizontal.new(
257 graph = SVG::Graph::BarHorizontal.new(
241 :height => 300,
258 :height => 300,
242 :width => 500,
259 :width => 500,
243 :fields => fields,
260 :fields => fields,
244 :stack => :side,
261 :stack => :side,
245 :scale_integers => true,
262 :scale_integers => true,
246 :show_data_values => false,
263 :show_data_values => false,
247 :rotate_y_labels => false,
264 :rotate_y_labels => false,
248 :graph_title => l(:label_commits_per_author),
265 :graph_title => l(:label_commits_per_author),
249 :show_graph_title => true
266 :show_graph_title => true
250 )
267 )
251
268
252 graph.add_data(
269 graph.add_data(
253 :data => commits_data,
270 :data => commits_data,
254 :title => l(:label_revision_plural)
271 :title => l(:label_revision_plural)
255 )
272 )
256
273
257 graph.add_data(
274 graph.add_data(
258 :data => changes_data,
275 :data => changes_data,
259 :title => l(:label_change_plural)
276 :title => l(:label_change_plural)
260 )
277 )
261
278
262 graph.burn
279 graph.burn
263 end
280 end
264
281
265 end
282 end
266
283
267 class Date
284 class Date
268 def months_ago(date = Date.today)
285 def months_ago(date = Date.today)
269 (date.year - self.year)*12 + (date.month - self.month)
286 (date.year - self.year)*12 + (date.month - self.month)
270 end
287 end
271
288
272 def weeks_ago(date = Date.today)
289 def weeks_ago(date = Date.today)
273 (date.year - self.year)*52 + (date.cweek - self.cweek)
290 (date.year - self.year)*52 + (date.cweek - self.cweek)
274 end
291 end
275 end
292 end
276
293
277 class String
294 class String
278 def with_leading_slash
295 def with_leading_slash
279 starts_with?('/') ? self : "/#{self}"
296 starts_with?('/') ? self : "/#{self}"
280 end
297 end
281 end
298 end
@@ -1,565 +1,567
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: cp1251
51 general_csv_encoding: cp1251
52 general_pdf_encoding: cp1251
52 general_pdf_encoding: cp1251
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: Непознат потребител.
61 notice_account_unknown_email: Непознат потребител.
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_scm_error: Несъществуващ обект в склада.
72 notice_not_authorized: Нямате право на достъп до тази страница.
71 notice_not_authorized: Нямате право на достъп до тази страница.
73 notice_email_sent: Изпратен e-mail на %s
72 notice_email_sent: Изпратен e-mail на %s
74 notice_email_error: Грешка при изпращане на e-mail (%s)
73 notice_email_error: Грешка при изпращане на e-mail (%s)
75 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
74 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
76
75
76 error_scm_not_found: Несъществуващ обект в склада.
77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78
77 mail_subject_lost_password: Вашата парола
79 mail_subject_lost_password: Вашата парола
78 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
80 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
79 mail_subject_register: Активация на акаунт
81 mail_subject_register: Активация на акаунт
80 mail_body_register: 'За да активирате акаунта си използвайте следния линк:'
82 mail_body_register: 'За да активирате акаунта си използвайте следния линк:'
81
83
82 gui_validation_error: 1 грешка
84 gui_validation_error: 1 грешка
83 gui_validation_error_plural: %d грешки
85 gui_validation_error_plural: %d грешки
84
86
85 field_name: Име
87 field_name: Име
86 field_description: Описание
88 field_description: Описание
87 field_summary: Групиран изглед
89 field_summary: Групиран изглед
88 field_is_required: Задължително
90 field_is_required: Задължително
89 field_firstname: Име
91 field_firstname: Име
90 field_lastname: Фамилия
92 field_lastname: Фамилия
91 field_mail: Email
93 field_mail: Email
92 field_filename: Файл
94 field_filename: Файл
93 field_filesize: Големина
95 field_filesize: Големина
94 field_downloads: Downloads
96 field_downloads: Downloads
95 field_author: Автор
97 field_author: Автор
96 field_created_on: Създадена
98 field_created_on: Създадена
97 field_updated_on: Обновена
99 field_updated_on: Обновена
98 field_field_format: Формат
100 field_field_format: Формат
99 field_is_for_all: За всички проекти
101 field_is_for_all: За всички проекти
100 field_possible_values: Възможни стойности
102 field_possible_values: Възможни стойности
101 field_regexp: Регулярен израз
103 field_regexp: Регулярен израз
102 field_min_length: Мин. дължина
104 field_min_length: Мин. дължина
103 field_max_length: Макс. дължина
105 field_max_length: Макс. дължина
104 field_value: Стойност
106 field_value: Стойност
105 field_category: Категория
107 field_category: Категория
106 field_title: Заглавие
108 field_title: Заглавие
107 field_project: Проект
109 field_project: Проект
108 field_issue: Задача
110 field_issue: Задача
109 field_status: Статус
111 field_status: Статус
110 field_notes: Бележка
112 field_notes: Бележка
111 field_is_closed: Затворена задача
113 field_is_closed: Затворена задача
112 field_is_default: Статус по подразбиране
114 field_is_default: Статус по подразбиране
113 field_tracker: Тракер
115 field_tracker: Тракер
114 field_subject: Тема
116 field_subject: Тема
115 field_due_date: Крайна дата
117 field_due_date: Крайна дата
116 field_assigned_to: Възложена на
118 field_assigned_to: Възложена на
117 field_priority: Приоритет
119 field_priority: Приоритет
118 field_fixed_version: Версия
120 field_fixed_version: Версия
119 field_user: Потребител
121 field_user: Потребител
120 field_role: Роля
122 field_role: Роля
121 field_homepage: Начална страница
123 field_homepage: Начална страница
122 field_is_public: Публичен
124 field_is_public: Публичен
123 field_parent: Подпроект на
125 field_parent: Подпроект на
124 field_is_in_chlog: Да се вижда ли в Изменения
126 field_is_in_chlog: Да се вижда ли в Изменения
125 field_is_in_roadmap: Да се вижда ли в Пътна карта
127 field_is_in_roadmap: Да се вижда ли в Пътна карта
126 field_login: Потребител
128 field_login: Потребител
127 field_mail_notification: Известия по пощата
129 field_mail_notification: Известия по пощата
128 field_admin: Администратор
130 field_admin: Администратор
129 field_last_login_on: Последно свързване
131 field_last_login_on: Последно свързване
130 field_language: Език
132 field_language: Език
131 field_effective_date: Дата
133 field_effective_date: Дата
132 field_password: Парола
134 field_password: Парола
133 field_new_password: Нова парола
135 field_new_password: Нова парола
134 field_password_confirmation: Потвърждение
136 field_password_confirmation: Потвърждение
135 field_version: Версия
137 field_version: Версия
136 field_type: Тип
138 field_type: Тип
137 field_host: Хост
139 field_host: Хост
138 field_port: Порт
140 field_port: Порт
139 field_account: Акаунт
141 field_account: Акаунт
140 field_base_dn: Base DN
142 field_base_dn: Base DN
141 field_attr_login: Login attribute
143 field_attr_login: Login attribute
142 field_attr_firstname: Firstname attribute
144 field_attr_firstname: Firstname attribute
143 field_attr_lastname: Lastname attribute
145 field_attr_lastname: Lastname attribute
144 field_attr_mail: Email attribute
146 field_attr_mail: Email attribute
145 field_onthefly: Динамично създаване на потребител
147 field_onthefly: Динамично създаване на потребител
146 field_start_date: Начална дата
148 field_start_date: Начална дата
147 field_done_ratio: %% Прогрес
149 field_done_ratio: %% Прогрес
148 field_auth_source: Начин на оторизация
150 field_auth_source: Начин на оторизация
149 field_hide_mail: Скрий e-mail адреса ми
151 field_hide_mail: Скрий e-mail адреса ми
150 field_comments: Коментар
152 field_comments: Коментар
151 field_url: Адрес
153 field_url: Адрес
152 field_start_page: Начална страница
154 field_start_page: Начална страница
153 field_subproject: Подпроект
155 field_subproject: Подпроект
154 field_hours: Часове
156 field_hours: Часове
155 field_activity: Дейност
157 field_activity: Дейност
156 field_spent_on: Дата
158 field_spent_on: Дата
157 field_identifier: Идентификатор
159 field_identifier: Идентификатор
158 field_is_filter: Използва се за филтър
160 field_is_filter: Използва се за филтър
159 field_issue_to_id: Свързана задача
161 field_issue_to_id: Свързана задача
160 field_delay: Отместване
162 field_delay: Отместване
161 field_assignable: Възможно е възлагане на задачи за тази роля
163 field_assignable: Възможно е възлагане на задачи за тази роля
162 field_redirect_existing_links: Пренасочване на съществуващи линкове
164 field_redirect_existing_links: Пренасочване на съществуващи линкове
163 field_estimated_hours: Изчислено време
165 field_estimated_hours: Изчислено време
164 field_default_value: Статус по подразбиране
166 field_default_value: Статус по подразбиране
165
167
166 setting_app_title: Заглавие
168 setting_app_title: Заглавие
167 setting_app_subtitle: Описание
169 setting_app_subtitle: Описание
168 setting_welcome_text: Допълнителен текст
170 setting_welcome_text: Допълнителен текст
169 setting_default_language: Език по подразбиране
171 setting_default_language: Език по подразбиране
170 setting_login_required: Изискване за вход в системата
172 setting_login_required: Изискване за вход в системата
171 setting_self_registration: Регистрация от потребители
173 setting_self_registration: Регистрация от потребители
172 setting_attachment_max_size: Максимално голям приложен файл
174 setting_attachment_max_size: Максимално голям приложен файл
173 setting_issues_export_limit: Лимит за експорт на задачи
175 setting_issues_export_limit: Лимит за експорт на задачи
174 setting_mail_from: E-mail адрес за емисии
176 setting_mail_from: E-mail адрес за емисии
175 setting_host_name: Хост
177 setting_host_name: Хост
176 setting_text_formatting: Форматиране на текста
178 setting_text_formatting: Форматиране на текста
177 setting_wiki_compression: Wiki компресиране на историята
179 setting_wiki_compression: Wiki компресиране на историята
178 setting_feeds_limit: Лимит на Feeds
180 setting_feeds_limit: Лимит на Feeds
179 setting_autofetch_changesets: Автоматично обработване на commits в склада
181 setting_autofetch_changesets: Автоматично обработване на commits в склада
180 setting_sys_api_enabled: Разрешаване на WS за управление на склада
182 setting_sys_api_enabled: Разрешаване на WS за управление на склада
181 setting_commit_ref_keywords: Отбелязващи ключови думи
183 setting_commit_ref_keywords: Отбелязващи ключови думи
182 setting_commit_fix_keywords: Приключващи ключови думи
184 setting_commit_fix_keywords: Приключващи ключови думи
183 setting_autologin: Автоматичен вход
185 setting_autologin: Автоматичен вход
184 setting_date_format: Формат на датата
186 setting_date_format: Формат на датата
185 setting_cross_project_issue_relations: Релации на задачи между проекти
187 setting_cross_project_issue_relations: Релации на задачи между проекти
186
188
187 label_user: Потребител
189 label_user: Потребител
188 label_user_plural: Потребители
190 label_user_plural: Потребители
189 label_user_new: Нов потребител
191 label_user_new: Нов потребител
190 label_project: Проект
192 label_project: Проект
191 label_project_new: Нов проект
193 label_project_new: Нов проект
192 label_project_plural: Проекти
194 label_project_plural: Проекти
193 label_project_all: Всички проекти
195 label_project_all: Всички проекти
194 label_project_latest: Последни проекти
196 label_project_latest: Последни проекти
195 label_issue: Задача
197 label_issue: Задача
196 label_issue_new: Нова задача
198 label_issue_new: Нова задача
197 label_issue_plural: Задачи
199 label_issue_plural: Задачи
198 label_issue_view_all: Всички задачи
200 label_issue_view_all: Всички задачи
199 label_document: Документ
201 label_document: Документ
200 label_document_new: Нов документ
202 label_document_new: Нов документ
201 label_document_plural: Документи
203 label_document_plural: Документи
202 label_role: Роля
204 label_role: Роля
203 label_role_plural: Роли
205 label_role_plural: Роли
204 label_role_new: Нова роля
206 label_role_new: Нова роля
205 label_role_and_permissions: Роли и права
207 label_role_and_permissions: Роли и права
206 label_member: Член
208 label_member: Член
207 label_member_new: Нов член
209 label_member_new: Нов член
208 label_member_plural: Членове
210 label_member_plural: Членове
209 label_tracker: Тракер
211 label_tracker: Тракер
210 label_tracker_plural: Тракери
212 label_tracker_plural: Тракери
211 label_tracker_new: Нов тракер
213 label_tracker_new: Нов тракер
212 label_workflow: Работен процес
214 label_workflow: Работен процес
213 label_issue_status: Статус на задача
215 label_issue_status: Статус на задача
214 label_issue_status_plural: Статуси на задачи
216 label_issue_status_plural: Статуси на задачи
215 label_issue_status_new: Нов статус
217 label_issue_status_new: Нов статус
216 label_issue_category: Категория задача
218 label_issue_category: Категория задача
217 label_issue_category_plural: Категории задачи
219 label_issue_category_plural: Категории задачи
218 label_issue_category_new: Нова категория
220 label_issue_category_new: Нова категория
219 label_custom_field: Потребителско поле
221 label_custom_field: Потребителско поле
220 label_custom_field_plural: Потребителски полета
222 label_custom_field_plural: Потребителски полета
221 label_custom_field_new: Ново потребителско поле
223 label_custom_field_new: Ново потребителско поле
222 label_enumerations: Списъци
224 label_enumerations: Списъци
223 label_enumeration_new: Нова стойност
225 label_enumeration_new: Нова стойност
224 label_information: Информация
226 label_information: Информация
225 label_information_plural: Информация
227 label_information_plural: Информация
226 label_please_login: Вход
228 label_please_login: Вход
227 label_register: Регистрация
229 label_register: Регистрация
228 label_password_lost: Забравена парола
230 label_password_lost: Забравена парола
229 label_home: Начало
231 label_home: Начало
230 label_my_page: Лична страница
232 label_my_page: Лична страница
231 label_my_account: Профил
233 label_my_account: Профил
232 label_my_projects: Моите проекти
234 label_my_projects: Моите проекти
233 label_administration: Администрация
235 label_administration: Администрация
234 label_login: Вход
236 label_login: Вход
235 label_logout: Изход
237 label_logout: Изход
236 label_help: Помощ
238 label_help: Помощ
237 label_reported_issues: Публикувани задачи
239 label_reported_issues: Публикувани задачи
238 label_assigned_to_me_issues: Възложени на мен
240 label_assigned_to_me_issues: Възложени на мен
239 label_last_login: Последно свързване
241 label_last_login: Последно свързване
240 label_last_updates: Последно обновена
242 label_last_updates: Последно обновена
241 label_last_updates_plural: %d последно обновени
243 label_last_updates_plural: %d последно обновени
242 label_registered_on: Регистрация
244 label_registered_on: Регистрация
243 label_activity: Дейност
245 label_activity: Дейност
244 label_new: Нов
246 label_new: Нов
245 label_logged_as: Логнат като
247 label_logged_as: Логнат като
246 label_environment: Среда
248 label_environment: Среда
247 label_authentication: Оторизация
249 label_authentication: Оторизация
248 label_auth_source: Начин на оторозация
250 label_auth_source: Начин на оторозация
249 label_auth_source_new: Нов начин на оторизация
251 label_auth_source_new: Нов начин на оторизация
250 label_auth_source_plural: Начини на оторизация
252 label_auth_source_plural: Начини на оторизация
251 label_subproject_plural: Подпроекти
253 label_subproject_plural: Подпроекти
252 label_min_max_length: Мин. - Макс. дължина
254 label_min_max_length: Мин. - Макс. дължина
253 label_list: Списък
255 label_list: Списък
254 label_date: Дата
256 label_date: Дата
255 label_integer: Число
257 label_integer: Число
256 label_boolean: Чекбокс
258 label_boolean: Чекбокс
257 label_string: Текст
259 label_string: Текст
258 label_text: Дълъг текст
260 label_text: Дълъг текст
259 label_attribute: Атрибут
261 label_attribute: Атрибут
260 label_attribute_plural: Атрибути
262 label_attribute_plural: Атрибути
261 label_download: %d Download
263 label_download: %d Download
262 label_download_plural: %d Downloads
264 label_download_plural: %d Downloads
263 label_no_data: Няма изходни данни
265 label_no_data: Няма изходни данни
264 label_change_status: Промяна на статуса
266 label_change_status: Промяна на статуса
265 label_history: История
267 label_history: История
266 label_attachment: Файл
268 label_attachment: Файл
267 label_attachment_new: Нов файл
269 label_attachment_new: Нов файл
268 label_attachment_delete: Изтриване
270 label_attachment_delete: Изтриване
269 label_attachment_plural: Файлове
271 label_attachment_plural: Файлове
270 label_report: Справка
272 label_report: Справка
271 label_report_plural: Справки
273 label_report_plural: Справки
272 label_news: Новини
274 label_news: Новини
273 label_news_new: Добави
275 label_news_new: Добави
274 label_news_plural: Новини
276 label_news_plural: Новини
275 label_news_latest: Последни новини
277 label_news_latest: Последни новини
276 label_news_view_all: Виж всички
278 label_news_view_all: Виж всички
277 label_change_log: Изменения
279 label_change_log: Изменения
278 label_settings: Настройки
280 label_settings: Настройки
279 label_overview: Общ изглед
281 label_overview: Общ изглед
280 label_version: Версия
282 label_version: Версия
281 label_version_new: Нова версия
283 label_version_new: Нова версия
282 label_version_plural: Версии
284 label_version_plural: Версии
283 label_confirmation: Одобрение
285 label_confirmation: Одобрение
284 label_export_to: Експорт към
286 label_export_to: Експорт към
285 label_read: Read...
287 label_read: Read...
286 label_public_projects: Публични проекти
288 label_public_projects: Публични проекти
287 label_open_issues: отворена
289 label_open_issues: отворена
288 label_open_issues_plural: отворени
290 label_open_issues_plural: отворени
289 label_closed_issues: затворена
291 label_closed_issues: затворена
290 label_closed_issues_plural: затворени
292 label_closed_issues_plural: затворени
291 label_total: Общо
293 label_total: Общо
292 label_permissions: Права
294 label_permissions: Права
293 label_current_status: Текущ статус
295 label_current_status: Текущ статус
294 label_new_statuses_allowed: Позволени статуси
296 label_new_statuses_allowed: Позволени статуси
295 label_all: всички
297 label_all: всички
296 label_none: никакви
298 label_none: никакви
297 label_next: Следващ
299 label_next: Следващ
298 label_previous: Предишен
300 label_previous: Предишен
299 label_used_by: Използва се от
301 label_used_by: Използва се от
300 label_details: Детайли
302 label_details: Детайли
301 label_add_note: Добавяне на бележка
303 label_add_note: Добавяне на бележка
302 label_per_page: На страница
304 label_per_page: На страница
303 label_calendar: Календар
305 label_calendar: Календар
304 label_months_from: месеца от
306 label_months_from: месеца от
305 label_gantt: Gantt
307 label_gantt: Gantt
306 label_internal: Вътрешен
308 label_internal: Вътрешен
307 label_last_changes: последни %d промени
309 label_last_changes: последни %d промени
308 label_change_view_all: Виж всички промени
310 label_change_view_all: Виж всички промени
309 label_personalize_page: Персонализиране
311 label_personalize_page: Персонализиране
310 label_comment: Коментар
312 label_comment: Коментар
311 label_comment_plural: Коментари
313 label_comment_plural: Коментари
312 label_comment_add: Добавяне на коментар
314 label_comment_add: Добавяне на коментар
313 label_comment_added: Добавен коментар
315 label_comment_added: Добавен коментар
314 label_comment_delete: Изтриване на коментари
316 label_comment_delete: Изтриване на коментари
315 label_query: Потребителска справка
317 label_query: Потребителска справка
316 label_query_plural: Потребителски справки
318 label_query_plural: Потребителски справки
317 label_query_new: Нова заявка
319 label_query_new: Нова заявка
318 label_filter_add: Добави филтър
320 label_filter_add: Добави филтър
319 label_filter_plural: Филтри
321 label_filter_plural: Филтри
320 label_equals: е
322 label_equals: е
321 label_not_equals: не е
323 label_not_equals: не е
322 label_in_less_than: след по-малко от
324 label_in_less_than: след по-малко от
323 label_in_more_than: след повече от
325 label_in_more_than: след повече от
324 label_in: в следващите
326 label_in: в следващите
325 label_today: днес
327 label_today: днес
326 label_this_week: тази седмица
328 label_this_week: тази седмица
327 label_less_than_ago: преди по-малко от
329 label_less_than_ago: преди по-малко от
328 label_more_than_ago: преди повече от
330 label_more_than_ago: преди повече от
329 label_ago: преди
331 label_ago: преди
330 label_contains: съдържа
332 label_contains: съдържа
331 label_not_contains: не съдържа
333 label_not_contains: не съдържа
332 label_day_plural: дни
334 label_day_plural: дни
333 label_repository: Склад
335 label_repository: Склад
334 label_browse: Разглеждане
336 label_browse: Разглеждане
335 label_modification: %d промяна
337 label_modification: %d промяна
336 label_modification_plural: %d промени
338 label_modification_plural: %d промени
337 label_revision: Ревизия
339 label_revision: Ревизия
338 label_revision_plural: Ревизии
340 label_revision_plural: Ревизии
339 label_added: добавено
341 label_added: добавено
340 label_modified: променено
342 label_modified: променено
341 label_deleted: изтрито
343 label_deleted: изтрито
342 label_latest_revision: Последна ревизия
344 label_latest_revision: Последна ревизия
343 label_latest_revision_plural: Последни ревизии
345 label_latest_revision_plural: Последни ревизии
344 label_view_revisions: Виж ревизиите
346 label_view_revisions: Виж ревизиите
345 label_max_size: Максимална големина
347 label_max_size: Максимална големина
346 label_on: 'от'
348 label_on: 'от'
347 label_sort_highest: Премести най-горе
349 label_sort_highest: Премести най-горе
348 label_sort_higher: Премести по-горе
350 label_sort_higher: Премести по-горе
349 label_sort_lower: Премести по-долу
351 label_sort_lower: Премести по-долу
350 label_sort_lowest: Премести най-долу
352 label_sort_lowest: Премести най-долу
351 label_roadmap: Пътна карта
353 label_roadmap: Пътна карта
352 label_roadmap_due_in: Излиза след
354 label_roadmap_due_in: Излиза след
353 label_roadmap_overdue: %s закъснение
355 label_roadmap_overdue: %s закъснение
354 label_roadmap_no_issues: Няма задачи за тази версия
356 label_roadmap_no_issues: Няма задачи за тази версия
355 label_search: Търсене
357 label_search: Търсене
356 label_result_plural: Pезултати
358 label_result_plural: Pезултати
357 label_all_words: Всички думи
359 label_all_words: Всички думи
358 label_wiki: Wiki
360 label_wiki: Wiki
359 label_wiki_edit: Wiki редакция
361 label_wiki_edit: Wiki редакция
360 label_wiki_edit_plural: Wiki редакции
362 label_wiki_edit_plural: Wiki редакции
361 label_wiki_page: Wiki page
363 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
364 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Индекс
365 label_index_by_title: Индекс
364 label_index_by_date: Индекс по дата
366 label_index_by_date: Индекс по дата
365 label_current_version: Текуща версия
367 label_current_version: Текуща версия
366 label_preview: Преглед
368 label_preview: Преглед
367 label_feed_plural: Feeds
369 label_feed_plural: Feeds
368 label_changes_details: Подробни промени
370 label_changes_details: Подробни промени
369 label_issue_tracking: Тракинг
371 label_issue_tracking: Тракинг
370 label_spent_time: Отделено време
372 label_spent_time: Отделено време
371 label_f_hour: %.2f час
373 label_f_hour: %.2f час
372 label_f_hour_plural: %.2f часа
374 label_f_hour_plural: %.2f часа
373 label_time_tracking: Отделяне на време
375 label_time_tracking: Отделяне на време
374 label_change_plural: Промени
376 label_change_plural: Промени
375 label_statistics: Статистики
377 label_statistics: Статистики
376 label_commits_per_month: Commits за месец
378 label_commits_per_month: Commits за месец
377 label_commits_per_author: Commits за автор
379 label_commits_per_author: Commits за автор
378 label_view_diff: Виж разликите
380 label_view_diff: Виж разликите
379 label_diff_inline: хоризонтално
381 label_diff_inline: хоризонтално
380 label_diff_side_by_side: вертикално
382 label_diff_side_by_side: вертикално
381 label_options: Опции
383 label_options: Опции
382 label_copy_workflow_from: Копирай работния процес от
384 label_copy_workflow_from: Копирай работния процес от
383 label_permissions_report: Справка за права
385 label_permissions_report: Справка за права
384 label_watched_issues: Наблюдавани задачи
386 label_watched_issues: Наблюдавани задачи
385 label_related_issues: Свързани задачи
387 label_related_issues: Свързани задачи
386 label_applied_status: Промени статуса на
388 label_applied_status: Промени статуса на
387 label_loading: Зареждане...
389 label_loading: Зареждане...
388 label_relation_new: Нова релация
390 label_relation_new: Нова релация
389 label_relation_delete: Изтриване на релация
391 label_relation_delete: Изтриване на релация
390 label_relates_to: Свързана със
392 label_relates_to: Свързана със
391 label_duplicates: дублира
393 label_duplicates: дублира
392 label_blocks: блокира
394 label_blocks: блокира
393 label_blocked_by: блокирана от
395 label_blocked_by: блокирана от
394 label_precedes: предшества
396 label_precedes: предшества
395 label_follows: изпълнява се след
397 label_follows: изпълнява се след
396 label_end_to_start: end to start
398 label_end_to_start: end to start
397 label_end_to_end: end to end
399 label_end_to_end: end to end
398 label_start_to_start: start to start
400 label_start_to_start: start to start
399 label_start_to_end: start to end
401 label_start_to_end: start to end
400 label_stay_logged_in: Запомни ме
402 label_stay_logged_in: Запомни ме
401 label_disabled: забранено
403 label_disabled: забранено
402 label_show_completed_versions: Показване на реализирани версии
404 label_show_completed_versions: Показване на реализирани версии
403 label_me: аз
405 label_me: аз
404 label_board: Форум
406 label_board: Форум
405 label_board_new: Нов форум
407 label_board_new: Нов форум
406 label_board_plural: Форуми
408 label_board_plural: Форуми
407 label_topic_plural: Теми
409 label_topic_plural: Теми
408 label_message_plural: Съобщения
410 label_message_plural: Съобщения
409 label_message_last: Последно съобщение
411 label_message_last: Последно съобщение
410 label_message_new: Нова тема
412 label_message_new: Нова тема
411 label_reply_plural: Отговори
413 label_reply_plural: Отговори
412 label_send_information: Изпращане на информацията до потребителя
414 label_send_information: Изпращане на информацията до потребителя
413 label_year: Година
415 label_year: Година
414 label_month: Месец
416 label_month: Месец
415 label_week: Седмица
417 label_week: Седмица
416 label_date_from: От
418 label_date_from: От
417 label_date_to: До
419 label_date_to: До
418 label_language_based: В зависимост от езика
420 label_language_based: В зависимост от езика
419 label_sort_by: Sort by %s
421 label_sort_by: Sort by %s
420 label_send_test_email: Изпращане на тестов e-mail
422 label_send_test_email: Изпращане на тестов e-mail
421 label_feeds_access_key_created_on: %s от създаването на RSS ключа
423 label_feeds_access_key_created_on: %s от създаването на RSS ключа
422 label_module_plural: Модули
424 label_module_plural: Модули
423 label_added_time_by: Публикувана от %s преди %s
425 label_added_time_by: Публикувана от %s преди %s
424 label_updated_time: Обновена преди %s
426 label_updated_time: Обновена преди %s
425 label_jump_to_a_project: Проект...
427 label_jump_to_a_project: Проект...
426
428
427 button_login: Вход
429 button_login: Вход
428 button_submit: Приложи
430 button_submit: Приложи
429 button_save: Запис
431 button_save: Запис
430 button_check_all: Маркирай всички
432 button_check_all: Маркирай всички
431 button_uncheck_all: Изчисти всички
433 button_uncheck_all: Изчисти всички
432 button_delete: Изтриване
434 button_delete: Изтриване
433 button_create: Създаване
435 button_create: Създаване
434 button_test: Тест
436 button_test: Тест
435 button_edit: Редакция
437 button_edit: Редакция
436 button_add: Добавяне
438 button_add: Добавяне
437 button_change: Промяна
439 button_change: Промяна
438 button_apply: Приложи
440 button_apply: Приложи
439 button_clear: Изчисти
441 button_clear: Изчисти
440 button_lock: Заключване
442 button_lock: Заключване
441 button_unlock: Отключване
443 button_unlock: Отключване
442 button_download: Download
444 button_download: Download
443 button_list: Списък
445 button_list: Списък
444 button_view: Преглед
446 button_view: Преглед
445 button_move: Преместване
447 button_move: Преместване
446 button_back: Назад
448 button_back: Назад
447 button_cancel: Отказ
449 button_cancel: Отказ
448 button_activate: Активация
450 button_activate: Активация
449 button_sort: Сортиране
451 button_sort: Сортиране
450 button_log_time: Отделяне на време
452 button_log_time: Отделяне на време
451 button_rollback: Върни се към тази ревизия
453 button_rollback: Върни се към тази ревизия
452 button_watch: Наблюдавай
454 button_watch: Наблюдавай
453 button_unwatch: Спри наблюдението
455 button_unwatch: Спри наблюдението
454 button_reply: Отговор
456 button_reply: Отговор
455 button_archive: Архивиране
457 button_archive: Архивиране
456 button_unarchive: Разархивиране
458 button_unarchive: Разархивиране
457 button_reset: Генериране наново
459 button_reset: Генериране наново
458 button_rename: Преименуване
460 button_rename: Преименуване
459
461
460 status_active: активен
462 status_active: активен
461 status_registered: регистриран
463 status_registered: регистриран
462 status_locked: заключен
464 status_locked: заключен
463
465
464 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
466 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
465 text_regexp_info: пр. ^[A-Z0-9]+$
467 text_regexp_info: пр. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 - без ограничения
468 text_min_max_length_info: 0 - без ограничения
467 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
469 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
468 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
470 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
469 text_are_you_sure: Сигурни ли сте?
471 text_are_you_sure: Сигурни ли сте?
470 text_journal_changed: промяна от %s на %s
472 text_journal_changed: промяна от %s на %s
471 text_journal_set_to: установено на %s
473 text_journal_set_to: установено на %s
472 text_journal_deleted: изтрито
474 text_journal_deleted: изтрито
473 text_tip_task_begin_day: задача започваща този ден
475 text_tip_task_begin_day: задача започваща този ден
474 text_tip_task_end_day: задача завършваща този ден
476 text_tip_task_end_day: задача завършваща този ден
475 text_tip_task_begin_end_day: задача започваща и завършваща този ден
477 text_tip_task_begin_end_day: задача започваща и завършваща този ден
476 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
478 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
477 text_caracters_maximum: До %d символа.
479 text_caracters_maximum: До %d символа.
478 text_length_between: От %d до %d символа.
480 text_length_between: От %d до %d символа.
479 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
481 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
480 text_unallowed_characters: Непозволени символи
482 text_unallowed_characters: Непозволени символи
481 text_comma_separated: Позволено е изброяване (с разделител запетая).
483 text_comma_separated: Позволено е изброяване (с разделител запетая).
482 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
484 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
483 text_issue_added: Публикувана е нова задача с номер %s.
485 text_issue_added: Публикувана е нова задача с номер %s.
484 text_issue_updated: Задача %s е обновена.
486 text_issue_updated: Задача %s е обновена.
485 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
487 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
486 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
488 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
487 text_issue_category_destroy_assignments: Премахване на връзките с категорията
489 text_issue_category_destroy_assignments: Премахване на връзките с категорията
488 text_issue_category_reassign_to: Преобвързване с категория
490 text_issue_category_reassign_to: Преобвързване с категория
489
491
490 default_role_manager: Мениджър
492 default_role_manager: Мениджър
491 default_role_developper: Разработчик
493 default_role_developper: Разработчик
492 default_role_reporter: Публикуващ
494 default_role_reporter: Публикуващ
493 default_tracker_bug: Бъг
495 default_tracker_bug: Бъг
494 default_tracker_feature: Функционалност
496 default_tracker_feature: Функционалност
495 default_tracker_support: Поддръжка
497 default_tracker_support: Поддръжка
496 default_issue_status_new: Нова
498 default_issue_status_new: Нова
497 default_issue_status_assigned: Възложена
499 default_issue_status_assigned: Възложена
498 default_issue_status_resolved: Приключена
500 default_issue_status_resolved: Приключена
499 default_issue_status_feedback: Обратна връзка
501 default_issue_status_feedback: Обратна връзка
500 default_issue_status_closed: Затворена
502 default_issue_status_closed: Затворена
501 default_issue_status_rejected: Отхвърлена
503 default_issue_status_rejected: Отхвърлена
502 default_doc_category_user: Документация за потребителя
504 default_doc_category_user: Документация за потребителя
503 default_doc_category_tech: Техническа документация
505 default_doc_category_tech: Техническа документация
504 default_priority_low: Нисък
506 default_priority_low: Нисък
505 default_priority_normal: Нормален
507 default_priority_normal: Нормален
506 default_priority_high: Висок
508 default_priority_high: Висок
507 default_priority_urgent: Спешен
509 default_priority_urgent: Спешен
508 default_priority_immediate: Веднага
510 default_priority_immediate: Веднага
509 default_activity_design: Дизайн
511 default_activity_design: Дизайн
510 default_activity_development: Разработка
512 default_activity_development: Разработка
511
513
512 enumeration_issue_priorities: Приоритети на задачи
514 enumeration_issue_priorities: Приоритети на задачи
513 enumeration_doc_categories: Категории документи
515 enumeration_doc_categories: Категории документи
514 enumeration_activities: Дейности (time tracking)
516 enumeration_activities: Дейности (time tracking)
515 label_file_plural: Files
517 label_file_plural: Files
516 label_changeset_plural: Changesets
518 label_changeset_plural: Changesets
517 field_column_names: Колони
519 field_column_names: Колони
518 label_default_columns: По подразбиране
520 label_default_columns: По подразбиране
519 setting_issue_list_default_columns: Показвани колони по подразбиране
521 setting_issue_list_default_columns: Показвани колони по подразбиране
520 setting_repositories_encodings: Encodings на складовете
522 setting_repositories_encodings: Encodings на складовете
521 notice_no_issue_selected: "Няма избрани задачи."
523 notice_no_issue_selected: "Няма избрани задачи."
522 label_bulk_edit_selected_issues: Редактиране на задачи
524 label_bulk_edit_selected_issues: Редактиране на задачи
523 label_no_change_option: (Без промяна)
525 label_no_change_option: (Без промяна)
524 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
526 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
525 label_theme: Тема
527 label_theme: Тема
526 label_default: По подразбиране
528 label_default: По подразбиране
527 label_search_titles_only: Само в заглавията
529 label_search_titles_only: Само в заглавията
528 label_nobody: nobody
530 label_nobody: nobody
529 button_change_password: Change password
531 button_change_password: Change password
530 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)."
531 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..."
532 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"
533 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"
534 setting_emails_footer: Emails footer
536 setting_emails_footer: Emails footer
535 label_float: Float
537 label_float: Float
536 button_copy: Copy
538 button_copy: Copy
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
538 mail_body_account_information: Your Redmine account information
540 mail_body_account_information: Your Redmine account information
539 setting_protocol: Protocol
541 setting_protocol: Protocol
540 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"
541 setting_time_format: Time format
543 setting_time_format: Time format
542 label_registration_activation_by_email: account activation by email
544 label_registration_activation_by_email: account activation by email
543 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: Redmine account activation request
544 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:'
545 label_registration_automatic_activation: automatic account activation
547 label_registration_automatic_activation: automatic account activation
546 label_registration_manual_activation: manual account activation
548 label_registration_manual_activation: manual account activation
547 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."
548 field_time_zone: Time zone
550 field_time_zone: Time zone
549 text_caracters_minimum: Must be at least %d characters long.
551 text_caracters_minimum: Must be at least %d characters long.
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 button_annotate: Annotate
553 button_annotate: Annotate
552 label_issues_by: Issues by %s
554 label_issues_by: Issues by %s
553 field_searchable: Searchable
555 field_searchable: Searchable
554 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
556 label_age: Age
558 label_age: Age
557 notice_default_data_loaded: Default configuration successfully loaded.
559 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
560 text_load_default_configuration: Load the default configuration
559 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."
560 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"
561 button_update: Update
563 button_update: Update
562 label_change_properties: Change properties
564 label_change_properties: Change properties
563 label_general: General
565 label_general: General
564 label_repository_plural: Repositories
566 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
@@ -1,565 +1,567
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: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
4 actionview_datehelper_select_month_names: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
5 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
5 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
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 den
8 actionview_datehelper_time_in_words_day: 1 den
9 actionview_datehelper_time_in_words_day_plural: %d dny
9 actionview_datehelper_time_in_words_day_plural: %d dny
10 actionview_datehelper_time_in_words_hour_about: asi hodinu
10 actionview_datehelper_time_in_words_hour_about: asi hodinu
11 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodin
11 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodin
12 actionview_datehelper_time_in_words_hour_about_single: asi hodinu
12 actionview_datehelper_time_in_words_hour_about_single: asi hodinu
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ůl minuty
14 actionview_datehelper_time_in_words_minute_half: půl minuty
15 actionview_datehelper_time_in_words_minute_less_than: méně než minutu
15 actionview_datehelper_time_in_words_minute_less_than: méně než minutu
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: méně než sekunda
18 actionview_datehelper_time_in_words_second_less_than: méně než sekunda
19 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekund
20 actionview_instancetag_blank_option: Prosím vyberte
20 actionview_instancetag_blank_option: Prosím vyberte
21
21
22 activerecord_error_inclusion: není zahrnuto v seznamu
22 activerecord_error_inclusion: není zahrnuto v seznamu
23 activerecord_error_exclusion: je rezervováno
23 activerecord_error_exclusion: je rezervováno
24 activerecord_error_invalid: je neplatné
24 activerecord_error_invalid: je neplatné
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: nemůže být prázdný
27 activerecord_error_empty: nemůže být prázdný
28 activerecord_error_blank: nemůže být prázdný
28 activerecord_error_blank: nemůže být prázdný
29 activerecord_error_too_long: je příliš dlouhý
29 activerecord_error_too_long: je příliš dlouhý
30 activerecord_error_too_short: je příliš krátký
30 activerecord_error_too_short: je příliš krátký
31 activerecord_error_wrong_length: má chybnou délku
31 activerecord_error_wrong_length: má chybnou délku
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: není číslo
33 activerecord_error_not_a_number: není číslo
34 activerecord_error_not_a_date: není platný datum
34 activerecord_error_not_a_date: není platný datum
35 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
35 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
36 activerecord_error_not_same_project: nepatří stejnému projektu
36 activerecord_error_not_same_project: nepatří stejnému projektu
37 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
37 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
38
38
39 general_fmt_age: %d rok
39 general_fmt_age: %d rok
40 general_fmt_age_plural: %d roků
40 general_fmt_age_plural: %d roků
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: 'Ne'
45 general_text_No: 'Ne'
46 general_text_Yes: 'Ano'
46 general_text_Yes: 'Ano'
47 general_text_no: 'ne'
47 general_text_no: 'ne'
48 general_text_yes: 'Ano'
48 general_text_yes: 'Ano'
49 general_lang_name: 'Čeština'
49 general_lang_name: 'Čeština'
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: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
53 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Účet byl úspěšně změněn.
56 notice_account_updated: Účet byl úspěšně změněn.
57 notice_account_invalid_creditentials: Chybné jméno nebo heslo
57 notice_account_invalid_creditentials: Chybné jméno nebo heslo
58 notice_account_password_updated: Heslo bylo úspěšně změněno.
58 notice_account_password_updated: Heslo bylo úspěšně změněno.
59 notice_account_wrong_password: Chybné heslo
59 notice_account_wrong_password: Chybné heslo
60 notice_account_register_done: Účet byl úspěšně vytvořen. Pro aktivaci účtu klikněte na odkaz v emailu, který vám byl zaslán.
60 notice_account_register_done: Účet byl úspěšně vytvořen. Pro aktivaci účtu klikněte na odkaz v emailu, který vám byl zaslán.
61 notice_account_unknown_email: Neznámý uživatel.
61 notice_account_unknown_email: Neznámý uživatel.
62 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
62 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
63 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
63 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
64 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
64 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
65 notice_successful_create: Úspěšné vytvoření.
65 notice_successful_create: Úspěšné vytvoření.
66 notice_successful_update: Úspěšná aktualizace.
66 notice_successful_update: Úspěšná aktualizace.
67 notice_successful_delete: Úspěšné smazání.
67 notice_successful_delete: Úspěšné smazání.
68 notice_successful_connection: Úspěšné připojení.
68 notice_successful_connection: Úspěšné připojení.
69 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
69 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
70 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
70 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
72 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
71 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
73 notice_email_sent: Na adresu %s byl odeslán email
72 notice_email_sent: Na adresu %s byl odeslán email
74 notice_email_error: Při odesílání emailu nastala chyba (%s)
73 notice_email_error: Při odesílání emailu nastala chyba (%s)
75 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
74 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
76
75
76 error_scm_not_found: "Entry and/or revision doesn't exist in the repository."
77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78
77 mail_subject_lost_password: Vaše heslo
79 mail_subject_lost_password: Vaše heslo
78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
80 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
79 mail_subject_register: aktivace účtu
81 mail_subject_register: aktivace účtu
80 mail_body_register: 'To activate your Redmine account, click on the following link:'
82 mail_body_register: 'To activate your Redmine account, click on the following link:'
81
83
82 gui_validation_error: 1 chyba
84 gui_validation_error: 1 chyba
83 gui_validation_error_plural: %d chyb(y)
85 gui_validation_error_plural: %d chyb(y)
84
86
85 field_name: Jméno
87 field_name: Jméno
86 field_description: Popis
88 field_description: Popis
87 field_summary: Shrnutí
89 field_summary: Shrnutí
88 field_is_required: Požadovaný
90 field_is_required: Požadovaný
89 field_firstname: Jméno
91 field_firstname: Jméno
90 field_lastname: Příjmení
92 field_lastname: Příjmení
91 field_mail: Email
93 field_mail: Email
92 field_filename: Soubor
94 field_filename: Soubor
93 field_filesize: Velikost
95 field_filesize: Velikost
94 field_downloads: Staženo
96 field_downloads: Staženo
95 field_author: Autor
97 field_author: Autor
96 field_created_on: Vytvořeno
98 field_created_on: Vytvořeno
97 field_updated_on: Aktualizováno
99 field_updated_on: Aktualizováno
98 field_field_format: Formát
100 field_field_format: Formát
99 field_is_for_all: Pro všechny projekty
101 field_is_for_all: Pro všechny projekty
100 field_possible_values: Možné hodnoty
102 field_possible_values: Možné hodnoty
101 field_regexp: Regulární výraz
103 field_regexp: Regulární výraz
102 field_min_length: Minimální délka
104 field_min_length: Minimální délka
103 field_max_length: Maximální délka
105 field_max_length: Maximální délka
104 field_value: Hodnota
106 field_value: Hodnota
105 field_category: Kategorie
107 field_category: Kategorie
106 field_title: Titulek
108 field_title: Titulek
107 field_project: Projekt
109 field_project: Projekt
108 field_issue: Požadavek
110 field_issue: Požadavek
109 field_status: Stav
111 field_status: Stav
110 field_notes: Poznámka
112 field_notes: Poznámka
111 field_is_closed: Požadavek uzavřen
113 field_is_closed: Požadavek uzavřen
112 field_is_default: Výchozí stav
114 field_is_default: Výchozí stav
113 field_tracker: Fronta
115 field_tracker: Fronta
114 field_subject: Předmět
116 field_subject: Předmět
115 field_due_date: Po lhůtě
117 field_due_date: Po lhůtě
116 field_assigned_to: Přiřazeno
118 field_assigned_to: Přiřazeno
117 field_priority: Priorita
119 field_priority: Priorita
118 field_fixed_version: Pevná verze
120 field_fixed_version: Pevná verze
119 field_user: Uživatel
121 field_user: Uživatel
120 field_role: Role
122 field_role: Role
121 field_homepage: Úvodní
123 field_homepage: Úvodní
122 field_is_public: Veřejný
124 field_is_public: Veřejný
123 field_parent: Podprojekt
125 field_parent: Podprojekt
124 field_is_in_chlog: Požadavky zobrazené v změnovém logu
126 field_is_in_chlog: Požadavky zobrazené v změnovém logu
125 field_is_in_roadmap: Požadavky zobrazené v roadmapě
127 field_is_in_roadmap: Požadavky zobrazené v roadmapě
126 field_login: Přihlášení
128 field_login: Přihlášení
127 field_mail_notification: Emailové oznámení
129 field_mail_notification: Emailové oznámení
128 field_admin: Administrátor
130 field_admin: Administrátor
129 field_last_login_on: Poslední připojení
131 field_last_login_on: Poslední připojení
130 field_language: Jazyk
132 field_language: Jazyk
131 field_effective_date: Datum
133 field_effective_date: Datum
132 field_password: Heslo
134 field_password: Heslo
133 field_new_password: Nové heslo
135 field_new_password: Nové heslo
134 field_password_confirmation: Potvrzení
136 field_password_confirmation: Potvrzení
135 field_version: Verze
137 field_version: Verze
136 field_type: Typ
138 field_type: Typ
137 field_host: Host
139 field_host: Host
138 field_port: Port
140 field_port: Port
139 field_account: Účet
141 field_account: Účet
140 field_base_dn: Base DN
142 field_base_dn: Base DN
141 field_attr_login: Login attribute
143 field_attr_login: Login attribute
142 field_attr_firstname: Firstname attribute
144 field_attr_firstname: Firstname attribute
143 field_attr_lastname: Lastname attribute
145 field_attr_lastname: Lastname attribute
144 field_attr_mail: Email attribute
146 field_attr_mail: Email attribute
145 field_onthefly: Automatické vytváření uživatelů
147 field_onthefly: Automatické vytváření uživatelů
146 field_start_date: Start
148 field_start_date: Start
147 field_done_ratio: %% Hotovo
149 field_done_ratio: %% Hotovo
148 field_auth_source: Autentifikační mód
150 field_auth_source: Autentifikační mód
149 field_hide_mail: Nezobrazovat můj email
151 field_hide_mail: Nezobrazovat můj email
150 field_comments: Komentář
152 field_comments: Komentář
151 field_url: URL
153 field_url: URL
152 field_start_page: Výchozí stránka
154 field_start_page: Výchozí stránka
153 field_subproject: Podprojekt
155 field_subproject: Podprojekt
154 field_hours: Hodiny
156 field_hours: Hodiny
155 field_activity: Aktivita
157 field_activity: Aktivita
156 field_spent_on: Datum
158 field_spent_on: Datum
157 field_identifier: Identifikátor
159 field_identifier: Identifikátor
158 field_is_filter: Used as a filter
160 field_is_filter: Used as a filter
159 field_issue_to_id: Vztažený požadavek
161 field_issue_to_id: Vztažený požadavek
160 field_delay: Zpoždění
162 field_delay: Zpoždění
161 field_assignable: Požadavky mohou být přiřazeny této roli
163 field_assignable: Požadavky mohou být přiřazeny této roli
162 field_default_value: Výchozí stav
164 field_default_value: Výchozí stav
163
165
164 setting_app_title: Titulek aplikace
166 setting_app_title: Titulek aplikace
165 setting_app_subtitle: Podtitulek aplikace
167 setting_app_subtitle: Podtitulek aplikace
166 setting_welcome_text: Uvítací text
168 setting_welcome_text: Uvítací text
167 setting_default_language: Výchozí jazyk
169 setting_default_language: Výchozí jazyk
168 setting_login_required: Auten. vyžadována
170 setting_login_required: Auten. vyžadována
169 setting_self_registration: Povolena automatická registrace
171 setting_self_registration: Povolena automatická registrace
170 setting_attachment_max_size: Maximální velikost přílohy
172 setting_attachment_max_size: Maximální velikost přílohy
171 setting_issues_export_limit: Limit pro export požadavků
173 setting_issues_export_limit: Limit pro export požadavků
172 setting_mail_from: Emission mail adresa
174 setting_mail_from: Emission mail adresa
173 setting_host_name: Host name
175 setting_host_name: Host name
174 setting_text_formatting: Formátování textu
176 setting_text_formatting: Formátování textu
175 setting_wiki_compression: Komperese historie Wiki
177 setting_wiki_compression: Komperese historie Wiki
176 setting_feeds_limit: Feed content limit
178 setting_feeds_limit: Feed content limit
177 setting_autofetch_changesets: Autofetch commits
179 setting_autofetch_changesets: Autofetch commits
178 setting_sys_api_enabled: Povolit WS pro správu repozitory
180 setting_sys_api_enabled: Povolit WS pro správu repozitory
179 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_ref_keywords: Referencing keywords
180 setting_commit_fix_keywords: Fixing keywords
182 setting_commit_fix_keywords: Fixing keywords
181 setting_autologin: Automatické přihlašování
183 setting_autologin: Automatické přihlašování
182 setting_date_format: Formát datumu
184 setting_date_format: Formát datumu
183 setting_cross_project_issue_relations: Povolit vztahy požadavků mezi projekty
185 setting_cross_project_issue_relations: Povolit vztahy požadavků mezi projekty
184
186
185 label_user: Uživatel
187 label_user: Uživatel
186 label_user_plural: Uživatelé
188 label_user_plural: Uživatelé
187 label_user_new: Nový uživatel
189 label_user_new: Nový uživatel
188 label_project: Projekt
190 label_project: Projekt
189 label_project_new: Nový projekt
191 label_project_new: Nový projekt
190 label_project_plural: Projekty
192 label_project_plural: Projekty
191 label_project_all: Všechny projekty
193 label_project_all: Všechny projekty
192 label_project_latest: Poslední projekty
194 label_project_latest: Poslední projekty
193 label_issue: Požadavek
195 label_issue: Požadavek
194 label_issue_new: Nový požadavek
196 label_issue_new: Nový požadavek
195 label_issue_plural: Požadavky
197 label_issue_plural: Požadavky
196 label_issue_view_all: Všechny požadavky
198 label_issue_view_all: Všechny požadavky
197 label_document: Dokument
199 label_document: Dokument
198 label_document_new: Nový dokument
200 label_document_new: Nový dokument
199 label_document_plural: Dokumenty
201 label_document_plural: Dokumenty
200 label_role: Role
202 label_role: Role
201 label_role_plural: Role
203 label_role_plural: Role
202 label_role_new: Nová role
204 label_role_new: Nová role
203 label_role_and_permissions: Role a práva
205 label_role_and_permissions: Role a práva
204 label_member: Člen
206 label_member: Člen
205 label_member_new: Nový člen
207 label_member_new: Nový člen
206 label_member_plural: Členové
208 label_member_plural: Členové
207 label_tracker: Fronta
209 label_tracker: Fronta
208 label_tracker_plural: Fronty
210 label_tracker_plural: Fronty
209 label_tracker_new: Nová fronta
211 label_tracker_new: Nová fronta
210 label_workflow: Workflow
212 label_workflow: Workflow
211 label_issue_status: Stav požadavku
213 label_issue_status: Stav požadavku
212 label_issue_status_plural: Stavy požadavku
214 label_issue_status_plural: Stavy požadavku
213 label_issue_status_new: Nový stav
215 label_issue_status_new: Nový stav
214 label_issue_category: Kategorie požadavku
216 label_issue_category: Kategorie požadavku
215 label_issue_category_plural: Kategorie požadavku
217 label_issue_category_plural: Kategorie požadavku
216 label_issue_category_new: Nová kategorie
218 label_issue_category_new: Nová kategorie
217 label_custom_field: Uživatelské pole
219 label_custom_field: Uživatelské pole
218 label_custom_field_plural: Uživatelské pole
220 label_custom_field_plural: Uživatelské pole
219 label_custom_field_new: Nové uživatelské pole
221 label_custom_field_new: Nové uživatelské pole
220 label_enumerations: Číselníky
222 label_enumerations: Číselníky
221 label_enumeration_new: Nová hodnota
223 label_enumeration_new: Nová hodnota
222 label_information: Informace
224 label_information: Informace
223 label_information_plural: Informace
225 label_information_plural: Informace
224 label_please_login: Prosím přihlašte se
226 label_please_login: Prosím přihlašte se
225 label_register: Registrovat
227 label_register: Registrovat
226 label_password_lost: Zapomenuté heslo
228 label_password_lost: Zapomenuté heslo
227 label_home: Úvodní
229 label_home: Úvodní
228 label_my_page: Moje stránka
230 label_my_page: Moje stránka
229 label_my_account: Můj účet
231 label_my_account: Můj účet
230 label_my_projects: Moje projekty
232 label_my_projects: Moje projekty
231 label_administration: Administrace
233 label_administration: Administrace
232 label_login: Přihlášení
234 label_login: Přihlášení
233 label_logout: Odhlášení
235 label_logout: Odhlášení
234 label_help: Nápověda
236 label_help: Nápověda
235 label_reported_issues: Nahlášené požadavky
237 label_reported_issues: Nahlášené požadavky
236 label_assigned_to_me_issues: Moje požadavky
238 label_assigned_to_me_issues: Moje požadavky
237 label_last_login: Poslední přihlášení
239 label_last_login: Poslední přihlášení
238 label_last_updates: Poslední změna
240 label_last_updates: Poslední změna
239 label_last_updates_plural: %d poslední změny
241 label_last_updates_plural: %d poslední změny
240 label_registered_on: Registered on
242 label_registered_on: Registered on
241 label_activity: Aktivita
243 label_activity: Aktivita
242 label_new: Nový
244 label_new: Nový
243 label_logged_as: Přihlášen jako
245 label_logged_as: Přihlášen jako
244 label_environment: Prostředí
246 label_environment: Prostředí
245 label_authentication: Autentifikace
247 label_authentication: Autentifikace
246 label_auth_source: Mód autentifikace
248 label_auth_source: Mód autentifikace
247 label_auth_source_new: Nový mód autentifikace
249 label_auth_source_new: Nový mód autentifikace
248 label_auth_source_plural: Módy autentifikace
250 label_auth_source_plural: Módy autentifikace
249 label_subproject_plural: Podprojekty
251 label_subproject_plural: Podprojekty
250 label_min_max_length: Min - Max délka
252 label_min_max_length: Min - Max délka
251 label_list: Seznam
253 label_list: Seznam
252 label_date: Datum
254 label_date: Datum
253 label_integer: Integer
255 label_integer: Integer
254 label_boolean: Boolean
256 label_boolean: Boolean
255 label_string: Text
257 label_string: Text
256 label_text: Dlouhý text
258 label_text: Dlouhý text
257 label_attribute: Atribut
259 label_attribute: Atribut
258 label_attribute_plural: Atributy
260 label_attribute_plural: Atributy
259 label_download: %d Download
261 label_download: %d Download
260 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
261 label_no_data: Žádná data k zobrazení
263 label_no_data: Žádná data k zobrazení
262 label_change_status: Změnit stav
264 label_change_status: Změnit stav
263 label_history: Historie
265 label_history: Historie
264 label_attachment: Soubor
266 label_attachment: Soubor
265 label_attachment_new: Nový soubor
267 label_attachment_new: Nový soubor
266 label_attachment_delete: Smazat soubor
268 label_attachment_delete: Smazat soubor
267 label_attachment_plural: Soubory
269 label_attachment_plural: Soubory
268 label_report: Report
270 label_report: Report
269 label_report_plural: Reporty
271 label_report_plural: Reporty
270 label_news: Novinky
272 label_news: Novinky
271 label_news_new: Přidat novinku
273 label_news_new: Přidat novinku
272 label_news_plural: Novinky
274 label_news_plural: Novinky
273 label_news_latest: Poslední novinky
275 label_news_latest: Poslední novinky
274 label_news_view_all: Zobrazit všechny novinky
276 label_news_view_all: Zobrazit všechny novinky
275 label_change_log: Change log
277 label_change_log: Change log
276 label_settings: Nastavení
278 label_settings: Nastavení
277 label_overview: Přehled
279 label_overview: Přehled
278 label_version: Verze
280 label_version: Verze
279 label_version_new: Nová verze
281 label_version_new: Nová verze
280 label_version_plural: Verze
282 label_version_plural: Verze
281 label_confirmation: Potvrzení
283 label_confirmation: Potvrzení
282 label_export_to: Exportovat do
284 label_export_to: Exportovat do
283 label_read: Načítá se...
285 label_read: Načítá se...
284 label_public_projects: Veřejné projekty
286 label_public_projects: Veřejné projekty
285 label_open_issues: otevřený
287 label_open_issues: otevřený
286 label_open_issues_plural: otevřené
288 label_open_issues_plural: otevřené
287 label_closed_issues: uzavřený
289 label_closed_issues: uzavřený
288 label_closed_issues_plural: uzavřené
290 label_closed_issues_plural: uzavřené
289 label_total: Celkem
291 label_total: Celkem
290 label_permissions: Práva
292 label_permissions: Práva
291 label_current_status: Aktuální stav
293 label_current_status: Aktuální stav
292 label_new_statuses_allowed: Nové povolené stavy
294 label_new_statuses_allowed: Nové povolené stavy
293 label_all: vše
295 label_all: vše
294 label_none: nic
296 label_none: nic
295 label_next: Další
297 label_next: Další
296 label_previous: Předchozí
298 label_previous: Předchozí
297 label_used_by: Použito
299 label_used_by: Použito
298 label_details: Detaily
300 label_details: Detaily
299 label_add_note: Přidat poznánku
301 label_add_note: Přidat poznánku
300 label_per_page: Na stránku
302 label_per_page: Na stránku
301 label_calendar: Kalendář
303 label_calendar: Kalendář
302 label_months_from: měsíců od
304 label_months_from: měsíců od
303 label_gantt: Gantův graf
305 label_gantt: Gantův graf
304 label_internal: Interní
306 label_internal: Interní
305 label_last_changes: posledních %d změn
307 label_last_changes: posledních %d změn
306 label_change_view_all: Zobrazit všechny změny
308 label_change_view_all: Zobrazit všechny změny
307 label_personalize_page: Přizpůsobit tuto stránku
309 label_personalize_page: Přizpůsobit tuto stránku
308 label_comment: Komentář
310 label_comment: Komentář
309 label_comment_plural: Komentáře
311 label_comment_plural: Komentáře
310 label_comment_add: Přidat komentáře
312 label_comment_add: Přidat komentáře
311 label_comment_added: Komentář přidán
313 label_comment_added: Komentář přidán
312 label_comment_delete: Smazat komentář
314 label_comment_delete: Smazat komentář
313 label_query: Uživatelský dotaz
315 label_query: Uživatelský dotaz
314 label_query_plural: Uživatelské dotazy
316 label_query_plural: Uživatelské dotazy
315 label_query_new: Nový dotaz
317 label_query_new: Nový dotaz
316 label_filter_add: Přidat filtr
318 label_filter_add: Přidat filtr
317 label_filter_plural: Filtry
319 label_filter_plural: Filtry
318 label_equals: je
320 label_equals: je
319 label_not_equals: není
321 label_not_equals: není
320 label_in_less_than: je měší než
322 label_in_less_than: je měší než
321 label_in_more_than: je větší než
323 label_in_more_than: je větší než
322 label_in: v
324 label_in: v
323 label_today: dnes
325 label_today: dnes
324 label_this_week: tento týden
326 label_this_week: tento týden
325 label_less_than_ago: před méně jak (dny)
327 label_less_than_ago: před méně jak (dny)
326 label_more_than_ago: před více jak (dny)
328 label_more_than_ago: před více jak (dny)
327 label_ago: před (dny)
329 label_ago: před (dny)
328 label_contains: obsahuje
330 label_contains: obsahuje
329 label_not_contains: neobsahuje
331 label_not_contains: neobsahuje
330 label_day_plural: dny
332 label_day_plural: dny
331 label_repository: Repository
333 label_repository: Repository
332 label_browse: Procházet
334 label_browse: Procházet
333 label_modification: %d změna
335 label_modification: %d změna
334 label_modification_plural: %d změn
336 label_modification_plural: %d změn
335 label_revision: Revize
337 label_revision: Revize
336 label_revision_plural: Revizí
338 label_revision_plural: Revizí
337 label_added: přidáno
339 label_added: přidáno
338 label_modified: změněno
340 label_modified: změněno
339 label_deleted: smazáno
341 label_deleted: smazáno
340 label_latest_revision: Poslední revize
342 label_latest_revision: Poslední revize
341 label_latest_revision_plural: Poslední revize
343 label_latest_revision_plural: Poslední revize
342 label_view_revisions: Zobrazit revize
344 label_view_revisions: Zobrazit revize
343 label_max_size: Maximální velikost
345 label_max_size: Maximální velikost
344 label_on: 'on'
346 label_on: 'on'
345 label_sort_highest: Posunout na vrchol
347 label_sort_highest: Posunout na vrchol
346 label_sort_higher: Posunout nahoru
348 label_sort_higher: Posunout nahoru
347 label_sort_lower: Posunout dolů
349 label_sort_lower: Posunout dolů
348 label_sort_lowest: Posunout dospod
350 label_sort_lowest: Posunout dospod
349 label_roadmap: Plán
351 label_roadmap: Plán
350 label_roadmap_due_in: Due in
352 label_roadmap_due_in: Due in
351 label_roadmap_overdue: %s pozdě
353 label_roadmap_overdue: %s pozdě
352 label_roadmap_no_issues: Pro tuto verzi nejsou žádné požadavky
354 label_roadmap_no_issues: Pro tuto verzi nejsou žádné požadavky
353 label_search: Hledej
355 label_search: Hledej
354 label_result_plural: Výsledky
356 label_result_plural: Výsledky
355 label_all_words: Všechna slova
357 label_all_words: Všechna slova
356 label_wiki: Wiki
358 label_wiki: Wiki
357 label_wiki_edit: Wiki úprava
359 label_wiki_edit: Wiki úprava
358 label_wiki_edit_plural: Wiki úpravy
360 label_wiki_edit_plural: Wiki úpravy
359 label_wiki_page: Wiki stránka
361 label_wiki_page: Wiki stránka
360 label_wiki_page_plural: Wiki stránky
362 label_wiki_page_plural: Wiki stránky
361 label_index_by_title: Rejstřík
363 label_index_by_title: Rejstřík
362 label_index_by_date: Index by date
364 label_index_by_date: Index by date
363 label_current_version: Aktuální verze
365 label_current_version: Aktuální verze
364 label_preview: Náhled
366 label_preview: Náhled
365 label_feed_plural: Feeds
367 label_feed_plural: Feeds
366 label_changes_details: Detail všech změn
368 label_changes_details: Detail všech změn
367 label_issue_tracking: Sledování požadavků
369 label_issue_tracking: Sledování požadavků
368 label_spent_time: Strávený čas
370 label_spent_time: Strávený čas
369 label_f_hour: %.2f hodina
371 label_f_hour: %.2f hodina
370 label_f_hour_plural: %.2f hodin
372 label_f_hour_plural: %.2f hodin
371 label_time_tracking: Sledování času
373 label_time_tracking: Sledování času
372 label_change_plural: Změny
374 label_change_plural: Změny
373 label_statistics: Statistika
375 label_statistics: Statistika
374 label_commits_per_month: Pořízení za měsíc
376 label_commits_per_month: Pořízení za měsíc
375 label_commits_per_author: Pořízení za autora
377 label_commits_per_author: Pořízení za autora
376 label_view_diff: Zobrazit rozdíly
378 label_view_diff: Zobrazit rozdíly
377 label_diff_inline: uvnitř
379 label_diff_inline: uvnitř
378 label_diff_side_by_side: vedle sebe
380 label_diff_side_by_side: vedle sebe
379 label_options: Nastavení
381 label_options: Nastavení
380 label_copy_workflow_from: Kopírovat workflow z
382 label_copy_workflow_from: Kopírovat workflow z
381 label_permissions_report: Opis práv
383 label_permissions_report: Opis práv
382 label_watched_issues: Prohlédnuté požadavky
384 label_watched_issues: Prohlédnuté požadavky
383 label_related_issues: Vztažené požadavky
385 label_related_issues: Vztažené požadavky
384 label_applied_status: Použitý stav
386 label_applied_status: Použitý stav
385 label_loading: Nahrávám...
387 label_loading: Nahrávám...
386 label_relation_new: Nový vztah
388 label_relation_new: Nový vztah
387 label_relation_delete: Smazat vztah
389 label_relation_delete: Smazat vztah
388 label_relates_to: vztažený k
390 label_relates_to: vztažený k
389 label_duplicates: duplicity
391 label_duplicates: duplicity
390 label_blocks: zámků
392 label_blocks: zámků
391 label_blocked_by: zamčeno
393 label_blocked_by: zamčeno
392 label_precedes: předchází
394 label_precedes: předchází
393 label_follows: následuje
395 label_follows: následuje
394 label_end_to_start: od konce do začátku
396 label_end_to_start: od konce do začátku
395 label_end_to_end: od konce do konce
397 label_end_to_end: od konce do konce
396 label_start_to_start: od začátku do začátku
398 label_start_to_start: od začátku do začátku
397 label_start_to_end: od začátku do konce
399 label_start_to_end: od začátku do konce
398 label_stay_logged_in: Zůstat přihlášený
400 label_stay_logged_in: Zůstat přihlášený
399 label_disabled: zakázáno
401 label_disabled: zakázáno
400 label_show_completed_versions: Ukaž dokončené verze
402 label_show_completed_versions: Ukaž dokončené verze
401 label_me:
403 label_me:
402 label_board: Fórum
404 label_board: Fórum
403 label_board_new: Nové fórum
405 label_board_new: Nové fórum
404 label_board_plural: Fora
406 label_board_plural: Fora
405 label_topic_plural: Témata
407 label_topic_plural: Témata
406 label_message_plural: Zprávy
408 label_message_plural: Zprávy
407 label_message_last: Poslední zpráva
409 label_message_last: Poslední zpráva
408 label_message_new: Nové zprávy
410 label_message_new: Nové zprávy
409 label_reply_plural: Odpovědi
411 label_reply_plural: Odpovědi
410 label_send_information: Zaslat informace o účtu uživateli
412 label_send_information: Zaslat informace o účtu uživateli
411 label_year: Rok
413 label_year: Rok
412 label_month: Měsíc
414 label_month: Měsíc
413 label_week: Týden
415 label_week: Týden
414 label_date_from: Od
416 label_date_from: Od
415 label_date_to: Do
417 label_date_to: Do
416 label_language_based: Language based
418 label_language_based: Language based
417 label_sort_by: Seřadit podle %s
419 label_sort_by: Seřadit podle %s
418 label_send_test_email: Poslat testovací email
420 label_send_test_email: Poslat testovací email
419 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
421 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
420
422
421 button_login: Přihlásit
423 button_login: Přihlásit
422 button_submit: Potvrdit
424 button_submit: Potvrdit
423 button_save: Uložit
425 button_save: Uložit
424 button_check_all: Zašrtnout vše
426 button_check_all: Zašrtnout vše
425 button_uncheck_all: Odšrtnout vše
427 button_uncheck_all: Odšrtnout vše
426 button_delete: Smazat
428 button_delete: Smazat
427 button_create: Vytvořit
429 button_create: Vytvořit
428 button_test: Test
430 button_test: Test
429 button_edit: Upravit
431 button_edit: Upravit
430 button_add: Přidat
432 button_add: Přidat
431 button_change: Změnit
433 button_change: Změnit
432 button_apply: Použít
434 button_apply: Použít
433 button_clear: Odstranit
435 button_clear: Odstranit
434 button_lock: Zamknout
436 button_lock: Zamknout
435 button_unlock: Odemknout
437 button_unlock: Odemknout
436 button_download: Stáhnout
438 button_download: Stáhnout
437 button_list: Vypsat
439 button_list: Vypsat
438 button_view: Zobrazit
440 button_view: Zobrazit
439 button_move: Přesunout
441 button_move: Přesunout
440 button_back: Zpět
442 button_back: Zpět
441 button_cancel: Storno
443 button_cancel: Storno
442 button_activate: Activovat
444 button_activate: Activovat
443 button_sort: Seřadit
445 button_sort: Seřadit
444 button_log_time: Čas přihlášení
446 button_log_time: Čas přihlášení
445 button_rollback: Zpět k této verzi
447 button_rollback: Zpět k této verzi
446 button_watch: Sledovat
448 button_watch: Sledovat
447 button_unwatch: Unwatch
449 button_unwatch: Unwatch
448 button_reply: Odpovědět
450 button_reply: Odpovědět
449 button_archive: Archivovat
451 button_archive: Archivovat
450 button_unarchive: Odarchivovat
452 button_unarchive: Odarchivovat
451 button_reset: Reset
453 button_reset: Reset
452
454
453 status_active: aktivní
455 status_active: aktivní
454 status_registered: registrovaný
456 status_registered: registrovaný
455 status_locked: uzamčený
457 status_locked: uzamčený
456
458
457 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
459 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
458 text_regexp_info: např. ^[A-Z0-9]+$
460 text_regexp_info: např. ^[A-Z0-9]+$
459 text_min_max_length_info: 0 znamená bez limitu
461 text_min_max_length_info: 0 znamená bez limitu
460 text_project_destroy_confirmation: Jste si jistí, že chcete smazat tento projekt a všechna související data ?
462 text_project_destroy_confirmation: Jste si jistí, že chcete smazat tento projekt a všechna související data ?
461 text_workflow_edit: Vyberte roli a frontu k editaci workflow
463 text_workflow_edit: Vyberte roli a frontu k editaci workflow
462 text_are_you_sure: Jste si jist ?
464 text_are_you_sure: Jste si jist ?
463 text_journal_changed: změněno z %s na %s
465 text_journal_changed: změněno z %s na %s
464 text_journal_set_to: nastaveno na %s
466 text_journal_set_to: nastaveno na %s
465 text_journal_deleted: smazáno
467 text_journal_deleted: smazáno
466 text_tip_task_begin_day: úkol začíná v tento den
468 text_tip_task_begin_day: úkol začíná v tento den
467 text_tip_task_end_day: úkol končí v tento den
469 text_tip_task_end_day: úkol končí v tento den
468 text_tip_task_begin_end_day: úkol začíná a končí v tento den
470 text_tip_task_begin_end_day: úkol začíná a končí v tento den
469 text_project_identifier_info: 'Jsou povolena malá písmena (a-z), čísla a pomlčky.<br />Po uložení již není možné identifikátor změnit.'
471 text_project_identifier_info: 'Jsou povolena malá písmena (a-z), čísla a pomlčky.<br />Po uložení již není možné identifikátor změnit.'
470 text_caracters_maximum: %d znaků maximálně.
472 text_caracters_maximum: %d znaků maximálně.
471 text_length_between: Délka mezi %d a %d znaky.
473 text_length_between: Délka mezi %d a %d znaky.
472 text_tracker_no_workflow: Pro tuto frontu není definováno žádné workflow
474 text_tracker_no_workflow: Pro tuto frontu není definováno žádné workflow
473 text_unallowed_characters: Nepovolené znaky
475 text_unallowed_characters: Nepovolené znaky
474 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
476 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
475 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
477 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
476
478
477 default_role_manager: Manažer
479 default_role_manager: Manažer
478 default_role_developper: Agent
480 default_role_developper: Agent
479 default_role_reporter: Reporter
481 default_role_reporter: Reporter
480 default_tracker_bug: Reklamace
482 default_tracker_bug: Reklamace
481 default_tracker_feature: Vlastnost
483 default_tracker_feature: Vlastnost
482 default_tracker_support: Požadavek
484 default_tracker_support: Požadavek
483 default_issue_status_new: Nový
485 default_issue_status_new: Nový
484 default_issue_status_assigned: Přiřazený
486 default_issue_status_assigned: Přiřazený
485 default_issue_status_resolved: Vyřešený
487 default_issue_status_resolved: Vyřešený
486 default_issue_status_feedback: Čeká se
488 default_issue_status_feedback: Čeká se
487 default_issue_status_closed: Uzavřený
489 default_issue_status_closed: Uzavřený
488 default_issue_status_rejected: Odmítnutý
490 default_issue_status_rejected: Odmítnutý
489 default_doc_category_user: Uživatelská dokumentace
491 default_doc_category_user: Uživatelská dokumentace
490 default_doc_category_tech: Technická dokumentace
492 default_doc_category_tech: Technická dokumentace
491 default_priority_low: Nízká
493 default_priority_low: Nízká
492 default_priority_normal: Normální
494 default_priority_normal: Normální
493 default_priority_high: Vysoká
495 default_priority_high: Vysoká
494 default_priority_urgent: Urgentní
496 default_priority_urgent: Urgentní
495 default_priority_immediate: Bezodkladné
497 default_priority_immediate: Bezodkladné
496 default_activity_design: Návrh
498 default_activity_design: Návrh
497 default_activity_development: Vývoj
499 default_activity_development: Vývoj
498
500
499 enumeration_issue_priorities: Priority požadavků
501 enumeration_issue_priorities: Priority požadavků
500 enumeration_doc_categories: Kategorie dokumentů
502 enumeration_doc_categories: Kategorie dokumentů
501 enumeration_activities: Aktivity (sledování času)
503 enumeration_activities: Aktivity (sledování času)
502 button_rename: Rename
504 button_rename: Rename
503 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
505 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
504 label_module_plural: Modules
506 label_module_plural: Modules
505 label_jump_to_a_project: Jump to a project...
507 label_jump_to_a_project: Jump to a project...
506 text_issue_updated: Issue %s has been updated.
508 text_issue_updated: Issue %s has been updated.
507 field_redirect_existing_links: Redirect existing links
509 field_redirect_existing_links: Redirect existing links
508 text_issue_category_reassign_to: Reassing issues to this category
510 text_issue_category_reassign_to: Reassing issues to this category
509 text_issue_added: Issue %s has been reported.
511 text_issue_added: Issue %s has been reported.
510 label_file_plural: Files
512 label_file_plural: Files
511 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
513 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
512 label_updated_time: Updated %s ago
514 label_updated_time: Updated %s ago
513 text_issue_category_destroy_assignments: Remove category assignments
515 text_issue_category_destroy_assignments: Remove category assignments
514 label_added_time_by: Added by %s %s ago
516 label_added_time_by: Added by %s %s ago
515 field_estimated_hours: Estimated time
517 field_estimated_hours: Estimated time
516 label_changeset_plural: Changesets
518 label_changeset_plural: Changesets
517 field_column_names: Columns
519 field_column_names: Columns
518 label_default_columns: Default columns
520 label_default_columns: Default columns
519 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
520 setting_repositories_encodings: Repositories encodings
522 setting_repositories_encodings: Repositories encodings
521 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."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
524 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
525 label_no_change_option: (No change)
524 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."
525 label_theme: Theme
527 label_theme: Theme
526 label_default: Default
528 label_default: Default
527 label_search_titles_only: Search titles only
529 label_search_titles_only: Search titles only
528 label_nobody: nobody
530 label_nobody: nobody
529 button_change_password: Change password
531 button_change_password: Change password
530 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)."
531 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..."
532 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"
533 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"
534 setting_emails_footer: Emails footer
536 setting_emails_footer: Emails footer
535 label_float: Float
537 label_float: Float
536 button_copy: Copy
538 button_copy: Copy
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
538 mail_body_account_information: Your Redmine account information
540 mail_body_account_information: Your Redmine account information
539 setting_protocol: Protocol
541 setting_protocol: Protocol
540 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"
541 setting_time_format: Time format
543 setting_time_format: Time format
542 label_registration_activation_by_email: account activation by email
544 label_registration_activation_by_email: account activation by email
543 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: Redmine account activation request
544 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:'
545 label_registration_automatic_activation: automatic account activation
547 label_registration_automatic_activation: automatic account activation
546 label_registration_manual_activation: manual account activation
548 label_registration_manual_activation: manual account activation
547 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."
548 field_time_zone: Time zone
550 field_time_zone: Time zone
549 text_caracters_minimum: Must be at least %d characters long.
551 text_caracters_minimum: Must be at least %d characters long.
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 button_annotate: Annotate
553 button_annotate: Annotate
552 label_issues_by: Issues by %s
554 label_issues_by: Issues by %s
553 field_searchable: Searchable
555 field_searchable: Searchable
554 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
556 label_age: Age
558 label_age: Age
557 notice_default_data_loaded: Default configuration successfully loaded.
559 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
560 text_load_default_configuration: Load the default configuration
559 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."
560 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"
561 button_update: Update
563 button_update: Update
562 label_change_properties: Change properties
564 label_change_properties: Change properties
563 label_general: General
565 label_general: General
564 label_repository_plural: Repositories
566 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
@@ -1,565 +1,567
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_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv.
72 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
71 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
73 notice_email_sent: Eine E-Mail wurde an %s gesendet.
72 notice_email_sent: Eine E-Mail wurde an %s gesendet.
74 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).
75 notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt.
74 notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt.
76
75
76 error_scm_not_found: "Eintrag und/oder Revision besteht nicht im Projektarchiv."
77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78
77 mail_subject_lost_password: Ihr Redmine-Kennwort
79 mail_subject_lost_password: Ihr Redmine-Kennwort
78 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
80 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
79 mail_subject_register: Redmine Kontoaktivierung
81 mail_subject_register: Redmine Kontoaktivierung
80 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
82 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
81
83
82 gui_validation_error: 1 Fehler
84 gui_validation_error: 1 Fehler
83 gui_validation_error_plural: %d Fehler
85 gui_validation_error_plural: %d Fehler
84
86
85 field_name: Name
87 field_name: Name
86 field_description: Beschreibung
88 field_description: Beschreibung
87 field_summary: Zusammenfassung
89 field_summary: Zusammenfassung
88 field_is_required: Erforderlich
90 field_is_required: Erforderlich
89 field_firstname: Vorname
91 field_firstname: Vorname
90 field_lastname: Nachname
92 field_lastname: Nachname
91 field_mail: E-Mail
93 field_mail: E-Mail
92 field_filename: Datei
94 field_filename: Datei
93 field_filesize: Größe
95 field_filesize: Größe
94 field_downloads: Downloads
96 field_downloads: Downloads
95 field_author: Autor
97 field_author: Autor
96 field_created_on: Angelegt
98 field_created_on: Angelegt
97 field_updated_on: Aktualisiert
99 field_updated_on: Aktualisiert
98 field_field_format: Format
100 field_field_format: Format
99 field_is_for_all: Für alle Projekte
101 field_is_for_all: Für alle Projekte
100 field_possible_values: Mögliche Werte
102 field_possible_values: Mögliche Werte
101 field_regexp: Regulärer Ausdruck
103 field_regexp: Regulärer Ausdruck
102 field_min_length: Minimale Länge
104 field_min_length: Minimale Länge
103 field_max_length: Maximale Länge
105 field_max_length: Maximale Länge
104 field_value: Wert
106 field_value: Wert
105 field_category: Kategorie
107 field_category: Kategorie
106 field_title: Titel
108 field_title: Titel
107 field_project: Projekt
109 field_project: Projekt
108 field_issue: Ticket
110 field_issue: Ticket
109 field_status: Status
111 field_status: Status
110 field_notes: Kommentare
112 field_notes: Kommentare
111 field_is_closed: Problem erledigt
113 field_is_closed: Problem erledigt
112 field_is_default: Default
114 field_is_default: Default
113 field_tracker: Tracker
115 field_tracker: Tracker
114 field_subject: Thema
116 field_subject: Thema
115 field_due_date: Abgabedatum
117 field_due_date: Abgabedatum
116 field_assigned_to: Zugewiesen an
118 field_assigned_to: Zugewiesen an
117 field_priority: Priorität
119 field_priority: Priorität
118 field_fixed_version: Erledigt in Version
120 field_fixed_version: Erledigt in Version
119 field_user: Benutzer
121 field_user: Benutzer
120 field_role: Rolle
122 field_role: Rolle
121 field_homepage: Startseite
123 field_homepage: Startseite
122 field_is_public: Öffentlich
124 field_is_public: Öffentlich
123 field_parent: Unterprojekt von
125 field_parent: Unterprojekt von
124 field_is_in_chlog: Ansicht im Change-Log
126 field_is_in_chlog: Ansicht im Change-Log
125 field_is_in_roadmap: Ansicht in der Roadmap
127 field_is_in_roadmap: Ansicht in der Roadmap
126 field_login: Mitgliedsname
128 field_login: Mitgliedsname
127 field_mail_notification: Mailbenachrichtigung
129 field_mail_notification: Mailbenachrichtigung
128 field_admin: Administrator
130 field_admin: Administrator
129 field_last_login_on: Letzte Anmeldung
131 field_last_login_on: Letzte Anmeldung
130 field_language: Sprache
132 field_language: Sprache
131 field_effective_date: Datum
133 field_effective_date: Datum
132 field_password: Kennwort
134 field_password: Kennwort
133 field_new_password: Neues Kennwort
135 field_new_password: Neues Kennwort
134 field_password_confirmation: Bestätigung
136 field_password_confirmation: Bestätigung
135 field_version: Version
137 field_version: Version
136 field_type: Typ
138 field_type: Typ
137 field_host: Host
139 field_host: Host
138 field_port: Port
140 field_port: Port
139 field_account: Konto
141 field_account: Konto
140 field_base_dn: Base DN
142 field_base_dn: Base DN
141 field_attr_login: Mitgliedsname-Attribut
143 field_attr_login: Mitgliedsname-Attribut
142 field_attr_firstname: Vorname-Attribut
144 field_attr_firstname: Vorname-Attribut
143 field_attr_lastname: Name-Attribut
145 field_attr_lastname: Name-Attribut
144 field_attr_mail: E-Mail-Attribut
146 field_attr_mail: E-Mail-Attribut
145 field_onthefly: On-the-fly-Benutzererstellung
147 field_onthefly: On-the-fly-Benutzererstellung
146 field_start_date: Beginn
148 field_start_date: Beginn
147 field_done_ratio: %% erledigt
149 field_done_ratio: %% erledigt
148 field_auth_source: Authentifizierungs-Modus
150 field_auth_source: Authentifizierungs-Modus
149 field_hide_mail: E-Mail-Adresse nicht anzeigen
151 field_hide_mail: E-Mail-Adresse nicht anzeigen
150 field_comments: Kommentar
152 field_comments: Kommentar
151 field_url: URL
153 field_url: URL
152 field_start_page: Hauptseite
154 field_start_page: Hauptseite
153 field_subproject: Subprojekt von
155 field_subproject: Subprojekt von
154 field_hours: Stunden
156 field_hours: Stunden
155 field_activity: Aktivität
157 field_activity: Aktivität
156 field_spent_on: Datum
158 field_spent_on: Datum
157 field_identifier: Kennung
159 field_identifier: Kennung
158 field_is_filter: Als Fiter benutzen
160 field_is_filter: Als Fiter benutzen
159 field_issue_to_id: Zugehöriges Ticket
161 field_issue_to_id: Zugehöriges Ticket
160 field_delay: Pufferzeit
162 field_delay: Pufferzeit
161 field_assignable: Tickets können dieser Rolle zugewiesen werden
163 field_assignable: Tickets können dieser Rolle zugewiesen werden
162 field_redirect_existing_links: Existierende Links umleiten
164 field_redirect_existing_links: Existierende Links umleiten
163 field_estimated_hours: Geschätzter Aufwand
165 field_estimated_hours: Geschätzter Aufwand
164 field_default_value: Default
166 field_default_value: Default
165
167
166 setting_app_title: Applikations-Titel
168 setting_app_title: Applikations-Titel
167 setting_app_subtitle: Applikations-Untertitel
169 setting_app_subtitle: Applikations-Untertitel
168 setting_welcome_text: Willkommenstext
170 setting_welcome_text: Willkommenstext
169 setting_default_language: Default-Sprache
171 setting_default_language: Default-Sprache
170 setting_login_required: Authentisierung erforderlich
172 setting_login_required: Authentisierung erforderlich
171 setting_self_registration: Anmeldung ermöglicht
173 setting_self_registration: Anmeldung ermöglicht
172 setting_attachment_max_size: Max. Dateigröße
174 setting_attachment_max_size: Max. Dateigröße
173 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
175 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
174 setting_mail_from: E-Mail-Absender
176 setting_mail_from: E-Mail-Absender
175 setting_host_name: Hostname
177 setting_host_name: Hostname
176 setting_text_formatting: Textformatierung
178 setting_text_formatting: Textformatierung
177 setting_wiki_compression: Wiki-Historie komprimieren
179 setting_wiki_compression: Wiki-Historie komprimieren
178 setting_feeds_limit: Feed-Inhalt begrenzen
180 setting_feeds_limit: Feed-Inhalt begrenzen
179 setting_autofetch_changesets: Commits automatisch abrufen
181 setting_autofetch_changesets: Commits automatisch abrufen
180 setting_sys_api_enabled: Webservice für Repository-Verwaltung benutzen
182 setting_sys_api_enabled: Webservice für Repository-Verwaltung benutzen
181 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
183 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
182 setting_commit_fix_keywords: Schlüsselwörter (Status)
184 setting_commit_fix_keywords: Schlüsselwörter (Status)
183 setting_autologin: Automatische Anmeldung
185 setting_autologin: Automatische Anmeldung
184 setting_date_format: Datumsformat
186 setting_date_format: Datumsformat
185 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
187 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
186
188
187 label_user: Benutzer
189 label_user: Benutzer
188 label_user_plural: Benutzer
190 label_user_plural: Benutzer
189 label_user_new: Neuer Benutzer
191 label_user_new: Neuer Benutzer
190 label_project: Projekt
192 label_project: Projekt
191 label_project_new: Neues Projekt
193 label_project_new: Neues Projekt
192 label_project_plural: Projekte
194 label_project_plural: Projekte
193 label_project_all: Alle Projekte
195 label_project_all: Alle Projekte
194 label_project_latest: Neueste Projekte
196 label_project_latest: Neueste Projekte
195 label_issue: Ticket
197 label_issue: Ticket
196 label_issue_new: Neues Ticket
198 label_issue_new: Neues Ticket
197 label_issue_plural: Tickets
199 label_issue_plural: Tickets
198 label_issue_view_all: Alle Tickets ansehen
200 label_issue_view_all: Alle Tickets ansehen
199 label_document: Dokument
201 label_document: Dokument
200 label_document_new: Neues Dokument
202 label_document_new: Neues Dokument
201 label_document_plural: Dokumente
203 label_document_plural: Dokumente
202 label_role: Rolle
204 label_role: Rolle
203 label_role_plural: Rollen
205 label_role_plural: Rollen
204 label_role_new: Neue Rolle
206 label_role_new: Neue Rolle
205 label_role_and_permissions: Rollen und Rechte
207 label_role_and_permissions: Rollen und Rechte
206 label_member: Mitglied
208 label_member: Mitglied
207 label_member_new: Neues Mitglied
209 label_member_new: Neues Mitglied
208 label_member_plural: Mitglieder
210 label_member_plural: Mitglieder
209 label_tracker: Tracker
211 label_tracker: Tracker
210 label_tracker_plural: Tracker
212 label_tracker_plural: Tracker
211 label_tracker_new: Neuer Tracker
213 label_tracker_new: Neuer Tracker
212 label_workflow: Workflow
214 label_workflow: Workflow
213 label_issue_status: Ticket-Status
215 label_issue_status: Ticket-Status
214 label_issue_status_plural: Ticket-Status
216 label_issue_status_plural: Ticket-Status
215 label_issue_status_new: Neuer Status
217 label_issue_status_new: Neuer Status
216 label_issue_category: Ticket-Kategorie
218 label_issue_category: Ticket-Kategorie
217 label_issue_category_plural: Ticket-Kategorien
219 label_issue_category_plural: Ticket-Kategorien
218 label_issue_category_new: Neue Kategorie
220 label_issue_category_new: Neue Kategorie
219 label_custom_field: Benutzerdefiniertes Feld
221 label_custom_field: Benutzerdefiniertes Feld
220 label_custom_field_plural: Benutzerdefinierte Felder
222 label_custom_field_plural: Benutzerdefinierte Felder
221 label_custom_field_new: Neues Feld
223 label_custom_field_new: Neues Feld
222 label_enumerations: Aufzählungen
224 label_enumerations: Aufzählungen
223 label_enumeration_new: Neuer Wert
225 label_enumeration_new: Neuer Wert
224 label_information: Information
226 label_information: Information
225 label_information_plural: Informationen
227 label_information_plural: Informationen
226 label_please_login: Anmelden
228 label_please_login: Anmelden
227 label_register: Registrieren
229 label_register: Registrieren
228 label_password_lost: Kennwort vergessen
230 label_password_lost: Kennwort vergessen
229 label_home: Hauptseite
231 label_home: Hauptseite
230 label_my_page: Meine Seite
232 label_my_page: Meine Seite
231 label_my_account: Mein Konto
233 label_my_account: Mein Konto
232 label_my_projects: Meine Projekte
234 label_my_projects: Meine Projekte
233 label_administration: Administration
235 label_administration: Administration
234 label_login: Anmelden
236 label_login: Anmelden
235 label_logout: Abmelden
237 label_logout: Abmelden
236 label_help: Hilfe
238 label_help: Hilfe
237 label_reported_issues: Gemeldete Tickets
239 label_reported_issues: Gemeldete Tickets
238 label_assigned_to_me_issues: Mir zugewiesen
240 label_assigned_to_me_issues: Mir zugewiesen
239 label_last_login: Letzte Anmeldung
241 label_last_login: Letzte Anmeldung
240 label_last_updates: zuletzt aktualisiert
242 label_last_updates: zuletzt aktualisiert
241 label_last_updates_plural: %d zuletzt aktualisierten
243 label_last_updates_plural: %d zuletzt aktualisierten
242 label_registered_on: Angemeldet am
244 label_registered_on: Angemeldet am
243 label_activity: Aktivität
245 label_activity: Aktivität
244 label_new: Neu
246 label_new: Neu
245 label_logged_as: Angemeldet als
247 label_logged_as: Angemeldet als
246 label_environment: Environment
248 label_environment: Environment
247 label_authentication: Authentifizierung
249 label_authentication: Authentifizierung
248 label_auth_source: Authentifizierungs-Modus
250 label_auth_source: Authentifizierungs-Modus
249 label_auth_source_new: Neuer Authentifizierungs-Modus
251 label_auth_source_new: Neuer Authentifizierungs-Modus
250 label_auth_source_plural: Authentifizierungs-Arten
252 label_auth_source_plural: Authentifizierungs-Arten
251 label_subproject_plural: Unterprojekte
253 label_subproject_plural: Unterprojekte
252 label_min_max_length: Länge (Min. - Max.)
254 label_min_max_length: Länge (Min. - Max.)
253 label_list: Liste
255 label_list: Liste
254 label_date: Datum
256 label_date: Datum
255 label_integer: Zahl
257 label_integer: Zahl
256 label_boolean: Boolean
258 label_boolean: Boolean
257 label_string: Text
259 label_string: Text
258 label_text: Langer Text
260 label_text: Langer Text
259 label_attribute: Attribut
261 label_attribute: Attribut
260 label_attribute_plural: Attribute
262 label_attribute_plural: Attribute
261 label_download: %d Download
263 label_download: %d Download
262 label_download_plural: %d Downloads
264 label_download_plural: %d Downloads
263 label_no_data: Nichts anzuzeigen
265 label_no_data: Nichts anzuzeigen
264 label_change_status: Statuswechsel
266 label_change_status: Statuswechsel
265 label_history: Historie
267 label_history: Historie
266 label_attachment: Datei
268 label_attachment: Datei
267 label_attachment_new: Neue Datei
269 label_attachment_new: Neue Datei
268 label_attachment_delete: Anhang löschen
270 label_attachment_delete: Anhang löschen
269 label_attachment_plural: Dateien
271 label_attachment_plural: Dateien
270 label_report: Bericht
272 label_report: Bericht
271 label_report_plural: Berichte
273 label_report_plural: Berichte
272 label_news: News
274 label_news: News
273 label_news_new: News hinzufügen
275 label_news_new: News hinzufügen
274 label_news_plural: News
276 label_news_plural: News
275 label_news_latest: Letzte News
277 label_news_latest: Letzte News
276 label_news_view_all: Alle News anzeigen
278 label_news_view_all: Alle News anzeigen
277 label_change_log: Change-Log
279 label_change_log: Change-Log
278 label_settings: Konfiguration
280 label_settings: Konfiguration
279 label_overview: Übersicht
281 label_overview: Übersicht
280 label_version: Version
282 label_version: Version
281 label_version_new: Neue Version
283 label_version_new: Neue Version
282 label_version_plural: Versionen
284 label_version_plural: Versionen
283 label_confirmation: Bestätigung
285 label_confirmation: Bestätigung
284 label_export_to: Export zu
286 label_export_to: Export zu
285 label_read: Lesen...
287 label_read: Lesen...
286 label_public_projects: Öffentliche Projekte
288 label_public_projects: Öffentliche Projekte
287 label_open_issues: offen
289 label_open_issues: offen
288 label_open_issues_plural: offen
290 label_open_issues_plural: offen
289 label_closed_issues: geschlossen
291 label_closed_issues: geschlossen
290 label_closed_issues_plural: geschlossen
292 label_closed_issues_plural: geschlossen
291 label_total: Gesamtzahl
293 label_total: Gesamtzahl
292 label_permissions: Berechtigungen
294 label_permissions: Berechtigungen
293 label_current_status: Gegenwärtiger Status
295 label_current_status: Gegenwärtiger Status
294 label_new_statuses_allowed: Neue Berechtigungen
296 label_new_statuses_allowed: Neue Berechtigungen
295 label_all: alle
297 label_all: alle
296 label_none: kein
298 label_none: kein
297 label_next: Weiter
299 label_next: Weiter
298 label_previous: Zurück
300 label_previous: Zurück
299 label_used_by: Benutzt von
301 label_used_by: Benutzt von
300 label_details: Details
302 label_details: Details
301 label_add_note: Kommentar hinzufügen
303 label_add_note: Kommentar hinzufügen
302 label_per_page: Pro Seite
304 label_per_page: Pro Seite
303 label_calendar: Kalender
305 label_calendar: Kalender
304 label_months_from: Monate ab
306 label_months_from: Monate ab
305 label_gantt: Gantt
307 label_gantt: Gantt
306 label_internal: Intern
308 label_internal: Intern
307 label_last_changes: %d letzte Änderungen
309 label_last_changes: %d letzte Änderungen
308 label_change_view_all: Alle Änderungen ansehen
310 label_change_view_all: Alle Änderungen ansehen
309 label_personalize_page: Diese Seite anpassen
311 label_personalize_page: Diese Seite anpassen
310 label_comment: Kommentar
312 label_comment: Kommentar
311 label_comment_plural: Kommentare
313 label_comment_plural: Kommentare
312 label_comment_add: Kommentar hinzufügen
314 label_comment_add: Kommentar hinzufügen
313 label_comment_added: Kommentar hinzugefügt
315 label_comment_added: Kommentar hinzugefügt
314 label_comment_delete: Kommentar löschen
316 label_comment_delete: Kommentar löschen
315 label_query: Benutzerdefinierte Abfrage
317 label_query: Benutzerdefinierte Abfrage
316 label_query_plural: Benutzerdefinierte Berichte
318 label_query_plural: Benutzerdefinierte Berichte
317 label_query_new: Neuer Bericht
319 label_query_new: Neuer Bericht
318 label_filter_add: Filter hinzufügen
320 label_filter_add: Filter hinzufügen
319 label_filter_plural: Filter
321 label_filter_plural: Filter
320 label_equals: ist
322 label_equals: ist
321 label_not_equals: ist nicht
323 label_not_equals: ist nicht
322 label_in_less_than: in weniger als
324 label_in_less_than: in weniger als
323 label_in_more_than: in mehr als
325 label_in_more_than: in mehr als
324 label_in: an
326 label_in: an
325 label_today: heute
327 label_today: heute
326 label_this_week: diese Woche
328 label_this_week: diese Woche
327 label_less_than_ago: vor weniger als
329 label_less_than_ago: vor weniger als
328 label_more_than_ago: vor mehr als
330 label_more_than_ago: vor mehr als
329 label_ago: vor
331 label_ago: vor
330 label_contains: enthält
332 label_contains: enthält
331 label_not_contains: enthält nicht
333 label_not_contains: enthält nicht
332 label_day_plural: Tage
334 label_day_plural: Tage
333 label_repository: Projektarchiv
335 label_repository: Projektarchiv
334 label_browse: Codebrowser
336 label_browse: Codebrowser
335 label_modification: %d Änderung
337 label_modification: %d Änderung
336 label_modification_plural: %d Änderungen
338 label_modification_plural: %d Änderungen
337 label_revision: Revision
339 label_revision: Revision
338 label_revision_plural: Revisionen
340 label_revision_plural: Revisionen
339 label_added: hinzugefügt
341 label_added: hinzugefügt
340 label_modified: geändert
342 label_modified: geändert
341 label_deleted: gelöscht
343 label_deleted: gelöscht
342 label_latest_revision: Aktuellste Revision
344 label_latest_revision: Aktuellste Revision
343 label_latest_revision_plural: Aktuellste Revisionen
345 label_latest_revision_plural: Aktuellste Revisionen
344 label_view_revisions: Revisionen anzeigen
346 label_view_revisions: Revisionen anzeigen
345 label_max_size: Maximale Größe
347 label_max_size: Maximale Größe
346 label_on: von
348 label_on: von
347 label_sort_highest: Anfang
349 label_sort_highest: Anfang
348 label_sort_higher: eins höher
350 label_sort_higher: eins höher
349 label_sort_lower: eins tiefer
351 label_sort_lower: eins tiefer
350 label_sort_lowest: Ende
352 label_sort_lowest: Ende
351 label_roadmap: Roadmap
353 label_roadmap: Roadmap
352 label_roadmap_due_in: Fällig in
354 label_roadmap_due_in: Fällig in
353 label_roadmap_overdue: %s verspätet
355 label_roadmap_overdue: %s verspätet
354 label_roadmap_no_issues: Keine Tickets für diese Version
356 label_roadmap_no_issues: Keine Tickets für diese Version
355 label_search: Suche
357 label_search: Suche
356 label_result_plural: Resultate
358 label_result_plural: Resultate
357 label_all_words: Alle Wörter
359 label_all_words: Alle Wörter
358 label_wiki: Wiki
360 label_wiki: Wiki
359 label_wiki_edit: Wiki-Bearbeitung
361 label_wiki_edit: Wiki-Bearbeitung
360 label_wiki_edit_plural: Wiki-Bearbeitungen
362 label_wiki_edit_plural: Wiki-Bearbeitungen
361 label_wiki_page: Wiki-Seite
363 label_wiki_page: Wiki-Seite
362 label_wiki_page_plural: Wiki-Seiten
364 label_wiki_page_plural: Wiki-Seiten
363 label_index_by_title: Index by title
365 label_index_by_title: Index by title
364 label_index_by_date: Index by date
366 label_index_by_date: Index by date
365 label_current_version: Gegenwärtige Version
367 label_current_version: Gegenwärtige Version
366 label_preview: Vorschau
368 label_preview: Vorschau
367 label_feed_plural: Feeds
369 label_feed_plural: Feeds
368 label_changes_details: Details aller Änderungen
370 label_changes_details: Details aller Änderungen
369 label_issue_tracking: Tickets
371 label_issue_tracking: Tickets
370 label_spent_time: Aufgewendete Zeit
372 label_spent_time: Aufgewendete Zeit
371 label_f_hour: %.2f Stunde
373 label_f_hour: %.2f Stunde
372 label_f_hour_plural: %.2f Stunden
374 label_f_hour_plural: %.2f Stunden
373 label_time_tracking: Zeiterfassung
375 label_time_tracking: Zeiterfassung
374 label_change_plural: Änderungen
376 label_change_plural: Änderungen
375 label_statistics: Statistiken
377 label_statistics: Statistiken
376 label_commits_per_month: Übertragungen pro Monat
378 label_commits_per_month: Übertragungen pro Monat
377 label_commits_per_author: Übertragungen pro Autor
379 label_commits_per_author: Übertragungen pro Autor
378 label_view_diff: Unterschiede anzeigen
380 label_view_diff: Unterschiede anzeigen
379 label_diff_inline: inline
381 label_diff_inline: inline
380 label_diff_side_by_side: nebeneinander
382 label_diff_side_by_side: nebeneinander
381 label_options: Optionen
383 label_options: Optionen
382 label_copy_workflow_from: Workflow kopieren von
384 label_copy_workflow_from: Workflow kopieren von
383 label_permissions_report: Berechtigungsübersicht
385 label_permissions_report: Berechtigungsübersicht
384 label_watched_issues: Beobachtete Tickets
386 label_watched_issues: Beobachtete Tickets
385 label_related_issues: Zugehörige Tickets
387 label_related_issues: Zugehörige Tickets
386 label_applied_status: Zugewiesener Status
388 label_applied_status: Zugewiesener Status
387 label_loading: Lade...
389 label_loading: Lade...
388 label_relation_new: Neue Beziehung
390 label_relation_new: Neue Beziehung
389 label_relation_delete: Beziehung löschen
391 label_relation_delete: Beziehung löschen
390 label_relates_to: Beziehung mit
392 label_relates_to: Beziehung mit
391 label_duplicates: Duplikat von
393 label_duplicates: Duplikat von
392 label_blocks: Blockiert
394 label_blocks: Blockiert
393 label_blocked_by: Blockiert durch
395 label_blocked_by: Blockiert durch
394 label_precedes: Vorgänger von
396 label_precedes: Vorgänger von
395 label_follows: folgt
397 label_follows: folgt
396 label_end_to_start: Ende - Anfang
398 label_end_to_start: Ende - Anfang
397 label_end_to_end: Ende - Ende
399 label_end_to_end: Ende - Ende
398 label_start_to_start: Anfang - Anfang
400 label_start_to_start: Anfang - Anfang
399 label_start_to_end: Anfang - Ende
401 label_start_to_end: Anfang - Ende
400 label_stay_logged_in: Angemeldet bleiben
402 label_stay_logged_in: Angemeldet bleiben
401 label_disabled: gesperrt
403 label_disabled: gesperrt
402 label_show_completed_versions: Abgeschlossene Versionen anzeigen
404 label_show_completed_versions: Abgeschlossene Versionen anzeigen
403 label_me: ich
405 label_me: ich
404 label_board: Forum
406 label_board: Forum
405 label_board_new: Neues Forum
407 label_board_new: Neues Forum
406 label_board_plural: Foren
408 label_board_plural: Foren
407 label_topic_plural: Themen
409 label_topic_plural: Themen
408 label_message_plural: Nachrichten
410 label_message_plural: Nachrichten
409 label_message_last: Letzte Nachricht
411 label_message_last: Letzte Nachricht
410 label_message_new: Neue Nachricht
412 label_message_new: Neue Nachricht
411 label_reply_plural: Antworten
413 label_reply_plural: Antworten
412 label_send_information: Sende Kontoinformationen zum Benutzer
414 label_send_information: Sende Kontoinformationen zum Benutzer
413 label_year: Jahr
415 label_year: Jahr
414 label_month: Monat
416 label_month: Monat
415 label_week: Woche
417 label_week: Woche
416 label_date_from: Von
418 label_date_from: Von
417 label_date_to: Bis
419 label_date_to: Bis
418 label_language_based: Sprachabhängig
420 label_language_based: Sprachabhängig
419 label_sort_by: Sortiert nach %s
421 label_sort_by: Sortiert nach %s
420 label_send_test_email: Test-E-Mail senden
422 label_send_test_email: Test-E-Mail senden
421 label_feeds_access_key_created_on: RSS-Zugriffsschlüssel vor %s erstellt
423 label_feeds_access_key_created_on: RSS-Zugriffsschlüssel vor %s erstellt
422 label_module_plural: Module
424 label_module_plural: Module
423 label_added_time_by: Von %s vor %s hinzugefügt
425 label_added_time_by: Von %s vor %s hinzugefügt
424 label_updated_time: Vor %s aktualisiert
426 label_updated_time: Vor %s aktualisiert
425 label_jump_to_a_project: Zu einem Projekt springen...
427 label_jump_to_a_project: Zu einem Projekt springen...
426
428
427 button_login: Anmelden
429 button_login: Anmelden
428 button_submit: OK
430 button_submit: OK
429 button_save: Speichern
431 button_save: Speichern
430 button_check_all: Alles auswählen
432 button_check_all: Alles auswählen
431 button_uncheck_all: Alles abwählen
433 button_uncheck_all: Alles abwählen
432 button_delete: Löschen
434 button_delete: Löschen
433 button_create: Anlegen
435 button_create: Anlegen
434 button_test: Testen
436 button_test: Testen
435 button_edit: Bearbeiten
437 button_edit: Bearbeiten
436 button_add: Hinzufügen
438 button_add: Hinzufügen
437 button_change: Wechseln
439 button_change: Wechseln
438 button_apply: Anwenden
440 button_apply: Anwenden
439 button_clear: Zurücksetzen
441 button_clear: Zurücksetzen
440 button_lock: Sperren
442 button_lock: Sperren
441 button_unlock: Entsperren
443 button_unlock: Entsperren
442 button_download: Download
444 button_download: Download
443 button_list: Liste
445 button_list: Liste
444 button_view: Siehe
446 button_view: Siehe
445 button_move: Verschieben
447 button_move: Verschieben
446 button_back: Zurück
448 button_back: Zurück
447 button_cancel: Abbrechen
449 button_cancel: Abbrechen
448 button_activate: Aktivieren
450 button_activate: Aktivieren
449 button_sort: Sortieren
451 button_sort: Sortieren
450 button_log_time: Aufwand buchen
452 button_log_time: Aufwand buchen
451 button_rollback: Auf diese Version zurücksetzen
453 button_rollback: Auf diese Version zurücksetzen
452 button_watch: Beobachten
454 button_watch: Beobachten
453 button_unwatch: Nicht beobachten
455 button_unwatch: Nicht beobachten
454 button_reply: Antworten
456 button_reply: Antworten
455 button_archive: Archivieren
457 button_archive: Archivieren
456 button_unarchive: Entarchivieren
458 button_unarchive: Entarchivieren
457 button_reset: Zurücksetzen
459 button_reset: Zurücksetzen
458 button_rename: Umbenennen
460 button_rename: Umbenennen
459
461
460 status_active: aktiv
462 status_active: aktiv
461 status_registered: angemeldet
463 status_registered: angemeldet
462 status_locked: gesperrt
464 status_locked: gesperrt
463
465
464 text_select_mail_notifications: Aktionen, für die Mailbenachrichtigung aktiviert werden soll.
466 text_select_mail_notifications: Aktionen, für die Mailbenachrichtigung aktiviert werden soll.
465 text_regexp_info: z. B. ^[A-Z0-9]+$
467 text_regexp_info: z. B. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 heißt keine Beschränkung
468 text_min_max_length_info: 0 heißt keine Beschränkung
467 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
469 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
468 text_workflow_edit: Workflow zum Bearbeiten auswählen
470 text_workflow_edit: Workflow zum Bearbeiten auswählen
469 text_are_you_sure: Sind Sie sicher?
471 text_are_you_sure: Sind Sie sicher?
470 text_journal_changed: geändert von %s zu %s
472 text_journal_changed: geändert von %s zu %s
471 text_journal_set_to: gestellt zu %s
473 text_journal_set_to: gestellt zu %s
472 text_journal_deleted: gelöscht
474 text_journal_deleted: gelöscht
473 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
475 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
474 text_tip_task_end_day: Aufgabe, die an diesem Tag endet
476 text_tip_task_end_day: Aufgabe, die an diesem Tag endet
475 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
477 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
476 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
478 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
477 text_caracters_maximum: Max. %d Zeichen.
479 text_caracters_maximum: Max. %d Zeichen.
478 text_length_between: Länge zwischen %d und %d Zeichen.
480 text_length_between: Länge zwischen %d und %d Zeichen.
479 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
481 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
480 text_unallowed_characters: Nicht erlaubte Zeichen
482 text_unallowed_characters: Nicht erlaubte Zeichen
481 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
483 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
482 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
484 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
483 text_issue_added: Ticket %s wurde erstellt.
485 text_issue_added: Ticket %s wurde erstellt.
484 text_issue_updated: Ticket %s wurde aktualisiert.
486 text_issue_updated: Ticket %s wurde aktualisiert.
485 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
487 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
486 text_issue_category_destroy_question: Einige Tickets (%d) sind dieser Kategorie zugeodnet. Was möchten Sie tun?
488 text_issue_category_destroy_question: Einige Tickets (%d) sind dieser Kategorie zugeodnet. Was möchten Sie tun?
487 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
489 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
488 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
490 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
489
491
490 default_role_manager: Manager
492 default_role_manager: Manager
491 default_role_developper: Developer
493 default_role_developper: Developer
492 default_role_reporter: Reporter
494 default_role_reporter: Reporter
493 default_tracker_bug: Fehler
495 default_tracker_bug: Fehler
494 default_tracker_feature: Feature
496 default_tracker_feature: Feature
495 default_tracker_support: Support
497 default_tracker_support: Support
496 default_issue_status_new: Neu
498 default_issue_status_new: Neu
497 default_issue_status_assigned: Zugewiesen
499 default_issue_status_assigned: Zugewiesen
498 default_issue_status_resolved: Gelöst
500 default_issue_status_resolved: Gelöst
499 default_issue_status_feedback: Feedback
501 default_issue_status_feedback: Feedback
500 default_issue_status_closed: Erledigt
502 default_issue_status_closed: Erledigt
501 default_issue_status_rejected: Abgewiesen
503 default_issue_status_rejected: Abgewiesen
502 default_doc_category_user: Benutzerdokumentation
504 default_doc_category_user: Benutzerdokumentation
503 default_doc_category_tech: Technische Dokumentation
505 default_doc_category_tech: Technische Dokumentation
504 default_priority_low: Niedrig
506 default_priority_low: Niedrig
505 default_priority_normal: Normal
507 default_priority_normal: Normal
506 default_priority_high: Hoch
508 default_priority_high: Hoch
507 default_priority_urgent: Dringend
509 default_priority_urgent: Dringend
508 default_priority_immediate: Sofort
510 default_priority_immediate: Sofort
509 default_activity_design: Design
511 default_activity_design: Design
510 default_activity_development: Development
512 default_activity_development: Development
511
513
512 enumeration_issue_priorities: Ticket-Prioritäten
514 enumeration_issue_priorities: Ticket-Prioritäten
513 enumeration_doc_categories: Dokumentenkategorien
515 enumeration_doc_categories: Dokumentenkategorien
514 enumeration_activities: Aktivitäten (Zeiterfassung)
516 enumeration_activities: Aktivitäten (Zeiterfassung)
515 label_file_plural: Dateien
517 label_file_plural: Dateien
516 label_changeset_plural: Changesets
518 label_changeset_plural: Changesets
517 field_column_names: Spalten
519 field_column_names: Spalten
518 label_default_columns: Default-Spalten
520 label_default_columns: Default-Spalten
519 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
521 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
520 setting_repositories_encodings: Repository-Kodierung
522 setting_repositories_encodings: Repository-Kodierung
521 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
523 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
522 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
524 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
523 label_no_change_option: (Keine Änderung)
525 label_no_change_option: (Keine Änderung)
524 notice_failed_to_save_issues: "%d von %d ausgewählten Tickets konnte(n) nicht gespeichert werden: %s."
526 notice_failed_to_save_issues: "%d von %d ausgewählten Tickets konnte(n) nicht gespeichert werden: %s."
525 label_theme: Stil
527 label_theme: Stil
526 label_default: Default
528 label_default: Default
527 label_search_titles_only: Nur Titel durchsuchen
529 label_search_titles_only: Nur Titel durchsuchen
528 label_nobody: Niemand
530 label_nobody: Niemand
529 button_change_password: Kennwort ändern
531 button_change_password: Kennwort ändern
530 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)."
532 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)."
531 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
533 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
532 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
534 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
533 label_user_mail_option_none: "Nur für Dinge, die ich beobachte oder an denen ich beteiligt bin"
535 label_user_mail_option_none: "Nur für Dinge, die ich beobachte oder an denen ich beteiligt bin"
534 setting_emails_footer: E-Mail-Fußzeile
536 setting_emails_footer: E-Mail-Fußzeile
535 label_float: Fließkommazahl
537 label_float: Fließkommazahl
536 button_copy: Kopieren
538 button_copy: Kopieren
537 mail_body_account_information_external: Sie können sich mit Ihrem Konto "%s" an Redmine anmelden.
539 mail_body_account_information_external: Sie können sich mit Ihrem Konto "%s" an Redmine anmelden.
538 mail_body_account_information: Ihre Redmine Konto-Informationen
540 mail_body_account_information: Ihre Redmine Konto-Informationen
539 setting_protocol: Protokoll
541 setting_protocol: Protokoll
540 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
542 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
541 setting_time_format: Zeitformat
543 setting_time_format: Zeitformat
542 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
544 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
543 mail_subject_account_activation_request: Antrag auf Redmine Kontoaktivierung
545 mail_subject_account_activation_request: Antrag auf Redmine Kontoaktivierung
544 mail_body_account_activation_request: 'Ein neuer Benutzer (%s) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'
546 mail_body_account_activation_request: 'Ein neuer Benutzer (%s) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'
545 label_registration_automatic_activation: Automatische Kontoaktivierung
547 label_registration_automatic_activation: Automatische Kontoaktivierung
546 label_registration_manual_activation: Manuelle Kontoaktivierung
548 label_registration_manual_activation: Manuelle Kontoaktivierung
547 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
549 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
548 field_time_zone: Zeitzone
550 field_time_zone: Zeitzone
549 text_caracters_minimum: Muss mindestens %d Zeichen lang sein.
551 text_caracters_minimum: Muss mindestens %d Zeichen lang sein.
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 button_annotate: Annotate
553 button_annotate: Annotate
552 label_issues_by: Issues by %s
554 label_issues_by: Issues by %s
553 field_searchable: Searchable
555 field_searchable: Searchable
554 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
556 label_age: Age
558 label_age: Age
557 notice_default_data_loaded: Default configuration successfully loaded.
559 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
560 text_load_default_configuration: Load the default configuration
559 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."
560 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"
561 button_update: Update
563 button_update: Update
562 label_change_properties: Change properties
564 label_change_properties: Change properties
563 label_general: General
565 label_general: General
564 label_repository_plural: Repositories
566 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
@@ -1,566 +1,567
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 have been updated by another user.
70 notice_locking_conflict: Data have been updated by another user.
71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
72 notice_not_authorized: You are not authorized to access this page.
71 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
73 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76 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."
77 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."
78 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."
79 notice_default_data_loaded: Default configuration successfully loaded.
78 notice_default_data_loaded: Default configuration successfully loaded.
80
79
81 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: "Entry and/or revision doesn't exist in the repository."
82 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
82
83
83 mail_subject_lost_password: Your Redmine password
84 mail_subject_lost_password: Your Redmine password
84 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
85 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
85 mail_subject_register: Redmine account activation
86 mail_subject_register: Redmine account activation
86 mail_body_register: 'To activate your Redmine account, click on the following link:'
87 mail_body_register: 'To activate your Redmine account, click on the following link:'
87 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
88 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
88 mail_body_account_information: Your Redmine account information
89 mail_body_account_information: Your Redmine account information
89 mail_subject_account_activation_request: Redmine account activation request
90 mail_subject_account_activation_request: Redmine account activation request
90 mail_body_account_activation_request: 'A new user (%s) has registered. His account is pending your approval:'
91 mail_body_account_activation_request: 'A new user (%s) has registered. His account is pending your approval:'
91
92
92 gui_validation_error: 1 error
93 gui_validation_error: 1 error
93 gui_validation_error_plural: %d errors
94 gui_validation_error_plural: %d errors
94
95
95 field_name: Name
96 field_name: Name
96 field_description: Description
97 field_description: Description
97 field_summary: Summary
98 field_summary: Summary
98 field_is_required: Required
99 field_is_required: Required
99 field_firstname: Firstname
100 field_firstname: Firstname
100 field_lastname: Lastname
101 field_lastname: Lastname
101 field_mail: Email
102 field_mail: Email
102 field_filename: File
103 field_filename: File
103 field_filesize: Size
104 field_filesize: Size
104 field_downloads: Downloads
105 field_downloads: Downloads
105 field_author: Author
106 field_author: Author
106 field_created_on: Created
107 field_created_on: Created
107 field_updated_on: Updated
108 field_updated_on: Updated
108 field_field_format: Format
109 field_field_format: Format
109 field_is_for_all: For all projects
110 field_is_for_all: For all projects
110 field_possible_values: Possible values
111 field_possible_values: Possible values
111 field_regexp: Regular expression
112 field_regexp: Regular expression
112 field_min_length: Minimum length
113 field_min_length: Minimum length
113 field_max_length: Maximum length
114 field_max_length: Maximum length
114 field_value: Value
115 field_value: Value
115 field_category: Category
116 field_category: Category
116 field_title: Title
117 field_title: Title
117 field_project: Project
118 field_project: Project
118 field_issue: Issue
119 field_issue: Issue
119 field_status: Status
120 field_status: Status
120 field_notes: Notes
121 field_notes: Notes
121 field_is_closed: Issue closed
122 field_is_closed: Issue closed
122 field_is_default: Default value
123 field_is_default: Default value
123 field_tracker: Tracker
124 field_tracker: Tracker
124 field_subject: Subject
125 field_subject: Subject
125 field_due_date: Due date
126 field_due_date: Due date
126 field_assigned_to: Assigned to
127 field_assigned_to: Assigned to
127 field_priority: Priority
128 field_priority: Priority
128 field_fixed_version: Fixed version
129 field_fixed_version: Fixed version
129 field_user: User
130 field_user: User
130 field_role: Role
131 field_role: Role
131 field_homepage: Homepage
132 field_homepage: Homepage
132 field_is_public: Public
133 field_is_public: Public
133 field_parent: Subproject of
134 field_parent: Subproject of
134 field_is_in_chlog: Issues displayed in changelog
135 field_is_in_chlog: Issues displayed in changelog
135 field_is_in_roadmap: Issues displayed in roadmap
136 field_is_in_roadmap: Issues displayed in roadmap
136 field_login: Login
137 field_login: Login
137 field_mail_notification: Email notifications
138 field_mail_notification: Email notifications
138 field_admin: Administrator
139 field_admin: Administrator
139 field_last_login_on: Last connection
140 field_last_login_on: Last connection
140 field_language: Language
141 field_language: Language
141 field_effective_date: Date
142 field_effective_date: Date
142 field_password: Password
143 field_password: Password
143 field_new_password: New password
144 field_new_password: New password
144 field_password_confirmation: Confirmation
145 field_password_confirmation: Confirmation
145 field_version: Version
146 field_version: Version
146 field_type: Type
147 field_type: Type
147 field_host: Host
148 field_host: Host
148 field_port: Port
149 field_port: Port
149 field_account: Account
150 field_account: Account
150 field_base_dn: Base DN
151 field_base_dn: Base DN
151 field_attr_login: Login attribute
152 field_attr_login: Login attribute
152 field_attr_firstname: Firstname attribute
153 field_attr_firstname: Firstname attribute
153 field_attr_lastname: Lastname attribute
154 field_attr_lastname: Lastname attribute
154 field_attr_mail: Email attribute
155 field_attr_mail: Email attribute
155 field_onthefly: On-the-fly user creation
156 field_onthefly: On-the-fly user creation
156 field_start_date: Start
157 field_start_date: Start
157 field_done_ratio: %% Done
158 field_done_ratio: %% Done
158 field_auth_source: Authentication mode
159 field_auth_source: Authentication mode
159 field_hide_mail: Hide my email address
160 field_hide_mail: Hide my email address
160 field_comments: Comment
161 field_comments: Comment
161 field_url: URL
162 field_url: URL
162 field_start_page: Start page
163 field_start_page: Start page
163 field_subproject: Subproject
164 field_subproject: Subproject
164 field_hours: Hours
165 field_hours: Hours
165 field_activity: Activity
166 field_activity: Activity
166 field_spent_on: Date
167 field_spent_on: Date
167 field_identifier: Identifier
168 field_identifier: Identifier
168 field_is_filter: Used as a filter
169 field_is_filter: Used as a filter
169 field_issue_to_id: Related issue
170 field_issue_to_id: Related issue
170 field_delay: Delay
171 field_delay: Delay
171 field_assignable: Issues can be assigned to this role
172 field_assignable: Issues can be assigned to this role
172 field_redirect_existing_links: Redirect existing links
173 field_redirect_existing_links: Redirect existing links
173 field_estimated_hours: Estimated time
174 field_estimated_hours: Estimated time
174 field_column_names: Columns
175 field_column_names: Columns
175 field_time_zone: Time zone
176 field_time_zone: Time zone
176 field_searchable: Searchable
177 field_searchable: Searchable
177 field_default_value: Default value
178 field_default_value: Default value
178
179
179 setting_app_title: Application title
180 setting_app_title: Application title
180 setting_app_subtitle: Application subtitle
181 setting_app_subtitle: Application subtitle
181 setting_welcome_text: Welcome text
182 setting_welcome_text: Welcome text
182 setting_default_language: Default language
183 setting_default_language: Default language
183 setting_login_required: Authentication required
184 setting_login_required: Authentication required
184 setting_self_registration: Self-registration
185 setting_self_registration: Self-registration
185 setting_attachment_max_size: Attachment max. size
186 setting_attachment_max_size: Attachment max. size
186 setting_issues_export_limit: Issues export limit
187 setting_issues_export_limit: Issues export limit
187 setting_mail_from: Emission email address
188 setting_mail_from: Emission email address
188 setting_bcc_recipients: Blind carbon copy recipients (bcc)
189 setting_bcc_recipients: Blind carbon copy recipients (bcc)
189 setting_host_name: Host name
190 setting_host_name: Host name
190 setting_text_formatting: Text formatting
191 setting_text_formatting: Text formatting
191 setting_wiki_compression: Wiki history compression
192 setting_wiki_compression: Wiki history compression
192 setting_feeds_limit: Feed content limit
193 setting_feeds_limit: Feed content limit
193 setting_autofetch_changesets: Autofetch commits
194 setting_autofetch_changesets: Autofetch commits
194 setting_sys_api_enabled: Enable WS for repository management
195 setting_sys_api_enabled: Enable WS for repository management
195 setting_commit_ref_keywords: Referencing keywords
196 setting_commit_ref_keywords: Referencing keywords
196 setting_commit_fix_keywords: Fixing keywords
197 setting_commit_fix_keywords: Fixing keywords
197 setting_autologin: Autologin
198 setting_autologin: Autologin
198 setting_date_format: Date format
199 setting_date_format: Date format
199 setting_time_format: Time format
200 setting_time_format: Time format
200 setting_cross_project_issue_relations: Allow cross-project issue relations
201 setting_cross_project_issue_relations: Allow cross-project issue relations
201 setting_issue_list_default_columns: Default columns displayed on the issue list
202 setting_issue_list_default_columns: Default columns displayed on the issue list
202 setting_repositories_encodings: Repositories encodings
203 setting_repositories_encodings: Repositories encodings
203 setting_emails_footer: Emails footer
204 setting_emails_footer: Emails footer
204 setting_protocol: Protocol
205 setting_protocol: Protocol
205 setting_per_page_options: Objects per page options
206 setting_per_page_options: Objects per page options
206
207
207 label_user: User
208 label_user: User
208 label_user_plural: Users
209 label_user_plural: Users
209 label_user_new: New user
210 label_user_new: New user
210 label_project: Project
211 label_project: Project
211 label_project_new: New project
212 label_project_new: New project
212 label_project_plural: Projects
213 label_project_plural: Projects
213 label_project_all: All Projects
214 label_project_all: All Projects
214 label_project_latest: Latest projects
215 label_project_latest: Latest projects
215 label_issue: Issue
216 label_issue: Issue
216 label_issue_new: New issue
217 label_issue_new: New issue
217 label_issue_plural: Issues
218 label_issue_plural: Issues
218 label_issue_view_all: View all issues
219 label_issue_view_all: View all issues
219 label_issues_by: Issues by %s
220 label_issues_by: Issues by %s
220 label_document: Document
221 label_document: Document
221 label_document_new: New document
222 label_document_new: New document
222 label_document_plural: Documents
223 label_document_plural: Documents
223 label_role: Role
224 label_role: Role
224 label_role_plural: Roles
225 label_role_plural: Roles
225 label_role_new: New role
226 label_role_new: New role
226 label_role_and_permissions: Roles and permissions
227 label_role_and_permissions: Roles and permissions
227 label_member: Member
228 label_member: Member
228 label_member_new: New member
229 label_member_new: New member
229 label_member_plural: Members
230 label_member_plural: Members
230 label_tracker: Tracker
231 label_tracker: Tracker
231 label_tracker_plural: Trackers
232 label_tracker_plural: Trackers
232 label_tracker_new: New tracker
233 label_tracker_new: New tracker
233 label_workflow: Workflow
234 label_workflow: Workflow
234 label_issue_status: Issue status
235 label_issue_status: Issue status
235 label_issue_status_plural: Issue statuses
236 label_issue_status_plural: Issue statuses
236 label_issue_status_new: New status
237 label_issue_status_new: New status
237 label_issue_category: Issue category
238 label_issue_category: Issue category
238 label_issue_category_plural: Issue categories
239 label_issue_category_plural: Issue categories
239 label_issue_category_new: New category
240 label_issue_category_new: New category
240 label_custom_field: Custom field
241 label_custom_field: Custom field
241 label_custom_field_plural: Custom fields
242 label_custom_field_plural: Custom fields
242 label_custom_field_new: New custom field
243 label_custom_field_new: New custom field
243 label_enumerations: Enumerations
244 label_enumerations: Enumerations
244 label_enumeration_new: New value
245 label_enumeration_new: New value
245 label_information: Information
246 label_information: Information
246 label_information_plural: Information
247 label_information_plural: Information
247 label_please_login: Please login
248 label_please_login: Please login
248 label_register: Register
249 label_register: Register
249 label_password_lost: Lost password
250 label_password_lost: Lost password
250 label_home: Home
251 label_home: Home
251 label_my_page: My page
252 label_my_page: My page
252 label_my_account: My account
253 label_my_account: My account
253 label_my_projects: My projects
254 label_my_projects: My projects
254 label_administration: Administration
255 label_administration: Administration
255 label_login: Sign in
256 label_login: Sign in
256 label_logout: Sign out
257 label_logout: Sign out
257 label_help: Help
258 label_help: Help
258 label_reported_issues: Reported issues
259 label_reported_issues: Reported issues
259 label_assigned_to_me_issues: Issues assigned to me
260 label_assigned_to_me_issues: Issues assigned to me
260 label_last_login: Last connection
261 label_last_login: Last connection
261 label_last_updates: Last updated
262 label_last_updates: Last updated
262 label_last_updates_plural: %d last updated
263 label_last_updates_plural: %d last updated
263 label_registered_on: Registered on
264 label_registered_on: Registered on
264 label_activity: Activity
265 label_activity: Activity
265 label_new: New
266 label_new: New
266 label_logged_as: Logged as
267 label_logged_as: Logged as
267 label_environment: Environment
268 label_environment: Environment
268 label_authentication: Authentication
269 label_authentication: Authentication
269 label_auth_source: Authentication mode
270 label_auth_source: Authentication mode
270 label_auth_source_new: New authentication mode
271 label_auth_source_new: New authentication mode
271 label_auth_source_plural: Authentication modes
272 label_auth_source_plural: Authentication modes
272 label_subproject_plural: Subprojects
273 label_subproject_plural: Subprojects
273 label_min_max_length: Min - Max length
274 label_min_max_length: Min - Max length
274 label_list: List
275 label_list: List
275 label_date: Date
276 label_date: Date
276 label_integer: Integer
277 label_integer: Integer
277 label_float: Float
278 label_float: Float
278 label_boolean: Boolean
279 label_boolean: Boolean
279 label_string: Text
280 label_string: Text
280 label_text: Long text
281 label_text: Long text
281 label_attribute: Attribute
282 label_attribute: Attribute
282 label_attribute_plural: Attributes
283 label_attribute_plural: Attributes
283 label_download: %d Download
284 label_download: %d Download
284 label_download_plural: %d Downloads
285 label_download_plural: %d Downloads
285 label_no_data: No data to display
286 label_no_data: No data to display
286 label_change_status: Change status
287 label_change_status: Change status
287 label_history: History
288 label_history: History
288 label_attachment: File
289 label_attachment: File
289 label_attachment_new: New file
290 label_attachment_new: New file
290 label_attachment_delete: Delete file
291 label_attachment_delete: Delete file
291 label_attachment_plural: Files
292 label_attachment_plural: Files
292 label_report: Report
293 label_report: Report
293 label_report_plural: Reports
294 label_report_plural: Reports
294 label_news: News
295 label_news: News
295 label_news_new: Add news
296 label_news_new: Add news
296 label_news_plural: News
297 label_news_plural: News
297 label_news_latest: Latest news
298 label_news_latest: Latest news
298 label_news_view_all: View all news
299 label_news_view_all: View all news
299 label_change_log: Change log
300 label_change_log: Change log
300 label_settings: Settings
301 label_settings: Settings
301 label_overview: Overview
302 label_overview: Overview
302 label_version: Version
303 label_version: Version
303 label_version_new: New version
304 label_version_new: New version
304 label_version_plural: Versions
305 label_version_plural: Versions
305 label_confirmation: Confirmation
306 label_confirmation: Confirmation
306 label_export_to: Export to
307 label_export_to: Export to
307 label_read: Read...
308 label_read: Read...
308 label_public_projects: Public projects
309 label_public_projects: Public projects
309 label_open_issues: open
310 label_open_issues: open
310 label_open_issues_plural: open
311 label_open_issues_plural: open
311 label_closed_issues: closed
312 label_closed_issues: closed
312 label_closed_issues_plural: closed
313 label_closed_issues_plural: closed
313 label_total: Total
314 label_total: Total
314 label_permissions: Permissions
315 label_permissions: Permissions
315 label_current_status: Current status
316 label_current_status: Current status
316 label_new_statuses_allowed: New statuses allowed
317 label_new_statuses_allowed: New statuses allowed
317 label_all: all
318 label_all: all
318 label_none: none
319 label_none: none
319 label_nobody: nobody
320 label_nobody: nobody
320 label_next: Next
321 label_next: Next
321 label_previous: Previous
322 label_previous: Previous
322 label_used_by: Used by
323 label_used_by: Used by
323 label_details: Details
324 label_details: Details
324 label_add_note: Add a note
325 label_add_note: Add a note
325 label_per_page: Per page
326 label_per_page: Per page
326 label_calendar: Calendar
327 label_calendar: Calendar
327 label_months_from: months from
328 label_months_from: months from
328 label_gantt: Gantt
329 label_gantt: Gantt
329 label_internal: Internal
330 label_internal: Internal
330 label_last_changes: last %d changes
331 label_last_changes: last %d changes
331 label_change_view_all: View all changes
332 label_change_view_all: View all changes
332 label_personalize_page: Personalize this page
333 label_personalize_page: Personalize this page
333 label_comment: Comment
334 label_comment: Comment
334 label_comment_plural: Comments
335 label_comment_plural: Comments
335 label_comment_add: Add a comment
336 label_comment_add: Add a comment
336 label_comment_added: Comment added
337 label_comment_added: Comment added
337 label_comment_delete: Delete comments
338 label_comment_delete: Delete comments
338 label_query: Custom query
339 label_query: Custom query
339 label_query_plural: Custom queries
340 label_query_plural: Custom queries
340 label_query_new: New query
341 label_query_new: New query
341 label_filter_add: Add filter
342 label_filter_add: Add filter
342 label_filter_plural: Filters
343 label_filter_plural: Filters
343 label_equals: is
344 label_equals: is
344 label_not_equals: is not
345 label_not_equals: is not
345 label_in_less_than: in less than
346 label_in_less_than: in less than
346 label_in_more_than: in more than
347 label_in_more_than: in more than
347 label_in: in
348 label_in: in
348 label_today: today
349 label_today: today
349 label_this_week: this week
350 label_this_week: this week
350 label_less_than_ago: less than days ago
351 label_less_than_ago: less than days ago
351 label_more_than_ago: more than days ago
352 label_more_than_ago: more than days ago
352 label_ago: days ago
353 label_ago: days ago
353 label_contains: contains
354 label_contains: contains
354 label_not_contains: doesn't contain
355 label_not_contains: doesn't contain
355 label_day_plural: days
356 label_day_plural: days
356 label_repository: Repository
357 label_repository: Repository
357 label_repository_plural: Repositories
358 label_repository_plural: Repositories
358 label_browse: Browse
359 label_browse: Browse
359 label_modification: %d change
360 label_modification: %d change
360 label_modification_plural: %d changes
361 label_modification_plural: %d changes
361 label_revision: Revision
362 label_revision: Revision
362 label_revision_plural: Revisions
363 label_revision_plural: Revisions
363 label_associated_revisions: Associated revisions
364 label_associated_revisions: Associated revisions
364 label_added: added
365 label_added: added
365 label_modified: modified
366 label_modified: modified
366 label_deleted: deleted
367 label_deleted: deleted
367 label_latest_revision: Latest revision
368 label_latest_revision: Latest revision
368 label_latest_revision_plural: Latest revisions
369 label_latest_revision_plural: Latest revisions
369 label_view_revisions: View revisions
370 label_view_revisions: View revisions
370 label_max_size: Maximum size
371 label_max_size: Maximum size
371 label_on: 'on'
372 label_on: 'on'
372 label_sort_highest: Move to top
373 label_sort_highest: Move to top
373 label_sort_higher: Move up
374 label_sort_higher: Move up
374 label_sort_lower: Move down
375 label_sort_lower: Move down
375 label_sort_lowest: Move to bottom
376 label_sort_lowest: Move to bottom
376 label_roadmap: Roadmap
377 label_roadmap: Roadmap
377 label_roadmap_due_in: Due in
378 label_roadmap_due_in: Due in
378 label_roadmap_overdue: %s late
379 label_roadmap_overdue: %s late
379 label_roadmap_no_issues: No issues for this version
380 label_roadmap_no_issues: No issues for this version
380 label_search: Search
381 label_search: Search
381 label_result_plural: Results
382 label_result_plural: Results
382 label_all_words: All words
383 label_all_words: All words
383 label_wiki: Wiki
384 label_wiki: Wiki
384 label_wiki_edit: Wiki edit
385 label_wiki_edit: Wiki edit
385 label_wiki_edit_plural: Wiki edits
386 label_wiki_edit_plural: Wiki edits
386 label_wiki_page: Wiki page
387 label_wiki_page: Wiki page
387 label_wiki_page_plural: Wiki pages
388 label_wiki_page_plural: Wiki pages
388 label_index_by_title: Index by title
389 label_index_by_title: Index by title
389 label_index_by_date: Index by date
390 label_index_by_date: Index by date
390 label_current_version: Current version
391 label_current_version: Current version
391 label_preview: Preview
392 label_preview: Preview
392 label_feed_plural: Feeds
393 label_feed_plural: Feeds
393 label_changes_details: Details of all changes
394 label_changes_details: Details of all changes
394 label_issue_tracking: Issue tracking
395 label_issue_tracking: Issue tracking
395 label_spent_time: Spent time
396 label_spent_time: Spent time
396 label_f_hour: %.2f hour
397 label_f_hour: %.2f hour
397 label_f_hour_plural: %.2f hours
398 label_f_hour_plural: %.2f hours
398 label_time_tracking: Time tracking
399 label_time_tracking: Time tracking
399 label_change_plural: Changes
400 label_change_plural: Changes
400 label_statistics: Statistics
401 label_statistics: Statistics
401 label_commits_per_month: Commits per month
402 label_commits_per_month: Commits per month
402 label_commits_per_author: Commits per author
403 label_commits_per_author: Commits per author
403 label_view_diff: View differences
404 label_view_diff: View differences
404 label_diff_inline: inline
405 label_diff_inline: inline
405 label_diff_side_by_side: side by side
406 label_diff_side_by_side: side by side
406 label_options: Options
407 label_options: Options
407 label_copy_workflow_from: Copy workflow from
408 label_copy_workflow_from: Copy workflow from
408 label_permissions_report: Permissions report
409 label_permissions_report: Permissions report
409 label_watched_issues: Watched issues
410 label_watched_issues: Watched issues
410 label_related_issues: Related issues
411 label_related_issues: Related issues
411 label_applied_status: Applied status
412 label_applied_status: Applied status
412 label_loading: Loading...
413 label_loading: Loading...
413 label_relation_new: New relation
414 label_relation_new: New relation
414 label_relation_delete: Delete relation
415 label_relation_delete: Delete relation
415 label_relates_to: related to
416 label_relates_to: related to
416 label_duplicates: duplicates
417 label_duplicates: duplicates
417 label_blocks: blocks
418 label_blocks: blocks
418 label_blocked_by: blocked by
419 label_blocked_by: blocked by
419 label_precedes: precedes
420 label_precedes: precedes
420 label_follows: follows
421 label_follows: follows
421 label_end_to_start: end to start
422 label_end_to_start: end to start
422 label_end_to_end: end to end
423 label_end_to_end: end to end
423 label_start_to_start: start to start
424 label_start_to_start: start to start
424 label_start_to_end: start to end
425 label_start_to_end: start to end
425 label_stay_logged_in: Stay logged in
426 label_stay_logged_in: Stay logged in
426 label_disabled: disabled
427 label_disabled: disabled
427 label_show_completed_versions: Show completed versions
428 label_show_completed_versions: Show completed versions
428 label_me: me
429 label_me: me
429 label_board: Forum
430 label_board: Forum
430 label_board_new: New forum
431 label_board_new: New forum
431 label_board_plural: Forums
432 label_board_plural: Forums
432 label_topic_plural: Topics
433 label_topic_plural: Topics
433 label_message_plural: Messages
434 label_message_plural: Messages
434 label_message_last: Last message
435 label_message_last: Last message
435 label_message_new: New message
436 label_message_new: New message
436 label_reply_plural: Replies
437 label_reply_plural: Replies
437 label_send_information: Send account information to the user
438 label_send_information: Send account information to the user
438 label_year: Year
439 label_year: Year
439 label_month: Month
440 label_month: Month
440 label_week: Week
441 label_week: Week
441 label_date_from: From
442 label_date_from: From
442 label_date_to: To
443 label_date_to: To
443 label_language_based: Based on user's language
444 label_language_based: Based on user's language
444 label_sort_by: Sort by %s
445 label_sort_by: Sort by %s
445 label_send_test_email: Send a test email
446 label_send_test_email: Send a test email
446 label_feeds_access_key_created_on: RSS access key created %s ago
447 label_feeds_access_key_created_on: RSS access key created %s ago
447 label_module_plural: Modules
448 label_module_plural: Modules
448 label_added_time_by: Added by %s %s ago
449 label_added_time_by: Added by %s %s ago
449 label_updated_time: Updated %s ago
450 label_updated_time: Updated %s ago
450 label_jump_to_a_project: Jump to a project...
451 label_jump_to_a_project: Jump to a project...
451 label_file_plural: Files
452 label_file_plural: Files
452 label_changeset_plural: Changesets
453 label_changeset_plural: Changesets
453 label_default_columns: Default columns
454 label_default_columns: Default columns
454 label_no_change_option: (No change)
455 label_no_change_option: (No change)
455 label_bulk_edit_selected_issues: Bulk edit selected issues
456 label_bulk_edit_selected_issues: Bulk edit selected issues
456 label_theme: Theme
457 label_theme: Theme
457 label_default: Default
458 label_default: Default
458 label_search_titles_only: Search titles only
459 label_search_titles_only: Search titles only
459 label_user_mail_option_all: "For any event on all my projects"
460 label_user_mail_option_all: "For any event on all my projects"
460 label_user_mail_option_selected: "For any event on the selected projects only..."
461 label_user_mail_option_selected: "For any event on the selected projects only..."
461 label_user_mail_option_none: "Only for things I watch or I'm involved in"
462 label_user_mail_option_none: "Only for things I watch or I'm involved in"
462 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
463 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
463 label_registration_activation_by_email: account activation by email
464 label_registration_activation_by_email: account activation by email
464 label_registration_manual_activation: manual account activation
465 label_registration_manual_activation: manual account activation
465 label_registration_automatic_activation: automatic account activation
466 label_registration_automatic_activation: automatic account activation
466 label_display_per_page: 'Per page: %s'
467 label_display_per_page: 'Per page: %s'
467 label_age: Age
468 label_age: Age
468 label_change_properties: Change properties
469 label_change_properties: Change properties
469 label_general: General
470 label_general: General
470
471
471 button_login: Login
472 button_login: Login
472 button_submit: Submit
473 button_submit: Submit
473 button_save: Save
474 button_save: Save
474 button_check_all: Check all
475 button_check_all: Check all
475 button_uncheck_all: Uncheck all
476 button_uncheck_all: Uncheck all
476 button_delete: Delete
477 button_delete: Delete
477 button_create: Create
478 button_create: Create
478 button_test: Test
479 button_test: Test
479 button_edit: Edit
480 button_edit: Edit
480 button_add: Add
481 button_add: Add
481 button_change: Change
482 button_change: Change
482 button_apply: Apply
483 button_apply: Apply
483 button_clear: Clear
484 button_clear: Clear
484 button_lock: Lock
485 button_lock: Lock
485 button_unlock: Unlock
486 button_unlock: Unlock
486 button_download: Download
487 button_download: Download
487 button_list: List
488 button_list: List
488 button_view: View
489 button_view: View
489 button_move: Move
490 button_move: Move
490 button_back: Back
491 button_back: Back
491 button_cancel: Cancel
492 button_cancel: Cancel
492 button_activate: Activate
493 button_activate: Activate
493 button_sort: Sort
494 button_sort: Sort
494 button_log_time: Log time
495 button_log_time: Log time
495 button_rollback: Rollback to this version
496 button_rollback: Rollback to this version
496 button_watch: Watch
497 button_watch: Watch
497 button_unwatch: Unwatch
498 button_unwatch: Unwatch
498 button_reply: Reply
499 button_reply: Reply
499 button_archive: Archive
500 button_archive: Archive
500 button_unarchive: Unarchive
501 button_unarchive: Unarchive
501 button_reset: Reset
502 button_reset: Reset
502 button_rename: Rename
503 button_rename: Rename
503 button_change_password: Change password
504 button_change_password: Change password
504 button_copy: Copy
505 button_copy: Copy
505 button_annotate: Annotate
506 button_annotate: Annotate
506 button_update: Update
507 button_update: Update
507
508
508 status_active: active
509 status_active: active
509 status_registered: registered
510 status_registered: registered
510 status_locked: locked
511 status_locked: locked
511
512
512 text_select_mail_notifications: Select actions for which email notifications should be sent.
513 text_select_mail_notifications: Select actions for which email notifications should be sent.
513 text_regexp_info: eg. ^[A-Z0-9]+$
514 text_regexp_info: eg. ^[A-Z0-9]+$
514 text_min_max_length_info: 0 means no restriction
515 text_min_max_length_info: 0 means no restriction
515 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
516 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
516 text_workflow_edit: Select a role and a tracker to edit the workflow
517 text_workflow_edit: Select a role and a tracker to edit the workflow
517 text_are_you_sure: Are you sure ?
518 text_are_you_sure: Are you sure ?
518 text_journal_changed: changed from %s to %s
519 text_journal_changed: changed from %s to %s
519 text_journal_set_to: set to %s
520 text_journal_set_to: set to %s
520 text_journal_deleted: deleted
521 text_journal_deleted: deleted
521 text_tip_task_begin_day: task beginning this day
522 text_tip_task_begin_day: task beginning this day
522 text_tip_task_end_day: task ending this day
523 text_tip_task_end_day: task ending this day
523 text_tip_task_begin_end_day: task beginning and ending this day
524 text_tip_task_begin_end_day: task beginning and ending this day
524 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
525 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
525 text_caracters_maximum: %d characters maximum.
526 text_caracters_maximum: %d characters maximum.
526 text_caracters_minimum: Must be at least %d characters long.
527 text_caracters_minimum: Must be at least %d characters long.
527 text_length_between: Length between %d and %d characters.
528 text_length_between: Length between %d and %d characters.
528 text_tracker_no_workflow: No workflow defined for this tracker
529 text_tracker_no_workflow: No workflow defined for this tracker
529 text_unallowed_characters: Unallowed characters
530 text_unallowed_characters: Unallowed characters
530 text_comma_separated: Multiple values allowed (comma separated).
531 text_comma_separated: Multiple values allowed (comma separated).
531 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
532 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
532 text_issue_added: Issue %s has been reported.
533 text_issue_added: Issue %s has been reported.
533 text_issue_updated: Issue %s has been updated.
534 text_issue_updated: Issue %s has been updated.
534 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
535 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
535 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
536 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
536 text_issue_category_destroy_assignments: Remove category assignments
537 text_issue_category_destroy_assignments: Remove category assignments
537 text_issue_category_reassign_to: Reassign issues to this category
538 text_issue_category_reassign_to: Reassign issues to this category
538 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)."
539 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)."
539 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."
540 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."
540 text_load_default_configuration: Load the default configuration
541 text_load_default_configuration: Load the default configuration
541
542
542 default_role_manager: Manager
543 default_role_manager: Manager
543 default_role_developper: Developer
544 default_role_developper: Developer
544 default_role_reporter: Reporter
545 default_role_reporter: Reporter
545 default_tracker_bug: Bug
546 default_tracker_bug: Bug
546 default_tracker_feature: Feature
547 default_tracker_feature: Feature
547 default_tracker_support: Support
548 default_tracker_support: Support
548 default_issue_status_new: New
549 default_issue_status_new: New
549 default_issue_status_assigned: Assigned
550 default_issue_status_assigned: Assigned
550 default_issue_status_resolved: Resolved
551 default_issue_status_resolved: Resolved
551 default_issue_status_feedback: Feedback
552 default_issue_status_feedback: Feedback
552 default_issue_status_closed: Closed
553 default_issue_status_closed: Closed
553 default_issue_status_rejected: Rejected
554 default_issue_status_rejected: Rejected
554 default_doc_category_user: User documentation
555 default_doc_category_user: User documentation
555 default_doc_category_tech: Technical documentation
556 default_doc_category_tech: Technical documentation
556 default_priority_low: Low
557 default_priority_low: Low
557 default_priority_normal: Normal
558 default_priority_normal: Normal
558 default_priority_high: High
559 default_priority_high: High
559 default_priority_urgent: Urgent
560 default_priority_urgent: Urgent
560 default_priority_immediate: Immediate
561 default_priority_immediate: Immediate
561 default_activity_design: Design
562 default_activity_design: Design
562 default_activity_development: Development
563 default_activity_development: Development
563
564
564 enumeration_issue_priorities: Issue priorities
565 enumeration_issue_priorities: Issue priorities
565 enumeration_doc_categories: Document categories
566 enumeration_doc_categories: Document categories
566 enumeration_activities: Activities (time tracking)
567 enumeration_activities: Activities (time tracking)
@@ -1,568 +1,570
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_scm_error: La entrada y/o la revisión no existe en el repositorio.
72 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.
73
72
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"
75
74 mail_subject_lost_password: Tu contraseña del CIYAT - Gestor de Solicitudes
76 mail_subject_lost_password: Tu contraseña del CIYAT - Gestor de Solicitudes
75 mail_body_lost_password: 'Para cambiar su contraseña de Redmine, haga click en el siguiente enlace:'
77 mail_body_lost_password: 'Para cambiar su contraseña de Redmine, haga click en el siguiente enlace:'
76 mail_subject_register: Activación de la cuenta del CIYAT - Gestor de Solicitudes
78 mail_subject_register: Activación de la cuenta del CIYAT - Gestor de Solicitudes
77 mail_body_register: 'Para activar su cuenta Redmine, haga click en el siguiente enlace:'
79 mail_body_register: 'Para activar su cuenta Redmine, haga click en el siguiente enlace:'
78
80
79 gui_validation_error: 1 error
81 gui_validation_error: 1 error
80 gui_validation_error_plural: %d errores
82 gui_validation_error_plural: %d errores
81
83
82 field_name: Nombre
84 field_name: Nombre
83 field_description: Descripción
85 field_description: Descripción
84 field_summary: Resumen
86 field_summary: Resumen
85 field_is_required: Obligatorio
87 field_is_required: Obligatorio
86 field_firstname: Nombre
88 field_firstname: Nombre
87 field_lastname: Apellido
89 field_lastname: Apellido
88 field_mail: Correo electrónico
90 field_mail: Correo electrónico
89 field_filename: Fichero
91 field_filename: Fichero
90 field_filesize: Tamaño
92 field_filesize: Tamaño
91 field_downloads: Descargas
93 field_downloads: Descargas
92 field_author: Autor
94 field_author: Autor
93 field_created_on: Creado
95 field_created_on: Creado
94 field_updated_on: Actualizado
96 field_updated_on: Actualizado
95 field_field_format: Formato
97 field_field_format: Formato
96 field_is_for_all: Para todos los proyectos
98 field_is_for_all: Para todos los proyectos
97 field_possible_values: Valores posibles
99 field_possible_values: Valores posibles
98 field_regexp: Expresión regular
100 field_regexp: Expresión regular
99 field_min_length: Longitud mínima
101 field_min_length: Longitud mínima
100 field_max_length: Longitud máxima
102 field_max_length: Longitud máxima
101 field_value: Valor
103 field_value: Valor
102 field_category: Categoría
104 field_category: Categoría
103 field_title: Título
105 field_title: Título
104 field_project: Proyecto
106 field_project: Proyecto
105 field_issue: Petición
107 field_issue: Petición
106 field_status: Estado
108 field_status: Estado
107 field_notes: Notas
109 field_notes: Notas
108 field_is_closed: Petición resuelta
110 field_is_closed: Petición resuelta
109 field_is_default: Estado por defecto
111 field_is_default: Estado por defecto
110 field_tracker: Tracker
112 field_tracker: Tracker
111 field_subject: Tema
113 field_subject: Tema
112 field_due_date: Fecha fin
114 field_due_date: Fecha fin
113 field_assigned_to: Asignado a
115 field_assigned_to: Asignado a
114 field_priority: Prioridad
116 field_priority: Prioridad
115 field_fixed_version: Versión
117 field_fixed_version: Versión
116 field_user: Usuario
118 field_user: Usuario
117 field_role: Perfil
119 field_role: Perfil
118 field_homepage: Sitio web
120 field_homepage: Sitio web
119 field_is_public: Público
121 field_is_public: Público
120 field_parent: Proyecto padre
122 field_parent: Proyecto padre
121 field_is_in_chlog: Consultar las peticiones en el histórico
123 field_is_in_chlog: Consultar las peticiones en el histórico
122 field_is_in_roadmap: Consultar las peticiones en el roadmap
124 field_is_in_roadmap: Consultar las peticiones en el roadmap
123 field_login: Identificador
125 field_login: Identificador
124 field_mail_notification: Notificaciones por correo
126 field_mail_notification: Notificaciones por correo
125 field_admin: Administrador
127 field_admin: Administrador
126 field_last_login_on: Última conexión
128 field_last_login_on: Última conexión
127 field_language: Idioma
129 field_language: Idioma
128 field_effective_date: Fecha
130 field_effective_date: Fecha
129 field_password: Contraseña
131 field_password: Contraseña
130 field_new_password: Nueva contraseña
132 field_new_password: Nueva contraseña
131 field_password_confirmation: Confirmación
133 field_password_confirmation: Confirmación
132 field_version: Versión
134 field_version: Versión
133 field_type: Tipo
135 field_type: Tipo
134 field_host: Anfitrión
136 field_host: Anfitrión
135 field_port: Puerto
137 field_port: Puerto
136 field_account: Cuenta
138 field_account: Cuenta
137 field_base_dn: DN base
139 field_base_dn: DN base
138 field_attr_login: Cualidad del identificador
140 field_attr_login: Cualidad del identificador
139 field_attr_firstname: Cualidad del nombre
141 field_attr_firstname: Cualidad del nombre
140 field_attr_lastname: Cualidad del apellido
142 field_attr_lastname: Cualidad del apellido
141 field_attr_mail: Cualidad del Email
143 field_attr_mail: Cualidad del Email
142 field_onthefly: Creación del usuario "al vuelo"
144 field_onthefly: Creación del usuario "al vuelo"
143 field_start_date: Fecha de inicio
145 field_start_date: Fecha de inicio
144 field_done_ratio: %% Realizado
146 field_done_ratio: %% Realizado
145 field_auth_source: Modo de identificación
147 field_auth_source: Modo de identificación
146 field_hide_mail: Ocultar mi dirección de correo
148 field_hide_mail: Ocultar mi dirección de correo
147 field_comment: Comentario
149 field_comment: Comentario
148 field_url: URL
150 field_url: URL
149 field_start_page: Página principal
151 field_start_page: Página principal
150 field_subproject: Proyecto secundario
152 field_subproject: Proyecto secundario
151 field_hours: Horas
153 field_hours: Horas
152 field_activity: Actividad
154 field_activity: Actividad
153 field_spent_on: Fecha
155 field_spent_on: Fecha
154 field_identifier: Identificador
156 field_identifier: Identificador
155 field_is_filter: Usado como filtro
157 field_is_filter: Usado como filtro
156 field_issue_to_id: Petición Relacionada
158 field_issue_to_id: Petición Relacionada
157 field_delay: Retraso
159 field_delay: Retraso
158 field_default_value: Estado por defecto
160 field_default_value: Estado por defecto
159
161
160 setting_app_title: Título de la aplicación
162 setting_app_title: Título de la aplicación
161 setting_app_subtitle: Subtítulo de la aplicación
163 setting_app_subtitle: Subtítulo de la aplicación
162 setting_welcome_text: Texto de bienvenida
164 setting_welcome_text: Texto de bienvenida
163 setting_default_language: Idioma por defecto
165 setting_default_language: Idioma por defecto
164 setting_login_required: Se requiere identificación
166 setting_login_required: Se requiere identificación
165 setting_self_registration: Registro permitido
167 setting_self_registration: Registro permitido
166 setting_attachment_max_size: Tamaño máximo del fichero
168 setting_attachment_max_size: Tamaño máximo del fichero
167 setting_issues_export_limit: Límite de exportación de peticiones
169 setting_issues_export_limit: Límite de exportación de peticiones
168 setting_mail_from: Correo desde el que enviar mensajes
170 setting_mail_from: Correo desde el que enviar mensajes
169 setting_host_name: Nombre de host
171 setting_host_name: Nombre de host
170 setting_text_formatting: Formato de texto
172 setting_text_formatting: Formato de texto
171 setting_wiki_compression: Compresión del historial de Wiki
173 setting_wiki_compression: Compresión del historial de Wiki
172 setting_feeds_limit: Límite de contenido para sindicación
174 setting_feeds_limit: Límite de contenido para sindicación
173 setting_autofetch_changesets: Autorellenar los commits del repositorio
175 setting_autofetch_changesets: Autorellenar los commits del repositorio
174 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
175 setting_commit_ref_keywords: Palabras clave para la referencia
177 setting_commit_ref_keywords: Palabras clave para la referencia
176 setting_commit_fix_keywords: Palabras clave para la corrección
178 setting_commit_fix_keywords: Palabras clave para la corrección
177 setting_autologin: Conexión automática
179 setting_autologin: Conexión automática
178 setting_date_format: Formato de la fecha
180 setting_date_format: Formato de la fecha
179
181
180 label_user: Usuario
182 label_user: Usuario
181 label_user_plural: Usuarios
183 label_user_plural: Usuarios
182 label_user_new: Nuevo usuario
184 label_user_new: Nuevo usuario
183 label_project: Proyecto
185 label_project: Proyecto
184 label_project_new: Nuevo proyecto
186 label_project_new: Nuevo proyecto
185 label_project_plural: Proyectos
187 label_project_plural: Proyectos
186 label_project_all: Todos los proyectos
188 label_project_all: Todos los proyectos
187 label_project_latest: Últimos proyectos
189 label_project_latest: Últimos proyectos
188 label_issue: Petición
190 label_issue: Petición
189 label_issue_new: Nueva petición
191 label_issue_new: Nueva petición
190 label_issue_plural: Peticiones
192 label_issue_plural: Peticiones
191 label_issue_view_all: Ver todas las peticiones
193 label_issue_view_all: Ver todas las peticiones
192 label_document: Documento
194 label_document: Documento
193 label_document_new: Nuevo documento
195 label_document_new: Nuevo documento
194 label_document_plural: Documentos
196 label_document_plural: Documentos
195 label_role: Perfil
197 label_role: Perfil
196 label_role_plural: Perfiles
198 label_role_plural: Perfiles
197 label_role_new: Nuevo perfil
199 label_role_new: Nuevo perfil
198 label_role_and_permissions: Perfiles y permisos
200 label_role_and_permissions: Perfiles y permisos
199 label_member: Miembro
201 label_member: Miembro
200 label_member_new: Nuevo miembro
202 label_member_new: Nuevo miembro
201 label_member_plural: Miembros
203 label_member_plural: Miembros
202 label_tracker: Tracker
204 label_tracker: Tracker
203 label_tracker_plural: Trackers
205 label_tracker_plural: Trackers
204 label_tracker_new: Nuevo tracker
206 label_tracker_new: Nuevo tracker
205 label_workflow: Flujo de trabajo
207 label_workflow: Flujo de trabajo
206 label_issue_status: Estado de petición
208 label_issue_status: Estado de petición
207 label_issue_status_plural: Estados de las peticiones
209 label_issue_status_plural: Estados de las peticiones
208 label_issue_status_new: Nuevo estado
210 label_issue_status_new: Nuevo estado
209 label_issue_category: Categoría de las peticiones
211 label_issue_category: Categoría de las peticiones
210 label_issue_category_plural: Categorías de las peticiones
212 label_issue_category_plural: Categorías de las peticiones
211 label_issue_category_new: Nueva categoría
213 label_issue_category_new: Nueva categoría
212 label_custom_field: Campo personalizado
214 label_custom_field: Campo personalizado
213 label_custom_field_plural: Campos personalizados
215 label_custom_field_plural: Campos personalizados
214 label_custom_field_new: Nuevo campo personalizado
216 label_custom_field_new: Nuevo campo personalizado
215 label_enumerations: Listas de valores
217 label_enumerations: Listas de valores
216 label_enumeration_new: Nuevo valor
218 label_enumeration_new: Nuevo valor
217 label_information: Información
219 label_information: Información
218 label_information_plural: Información
220 label_information_plural: Información
219 label_please_login: Conexión
221 label_please_login: Conexión
220 label_register: Registrar
222 label_register: Registrar
221 label_password_lost: ¿Olvidaste la contraseña?
223 label_password_lost: ¿Olvidaste la contraseña?
222 label_home: Inicio
224 label_home: Inicio
223 label_my_page: Mi página
225 label_my_page: Mi página
224 label_my_account: Mi cuenta
226 label_my_account: Mi cuenta
225 label_my_projects: Mis proyectos
227 label_my_projects: Mis proyectos
226 label_administration: Administración
228 label_administration: Administración
227 label_login: Conexión
229 label_login: Conexión
228 label_logout: Desconexión
230 label_logout: Desconexión
229 label_help: Ayuda
231 label_help: Ayuda
230 label_reported_issues: Peticiones registradas por mí
232 label_reported_issues: Peticiones registradas por mí
231 label_assigned_to_me_issues: Peticiones que me están asignadas
233 label_assigned_to_me_issues: Peticiones que me están asignadas
232 label_last_login: Última conexión
234 label_last_login: Última conexión
233 label_last_updates: Actualizado
235 label_last_updates: Actualizado
234 label_last_updates_plural: %d Actualizados
236 label_last_updates_plural: %d Actualizados
235 label_registered_on: Inscrito el
237 label_registered_on: Inscrito el
236 label_activity: Actividad
238 label_activity: Actividad
237 label_new: Nuevo
239 label_new: Nuevo
238 label_logged_as: Conectado como
240 label_logged_as: Conectado como
239 label_environment: Entorno
241 label_environment: Entorno
240 label_authentication: Autenticación
242 label_authentication: Autenticación
241 label_auth_source: Modo de autenticación
243 label_auth_source: Modo de autenticación
242 label_auth_source_new: Nuevo modo de autenticación
244 label_auth_source_new: Nuevo modo de autenticación
243 label_auth_source_plural: Modos de autenticación
245 label_auth_source_plural: Modos de autenticación
244 label_subproject_plural: Proyectos secundarios
246 label_subproject_plural: Proyectos secundarios
245 label_min_max_length: Longitud mín - máx
247 label_min_max_length: Longitud mín - máx
246 label_list: Lista
248 label_list: Lista
247 label_date: Fecha
249 label_date: Fecha
248 label_integer: Número
250 label_integer: Número
249 label_boolean: Boleano
251 label_boolean: Boleano
250 label_string: Texto
252 label_string: Texto
251 label_text: Texto largo
253 label_text: Texto largo
252 label_attribute: Cualidad
254 label_attribute: Cualidad
253 label_attribute_plural: Cualidades
255 label_attribute_plural: Cualidades
254 label_download: %d Descarga
256 label_download: %d Descarga
255 label_download_plural: %d Descargas
257 label_download_plural: %d Descargas
256 label_no_data: Ningun dato a mostrar
258 label_no_data: Ningun dato a mostrar
257 label_change_status: Cambiar el estado
259 label_change_status: Cambiar el estado
258 label_history: Histórico
260 label_history: Histórico
259 label_attachment: Fichero
261 label_attachment: Fichero
260 label_attachment_new: Nuevo fichero
262 label_attachment_new: Nuevo fichero
261 label_attachment_delete: Borrar el fichero
263 label_attachment_delete: Borrar el fichero
262 label_attachment_plural: Ficheros
264 label_attachment_plural: Ficheros
263 label_report: Informe
265 label_report: Informe
264 label_report_plural: Informes
266 label_report_plural: Informes
265 label_news: Noticia
267 label_news: Noticia
266 label_news_new: Nueva noticia
268 label_news_new: Nueva noticia
267 label_news_plural: Noticias
269 label_news_plural: Noticias
268 label_news_latest: Últimas noticias
270 label_news_latest: Últimas noticias
269 label_news_view_all: Ver todas las noticias
271 label_news_view_all: Ver todas las noticias
270 label_change_log: Cambios
272 label_change_log: Cambios
271 label_settings: Configuración
273 label_settings: Configuración
272 label_overview: Vistazo
274 label_overview: Vistazo
273 label_version: Versión
275 label_version: Versión
274 label_version_new: Nueva versión
276 label_version_new: Nueva versión
275 label_version_plural: Versiones
277 label_version_plural: Versiones
276 label_confirmation: Confirmación
278 label_confirmation: Confirmación
277 label_export_to: Exportar a
279 label_export_to: Exportar a
278 label_read: Leer...
280 label_read: Leer...
279 label_public_projects: Proyectos públicos
281 label_public_projects: Proyectos públicos
280 label_open_issues: abierta
282 label_open_issues: abierta
281 label_open_issues_plural: abiertas
283 label_open_issues_plural: abiertas
282 label_closed_issues: cerrada
284 label_closed_issues: cerrada
283 label_closed_issues_plural: cerradas
285 label_closed_issues_plural: cerradas
284 label_total: Total
286 label_total: Total
285 label_permissions: Permisos
287 label_permissions: Permisos
286 label_current_status: Estado actual
288 label_current_status: Estado actual
287 label_new_statuses_allowed: Nuevos estados autorizados
289 label_new_statuses_allowed: Nuevos estados autorizados
288 label_all: todos
290 label_all: todos
289 label_none: ninguno
291 label_none: ninguno
290 label_next: Próximo
292 label_next: Próximo
291 label_previous: Anterior
293 label_previous: Anterior
292 label_used_by: Utilizado por
294 label_used_by: Utilizado por
293 label_details: Detalles
295 label_details: Detalles
294 label_add_note: Añadir una nota
296 label_add_note: Añadir una nota
295 label_per_page: Por la página
297 label_per_page: Por la página
296 label_calendar: Calendario
298 label_calendar: Calendario
297 label_months_from: meses de
299 label_months_from: meses de
298 label_gantt: Gantt
300 label_gantt: Gantt
299 label_internal: Interno
301 label_internal: Interno
300 label_last_changes: %d cambios del último
302 label_last_changes: %d cambios del último
301 label_change_view_all: Ver todos los cambios
303 label_change_view_all: Ver todos los cambios
302 label_personalize_page: Personalizar esta página
304 label_personalize_page: Personalizar esta página
303 label_comment: Comentario
305 label_comment: Comentario
304 label_comment_plural: Comentarios
306 label_comment_plural: Comentarios
305 label_comment_add: Añadir un comentario
307 label_comment_add: Añadir un comentario
306 label_comment_added: Comentario añadido
308 label_comment_added: Comentario añadido
307 label_comment_delete: Borrar comentarios
309 label_comment_delete: Borrar comentarios
308 label_query: Consulta personalizada
310 label_query: Consulta personalizada
309 label_query_plural: Consultas personalizadas
311 label_query_plural: Consultas personalizadas
310 label_query_new: Nueva consulta
312 label_query_new: Nueva consulta
311 label_filter_add: Añadir el filtro
313 label_filter_add: Añadir el filtro
312 label_filter_plural: Filtros
314 label_filter_plural: Filtros
313 label_equals: igual
315 label_equals: igual
314 label_not_equals: no igual
316 label_not_equals: no igual
315 label_in_less_than: en menos que
317 label_in_less_than: en menos que
316 label_in_more_than: en más que
318 label_in_more_than: en más que
317 label_in: en
319 label_in: en
318 label_today: hoy
320 label_today: hoy
319 label_less_than_ago: hace menos de
321 label_less_than_ago: hace menos de
320 label_more_than_ago: hace más de
322 label_more_than_ago: hace más de
321 label_ago: hace
323 label_ago: hace
322 label_contains: contiene
324 label_contains: contiene
323 label_not_contains: no contiene
325 label_not_contains: no contiene
324 label_day_plural: días
326 label_day_plural: días
325 label_repository: Repositorio
327 label_repository: Repositorio
326 label_browse: Hojear
328 label_browse: Hojear
327 label_modification: %d modificación
329 label_modification: %d modificación
328 label_modification_plural: %d modificaciones
330 label_modification_plural: %d modificaciones
329 label_revision: Revisión
331 label_revision: Revisión
330 label_revision_plural: Revisiones
332 label_revision_plural: Revisiones
331 label_added: añadido
333 label_added: añadido
332 label_modified: modificado
334 label_modified: modificado
333 label_deleted: suprimido
335 label_deleted: suprimido
334 label_latest_revision: La revisión más actual
336 label_latest_revision: La revisión más actual
335 label_latest_revision_plural: Las revisiones más actuales
337 label_latest_revision_plural: Las revisiones más actuales
336 label_view_revisions: Ver las revisiones
338 label_view_revisions: Ver las revisiones
337 label_max_size: Tamaño máximo
339 label_max_size: Tamaño máximo
338 label_on: de
340 label_on: de
339 label_sort_highest: Primero
341 label_sort_highest: Primero
340 label_sort_higher: Subir
342 label_sort_higher: Subir
341 label_sort_lower: Bajar
343 label_sort_lower: Bajar
342 label_sort_lowest: Último
344 label_sort_lowest: Último
343 label_roadmap: Roadmap
345 label_roadmap: Roadmap
344 label_roadmap_due_in: Finaliza en
346 label_roadmap_due_in: Finaliza en
345 label_roadmap_no_issues: No hay peticiones para esta versión
347 label_roadmap_no_issues: No hay peticiones para esta versión
346 label_search: Búsqueda
348 label_search: Búsqueda
347 label_result: %d resultado
349 label_result: %d resultado
348 label_result_plural: Resultados
350 label_result_plural: Resultados
349 label_all_words: Todas las palabras
351 label_all_words: Todas las palabras
350 label_wiki: Wiki
352 label_wiki: Wiki
351 label_wiki_edit: Wiki edicción
353 label_wiki_edit: Wiki edicción
352 label_wiki_edit_plural: Wiki edicciones
354 label_wiki_edit_plural: Wiki edicciones
353 label_wiki_page: Wiki página
355 label_wiki_page: Wiki página
354 label_wiki_page_plural: Wiki páginas
356 label_wiki_page_plural: Wiki páginas
355 label_page_index: Índice
357 label_page_index: Índice
356 label_current_version: Versión actual
358 label_current_version: Versión actual
357 label_preview: Previsualizar
359 label_preview: Previsualizar
358 label_feed_plural: Feeds
360 label_feed_plural: Feeds
359 label_changes_details: Detalles de todos los cambios
361 label_changes_details: Detalles de todos los cambios
360 label_issue_tracking: Peticiones
362 label_issue_tracking: Peticiones
361 label_spent_time: Tiempo dedicado
363 label_spent_time: Tiempo dedicado
362 label_f_hour: %.2f hora
364 label_f_hour: %.2f hora
363 label_f_hour_plural: %.2f horas
365 label_f_hour_plural: %.2f horas
364 label_time_tracking: Tiempo tracking
366 label_time_tracking: Tiempo tracking
365 label_change_plural: Cambios
367 label_change_plural: Cambios
366 label_statistics: Estadísticas
368 label_statistics: Estadísticas
367 label_commits_per_month: Commits por mes
369 label_commits_per_month: Commits por mes
368 label_commits_per_author: Commits por autor
370 label_commits_per_author: Commits por autor
369 label_view_diff: Ver diferencias
371 label_view_diff: Ver diferencias
370 label_diff_inline: en línea
372 label_diff_inline: en línea
371 label_diff_side_by_side: cara a cara
373 label_diff_side_by_side: cara a cara
372 label_options: Opciones
374 label_options: Opciones
373 label_copy_workflow_from: Copiar workflow desde
375 label_copy_workflow_from: Copiar workflow desde
374 label_permissions_report: Informe de permisos
376 label_permissions_report: Informe de permisos
375 label_watched_issues: Peticiones monitorizadas
377 label_watched_issues: Peticiones monitorizadas
376 label_related_issues: Peticiones relacionadas
378 label_related_issues: Peticiones relacionadas
377 label_applied_status: Aplicar estado
379 label_applied_status: Aplicar estado
378 label_loading: Cargando...
380 label_loading: Cargando...
379 label_relation_new: Nueva relación
381 label_relation_new: Nueva relación
380 label_relation_delete: Eliminar relación
382 label_relation_delete: Eliminar relación
381 label_relates_to: relacionada con
383 label_relates_to: relacionada con
382 label_duplicates: duplicada de
384 label_duplicates: duplicada de
383 label_blocks: bloquea a
385 label_blocks: bloquea a
384 label_blocked_by: bloqueado por
386 label_blocked_by: bloqueado por
385 label_precedes: anterior a
387 label_precedes: anterior a
386 label_follows: posterior a
388 label_follows: posterior a
387 label_end_to_start: fin a principio
389 label_end_to_start: fin a principio
388 label_end_to_end: fin a fin
390 label_end_to_end: fin a fin
389 label_start_to_start: principio a principio
391 label_start_to_start: principio a principio
390 label_start_to_end: principio a fin
392 label_start_to_end: principio a fin
391 label_stay_logged_in: Recordar conexión
393 label_stay_logged_in: Recordar conexión
392 label_disabled: deshabilitado
394 label_disabled: deshabilitado
393 label_show_completed_versions: Muestra las versiones completas
395 label_show_completed_versions: Muestra las versiones completas
394 label_me: yo mismo
396 label_me: yo mismo
395 label_board: Foro
397 label_board: Foro
396 label_board_new: Nuevo foro
398 label_board_new: Nuevo foro
397 label_board_plural: Foros
399 label_board_plural: Foros
398 label_topic_plural: Temas
400 label_topic_plural: Temas
399 label_message_plural: Mensajes
401 label_message_plural: Mensajes
400 label_message_last: Último mensaje
402 label_message_last: Último mensaje
401 label_message_new: Nuevo mensaje
403 label_message_new: Nuevo mensaje
402 label_reply_plural: Respuestas
404 label_reply_plural: Respuestas
403 label_send_information: Enviar información de la cuenta al usuario
405 label_send_information: Enviar información de la cuenta al usuario
404 label_year: Año
406 label_year: Año
405 label_month: Mes
407 label_month: Mes
406 label_week: Semana
408 label_week: Semana
407 label_date_from: Desde
409 label_date_from: Desde
408 label_date_to: Hasta
410 label_date_to: Hasta
409 label_language_based: Badado en el idioma
411 label_language_based: Badado en el idioma
410
412
411 button_login: Conexión
413 button_login: Conexión
412 button_submit: Aceptar
414 button_submit: Aceptar
413 button_save: Guardar
415 button_save: Guardar
414 button_check_all: Seleccionar todo
416 button_check_all: Seleccionar todo
415 button_uncheck_all: No seleccionar nada
417 button_uncheck_all: No seleccionar nada
416 button_delete: Borrar
418 button_delete: Borrar
417 button_create: Crear
419 button_create: Crear
418 button_test: Probar
420 button_test: Probar
419 button_edit: Modificar
421 button_edit: Modificar
420 button_add: Añadir
422 button_add: Añadir
421 button_change: Cambiar
423 button_change: Cambiar
422 button_apply: Aceptar
424 button_apply: Aceptar
423 button_clear: Anular
425 button_clear: Anular
424 button_lock: Bloquear
426 button_lock: Bloquear
425 button_unlock: Desbloquear
427 button_unlock: Desbloquear
426 button_download: Descargar
428 button_download: Descargar
427 button_list: Listar
429 button_list: Listar
428 button_view: Ver
430 button_view: Ver
429 button_move: Mover
431 button_move: Mover
430 button_back: Atrás
432 button_back: Atrás
431 button_cancel: Cancelar
433 button_cancel: Cancelar
432 button_activate: Activar
434 button_activate: Activar
433 button_sort: Clasificar
435 button_sort: Clasificar
434 button_log_time: Tiempo dedicado
436 button_log_time: Tiempo dedicado
435 button_rollback: Volver a esta versión
437 button_rollback: Volver a esta versión
436 button_watch: Monitorizar
438 button_watch: Monitorizar
437 button_unwatch: No monitorizar
439 button_unwatch: No monitorizar
438 button_reply: Responder
440 button_reply: Responder
439 button_archive: Archivar
441 button_archive: Archivar
440 button_unarchive: Desarchivar
442 button_unarchive: Desarchivar
441
443
442 status_active: activo
444 status_active: activo
443 status_registered: registrado
445 status_registered: registrado
444 status_locked: bloqueado
446 status_locked: bloqueado
445
447
446 text_select_mail_notifications: Seleccionar los eventos a notificar
448 text_select_mail_notifications: Seleccionar los eventos a notificar
447 text_regexp_info: eg. ^[A-Z0-9]+$
449 text_regexp_info: eg. ^[A-Z0-9]+$
448 text_min_max_length_info: 0 para ninguna restricción
450 text_min_max_length_info: 0 para ninguna restricción
449 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 ?
450 text_workflow_edit: Seleccionar un flujo de trabajo para actualizar
452 text_workflow_edit: Seleccionar un flujo de trabajo para actualizar
451 text_are_you_sure: ¿ Estás seguro ?
453 text_are_you_sure: ¿ Estás seguro ?
452 text_journal_changed: cambiado de %s a %s
454 text_journal_changed: cambiado de %s a %s
453 text_journal_set_to: fijado a %s
455 text_journal_set_to: fijado a %s
454 text_journal_deleted: suprimido
456 text_journal_deleted: suprimido
455 text_tip_task_begin_day: tarea que comienza este día
457 text_tip_task_begin_day: tarea que comienza este día
456 text_tip_task_end_day: tarea que termina este día
458 text_tip_task_end_day: tarea que termina este día
457 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
458 text_project_identifier_info: 'Letras minúsculas (a-z), números y signos de puntuación permitidos.<br />Una vez guardado, el identificador no puede modificarse.'
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.'
459 text_caracters_maximum: %d carácteres como máximo.
461 text_caracters_maximum: %d carácteres como máximo.
460 text_length_between: Longitud entre %d y %d carácteres.
462 text_length_between: Longitud entre %d y %d carácteres.
461 text_tracker_no_workflow: No hay ningún workflow definido para este tracker
463 text_tracker_no_workflow: No hay ningún workflow definido para este tracker
462 text_unallowed_characters: Carácteres no permitidos
464 text_unallowed_characters: Carácteres no permitidos
463 text_comma_separated: Múltiples valores permitidos (separados por coma).
465 text_comma_separated: Múltiples valores permitidos (separados por coma).
464 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
465
467
466 default_role_manager: Jefe de proyecto
468 default_role_manager: Jefe de proyecto
467 default_role_developper: Desarrollador
469 default_role_developper: Desarrollador
468 default_role_reporter: Informador
470 default_role_reporter: Informador
469 default_tracker_bug: Errores
471 default_tracker_bug: Errores
470 default_tracker_feature: Tareas
472 default_tracker_feature: Tareas
471 default_tracker_support: Soporte
473 default_tracker_support: Soporte
472 default_issue_status_new: Nueva
474 default_issue_status_new: Nueva
473 default_issue_status_assigned: Asignada
475 default_issue_status_assigned: Asignada
474 default_issue_status_resolved: Resuelta
476 default_issue_status_resolved: Resuelta
475 default_issue_status_feedback: Comentarios
477 default_issue_status_feedback: Comentarios
476 default_issue_status_closed: Cerrada
478 default_issue_status_closed: Cerrada
477 default_issue_status_rejected: Rechazada
479 default_issue_status_rejected: Rechazada
478 default_doc_category_user: Documentación de usuario
480 default_doc_category_user: Documentación de usuario
479 default_doc_category_tech: Documentación técnica
481 default_doc_category_tech: Documentación técnica
480 default_priority_low: Baja
482 default_priority_low: Baja
481 default_priority_normal: Normal
483 default_priority_normal: Normal
482 default_priority_high: Alta
484 default_priority_high: Alta
483 default_priority_urgent: Urgente
485 default_priority_urgent: Urgente
484 default_priority_immediate: Inmediata
486 default_priority_immediate: Inmediata
485 default_activity_design: Diseño
487 default_activity_design: Diseño
486 default_activity_development: Desarrollo
488 default_activity_development: Desarrollo
487
489
488 enumeration_issue_priorities: Prioridad de las peticiones
490 enumeration_issue_priorities: Prioridad de las peticiones
489 enumeration_doc_categories: Categorías del documento
491 enumeration_doc_categories: Categorías del documento
490 enumeration_activities: Actividades (tiempo dedicado)
492 enumeration_activities: Actividades (tiempo dedicado)
491 label_index_by_date: Índice por fecha
493 label_index_by_date: Índice por fecha
492 field_column_names: Columnas
494 field_column_names: Columnas
493 button_rename: Renombrar
495 button_rename: Renombrar
494 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?
495 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
496 label_default_columns: Columnas por defecto
498 label_default_columns: Columnas por defecto
497 setting_cross_project_issue_relations: Permitir relacionar peticiones de distintos proyectos
499 setting_cross_project_issue_relations: Permitir relacionar peticiones de distintos proyectos
498 label_roadmap_overdue: %s tarde
500 label_roadmap_overdue: %s tarde
499 label_module_plural: Módulos
501 label_module_plural: Módulos
500 label_this_week: esta semana
502 label_this_week: esta semana
501 label_index_by_title: Índice por título
503 label_index_by_title: Índice por título
502 label_jump_to_a_project: Ir al proyecto...
504 label_jump_to_a_project: Ir al proyecto...
503 field_assignable: Se pueden asignar peticiones a este perfil
505 field_assignable: Se pueden asignar peticiones a este perfil
504 label_sort_by: Ordenar por %s
506 label_sort_by: Ordenar por %s
505 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
506 text_issue_updated: La petición %s ha sido actualizada.
508 text_issue_updated: La petición %s ha sido actualizada.
507 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
508 field_redirect_existing_links: Redireccionar enlaces existentes
510 field_redirect_existing_links: Redireccionar enlaces existentes
509 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
510 notice_email_sent: Se ha enviado un correo a %s
512 notice_email_sent: Se ha enviado un correo a %s
511 text_issue_added: Petición añadida
513 text_issue_added: Petición añadida
512 field_comments: Comentario
514 field_comments: Comentario
513 label_file_plural: Archivos
515 label_file_plural: Archivos
514 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?
515 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)
516 label_updated_time: Actualizado hace %s
518 label_updated_time: Actualizado hace %s
517 text_issue_category_destroy_assignments: Dejar las peticiones sin categoría
519 text_issue_category_destroy_assignments: Dejar las peticiones sin categoría
518 label_send_test_email: Enviar un correo de prueba
520 label_send_test_email: Enviar un correo de prueba
519 button_reset: Reestablecer
521 button_reset: Reestablecer
520 label_added_time_by: Añadido por %s hace %s
522 label_added_time_by: Añadido por %s hace %s
521 field_estimated_hours: Tiempo estimado
523 field_estimated_hours: Tiempo estimado
522 label_changeset_plural: Cambios
524 label_changeset_plural: Cambios
523 setting_repositories_encodings: Codificaciones del repositorio
525 setting_repositories_encodings: Codificaciones del repositorio
524 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"
525 label_bulk_edit_selected_issues: Editar las peticiones seleccionadas
527 label_bulk_edit_selected_issues: Editar las peticiones seleccionadas
526 label_no_change_option: (Sin cambios)
528 label_no_change_option: (Sin cambios)
527 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."
528 label_theme: Tema
530 label_theme: Tema
529 label_default: Por defecto
531 label_default: Por defecto
530 label_search_titles_only: Buscar sólo en títulos
532 label_search_titles_only: Buscar sólo en títulos
531 label_nobody: nadie
533 label_nobody: nadie
532 button_change_password: Cambiar contraseña
534 button_change_password: Cambiar contraseña
533 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)."
534 label_user_mail_option_selected: "Para cualquier evento del proyecto seleccionado..."
536 label_user_mail_option_selected: "Para cualquier evento del proyecto seleccionado..."
535 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"
536 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"
537 setting_emails_footer: Pie de mensajes
539 setting_emails_footer: Pie de mensajes
538 label_float: Flotante
540 label_float: Flotante
539 button_copy: Copiar
541 button_copy: Copiar
540 mail_body_account_information_external: Puede usar su cuenta "%s" para conectarse a Redmine.
542 mail_body_account_information_external: Puede usar su cuenta "%s" para conectarse a Redmine.
541 mail_body_account_information: Información sobre su cuenta de Redmine
543 mail_body_account_information: Información sobre su cuenta de Redmine
542 setting_protocol: Protocolo
544 setting_protocol: Protocolo
543 text_caracters_minimum: %d carácteres como mínimo
545 text_caracters_minimum: %d carácteres como mínimo
544 field_time_zone: Zona horaria
546 field_time_zone: Zona horaria
545 label_registration_activation_by_email: activación de cuenta por correo
547 label_registration_activation_by_email: activación de cuenta por correo
546 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í"
547 mail_subject_account_activation_request: Petición de activación de cuenta Redmine
549 mail_subject_account_activation_request: Petición de activación de cuenta Redmine
548 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"
549 label_registration_automatic_activation: activación automática de cuenta
551 label_registration_automatic_activation: activación automática de cuenta
550 label_registration_manual_activation: activación manual de cuenta
552 label_registration_manual_activation: activación manual de cuenta
551 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"
552 setting_time_format: Formato de hora
554 setting_time_format: Formato de hora
553 setting_bcc_recipients: Ocultar las copias de carbon (bcc)
555 setting_bcc_recipients: Ocultar las copias de carbon (bcc)
554 button_annotate: Anotar
556 button_annotate: Anotar
555 label_issues_by: Peticiones por %s
557 label_issues_by: Peticiones por %s
556 field_searchable: Incluir en las búsquedas
558 field_searchable: Incluir en las búsquedas
557 label_display_per_page: 'Por página: %s'
559 label_display_per_page: 'Por página: %s'
558 setting_per_page_options: Objetos por página
560 setting_per_page_options: Objetos por página
559 label_age: Edad
561 label_age: Edad
560 notice_default_data_loaded: Default configuration successfully loaded.
562 notice_default_data_loaded: Default configuration successfully loaded.
561 text_load_default_configuration: Load the default configuration
563 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."
564 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"
565 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
564 button_update: Update
566 button_update: Update
565 label_change_properties: Change properties
567 label_change_properties: Change properties
566 label_general: General
568 label_general: General
567 label_repository_plural: Repositories
569 label_repository_plural: Repositories
568 label_associated_revisions: Associated revisions
570 label_associated_revisions: Associated revisions
@@ -1,570 +1,571
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_scm_error: Syötettä ja/tai versiota ei löydy säiliöstä.
72 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.
73 notice_email_sent: Sähköposti on lähetty osoitteeseen %s
72 notice_email_sent: Sähköposti on lähetty osoitteeseen %s
74 notice_email_error: Sähköpostilähetyksessä tapahtui virhe (%s)
73 notice_email_error: Sähköpostilähetyksessä tapahtui virhe (%s)
75 notice_feeds_access_key_reseted: RSS pääsy avaimesi on nollaantunut.
74 notice_feeds_access_key_reseted: RSS pääsy avaimesi on nollaantunut.
76 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."
77 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."
78 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ää."
79 notice_default_data_loaded: Vakio asetusten palautus onnistui.
78 notice_default_data_loaded: Vakio asetusten palautus onnistui.
80
79
81 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ä."
82 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
82
83
83 mail_subject_lost_password: Sinun Redmine salasanasi
84 mail_subject_lost_password: Sinun Redmine salasanasi
84 mail_body_lost_password: 'Vaihtaaksesi Redmine salasanasi, paina seuraavaa linkkiä:'
85 mail_body_lost_password: 'Vaihtaaksesi Redmine salasanasi, paina seuraavaa linkkiä:'
85 mail_subject_register: Redmine tilin aktivointi
86 mail_subject_register: Redmine tilin aktivointi
86 mail_body_register: 'Aktivoidaksesi Redmine tilisi, paina seuraavaa linkkiä:'
87 mail_body_register: 'Aktivoidaksesi Redmine tilisi, paina seuraavaa linkkiä:'
87 mail_body_account_information_external: Voit nyt käyttää "%s" tiliäsi kirjautuaksesi Redmine järjestelmään.
88 mail_body_account_information_external: Voit nyt käyttää "%s" tiliäsi kirjautuaksesi Redmine järjestelmään.
88 mail_body_account_information: Sinun Redmine tilin tiedot
89 mail_body_account_information: Sinun Redmine tilin tiedot
89 mail_subject_account_activation_request: Redmine tilin aktivointi pyyntö
90 mail_subject_account_activation_request: Redmine tilin aktivointi pyyntö
90 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:'
91
92
92 gui_validation_error: 1 virhe
93 gui_validation_error: 1 virhe
93 gui_validation_error_plural: %d virhettä
94 gui_validation_error_plural: %d virhettä
94
95
95 field_name: Nimi
96 field_name: Nimi
96 field_description: Kuvaus
97 field_description: Kuvaus
97 field_summary: Yhteenveto
98 field_summary: Yhteenveto
98 field_is_required: Vaaditaan
99 field_is_required: Vaaditaan
99 field_firstname: Etu nimi
100 field_firstname: Etu nimi
100 field_lastname: Suku nimi
101 field_lastname: Suku nimi
101 field_mail: Sähköposti
102 field_mail: Sähköposti
102 field_filename: Tiedosto
103 field_filename: Tiedosto
103 field_filesize: Koko
104 field_filesize: Koko
104 field_downloads: Latausta
105 field_downloads: Latausta
105 field_author: Tekijä
106 field_author: Tekijä
106 field_created_on: Luotu
107 field_created_on: Luotu
107 field_updated_on: Päivitetty
108 field_updated_on: Päivitetty
108 field_field_format: Muoto
109 field_field_format: Muoto
109 field_is_for_all: Kaikille projekteille
110 field_is_for_all: Kaikille projekteille
110 field_possible_values: Mahdolliset arvot
111 field_possible_values: Mahdolliset arvot
111 field_regexp: Säännönmukainen ilmentymä (reg exp)
112 field_regexp: Säännönmukainen ilmentymä (reg exp)
112 field_min_length: Minimi pituus
113 field_min_length: Minimi pituus
113 field_max_length: Maksimi pituus
114 field_max_length: Maksimi pituus
114 field_value: Arvo
115 field_value: Arvo
115 field_category: Luokka
116 field_category: Luokka
116 field_title: Otsikko
117 field_title: Otsikko
117 field_project: Projekti
118 field_project: Projekti
118 field_issue: Tapahtuma
119 field_issue: Tapahtuma
119 field_status: Tila
120 field_status: Tila
120 field_notes: Muistiinpanot
121 field_notes: Muistiinpanot
121 field_is_closed: Tapahtuma suljettu
122 field_is_closed: Tapahtuma suljettu
122 field_is_default: Vakio arvo
123 field_is_default: Vakio arvo
123 field_tracker: Tiketti
124 field_tracker: Tiketti
124 field_subject: Aihe
125 field_subject: Aihe
125 field_due_date: Määräaika
126 field_due_date: Määräaika
126 field_assigned_to: Nimetty
127 field_assigned_to: Nimetty
127 field_priority: Prioriteetti
128 field_priority: Prioriteetti
128 field_fixed_version: Määrätty versio
129 field_fixed_version: Määrätty versio
129 field_user: Käyttäjä
130 field_user: Käyttäjä
130 field_role: Rooli
131 field_role: Rooli
131 field_homepage: Kotisivu
132 field_homepage: Kotisivu
132 field_is_public: Julkinen
133 field_is_public: Julkinen
133 field_parent: Alaprojekti
134 field_parent: Alaprojekti
134 field_is_in_chlog: Tapahtumat näytetään muutoslokissa
135 field_is_in_chlog: Tapahtumat näytetään muutoslokissa
135 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ä
136 field_login: Kirjautuminen
137 field_login: Kirjautuminen
137 field_mail_notification: Sähköposti muistutukset
138 field_mail_notification: Sähköposti muistutukset
138 field_admin: Ylläpitäjä
139 field_admin: Ylläpitäjä
139 field_last_login_on: Viimeinen yhteys
140 field_last_login_on: Viimeinen yhteys
140 field_language: Kieli
141 field_language: Kieli
141 field_effective_date: Päivä
142 field_effective_date: Päivä
142 field_password: Salasana
143 field_password: Salasana
143 field_new_password: Uusi salasana
144 field_new_password: Uusi salasana
144 field_password_confirmation: Vahvistus
145 field_password_confirmation: Vahvistus
145 field_version: Versio
146 field_version: Versio
146 field_type: Tyyppi
147 field_type: Tyyppi
147 field_host: Isäntä
148 field_host: Isäntä
148 field_port: Portti
149 field_port: Portti
149 field_account: Tili
150 field_account: Tili
150 field_base_dn: Base DN
151 field_base_dn: Base DN
151 field_attr_login: Kirjautumis määre
152 field_attr_login: Kirjautumis määre
152 field_attr_firstname: Etuminen määre
153 field_attr_firstname: Etuminen määre
153 field_attr_lastname: Sukunimen määre
154 field_attr_lastname: Sukunimen määre
154 field_attr_mail: Sähköpostin määre
155 field_attr_mail: Sähköpostin määre
155 field_onthefly: Automaattinen käyttäjien luonti
156 field_onthefly: Automaattinen käyttäjien luonti
156 field_start_date: Alku
157 field_start_date: Alku
157 field_done_ratio: %% Tehty
158 field_done_ratio: %% Tehty
158 field_auth_source: Autentikointi muoto
159 field_auth_source: Autentikointi muoto
159 field_hide_mail: Piiloita sähköpostiosoitteeni
160 field_hide_mail: Piiloita sähköpostiosoitteeni
160 field_comments: Kommentti
161 field_comments: Kommentti
161 field_url: URL
162 field_url: URL
162 field_start_page: Aloitus sivu
163 field_start_page: Aloitus sivu
163 field_subproject: Alaprojekti
164 field_subproject: Alaprojekti
164 field_hours: Tuntia
165 field_hours: Tuntia
165 field_activity: Aktiviteetti
166 field_activity: Aktiviteetti
166 field_spent_on: Päivä
167 field_spent_on: Päivä
167 field_identifier: Tunniste
168 field_identifier: Tunniste
168 field_is_filter: Käytetään suodattimena
169 field_is_filter: Käytetään suodattimena
169 field_issue_to_id: Liittyvä tapahtuma
170 field_issue_to_id: Liittyvä tapahtuma
170 field_delay: Viive
171 field_delay: Viive
171 field_assignable: Tapahtumia voidaan nimetä tälle roolille
172 field_assignable: Tapahtumia voidaan nimetä tälle roolille
172 field_redirect_existing_links: Uudelleenohjaa olemassa olevat linkit
173 field_redirect_existing_links: Uudelleenohjaa olemassa olevat linkit
173 field_estimated_hours: Arvioitu aika
174 field_estimated_hours: Arvioitu aika
174 field_column_names: Saraketta
175 field_column_names: Saraketta
175 field_time_zone: Aikavyöhyke
176 field_time_zone: Aikavyöhyke
176 field_searchable: Haettava
177 field_searchable: Haettava
177 field_default_value: Vakio arvo
178 field_default_value: Vakio arvo
178
179
179 setting_app_title: Ohjelman otsikko
180 setting_app_title: Ohjelman otsikko
180 setting_app_subtitle: Ohjelman alaotsikko
181 setting_app_subtitle: Ohjelman alaotsikko
181 setting_welcome_text: Tervetulo teksti
182 setting_welcome_text: Tervetulo teksti
182 setting_default_language: Vakio kieli
183 setting_default_language: Vakio kieli
183 setting_login_required: Pakollinen autentikointi
184 setting_login_required: Pakollinen autentikointi
184 setting_self_registration: Tee-Se-Itse rekisteröinti
185 setting_self_registration: Tee-Se-Itse rekisteröinti
185 setting_attachment_max_size: Liitteen maksimi koko
186 setting_attachment_max_size: Liitteen maksimi koko
186 setting_issues_export_limit: Tapahtumien vienti rajoite
187 setting_issues_export_limit: Tapahtumien vienti rajoite
187 setting_mail_from: Lähettäjän sähköpostiosoite
188 setting_mail_from: Lähettäjän sähköpostiosoite
188 setting_bcc_recipients: Blind carbon copy vastaanottajat (bcc)
189 setting_bcc_recipients: Blind carbon copy vastaanottajat (bcc)
189 setting_host_name: Isännän nimi
190 setting_host_name: Isännän nimi
190 setting_text_formatting: Tekstin muotoilu
191 setting_text_formatting: Tekstin muotoilu
191 setting_wiki_compression: Wiki historian pakkaus
192 setting_wiki_compression: Wiki historian pakkaus
192 setting_feeds_limit: Syötteen sisällön raja
193 setting_feeds_limit: Syötteen sisällön raja
193 setting_autofetch_changesets: Automaatisen haun souritukset
194 setting_autofetch_changesets: Automaatisen haun souritukset
194 setting_sys_api_enabled: Salli WS säiliön hallintaan
195 setting_sys_api_enabled: Salli WS säiliön hallintaan
195 setting_commit_ref_keywords: Viittaavat hakusanat
196 setting_commit_ref_keywords: Viittaavat hakusanat
196 setting_commit_fix_keywords: Korjaavat hakusanat
197 setting_commit_fix_keywords: Korjaavat hakusanat
197 setting_autologin: Automaatinen kirjautuminen
198 setting_autologin: Automaatinen kirjautuminen
198 setting_date_format: Päivän muoto
199 setting_date_format: Päivän muoto
199 setting_time_format: Ajan muoto
200 setting_time_format: Ajan muoto
200 setting_cross_project_issue_relations: Salli projektien väliset tapahtuminen suhteet
201 setting_cross_project_issue_relations: Salli projektien väliset tapahtuminen suhteet
201 setting_issue_list_default_columns: Vakio sarakkeiden näyttö tapahtuma listauksessa
202 setting_issue_list_default_columns: Vakio sarakkeiden näyttö tapahtuma listauksessa
202 setting_repositories_encodings: Säiliön koodaus
203 setting_repositories_encodings: Säiliön koodaus
203 setting_emails_footer: Sähköpostin alatunniste
204 setting_emails_footer: Sähköpostin alatunniste
204 setting_protocol: Protokolla
205 setting_protocol: Protokolla
205 setting_per_page_options: Sivun objektien määrän asetukset
206 setting_per_page_options: Sivun objektien määrän asetukset
206
207
207 label_user: Käyttäjä
208 label_user: Käyttäjä
208 label_user_plural: Käyttäjiä
209 label_user_plural: Käyttäjiä
209 label_user_new: Uusi käyttäjä
210 label_user_new: Uusi käyttäjä
210 label_project: Projekti
211 label_project: Projekti
211 label_project_new: Uusi projekti
212 label_project_new: Uusi projekti
212 label_project_plural: Projektit
213 label_project_plural: Projektit
213 label_project_all: Kaikki projektit
214 label_project_all: Kaikki projektit
214 label_project_latest: Uusimmat projektit
215 label_project_latest: Uusimmat projektit
215 label_issue: Tapahtuma
216 label_issue: Tapahtuma
216 label_issue_new: Uusi tapahtuma
217 label_issue_new: Uusi tapahtuma
217 label_issue_plural: Tapahtumat
218 label_issue_plural: Tapahtumat
218 label_issue_view_all: Näytä kaikki tapahtumat
219 label_issue_view_all: Näytä kaikki tapahtumat
219 label_issues_by: Tapahtumat %s
220 label_issues_by: Tapahtumat %s
220 label_document: Dokumentti
221 label_document: Dokumentti
221 label_document_new: Uusi dokumentti
222 label_document_new: Uusi dokumentti
222 label_document_plural: Dokumentit
223 label_document_plural: Dokumentit
223 label_role: Rooli
224 label_role: Rooli
224 label_role_plural: Roolit
225 label_role_plural: Roolit
225 label_role_new: Uusi rooli
226 label_role_new: Uusi rooli
226 label_role_and_permissions: Roolit ja oikeudet
227 label_role_and_permissions: Roolit ja oikeudet
227 label_member: Jäsen
228 label_member: Jäsen
228 label_member_new: Uusi jäsen
229 label_member_new: Uusi jäsen
229 label_member_plural: Jäsenet
230 label_member_plural: Jäsenet
230 label_tracker: Tiketti
231 label_tracker: Tiketti
231 label_tracker_plural: Tiketit
232 label_tracker_plural: Tiketit
232 label_tracker_new: Uusi tiketti
233 label_tracker_new: Uusi tiketti
233 label_workflow: Työnkulku
234 label_workflow: Työnkulku
234 label_issue_status: Tapahtuman tila
235 label_issue_status: Tapahtuman tila
235 label_issue_status_plural: Tapahtumien tilat
236 label_issue_status_plural: Tapahtumien tilat
236 label_issue_status_new: Uusi tila
237 label_issue_status_new: Uusi tila
237 label_issue_category: Tapahtuma luokka
238 label_issue_category: Tapahtuma luokka
238 label_issue_category_plural: Tapahtuma luokat
239 label_issue_category_plural: Tapahtuma luokat
239 label_issue_category_new: Uusi luokka
240 label_issue_category_new: Uusi luokka
240 label_custom_field: Räätälöity kenttä
241 label_custom_field: Räätälöity kenttä
241 label_custom_field_plural: Räätälöidyt kentät
242 label_custom_field_plural: Räätälöidyt kentät
242 label_custom_field_new: Uusi räätälöity kenttä
243 label_custom_field_new: Uusi räätälöity kenttä
243 label_enumerations: Lista
244 label_enumerations: Lista
244 label_enumeration_new: Uusi arvo
245 label_enumeration_new: Uusi arvo
245 label_information: Tieto
246 label_information: Tieto
246 label_information_plural: Tiedot
247 label_information_plural: Tiedot
247 label_please_login: Kirjaudu ole hyvä
248 label_please_login: Kirjaudu ole hyvä
248 label_register: Rekisteröidy
249 label_register: Rekisteröidy
249 label_password_lost: Hukattu salasana
250 label_password_lost: Hukattu salasana
250 label_home: Koti
251 label_home: Koti
251 label_my_page: Minun sivu
252 label_my_page: Minun sivu
252 label_my_account: Minun tili
253 label_my_account: Minun tili
253 label_my_projects: Minun projektit
254 label_my_projects: Minun projektit
254 label_administration: Ylläpito
255 label_administration: Ylläpito
255 label_login: Kirjaudu sisään
256 label_login: Kirjaudu sisään
256 label_logout: Kirjaudu ulos
257 label_logout: Kirjaudu ulos
257 label_help: Apua
258 label_help: Apua
258 label_reported_issues: Raportoidut tapahtumat
259 label_reported_issues: Raportoidut tapahtumat
259 label_assigned_to_me_issues: Minulle nimetyt tapahtumat
260 label_assigned_to_me_issues: Minulle nimetyt tapahtumat
260 label_last_login: Viimeinen yhteys
261 label_last_login: Viimeinen yhteys
261 label_last_updates: Viimeinen päivitys
262 label_last_updates: Viimeinen päivitys
262 label_last_updates_plural: %d päivitetty viimeksi
263 label_last_updates_plural: %d päivitetty viimeksi
263 label_registered_on: Rekisteröity
264 label_registered_on: Rekisteröity
264 label_activity: Aktiviteetti
265 label_activity: Aktiviteetti
265 label_new: Uusi
266 label_new: Uusi
266 label_logged_as: Kirjauduttu nimellä
267 label_logged_as: Kirjauduttu nimellä
267 label_environment: Ympäristö
268 label_environment: Ympäristö
268 label_authentication: Autentikointi
269 label_authentication: Autentikointi
269 label_auth_source: Autentikointi tapa
270 label_auth_source: Autentikointi tapa
270 label_auth_source_new: Uusi autentikointi tapa
271 label_auth_source_new: Uusi autentikointi tapa
271 label_auth_source_plural: Autentikointi tavat
272 label_auth_source_plural: Autentikointi tavat
272 label_subproject_plural: Alaprojektit
273 label_subproject_plural: Alaprojektit
273 label_min_max_length: Min - Max pituudet
274 label_min_max_length: Min - Max pituudet
274 label_list: Lista
275 label_list: Lista
275 label_date: Päivä
276 label_date: Päivä
276 label_integer: Kokonaisluku
277 label_integer: Kokonaisluku
277 label_float: Liukuluku
278 label_float: Liukuluku
278 label_boolean: Totuusarvomuuttuja
279 label_boolean: Totuusarvomuuttuja
279 label_string: Merkkijono
280 label_string: Merkkijono
280 label_text: Pitkä merkkijono
281 label_text: Pitkä merkkijono
281 label_attribute: Määre
282 label_attribute: Määre
282 label_attribute_plural: Määreet
283 label_attribute_plural: Määreet
283 label_download: %d Lataus
284 label_download: %d Lataus
284 label_download_plural: %d Lataukset
285 label_download_plural: %d Lataukset
285 label_no_data: Ei tietoa näytettäväksi
286 label_no_data: Ei tietoa näytettäväksi
286 label_change_status: Muutos tila
287 label_change_status: Muutos tila
287 label_history: Historia
288 label_history: Historia
288 label_attachment: Tiedosto
289 label_attachment: Tiedosto
289 label_attachment_new: Uusi tiedosto
290 label_attachment_new: Uusi tiedosto
290 label_attachment_delete: Poista tiedosto
291 label_attachment_delete: Poista tiedosto
291 label_attachment_plural: Tiedostot
292 label_attachment_plural: Tiedostot
292 label_report: Raportti
293 label_report: Raportti
293 label_report_plural: Raportit
294 label_report_plural: Raportit
294 label_news: Uutinen
295 label_news: Uutinen
295 label_news_new: Lisää uutinen
296 label_news_new: Lisää uutinen
296 label_news_plural: Uutiset
297 label_news_plural: Uutiset
297 label_news_latest: Viimeisimmät uutiset
298 label_news_latest: Viimeisimmät uutiset
298 label_news_view_all: Näytä kaikki uutiset
299 label_news_view_all: Näytä kaikki uutiset
299 label_change_log: Muutosloki
300 label_change_log: Muutosloki
300 label_settings: Asetukset
301 label_settings: Asetukset
301 label_overview: Yleiskatsaus
302 label_overview: Yleiskatsaus
302 label_version: Versio
303 label_version: Versio
303 label_version_new: Uusi versio
304 label_version_new: Uusi versio
304 label_version_plural: Versiot
305 label_version_plural: Versiot
305 label_confirmation: Vahvistus
306 label_confirmation: Vahvistus
306 label_export_to: Vie
307 label_export_to: Vie
307 label_read: Lukee...
308 label_read: Lukee...
308 label_public_projects: Julkiset projektit
309 label_public_projects: Julkiset projektit
309 label_open_issues: avoin
310 label_open_issues: avoin
310 label_open_issues_plural: avointa
311 label_open_issues_plural: avointa
311 label_closed_issues: suljettu
312 label_closed_issues: suljettu
312 label_closed_issues_plural: suljettua
313 label_closed_issues_plural: suljettua
313 label_total: Yhteensä
314 label_total: Yhteensä
314 label_permissions: Oikeudet
315 label_permissions: Oikeudet
315 label_current_status: Nykyinen tila
316 label_current_status: Nykyinen tila
316 label_new_statuses_allowed: Uudet tilat sallittu
317 label_new_statuses_allowed: Uudet tilat sallittu
317 label_all: kaikki
318 label_all: kaikki
318 label_none: ei mitään
319 label_none: ei mitään
319 label_nobody: ei kukaan
320 label_nobody: ei kukaan
320 label_next: Seuraava
321 label_next: Seuraava
321 label_previous: Edellinen
322 label_previous: Edellinen
322 label_used_by: Käytetty
323 label_used_by: Käytetty
323 label_details: Yksityiskohdat
324 label_details: Yksityiskohdat
324 label_add_note: Lisää muistiinpano
325 label_add_note: Lisää muistiinpano
325 label_per_page: Per sivu
326 label_per_page: Per sivu
326 label_calendar: Kalenteri
327 label_calendar: Kalenteri
327 label_months_from: kuukauden päässä
328 label_months_from: kuukauden päässä
328 label_gantt: Gantt
329 label_gantt: Gantt
329 label_internal: Sisäinen
330 label_internal: Sisäinen
330 label_last_changes: viimeiset %d muutokset
331 label_last_changes: viimeiset %d muutokset
331 label_change_view_all: Näytä kaikki muutokset
332 label_change_view_all: Näytä kaikki muutokset
332 label_personalize_page: Personoi tämä sivu
333 label_personalize_page: Personoi tämä sivu
333 label_comment: Kommentti
334 label_comment: Kommentti
334 label_comment_plural: Kommentit
335 label_comment_plural: Kommentit
335 label_comment_add: Lisää kommentti
336 label_comment_add: Lisää kommentti
336 label_comment_added: Kommentti lisätty
337 label_comment_added: Kommentti lisätty
337 label_comment_delete: Poista kommentti
338 label_comment_delete: Poista kommentti
338 label_query: Räätälöity haku
339 label_query: Räätälöity haku
339 label_query_plural: Räätälöidyt haut
340 label_query_plural: Räätälöidyt haut
340 label_query_new: Uusi haku
341 label_query_new: Uusi haku
341 label_filter_add: Lisää suodatin
342 label_filter_add: Lisää suodatin
342 label_filter_plural: Suodattimet
343 label_filter_plural: Suodattimet
343 label_equals: yhtä kuin
344 label_equals: yhtä kuin
344 label_not_equals: epäsuuri kuin
345 label_not_equals: epäsuuri kuin
345 label_in_less_than: pienempi kuin
346 label_in_less_than: pienempi kuin
346 label_in_more_than: suurempi kuin
347 label_in_more_than: suurempi kuin
347 label_in:
348 label_in:
348 label_today: tänään
349 label_today: tänään
349 label_this_week: tämä viikko
350 label_this_week: tämä viikko
350 label_less_than_ago: vähemmän kuin päivää sitten
351 label_less_than_ago: vähemmän kuin päivää sitten
351 label_more_than_ago: enemän kuin päivää sitten
352 label_more_than_ago: enemän kuin päivää sitten
352 label_ago: päiviä sitten
353 label_ago: päiviä sitten
353 label_contains: sisältää
354 label_contains: sisältää
354 label_not_contains: ei sisällä
355 label_not_contains: ei sisällä
355 label_day_plural: päivät
356 label_day_plural: päivät
356 label_repository: Säiliö
357 label_repository: Säiliö
357 label_repository_plural: Säiliötä
358 label_repository_plural: Säiliötä
358 label_browse: Selata
359 label_browse: Selata
359 label_modification: %d muutos
360 label_modification: %d muutos
360 label_modification_plural: %d muutettu
361 label_modification_plural: %d muutettu
361 label_revision: Versio
362 label_revision: Versio
362 label_revision_plural: Versiot
363 label_revision_plural: Versiot
363 label_added: lisätty
364 label_added: lisätty
364 label_modified: muokattu
365 label_modified: muokattu
365 label_deleted: poistettu
366 label_deleted: poistettu
366 label_latest_revision: Viimeisin versio
367 label_latest_revision: Viimeisin versio
367 label_latest_revision_plural: Viimeisimmät versiot
368 label_latest_revision_plural: Viimeisimmät versiot
368 label_view_revisions: Näytä versiot
369 label_view_revisions: Näytä versiot
369 label_max_size: Maksimi koko
370 label_max_size: Maksimi koko
370 label_on:
371 label_on:
371 label_sort_highest: Siirrä ylimmäiseksi
372 label_sort_highest: Siirrä ylimmäiseksi
372 label_sort_higher: Siirrä ylös
373 label_sort_higher: Siirrä ylös
373 label_sort_lower: Siirrä alas
374 label_sort_lower: Siirrä alas
374 label_sort_lowest: Siirrä alimmaiseksi
375 label_sort_lowest: Siirrä alimmaiseksi
375 label_roadmap: Roadmap
376 label_roadmap: Roadmap
376 label_roadmap_due_in: Määräaika
377 label_roadmap_due_in: Määräaika
377 label_roadmap_overdue: %s myöhässä
378 label_roadmap_overdue: %s myöhässä
378 label_roadmap_no_issues: Ei tapahtumia tälle versiolle
379 label_roadmap_no_issues: Ei tapahtumia tälle versiolle
379 label_search: Haku
380 label_search: Haku
380 label_result_plural: Tulokset
381 label_result_plural: Tulokset
381 label_all_words: kaikki sanat
382 label_all_words: kaikki sanat
382 label_wiki: Wiki
383 label_wiki: Wiki
383 label_wiki_edit: Wiki muokkaus
384 label_wiki_edit: Wiki muokkaus
384 label_wiki_edit_plural: Wiki muokkaukset
385 label_wiki_edit_plural: Wiki muokkaukset
385 label_wiki_page: Wiki sivu
386 label_wiki_page: Wiki sivu
386 label_wiki_page_plural: Wiki sivut
387 label_wiki_page_plural: Wiki sivut
387 label_index_by_title: Hakemisto otsikoittain
388 label_index_by_title: Hakemisto otsikoittain
388 label_index_by_date: Hakemisto päivittäin
389 label_index_by_date: Hakemisto päivittäin
389 label_current_version: Nykyinen versio
390 label_current_version: Nykyinen versio
390 label_preview: Esikatselu
391 label_preview: Esikatselu
391 label_feed_plural: Syötteet
392 label_feed_plural: Syötteet
392 label_changes_details: Kaikkien muutosten yksityiskohdat
393 label_changes_details: Kaikkien muutosten yksityiskohdat
393 label_issue_tracking: Tapahtumien seuranta
394 label_issue_tracking: Tapahtumien seuranta
394 label_spent_time: Käytetty aika
395 label_spent_time: Käytetty aika
395 label_f_hour: %.2f tunti
396 label_f_hour: %.2f tunti
396 label_f_hour_plural: %.2f tuntia
397 label_f_hour_plural: %.2f tuntia
397 label_time_tracking: Ajan seuranta
398 label_time_tracking: Ajan seuranta
398 label_change_plural: Muutokset
399 label_change_plural: Muutokset
399 label_statistics: Tilastot
400 label_statistics: Tilastot
400 label_commits_per_month: Tapahtumaa per kuukausi
401 label_commits_per_month: Tapahtumaa per kuukausi
401 label_commits_per_author: Tapahtumaa per tekijä
402 label_commits_per_author: Tapahtumaa per tekijä
402 label_view_diff: Näytä erot
403 label_view_diff: Näytä erot
403 label_diff_inline: sisällössä
404 label_diff_inline: sisällössä
404 label_diff_side_by_side: vierekkäin
405 label_diff_side_by_side: vierekkäin
405 label_options: Valinnat
406 label_options: Valinnat
406 label_copy_workflow_from: Kopioi työnkulku
407 label_copy_workflow_from: Kopioi työnkulku
407 label_permissions_report: Oikeuksien raportti
408 label_permissions_report: Oikeuksien raportti
408 label_watched_issues: Seurattavat tapahtumat
409 label_watched_issues: Seurattavat tapahtumat
409 label_related_issues: Liittyvät tapahtumat
410 label_related_issues: Liittyvät tapahtumat
410 label_applied_status: Lisätty tila
411 label_applied_status: Lisätty tila
411 label_loading: Lataa...
412 label_loading: Lataa...
412 label_relation_new: Uusi suhde
413 label_relation_new: Uusi suhde
413 label_relation_delete: Poista suhde
414 label_relation_delete: Poista suhde
414 label_relates_to: liittyy
415 label_relates_to: liittyy
415 label_duplicates: kaksoiskappale
416 label_duplicates: kaksoiskappale
416 label_blocks: estää
417 label_blocks: estää
417 label_blocked_by: estetty
418 label_blocked_by: estetty
418 label_precedes: edeltää
419 label_precedes: edeltää
419 label_follows: seuraa
420 label_follows: seuraa
420 label_end_to_start: loppu alkuun
421 label_end_to_start: loppu alkuun
421 label_end_to_end: loppu loppuun
422 label_end_to_end: loppu loppuun
422 label_start_to_start: alku alkuun
423 label_start_to_start: alku alkuun
423 label_start_to_end: alku loppuun
424 label_start_to_end: alku loppuun
424 label_stay_logged_in: Pysy kirjautuneena
425 label_stay_logged_in: Pysy kirjautuneena
425 label_disabled: poistettu käytöstä
426 label_disabled: poistettu käytöstä
426 label_show_completed_versions: Näytä valmiit versiot
427 label_show_completed_versions: Näytä valmiit versiot
427 label_me: minä
428 label_me: minä
428 label_board: Keskustelupalsta
429 label_board: Keskustelupalsta
429 label_board_new: Uusi keskustelupalsta
430 label_board_new: Uusi keskustelupalsta
430 label_board_plural: Keskustelupalstat
431 label_board_plural: Keskustelupalstat
431 label_topic_plural: Aiheet
432 label_topic_plural: Aiheet
432 label_message_plural: Viestit
433 label_message_plural: Viestit
433 label_message_last: Viimeisin viesti
434 label_message_last: Viimeisin viesti
434 label_message_new: Uusi viesti
435 label_message_new: Uusi viesti
435 label_reply_plural: Vastaukset
436 label_reply_plural: Vastaukset
436 label_send_information: Lähetä tilin tiedot käyttäjälle
437 label_send_information: Lähetä tilin tiedot käyttäjälle
437 label_year: Vuosi
438 label_year: Vuosi
438 label_month: Kuukausi
439 label_month: Kuukausi
439 label_week: Viikko
440 label_week: Viikko
440 label_date_from:
441 label_date_from:
441 label_date_to:
442 label_date_to:
442 label_language_based: Pohjautuen käyttäjän kieleen
443 label_language_based: Pohjautuen käyttäjän kieleen
443 label_sort_by: Lajittele %s
444 label_sort_by: Lajittele %s
444 label_send_test_email: Lähetä testi sähköposti
445 label_send_test_email: Lähetä testi sähköposti
445 label_feeds_access_key_created_on: RSS pääsy avain luotiin %s sitten
446 label_feeds_access_key_created_on: RSS pääsy avain luotiin %s sitten
446 label_module_plural: Moduulit
447 label_module_plural: Moduulit
447 label_added_time_by: Lisännyt %s %s sitten
448 label_added_time_by: Lisännyt %s %s sitten
448 label_updated_time: Päivitetty %s sitten
449 label_updated_time: Päivitetty %s sitten
449 label_jump_to_a_project: Siirry projektiin...
450 label_jump_to_a_project: Siirry projektiin...
450 label_file_plural: Tiedostot
451 label_file_plural: Tiedostot
451 label_changeset_plural: Muutosryhmät
452 label_changeset_plural: Muutosryhmät
452 label_default_columns: Vakio sarakkeet
453 label_default_columns: Vakio sarakkeet
453 label_no_change_option: (Ei muutosta)
454 label_no_change_option: (Ei muutosta)
454 label_bulk_edit_selected_issues: Perusmuotoile valitut tapahtumat
455 label_bulk_edit_selected_issues: Perusmuotoile valitut tapahtumat
455 label_theme: Teema
456 label_theme: Teema
456 label_default: Vakio
457 label_default: Vakio
457 label_search_titles_only: Haek vain otsikot
458 label_search_titles_only: Haek vain otsikot
458 label_user_mail_option_all: "Kaikista tapahtumista kaikissa projekteistani"
459 label_user_mail_option_all: "Kaikista tapahtumista kaikissa projekteistani"
459 label_user_mail_option_selected: "Kaikista tapahtumista vain valitsemistani projekteista..."
460 label_user_mail_option_selected: "Kaikista tapahtumista vain valitsemistani projekteista..."
460 label_user_mail_option_none: "Vain tapahtumista joita valvon tai olen mukana"
461 label_user_mail_option_none: "Vain tapahtumista joita valvon tai olen mukana"
461 label_user_mail_no_self_notified: "En halua muistutusta muutoksista joita itse teen"
462 label_user_mail_no_self_notified: "En halua muistutusta muutoksista joita itse teen"
462 label_registration_activation_by_email: tilin aktivointi sähköpostitse
463 label_registration_activation_by_email: tilin aktivointi sähköpostitse
463 label_registration_manual_activation: manuaalinen tilin aktivointi
464 label_registration_manual_activation: manuaalinen tilin aktivointi
464 label_registration_automatic_activation: automaattinen tilin aktivointi
465 label_registration_automatic_activation: automaattinen tilin aktivointi
465 label_display_per_page: 'Per sivu: %s'
466 label_display_per_page: 'Per sivu: %s'
466 label_age: Ikä
467 label_age: Ikä
467 label_change_properties: Vaihda asetuksia
468 label_change_properties: Vaihda asetuksia
468 label_general: Yleinen
469 label_general: Yleinen
469 label_date_to: To
470 label_date_to: To
470 label_date_from: From
471 label_date_from: From
471 label_in: in
472 label_in: in
472 label_on: 'on'
473 label_on: 'on'
473
474
474 button_login: Kirjaudu
475 button_login: Kirjaudu
475 button_submit: Lähetä
476 button_submit: Lähetä
476 button_save: Tallenna
477 button_save: Tallenna
477 button_check_all: Valitse kaikki
478 button_check_all: Valitse kaikki
478 button_uncheck_all: Poista valinnat
479 button_uncheck_all: Poista valinnat
479 button_delete: Poista
480 button_delete: Poista
480 button_create: Luo
481 button_create: Luo
481 button_test: Testaa
482 button_test: Testaa
482 button_edit: Muokkaa
483 button_edit: Muokkaa
483 button_add: Lisää
484 button_add: Lisää
484 button_change: Muuta
485 button_change: Muuta
485 button_apply: Ota käyttöön
486 button_apply: Ota käyttöön
486 button_clear: Tyhjää
487 button_clear: Tyhjää
487 button_lock: Lukitse
488 button_lock: Lukitse
488 button_unlock: Vapauta
489 button_unlock: Vapauta
489 button_download: Lataa
490 button_download: Lataa
490 button_list: Lista
491 button_list: Lista
491 button_view: Näytä
492 button_view: Näytä
492 button_move: Siirrä
493 button_move: Siirrä
493 button_back: Takaisin
494 button_back: Takaisin
494 button_cancel: Peruuta
495 button_cancel: Peruuta
495 button_activate: Aktivoi
496 button_activate: Aktivoi
496 button_sort: Järjestä
497 button_sort: Järjestä
497 button_log_time: Seuraa aikaa
498 button_log_time: Seuraa aikaa
498 button_rollback: Siirry takaisin tähän versioon
499 button_rollback: Siirry takaisin tähän versioon
499 button_watch: Vahdi
500 button_watch: Vahdi
500 button_unwatch: Älä vahdi
501 button_unwatch: Älä vahdi
501 button_reply: Vastaa
502 button_reply: Vastaa
502 button_archive: Arkistoi
503 button_archive: Arkistoi
503 button_unarchive: Palauta
504 button_unarchive: Palauta
504 button_reset: Nollaus
505 button_reset: Nollaus
505 button_rename: Uudelleen nimeä
506 button_rename: Uudelleen nimeä
506 button_change_password: Vaihda salasana
507 button_change_password: Vaihda salasana
507 button_copy: Kopioi
508 button_copy: Kopioi
508 button_annotate: Lisää selitys
509 button_annotate: Lisää selitys
509 button_update: Päivitä
510 button_update: Päivitä
510
511
511 status_active: aktiivinen
512 status_active: aktiivinen
512 status_registered: rekisteröity
513 status_registered: rekisteröity
513 status_locked: lukittu
514 status_locked: lukittu
514
515
515 text_select_mail_notifications: Valitse tapahtumat joista tulisi lähettää sähköpostimuistutus.
516 text_select_mail_notifications: Valitse tapahtumat joista tulisi lähettää sähköpostimuistutus.
516 text_regexp_info: esim. ^[A-Z0-9]+$
517 text_regexp_info: esim. ^[A-Z0-9]+$
517 text_min_max_length_info: 0 tarkoitta, ei rajoitusta
518 text_min_max_length_info: 0 tarkoitta, ei rajoitusta
518 text_project_destroy_confirmation: Oletko varma että haluat poistaa tämän projektin ja kaikki siihen kuuluvat tiedot?
519 text_project_destroy_confirmation: Oletko varma että haluat poistaa tämän projektin ja kaikki siihen kuuluvat tiedot?
519 text_workflow_edit: Valitse rooli ja tiketti muokataksesi työnkulkua
520 text_workflow_edit: Valitse rooli ja tiketti muokataksesi työnkulkua
520 text_are_you_sure: Oletko varma?
521 text_are_you_sure: Oletko varma?
521 text_journal_changed: %s muutettu arvoksi %s
522 text_journal_changed: %s muutettu arvoksi %s
522 text_journal_set_to: muutettu %s
523 text_journal_set_to: muutettu %s
523 text_journal_deleted: poistettu
524 text_journal_deleted: poistettu
524 text_tip_task_begin_day: tehtävä joka alkaa tänä päivänä
525 text_tip_task_begin_day: tehtävä joka alkaa tänä päivänä
525 text_tip_task_end_day: tehtävä joka loppuu tänä päivänä
526 text_tip_task_end_day: tehtävä joka loppuu tänä päivänä
526 text_tip_task_begin_end_day: tehtävä joka alkaa ja loppuu tänä päivänä
527 text_tip_task_begin_end_day: tehtävä joka alkaa ja loppuu tänä päivänä
527 text_project_identifier_info: 'Pienet kirjaimet (a-z), numerot ja viivat ovat sallittu.<br />Tallentamisen jälkeen tunnistetta ei voi muuttaa.'
528 text_project_identifier_info: 'Pienet kirjaimet (a-z), numerot ja viivat ovat sallittu.<br />Tallentamisen jälkeen tunnistetta ei voi muuttaa.'
528 text_caracters_maximum: %d merkkiä enintään.
529 text_caracters_maximum: %d merkkiä enintään.
529 text_caracters_minimum: Täytyy olla vähintään %d merkkiä pitkä.
530 text_caracters_minimum: Täytyy olla vähintään %d merkkiä pitkä.
530 text_length_between: Pituus välillä %d ja %d merkkiä.
531 text_length_between: Pituus välillä %d ja %d merkkiä.
531 text_tracker_no_workflow: Ei työnkulkua määritelty tälle tiketille
532 text_tracker_no_workflow: Ei työnkulkua määritelty tälle tiketille
532 text_unallowed_characters: Kiellettyjä merkkejä
533 text_unallowed_characters: Kiellettyjä merkkejä
533 text_comma_separated: Useat arvot sallittu (pilkku eroteltuna).
534 text_comma_separated: Useat arvot sallittu (pilkku eroteltuna).
534 text_issues_ref_in_commit_messages: Liitän ja korjaan ongelmia syötetyssä viestissä
535 text_issues_ref_in_commit_messages: Liitän ja korjaan ongelmia syötetyssä viestissä
535 text_issue_added: Tapahtuma %s on kirjattu.
536 text_issue_added: Tapahtuma %s on kirjattu.
536 text_issue_updated: Tapahtuma %s on päivitetty.
537 text_issue_updated: Tapahtuma %s on päivitetty.
537 text_wiki_destroy_confirmation: Oletko varma että haluat poistaa tämän wiki:n ja kaikki sen sisältämän tiedon?
538 text_wiki_destroy_confirmation: Oletko varma että haluat poistaa tämän wiki:n ja kaikki sen sisältämän tiedon?
538 text_issue_category_destroy_question: Jotkut tapahtumat (%d) ovat nimetty tälle luokalle. Mitä haluat tehdä?
539 text_issue_category_destroy_question: Jotkut tapahtumat (%d) ovat nimetty tälle luokalle. Mitä haluat tehdä?
539 text_issue_category_destroy_assignments: Poista luokan tehtävät
540 text_issue_category_destroy_assignments: Poista luokan tehtävät
540 text_issue_category_reassign_to: Vaihda tapahtuma tähän luokkaan
541 text_issue_category_reassign_to: Vaihda tapahtuma tähän luokkaan
541 text_user_mail_option: "Valitesemattomille projekteille, saat vain muistutuksen asioista joita vahdit tai olet mukana (esim. tapahtumat joissa olet tekijä tai nimettynä)."
542 text_user_mail_option: "Valitesemattomille projekteille, saat vain muistutuksen asioista joita vahdit tai olet mukana (esim. tapahtumat joissa olet tekijä tai nimettynä)."
542 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."
543 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."
543 text_load_default_configuration: Lataa vakioasetukset
544 text_load_default_configuration: Lataa vakioasetukset
544
545
545 default_role_manager: Päälikkö
546 default_role_manager: Päälikkö
546 default_role_developper: Kehittäjä
547 default_role_developper: Kehittäjä
547 default_role_reporter: Tarkastelija
548 default_role_reporter: Tarkastelija
548 default_tracker_bug: Ohjelmointivirhe
549 default_tracker_bug: Ohjelmointivirhe
549 default_tracker_feature: Ominaisuus
550 default_tracker_feature: Ominaisuus
550 default_tracker_support: Tuki
551 default_tracker_support: Tuki
551 default_issue_status_new: Uusi
552 default_issue_status_new: Uusi
552 default_issue_status_assigned: Nimetty
553 default_issue_status_assigned: Nimetty
553 default_issue_status_resolved: Hyväksytty
554 default_issue_status_resolved: Hyväksytty
554 default_issue_status_feedback: Palaute
555 default_issue_status_feedback: Palaute
555 default_issue_status_closed: Suljettu
556 default_issue_status_closed: Suljettu
556 default_issue_status_rejected: Hylätty
557 default_issue_status_rejected: Hylätty
557 default_doc_category_user: Käyttäjä dokumentaatio
558 default_doc_category_user: Käyttäjä dokumentaatio
558 default_doc_category_tech: Tekninen dokumentaatio
559 default_doc_category_tech: Tekninen dokumentaatio
559 default_priority_low: Matala
560 default_priority_low: Matala
560 default_priority_normal: Normaali
561 default_priority_normal: Normaali
561 default_priority_high: Korkea
562 default_priority_high: Korkea
562 default_priority_urgent: Kiireellinen
563 default_priority_urgent: Kiireellinen
563 default_priority_immediate: Valitön
564 default_priority_immediate: Valitön
564 default_activity_design: Suunnittelu
565 default_activity_design: Suunnittelu
565 default_activity_development: Kehitys
566 default_activity_development: Kehitys
566
567
567 enumeration_issue_priorities: Tapahtuman prioriteetit
568 enumeration_issue_priorities: Tapahtuman prioriteetit
568 enumeration_doc_categories: Dokumentin luokat
569 enumeration_doc_categories: Dokumentin luokat
569 enumeration_activities: Aktiviteetit (ajan seuranta)
570 enumeration_activities: Aktiviteetit (ajan seuranta)
570 label_associated_revisions: Associated revisions
571 label_associated_revisions: Associated revisions
@@ -1,566 +1,568
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_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
71 notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
72 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
72 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
73 notice_email_sent: "Un email a été envoyé à %s"
73 notice_email_sent: "Un email a été envoyé à %s"
74 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
74 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
75 notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée."
75 notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée."
76 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_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s."
77 notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour."
77 notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour."
78 notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur."
78 notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur."
79 notice_default_data_loaded: Paramétrage par défaut chargé avec succès.
79 notice_default_data_loaded: Paramétrage par défaut chargé avec succès.
80
80
81 error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s"
81 error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s"
82 error_scm_not_found: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
83 error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt: %s"
82
84
83 mail_subject_lost_password: Votre mot de passe redMine
85 mail_subject_lost_password: Votre mot de passe redMine
84 mail_body_lost_password: 'Pour changer votre mot de passe Redmine, cliquez sur le lien suivant:'
86 mail_body_lost_password: 'Pour changer votre mot de passe Redmine, cliquez sur le lien suivant:'
85 mail_subject_register: Activation de votre compte redMine
87 mail_subject_register: Activation de votre compte redMine
86 mail_body_register: 'Pour activer votre compte Redmine, cliquez sur le lien suivant:'
88 mail_body_register: 'Pour activer votre compte Redmine, cliquez sur le lien suivant:'
87 mail_body_account_information_external: Vous pouvez utiliser votre compte "%s" pour vous connecter à Redmine.
89 mail_body_account_information_external: Vous pouvez utiliser votre compte "%s" pour vous connecter à Redmine.
88 mail_body_account_information: Paramètres de connexion de votre compte Redmine
90 mail_body_account_information: Paramètres de connexion de votre compte Redmine
89 mail_subject_account_activation_request: "Demande d'activation d'un compte Redmine"
91 mail_subject_account_activation_request: "Demande d'activation d'un compte Redmine"
90 mail_body_account_activation_request: "Un nouvel utilisateur (%s) s'est inscrit. Son compte nécessite votre approbation:"
92 mail_body_account_activation_request: "Un nouvel utilisateur (%s) s'est inscrit. Son compte nécessite votre approbation:"
91
93
92 gui_validation_error: 1 erreur
94 gui_validation_error: 1 erreur
93 gui_validation_error_plural: %d erreurs
95 gui_validation_error_plural: %d erreurs
94
96
95 field_name: Nom
97 field_name: Nom
96 field_description: Description
98 field_description: Description
97 field_summary: Résumé
99 field_summary: Résumé
98 field_is_required: Obligatoire
100 field_is_required: Obligatoire
99 field_firstname: Prénom
101 field_firstname: Prénom
100 field_lastname: Nom
102 field_lastname: Nom
101 field_mail: Email
103 field_mail: Email
102 field_filename: Fichier
104 field_filename: Fichier
103 field_filesize: Taille
105 field_filesize: Taille
104 field_downloads: Téléchargements
106 field_downloads: Téléchargements
105 field_author: Auteur
107 field_author: Auteur
106 field_created_on: Créé
108 field_created_on: Créé
107 field_updated_on: Mis à jour
109 field_updated_on: Mis à jour
108 field_field_format: Format
110 field_field_format: Format
109 field_is_for_all: Pour tous les projets
111 field_is_for_all: Pour tous les projets
110 field_possible_values: Valeurs possibles
112 field_possible_values: Valeurs possibles
111 field_regexp: Expression régulière
113 field_regexp: Expression régulière
112 field_min_length: Longueur minimum
114 field_min_length: Longueur minimum
113 field_max_length: Longueur maximum
115 field_max_length: Longueur maximum
114 field_value: Valeur
116 field_value: Valeur
115 field_category: Catégorie
117 field_category: Catégorie
116 field_title: Titre
118 field_title: Titre
117 field_project: Projet
119 field_project: Projet
118 field_issue: Demande
120 field_issue: Demande
119 field_status: Statut
121 field_status: Statut
120 field_notes: Notes
122 field_notes: Notes
121 field_is_closed: Demande fermée
123 field_is_closed: Demande fermée
122 field_is_default: Valeur par défaut
124 field_is_default: Valeur par défaut
123 field_tracker: Tracker
125 field_tracker: Tracker
124 field_subject: Sujet
126 field_subject: Sujet
125 field_due_date: Date d'échéance
127 field_due_date: Date d'échéance
126 field_assigned_to: Assigné à
128 field_assigned_to: Assigné à
127 field_priority: Priorité
129 field_priority: Priorité
128 field_fixed_version: Version corrigée
130 field_fixed_version: Version corrigée
129 field_user: Utilisateur
131 field_user: Utilisateur
130 field_role: Rôle
132 field_role: Rôle
131 field_homepage: Site web
133 field_homepage: Site web
132 field_is_public: Public
134 field_is_public: Public
133 field_parent: Sous-projet de
135 field_parent: Sous-projet de
134 field_is_in_chlog: Demandes affichées dans l'historique
136 field_is_in_chlog: Demandes affichées dans l'historique
135 field_is_in_roadmap: Demandes affichées dans la roadmap
137 field_is_in_roadmap: Demandes affichées dans la roadmap
136 field_login: Identifiant
138 field_login: Identifiant
137 field_mail_notification: Notifications par mail
139 field_mail_notification: Notifications par mail
138 field_admin: Administrateur
140 field_admin: Administrateur
139 field_last_login_on: Dernière connexion
141 field_last_login_on: Dernière connexion
140 field_language: Langue
142 field_language: Langue
141 field_effective_date: Date
143 field_effective_date: Date
142 field_password: Mot de passe
144 field_password: Mot de passe
143 field_new_password: Nouveau mot de passe
145 field_new_password: Nouveau mot de passe
144 field_password_confirmation: Confirmation
146 field_password_confirmation: Confirmation
145 field_version: Version
147 field_version: Version
146 field_type: Type
148 field_type: Type
147 field_host: Hôte
149 field_host: Hôte
148 field_port: Port
150 field_port: Port
149 field_account: Compte
151 field_account: Compte
150 field_base_dn: Base DN
152 field_base_dn: Base DN
151 field_attr_login: Attribut Identifiant
153 field_attr_login: Attribut Identifiant
152 field_attr_firstname: Attribut Prénom
154 field_attr_firstname: Attribut Prénom
153 field_attr_lastname: Attribut Nom
155 field_attr_lastname: Attribut Nom
154 field_attr_mail: Attribut Email
156 field_attr_mail: Attribut Email
155 field_onthefly: Création des utilisateurs à la volée
157 field_onthefly: Création des utilisateurs à la volée
156 field_start_date: Début
158 field_start_date: Début
157 field_done_ratio: %% Réalisé
159 field_done_ratio: %% Réalisé
158 field_auth_source: Mode d'authentification
160 field_auth_source: Mode d'authentification
159 field_hide_mail: Cacher mon adresse mail
161 field_hide_mail: Cacher mon adresse mail
160 field_comments: Commentaire
162 field_comments: Commentaire
161 field_url: URL
163 field_url: URL
162 field_start_page: Page de démarrage
164 field_start_page: Page de démarrage
163 field_subproject: Sous-projet
165 field_subproject: Sous-projet
164 field_hours: Heures
166 field_hours: Heures
165 field_activity: Activité
167 field_activity: Activité
166 field_spent_on: Date
168 field_spent_on: Date
167 field_identifier: Identifiant
169 field_identifier: Identifiant
168 field_is_filter: Utilisé comme filtre
170 field_is_filter: Utilisé comme filtre
169 field_issue_to_id: Demande liée
171 field_issue_to_id: Demande liée
170 field_delay: Retard
172 field_delay: Retard
171 field_assignable: Demandes assignables à ce rôle
173 field_assignable: Demandes assignables à ce rôle
172 field_redirect_existing_links: Rediriger les liens existants
174 field_redirect_existing_links: Rediriger les liens existants
173 field_estimated_hours: Temps estimé
175 field_estimated_hours: Temps estimé
174 field_column_names: Colonnes
176 field_column_names: Colonnes
175 field_time_zone: Fuseau horaire
177 field_time_zone: Fuseau horaire
176 field_searchable: Utilisé pour les recherches
178 field_searchable: Utilisé pour les recherches
177 field_default_value: Valeur par défaut
179 field_default_value: Valeur par défaut
178
180
179 setting_app_title: Titre de l'application
181 setting_app_title: Titre de l'application
180 setting_app_subtitle: Sous-titre de l'application
182 setting_app_subtitle: Sous-titre de l'application
181 setting_welcome_text: Texte d'accueil
183 setting_welcome_text: Texte d'accueil
182 setting_default_language: Langue par défaut
184 setting_default_language: Langue par défaut
183 setting_login_required: Authentification obligatoire
185 setting_login_required: Authentification obligatoire
184 setting_self_registration: Inscription des nouveaux utilisateurs
186 setting_self_registration: Inscription des nouveaux utilisateurs
185 setting_attachment_max_size: Taille max des fichiers
187 setting_attachment_max_size: Taille max des fichiers
186 setting_issues_export_limit: Limite export demandes
188 setting_issues_export_limit: Limite export demandes
187 setting_mail_from: Adresse d'émission
189 setting_mail_from: Adresse d'émission
188 setting_bcc_recipients: Destinataires en copie cachée (cci)
190 setting_bcc_recipients: Destinataires en copie cachée (cci)
189 setting_host_name: Nom d'hôte
191 setting_host_name: Nom d'hôte
190 setting_text_formatting: Formatage du texte
192 setting_text_formatting: Formatage du texte
191 setting_wiki_compression: Compression historique wiki
193 setting_wiki_compression: Compression historique wiki
192 setting_feeds_limit: Limite du contenu des flux RSS
194 setting_feeds_limit: Limite du contenu des flux RSS
193 setting_autofetch_changesets: Récupération auto. des commits
195 setting_autofetch_changesets: Récupération auto. des commits
194 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
196 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
195 setting_commit_ref_keywords: Mot-clés de référencement
197 setting_commit_ref_keywords: Mot-clés de référencement
196 setting_commit_fix_keywords: Mot-clés de résolution
198 setting_commit_fix_keywords: Mot-clés de résolution
197 setting_autologin: Autologin
199 setting_autologin: Autologin
198 setting_date_format: Format de date
200 setting_date_format: Format de date
199 setting_time_format: Format d'heure
201 setting_time_format: Format d'heure
200 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
202 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
201 setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes
203 setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes
202 setting_repositories_encodings: Encodages des dépôts
204 setting_repositories_encodings: Encodages des dépôts
203 setting_emails_footer: Pied-de-page des emails
205 setting_emails_footer: Pied-de-page des emails
204 setting_protocol: Protocole
206 setting_protocol: Protocole
205 setting_per_page_options: Options d'objets affichés par page
207 setting_per_page_options: Options d'objets affichés par page
206
208
207 label_user: Utilisateur
209 label_user: Utilisateur
208 label_user_plural: Utilisateurs
210 label_user_plural: Utilisateurs
209 label_user_new: Nouvel utilisateur
211 label_user_new: Nouvel utilisateur
210 label_project: Projet
212 label_project: Projet
211 label_project_new: Nouveau projet
213 label_project_new: Nouveau projet
212 label_project_plural: Projets
214 label_project_plural: Projets
213 label_project_all: Tous les projets
215 label_project_all: Tous les projets
214 label_project_latest: Derniers projets
216 label_project_latest: Derniers projets
215 label_issue: Demande
217 label_issue: Demande
216 label_issue_new: Nouvelle demande
218 label_issue_new: Nouvelle demande
217 label_issue_plural: Demandes
219 label_issue_plural: Demandes
218 label_issue_view_all: Voir toutes les demandes
220 label_issue_view_all: Voir toutes les demandes
219 label_issues_by: Demandes par %s
221 label_issues_by: Demandes par %s
220 label_document: Document
222 label_document: Document
221 label_document_new: Nouveau document
223 label_document_new: Nouveau document
222 label_document_plural: Documents
224 label_document_plural: Documents
223 label_role: Rôle
225 label_role: Rôle
224 label_role_plural: Rôles
226 label_role_plural: Rôles
225 label_role_new: Nouveau rôle
227 label_role_new: Nouveau rôle
226 label_role_and_permissions: Rôles et permissions
228 label_role_and_permissions: Rôles et permissions
227 label_member: Membre
229 label_member: Membre
228 label_member_new: Nouveau membre
230 label_member_new: Nouveau membre
229 label_member_plural: Membres
231 label_member_plural: Membres
230 label_tracker: Tracker
232 label_tracker: Tracker
231 label_tracker_plural: Trackers
233 label_tracker_plural: Trackers
232 label_tracker_new: Nouveau tracker
234 label_tracker_new: Nouveau tracker
233 label_workflow: Workflow
235 label_workflow: Workflow
234 label_issue_status: Statut de demandes
236 label_issue_status: Statut de demandes
235 label_issue_status_plural: Statuts de demandes
237 label_issue_status_plural: Statuts de demandes
236 label_issue_status_new: Nouveau statut
238 label_issue_status_new: Nouveau statut
237 label_issue_category: Catégorie de demandes
239 label_issue_category: Catégorie de demandes
238 label_issue_category_plural: Catégories de demandes
240 label_issue_category_plural: Catégories de demandes
239 label_issue_category_new: Nouvelle catégorie
241 label_issue_category_new: Nouvelle catégorie
240 label_custom_field: Champ personnalisé
242 label_custom_field: Champ personnalisé
241 label_custom_field_plural: Champs personnalisés
243 label_custom_field_plural: Champs personnalisés
242 label_custom_field_new: Nouveau champ personnalisé
244 label_custom_field_new: Nouveau champ personnalisé
243 label_enumerations: Listes de valeurs
245 label_enumerations: Listes de valeurs
244 label_enumeration_new: Nouvelle valeur
246 label_enumeration_new: Nouvelle valeur
245 label_information: Information
247 label_information: Information
246 label_information_plural: Informations
248 label_information_plural: Informations
247 label_please_login: Identification
249 label_please_login: Identification
248 label_register: S'enregistrer
250 label_register: S'enregistrer
249 label_password_lost: Mot de passe perdu
251 label_password_lost: Mot de passe perdu
250 label_home: Accueil
252 label_home: Accueil
251 label_my_page: Ma page
253 label_my_page: Ma page
252 label_my_account: Mon compte
254 label_my_account: Mon compte
253 label_my_projects: Mes projets
255 label_my_projects: Mes projets
254 label_administration: Administration
256 label_administration: Administration
255 label_login: Connexion
257 label_login: Connexion
256 label_logout: Déconnexion
258 label_logout: Déconnexion
257 label_help: Aide
259 label_help: Aide
258 label_reported_issues: Demandes soumises
260 label_reported_issues: Demandes soumises
259 label_assigned_to_me_issues: Demandes qui me sont assignées
261 label_assigned_to_me_issues: Demandes qui me sont assignées
260 label_last_login: Dernière connexion
262 label_last_login: Dernière connexion
261 label_last_updates: Dernière mise à jour
263 label_last_updates: Dernière mise à jour
262 label_last_updates_plural: %d dernières mises à jour
264 label_last_updates_plural: %d dernières mises à jour
263 label_registered_on: Inscrit le
265 label_registered_on: Inscrit le
264 label_activity: Activité
266 label_activity: Activité
265 label_new: Nouveau
267 label_new: Nouveau
266 label_logged_as: Connecté en tant que
268 label_logged_as: Connecté en tant que
267 label_environment: Environnement
269 label_environment: Environnement
268 label_authentication: Authentification
270 label_authentication: Authentification
269 label_auth_source: Mode d'authentification
271 label_auth_source: Mode d'authentification
270 label_auth_source_new: Nouveau mode d'authentification
272 label_auth_source_new: Nouveau mode d'authentification
271 label_auth_source_plural: Modes d'authentification
273 label_auth_source_plural: Modes d'authentification
272 label_subproject_plural: Sous-projets
274 label_subproject_plural: Sous-projets
273 label_min_max_length: Longueurs mini - maxi
275 label_min_max_length: Longueurs mini - maxi
274 label_list: Liste
276 label_list: Liste
275 label_date: Date
277 label_date: Date
276 label_integer: Entier
278 label_integer: Entier
277 label_float: Nombre décimal
279 label_float: Nombre décimal
278 label_boolean: Booléen
280 label_boolean: Booléen
279 label_string: Texte
281 label_string: Texte
280 label_text: Texte long
282 label_text: Texte long
281 label_attribute: Attribut
283 label_attribute: Attribut
282 label_attribute_plural: Attributs
284 label_attribute_plural: Attributs
283 label_download: %d Téléchargement
285 label_download: %d Téléchargement
284 label_download_plural: %d Téléchargements
286 label_download_plural: %d Téléchargements
285 label_no_data: Aucune donnée à afficher
287 label_no_data: Aucune donnée à afficher
286 label_change_status: Changer le statut
288 label_change_status: Changer le statut
287 label_history: Historique
289 label_history: Historique
288 label_attachment: Fichier
290 label_attachment: Fichier
289 label_attachment_new: Nouveau fichier
291 label_attachment_new: Nouveau fichier
290 label_attachment_delete: Supprimer le fichier
292 label_attachment_delete: Supprimer le fichier
291 label_attachment_plural: Fichiers
293 label_attachment_plural: Fichiers
292 label_report: Rapport
294 label_report: Rapport
293 label_report_plural: Rapports
295 label_report_plural: Rapports
294 label_news: Annonce
296 label_news: Annonce
295 label_news_new: Nouvelle annonce
297 label_news_new: Nouvelle annonce
296 label_news_plural: Annonces
298 label_news_plural: Annonces
297 label_news_latest: Dernières annonces
299 label_news_latest: Dernières annonces
298 label_news_view_all: Voir toutes les annonces
300 label_news_view_all: Voir toutes les annonces
299 label_change_log: Historique
301 label_change_log: Historique
300 label_settings: Configuration
302 label_settings: Configuration
301 label_overview: Aperçu
303 label_overview: Aperçu
302 label_version: Version
304 label_version: Version
303 label_version_new: Nouvelle version
305 label_version_new: Nouvelle version
304 label_version_plural: Versions
306 label_version_plural: Versions
305 label_confirmation: Confirmation
307 label_confirmation: Confirmation
306 label_export_to: Exporter en
308 label_export_to: Exporter en
307 label_read: Lire...
309 label_read: Lire...
308 label_public_projects: Projets publics
310 label_public_projects: Projets publics
309 label_open_issues: ouvert
311 label_open_issues: ouvert
310 label_open_issues_plural: ouverts
312 label_open_issues_plural: ouverts
311 label_closed_issues: fermé
313 label_closed_issues: fermé
312 label_closed_issues_plural: fermés
314 label_closed_issues_plural: fermés
313 label_total: Total
315 label_total: Total
314 label_permissions: Permissions
316 label_permissions: Permissions
315 label_current_status: Statut actuel
317 label_current_status: Statut actuel
316 label_new_statuses_allowed: Nouveaux statuts autorisés
318 label_new_statuses_allowed: Nouveaux statuts autorisés
317 label_all: tous
319 label_all: tous
318 label_none: aucun
320 label_none: aucun
319 label_nobody: personne
321 label_nobody: personne
320 label_next: Suivant
322 label_next: Suivant
321 label_previous: Précédent
323 label_previous: Précédent
322 label_used_by: Utilisé par
324 label_used_by: Utilisé par
323 label_details: Détails
325 label_details: Détails
324 label_add_note: Ajouter une note
326 label_add_note: Ajouter une note
325 label_per_page: Par page
327 label_per_page: Par page
326 label_calendar: Calendrier
328 label_calendar: Calendrier
327 label_months_from: mois depuis
329 label_months_from: mois depuis
328 label_gantt: Gantt
330 label_gantt: Gantt
329 label_internal: Interne
331 label_internal: Interne
330 label_last_changes: %d derniers changements
332 label_last_changes: %d derniers changements
331 label_change_view_all: Voir tous les changements
333 label_change_view_all: Voir tous les changements
332 label_personalize_page: Personnaliser cette page
334 label_personalize_page: Personnaliser cette page
333 label_comment: Commentaire
335 label_comment: Commentaire
334 label_comment_plural: Commentaires
336 label_comment_plural: Commentaires
335 label_comment_add: Ajouter un commentaire
337 label_comment_add: Ajouter un commentaire
336 label_comment_added: Commentaire ajouté
338 label_comment_added: Commentaire ajouté
337 label_comment_delete: Supprimer les commentaires
339 label_comment_delete: Supprimer les commentaires
338 label_query: Rapport personnalisé
340 label_query: Rapport personnalisé
339 label_query_plural: Rapports personnalisés
341 label_query_plural: Rapports personnalisés
340 label_query_new: Nouveau rapport
342 label_query_new: Nouveau rapport
341 label_filter_add: Ajouter le filtre
343 label_filter_add: Ajouter le filtre
342 label_filter_plural: Filtres
344 label_filter_plural: Filtres
343 label_equals: égal
345 label_equals: égal
344 label_not_equals: différent
346 label_not_equals: différent
345 label_in_less_than: dans moins de
347 label_in_less_than: dans moins de
346 label_in_more_than: dans plus de
348 label_in_more_than: dans plus de
347 label_in: dans
349 label_in: dans
348 label_today: aujourd'hui
350 label_today: aujourd'hui
349 label_this_week: cette semaine
351 label_this_week: cette semaine
350 label_less_than_ago: il y a moins de
352 label_less_than_ago: il y a moins de
351 label_more_than_ago: il y a plus de
353 label_more_than_ago: il y a plus de
352 label_ago: il y a
354 label_ago: il y a
353 label_contains: contient
355 label_contains: contient
354 label_not_contains: ne contient pas
356 label_not_contains: ne contient pas
355 label_day_plural: jours
357 label_day_plural: jours
356 label_repository: Dépôt
358 label_repository: Dépôt
357 label_repository_plural: Dépôts
359 label_repository_plural: Dépôts
358 label_browse: Parcourir
360 label_browse: Parcourir
359 label_modification: %d modification
361 label_modification: %d modification
360 label_modification_plural: %d modifications
362 label_modification_plural: %d modifications
361 label_revision: Révision
363 label_revision: Révision
362 label_revision_plural: Révisions
364 label_revision_plural: Révisions
363 label_associated_revisions: Révisions associées
365 label_associated_revisions: Révisions associées
364 label_added: ajouté
366 label_added: ajouté
365 label_modified: modifié
367 label_modified: modifié
366 label_deleted: supprimé
368 label_deleted: supprimé
367 label_latest_revision: Dernière révision
369 label_latest_revision: Dernière révision
368 label_latest_revision_plural: Dernières révisions
370 label_latest_revision_plural: Dernières révisions
369 label_view_revisions: Voir les révisions
371 label_view_revisions: Voir les révisions
370 label_max_size: Taille maximale
372 label_max_size: Taille maximale
371 label_on: sur
373 label_on: sur
372 label_sort_highest: Remonter en premier
374 label_sort_highest: Remonter en premier
373 label_sort_higher: Remonter
375 label_sort_higher: Remonter
374 label_sort_lower: Descendre
376 label_sort_lower: Descendre
375 label_sort_lowest: Descendre en dernier
377 label_sort_lowest: Descendre en dernier
376 label_roadmap: Roadmap
378 label_roadmap: Roadmap
377 label_roadmap_due_in: Echéance dans
379 label_roadmap_due_in: Echéance dans
378 label_roadmap_overdue: En retard de %s
380 label_roadmap_overdue: En retard de %s
379 label_roadmap_no_issues: Aucune demande pour cette version
381 label_roadmap_no_issues: Aucune demande pour cette version
380 label_search: Recherche
382 label_search: Recherche
381 label_result_plural: Résultats
383 label_result_plural: Résultats
382 label_all_words: Tous les mots
384 label_all_words: Tous les mots
383 label_wiki: Wiki
385 label_wiki: Wiki
384 label_wiki_edit: Révision wiki
386 label_wiki_edit: Révision wiki
385 label_wiki_edit_plural: Révisions wiki
387 label_wiki_edit_plural: Révisions wiki
386 label_wiki_page: Page wiki
388 label_wiki_page: Page wiki
387 label_wiki_page_plural: Pages wiki
389 label_wiki_page_plural: Pages wiki
388 label_index_by_title: Index par titre
390 label_index_by_title: Index par titre
389 label_index_by_date: Index par date
391 label_index_by_date: Index par date
390 label_current_version: Version actuelle
392 label_current_version: Version actuelle
391 label_preview: Prévisualisation
393 label_preview: Prévisualisation
392 label_feed_plural: Flux RSS
394 label_feed_plural: Flux RSS
393 label_changes_details: Détails de tous les changements
395 label_changes_details: Détails de tous les changements
394 label_issue_tracking: Suivi des demandes
396 label_issue_tracking: Suivi des demandes
395 label_spent_time: Temps passé
397 label_spent_time: Temps passé
396 label_f_hour: %.2f heure
398 label_f_hour: %.2f heure
397 label_f_hour_plural: %.2f heures
399 label_f_hour_plural: %.2f heures
398 label_time_tracking: Suivi du temps
400 label_time_tracking: Suivi du temps
399 label_change_plural: Changements
401 label_change_plural: Changements
400 label_statistics: Statistiques
402 label_statistics: Statistiques
401 label_commits_per_month: Commits par mois
403 label_commits_per_month: Commits par mois
402 label_commits_per_author: Commits par auteur
404 label_commits_per_author: Commits par auteur
403 label_view_diff: Voir les différences
405 label_view_diff: Voir les différences
404 label_diff_inline: en ligne
406 label_diff_inline: en ligne
405 label_diff_side_by_side: côte à côte
407 label_diff_side_by_side: côte à côte
406 label_options: Options
408 label_options: Options
407 label_copy_workflow_from: Copier le workflow de
409 label_copy_workflow_from: Copier le workflow de
408 label_permissions_report: Synthèse des permissions
410 label_permissions_report: Synthèse des permissions
409 label_watched_issues: Demandes surveillées
411 label_watched_issues: Demandes surveillées
410 label_related_issues: Demandes liées
412 label_related_issues: Demandes liées
411 label_applied_status: Statut appliqué
413 label_applied_status: Statut appliqué
412 label_loading: Chargement...
414 label_loading: Chargement...
413 label_relation_new: Nouvelle relation
415 label_relation_new: Nouvelle relation
414 label_relation_delete: Supprimer la relation
416 label_relation_delete: Supprimer la relation
415 label_relates_to: lié à
417 label_relates_to: lié à
416 label_duplicates: doublon de
418 label_duplicates: doublon de
417 label_blocks: bloque
419 label_blocks: bloque
418 label_blocked_by: bloqué par
420 label_blocked_by: bloqué par
419 label_precedes: précède
421 label_precedes: précède
420 label_follows: suit
422 label_follows: suit
421 label_end_to_start: fin à début
423 label_end_to_start: fin à début
422 label_end_to_end: fin à fin
424 label_end_to_end: fin à fin
423 label_start_to_start: début à début
425 label_start_to_start: début à début
424 label_start_to_end: début à fin
426 label_start_to_end: début à fin
425 label_stay_logged_in: Rester connecté
427 label_stay_logged_in: Rester connecté
426 label_disabled: désactivé
428 label_disabled: désactivé
427 label_show_completed_versions: Voire les versions passées
429 label_show_completed_versions: Voire les versions passées
428 label_me: moi
430 label_me: moi
429 label_board: Forum
431 label_board: Forum
430 label_board_new: Nouveau forum
432 label_board_new: Nouveau forum
431 label_board_plural: Forums
433 label_board_plural: Forums
432 label_topic_plural: Discussions
434 label_topic_plural: Discussions
433 label_message_plural: Messages
435 label_message_plural: Messages
434 label_message_last: Dernier message
436 label_message_last: Dernier message
435 label_message_new: Nouveau message
437 label_message_new: Nouveau message
436 label_reply_plural: Réponses
438 label_reply_plural: Réponses
437 label_send_information: Envoyer les informations à l'utilisateur
439 label_send_information: Envoyer les informations à l'utilisateur
438 label_year: Année
440 label_year: Année
439 label_month: Mois
441 label_month: Mois
440 label_week: Semaine
442 label_week: Semaine
441 label_date_from: Du
443 label_date_from: Du
442 label_date_to: Au
444 label_date_to: Au
443 label_language_based: Basé sur la langue de l'utilisateur
445 label_language_based: Basé sur la langue de l'utilisateur
444 label_sort_by: Trier par %s
446 label_sort_by: Trier par %s
445 label_send_test_email: Envoyer un email de test
447 label_send_test_email: Envoyer un email de test
446 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
448 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
447 label_module_plural: Modules
449 label_module_plural: Modules
448 label_added_time_by: Ajouté par %s il y a %s
450 label_added_time_by: Ajouté par %s il y a %s
449 label_updated_time: Mis à jour il y a %s
451 label_updated_time: Mis à jour il y a %s
450 label_jump_to_a_project: Aller à un projet...
452 label_jump_to_a_project: Aller à un projet...
451 label_file_plural: Fichiers
453 label_file_plural: Fichiers
452 label_changeset_plural: Révisions
454 label_changeset_plural: Révisions
453 label_default_columns: Colonnes par défaut
455 label_default_columns: Colonnes par défaut
454 label_no_change_option: (Pas de changement)
456 label_no_change_option: (Pas de changement)
455 label_bulk_edit_selected_issues: Modifier les demandes sélectionnées
457 label_bulk_edit_selected_issues: Modifier les demandes sélectionnées
456 label_theme: Thème
458 label_theme: Thème
457 label_default: Défaut
459 label_default: Défaut
458 label_search_titles_only: Uniquement dans les titres
460 label_search_titles_only: Uniquement dans les titres
459 label_user_mail_option_all: "Pour tous les événements de tous mes projets"
461 label_user_mail_option_all: "Pour tous les événements de tous mes projets"
460 label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..."
462 label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..."
461 label_user_mail_option_none: "Seulement pour ce que je surveille ou à quoi je participe"
463 label_user_mail_option_none: "Seulement pour ce que je surveille ou à quoi je participe"
462 label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements que j'effectue"
464 label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements que j'effectue"
463 label_registration_activation_by_email: activation du compte par email
465 label_registration_activation_by_email: activation du compte par email
464 label_registration_manual_activation: activation manuelle du compte
466 label_registration_manual_activation: activation manuelle du compte
465 label_registration_automatic_activation: activation automatique du compte
467 label_registration_automatic_activation: activation automatique du compte
466 label_display_per_page: 'Par page: %s'
468 label_display_per_page: 'Par page: %s'
467 label_age: Age
469 label_age: Age
468 label_change_properties: Changer les propriétés
470 label_change_properties: Changer les propriétés
469 label_general: Général
471 label_general: Général
470
472
471 button_login: Connexion
473 button_login: Connexion
472 button_submit: Soumettre
474 button_submit: Soumettre
473 button_save: Sauvegarder
475 button_save: Sauvegarder
474 button_check_all: Tout cocher
476 button_check_all: Tout cocher
475 button_uncheck_all: Tout décocher
477 button_uncheck_all: Tout décocher
476 button_delete: Supprimer
478 button_delete: Supprimer
477 button_create: Créer
479 button_create: Créer
478 button_test: Tester
480 button_test: Tester
479 button_edit: Modifier
481 button_edit: Modifier
480 button_add: Ajouter
482 button_add: Ajouter
481 button_change: Changer
483 button_change: Changer
482 button_apply: Appliquer
484 button_apply: Appliquer
483 button_clear: Effacer
485 button_clear: Effacer
484 button_lock: Verrouiller
486 button_lock: Verrouiller
485 button_unlock: Déverrouiller
487 button_unlock: Déverrouiller
486 button_download: Télécharger
488 button_download: Télécharger
487 button_list: Lister
489 button_list: Lister
488 button_view: Voir
490 button_view: Voir
489 button_move: Déplacer
491 button_move: Déplacer
490 button_back: Retour
492 button_back: Retour
491 button_cancel: Annuler
493 button_cancel: Annuler
492 button_activate: Activer
494 button_activate: Activer
493 button_sort: Trier
495 button_sort: Trier
494 button_log_time: Saisir temps
496 button_log_time: Saisir temps
495 button_rollback: Revenir à cette version
497 button_rollback: Revenir à cette version
496 button_watch: Surveiller
498 button_watch: Surveiller
497 button_unwatch: Ne plus surveiller
499 button_unwatch: Ne plus surveiller
498 button_reply: Répondre
500 button_reply: Répondre
499 button_archive: Archiver
501 button_archive: Archiver
500 button_unarchive: Désarchiver
502 button_unarchive: Désarchiver
501 button_reset: Réinitialiser
503 button_reset: Réinitialiser
502 button_rename: Renommer
504 button_rename: Renommer
503 button_change_password: Changer de mot de passe
505 button_change_password: Changer de mot de passe
504 button_copy: Copier
506 button_copy: Copier
505 button_annotate: Annoter
507 button_annotate: Annoter
506 button_update: Mettre à jour
508 button_update: Mettre à jour
507
509
508 status_active: actif
510 status_active: actif
509 status_registered: enregistré
511 status_registered: enregistré
510 status_locked: vérouillé
512 status_locked: vérouillé
511
513
512 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
514 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
513 text_regexp_info: ex. ^[A-Z0-9]+$
515 text_regexp_info: ex. ^[A-Z0-9]+$
514 text_min_max_length_info: 0 pour aucune restriction
516 text_min_max_length_info: 0 pour aucune restriction
515 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
517 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
516 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
518 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
517 text_are_you_sure: Etes-vous sûr ?
519 text_are_you_sure: Etes-vous sûr ?
518 text_journal_changed: changé de %s à %s
520 text_journal_changed: changé de %s à %s
519 text_journal_set_to: mis à %s
521 text_journal_set_to: mis à %s
520 text_journal_deleted: supprimé
522 text_journal_deleted: supprimé
521 text_tip_task_begin_day: tâche commençant ce jour
523 text_tip_task_begin_day: tâche commençant ce jour
522 text_tip_task_end_day: tâche finissant ce jour
524 text_tip_task_end_day: tâche finissant ce jour
523 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
525 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
524 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
526 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
525 text_caracters_maximum: %d caractères maximum.
527 text_caracters_maximum: %d caractères maximum.
526 text_caracters_minimum: %d caractères minimum.
528 text_caracters_minimum: %d caractères minimum.
527 text_length_between: Longueur comprise entre %d et %d caractères.
529 text_length_between: Longueur comprise entre %d et %d caractères.
528 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
530 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
529 text_unallowed_characters: Caractères non autorisés
531 text_unallowed_characters: Caractères non autorisés
530 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
532 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
531 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
533 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
532 text_issue_added: La demande %s a été soumise.
534 text_issue_added: La demande %s a été soumise.
533 text_issue_updated: La demande %s a été mise à jour.
535 text_issue_updated: La demande %s a été mise à jour.
534 text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ?
536 text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ?
535 text_issue_category_destroy_question: Des demandes (%d) sont affectées à cette catégories. Que voulez-vous faire ?
537 text_issue_category_destroy_question: Des demandes (%d) sont affectées à cette catégories. Que voulez-vous faire ?
536 text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie
538 text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie
537 text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie
539 text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie
538 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)."
540 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)."
539 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é."
541 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é."
540 text_load_default_configuration: Charger le paramétrage par défaut
542 text_load_default_configuration: Charger le paramétrage par défaut
541
543
542 default_role_manager: Manager
544 default_role_manager: Manager
543 default_role_developper: Développeur
545 default_role_developper: Développeur
544 default_role_reporter: Rapporteur
546 default_role_reporter: Rapporteur
545 default_tracker_bug: Anomalie
547 default_tracker_bug: Anomalie
546 default_tracker_feature: Evolution
548 default_tracker_feature: Evolution
547 default_tracker_support: Assistance
549 default_tracker_support: Assistance
548 default_issue_status_new: Nouveau
550 default_issue_status_new: Nouveau
549 default_issue_status_assigned: Assigné
551 default_issue_status_assigned: Assigné
550 default_issue_status_resolved: Résolu
552 default_issue_status_resolved: Résolu
551 default_issue_status_feedback: Commentaire
553 default_issue_status_feedback: Commentaire
552 default_issue_status_closed: Fermé
554 default_issue_status_closed: Fermé
553 default_issue_status_rejected: Rejeté
555 default_issue_status_rejected: Rejeté
554 default_doc_category_user: Documentation utilisateur
556 default_doc_category_user: Documentation utilisateur
555 default_doc_category_tech: Documentation technique
557 default_doc_category_tech: Documentation technique
556 default_priority_low: Bas
558 default_priority_low: Bas
557 default_priority_normal: Normal
559 default_priority_normal: Normal
558 default_priority_high: Haut
560 default_priority_high: Haut
559 default_priority_urgent: Urgent
561 default_priority_urgent: Urgent
560 default_priority_immediate: Immédiat
562 default_priority_immediate: Immédiat
561 default_activity_design: Conception
563 default_activity_design: Conception
562 default_activity_development: Développement
564 default_activity_development: Développement
563
565
564 enumeration_issue_priorities: Priorités des demandes
566 enumeration_issue_priorities: Priorités des demandes
565 enumeration_doc_categories: Catégories des documents
567 enumeration_doc_categories: Catégories des documents
566 enumeration_activities: Activités (suivi du temps)
568 enumeration_activities: Activités (suivi du temps)
@@ -1,565 +1,567
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_scm_error: כניסה ו\או גירסא אינם קיימים במאגר.
72 notice_not_authorized: אינך מורשה לראות דף זה.
71 notice_not_authorized: אינך מורשה לראות דף זה.
73 notice_email_sent: דוא"ל נשלח לכתובת %s
72 notice_email_sent: דוא"ל נשלח לכתובת %s
74 notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s)
73 notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s)
75 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס.
74 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס.
76 notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s."
75 notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s."
77 notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך."
76 notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך."
78
77
78 error_scm_not_found: כניסה ו\או גירסא אינם קיימים במאגר.
79 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
80
79 mail_subject_lost_password: סיסמת ה-Redmine שלך
81 mail_subject_lost_password: סיסמת ה-Redmine שלך
80 mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:'
82 mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:'
81 mail_subject_register: הפעלת חשבון Redmine
83 mail_subject_register: הפעלת חשבון Redmine
82 mail_body_register: 'להפעלת חשבון ה-Redmine שלך, לחץ על הקישור הבא:'
84 mail_body_register: 'להפעלת חשבון ה-Redmine שלך, לחץ על הקישור הבא:'
83
85
84 gui_validation_error: שגיאה 1
86 gui_validation_error: שגיאה 1
85 gui_validation_error_plural: %d שגיאות
87 gui_validation_error_plural: %d שגיאות
86
88
87 field_name: שם
89 field_name: שם
88 field_description: תיאור
90 field_description: תיאור
89 field_summary: תקציר
91 field_summary: תקציר
90 field_is_required: נדרש
92 field_is_required: נדרש
91 field_firstname: שם פרטי
93 field_firstname: שם פרטי
92 field_lastname: שם משפחה
94 field_lastname: שם משפחה
93 field_mail: דוא"ל
95 field_mail: דוא"ל
94 field_filename: קובץ
96 field_filename: קובץ
95 field_filesize: גודל
97 field_filesize: גודל
96 field_downloads: הורדות
98 field_downloads: הורדות
97 field_author: כותב
99 field_author: כותב
98 field_created_on: נוצר
100 field_created_on: נוצר
99 field_updated_on: עודגן
101 field_updated_on: עודגן
100 field_field_format: פורמט
102 field_field_format: פורמט
101 field_is_for_all: לכל הפרויקטים
103 field_is_for_all: לכל הפרויקטים
102 field_possible_values: ערכים אפשריים
104 field_possible_values: ערכים אפשריים
103 field_regexp: ביטוי רגיל
105 field_regexp: ביטוי רגיל
104 field_min_length: אורך מינימאלי
106 field_min_length: אורך מינימאלי
105 field_max_length: אורך מקסימאלי
107 field_max_length: אורך מקסימאלי
106 field_value: ערך
108 field_value: ערך
107 field_category: קטגוריה
109 field_category: קטגוריה
108 field_title: כותרת
110 field_title: כותרת
109 field_project: פרויקט
111 field_project: פרויקט
110 field_issue: נושא
112 field_issue: נושא
111 field_status: מצב
113 field_status: מצב
112 field_notes: הערות
114 field_notes: הערות
113 field_is_closed: נושא סגור
115 field_is_closed: נושא סגור
114 field_is_default: ערך ברירת מחדל
116 field_is_default: ערך ברירת מחדל
115 field_tracker: עוקב
117 field_tracker: עוקב
116 field_subject: שם נושא
118 field_subject: שם נושא
117 field_due_date: תאריך סיום
119 field_due_date: תאריך סיום
118 field_assigned_to: מוצב ל
120 field_assigned_to: מוצב ל
119 field_priority: עדיפות
121 field_priority: עדיפות
120 field_fixed_version: גירסא מקובעת
122 field_fixed_version: גירסא מקובעת
121 field_user: מתשמש
123 field_user: מתשמש
122 field_role: תפקיד
124 field_role: תפקיד
123 field_homepage: דף הבית
125 field_homepage: דף הבית
124 field_is_public: פומבי
126 field_is_public: פומבי
125 field_parent: תת פרויקט של
127 field_parent: תת פרויקט של
126 field_is_in_chlog: נושאים המוצגים בדו"ח השינויים
128 field_is_in_chlog: נושאים המוצגים בדו"ח השינויים
127 field_is_in_roadmap: נושאים המוצגים במפת הדרכים
129 field_is_in_roadmap: נושאים המוצגים במפת הדרכים
128 field_login: שם משתמש
130 field_login: שם משתמש
129 field_mail_notification: הודעות דוא"ל
131 field_mail_notification: הודעות דוא"ל
130 field_admin: אדמיניסטרציה
132 field_admin: אדמיניסטרציה
131 field_last_login_on: חיבור אחרון
133 field_last_login_on: חיבור אחרון
132 field_language: שפה
134 field_language: שפה
133 field_effective_date: תאריך
135 field_effective_date: תאריך
134 field_password: סיסמה
136 field_password: סיסמה
135 field_new_password: סיסמה חדשה
137 field_new_password: סיסמה חדשה
136 field_password_confirmation: אישור
138 field_password_confirmation: אישור
137 field_version: גירסא
139 field_version: גירסא
138 field_type: סוג
140 field_type: סוג
139 field_host: שרת
141 field_host: שרת
140 field_port: פורט
142 field_port: פורט
141 field_account: חשבום
143 field_account: חשבום
142 field_base_dn: בסיס DN
144 field_base_dn: בסיס DN
143 field_attr_login: תכונת התחברות
145 field_attr_login: תכונת התחברות
144 field_attr_firstname: תכונת שם פרטים
146 field_attr_firstname: תכונת שם פרטים
145 field_attr_lastname: תכונת שם משפחה
147 field_attr_lastname: תכונת שם משפחה
146 field_attr_mail: תכונת דוא"ל
148 field_attr_mail: תכונת דוא"ל
147 field_onthefly: יצירת משתמשים זריזה
149 field_onthefly: יצירת משתמשים זריזה
148 field_start_date: התחל
150 field_start_date: התחל
149 field_done_ratio: %% גמור
151 field_done_ratio: %% גמור
150 field_auth_source: מצב אימות
152 field_auth_source: מצב אימות
151 field_hide_mail: החבא את כתובת הדוא"ל שלי
153 field_hide_mail: החבא את כתובת הדוא"ל שלי
152 field_comments: הערות
154 field_comments: הערות
153 field_url: URL
155 field_url: URL
154 field_start_page: דף התחלתי
156 field_start_page: דף התחלתי
155 field_subproject: תת פרויקט
157 field_subproject: תת פרויקט
156 field_hours: שעות
158 field_hours: שעות
157 field_activity: פעילות
159 field_activity: פעילות
158 field_spent_on: תאריך
160 field_spent_on: תאריך
159 field_identifier: מזהה
161 field_identifier: מזהה
160 field_is_filter: משמש כמסנן
162 field_is_filter: משמש כמסנן
161 field_issue_to_id: נושאים קשורים
163 field_issue_to_id: נושאים קשורים
162 field_delay: עיקוב
164 field_delay: עיקוב
163 field_assignable: ניתן להקצות נושאים לתפקיד זה
165 field_assignable: ניתן להקצות נושאים לתפקיד זה
164 field_redirect_existing_links: העבר קישורים קיימים
166 field_redirect_existing_links: העבר קישורים קיימים
165 field_estimated_hours: זמן משוער
167 field_estimated_hours: זמן משוער
166 field_column_names: עמודות
168 field_column_names: עמודות
167 field_default_value: ערך ברירת מחדל
169 field_default_value: ערך ברירת מחדל
168
170
169 setting_app_title: כותרת ישום
171 setting_app_title: כותרת ישום
170 setting_app_subtitle: תת-כותרת ישום
172 setting_app_subtitle: תת-כותרת ישום
171 setting_welcome_text: טקסט "ברוך הבא"
173 setting_welcome_text: טקסט "ברוך הבא"
172 setting_default_language: שפת ברירת מחדל
174 setting_default_language: שפת ברירת מחדל
173 setting_login_required: דרוש אימות
175 setting_login_required: דרוש אימות
174 setting_self_registration: אפשר הרשמות עצמית
176 setting_self_registration: אפשר הרשמות עצמית
175 setting_attachment_max_size: גודל דבוקה מקסימאלי
177 setting_attachment_max_size: גודל דבוקה מקסימאלי
176 setting_issues_export_limit: גבול יצוא נושאים
178 setting_issues_export_limit: גבול יצוא נושאים
177 setting_mail_from: כתובת שליחת דוא"ל
179 setting_mail_from: כתובת שליחת דוא"ל
178 setting_host_name: שם שרת
180 setting_host_name: שם שרת
179 setting_text_formatting: עיצוב טקסט
181 setting_text_formatting: עיצוב טקסט
180 setting_wiki_compression: כיווץ היסטורית WIKI
182 setting_wiki_compression: כיווץ היסטורית WIKI
181 setting_feeds_limit: גבול תוכן הזנות
183 setting_feeds_limit: גבול תוכן הזנות
182 setting_autofetch_changesets: משיכה אוטומתי של עידכונים
184 setting_autofetch_changesets: משיכה אוטומתי של עידכונים
183 setting_sys_api_enabled: Enable WS for repository management
185 setting_sys_api_enabled: Enable WS for repository management
184 setting_commit_ref_keywords: מילות מפתח מקשרות
186 setting_commit_ref_keywords: מילות מפתח מקשרות
185 setting_commit_fix_keywords: מילות מפתח מתקנות
187 setting_commit_fix_keywords: מילות מפתח מתקנות
186 setting_autologin: חיבור אוטומטי
188 setting_autologin: חיבור אוטומטי
187 setting_date_format: פורמט תאריך
189 setting_date_format: פורמט תאריך
188 setting_cross_project_issue_relations: הרשה קישור נושאים בין פרויקטים
190 setting_cross_project_issue_relations: הרשה קישור נושאים בין פרויקטים
189 setting_issue_list_default_columns: עמודות ברירת מחדל המוצגות ברשימת הנושאים
191 setting_issue_list_default_columns: עמודות ברירת מחדל המוצגות ברשימת הנושאים
190 setting_repositories_encodings: קידוד המאגרים
192 setting_repositories_encodings: קידוד המאגרים
191
193
192 label_user: משתמש
194 label_user: משתמש
193 label_user_plural: משתמשים
195 label_user_plural: משתמשים
194 label_user_new: משתמש חדש
196 label_user_new: משתמש חדש
195 label_project: פרויקט
197 label_project: פרויקט
196 label_project_new: פרויקט חדש
198 label_project_new: פרויקט חדש
197 label_project_plural: פרויקטים
199 label_project_plural: פרויקטים
198 label_project_all: כל הפרויקטים
200 label_project_all: כל הפרויקטים
199 label_project_latest: הפרויקטים החדשים ביותר
201 label_project_latest: הפרויקטים החדשים ביותר
200 label_issue: נושא
202 label_issue: נושא
201 label_issue_new: נושא חדש
203 label_issue_new: נושא חדש
202 label_issue_plural: נושאים
204 label_issue_plural: נושאים
203 label_issue_view_all: צפה בכל הנושאים
205 label_issue_view_all: צפה בכל הנושאים
204 label_document: מסמך
206 label_document: מסמך
205 label_document_new: מסמך חדש
207 label_document_new: מסמך חדש
206 label_document_plural: מסמכים
208 label_document_plural: מסמכים
207 label_role: תפקיד
209 label_role: תפקיד
208 label_role_plural: תפקידים
210 label_role_plural: תפקידים
209 label_role_new: תפקיד חדש
211 label_role_new: תפקיד חדש
210 label_role_and_permissions: תפקידים והרשאות
212 label_role_and_permissions: תפקידים והרשאות
211 label_member: חבר
213 label_member: חבר
212 label_member_new: חבר חדש
214 label_member_new: חבר חדש
213 label_member_plural: חברים
215 label_member_plural: חברים
214 label_tracker: עוקב
216 label_tracker: עוקב
215 label_tracker_plural: עוקבים
217 label_tracker_plural: עוקבים
216 label_tracker_new: עוקב חדש
218 label_tracker_new: עוקב חדש
217 label_workflow: זרימת עבודה
219 label_workflow: זרימת עבודה
218 label_issue_status: מצב נושא
220 label_issue_status: מצב נושא
219 label_issue_status_plural: מצבי נושא
221 label_issue_status_plural: מצבי נושא
220 label_issue_status_new: מצב חדש
222 label_issue_status_new: מצב חדש
221 label_issue_category: קטגורית נושא
223 label_issue_category: קטגורית נושא
222 label_issue_category_plural: קטגוריות נושא
224 label_issue_category_plural: קטגוריות נושא
223 label_issue_category_new: קטגוריה חדשה
225 label_issue_category_new: קטגוריה חדשה
224 label_custom_field: שדה אישי
226 label_custom_field: שדה אישי
225 label_custom_field_plural: שדות אישיים
227 label_custom_field_plural: שדות אישיים
226 label_custom_field_new: שדה אישי חדש
228 label_custom_field_new: שדה אישי חדש
227 label_enumerations: אינומרציות
229 label_enumerations: אינומרציות
228 label_enumeration_new: ערך חדש
230 label_enumeration_new: ערך חדש
229 label_information: מידע
231 label_information: מידע
230 label_information_plural: מידע
232 label_information_plural: מידע
231 label_please_login: התחבר בבקשה
233 label_please_login: התחבר בבקשה
232 label_register: הרשמה
234 label_register: הרשמה
233 label_password_lost: אבדה הסיסמה?
235 label_password_lost: אבדה הסיסמה?
234 label_home: דך הבית
236 label_home: דך הבית
235 label_my_page: הדף שלי
237 label_my_page: הדף שלי
236 label_my_account: השבון שלי
238 label_my_account: השבון שלי
237 label_my_projects: הפרויקטים שלי
239 label_my_projects: הפרויקטים שלי
238 label_administration: אדמיניסטרציה
240 label_administration: אדמיניסטרציה
239 label_login: התחבר
241 label_login: התחבר
240 label_logout: התנתק
242 label_logout: התנתק
241 label_help: עזרה
243 label_help: עזרה
242 label_reported_issues: נושאים שדווחו
244 label_reported_issues: נושאים שדווחו
243 label_assigned_to_me_issues: נושאים שהוצבו לי
245 label_assigned_to_me_issues: נושאים שהוצבו לי
244 label_last_login: חיבור אחרון
246 label_last_login: חיבור אחרון
245 label_last_updates: עידכון אחרון
247 label_last_updates: עידכון אחרון
246 label_last_updates_plural: %d עידכונים אחרונים
248 label_last_updates_plural: %d עידכונים אחרונים
247 label_registered_on: נרשם בתאריך
249 label_registered_on: נרשם בתאריך
248 label_activity: פעילות
250 label_activity: פעילות
249 label_new: חדש
251 label_new: חדש
250 label_logged_as: מחובר כ
252 label_logged_as: מחובר כ
251 label_environment: סביבה
253 label_environment: סביבה
252 label_authentication: אישור
254 label_authentication: אישור
253 label_auth_source: מצב אישור
255 label_auth_source: מצב אישור
254 label_auth_source_new: מצב אישור חדש
256 label_auth_source_new: מצב אישור חדש
255 label_auth_source_plural: מצבי אישור
257 label_auth_source_plural: מצבי אישור
256 label_subproject_plural: תת-פרויקטים
258 label_subproject_plural: תת-פרויקטים
257 label_min_max_length: אורך מינימאלי - מקסימאלי
259 label_min_max_length: אורך מינימאלי - מקסימאלי
258 label_list: רשימה
260 label_list: רשימה
259 label_date: תאריך
261 label_date: תאריך
260 label_integer: מספר שלים
262 label_integer: מספר שלים
261 label_boolean: ערך בוליאני
263 label_boolean: ערך בוליאני
262 label_string: טקסט
264 label_string: טקסט
263 label_text: טקסט ארוך
265 label_text: טקסט ארוך
264 label_attribute: תכונה
266 label_attribute: תכונה
265 label_attribute_plural: תכונות
267 label_attribute_plural: תכונות
266 label_download: הורדה %d
268 label_download: הורדה %d
267 label_download_plural: %d הורדות
269 label_download_plural: %d הורדות
268 label_no_data: אין מידע להציג
270 label_no_data: אין מידע להציג
269 label_change_status: שנה מצב
271 label_change_status: שנה מצב
270 label_history: הידטוריה
272 label_history: הידטוריה
271 label_attachment: קובץ
273 label_attachment: קובץ
272 label_attachment_new: קובץ חדש
274 label_attachment_new: קובץ חדש
273 label_attachment_delete: מחק קובץ
275 label_attachment_delete: מחק קובץ
274 label_attachment_plural: קבצים
276 label_attachment_plural: קבצים
275 label_report: דו"ח
277 label_report: דו"ח
276 label_report_plural: דו"חות
278 label_report_plural: דו"חות
277 label_news: חדשות
279 label_news: חדשות
278 label_news_new: הוסף חדשות
280 label_news_new: הוסף חדשות
279 label_news_plural: חדשות
281 label_news_plural: חדשות
280 label_news_latest: חדשות חדשות
282 label_news_latest: חדשות חדשות
281 label_news_view_all: צפה בכל החדשות
283 label_news_view_all: צפה בכל החדשות
282 label_change_log: דו"ח שינויים
284 label_change_log: דו"ח שינויים
283 label_settings: הגדרות
285 label_settings: הגדרות
284 label_overview: מבט רחב
286 label_overview: מבט רחב
285 label_version: גירסא
287 label_version: גירסא
286 label_version_new: גירסא חדשה
288 label_version_new: גירסא חדשה
287 label_version_plural: גירסאות
289 label_version_plural: גירסאות
288 label_confirmation: אישור
290 label_confirmation: אישור
289 label_export_to: יצא ל
291 label_export_to: יצא ל
290 label_read: קרא...
292 label_read: קרא...
291 label_public_projects: פרויקטים פומביים
293 label_public_projects: פרויקטים פומביים
292 label_open_issues: פותח
294 label_open_issues: פותח
293 label_open_issues_plural: פתוחים
295 label_open_issues_plural: פתוחים
294 label_closed_issues: סגור
296 label_closed_issues: סגור
295 label_closed_issues_plural: סגורים
297 label_closed_issues_plural: סגורים
296 label_total: סה"כ
298 label_total: סה"כ
297 label_permissions: הרשאות
299 label_permissions: הרשאות
298 label_current_status: מצב נוכחי
300 label_current_status: מצב נוכחי
299 label_new_statuses_allowed: מצבים חדשים אפשריים
301 label_new_statuses_allowed: מצבים חדשים אפשריים
300 label_all: הכל
302 label_all: הכל
301 label_none: כלום
303 label_none: כלום
302 label_next: הבא
304 label_next: הבא
303 label_previous: הקודם
305 label_previous: הקודם
304 label_used_by: בשימוש ע"י
306 label_used_by: בשימוש ע"י
305 label_details: פרטים
307 label_details: פרטים
306 label_add_note: הוסף הערה
308 label_add_note: הוסף הערה
307 label_per_page: לכל דף
309 label_per_page: לכל דף
308 label_calendar: לו"ח שנה
310 label_calendar: לו"ח שנה
309 label_months_from: חודשים מ
311 label_months_from: חודשים מ
310 label_gantt: גאנט
312 label_gantt: גאנט
311 label_internal: פנימי
313 label_internal: פנימי
312 label_last_changes: %d שינוים אחרונים
314 label_last_changes: %d שינוים אחרונים
313 label_change_view_all: צפה בכל השינוים
315 label_change_view_all: צפה בכל השינוים
314 label_personalize_page: הפוך דף זה לשלך
316 label_personalize_page: הפוך דף זה לשלך
315 label_comment: תגובה
317 label_comment: תגובה
316 label_comment_plural: תגובות
318 label_comment_plural: תגובות
317 label_comment_add: הוסף תגובה
319 label_comment_add: הוסף תגובה
318 label_comment_added: תגובה הוספה
320 label_comment_added: תגובה הוספה
319 label_comment_delete: מחק תגובות
321 label_comment_delete: מחק תגובות
320 label_query: שאילתה אישית
322 label_query: שאילתה אישית
321 label_query_plural: שאילתות אישיות
323 label_query_plural: שאילתות אישיות
322 label_query_new: שאילתה חדשה
324 label_query_new: שאילתה חדשה
323 label_filter_add: הוסף מסנן
325 label_filter_add: הוסף מסנן
324 label_filter_plural: מסננים
326 label_filter_plural: מסננים
325 label_equals: הוא
327 label_equals: הוא
326 label_not_equals: הוא לא
328 label_not_equals: הוא לא
327 label_in_less_than: בפחות מ
329 label_in_less_than: בפחות מ
328 label_in_more_than: ביותר מ
330 label_in_more_than: ביותר מ
329 label_in: ב
331 label_in: ב
330 label_today: היום
332 label_today: היום
331 label_this_week: השבוע
333 label_this_week: השבוע
332 label_less_than_ago: פחות ממספר ימים
334 label_less_than_ago: פחות ממספר ימים
333 label_more_than_ago: יותר ממספר ימים
335 label_more_than_ago: יותר ממספר ימים
334 label_ago: מספר ימים
336 label_ago: מספר ימים
335 label_contains: מכיל
337 label_contains: מכיל
336 label_not_contains: לא מכיל
338 label_not_contains: לא מכיל
337 label_day_plural: ימים
339 label_day_plural: ימים
338 label_repository: מאגר
340 label_repository: מאגר
339 label_browse: סייר
341 label_browse: סייר
340 label_modification: שינוי %d
342 label_modification: שינוי %d
341 label_modification_plural: %d שינויים
343 label_modification_plural: %d שינויים
342 label_revision: גירסא
344 label_revision: גירסא
343 label_revision_plural: גירסאות
345 label_revision_plural: גירסאות
344 label_added: הוסף
346 label_added: הוסף
345 label_modified: שונה
347 label_modified: שונה
346 label_deleted: נמחק
348 label_deleted: נמחק
347 label_latest_revision: גירסא אחרונה
349 label_latest_revision: גירסא אחרונה
348 label_latest_revision_plural: גירסאות אחרונות
350 label_latest_revision_plural: גירסאות אחרונות
349 label_view_revisions: צפה בגירסאות
351 label_view_revisions: צפה בגירסאות
350 label_max_size: גודל מקסימאלי
352 label_max_size: גודל מקסימאלי
351 label_on: 'ב'
353 label_on: 'ב'
352 label_sort_highest: הזז לראשית
354 label_sort_highest: הזז לראשית
353 label_sort_higher: הזז למעלה
355 label_sort_higher: הזז למעלה
354 label_sort_lower: הזז למטה
356 label_sort_lower: הזז למטה
355 label_sort_lowest: הזז לתחתית
357 label_sort_lowest: הזז לתחתית
356 label_roadmap: מפת הדרכים
358 label_roadmap: מפת הדרכים
357 label_roadmap_due_in: נגמר בעוד
359 label_roadmap_due_in: נגמר בעוד
358 label_roadmap_overdue: %s מאחר
360 label_roadmap_overdue: %s מאחר
359 label_roadmap_no_issues: אין נושאים לגירסא זו
361 label_roadmap_no_issues: אין נושאים לגירסא זו
360 label_search: חפש
362 label_search: חפש
361 label_result_plural: תוצאות
363 label_result_plural: תוצאות
362 label_all_words: כל המילים
364 label_all_words: כל המילים
363 label_wiki: Wiki
365 label_wiki: Wiki
364 label_wiki_edit: ערוך Wiki
366 label_wiki_edit: ערוך Wiki
365 label_wiki_edit_plural: עריכות Wiki
367 label_wiki_edit_plural: עריכות Wiki
366 label_wiki_page: דף Wiki
368 label_wiki_page: דף Wiki
367 label_wiki_page_plural: דפי Wiki
369 label_wiki_page_plural: דפי Wiki
368 label_index_by_title: סדר עך פי כותרת
370 label_index_by_title: סדר עך פי כותרת
369 label_index_by_date: סדר על פי תאריך
371 label_index_by_date: סדר על פי תאריך
370 label_current_version: גירסא נוכאית
372 label_current_version: גירסא נוכאית
371 label_preview: תצוגה מקדימה
373 label_preview: תצוגה מקדימה
372 label_feed_plural: הזנות
374 label_feed_plural: הזנות
373 label_changes_details: פירוט כל השינויים
375 label_changes_details: פירוט כל השינויים
374 label_issue_tracking: מעקב אחר נושאים
376 label_issue_tracking: מעקב אחר נושאים
375 label_spent_time: זמן שבוזבז
377 label_spent_time: זמן שבוזבז
376 label_f_hour: %.2f שעה
378 label_f_hour: %.2f שעה
377 label_f_hour_plural: %.2f שעות
379 label_f_hour_plural: %.2f שעות
378 label_time_tracking: מעקב זמנים
380 label_time_tracking: מעקב זמנים
379 label_change_plural: שינויים
381 label_change_plural: שינויים
380 label_statistics: סטטיסטיקות
382 label_statistics: סטטיסטיקות
381 label_commits_per_month: הפקדות לפי חודש
383 label_commits_per_month: הפקדות לפי חודש
382 label_commits_per_author: הפקדות לפי כותב
384 label_commits_per_author: הפקדות לפי כותב
383 label_view_diff: צפה בהבדלים
385 label_view_diff: צפה בהבדלים
384 label_diff_inline: בתוך השורה
386 label_diff_inline: בתוך השורה
385 label_diff_side_by_side: צד לצד
387 label_diff_side_by_side: צד לצד
386 label_options: אפשרויות
388 label_options: אפשרויות
387 label_copy_workflow_from: העתק זירמת עבודה מ
389 label_copy_workflow_from: העתק זירמת עבודה מ
388 label_permissions_report: דו"ח הרשאות
390 label_permissions_report: דו"ח הרשאות
389 label_watched_issues: נושאים שנצפו
391 label_watched_issues: נושאים שנצפו
390 label_related_issues: נושאים קשורים
392 label_related_issues: נושאים קשורים
391 label_applied_status: מוצב מוחל
393 label_applied_status: מוצב מוחל
392 label_loading: טוען...
394 label_loading: טוען...
393 label_relation_new: קשר חדש
395 label_relation_new: קשר חדש
394 label_relation_delete: מחק קשר
396 label_relation_delete: מחק קשר
395 label_relates_to: קשור ל
397 label_relates_to: קשור ל
396 label_duplicates: מכפיל את
398 label_duplicates: מכפיל את
397 label_blocks: חוסם את
399 label_blocks: חוסם את
398 label_blocked_by: חסום ע"י
400 label_blocked_by: חסום ע"י
399 label_precedes: מקדים את
401 label_precedes: מקדים את
400 label_follows: עוקב אחרי
402 label_follows: עוקב אחרי
401 label_end_to_start: מהתחלה לסוף
403 label_end_to_start: מהתחלה לסוף
402 label_end_to_end: מהסוף לסוף
404 label_end_to_end: מהסוף לסוף
403 label_start_to_start: מהתחלה להתחלה
405 label_start_to_start: מהתחלה להתחלה
404 label_start_to_end: מהתחלה לסוף
406 label_start_to_end: מהתחלה לסוף
405 label_stay_logged_in: השאר מחובר
407 label_stay_logged_in: השאר מחובר
406 label_disabled: מבוטל
408 label_disabled: מבוטל
407 label_show_completed_versions: הצג גירזאות גמורות
409 label_show_completed_versions: הצג גירזאות גמורות
408 label_me: אני
410 label_me: אני
409 label_board: פורום
411 label_board: פורום
410 label_board_new: פורום חדש
412 label_board_new: פורום חדש
411 label_board_plural: פורומים
413 label_board_plural: פורומים
412 label_topic_plural: נושאים
414 label_topic_plural: נושאים
413 label_message_plural: הודעות
415 label_message_plural: הודעות
414 label_message_last: הודעה אחרונה
416 label_message_last: הודעה אחרונה
415 label_message_new: הודעה חדשה
417 label_message_new: הודעה חדשה
416 label_reply_plural: השבות
418 label_reply_plural: השבות
417 label_send_information: שלח מידע על חשבון למשתמש
419 label_send_information: שלח מידע על חשבון למשתמש
418 label_year: שנה
420 label_year: שנה
419 label_month: חודש
421 label_month: חודש
420 label_week: שבו
422 label_week: שבו
421 label_date_from: מאת
423 label_date_from: מאת
422 label_date_to: אל
424 label_date_to: אל
423 label_language_based: מבוסס שפה
425 label_language_based: מבוסס שפה
424 label_sort_by: מין לפי %s
426 label_sort_by: מין לפי %s
425 label_send_test_email: שלח דו"ל בדיקה
427 label_send_test_email: שלח דו"ל בדיקה
426 label_feeds_access_key_created_on: מפתח הזנת RSS נוצר לפני%s
428 label_feeds_access_key_created_on: מפתח הזנת RSS נוצר לפני%s
427 label_module_plural: מודולים
429 label_module_plural: מודולים
428 label_added_time_by: הוסף על ידי %s לפני %s
430 label_added_time_by: הוסף על ידי %s לפני %s
429 label_updated_time: עודכן לפני %s
431 label_updated_time: עודכן לפני %s
430 label_jump_to_a_project: קפוץ לפרויקט...
432 label_jump_to_a_project: קפוץ לפרויקט...
431 label_file_plural: קבצים
433 label_file_plural: קבצים
432 label_changeset_plural: אוסף שינוים
434 label_changeset_plural: אוסף שינוים
433 label_default_columns: עמודת ברירת מחדל
435 label_default_columns: עמודת ברירת מחדל
434 label_no_change_option: (אין שינוים)
436 label_no_change_option: (אין שינוים)
435 label_bulk_edit_selected_issues: ערוך את הנושאים המסומנים
437 label_bulk_edit_selected_issues: ערוך את הנושאים המסומנים
436 label_theme: ערכת נושא
438 label_theme: ערכת נושא
437 label_default: ברירת מחדש
439 label_default: ברירת מחדש
438
440
439 button_login: התחבר
441 button_login: התחבר
440 button_submit: הגש
442 button_submit: הגש
441 button_save: שמור
443 button_save: שמור
442 button_check_all: בחר הכל
444 button_check_all: בחר הכל
443 button_uncheck_all: בחר כלום
445 button_uncheck_all: בחר כלום
444 button_delete: מחק
446 button_delete: מחק
445 button_create: צוק
447 button_create: צוק
446 button_test: בדוק
448 button_test: בדוק
447 button_edit: ערוך
449 button_edit: ערוך
448 button_add: הוסף
450 button_add: הוסף
449 button_change: שנה
451 button_change: שנה
450 button_apply: הוצא לפועל
452 button_apply: הוצא לפועל
451 button_clear: נקה
453 button_clear: נקה
452 button_lock: נעל
454 button_lock: נעל
453 button_unlock: בטל נעילה
455 button_unlock: בטל נעילה
454 button_download: הורד
456 button_download: הורד
455 button_list: קשימה
457 button_list: קשימה
456 button_view: צפה
458 button_view: צפה
457 button_move: הזז
459 button_move: הזז
458 button_back: הקודם
460 button_back: הקודם
459 button_cancel: בטח
461 button_cancel: בטח
460 button_activate: הפעל
462 button_activate: הפעל
461 button_sort: מין
463 button_sort: מין
462 button_log_time: זמן לוג
464 button_log_time: זמן לוג
463 button_rollback: חזור לגירסא זו
465 button_rollback: חזור לגירסא זו
464 button_watch: צפה
466 button_watch: צפה
465 button_unwatch: בטל צפיה
467 button_unwatch: בטל צפיה
466 button_reply: השב
468 button_reply: השב
467 button_archive: ארכיון
469 button_archive: ארכיון
468 button_unarchive: הוצא מהארכיון
470 button_unarchive: הוצא מהארכיון
469 button_reset: אפס
471 button_reset: אפס
470 button_rename: שנה שם
472 button_rename: שנה שם
471
473
472 status_active: פעיל
474 status_active: פעיל
473 status_registered: רשום
475 status_registered: רשום
474 status_locked: נעול
476 status_locked: נעול
475
477
476 text_select_mail_notifications: בחר פעולת שבגללן ישלח דוא"ל.
478 text_select_mail_notifications: בחר פעולת שבגללן ישלח דוא"ל.
477 text_regexp_info: כגון. ^[A-Z0-9]+$
479 text_regexp_info: כגון. ^[A-Z0-9]+$
478 text_min_max_length_info: 0 משמעו ללא הגבלות
480 text_min_max_length_info: 0 משמעו ללא הגבלות
479 text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו ?
481 text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו ?
480 text_workflow_edit: בחר תפקיד ועוקב כדי לערות את זרימת העבודה
482 text_workflow_edit: בחר תפקיד ועוקב כדי לערות את זרימת העבודה
481 text_are_you_sure: האם אתה בטוח ?
483 text_are_you_sure: האם אתה בטוח ?
482 text_journal_changed: שונה מ %s ל %s
484 text_journal_changed: שונה מ %s ל %s
483 text_journal_set_to: שונה ל %s
485 text_journal_set_to: שונה ל %s
484 text_journal_deleted: נמחק
486 text_journal_deleted: נמחק
485 text_tip_task_begin_day: מטלה המתחילה היום
487 text_tip_task_begin_day: מטלה המתחילה היום
486 text_tip_task_end_day: מטלה המסתיימת היום
488 text_tip_task_end_day: מטלה המסתיימת היום
487 text_tip_task_begin_end_day: מתלה המתחילה ומסתיימת היום
489 text_tip_task_begin_end_day: מתלה המתחילה ומסתיימת היום
488 text_project_identifier_info: 'אותיות לטיניות (a-z), מספרים ומקפים.<br />ברגע שנשמר, לא ניתן לשנות את המזהה.'
490 text_project_identifier_info: 'אותיות לטיניות (a-z), מספרים ומקפים.<br />ברגע שנשמר, לא ניתן לשנות את המזהה.'
489 text_caracters_maximum: מקסימום %d תווים.
491 text_caracters_maximum: מקסימום %d תווים.
490 text_length_between: אורך בין %d ל %d תווים.
492 text_length_between: אורך בין %d ל %d תווים.
491 text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור עוקב זה
493 text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור עוקב זה
492 text_unallowed_characters: תווים לא מורשים
494 text_unallowed_characters: תווים לא מורשים
493 text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים).
495 text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים).
494 text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדות
496 text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדות
495 text_issue_added: הנושא %s דווח.
497 text_issue_added: הנושא %s דווח.
496 text_issue_updated: הנושא %s עודכן.
498 text_issue_updated: הנושא %s עודכן.
497 text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו?
499 text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו?
498 text_issue_category_destroy_question: כמה נושאים (%d) מוצבים לקטגוריה הזו. מה ברצונך לעשות?
500 text_issue_category_destroy_question: כמה נושאים (%d) מוצבים לקטגוריה הזו. מה ברצונך לעשות?
499 text_issue_category_destroy_assignments: הסר הצבת קטגוריה
501 text_issue_category_destroy_assignments: הסר הצבת קטגוריה
500 text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים
502 text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים
501
503
502 default_role_manager: מנהל
504 default_role_manager: מנהל
503 default_role_developper: מפתח
505 default_role_developper: מפתח
504 default_role_reporter: מדווח
506 default_role_reporter: מדווח
505 default_tracker_bug: באג
507 default_tracker_bug: באג
506 default_tracker_feature: פיצ'ר
508 default_tracker_feature: פיצ'ר
507 default_tracker_support: תמיכה
509 default_tracker_support: תמיכה
508 default_issue_status_new: חדש
510 default_issue_status_new: חדש
509 default_issue_status_assigned: מוצב
511 default_issue_status_assigned: מוצב
510 default_issue_status_resolved: פתור
512 default_issue_status_resolved: פתור
511 default_issue_status_feedback: משוב
513 default_issue_status_feedback: משוב
512 default_issue_status_closed: סגור
514 default_issue_status_closed: סגור
513 default_issue_status_rejected: דחוי
515 default_issue_status_rejected: דחוי
514 default_doc_category_user: תיעוד משתמש
516 default_doc_category_user: תיעוד משתמש
515 default_doc_category_tech: תיעוד טכני
517 default_doc_category_tech: תיעוד טכני
516 default_priority_low: נמוכה
518 default_priority_low: נמוכה
517 default_priority_normal: רגילה
519 default_priority_normal: רגילה
518 default_priority_high: גהבוה
520 default_priority_high: גהבוה
519 default_priority_urgent: דחופה
521 default_priority_urgent: דחופה
520 default_priority_immediate: מידית
522 default_priority_immediate: מידית
521 default_activity_design: עיצוב
523 default_activity_design: עיצוב
522 default_activity_development: פיתוח
524 default_activity_development: פיתוח
523
525
524 enumeration_issue_priorities: עדיפות נושאים
526 enumeration_issue_priorities: עדיפות נושאים
525 enumeration_doc_categories: קטגוריות מסמכים
527 enumeration_doc_categories: קטגוריות מסמכים
526 enumeration_activities: פעילויות (מעקב אחר זמנים)
528 enumeration_activities: פעילויות (מעקב אחר זמנים)
527 label_search_titles_only: Search titles only
529 label_search_titles_only: Search titles only
528 label_nobody: nobody
530 label_nobody: nobody
529 button_change_password: Change password
531 button_change_password: Change password
530 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)."
531 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..."
532 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"
533 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"
534 setting_emails_footer: Emails footer
536 setting_emails_footer: Emails footer
535 label_float: Float
537 label_float: Float
536 button_copy: Copy
538 button_copy: Copy
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
538 mail_body_account_information: Your Redmine account information
540 mail_body_account_information: Your Redmine account information
539 setting_protocol: Protocol
541 setting_protocol: Protocol
540 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"
541 setting_time_format: Time format
543 setting_time_format: Time format
542 label_registration_activation_by_email: account activation by email
544 label_registration_activation_by_email: account activation by email
543 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: Redmine account activation request
544 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:'
545 label_registration_automatic_activation: automatic account activation
547 label_registration_automatic_activation: automatic account activation
546 label_registration_manual_activation: manual account activation
548 label_registration_manual_activation: manual account activation
547 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."
548 field_time_zone: Time zone
550 field_time_zone: Time zone
549 text_caracters_minimum: Must be at least %d characters long.
551 text_caracters_minimum: Must be at least %d characters long.
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 button_annotate: Annotate
553 button_annotate: Annotate
552 label_issues_by: Issues by %s
554 label_issues_by: Issues by %s
553 field_searchable: Searchable
555 field_searchable: Searchable
554 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
556 label_age: Age
558 label_age: Age
557 notice_default_data_loaded: Default configuration successfully loaded.
559 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
560 text_load_default_configuration: Load the default configuration
559 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."
560 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"
561 button_update: Update
563 button_update: Update
562 label_change_properties: Change properties
564 label_change_properties: Change properties
563 label_general: General
565 label_general: General
564 label_repository_plural: Repositories
566 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
@@ -1,565 +1,567
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_scm_error: La risorsa e/o la versione non esistono nel repository.
72 notice_not_authorized: You are not authorized to access this page.
71 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
73 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
75
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"
78
77 mail_subject_lost_password: Password redMine
79 mail_subject_lost_password: Password redMine
78 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:'
79 mail_subject_register: Attivazione utenza redMine
81 mail_subject_register: Attivazione utenza redMine
80 mail_body_register: 'Per attivare la vostra utenza Redmine, usate il seguente collegamento:'
82 mail_body_register: 'Per attivare la vostra utenza Redmine, usate il seguente collegamento:'
81
83
82 gui_validation_error: 1 errore
84 gui_validation_error: 1 errore
83 gui_validation_error_plural: %d errori
85 gui_validation_error_plural: %d errori
84
86
85 field_name: Nome
87 field_name: Nome
86 field_description: Descrizione
88 field_description: Descrizione
87 field_summary: Sommario
89 field_summary: Sommario
88 field_is_required: Richiesto
90 field_is_required: Richiesto
89 field_firstname: Nome
91 field_firstname: Nome
90 field_lastname: Cognome
92 field_lastname: Cognome
91 field_mail: Email
93 field_mail: Email
92 field_filename: File
94 field_filename: File
93 field_filesize: Dimensione
95 field_filesize: Dimensione
94 field_downloads: Download
96 field_downloads: Download
95 field_author: Autore
97 field_author: Autore
96 field_created_on: Creato
98 field_created_on: Creato
97 field_updated_on: Aggiornato
99 field_updated_on: Aggiornato
98 field_field_format: Formato
100 field_field_format: Formato
99 field_is_for_all: Per tutti i progetti
101 field_is_for_all: Per tutti i progetti
100 field_possible_values: Valori possibili
102 field_possible_values: Valori possibili
101 field_regexp: Espressione regolare
103 field_regexp: Espressione regolare
102 field_min_length: Lunghezza minima
104 field_min_length: Lunghezza minima
103 field_max_length: Lunghezza massima
105 field_max_length: Lunghezza massima
104 field_value: Valore
106 field_value: Valore
105 field_category: Categoria
107 field_category: Categoria
106 field_title: Titolo
108 field_title: Titolo
107 field_project: Progetto
109 field_project: Progetto
108 field_issue: Issue
110 field_issue: Issue
109 field_status: Stato
111 field_status: Stato
110 field_notes: Note
112 field_notes: Note
111 field_is_closed: Chiude il contesto
113 field_is_closed: Chiude il contesto
112 field_is_default: Stato predefinito
114 field_is_default: Stato predefinito
113 field_tracker: Tracker
115 field_tracker: Tracker
114 field_subject: Oggetto
116 field_subject: Oggetto
115 field_due_date: Data ultima
117 field_due_date: Data ultima
116 field_assigned_to: Assegnato a
118 field_assigned_to: Assegnato a
117 field_priority: Priorita'
119 field_priority: Priorita'
118 field_fixed_version: Versione di fix
120 field_fixed_version: Versione di fix
119 field_user: Utente
121 field_user: Utente
120 field_role: Ruolo
122 field_role: Ruolo
121 field_homepage: Homepage
123 field_homepage: Homepage
122 field_is_public: Pubblico
124 field_is_public: Pubblico
123 field_parent: Sottoprogetto di
125 field_parent: Sottoprogetto di
124 field_is_in_chlog: Contesti mostrati nel changelog
126 field_is_in_chlog: Contesti mostrati nel changelog
125 field_is_in_roadmap: Contesti mostrati nel roadmap
127 field_is_in_roadmap: Contesti mostrati nel roadmap
126 field_login: Login
128 field_login: Login
127 field_mail_notification: Notifiche via e-mail
129 field_mail_notification: Notifiche via e-mail
128 field_admin: Amministratore
130 field_admin: Amministratore
129 field_last_login_on: Ultima connessione
131 field_last_login_on: Ultima connessione
130 field_language: Lingua
132 field_language: Lingua
131 field_effective_date: Data
133 field_effective_date: Data
132 field_password: Password
134 field_password: Password
133 field_new_password: Nuova password
135 field_new_password: Nuova password
134 field_password_confirmation: Conferma
136 field_password_confirmation: Conferma
135 field_version: Versione
137 field_version: Versione
136 field_type: Tipo
138 field_type: Tipo
137 field_host: Host
139 field_host: Host
138 field_port: Porta
140 field_port: Porta
139 field_account: Utenza
141 field_account: Utenza
140 field_base_dn: DN base
142 field_base_dn: DN base
141 field_attr_login: Attributo login
143 field_attr_login: Attributo login
142 field_attr_firstname: Attributo nome
144 field_attr_firstname: Attributo nome
143 field_attr_lastname: Attributo cognome
145 field_attr_lastname: Attributo cognome
144 field_attr_mail: Attributo e-mail
146 field_attr_mail: Attributo e-mail
145 field_onthefly: Creazione utenza "al volo"
147 field_onthefly: Creazione utenza "al volo"
146 field_start_date: Inizio
148 field_start_date: Inizio
147 field_done_ratio: %% completo
149 field_done_ratio: %% completo
148 field_auth_source: Modalità di autenticazione
150 field_auth_source: Modalità di autenticazione
149 field_hide_mail: Nascondi il mio indirizzo di e-mail
151 field_hide_mail: Nascondi il mio indirizzo di e-mail
150 field_comments: Commento
152 field_comments: Commento
151 field_url: URL
153 field_url: URL
152 field_start_page: Pagina principale
154 field_start_page: Pagina principale
153 field_subproject: Sottoprogetto
155 field_subproject: Sottoprogetto
154 field_hours: Hours
156 field_hours: Hours
155 field_activity: Activity
157 field_activity: Activity
156 field_spent_on: Data
158 field_spent_on: Data
157 field_identifier: Identifier
159 field_identifier: Identifier
158 field_is_filter: Used as a filter
160 field_is_filter: Used as a filter
159 field_issue_to_id: Related issue
161 field_issue_to_id: Related issue
160 field_delay: Delay
162 field_delay: Delay
161 field_assignable: Issues can be assigned to this role
163 field_assignable: Issues can be assigned to this role
162 field_redirect_existing_links: Redirect existing links
164 field_redirect_existing_links: Redirect existing links
163 field_estimated_hours: Estimated time
165 field_estimated_hours: Estimated time
164 field_default_value: Stato predefinito
166 field_default_value: Stato predefinito
165
167
166 setting_app_title: Titolo applicazione
168 setting_app_title: Titolo applicazione
167 setting_app_subtitle: Sottotitolo applicazione
169 setting_app_subtitle: Sottotitolo applicazione
168 setting_welcome_text: Testo di benvenuto
170 setting_welcome_text: Testo di benvenuto
169 setting_default_language: Lingua di default
171 setting_default_language: Lingua di default
170 setting_login_required: Autenticazione richiesta
172 setting_login_required: Autenticazione richiesta
171 setting_self_registration: Auto-registrazione abilitata
173 setting_self_registration: Auto-registrazione abilitata
172 setting_attachment_max_size: Massima dimensione allegati
174 setting_attachment_max_size: Massima dimensione allegati
173 setting_issues_export_limit: Limite esportazione contesti
175 setting_issues_export_limit: Limite esportazione contesti
174 setting_mail_from: Indirizzo sorgente e-mail
176 setting_mail_from: Indirizzo sorgente e-mail
175 setting_host_name: Nome host
177 setting_host_name: Nome host
176 setting_text_formatting: Formattazione testo
178 setting_text_formatting: Formattazione testo
177 setting_wiki_compression: Compressione di storia di Wiki
179 setting_wiki_compression: Compressione di storia di Wiki
178 setting_feeds_limit: Limite contenuti del feed
180 setting_feeds_limit: Limite contenuti del feed
179 setting_autofetch_changesets: Acquisisci automaticamente le commit
181 setting_autofetch_changesets: Acquisisci automaticamente le commit
180 setting_sys_api_enabled: Abilita WS per la gestione del repository
182 setting_sys_api_enabled: Abilita WS per la gestione del repository
181 setting_commit_ref_keywords: Referencing keywords
183 setting_commit_ref_keywords: Referencing keywords
182 setting_commit_fix_keywords: Fixing keywords
184 setting_commit_fix_keywords: Fixing keywords
183 setting_autologin: Autologin
185 setting_autologin: Autologin
184 setting_date_format: Date format
186 setting_date_format: Date format
185 setting_cross_project_issue_relations: Allow cross-project issue relations
187 setting_cross_project_issue_relations: Allow cross-project issue relations
186
188
187 label_user: Utente
189 label_user: Utente
188 label_user_plural: Utenti
190 label_user_plural: Utenti
189 label_user_new: Nuovo utente
191 label_user_new: Nuovo utente
190 label_project: Progetto
192 label_project: Progetto
191 label_project_new: Nuovo progetto
193 label_project_new: Nuovo progetto
192 label_project_plural: Progetti
194 label_project_plural: Progetti
193 label_project_all: All Projects
195 label_project_all: All Projects
194 label_project_latest: Ultimi progetti registrati
196 label_project_latest: Ultimi progetti registrati
195 label_issue: Contesto
197 label_issue: Contesto
196 label_issue_new: Nuovo contesto
198 label_issue_new: Nuovo contesto
197 label_issue_plural: Contesti
199 label_issue_plural: Contesti
198 label_issue_view_all: Mostra tutti i contesti
200 label_issue_view_all: Mostra tutti i contesti
199 label_document: Documento
201 label_document: Documento
200 label_document_new: Nuovo documento
202 label_document_new: Nuovo documento
201 label_document_plural: Documenti
203 label_document_plural: Documenti
202 label_role: Ruolo
204 label_role: Ruolo
203 label_role_plural: Ruoli
205 label_role_plural: Ruoli
204 label_role_new: Nuovo ruolo
206 label_role_new: Nuovo ruolo
205 label_role_and_permissions: Ruoli e permessi
207 label_role_and_permissions: Ruoli e permessi
206 label_member: Membro
208 label_member: Membro
207 label_member_new: Nuovo membro
209 label_member_new: Nuovo membro
208 label_member_plural: Membri
210 label_member_plural: Membri
209 label_tracker: Tracker
211 label_tracker: Tracker
210 label_tracker_plural: Tracker
212 label_tracker_plural: Tracker
211 label_tracker_new: Nuovo tracker
213 label_tracker_new: Nuovo tracker
212 label_workflow: Workflow
214 label_workflow: Workflow
213 label_issue_status: Stato contesti
215 label_issue_status: Stato contesti
214 label_issue_status_plural: Stati contesto
216 label_issue_status_plural: Stati contesto
215 label_issue_status_new: Nuovo stato
217 label_issue_status_new: Nuovo stato
216 label_issue_category: Categorie contesti
218 label_issue_category: Categorie contesti
217 label_issue_category_plural: Categorie contesto
219 label_issue_category_plural: Categorie contesto
218 label_issue_category_new: Nuova categoria
220 label_issue_category_new: Nuova categoria
219 label_custom_field: Campo personalizzato
221 label_custom_field: Campo personalizzato
220 label_custom_field_plural: Campi personalizzati
222 label_custom_field_plural: Campi personalizzati
221 label_custom_field_new: Nuovo campo personalizzato
223 label_custom_field_new: Nuovo campo personalizzato
222 label_enumerations: Enumerazioni
224 label_enumerations: Enumerazioni
223 label_enumeration_new: Nuovo valore
225 label_enumeration_new: Nuovo valore
224 label_information: Informazione
226 label_information: Informazione
225 label_information_plural: Informazioni
227 label_information_plural: Informazioni
226 label_please_login: Autenticarsi
228 label_please_login: Autenticarsi
227 label_register: Registrati
229 label_register: Registrati
228 label_password_lost: Password dimenticata
230 label_password_lost: Password dimenticata
229 label_home: Home
231 label_home: Home
230 label_my_page: Pagina personale
232 label_my_page: Pagina personale
231 label_my_account: La mia utenza
233 label_my_account: La mia utenza
232 label_my_projects: I miei progetti
234 label_my_projects: I miei progetti
233 label_administration: Amministrazione
235 label_administration: Amministrazione
234 label_login: Login
236 label_login: Login
235 label_logout: Logout
237 label_logout: Logout
236 label_help: Aiuto
238 label_help: Aiuto
237 label_reported_issues: Contesti segnalati
239 label_reported_issues: Contesti segnalati
238 label_assigned_to_me_issues: I miei contesti
240 label_assigned_to_me_issues: I miei contesti
239 label_last_login: Ultimo collegamento
241 label_last_login: Ultimo collegamento
240 label_last_updates: Ultimo aggiornamento
242 label_last_updates: Ultimo aggiornamento
241 label_last_updates_plural: %d ultimo aggiornamento
243 label_last_updates_plural: %d ultimo aggiornamento
242 label_registered_on: Registrato il
244 label_registered_on: Registrato il
243 label_activity: Attività
245 label_activity: Attività
244 label_new: Nuovo
246 label_new: Nuovo
245 label_logged_as: Autenticato come
247 label_logged_as: Autenticato come
246 label_environment: Ambiente
248 label_environment: Ambiente
247 label_authentication: Autenticazione
249 label_authentication: Autenticazione
248 label_auth_source: Modalità di autenticazione
250 label_auth_source: Modalità di autenticazione
249 label_auth_source_new: Nuova modalità di autenticazione
251 label_auth_source_new: Nuova modalità di autenticazione
250 label_auth_source_plural: Modalità di autenticazione
252 label_auth_source_plural: Modalità di autenticazione
251 label_subproject_plural: Sottoprogetti
253 label_subproject_plural: Sottoprogetti
252 label_min_max_length: Lunghezza minima - massima
254 label_min_max_length: Lunghezza minima - massima
253 label_list: Elenco
255 label_list: Elenco
254 label_date: Data
256 label_date: Data
255 label_integer: Intero
257 label_integer: Intero
256 label_boolean: Booleano
258 label_boolean: Booleano
257 label_string: Testo
259 label_string: Testo
258 label_text: Testo esteso
260 label_text: Testo esteso
259 label_attribute: Attributo
261 label_attribute: Attributo
260 label_attribute_plural: Attributi
262 label_attribute_plural: Attributi
261 label_download: %d Download
263 label_download: %d Download
262 label_download_plural: %d Download
264 label_download_plural: %d Download
263 label_no_data: Nessun dato disponibile
265 label_no_data: Nessun dato disponibile
264 label_change_status: Cambia stato
266 label_change_status: Cambia stato
265 label_history: Cronologia
267 label_history: Cronologia
266 label_attachment: File
268 label_attachment: File
267 label_attachment_new: Nuovo file
269 label_attachment_new: Nuovo file
268 label_attachment_delete: Elimina file
270 label_attachment_delete: Elimina file
269 label_attachment_plural: File
271 label_attachment_plural: File
270 label_report: Report
272 label_report: Report
271 label_report_plural: Report
273 label_report_plural: Report
272 label_news: Notizia
274 label_news: Notizia
273 label_news_new: Aggiungi notizia
275 label_news_new: Aggiungi notizia
274 label_news_plural: Notizie
276 label_news_plural: Notizie
275 label_news_latest: Utime notizie
277 label_news_latest: Utime notizie
276 label_news_view_all: Tutte le notizie
278 label_news_view_all: Tutte le notizie
277 label_change_log: Change log
279 label_change_log: Change log
278 label_settings: Impostazioni
280 label_settings: Impostazioni
279 label_overview: Panoramica
281 label_overview: Panoramica
280 label_version: Versione
282 label_version: Versione
281 label_version_new: Nuova versione
283 label_version_new: Nuova versione
282 label_version_plural: Versioni
284 label_version_plural: Versioni
283 label_confirmation: Conferma
285 label_confirmation: Conferma
284 label_export_to: Esporta su
286 label_export_to: Esporta su
285 label_read: Leggi...
287 label_read: Leggi...
286 label_public_projects: Progetti pubblici
288 label_public_projects: Progetti pubblici
287 label_open_issues: aperta
289 label_open_issues: aperta
288 label_open_issues_plural: aperte
290 label_open_issues_plural: aperte
289 label_closed_issues: chiusa
291 label_closed_issues: chiusa
290 label_closed_issues_plural: chiuse
292 label_closed_issues_plural: chiuse
291 label_total: Totale
293 label_total: Totale
292 label_permissions: Permessi
294 label_permissions: Permessi
293 label_current_status: Stato attuale
295 label_current_status: Stato attuale
294 label_new_statuses_allowed: Nuovi stati possibili
296 label_new_statuses_allowed: Nuovi stati possibili
295 label_all: tutti
297 label_all: tutti
296 label_none: nessuno
298 label_none: nessuno
297 label_next: Successivo
299 label_next: Successivo
298 label_previous: Precedente
300 label_previous: Precedente
299 label_used_by: Usato da
301 label_used_by: Usato da
300 label_details: Dettagli
302 label_details: Dettagli
301 label_add_note: Aggiungi una nota
303 label_add_note: Aggiungi una nota
302 label_per_page: Per pagina
304 label_per_page: Per pagina
303 label_calendar: Calendario
305 label_calendar: Calendario
304 label_months_from: mesi da
306 label_months_from: mesi da
305 label_gantt: Gantt
307 label_gantt: Gantt
306 label_internal: Interno
308 label_internal: Interno
307 label_last_changes: ultime %d modifiche
309 label_last_changes: ultime %d modifiche
308 label_change_view_all: Tutte le modifiche
310 label_change_view_all: Tutte le modifiche
309 label_personalize_page: Personalizza la pagina
311 label_personalize_page: Personalizza la pagina
310 label_comment: Commento
312 label_comment: Commento
311 label_comment_plural: Commenti
313 label_comment_plural: Commenti
312 label_comment_add: Aggiungi un commento
314 label_comment_add: Aggiungi un commento
313 label_comment_added: Commento aggiunto
315 label_comment_added: Commento aggiunto
314 label_comment_delete: Elimina commenti
316 label_comment_delete: Elimina commenti
315 label_query: Custom query
317 label_query: Custom query
316 label_query_plural: Query personalizzate
318 label_query_plural: Query personalizzate
317 label_query_new: Nuova query
319 label_query_new: Nuova query
318 label_filter_add: Aggiungi filtro
320 label_filter_add: Aggiungi filtro
319 label_filter_plural: Filtri
321 label_filter_plural: Filtri
320 label_equals: è
322 label_equals: è
321 label_not_equals: non è
323 label_not_equals: non è
322 label_in_less_than: è minore di
324 label_in_less_than: è minore di
323 label_in_more_than: è maggiore di
325 label_in_more_than: è maggiore di
324 label_in: in
326 label_in: in
325 label_today: oggi
327 label_today: oggi
326 label_this_week: this week
328 label_this_week: this week
327 label_less_than_ago: meno di giorni fa
329 label_less_than_ago: meno di giorni fa
328 label_more_than_ago: più di giorni fa
330 label_more_than_ago: più di giorni fa
329 label_ago: giorni fa
331 label_ago: giorni fa
330 label_contains: contiene
332 label_contains: contiene
331 label_not_contains: non contiene
333 label_not_contains: non contiene
332 label_day_plural: giorni
334 label_day_plural: giorni
333 label_repository: Repository
335 label_repository: Repository
334 label_browse: Browse
336 label_browse: Browse
335 label_modification: %d modifica
337 label_modification: %d modifica
336 label_modification_plural: %d modifiche
338 label_modification_plural: %d modifiche
337 label_revision: Versione
339 label_revision: Versione
338 label_revision_plural: Versioni
340 label_revision_plural: Versioni
339 label_added: aggiunto
341 label_added: aggiunto
340 label_modified: modificato
342 label_modified: modificato
341 label_deleted: eliminato
343 label_deleted: eliminato
342 label_latest_revision: Ultima versione
344 label_latest_revision: Ultima versione
343 label_latest_revision_plural: Ultime versioni
345 label_latest_revision_plural: Ultime versioni
344 label_view_revisions: Mostra versioni
346 label_view_revisions: Mostra versioni
345 label_max_size: Dimensione massima
347 label_max_size: Dimensione massima
346 label_on: 'on'
348 label_on: 'on'
347 label_sort_highest: Sposta in cima
349 label_sort_highest: Sposta in cima
348 label_sort_higher: Su
350 label_sort_higher: Su
349 label_sort_lower: Giù
351 label_sort_lower: Giù
350 label_sort_lowest: Sposta in fondo
352 label_sort_lowest: Sposta in fondo
351 label_roadmap: Roadmap
353 label_roadmap: Roadmap
352 label_roadmap_due_in: Da ultimare in
354 label_roadmap_due_in: Da ultimare in
353 label_roadmap_overdue: %s late
355 label_roadmap_overdue: %s late
354 label_roadmap_no_issues: Nessun contesto per questa versione
356 label_roadmap_no_issues: Nessun contesto per questa versione
355 label_search: Ricerca
357 label_search: Ricerca
356 label_result_plural: Risultati
358 label_result_plural: Risultati
357 label_all_words: Tutte le parole
359 label_all_words: Tutte le parole
358 label_wiki: Wiki
360 label_wiki: Wiki
359 label_wiki_edit: Modifica Wiki
361 label_wiki_edit: Modifica Wiki
360 label_wiki_edit_plural: Modfiche wiki
362 label_wiki_edit_plural: Modfiche wiki
361 label_wiki_page: Wiki page
363 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
364 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Index by title
365 label_index_by_title: Index by title
364 label_index_by_date: Index by date
366 label_index_by_date: Index by date
365 label_current_version: Versione corrente
367 label_current_version: Versione corrente
366 label_preview: Anteprima
368 label_preview: Anteprima
367 label_feed_plural: Feed
369 label_feed_plural: Feed
368 label_changes_details: Particolari di tutti i cambiamenti
370 label_changes_details: Particolari di tutti i cambiamenti
369 label_issue_tracking: tracking dei contesti
371 label_issue_tracking: tracking dei contesti
370 label_spent_time: Tempo impiegato
372 label_spent_time: Tempo impiegato
371 label_f_hour: %.2f ora
373 label_f_hour: %.2f ora
372 label_f_hour_plural: %.2f ore
374 label_f_hour_plural: %.2f ore
373 label_time_tracking: Tracking del tempo
375 label_time_tracking: Tracking del tempo
374 label_change_plural: Modifiche
376 label_change_plural: Modifiche
375 label_statistics: Statistiche
377 label_statistics: Statistiche
376 label_commits_per_month: Commit per mese
378 label_commits_per_month: Commit per mese
377 label_commits_per_author: Commit per autore
379 label_commits_per_author: Commit per autore
378 label_view_diff: mostra differenze
380 label_view_diff: mostra differenze
379 label_diff_inline: inline
381 label_diff_inline: inline
380 label_diff_side_by_side: side by side
382 label_diff_side_by_side: side by side
381 label_options: Opzioni
383 label_options: Opzioni
382 label_copy_workflow_from: Copia workflow da
384 label_copy_workflow_from: Copia workflow da
383 label_permissions_report: Report permessi
385 label_permissions_report: Report permessi
384 label_watched_issues: Watched issues
386 label_watched_issues: Watched issues
385 label_related_issues: Related issues
387 label_related_issues: Related issues
386 label_applied_status: Applied status
388 label_applied_status: Applied status
387 label_loading: Loading...
389 label_loading: Loading...
388 label_relation_new: New relation
390 label_relation_new: New relation
389 label_relation_delete: Delete relation
391 label_relation_delete: Delete relation
390 label_relates_to: related to
392 label_relates_to: related to
391 label_duplicates: duplicates
393 label_duplicates: duplicates
392 label_blocks: blocks
394 label_blocks: blocks
393 label_blocked_by: blocked by
395 label_blocked_by: blocked by
394 label_precedes: precedes
396 label_precedes: precedes
395 label_follows: follows
397 label_follows: follows
396 label_end_to_start: end to start
398 label_end_to_start: end to start
397 label_end_to_end: end to end
399 label_end_to_end: end to end
398 label_start_to_start: start to start
400 label_start_to_start: start to start
399 label_start_to_end: start to end
401 label_start_to_end: start to end
400 label_stay_logged_in: Stay logged in
402 label_stay_logged_in: Stay logged in
401 label_disabled: disabled
403 label_disabled: disabled
402 label_show_completed_versions: Show completed versions
404 label_show_completed_versions: Show completed versions
403 label_me: me
405 label_me: me
404 label_board: Forum
406 label_board: Forum
405 label_board_new: New forum
407 label_board_new: New forum
406 label_board_plural: Forums
408 label_board_plural: Forums
407 label_topic_plural: Topics
409 label_topic_plural: Topics
408 label_message_plural: Messages
410 label_message_plural: Messages
409 label_message_last: Last message
411 label_message_last: Last message
410 label_message_new: New message
412 label_message_new: New message
411 label_reply_plural: Replies
413 label_reply_plural: Replies
412 label_send_information: Send account information to the user
414 label_send_information: Send account information to the user
413 label_year: Year
415 label_year: Year
414 label_month: Month
416 label_month: Month
415 label_week: Week
417 label_week: Week
416 label_date_from: From
418 label_date_from: From
417 label_date_to: To
419 label_date_to: To
418 label_language_based: Language based
420 label_language_based: Language based
419 label_sort_by: Sort by %s
421 label_sort_by: Sort by %s
420 label_send_test_email: Send a test email
422 label_send_test_email: Send a test email
421 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
422 label_module_plural: Modules
424 label_module_plural: Modules
423 label_added_time_by: Added by %s %s ago
425 label_added_time_by: Added by %s %s ago
424 label_updated_time: Updated %s ago
426 label_updated_time: Updated %s ago
425 label_jump_to_a_project: Jump to a project...
427 label_jump_to_a_project: Jump to a project...
426
428
427 button_login: Login
429 button_login: Login
428 button_submit: Invia
430 button_submit: Invia
429 button_save: Salva
431 button_save: Salva
430 button_check_all: Seleziona tutti
432 button_check_all: Seleziona tutti
431 button_uncheck_all: Deseleziona tutti
433 button_uncheck_all: Deseleziona tutti
432 button_delete: Elimina
434 button_delete: Elimina
433 button_create: Crea
435 button_create: Crea
434 button_test: Test
436 button_test: Test
435 button_edit: Modifica
437 button_edit: Modifica
436 button_add: Aggiungi
438 button_add: Aggiungi
437 button_change: Modifica
439 button_change: Modifica
438 button_apply: Applica
440 button_apply: Applica
439 button_clear: Pulisci
441 button_clear: Pulisci
440 button_lock: Blocca
442 button_lock: Blocca
441 button_unlock: Sblocca
443 button_unlock: Sblocca
442 button_download: Scarica
444 button_download: Scarica
443 button_list: Elenca
445 button_list: Elenca
444 button_view: Mostra
446 button_view: Mostra
445 button_move: Sposta
447 button_move: Sposta
446 button_back: Indietro
448 button_back: Indietro
447 button_cancel: Annulla
449 button_cancel: Annulla
448 button_activate: Attiva
450 button_activate: Attiva
449 button_sort: Ordina
451 button_sort: Ordina
450 button_log_time: Registra tempo
452 button_log_time: Registra tempo
451 button_rollback: Ripristina questa versione
453 button_rollback: Ripristina questa versione
452 button_watch: Watch
454 button_watch: Watch
453 button_unwatch: Unwatch
455 button_unwatch: Unwatch
454 button_reply: Reply
456 button_reply: Reply
455 button_archive: Archive
457 button_archive: Archive
456 button_unarchive: Unarchive
458 button_unarchive: Unarchive
457 button_reset: Reset
459 button_reset: Reset
458 button_rename: Rename
460 button_rename: Rename
459
461
460 status_active: attivo
462 status_active: attivo
461 status_registered: registrato
463 status_registered: registrato
462 status_locked: bloccato
464 status_locked: bloccato
463
465
464 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.
465 text_regexp_info: eg. ^[A-Z0-9]+$
467 text_regexp_info: eg. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 significa nessuna restrizione
468 text_min_max_length_info: 0 significa nessuna restrizione
467 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?
468 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
469 text_are_you_sure: Sei sicuro ?
471 text_are_you_sure: Sei sicuro ?
470 text_journal_changed: cambiato da %s a %s
472 text_journal_changed: cambiato da %s a %s
471 text_journal_set_to: impostato a %s
473 text_journal_set_to: impostato a %s
472 text_journal_deleted: cancellato
474 text_journal_deleted: cancellato
473 text_tip_task_begin_day: attività che iniziano in questa giornata
475 text_tip_task_begin_day: attività che iniziano in questa giornata
474 text_tip_task_end_day: attività che terminano in questa giornata
476 text_tip_task_end_day: attività che terminano in questa giornata
475 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
476 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.'
477 text_caracters_maximum: massimo %d caratteri.
479 text_caracters_maximum: massimo %d caratteri.
478 text_length_between: Lunghezza compresa tra %d e %d caratteri.
480 text_length_between: Lunghezza compresa tra %d e %d caratteri.
479 text_tracker_no_workflow: Nessun workflow definito per questo tracker
481 text_tracker_no_workflow: Nessun workflow definito per questo tracker
480 text_unallowed_characters: Unallowed characters
482 text_unallowed_characters: Unallowed characters
481 text_comma_separated: Multiple values allowed (comma separated).
483 text_comma_separated: Multiple values allowed (comma separated).
482 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
483 text_issue_added: "E' stata segnalata l'anomalia %s."
485 text_issue_added: "E' stata segnalata l'anomalia %s."
484 text_issue_updated: "L'anomalia %s e' stata aggiornata."
486 text_issue_updated: "L'anomalia %s e' stata aggiornata."
485 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 ?
486 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 ?
487 text_issue_category_destroy_assignments: Remove category assignments
489 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_reassign_to: Reassing issues to this category
490 text_issue_category_reassign_to: Reassing issues to this category
489
491
490 default_role_manager: Manager
492 default_role_manager: Manager
491 default_role_developper: Sviluppatore
493 default_role_developper: Sviluppatore
492 default_role_reporter: Reporter
494 default_role_reporter: Reporter
493 default_tracker_bug: Contesto
495 default_tracker_bug: Contesto
494 default_tracker_feature: Funzione
496 default_tracker_feature: Funzione
495 default_tracker_support: Supporto
497 default_tracker_support: Supporto
496 default_issue_status_new: Nuovo/a
498 default_issue_status_new: Nuovo/a
497 default_issue_status_assigned: Assegnato/a
499 default_issue_status_assigned: Assegnato/a
498 default_issue_status_resolved: Risolto/a
500 default_issue_status_resolved: Risolto/a
499 default_issue_status_feedback: Feedback
501 default_issue_status_feedback: Feedback
500 default_issue_status_closed: Chiuso/a
502 default_issue_status_closed: Chiuso/a
501 default_issue_status_rejected: Rifiutato/a
503 default_issue_status_rejected: Rifiutato/a
502 default_doc_category_user: Documentazione utente
504 default_doc_category_user: Documentazione utente
503 default_doc_category_tech: Documentazione tecnica
505 default_doc_category_tech: Documentazione tecnica
504 default_priority_low: Bassa
506 default_priority_low: Bassa
505 default_priority_normal: Normale
507 default_priority_normal: Normale
506 default_priority_high: Alta
508 default_priority_high: Alta
507 default_priority_urgent: Urgente
509 default_priority_urgent: Urgente
508 default_priority_immediate: Immediata
510 default_priority_immediate: Immediata
509 default_activity_design: Design
511 default_activity_design: Design
510 default_activity_development: Development
512 default_activity_development: Development
511
513
512 enumeration_issue_priorities: Priorità contesti
514 enumeration_issue_priorities: Priorità contesti
513 enumeration_doc_categories: Categorie di documenti
515 enumeration_doc_categories: Categorie di documenti
514 enumeration_activities: Attività (time tracking)
516 enumeration_activities: Attività (time tracking)
515 label_file_plural: Files
517 label_file_plural: Files
516 label_changeset_plural: Changesets
518 label_changeset_plural: Changesets
517 field_column_names: Columns
519 field_column_names: Columns
518 label_default_columns: Default columns
520 label_default_columns: Default columns
519 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
520 setting_repositories_encodings: Repositories encodings
522 setting_repositories_encodings: Repositories encodings
521 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."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
524 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
525 label_no_change_option: (No change)
524 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."
525 label_theme: Theme
527 label_theme: Theme
526 label_default: Default
528 label_default: Default
527 label_search_titles_only: Search titles only
529 label_search_titles_only: Search titles only
528 label_nobody: nobody
530 label_nobody: nobody
529 button_change_password: Change password
531 button_change_password: Change password
530 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)."
531 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..."
532 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"
533 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"
534 setting_emails_footer: Emails footer
536 setting_emails_footer: Emails footer
535 label_float: Float
537 label_float: Float
536 button_copy: Copy
538 button_copy: Copy
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
538 mail_body_account_information: Your Redmine account information
540 mail_body_account_information: Your Redmine account information
539 setting_protocol: Protocol
541 setting_protocol: Protocol
540 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"
541 setting_time_format: Time format
543 setting_time_format: Time format
542 label_registration_activation_by_email: account activation by email
544 label_registration_activation_by_email: account activation by email
543 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: Redmine account activation request
544 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:'
545 label_registration_automatic_activation: automatic account activation
547 label_registration_automatic_activation: automatic account activation
546 label_registration_manual_activation: manual account activation
548 label_registration_manual_activation: manual account activation
547 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."
548 field_time_zone: Time zone
550 field_time_zone: Time zone
549 text_caracters_minimum: Must be at least %d characters long.
551 text_caracters_minimum: Must be at least %d characters long.
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 button_annotate: Annotate
553 button_annotate: Annotate
552 label_issues_by: Issues by %s
554 label_issues_by: Issues by %s
553 field_searchable: Searchable
555 field_searchable: Searchable
554 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
556 label_age: Age
558 label_age: Age
557 notice_default_data_loaded: Default configuration successfully loaded.
559 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
560 text_load_default_configuration: Load the default configuration
559 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."
560 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"
561 button_update: Update
563 button_update: Update
562 label_change_properties: Change properties
564 label_change_properties: Change properties
563 label_general: General
565 label_general: General
564 label_repository_plural: Repositories
566 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
@@ -1,566 +1,568
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: SJIS
53 general_pdf_encoding: SJIS
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_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
73 notice_not_authorized: このページにアクセスするには認証が必要です。
72 notice_not_authorized: このページにアクセスするには認証が必要です。
74 notice_email_sent: %s宛にメールを送信しました。
73 notice_email_sent: %s宛にメールを送信しました。
75 notice_email_error: メール送信中にエラーが発生しました(%s)
74 notice_email_error: メール送信中にエラーが発生しました(%s)
76 notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。
75 notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。
77
76
77 error_scm_not_found: リポジトリに、エントリ/リビジョンが存在しません。
78 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
79
78 mail_subject_lost_password: Redmineパスワード
80 mail_subject_lost_password: Redmineパスワード
79 mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:'
81 mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:'
80 mail_subject_register: Redmineアカウントが有効になりました
82 mail_subject_register: Redmineアカウントが有効になりました
81 mail_body_register: 'Redmineアカウントをアクティブにするには、以下のリンクをたどってください:'
83 mail_body_register: 'Redmineアカウントをアクティブにするには、以下のリンクをたどってください:'
82
84
83 gui_validation_error: 1件のエラー
85 gui_validation_error: 1件のエラー
84 gui_validation_error_plural: %d件のエラー
86 gui_validation_error_plural: %d件のエラー
85
87
86 field_name: 名前
88 field_name: 名前
87 field_description: 説明
89 field_description: 説明
88 field_summary: サマリ
90 field_summary: サマリ
89 field_is_required: 必須
91 field_is_required: 必須
90 field_firstname: 名前
92 field_firstname: 名前
91 field_lastname: 苗字
93 field_lastname: 苗字
92 field_mail: メールアドレス
94 field_mail: メールアドレス
93 field_filename: ファイル
95 field_filename: ファイル
94 field_filesize: サイズ
96 field_filesize: サイズ
95 field_downloads: ダウンロード
97 field_downloads: ダウンロード
96 field_author: 起票者
98 field_author: 起票者
97 field_created_on: 作成日
99 field_created_on: 作成日
98 field_updated_on: 更新日
100 field_updated_on: 更新日
99 field_field_format: 書式
101 field_field_format: 書式
100 field_is_for_all: 全プロジェクト向け
102 field_is_for_all: 全プロジェクト向け
101 field_possible_values: 選択肢
103 field_possible_values: 選択肢
102 field_regexp: 正規表現
104 field_regexp: 正規表現
103 field_min_length: 最小値
105 field_min_length: 最小値
104 field_max_length: 最大値
106 field_max_length: 最大値
105 field_value:
107 field_value:
106 field_category: カテゴリ
108 field_category: カテゴリ
107 field_title: タイトル
109 field_title: タイトル
108 field_project: プロジェクト
110 field_project: プロジェクト
109 field_issue: 問題
111 field_issue: 問題
110 field_status: ステータス
112 field_status: ステータス
111 field_notes: 注記
113 field_notes: 注記
112 field_is_closed: 終了した問題
114 field_is_closed: 終了した問題
113 field_is_default: デフォルトのステータス
115 field_is_default: デフォルトのステータス
114 field_tracker: トラッカー
116 field_tracker: トラッカー
115 field_subject: 題名
117 field_subject: 題名
116 field_due_date: 期限日
118 field_due_date: 期限日
117 field_assigned_to: 担当者
119 field_assigned_to: 担当者
118 field_priority: 優先度
120 field_priority: 優先度
119 field_fixed_version: 修正されたバージョン
121 field_fixed_version: 修正されたバージョン
120 field_user: ユーザ
122 field_user: ユーザ
121 field_role: 役割
123 field_role: 役割
122 field_homepage: ホームページ
124 field_homepage: ホームページ
123 field_is_public: 公開
125 field_is_public: 公開
124 field_parent: 親プロジェクト名
126 field_parent: 親プロジェクト名
125 field_is_in_chlog: 変更記録に表示されている問題
127 field_is_in_chlog: 変更記録に表示されている問題
126 field_is_in_roadmap: ロードマップに表示されている問題
128 field_is_in_roadmap: ロードマップに表示されている問題
127 field_login: ログイン
129 field_login: ログイン
128 field_mail_notification: メール通知
130 field_mail_notification: メール通知
129 field_admin: 管理者
131 field_admin: 管理者
130 field_last_login_on: 最終接続日
132 field_last_login_on: 最終接続日
131 field_language: 言語
133 field_language: 言語
132 field_effective_date: 日付
134 field_effective_date: 日付
133 field_password: パスワード
135 field_password: パスワード
134 field_new_password: 新しいパスワード
136 field_new_password: 新しいパスワード
135 field_password_confirmation: パスワードの確認
137 field_password_confirmation: パスワードの確認
136 field_version: バージョン
138 field_version: バージョン
137 field_type: タイプ
139 field_type: タイプ
138 field_host: ホスト
140 field_host: ホスト
139 field_port: ポート
141 field_port: ポート
140 field_account: アカウント
142 field_account: アカウント
141 field_base_dn: Base DN
143 field_base_dn: Base DN
142 field_attr_login: ログイン名属性
144 field_attr_login: ログイン名属性
143 field_attr_firstname: 名前属性
145 field_attr_firstname: 名前属性
144 field_attr_lastname: 苗字属性
146 field_attr_lastname: 苗字属性
145 field_attr_mail: メール属性
147 field_attr_mail: メール属性
146 field_onthefly: あわせてユーザを作成
148 field_onthefly: あわせてユーザを作成
147 field_start_date: 開始日
149 field_start_date: 開始日
148 field_done_ratio: 進捗 %%
150 field_done_ratio: 進捗 %%
149 field_auth_source: 認証モード
151 field_auth_source: 認証モード
150 field_hide_mail: メールアドレスを隠す
152 field_hide_mail: メールアドレスを隠す
151 field_comments: コメント
153 field_comments: コメント
152 field_url: URL
154 field_url: URL
153 field_start_page: メインページ
155 field_start_page: メインページ
154 field_subproject: サブプロジェクト
156 field_subproject: サブプロジェクト
155 field_hours: 時間
157 field_hours: 時間
156 field_activity: 活動
158 field_activity: 活動
157 field_spent_on: 日付
159 field_spent_on: 日付
158 field_identifier: 識別子
160 field_identifier: 識別子
159 field_is_filter: フィルタとして使う
161 field_is_filter: フィルタとして使う
160 field_issue_to_id: 関連する問題
162 field_issue_to_id: 関連する問題
161 field_delay: 遅延
163 field_delay: 遅延
162 field_assignable: 問題はこのロールに割り当てることができます
164 field_assignable: 問題はこのロールに割り当てることができます
163 field_redirect_existing_links: 既存のリンクをリダイレクトする
165 field_redirect_existing_links: 既存のリンクをリダイレクトする
164 field_estimated_hours: 予定工数
166 field_estimated_hours: 予定工数
165 field_default_value: デフォルトのステータス
167 field_default_value: デフォルトのステータス
166
168
167 setting_app_title: アプリケーションのタイトル
169 setting_app_title: アプリケーションのタイトル
168 setting_app_subtitle: アプリケーションのサブタイトル
170 setting_app_subtitle: アプリケーションのサブタイトル
169 setting_welcome_text: ウェルカムメッセージ
171 setting_welcome_text: ウェルカムメッセージ
170 setting_default_language: 既定の言語
172 setting_default_language: 既定の言語
171 setting_login_required: 認証が必要
173 setting_login_required: 認証が必要
172 setting_self_registration: ユーザは自分で登録できる
174 setting_self_registration: ユーザは自分で登録できる
173 setting_attachment_max_size: 添付の最大サイズ
175 setting_attachment_max_size: 添付の最大サイズ
174 setting_issues_export_limit: 出力する問題数の上限
176 setting_issues_export_limit: 出力する問題数の上限
175 setting_mail_from: 送信元メールアドレス
177 setting_mail_from: 送信元メールアドレス
176 setting_host_name: ホスト名
178 setting_host_name: ホスト名
177 setting_text_formatting: テキストの書式
179 setting_text_formatting: テキストの書式
178 setting_wiki_compression: Wiki履歴を圧縮する
180 setting_wiki_compression: Wiki履歴を圧縮する
179 setting_feeds_limit: フィード内容の上限
181 setting_feeds_limit: フィード内容の上限
180 setting_autofetch_changesets: コミットを自動取得する
182 setting_autofetch_changesets: コミットを自動取得する
181 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
183 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
182 setting_commit_ref_keywords: 参照用キーワード
184 setting_commit_ref_keywords: 参照用キーワード
183 setting_commit_fix_keywords: 修正用キーワード
185 setting_commit_fix_keywords: 修正用キーワード
184 setting_autologin: 自動ログイン
186 setting_autologin: 自動ログイン
185 setting_date_format: 日付の形式
187 setting_date_format: 日付の形式
186 setting_cross_project_issue_relations: 異なるプロジェクトの問題間で関係の設定を許可
188 setting_cross_project_issue_relations: 異なるプロジェクトの問題間で関係の設定を許可
187
189
188 label_user: ユーザ
190 label_user: ユーザ
189 label_user_plural: ユーザ
191 label_user_plural: ユーザ
190 label_user_new: 新しいユーザ
192 label_user_new: 新しいユーザ
191 label_project: プロジェクト
193 label_project: プロジェクト
192 label_project_new: 新しいプロジェクト
194 label_project_new: 新しいプロジェクト
193 label_project_plural: プロジェクト
195 label_project_plural: プロジェクト
194 label_project_all: 全プロジェクト
196 label_project_all: 全プロジェクト
195 label_project_latest: 最近のプロジェクト
197 label_project_latest: 最近のプロジェクト
196 label_issue: 問題
198 label_issue: 問題
197 label_issue_new: 新しい問題
199 label_issue_new: 新しい問題
198 label_issue_plural: 問題
200 label_issue_plural: 問題
199 label_issue_view_all: 問題を全て見る
201 label_issue_view_all: 問題を全て見る
200 label_document: 文書
202 label_document: 文書
201 label_document_new: 新しい文書
203 label_document_new: 新しい文書
202 label_document_plural: 文書
204 label_document_plural: 文書
203 label_role: ロール
205 label_role: ロール
204 label_role_plural: ロール
206 label_role_plural: ロール
205 label_role_new: 新しいロール
207 label_role_new: 新しいロール
206 label_role_and_permissions: ロールと権限
208 label_role_and_permissions: ロールと権限
207 label_member: メンバー
209 label_member: メンバー
208 label_member_new: 新しいメンバー
210 label_member_new: 新しいメンバー
209 label_member_plural: メンバー
211 label_member_plural: メンバー
210 label_tracker: トラッカー
212 label_tracker: トラッカー
211 label_tracker_plural: トラッカー
213 label_tracker_plural: トラッカー
212 label_tracker_new: 新しいトラッカーを作成
214 label_tracker_new: 新しいトラッカーを作成
213 label_workflow: ワークフロー
215 label_workflow: ワークフロー
214 label_issue_status: 問題のステータス
216 label_issue_status: 問題のステータス
215 label_issue_status_plural: 問題のステータス
217 label_issue_status_plural: 問題のステータス
216 label_issue_status_new: 新しいステータス
218 label_issue_status_new: 新しいステータス
217 label_issue_category: 問題のカテゴリ
219 label_issue_category: 問題のカテゴリ
218 label_issue_category_plural: 問題のカテゴリ
220 label_issue_category_plural: 問題のカテゴリ
219 label_issue_category_new: 新しいカテゴリ
221 label_issue_category_new: 新しいカテゴリ
220 label_custom_field: カスタムフィールド
222 label_custom_field: カスタムフィールド
221 label_custom_field_plural: カスタムフィールド
223 label_custom_field_plural: カスタムフィールド
222 label_custom_field_new: 新しいカスタムフィールドを作成
224 label_custom_field_new: 新しいカスタムフィールドを作成
223 label_enumerations: 列挙項目
225 label_enumerations: 列挙項目
224 label_enumeration_new: 新しい値
226 label_enumeration_new: 新しい値
225 label_information: 情報
227 label_information: 情報
226 label_information_plural: 情報
228 label_information_plural: 情報
227 label_please_login: ログインしてください
229 label_please_login: ログインしてください
228 label_register: 登録する
230 label_register: 登録する
229 label_password_lost: パスワードの再発行
231 label_password_lost: パスワードの再発行
230 label_home: ホーム
232 label_home: ホーム
231 label_my_page: マイページ
233 label_my_page: マイページ
232 label_my_account: マイアカウント
234 label_my_account: マイアカウント
233 label_my_projects: マイプロジェクト
235 label_my_projects: マイプロジェクト
234 label_administration: 管理
236 label_administration: 管理
235 label_login: ログイン
237 label_login: ログイン
236 label_logout: ログアウト
238 label_logout: ログアウト
237 label_help: ヘルプ
239 label_help: ヘルプ
238 label_reported_issues: 報告した問題
240 label_reported_issues: 報告した問題
239 label_assigned_to_me_issues: 担当している問題
241 label_assigned_to_me_issues: 担当している問題
240 label_last_login: 最近の接続
242 label_last_login: 最近の接続
241 label_last_updates: 最近の更新1件
243 label_last_updates: 最近の更新1件
242 label_last_updates_plural: 最近の更新%d件
244 label_last_updates_plural: 最近の更新%d件
243 label_registered_on: 登録日
245 label_registered_on: 登録日
244 label_activity: 活動
246 label_activity: 活動
245 label_new: 新しく作成
247 label_new: 新しく作成
246 label_logged_as: ログイン中:
248 label_logged_as: ログイン中:
247 label_environment: 環境
249 label_environment: 環境
248 label_authentication: 認証
250 label_authentication: 認証
249 label_auth_source: 認証モード
251 label_auth_source: 認証モード
250 label_auth_source_new: 新しい認証モード
252 label_auth_source_new: 新しい認証モード
251 label_auth_source_plural: 認証モード
253 label_auth_source_plural: 認証モード
252 label_subproject_plural: サブプロジェクト
254 label_subproject_plural: サブプロジェクト
253 label_min_max_length: 最小値 - 最大値の長さ
255 label_min_max_length: 最小値 - 最大値の長さ
254 label_list: リストから選択
256 label_list: リストから選択
255 label_date: 日付
257 label_date: 日付
256 label_integer: 整数
258 label_integer: 整数
257 label_boolean: 真偽値
259 label_boolean: 真偽値
258 label_string: テキスト
260 label_string: テキスト
259 label_text: 長いテキスト
261 label_text: 長いテキスト
260 label_attribute: 属性
262 label_attribute: 属性
261 label_attribute_plural: 属性
263 label_attribute_plural: 属性
262 label_download: %d ダウンロード
264 label_download: %d ダウンロード
263 label_download_plural: %d ダウンロード
265 label_download_plural: %d ダウンロード
264 label_no_data: 表示するデータがありません
266 label_no_data: 表示するデータがありません
265 label_change_status: ステータスの変更
267 label_change_status: ステータスの変更
266 label_history: 履歴
268 label_history: 履歴
267 label_attachment: ファイル
269 label_attachment: ファイル
268 label_attachment_new: 新しいファイル
270 label_attachment_new: 新しいファイル
269 label_attachment_delete: ファイルを削除
271 label_attachment_delete: ファイルを削除
270 label_attachment_plural: ファイル
272 label_attachment_plural: ファイル
271 label_report: レポート
273 label_report: レポート
272 label_report_plural: レポート
274 label_report_plural: レポート
273 label_news: ニュース
275 label_news: ニュース
274 label_news_new: ニュースを追加
276 label_news_new: ニュースを追加
275 label_news_plural: ニュース
277 label_news_plural: ニュース
276 label_news_latest: 最新ニュース
278 label_news_latest: 最新ニュース
277 label_news_view_all: 全てのニュースを見る
279 label_news_view_all: 全てのニュースを見る
278 label_change_log: 変更記録
280 label_change_log: 変更記録
279 label_settings: 設定
281 label_settings: 設定
280 label_overview: 概要
282 label_overview: 概要
281 label_version: バージョン
283 label_version: バージョン
282 label_version_new: 新しいバージョン
284 label_version_new: 新しいバージョン
283 label_version_plural: バージョン
285 label_version_plural: バージョン
284 label_confirmation: 確認
286 label_confirmation: 確認
285 label_export_to: 他の形式に出力
287 label_export_to: 他の形式に出力
286 label_read: 読む...
288 label_read: 読む...
287 label_public_projects: 公開プロジェクト
289 label_public_projects: 公開プロジェクト
288 label_open_issues: 未完了
290 label_open_issues: 未完了
289 label_open_issues_plural: 未完了
291 label_open_issues_plural: 未完了
290 label_closed_issues: 終了
292 label_closed_issues: 終了
291 label_closed_issues_plural: 終了
293 label_closed_issues_plural: 終了
292 label_total: 合計
294 label_total: 合計
293 label_permissions: 権限
295 label_permissions: 権限
294 label_current_status: 現在のステータス
296 label_current_status: 現在のステータス
295 label_new_statuses_allowed: ステータスの移行先
297 label_new_statuses_allowed: ステータスの移行先
296 label_all: 全て
298 label_all: 全て
297 label_none: なし
299 label_none: なし
298 label_next:
300 label_next:
299 label_previous:
301 label_previous:
300 label_used_by: 使用中
302 label_used_by: 使用中
301 label_details: 詳細
303 label_details: 詳細
302 label_add_note: 注記を追加
304 label_add_note: 注記を追加
303 label_per_page: ページ毎
305 label_per_page: ページ毎
304 label_calendar: カレンダー
306 label_calendar: カレンダー
305 label_months_from: ヶ月 from
307 label_months_from: ヶ月 from
306 label_gantt: ガントチャート
308 label_gantt: ガントチャート
307 label_internal: Internal
309 label_internal: Internal
308 label_last_changes: 最新の変更%d件
310 label_last_changes: 最新の変更%d件
309 label_change_view_all: 全ての変更を見る
311 label_change_view_all: 全ての変更を見る
310 label_personalize_page: このページをパーソナライズする
312 label_personalize_page: このページをパーソナライズする
311 label_comment: コメント
313 label_comment: コメント
312 label_comment_plural: コメント
314 label_comment_plural: コメント
313 label_comment_add: コメント追加
315 label_comment_add: コメント追加
314 label_comment_added: 追加されたコメント
316 label_comment_added: 追加されたコメント
315 label_comment_delete: コメント削除
317 label_comment_delete: コメント削除
316 label_query: カスタムクエリ
318 label_query: カスタムクエリ
317 label_query_plural: カスタムクエリ
319 label_query_plural: カスタムクエリ
318 label_query_new: 新しいクエリ
320 label_query_new: 新しいクエリ
319 label_filter_add: フィルタ追加
321 label_filter_add: フィルタ追加
320 label_filter_plural: フィルタ
322 label_filter_plural: フィルタ
321 label_equals: 等しい
323 label_equals: 等しい
322 label_not_equals: 等しくない
324 label_not_equals: 等しくない
323 label_in_less_than: 残日数がこれより多い
325 label_in_less_than: 残日数がこれより多い
324 label_in_more_than: 残日数がこれより少ない
326 label_in_more_than: 残日数がこれより少ない
325 label_in: 残日数
327 label_in: 残日数
326 label_today: 今日
328 label_today: 今日
327 label_this_week: this week
329 label_this_week: this week
328 label_less_than_ago: 経過日数がこれより少ない
330 label_less_than_ago: 経過日数がこれより少ない
329 label_more_than_ago: 経過日数がこれより多い
331 label_more_than_ago: 経過日数がこれより多い
330 label_ago: 日前
332 label_ago: 日前
331 label_contains: 含む
333 label_contains: 含む
332 label_not_contains: 含まない
334 label_not_contains: 含まない
333 label_day_plural:
335 label_day_plural:
334 label_repository: リポジトリ
336 label_repository: リポジトリ
335 label_browse: ブラウズ
337 label_browse: ブラウズ
336 label_modification: %d点の変更
338 label_modification: %d点の変更
337 label_modification_plural: %d点の変更
339 label_modification_plural: %d点の変更
338 label_revision: リビジョン
340 label_revision: リビジョン
339 label_revision_plural: リビジョン
341 label_revision_plural: リビジョン
340 label_added: 追加
342 label_added: 追加
341 label_modified: 変更
343 label_modified: 変更
342 label_deleted: 削除
344 label_deleted: 削除
343 label_latest_revision: 最新リビジョン
345 label_latest_revision: 最新リビジョン
344 label_latest_revision_plural: 最新リビジョン
346 label_latest_revision_plural: 最新リビジョン
345 label_view_revisions: リビジョンを見る
347 label_view_revisions: リビジョンを見る
346 label_max_size: 最大サイズ
348 label_max_size: 最大サイズ
347 label_on: 合計
349 label_on: 合計
348 label_sort_highest: 一番上へ
350 label_sort_highest: 一番上へ
349 label_sort_higher: 上へ
351 label_sort_higher: 上へ
350 label_sort_lower: 下へ
352 label_sort_lower: 下へ
351 label_sort_lowest: 一番下へ
353 label_sort_lowest: 一番下へ
352 label_roadmap: ロードマップ
354 label_roadmap: ロードマップ
353 label_roadmap_due_in: 期日まで
355 label_roadmap_due_in: 期日まで
354 label_roadmap_overdue: %s late
356 label_roadmap_overdue: %s late
355 label_roadmap_no_issues: このバージョンに向けての問題はありません
357 label_roadmap_no_issues: このバージョンに向けての問題はありません
356 label_search: 検索
358 label_search: 検索
357 label_result_plural: 結果
359 label_result_plural: 結果
358 label_all_words: すべての単語
360 label_all_words: すべての単語
359 label_wiki: Wiki
361 label_wiki: Wiki
360 label_wiki_edit: Wiki編集
362 label_wiki_edit: Wiki編集
361 label_wiki_edit_plural: Wiki編集
363 label_wiki_edit_plural: Wiki編集
362 label_wiki_page: Wiki page
364 label_wiki_page: Wiki page
363 label_wiki_page_plural: Wikiページ
365 label_wiki_page_plural: Wikiページ
364 label_index_by_title: 索引
366 label_index_by_title: 索引
365 label_index_by_date: Index by date
367 label_index_by_date: Index by date
366 label_current_version: 最新版
368 label_current_version: 最新版
367 label_preview: プレビュー
369 label_preview: プレビュー
368 label_feed_plural: フィード
370 label_feed_plural: フィード
369 label_changes_details: 全変更の詳細
371 label_changes_details: 全変更の詳細
370 label_issue_tracking: 問題トラッキング
372 label_issue_tracking: 問題トラッキング
371 label_spent_time: 経過時間
373 label_spent_time: 経過時間
372 label_f_hour: %.2f 時間
374 label_f_hour: %.2f 時間
373 label_f_hour_plural: %.2f 時間
375 label_f_hour_plural: %.2f 時間
374 label_time_tracking: 時間トラッキング
376 label_time_tracking: 時間トラッキング
375 label_change_plural: 変更
377 label_change_plural: 変更
376 label_statistics: 統計
378 label_statistics: 統計
377 label_commits_per_month: 月別のコミット
379 label_commits_per_month: 月別のコミット
378 label_commits_per_author: 起票者別のコミット
380 label_commits_per_author: 起票者別のコミット
379 label_view_diff: 差分を見る
381 label_view_diff: 差分を見る
380 label_diff_inline: インライン
382 label_diff_inline: インライン
381 label_diff_side_by_side: 横に並べる
383 label_diff_side_by_side: 横に並べる
382 label_options: オプション
384 label_options: オプション
383 label_copy_workflow_from: ワークフローをここからコピー
385 label_copy_workflow_from: ワークフローをここからコピー
384 label_permissions_report: 権限レポート
386 label_permissions_report: 権限レポート
385 label_watched_issues: ウォッチ中の問題
387 label_watched_issues: ウォッチ中の問題
386 label_related_issues: 関連する問題
388 label_related_issues: 関連する問題
387 label_applied_status: 適用されたステータス
389 label_applied_status: 適用されたステータス
388 label_loading: ロード中...
390 label_loading: ロード中...
389 label_relation_new: 新しい関連
391 label_relation_new: 新しい関連
390 label_relation_delete: 関連の削除
392 label_relation_delete: 関連の削除
391 label_relates_to: 関係している
393 label_relates_to: 関係している
392 label_duplicates: 重複している
394 label_duplicates: 重複している
393 label_blocks: ブロックしている
395 label_blocks: ブロックしている
394 label_blocked_by: ブロックされている
396 label_blocked_by: ブロックされている
395 label_precedes: 先行する
397 label_precedes: 先行する
396 label_follows: 後続する
398 label_follows: 後続する
397 label_end_to_start: end to start
399 label_end_to_start: end to start
398 label_end_to_end: end to end
400 label_end_to_end: end to end
399 label_start_to_start: start to start
401 label_start_to_start: start to start
400 label_start_to_end: start to end
402 label_start_to_end: start to end
401 label_stay_logged_in: ログインを維持
403 label_stay_logged_in: ログインを維持
402 label_disabled: 無効
404 label_disabled: 無効
403 label_show_completed_versions: 完了したバージョンを表示
405 label_show_completed_versions: 完了したバージョンを表示
404 label_me: 自分
406 label_me: 自分
405 label_board: フォーラム
407 label_board: フォーラム
406 label_board_new: 新しいフォーラム
408 label_board_new: 新しいフォーラム
407 label_board_plural: フォーラム
409 label_board_plural: フォーラム
408 label_topic_plural: トピック
410 label_topic_plural: トピック
409 label_message_plural: メッセージ
411 label_message_plural: メッセージ
410 label_message_last: 最新のメッセージ
412 label_message_last: 最新のメッセージ
411 label_message_new: 新しいメッセージ
413 label_message_new: 新しいメッセージ
412 label_reply_plural: 返答
414 label_reply_plural: 返答
413 label_send_information: アカウント情報をユーザに送信
415 label_send_information: アカウント情報をユーザに送信
414 label_year:
416 label_year:
415 label_month:
417 label_month:
416 label_week:
418 label_week:
417 label_date_from: から
419 label_date_from: から
418 label_date_to: まで
420 label_date_to: まで
419 label_language_based: 既定の言語の設定に従う
421 label_language_based: 既定の言語の設定に従う
420 label_sort_by: %sで並び替え
422 label_sort_by: %sで並び替え
421 label_send_test_email: テストメールを送信
423 label_send_test_email: テストメールを送信
422 label_feeds_access_key_created_on: RSSアクセスキーは%s前に作成されました
424 label_feeds_access_key_created_on: RSSアクセスキーは%s前に作成されました
423 label_module_plural: モジュール
425 label_module_plural: モジュール
424 label_added_time_by: %sが%s前に追加しました
426 label_added_time_by: %sが%s前に追加しました
425 label_updated_time: %s前に更新されました
427 label_updated_time: %s前に更新されました
426 label_jump_to_a_project: プロジェクトへ移動...
428 label_jump_to_a_project: プロジェクトへ移動...
427
429
428 button_login: ログイン
430 button_login: ログイン
429 button_submit: 変更
431 button_submit: 変更
430 button_save: 保存
432 button_save: 保存
431 button_check_all: チェックを全部つける
433 button_check_all: チェックを全部つける
432 button_uncheck_all: チェックを全部外す
434 button_uncheck_all: チェックを全部外す
433 button_delete: 削除
435 button_delete: 削除
434 button_create: 作成
436 button_create: 作成
435 button_test: テスト
437 button_test: テスト
436 button_edit: 編集
438 button_edit: 編集
437 button_add: 追加
439 button_add: 追加
438 button_change: 変更
440 button_change: 変更
439 button_apply: 適用
441 button_apply: 適用
440 button_clear: クリア
442 button_clear: クリア
441 button_lock: ロック
443 button_lock: ロック
442 button_unlock: アンロック
444 button_unlock: アンロック
443 button_download: ダウンロード
445 button_download: ダウンロード
444 button_list: 一覧
446 button_list: 一覧
445 button_view: 見る
447 button_view: 見る
446 button_move: 移動
448 button_move: 移動
447 button_back: 戻る
449 button_back: 戻る
448 button_cancel: キャンセル
450 button_cancel: キャンセル
449 button_activate: 有効にする
451 button_activate: 有効にする
450 button_sort: ソート
452 button_sort: ソート
451 button_log_time: 時間を記録
453 button_log_time: 時間を記録
452 button_rollback: このバージョンにロールバック
454 button_rollback: このバージョンにロールバック
453 button_watch: ウォッチ
455 button_watch: ウォッチ
454 button_unwatch: ウォッチをやめる
456 button_unwatch: ウォッチをやめる
455 button_reply: 返答
457 button_reply: 返答
456 button_archive: 書庫に保存
458 button_archive: 書庫に保存
457 button_unarchive: 書庫から戻す
459 button_unarchive: 書庫から戻す
458 button_reset: リセット
460 button_reset: リセット
459 button_rename: 名前変更
461 button_rename: 名前変更
460
462
461 status_active: 有効
463 status_active: 有効
462 status_registered: 登録
464 status_registered: 登録
463 status_locked: ロック
465 status_locked: ロック
464
466
465 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
467 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
466 text_regexp_info: 例) ^[A-Z0-9]+$
468 text_regexp_info: 例) ^[A-Z0-9]+$
467 text_min_max_length_info: 0だと無制限になります
469 text_min_max_length_info: 0だと無制限になります
468 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
470 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
469 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
471 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
470 text_are_you_sure: よろしいですか?
472 text_are_you_sure: よろしいですか?
471 text_journal_changed: %sから%sに変更
473 text_journal_changed: %sから%sに変更
472 text_journal_set_to: %sにセット
474 text_journal_set_to: %sにセット
473 text_journal_deleted: 削除
475 text_journal_deleted: 削除
474 text_tip_task_begin_day: この日に開始するタスク
476 text_tip_task_begin_day: この日に開始するタスク
475 text_tip_task_end_day: この日に終了するタスク
477 text_tip_task_end_day: この日に終了するタスク
476 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
478 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
477 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
479 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
478 text_caracters_maximum: 最大 %d 文字です。
480 text_caracters_maximum: 最大 %d 文字です。
479 text_length_between: 長さは %d から %d 文字までです。
481 text_length_between: 長さは %d から %d 文字までです。
480 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
482 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
481 text_unallowed_characters: 使えない文字です
483 text_unallowed_characters: 使えない文字です
482 text_comma_separated: (カンマで区切った)複数の値が使えます
484 text_comma_separated: (カンマで区切った)複数の値が使えます
483 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
485 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
484 text_issue_added: 問題 %s が報告されました。
486 text_issue_added: 問題 %s が報告されました。
485 text_issue_updated: 問題 %s が更新されました。
487 text_issue_updated: 問題 %s が更新されました。
486 text_wiki_destroy_confirmation: 本当にこのwikiとその内容の全てを削除しますか?
488 text_wiki_destroy_confirmation: 本当にこのwikiとその内容の全てを削除しますか?
487 text_issue_category_destroy_question: このカテゴリに割り当て済みの問題(%d)があります。何をしようとしていますか?
489 text_issue_category_destroy_question: このカテゴリに割り当て済みの問題(%d)があります。何をしようとしていますか?
488 text_issue_category_destroy_assignments: カテゴリの割り当てを削除する
490 text_issue_category_destroy_assignments: カテゴリの割り当てを削除する
489 text_issue_category_reassign_to: 問題をこのカテゴリに再割り当てする
491 text_issue_category_reassign_to: 問題をこのカテゴリに再割り当てする
490
492
491 default_role_manager: 管理者
493 default_role_manager: 管理者
492 default_role_developper: 開発者
494 default_role_developper: 開発者
493 default_role_reporter: 報告者
495 default_role_reporter: 報告者
494 default_tracker_bug: バグ
496 default_tracker_bug: バグ
495 default_tracker_feature: 機能
497 default_tracker_feature: 機能
496 default_tracker_support: サポート
498 default_tracker_support: サポート
497 default_issue_status_new: 新規
499 default_issue_status_new: 新規
498 default_issue_status_assigned: 担当
500 default_issue_status_assigned: 担当
499 default_issue_status_resolved: 解決
501 default_issue_status_resolved: 解決
500 default_issue_status_feedback: フィードバック
502 default_issue_status_feedback: フィードバック
501 default_issue_status_closed: 終了
503 default_issue_status_closed: 終了
502 default_issue_status_rejected: 却下
504 default_issue_status_rejected: 却下
503 default_doc_category_user: ユーザ文書
505 default_doc_category_user: ユーザ文書
504 default_doc_category_tech: 技術文書
506 default_doc_category_tech: 技術文書
505 default_priority_low: 低め
507 default_priority_low: 低め
506 default_priority_normal: 通常
508 default_priority_normal: 通常
507 default_priority_high: 高め
509 default_priority_high: 高め
508 default_priority_urgent: 急いで
510 default_priority_urgent: 急いで
509 default_priority_immediate: 今すぐ
511 default_priority_immediate: 今すぐ
510 default_activity_design: デザイン作業
512 default_activity_design: デザイン作業
511 default_activity_development: 開発作業
513 default_activity_development: 開発作業
512
514
513 enumeration_issue_priorities: 問題の優先度
515 enumeration_issue_priorities: 問題の優先度
514 enumeration_doc_categories: 文書カテゴリ
516 enumeration_doc_categories: 文書カテゴリ
515 enumeration_activities: 作業分類 (時間トラッキング)
517 enumeration_activities: 作業分類 (時間トラッキング)
516 label_file_plural: ファイル
518 label_file_plural: ファイル
517 label_changeset_plural: チェンジセット
519 label_changeset_plural: チェンジセット
518 field_column_names: 項目
520 field_column_names: 項目
519 label_default_columns: 既定の項目
521 label_default_columns: 既定の項目
520 setting_issue_list_default_columns: 問題の一覧で表示する項目
522 setting_issue_list_default_columns: 問題の一覧で表示する項目
521 setting_repositories_encodings: リポジトリのエンコーディング
523 setting_repositories_encodings: リポジトリのエンコーディング
522 notice_no_issue_selected: "問題が選択されていません! 更新対象の問題を選択してください。"
524 notice_no_issue_selected: "問題が選択されていません! 更新対象の問題を選択してください。"
523 label_bulk_edit_selected_issues: 問題の一括編集
525 label_bulk_edit_selected_issues: 問題の一括編集
524 label_no_change_option: (変更無し)
526 label_no_change_option: (変更無し)
525 notice_failed_to_save_issues: "%d件の問題が保存できませんでした(%d件選択のうち) : %s."
527 notice_failed_to_save_issues: "%d件の問題が保存できませんでした(%d件選択のうち) : %s."
526 label_theme: テーマ
528 label_theme: テーマ
527 label_default: 既定
529 label_default: 既定
528 label_search_titles_only: タイトルのみ
530 label_search_titles_only: タイトルのみ
529 label_nobody: nobody
531 label_nobody: nobody
530 button_change_password: パスワード変更
532 button_change_password: パスワード変更
531 text_user_mail_option: "未選択のプロジェクトでは、ウォッチまたは関係している問題(例: 自分が報告者もしくは担当者である問題)のみメールが送信されます。"
533 text_user_mail_option: "未選択のプロジェクトでは、ウォッチまたは関係している問題(例: 自分が報告者もしくは担当者である問題)のみメールが送信されます。"
532 label_user_mail_option_selected: "選択したプロジェクト..."
534 label_user_mail_option_selected: "選択したプロジェクト..."
533 label_user_mail_option_all: "参加しているプロジェクトの全ての問題"
535 label_user_mail_option_all: "参加しているプロジェクトの全ての問題"
534 label_user_mail_option_none: "ウォッチまたは関係している問題のみ"
536 label_user_mail_option_none: "ウォッチまたは関係している問題のみ"
535 setting_emails_footer: メールのフッタ
537 setting_emails_footer: メールのフッタ
536 label_float: 小数
538 label_float: 小数
537 button_copy: コピー
539 button_copy: コピー
538 mail_body_account_information_external: 「%s」アカウントを使ってRedmineにログインできます。
540 mail_body_account_information_external: 「%s」アカウントを使ってRedmineにログインできます。
539 mail_body_account_information: Redmineアカウント情報
541 mail_body_account_information: Redmineアカウント情報
540 setting_protocol: プロトコル
542 setting_protocol: プロトコル
541 label_user_mail_no_self_notified: 自分自身による変更の通知は不要です
543 label_user_mail_no_self_notified: 自分自身による変更の通知は不要です
542 setting_time_format: 時刻の形式
544 setting_time_format: 時刻の形式
543 label_registration_activation_by_email: メールでアカウントを有効化
545 label_registration_activation_by_email: メールでアカウントを有効化
544 mail_subject_account_activation_request: Redminアカウントの有効化要求
546 mail_subject_account_activation_request: Redminアカウントの有効化要求
545 mail_body_account_activation_request: 新しいユーザ(%s)が登録しています。このアカウントはあなたの承認待ちです:
547 mail_body_account_activation_request: 新しいユーザ(%s)が登録しています。このアカウントはあなたの承認待ちです:
546 label_registration_automatic_activation: 自動でアカウントを有効化
548 label_registration_automatic_activation: 自動でアカウントを有効化
547 label_registration_manual_activation: 手動でアカウントを有効化
549 label_registration_manual_activation: 手動でアカウントを有効化
548 notice_account_pending: アカウントは作成済みで、管理者の承認待ちです。
550 notice_account_pending: アカウントは作成済みで、管理者の承認待ちです。
549 field_time_zone: タイムゾーン
551 field_time_zone: タイムゾーン
550 text_caracters_minimum: 最低%d文字の長さが必要です
552 text_caracters_minimum: 最低%d文字の長さが必要です
551 setting_bcc_recipients: ブラインドカーボンコピーで受信(bcc)
553 setting_bcc_recipients: ブラインドカーボンコピーで受信(bcc)
552 button_annotate: 注釈
554 button_annotate: 注釈
553 label_issues_by: %s別の問題
555 label_issues_by: %s別の問題
554 field_searchable: Searchable
556 field_searchable: Searchable
555 label_display_per_page: 'Per page: %s'
557 label_display_per_page: 'Per page: %s'
556 setting_per_page_options: Objects per page options
558 setting_per_page_options: Objects per page options
557 label_age: Age
559 label_age: Age
558 notice_default_data_loaded: Default configuration successfully loaded.
560 notice_default_data_loaded: Default configuration successfully loaded.
559 text_load_default_configuration: Load the default configuration
561 text_load_default_configuration: Load the default configuration
560 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."
561 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"
562 button_update: Update
564 button_update: Update
563 label_change_properties: Change properties
565 label_change_properties: Change properties
564 label_general: General
566 label_general: General
565 label_repository_plural: Repositories
567 label_repository_plural: Repositories
566 label_associated_revisions: Associated revisions
568 label_associated_revisions: Associated revisions
@@ -1,565 +1,567
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_scm_error: 소스 저장소에 해당 내용이 존재하지 않습니다.
72 notice_not_authorized: 이 페이지에 접근할 권한이 없습니다.
71 notice_not_authorized: 이 페이지에 접근할 권한이 없습니다.
73 notice_email_sent: %s 님에게 Email이 발송되었습니다.
72 notice_email_sent: %s 님에게 Email이 발송되었습니다.
74 notice_email_error: 메일을 전송하는 과정에 오류가 발생했습니다. (%s)
73 notice_email_error: 메일을 전송하는 과정에 오류가 발생했습니다. (%s)
75 notice_feeds_access_key_reseted: RSS에 접근가능한 열쇠(key)가 생성되었습니다.
74 notice_feeds_access_key_reseted: RSS에 접근가능한 열쇠(key)가 생성되었습니다.
76 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."
77 notice_no_issue_selected: "티켓이 선택되지 않았습니다. 수정하기 원하는 티켓을 선택하세요"
76 notice_no_issue_selected: "티켓이 선택되지 않았습니다. 수정하기 원하는 티켓을 선택하세요"
78
77
78 error_scm_not_found: 소스 저장소에 해당 내용이 존재하지 않습니다.
79 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
80
79 mail_subject_lost_password: 당신의 비밀번호
81 mail_subject_lost_password: 당신의 비밀번호
80 mail_body_lost_password: '비밀번호를 변경하기 위해서 링크를 이용하세요'
82 mail_body_lost_password: '비밀번호를 변경하기 위해서 링크를 이용하세요'
81 mail_subject_register: 당신의 계정 활성화
83 mail_subject_register: 당신의 계정 활성화
82 mail_body_register: '계정을 활성화 하기 위해서 링크를 이용하세요 :'
84 mail_body_register: '계정을 활성화 하기 위해서 링크를 이용하세요 :'
83
85
84 gui_validation_error: 1 에러
86 gui_validation_error: 1 에러
85 gui_validation_error_plural: %d 에러
87 gui_validation_error_plural: %d 에러
86
88
87 field_name: 이름
89 field_name: 이름
88 field_description: 설명
90 field_description: 설명
89 field_summary: 요약
91 field_summary: 요약
90 field_is_required: 필수
92 field_is_required: 필수
91 field_firstname: 이름
93 field_firstname: 이름
92 field_lastname:
94 field_lastname:
93 field_mail: 메일
95 field_mail: 메일
94 field_filename: 파일
96 field_filename: 파일
95 field_filesize: 크기
97 field_filesize: 크기
96 field_downloads: 다운로드
98 field_downloads: 다운로드
97 field_author: 보고자
99 field_author: 보고자
98 field_created_on: 보고시간
100 field_created_on: 보고시간
99 field_updated_on: 변경시간
101 field_updated_on: 변경시간
100 field_field_format: 포맷
102 field_field_format: 포맷
101 field_is_for_all: 모든 프로젝트
103 field_is_for_all: 모든 프로젝트
102 field_possible_values: 가능한 값들
104 field_possible_values: 가능한 값들
103 field_regexp: 정규식
105 field_regexp: 정규식
104 field_min_length: 최소 길이
106 field_min_length: 최소 길이
105 field_max_length: 최대 길이
107 field_max_length: 최대 길이
106 field_value:
108 field_value:
107 field_category: 카테고리
109 field_category: 카테고리
108 field_title: 제목
110 field_title: 제목
109 field_project: 프로젝트
111 field_project: 프로젝트
110 field_issue: 티켓
112 field_issue: 티켓
111 field_status: 상태
113 field_status: 상태
112 field_notes: 노트
114 field_notes: 노트
113 field_is_closed: 완료된 티켓
115 field_is_closed: 완료된 티켓
114 field_is_default: 기본값
116 field_is_default: 기본값
115 field_tracker: 구분
117 field_tracker: 구분
116 field_subject: 제목
118 field_subject: 제목
117 field_due_date: 완료 기한
119 field_due_date: 완료 기한
118 field_assigned_to: 담당자
120 field_assigned_to: 담당자
119 field_priority: 우선순위
121 field_priority: 우선순위
120 field_fixed_version: 마일스톤
122 field_fixed_version: 마일스톤
121 field_user: 유저
123 field_user: 유저
122 field_role: 역할
124 field_role: 역할
123 field_homepage: 홈페이지
125 field_homepage: 홈페이지
124 field_is_public: 공개
126 field_is_public: 공개
125 field_parent: 상위 프로젝트
127 field_parent: 상위 프로젝트
126 field_is_in_chlog: 변경이력(changelog)에서 보여지는 티켓들
128 field_is_in_chlog: 변경이력(changelog)에서 보여지는 티켓들
127 field_is_in_roadmap: 로드맵에서 보여지는 티켓들
129 field_is_in_roadmap: 로드맵에서 보여지는 티켓들
128 field_login: 로그인
130 field_login: 로그인
129 field_mail_notification: 메일 알림
131 field_mail_notification: 메일 알림
130 field_admin: 관리자
132 field_admin: 관리자
131 field_last_login_on: 최종 접속
133 field_last_login_on: 최종 접속
132 field_language: 언어
134 field_language: 언어
133 field_effective_date: 일자
135 field_effective_date: 일자
134 field_password: 비밀번호
136 field_password: 비밀번호
135 field_new_password: 신규 비밀번호
137 field_new_password: 신규 비밀번호
136 field_password_confirmation: 비밀번호 확인
138 field_password_confirmation: 비밀번호 확인
137 field_version: 버전
139 field_version: 버전
138 field_type: 타입
140 field_type: 타입
139 field_host: 호스트
141 field_host: 호스트
140 field_port: 포트
142 field_port: 포트
141 field_account: 계정
143 field_account: 계정
142 field_base_dn: Base DN
144 field_base_dn: Base DN
143 field_attr_login: 로그인 속성
145 field_attr_login: 로그인 속성
144 field_attr_firstname: 이름 속성
146 field_attr_firstname: 이름 속성
145 field_attr_lastname: 성 속성
147 field_attr_lastname: 성 속성
146 field_attr_mail: 메일 속성
148 field_attr_mail: 메일 속성
147 field_onthefly: On-the-fly user creation
149 field_onthefly: On-the-fly user creation
148 field_start_date: 시작시간
150 field_start_date: 시작시간
149 field_done_ratio: 완료 %%
151 field_done_ratio: 완료 %%
150 field_auth_source: 인증 방법
152 field_auth_source: 인증 방법
151 field_hide_mail: 내 메일 주소 숨기기
153 field_hide_mail: 내 메일 주소 숨기기
152 field_comments: 코멘트
154 field_comments: 코멘트
153 field_url: URL
155 field_url: URL
154 field_start_page: 시작 페이지
156 field_start_page: 시작 페이지
155 field_subproject: 서브 프로젝트
157 field_subproject: 서브 프로젝트
156 field_hours: 시간
158 field_hours: 시간
157 field_activity: 작업종류
159 field_activity: 작업종류
158 field_spent_on: 작업시간
160 field_spent_on: 작업시간
159 field_identifier: 식별자
161 field_identifier: 식별자
160 field_is_filter: 필터로 사용됨
162 field_is_filter: 필터로 사용됨
161 field_issue_to_id: 연관된 티켓
163 field_issue_to_id: 연관된 티켓
162 field_delay: 지연
164 field_delay: 지연
163 field_assignable: 이 역할에 할당될수 있는 티켓
165 field_assignable: 이 역할에 할당될수 있는 티켓
164 field_redirect_existing_links: Redirect existing links
166 field_redirect_existing_links: Redirect existing links
165 field_estimated_hours: 추정시간
167 field_estimated_hours: 추정시간
166 field_column_names: 컬럼
168 field_column_names: 컬럼
167 field_default_value: 기본값
169 field_default_value: 기본값
168
170
169 setting_app_title: 레드마인 제목
171 setting_app_title: 레드마인 제목
170 setting_app_subtitle: 레드마인 부제목
172 setting_app_subtitle: 레드마인 부제목
171 setting_welcome_text: 환영 메시지
173 setting_welcome_text: 환영 메시지
172 setting_default_language: 기본 언어
174 setting_default_language: 기본 언어
173 setting_login_required: 인증이 필요함.
175 setting_login_required: 인증이 필요함.
174 setting_self_registration: Self-registration
176 setting_self_registration: Self-registration
175 setting_attachment_max_size: 최대 첨부파일 크기
177 setting_attachment_max_size: 최대 첨부파일 크기
176 setting_issues_export_limit: Issues export limit
178 setting_issues_export_limit: Issues export limit
177 setting_mail_from: Emission mail address
179 setting_mail_from: Emission mail address
178 setting_host_name: 호스트 이름
180 setting_host_name: 호스트 이름
179 setting_text_formatting: 텍스트 형식
181 setting_text_formatting: 텍스트 형식
180 setting_wiki_compression: 위키 기록(history) 압축
182 setting_wiki_compression: 위키 기록(history) 압축
181 setting_feeds_limit: Feed content limit
183 setting_feeds_limit: Feed content limit
182 setting_autofetch_changesets: Autofetch commits
184 setting_autofetch_changesets: Autofetch commits
183 setting_sys_api_enabled: Enable WS for repository management
185 setting_sys_api_enabled: Enable WS for repository management
184 setting_commit_ref_keywords: 티켓 참조에 사용할 키워드들
186 setting_commit_ref_keywords: 티켓 참조에 사용할 키워드들
185 setting_commit_fix_keywords: 티켓 해결에 사용할 키워드들
187 setting_commit_fix_keywords: 티켓 해결에 사용할 키워드들
186 setting_autologin: 자동 로그인
188 setting_autologin: 자동 로그인
187 setting_date_format: 날짜 형식
189 setting_date_format: 날짜 형식
188 setting_cross_project_issue_relations: 프로젝트 간에 이슈에 관련을 맺는 것을 허용
190 setting_cross_project_issue_relations: 프로젝트 간에 이슈에 관련을 맺는 것을 허용
189 setting_issue_list_default_columns: 티켓 목록에 보여줄 기본 컬럼들
191 setting_issue_list_default_columns: 티켓 목록에 보여줄 기본 컬럼들
190 setting_repositories_encodings: 저장소 인코딩
192 setting_repositories_encodings: 저장소 인코딩
191 setting_emails_footer: 메일 꼬리
193 setting_emails_footer: 메일 꼬리
192
194
193 label_user: 사용자
195 label_user: 사용자
194 label_user_plural: 사용자관리
196 label_user_plural: 사용자관리
195 label_user_new: 신규 유저
197 label_user_new: 신규 유저
196 label_project: 프로젝트
198 label_project: 프로젝트
197 label_project_new: 신규 프로젝트
199 label_project_new: 신규 프로젝트
198 label_project_plural: 프로젝트
200 label_project_plural: 프로젝트
199 label_project_all: 모든 프로젝트
201 label_project_all: 모든 프로젝트
200 label_project_latest: 최근 프로젝트
202 label_project_latest: 최근 프로젝트
201 label_issue: 티켓 보기
203 label_issue: 티켓 보기
202 label_issue_new: 새 티켓만들기
204 label_issue_new: 새 티켓만들기
203 label_issue_plural: 티켓 보기
205 label_issue_plural: 티켓 보기
204 label_issue_view_all: 모든 티켓 보기
206 label_issue_view_all: 모든 티켓 보기
205 label_document: 문서
207 label_document: 문서
206 label_document_new: 새로운 문서
208 label_document_new: 새로운 문서
207 label_document_plural: 문서
209 label_document_plural: 문서
208 label_role: 역할
210 label_role: 역할
209 label_role_plural: 역할
211 label_role_plural: 역할
210 label_role_new: 새로운 역할
212 label_role_new: 새로운 역할
211 label_role_and_permissions: 권한관리
213 label_role_and_permissions: 권한관리
212 label_member: 담당자
214 label_member: 담당자
213 label_member_new: 새로운 담당자
215 label_member_new: 새로운 담당자
214 label_member_plural: 담당자
216 label_member_plural: 담당자
215 label_tracker: 티켓 유형
217 label_tracker: 티켓 유형
216 label_tracker_plural: 티켓 유형
218 label_tracker_plural: 티켓 유형
217 label_tracker_new: 새로운 티켓 유형
219 label_tracker_new: 새로운 티켓 유형
218 label_workflow: 워크플로(Workflow)
220 label_workflow: 워크플로(Workflow)
219 label_issue_status: 티켓 상태
221 label_issue_status: 티켓 상태
220 label_issue_status_plural: 티켓 상태
222 label_issue_status_plural: 티켓 상태
221 label_issue_status_new: 새로운 티켓 상태
223 label_issue_status_new: 새로운 티켓 상태
222 label_issue_category: 카테고리
224 label_issue_category: 카테고리
223 label_issue_category_plural: 카테고리
225 label_issue_category_plural: 카테고리
224 label_issue_category_new: 새 카테고리
226 label_issue_category_new: 새 카테고리
225 label_custom_field: 사용자 정의 항목
227 label_custom_field: 사용자 정의 항목
226 label_custom_field_plural: 사용자 정의 항목
228 label_custom_field_plural: 사용자 정의 항목
227 label_custom_field_new: 새로운 사용자 정의 항목
229 label_custom_field_new: 새로운 사용자 정의 항목
228 label_enumerations: 코드값 설정
230 label_enumerations: 코드값 설정
229 label_enumeration_new: 새로운 코드값
231 label_enumeration_new: 새로운 코드값
230 label_information: 정보
232 label_information: 정보
231 label_information_plural: 정보
233 label_information_plural: 정보
232 label_please_login: 로그인하세요.
234 label_please_login: 로그인하세요.
233 label_register: 등록
235 label_register: 등록
234 label_password_lost: 비밀번호 찾기
236 label_password_lost: 비밀번호 찾기
235 label_home: 초기화면
237 label_home: 초기화면
236 label_my_page: 내페이지
238 label_my_page: 내페이지
237 label_my_account: 내계정
239 label_my_account: 내계정
238 label_my_projects: 나의 프로젝트
240 label_my_projects: 나의 프로젝트
239 label_administration: 관리자
241 label_administration: 관리자
240 label_login: 로그인
242 label_login: 로그인
241 label_logout: 로그아웃
243 label_logout: 로그아웃
242 label_help: 도움말
244 label_help: 도움말
243 label_reported_issues: 보고된 티켓
245 label_reported_issues: 보고된 티켓
244 label_assigned_to_me_issues: 나에게 할당된 티켓
246 label_assigned_to_me_issues: 나에게 할당된 티켓
245 label_last_login: 최종 접속
247 label_last_login: 최종 접속
246 label_last_updates: 최종 변경 내역
248 label_last_updates: 최종 변경 내역
247 label_last_updates_plural: 최종변경 %d
249 label_last_updates_plural: 최종변경 %d
248 label_registered_on: Registered on
250 label_registered_on: Registered on
249 label_activity: 진행중인 작업
251 label_activity: 진행중인 작업
250 label_new: 신규
252 label_new: 신규
251 label_logged_as:
253 label_logged_as:
252 label_environment: 환경
254 label_environment: 환경
253 label_authentication: 인증설정
255 label_authentication: 인증설정
254 label_auth_source: 인증 모드
256 label_auth_source: 인증 모드
255 label_auth_source_new: 신규 인증 모드
257 label_auth_source_new: 신규 인증 모드
256 label_auth_source_plural: 인증 모드
258 label_auth_source_plural: 인증 모드
257 label_subproject_plural: 서브 프로젝트
259 label_subproject_plural: 서브 프로젝트
258 label_min_max_length: 최소 - 최대 길이
260 label_min_max_length: 최소 - 최대 길이
259 label_list: 리스트
261 label_list: 리스트
260 label_date: 날짜
262 label_date: 날짜
261 label_integer: 정수
263 label_integer: 정수
262 label_float: 부동상수
264 label_float: 부동상수
263 label_boolean: 부울린
265 label_boolean: 부울린
264 label_string: 문자열
266 label_string: 문자열
265 label_text: 텍스트
267 label_text: 텍스트
266 label_attribute: 속성
268 label_attribute: 속성
267 label_attribute_plural: 속성
269 label_attribute_plural: 속성
268 label_download: %d 다운로드
270 label_download: %d 다운로드
269 label_download_plural: %d 다운로드
271 label_download_plural: %d 다운로드
270 label_no_data: 데이터가 없습니다.
272 label_no_data: 데이터가 없습니다.
271 label_change_status: 상태 변경
273 label_change_status: 상태 변경
272 label_history: 히스토리
274 label_history: 히스토리
273 label_attachment: 파일
275 label_attachment: 파일
274 label_attachment_new: 파일추가
276 label_attachment_new: 파일추가
275 label_attachment_delete: 파일삭제
277 label_attachment_delete: 파일삭제
276 label_attachment_plural: 관련파일
278 label_attachment_plural: 관련파일
277 label_report: 보고서
279 label_report: 보고서
278 label_report_plural: 보고서
280 label_report_plural: 보고서
279 label_news: 뉴스
281 label_news: 뉴스
280 label_news_new: 뉴스추가
282 label_news_new: 뉴스추가
281 label_news_plural: 뉴스
283 label_news_plural: 뉴스
282 label_news_latest: 최근 뉴스
284 label_news_latest: 최근 뉴스
283 label_news_view_all: 모든 뉴스
285 label_news_view_all: 모든 뉴스
284 label_change_log: 변경 로그
286 label_change_log: 변경 로그
285 label_settings: 설정
287 label_settings: 설정
286 label_overview: 개요
288 label_overview: 개요
287 label_version: 버전
289 label_version: 버전
288 label_version_new: 새로운 버전
290 label_version_new: 새로운 버전
289 label_version_plural: 버전
291 label_version_plural: 버전
290 label_confirmation: 확인
292 label_confirmation: 확인
291 label_export_to: 내보내기
293 label_export_to: 내보내기
292 label_read: 읽기...
294 label_read: 읽기...
293 label_public_projects: 공개된 프로젝트
295 label_public_projects: 공개된 프로젝트
294 label_open_issues: 진행중
296 label_open_issues: 진행중
295 label_open_issues_plural: 진행중
297 label_open_issues_plural: 진행중
296 label_closed_issues: 완료됨
298 label_closed_issues: 완료됨
297 label_closed_issues_plural: 완료됨
299 label_closed_issues_plural: 완료됨
298 label_total: Total
300 label_total: Total
299 label_permissions: 허가권한
301 label_permissions: 허가권한
300 label_current_status: 티켓 상태
302 label_current_status: 티켓 상태
301 label_new_statuses_allowed: 허용되는 티켓 상태
303 label_new_statuses_allowed: 허용되는 티켓 상태
302 label_all: 모두
304 label_all: 모두
303 label_none: 없음
305 label_none: 없음
304 label_next: 다음
306 label_next: 다음
305 label_previous: 이전
307 label_previous: 이전
306 label_used_by: 사용됨
308 label_used_by: 사용됨
307 label_details: 상세
309 label_details: 상세
308 label_add_note: 티켓노트 추가
310 label_add_note: 티켓노트 추가
309 label_per_page: 페이지별
311 label_per_page: 페이지별
310 label_calendar: 달력
312 label_calendar: 달력
311 label_months_from: 개월 동안 | 다음부터
313 label_months_from: 개월 동안 | 다음부터
312 label_gantt: Gantt 챠트
314 label_gantt: Gantt 챠트
313 label_internal: Internal
315 label_internal: Internal
314 label_last_changes: 지난 변경사항 %d 건
316 label_last_changes: 지난 변경사항 %d 건
315 label_change_view_all: 모든 변경 내역 보기
317 label_change_view_all: 모든 변경 내역 보기
316 label_personalize_page: 입맛대로 구성하기(Drag & Drop)
318 label_personalize_page: 입맛대로 구성하기(Drag & Drop)
317 label_comment: 댓글
319 label_comment: 댓글
318 label_comment_plural: 댓글
320 label_comment_plural: 댓글
319 label_comment_add: 댓글 추가
321 label_comment_add: 댓글 추가
320 label_comment_added: 댓글이 추가되었습니다.
322 label_comment_added: 댓글이 추가되었습니다.
321 label_comment_delete: 댓글 삭제
323 label_comment_delete: 댓글 삭제
322 label_query: 사용자 검색조건
324 label_query: 사용자 검색조건
323 label_query_plural: 사용자 검색조건
325 label_query_plural: 사용자 검색조건
324 label_query_new: 새로운 사용자 검색조건
326 label_query_new: 새로운 사용자 검색조건
325 label_filter_add: 필터 추가
327 label_filter_add: 필터 추가
326 label_filter_plural: 필터
328 label_filter_plural: 필터
327 label_equals: 이다
329 label_equals: 이다
328 label_not_equals: 아니다
330 label_not_equals: 아니다
329 label_in_less_than: 이내
331 label_in_less_than: 이내
330 label_in_more_than: 이후
332 label_in_more_than: 이후
331 label_in: 이내
333 label_in: 이내
332 label_today: 오늘
334 label_today: 오늘
333 label_this_week: 이번주
335 label_this_week: 이번주
334 label_less_than_ago: 이전
336 label_less_than_ago: 이전
335 label_more_than_ago: 이후
337 label_more_than_ago: 이후
336 label_ago: 일 전
338 label_ago: 일 전
337 label_contains: 포함되는 키워드
339 label_contains: 포함되는 키워드
338 label_not_contains: 포함하지 않는 키워드
340 label_not_contains: 포함하지 않는 키워드
339 label_day_plural:
341 label_day_plural:
340 label_repository: 저장소
342 label_repository: 저장소
341 label_browse: 저장소 살피기
343 label_browse: 저장소 살피기
342 label_modification: %d 변경
344 label_modification: %d 변경
343 label_modification_plural: %d 변경
345 label_modification_plural: %d 변경
344 label_revision: 개정판(Revision)
346 label_revision: 개정판(Revision)
345 label_revision_plural: 개정판(Revisions)
347 label_revision_plural: 개정판(Revisions)
346 label_added: added
348 label_added: added
347 label_modified: modified
349 label_modified: modified
348 label_deleted: deleted
350 label_deleted: deleted
349 label_latest_revision: 최근 개정판
351 label_latest_revision: 최근 개정판
350 label_latest_revision_plural: 최근 개정판
352 label_latest_revision_plural: 최근 개정판
351 label_view_revisions: 개정판 보기
353 label_view_revisions: 개정판 보기
352 label_max_size: 최대 크기
354 label_max_size: 최대 크기
353 label_on: 'on'
355 label_on: 'on'
354 label_sort_highest: 최상단으로
356 label_sort_highest: 최상단으로
355 label_sort_higher: 위로
357 label_sort_higher: 위로
356 label_sort_lower: 아래로
358 label_sort_lower: 아래로
357 label_sort_lowest: 최하단으로
359 label_sort_lowest: 최하단으로
358 label_roadmap: 로드맵
360 label_roadmap: 로드맵
359 label_roadmap_due_in: 기한
361 label_roadmap_due_in: 기한
360 label_roadmap_overdue: %s 지연
362 label_roadmap_overdue: %s 지연
361 label_roadmap_no_issues: 이버전에 해당하는 티켓 없음
363 label_roadmap_no_issues: 이버전에 해당하는 티켓 없음
362 label_search: 검색
364 label_search: 검색
363 label_result_plural: 결과
365 label_result_plural: 결과
364 label_all_words: 모든 단어
366 label_all_words: 모든 단어
365 label_wiki: 위키
367 label_wiki: 위키
366 label_wiki_edit: 위키 편집
368 label_wiki_edit: 위키 편집
367 label_wiki_edit_plural: 위키 편집
369 label_wiki_edit_plural: 위키 편집
368 label_wiki_page: 위키
370 label_wiki_page: 위키
369 label_wiki_page_plural: 위키
371 label_wiki_page_plural: 위키
370 label_index_by_title: 제목별 색인
372 label_index_by_title: 제목별 색인
371 label_index_by_date: 날짜별 색인
373 label_index_by_date: 날짜별 색인
372 label_current_version: 현재 버전
374 label_current_version: 현재 버전
373 label_preview: 미리보기
375 label_preview: 미리보기
374 label_feed_plural: 피드(Feeds)
376 label_feed_plural: 피드(Feeds)
375 label_changes_details: 모든 상세 변경 내역
377 label_changes_details: 모든 상세 변경 내역
376 label_issue_tracking: 티켓 추적
378 label_issue_tracking: 티켓 추적
377 label_spent_time: 작업 시간
379 label_spent_time: 작업 시간
378 label_f_hour: %.2f 시간
380 label_f_hour: %.2f 시간
379 label_f_hour_plural: %.2f 시간
381 label_f_hour_plural: %.2f 시간
380 label_time_tracking: 시간추적
382 label_time_tracking: 시간추적
381 label_change_plural: 변경사항들
383 label_change_plural: 변경사항들
382 label_statistics: 통계
384 label_statistics: 통계
383 label_commits_per_month: 월별 커밋 내역
385 label_commits_per_month: 월별 커밋 내역
384 label_commits_per_author: 아이디별 커밋 내역
386 label_commits_per_author: 아이디별 커밋 내역
385 label_view_diff: diff 보기
387 label_view_diff: diff 보기
386 label_diff_inline: 한줄로
388 label_diff_inline: 한줄로
387 label_diff_side_by_side: 두줄로
389 label_diff_side_by_side: 두줄로
388 label_options: Options
390 label_options: Options
389 label_copy_workflow_from: Copy workflow from
391 label_copy_workflow_from: Copy workflow from
390 label_permissions_report: 권한 보고서
392 label_permissions_report: 권한 보고서
391 label_watched_issues: 감시중인 티켓
393 label_watched_issues: 감시중인 티켓
392 label_related_issues: 연결된 티켓
394 label_related_issues: 연결된 티켓
393 label_applied_status: Applied status
395 label_applied_status: Applied status
394 label_loading: 읽는 중...
396 label_loading: 읽는 중...
395 label_relation_new: New relation
397 label_relation_new: New relation
396 label_relation_delete: Delete relation
398 label_relation_delete: Delete relation
397 label_relates_to: 다음 티켓과 관련되어 있음
399 label_relates_to: 다음 티켓과 관련되어 있음
398 label_duplicates: 다음 티켓과 중복됨.
400 label_duplicates: 다음 티켓과 중복됨.
399 label_blocks: 다음 티켓을 해결을 막고 있음.
401 label_blocks: 다음 티켓을 해결을 막고 있음.
400 label_blocked_by: 막고 있는 티켓
402 label_blocked_by: 막고 있는 티켓
401 label_precedes: 다음 티켓보다 앞서서 처리해야 함.
403 label_precedes: 다음 티켓보다 앞서서 처리해야 함.
402 label_follows: 선처리티켓
404 label_follows: 선처리티켓
403 label_end_to_start: end to start
405 label_end_to_start: end to start
404 label_end_to_end: end to end
406 label_end_to_end: end to end
405 label_start_to_start: start to start
407 label_start_to_start: start to start
406 label_start_to_end: start to end
408 label_start_to_end: start to end
407 label_stay_logged_in: 로그인 유지
409 label_stay_logged_in: 로그인 유지
408 label_disabled: 비활성화
410 label_disabled: 비활성화
409 label_show_completed_versions: 완료된 버전 보기
411 label_show_completed_versions: 완료된 버전 보기
410 label_me:
412 label_me:
411 label_board: 게시판
413 label_board: 게시판
412 label_board_new: 신규 게시판
414 label_board_new: 신규 게시판
413 label_board_plural: 게시판
415 label_board_plural: 게시판
414 label_topic_plural: 주제
416 label_topic_plural: 주제
415 label_message_plural: 관련글
417 label_message_plural: 관련글
416 label_message_last: 최종 글
418 label_message_last: 최종 글
417 label_message_new: 새글쓰기
419 label_message_new: 새글쓰기
418 label_reply_plural: 답글
420 label_reply_plural: 답글
419 label_send_information: 사용자에게 계정정보를 보냄
421 label_send_information: 사용자에게 계정정보를 보냄
420 label_year:
422 label_year:
421 label_month:
423 label_month:
422 label_week:
424 label_week:
423 label_date_from: 에서
425 label_date_from: 에서
424 label_date_to: (으)로
426 label_date_to: (으)로
425 label_language_based: Language based
427 label_language_based: Language based
426 label_sort_by: 정렬방법(%s)
428 label_sort_by: 정렬방법(%s)
427 label_send_test_email: 테스트 메일 보내기
429 label_send_test_email: 테스트 메일 보내기
428 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
429 label_module_plural: 모듈
431 label_module_plural: 모듈
430 label_added_time_by: %s이(가) %s 전에 추가함
432 label_added_time_by: %s이(가) %s 전에 추가함
431 label_updated_time: %s 전에 수정됨
433 label_updated_time: %s 전에 수정됨
432 label_jump_to_a_project: 다른 프로젝트로 이동하기
434 label_jump_to_a_project: 다른 프로젝트로 이동하기
433 label_file_plural: 파일
435 label_file_plural: 파일
434 label_changeset_plural: 변경사항
436 label_changeset_plural: 변경사항
435 label_default_columns: 기본 컬럼
437 label_default_columns: 기본 컬럼
436 label_no_change_option: (수정 안함)
438 label_no_change_option: (수정 안함)
437 label_bulk_edit_selected_issues: 선택된 티켓들을 한꺼번에 수정하기
439 label_bulk_edit_selected_issues: 선택된 티켓들을 한꺼번에 수정하기
438 label_theme: 테마
440 label_theme: 테마
439 label_default: 기본
441 label_default: 기본
440 label_search_titles_only: 제목에서만 찾기
442 label_search_titles_only: 제목에서만 찾기
441 label_user_mail_option_all: "내가 속한 프로젝트로들부터 모든 메일 받기"
443 label_user_mail_option_all: "내가 속한 프로젝트로들부터 모든 메일 받기"
442 label_user_mail_option_selected: "선택한 프로젝트들로부터 모든 메일 받기.."
444 label_user_mail_option_selected: "선택한 프로젝트들로부터 모든 메일 받기.."
443 label_user_mail_option_none: "내가 속하거나 감시 중인 사항에 대해서만"
445 label_user_mail_option_none: "내가 속하거나 감시 중인 사항에 대해서만"
444
446
445 button_login: 로그인
447 button_login: 로그인
446 button_submit: 확인
448 button_submit: 확인
447 button_save: 저장
449 button_save: 저장
448 button_check_all: 모두선택
450 button_check_all: 모두선택
449 button_uncheck_all: 선택해제
451 button_uncheck_all: 선택해제
450 button_delete: 삭제
452 button_delete: 삭제
451 button_create: 완료
453 button_create: 완료
452 button_test: 테스트
454 button_test: 테스트
453 button_edit: 편집
455 button_edit: 편집
454 button_add: 추가
456 button_add: 추가
455 button_change: 변경
457 button_change: 변경
456 button_apply: 적용
458 button_apply: 적용
457 button_clear: 초기화
459 button_clear: 초기화
458 button_lock: 잠금
460 button_lock: 잠금
459 button_unlock: 잠금해제
461 button_unlock: 잠금해제
460 button_download: 다운로드
462 button_download: 다운로드
461 button_list: 목록
463 button_list: 목록
462 button_view: 보기
464 button_view: 보기
463 button_move: 이동
465 button_move: 이동
464 button_back: 뒤로
466 button_back: 뒤로
465 button_cancel: 취소
467 button_cancel: 취소
466 button_activate: 활성화
468 button_activate: 활성화
467 button_sort: 정렬
469 button_sort: 정렬
468 button_log_time: 작업시간 기록
470 button_log_time: 작업시간 기록
469 button_rollback: 이 버전으로 롤백
471 button_rollback: 이 버전으로 롤백
470 button_watch: 감시하기
472 button_watch: 감시하기
471 button_unwatch: 감시해제
473 button_unwatch: 감시해제
472 button_reply: 답글
474 button_reply: 답글
473 button_archive: 잠금보관
475 button_archive: 잠금보관
474 button_unarchive: 잠금보관해제
476 button_unarchive: 잠금보관해제
475 button_reset: 리셋
477 button_reset: 리셋
476 button_rename: 이름 변경
478 button_rename: 이름 변경
477
479
478 status_active: 사용중
480 status_active: 사용중
479 status_registered: 등록대기
481 status_registered: 등록대기
480 status_locked: 잠김
482 status_locked: 잠김
481
483
482 text_select_mail_notifications: 알림메일이 필요한 작업을 선택하세요.
484 text_select_mail_notifications: 알림메일이 필요한 작업을 선택하세요.
483 text_regexp_info: 예) ^[A-Z0-9]+$
485 text_regexp_info: 예) ^[A-Z0-9]+$
484 text_min_max_length_info: 0 는 제한이 없음을 의미함
486 text_min_max_length_info: 0 는 제한이 없음을 의미함
485 text_project_destroy_confirmation: 이 프로젝트를 삭제하고 모든 데이터를 지우시겠습니까?
487 text_project_destroy_confirmation: 이 프로젝트를 삭제하고 모든 데이터를 지우시겠습니까?
486 text_workflow_edit: 워크플로를 수정하기 위해서 역할과 티켓유형을 선택하세요.
488 text_workflow_edit: 워크플로를 수정하기 위해서 역할과 티켓유형을 선택하세요.
487 text_are_you_sure: 계속 진행 하시겠습니까?
489 text_are_you_sure: 계속 진행 하시겠습니까?
488 text_journal_changed: %s에서 %s(으)로 변경
490 text_journal_changed: %s에서 %s(으)로 변경
489 text_journal_set_to: %s로 설정
491 text_journal_set_to: %s로 설정
490 text_journal_deleted: 삭제됨
492 text_journal_deleted: 삭제됨
491 text_tip_task_begin_day: 오늘 시작하는 업무(task)
493 text_tip_task_begin_day: 오늘 시작하는 업무(task)
492 text_tip_task_end_day: 오늘 종료하는 업무(task)
494 text_tip_task_end_day: 오늘 종료하는 업무(task)
493 text_tip_task_begin_end_day: 오늘 시작하고 종료하는 업무(task)
495 text_tip_task_begin_end_day: 오늘 시작하고 종료하는 업무(task)
494 text_project_identifier_info: '영문 소문자 (a-z), 숫자 대쉬(-) 가능.<br />저장된후에는 식별자 변경 불가능.'
496 text_project_identifier_info: '영문 소문자 (a-z), 숫자 대쉬(-) 가능.<br />저장된후에는 식별자 변경 불가능.'
495 text_caracters_maximum: 최대 %d 글자 가능.
497 text_caracters_maximum: 최대 %d 글자 가능.
496 text_length_between: %d 에서 %d 글자
498 text_length_between: %d 에서 %d 글자
497 text_tracker_no_workflow: 이 추적타입(tracker)에 워크플로우가 정의되지 않았습니다.
499 text_tracker_no_workflow: 이 추적타입(tracker)에 워크플로우가 정의되지 않았습니다.
498 text_unallowed_characters: 허용되지 않는 문자열
500 text_unallowed_characters: 허용되지 않는 문자열
499 text_comma_separated: 복수의 값들이 허용됩니다.(구분자 ,)
501 text_comma_separated: 복수의 값들이 허용됩니다.(구분자 ,)
500 text_issues_ref_in_commit_messages: 커밋메시지에서 티켓을 참조하거나 해결하기
502 text_issues_ref_in_commit_messages: 커밋메시지에서 티켓을 참조하거나 해결하기
501 text_issue_added: 티켓[%s]이 보고되었습니다.
503 text_issue_added: 티켓[%s]이 보고되었습니다.
502 text_issue_updated: 티켓[%s]이 수정되었습니다.
504 text_issue_updated: 티켓[%s]이 수정되었습니다.
503 text_wiki_destroy_confirmation: 이 위키와 모든 내용을 지우시겠습니까?
505 text_wiki_destroy_confirmation: 이 위키와 모든 내용을 지우시겠습니까?
504 text_issue_category_destroy_question: 일부 티켓들(%d개)이 이 카테고리에 할당되어 있습니다. 어떻게 하시겠습니까?
506 text_issue_category_destroy_question: 일부 티켓들(%d개)이 이 카테고리에 할당되어 있습니다. 어떻게 하시겠습니까?
505 text_issue_category_destroy_assignments: 카테고리 할당 지우기
507 text_issue_category_destroy_assignments: 카테고리 할당 지우기
506 text_issue_category_reassign_to: 티켓을 이 카테고리에 다시 할당하기
508 text_issue_category_reassign_to: 티켓을 이 카테고리에 다시 할당하기
507 text_user_mail_option: "선택하지 않은 프로젝트에서도, 모니터링 중이거나 속해있는 사항(티켓을 발행했거나 할당된 경우)이 있으면 알림메일을 받게 됩니다."
509 text_user_mail_option: "선택하지 않은 프로젝트에서도, 모니터링 중이거나 속해있는 사항(티켓을 발행했거나 할당된 경우)이 있으면 알림메일을 받게 됩니다."
508
510
509 default_role_manager: 관리자
511 default_role_manager: 관리자
510 default_role_developper: 개발자
512 default_role_developper: 개발자
511 default_role_reporter: 보고자
513 default_role_reporter: 보고자
512 default_tracker_bug: 버그
514 default_tracker_bug: 버그
513 default_tracker_feature: 새기능
515 default_tracker_feature: 새기능
514 default_tracker_support: 지원
516 default_tracker_support: 지원
515 default_issue_status_new: 신규
517 default_issue_status_new: 신규
516 default_issue_status_assigned: 확인
518 default_issue_status_assigned: 확인
517 default_issue_status_resolved: 해결
519 default_issue_status_resolved: 해결
518 default_issue_status_feedback: 피드백
520 default_issue_status_feedback: 피드백
519 default_issue_status_closed: 완료
521 default_issue_status_closed: 완료
520 default_issue_status_rejected: 재처리
522 default_issue_status_rejected: 재처리
521 default_doc_category_user: 사용자 문서
523 default_doc_category_user: 사용자 문서
522 default_doc_category_tech: 기술 문서
524 default_doc_category_tech: 기술 문서
523 default_priority_low: 낮음
525 default_priority_low: 낮음
524 default_priority_normal: 보통
526 default_priority_normal: 보통
525 default_priority_high: 높음
527 default_priority_high: 높음
526 default_priority_urgent: 긴급
528 default_priority_urgent: 긴급
527 default_priority_immediate: 즉시
529 default_priority_immediate: 즉시
528 default_activity_design: 설계
530 default_activity_design: 설계
529 default_activity_development: 개발
531 default_activity_development: 개발
530
532
531 enumeration_issue_priorities: 티켓 우선순위
533 enumeration_issue_priorities: 티켓 우선순위
532 enumeration_doc_categories: 문서 카테고리
534 enumeration_doc_categories: 문서 카테고리
533 enumeration_activities: 진행활동(시간 추적)
535 enumeration_activities: 진행활동(시간 추적)
534 button_copy: 복사
536 button_copy: 복사
535 mail_body_account_information_external: 레드마인에 로그인할 때 "%s" 계정을 사용하실 수 있습니다.
537 mail_body_account_information_external: 레드마인에 로그인할 때 "%s" 계정을 사용하실 수 있습니다.
536 button_change_password: 비밀번호 변경
538 button_change_password: 비밀번호 변경
537 label_nobody: nobody
539 label_nobody: nobody
538 setting_protocol: 프로토콜
540 setting_protocol: 프로토콜
539 mail_body_account_information: Redmine 계정 정보
541 mail_body_account_information: Redmine 계정 정보
540 label_user_mail_no_self_notified: "내가 만든 변경사항들에 대해서는 알림메일을 받지 않습니다."
542 label_user_mail_no_self_notified: "내가 만든 변경사항들에 대해서는 알림메일을 받지 않습니다."
541 setting_time_format: 시간 형식
543 setting_time_format: 시간 형식
542 label_registration_activation_by_email: 메일로 계정을 활성화하기
544 label_registration_activation_by_email: 메일로 계정을 활성화하기
543 mail_subject_account_activation_request: 레드마인 계정 활성화 요청
545 mail_subject_account_activation_request: 레드마인 계정 활성화 요청
544 mail_body_account_activation_request: '새 계정(%s)이 등록되었습니다. 관리자님의 승인을 기다리고 있습니다.:'
546 mail_body_account_activation_request: '새 계정(%s)이 등록되었습니다. 관리자님의 승인을 기다리고 있습니다.:'
545 label_registration_automatic_activation: 자동 계정 활성화
547 label_registration_automatic_activation: 자동 계정 활성화
546 label_registration_manual_activation: 수동 계정 활성화
548 label_registration_manual_activation: 수동 계정 활성화
547 notice_account_pending: "계정이 만들어 졌습니다. 관리자의 승인이 있을 때까지 기다려야 합니다."
549 notice_account_pending: "계정이 만들어 졌습니다. 관리자의 승인이 있을 때까지 기다려야 합니다."
548 field_time_zone: 타임존
550 field_time_zone: 타임존
549 text_caracters_minimum: 최소한 %d 글자 이상이어야 합니다.
551 text_caracters_minimum: 최소한 %d 글자 이상이어야 합니다.
550 setting_bcc_recipients: 참조자들을 bcc로 숨기기
552 setting_bcc_recipients: 참조자들을 bcc로 숨기기
551 button_annotate: Annotate
553 button_annotate: Annotate
552 label_issues_by: Issues by %s
554 label_issues_by: Issues by %s
553 field_searchable: 검색가능
555 field_searchable: 검색가능
554 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
556 label_age: Age
558 label_age: Age
557 notice_default_data_loaded: 기본 설정을 성공적으로 로드하였습니다.
559 notice_default_data_loaded: 기본 설정을 성공적으로 로드하였습니다.
558 text_load_default_configuration: 기본 설정을 로딩하기
560 text_load_default_configuration: 기본 설정을 로딩하기
559 text_no_configuration_data: "역할, 티켓타입, 티켓 상태들과 워크플로가 아직 설정되지 않았습니다.\n기본 설정을 로딩하는 것을 권장합니다. 로드된 후에 수정할 있습니다."
561 text_no_configuration_data: "역할, 티켓타입, 티켓 상태들과 워크플로가 아직 설정되지 않았습니다.\n기본 설정을 로딩하는 것을 권장합니다. 로드된 후에 수정할 있습니다."
560 error_can_t_load_default_data: "기본 설정을 로드할 없습니다.: %s"
562 error_can_t_load_default_data: "기본 설정을 로드할 없습니다.: %s"
561 button_update: 변경사항기록
563 button_update: 변경사항기록
562 label_change_properties: 속성 변경
564 label_change_properties: 속성 변경
563 label_general: 일반
565 label_general: 일반
564 label_repository_plural: 저장소들
566 label_repository_plural: 저장소들
565 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
@@ -1,566 +1,568
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: sausis,vasaris,kovas,balandis,gegužė,birželis,liepa,rugpjūtis,rugsėjis,spalis,lapkritis,gruodis
5 actionview_datehelper_select_month_names_abbr: sausis,vasaris,kovas,balandis,gegužė,birželis,liepa,rugpjūtis,rugsėjis,spalis,lapkritis,gruodis
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 dienos
9 actionview_datehelper_time_in_words_day_plural: %d dienos
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.
72 notice_not_authorized: Jūs neturite teisių gauti prieigą prie šio puslapio.
71 notice_not_authorized: Jūs neturite teisių gauti prieigą prie šio puslapio.
73 notice_email_sent: Laiškas išsiųstas %s
72 notice_email_sent: Laiškas išsiųstas %s
74 notice_email_error: Laiško siųntimo metu įvyko klaida (%s)
73 notice_email_error: Laiško siųntimo metu įvyko klaida (%s)
75 notice_feeds_access_key_reseted: Jūsų RSS raktas buvo atnaujintas.
74 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."
75 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."
76 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."
77 notice_account_pending: "Jūsų paskyra buvo sukūrta ir dabar laukiama administratoriaus patvirtinimo."
79
78
79 error_scm_not_found: "Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja."
80 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
81
80 mail_subject_lost_password: Jūsų Redmine slaptažodis
82 mail_subject_lost_password: Jūsų Redmine slaptažodis
81 mail_body_lost_password: 'Norėdami pakeisti Redmine slaptažodį, spauskite nuorodą:'
83 mail_body_lost_password: 'Norėdami pakeisti Redmine slaptažodį, spauskite nuorodą:'
82 mail_subject_register: 'Redmine paskyros aktyvavymas'
84 mail_subject_register: 'Redmine paskyros aktyvavymas'
83 mail_body_register: 'Norėdami aktyvuoti Redmine paskyrą, spauskite nuorodą:'
85 mail_body_register: 'Norėdami aktyvuoti Redmine paskyrą, spauskite nuorodą:'
84 mail_body_account_information_external: Jūs galite naudoti Jūsų "%s" paskyrą, norėdami prisijungti prie Redmine.
86 mail_body_account_information_external: Jūs galite naudoti Jūsų "%s" paskyrą, norėdami prisijungti prie Redmine.
85 mail_body_account_information: Informacija apie Jūsų Redmine paskyrą
87 mail_body_account_information: Informacija apie Jūsų Redmine paskyrą
86 mail_subject_account_activation_request: Redmine paskyros aktyvavimo prašymas
88 mail_subject_account_activation_request: Redmine paskyros aktyvavimo prašymas
87 mail_body_account_activation_request: 'Užsiregistravo naujas vartotojas (%s). Jo paskyra laukia jūsų patvirtinimo:'
89 mail_body_account_activation_request: 'Užsiregistravo naujas vartotojas (%s). Jo paskyra laukia jūsų patvirtinimo:'
88
90
89 gui_validation_error: 1 klaida
91 gui_validation_error: 1 klaida
90 gui_validation_error_plural: %d klaidų(os)
92 gui_validation_error_plural: %d klaidų(os)
91
93
92 field_name: Pavadinimas
94 field_name: Pavadinimas
93 field_description: Aprašas
95 field_description: Aprašas
94 field_summary: Santrauka
96 field_summary: Santrauka
95 field_is_required: Reikalaujama
97 field_is_required: Reikalaujama
96 field_firstname: Vardas
98 field_firstname: Vardas
97 field_lastname: Pavardė
99 field_lastname: Pavardė
98 field_mail: Email
100 field_mail: Email
99 field_filename: Byla
101 field_filename: Byla
100 field_filesize: Dydis
102 field_filesize: Dydis
101 field_downloads: Atsiuntimai
103 field_downloads: Atsiuntimai
102 field_author: Autorius
104 field_author: Autorius
103 field_created_on: Sukūrta
105 field_created_on: Sukūrta
104 field_updated_on: Atnaujinta
106 field_updated_on: Atnaujinta
105 field_field_format: Formatas
107 field_field_format: Formatas
106 field_is_for_all: Visiems laukasms
108 field_is_for_all: Visiems laukasms
107 field_possible_values: Galimos reikšmės
109 field_possible_values: Galimos reikšmės
108 field_regexp: Pastovi išraiška
110 field_regexp: Pastovi išraiška
109 field_min_length: Minimalus ilgis
111 field_min_length: Minimalus ilgis
110 field_max_length: Maksimalus ilgis
112 field_max_length: Maksimalus ilgis
111 field_value: Vertė
113 field_value: Vertė
112 field_category: Kategorija
114 field_category: Kategorija
113 field_title: Pavadinimas
115 field_title: Pavadinimas
114 field_project: Projektas
116 field_project: Projektas
115 field_issue: Svarstoma problema
117 field_issue: Svarstoma problema
116 field_status: Būsena
118 field_status: Būsena
117 field_notes: Pastabos
119 field_notes: Pastabos
118 field_is_closed: Svarstoma problema uždaryta
120 field_is_closed: Svarstoma problema uždaryta
119 field_is_default: Numatytoji vertė
121 field_is_default: Numatytoji vertė
120 field_tracker: Pėdsekys
122 field_tracker: Pėdsekys
121 field_subject: Dalykas
123 field_subject: Dalykas
122 field_due_date: Mokėjimo terminas
124 field_due_date: Mokėjimo terminas
123 field_assigned_to: Paskirtas
125 field_assigned_to: Paskirtas
124 field_priority: Prioritetas
126 field_priority: Prioritetas
125 field_fixed_version: Pastovi versija
127 field_fixed_version: Pastovi versija
126 field_user: Vartotojas
128 field_user: Vartotojas
127 field_role: Vaidmuo
129 field_role: Vaidmuo
128 field_homepage: Pagrindinis puslapis
130 field_homepage: Pagrindinis puslapis
129 field_is_public: Viešas
131 field_is_public: Viešas
130 field_parent: Yra subprojektas
132 field_parent: Yra subprojektas
131 field_is_in_chlog: Svarstomos problemos rodomos pokyčių žurnale
133 field_is_in_chlog: Svarstomos problemos rodomos pokyčių žurnale
132 field_is_in_roadmap: Svarstomos problemos rodomos veiklos grafike
134 field_is_in_roadmap: Svarstomos problemos rodomos veiklos grafike
133 field_login: Registracijos vardas
135 field_login: Registracijos vardas
134 field_mail_notification: Elektroninio pašto pranešimai
136 field_mail_notification: Elektroninio pašto pranešimai
135 field_admin: Administratorius
137 field_admin: Administratorius
136 field_last_login_on: Paskutinis ryšys
138 field_last_login_on: Paskutinis ryšys
137 field_language: Kalba
139 field_language: Kalba
138 field_effective_date: Data
140 field_effective_date: Data
139 field_password: Slaptažodis
141 field_password: Slaptažodis
140 field_new_password: Naujas slaptažodis
142 field_new_password: Naujas slaptažodis
141 field_password_confirmation: Patvirtinimas
143 field_password_confirmation: Patvirtinimas
142 field_version: Versija
144 field_version: Versija
143 field_type: Tipas
145 field_type: Tipas
144 field_host: Pagrindinis kompiuteris
146 field_host: Pagrindinis kompiuteris
145 field_port: Jungtis
147 field_port: Jungtis
146 field_account: Paskyra
148 field_account: Paskyra
147 field_base_dn: Bazinis skiriamasis vardas
149 field_base_dn: Bazinis skiriamasis vardas
148 field_attr_login: Registracijos vardo požymis
150 field_attr_login: Registracijos vardo požymis
149 field_attr_firstname: Vardo priskiria
151 field_attr_firstname: Vardo priskiria
150 field_attr_lastname: Pavardės priskiria
152 field_attr_lastname: Pavardės priskiria
151 field_attr_mail: Elektroninio pašto požymis
153 field_attr_mail: Elektroninio pašto požymis
152 field_onthefly: Vartotojų sukūrimas paskubomis
154 field_onthefly: Vartotojų sukūrimas paskubomis
153 field_start_date: Pradėti
155 field_start_date: Pradėti
154 field_done_ratio: %% Atlikta
156 field_done_ratio: %% Atlikta
155 field_auth_source: Autentiškumo nustatymo būdas
157 field_auth_source: Autentiškumo nustatymo būdas
156 field_hide_mail: Paslėpkite mano elektroninio pašto adresą
158 field_hide_mail: Paslėpkite mano elektroninio pašto adresą
157 field_comments: Komentaras
159 field_comments: Komentaras
158 field_url: URL
160 field_url: URL
159 field_start_page: Pradžios puslapis
161 field_start_page: Pradžios puslapis
160 field_subproject: Subprojektas
162 field_subproject: Subprojektas
161 field_hours: Valandos
163 field_hours: Valandos
162 field_activity: Veikla
164 field_activity: Veikla
163 field_spent_on: Data
165 field_spent_on: Data
164 field_identifier: Identifikuotojas
166 field_identifier: Identifikuotojas
165 field_is_filter: Panaudotas kaip filtras
167 field_is_filter: Panaudotas kaip filtras
166 field_issue_to_id: Susijusi svarstoma problema
168 field_issue_to_id: Susijusi svarstoma problema
167 field_delay: Užlaikymas
169 field_delay: Užlaikymas
168 field_assignable: Svarstomos problemos gali būti paskirtos šiam vaidmeniui
170 field_assignable: Svarstomos problemos gali būti paskirtos šiam vaidmeniui
169 field_redirect_existing_links: Peradresuokite egzistuojančias sąsajas
171 field_redirect_existing_links: Peradresuokite egzistuojančias sąsajas
170 field_estimated_hours: Apskaičiuotas laikas
172 field_estimated_hours: Apskaičiuotas laikas
171 field_column_names: Skiltys
173 field_column_names: Skiltys
172 field_time_zone: Laiko juosta
174 field_time_zone: Laiko juosta
173 field_searchable: Randamas
175 field_searchable: Randamas
174 field_default_value: Numatytoji vertė
176 field_default_value: Numatytoji vertė
175
177
176 setting_app_title: Programos pavadinimas
178 setting_app_title: Programos pavadinimas
177 setting_app_subtitle: Programos paantraštė
179 setting_app_subtitle: Programos paantraštė
178 setting_welcome_text: Pasveikinimas
180 setting_welcome_text: Pasveikinimas
179 setting_default_language: Numatytoji kalba
181 setting_default_language: Numatytoji kalba
180 setting_login_required: Reikalingas autentiškumo nustatymas
182 setting_login_required: Reikalingas autentiškumo nustatymas
181 setting_self_registration: Saviregistracija
183 setting_self_registration: Saviregistracija
182 setting_attachment_max_size: Priedo maks. dydis
184 setting_attachment_max_size: Priedo maks. dydis
183 setting_issues_export_limit pagal dydį: Svarstomų problemų eksportavimo riba
185 setting_issues_export_limit pagal dydį: Svarstomų problemų eksportavimo riba
184 setting_mail_from: Emisijos elektroninio pašto adresas
186 setting_mail_from: Emisijos elektroninio pašto adresas
185 setting_bcc_recipients: Akli tikslios kopijos gavėjai (bcc)
187 setting_bcc_recipients: Akli tikslios kopijos gavėjai (bcc)
186 setting_host_name: Pagrindinio kompiuterio vardas
188 setting_host_name: Pagrindinio kompiuterio vardas
187 setting_text_formatting: Teksto apipavidalinimas
189 setting_text_formatting: Teksto apipavidalinimas
188 setting_wiki_compression: Wiki istorijos suspaudimas
190 setting_wiki_compression: Wiki istorijos suspaudimas
189 setting_feeds_limit: Perdavimo turinio riba
191 setting_feeds_limit: Perdavimo turinio riba
190 setting_autofetch_changesets: Automatinis pakeitimų siuntimas
192 setting_autofetch_changesets: Automatinis pakeitimų siuntimas
191 setting_sys_api_enabled: Įgalinkite WS sandėlio vadybai
193 setting_sys_api_enabled: Įgalinkite WS sandėlio vadybai
192 setting_commit_ref_keywords: Nurodymo reikšminiai žodžiai
194 setting_commit_ref_keywords: Nurodymo reikšminiai žodžiai
193 setting_commit_fix_keywords: Fiksavimo reikšminiai žodžiai
195 setting_commit_fix_keywords: Fiksavimo reikšminiai žodžiai
194 setting_autologin: Autoregistracija
196 setting_autologin: Autoregistracija
195 setting_date_format: Datos formatas
197 setting_date_format: Datos formatas
196 setting_time_format: Laiko formatas
198 setting_time_format: Laiko formatas
197 setting_cross_project_issue_relations: Leisti tarprojektinius svarstomos problemos ryšius
199 setting_cross_project_issue_relations: Leisti tarprojektinius svarstomos problemos ryšius
198 setting_issue_list_default_columns: Numatytosios skiltys svarstomos problemos sąraše
200 setting_issue_list_default_columns: Numatytosios skiltys svarstomos problemos sąraše
199 setting_repositories_encodings: Saugyklos encodingas
201 setting_repositories_encodings: Saugyklos encodingas
200 setting_emails_footer: elektroninio pašto puslapinė poraštė
202 setting_emails_footer: elektroninio pašto puslapinė poraštė
201 setting_protocol: Protokolas
203 setting_protocol: Protokolas
202
204
203 label_user: Vartotojas
205 label_user: Vartotojas
204 label_user_plural: Vartotojai
206 label_user_plural: Vartotojai
205 label_user_new: Naujas vartotojas
207 label_user_new: Naujas vartotojas
206 label_project: Projektas
208 label_project: Projektas
207 label_project_new: Naujas projektas
209 label_project_new: Naujas projektas
208 label_project_plural: Projektai
210 label_project_plural: Projektai
209 label_project_all: Visi Projektai
211 label_project_all: Visi Projektai
210 label_project_latest: Paskutiniai projektai
212 label_project_latest: Paskutiniai projektai
211 label_issue: Svarstoma problema
213 label_issue: Svarstoma problema
212 label_issue_new: Nauja svarstoma problema
214 label_issue_new: Nauja svarstoma problema
213 label_issue_plural: Svarstomos problemos
215 label_issue_plural: Svarstomos problemos
214 label_issue_view_all: Peržiūrėti visas svarstomas problemas
216 label_issue_view_all: Peržiūrėti visas svarstomas problemas
215 label_issues_by: Svarstomos problemos pagal %s
217 label_issues_by: Svarstomos problemos pagal %s
216 label_document: Dokumentas
218 label_document: Dokumentas
217 label_document_new: Naujas dokumentas
219 label_document_new: Naujas dokumentas
218 label_document_plural: Dokumentai
220 label_document_plural: Dokumentai
219 label_role: Vaidmuo
221 label_role: Vaidmuo
220 label_role_plural: Vaidmenys
222 label_role_plural: Vaidmenys
221 label_role_new: Naujas vaidmuo
223 label_role_new: Naujas vaidmuo
222 label_role_and_permissions: Vaidmenys ir leidimai
224 label_role_and_permissions: Vaidmenys ir leidimai
223 label_member: Narys
225 label_member: Narys
224 label_member_new: Naujas narys
226 label_member_new: Naujas narys
225 label_member_plural: Nariai
227 label_member_plural: Nariai
226 label_tracker: Pėdsekys
228 label_tracker: Pėdsekys
227 label_tracker_plural: Pėdsekiai
229 label_tracker_plural: Pėdsekiai
228 label_tracker_new: Naujas pėdsekys
230 label_tracker_new: Naujas pėdsekys
229 label_workflow: Darbų eiga
231 label_workflow: Darbų eiga
230 label_issue_status: Svarstomos problemos padėtis
232 label_issue_status: Svarstomos problemos padėtis
231 label_issue_status_plural: Svarstomos problemos padėtys
233 label_issue_status_plural: Svarstomos problemos padėtys
232 label_issue_status_new: Nauja padėtis
234 label_issue_status_new: Nauja padėtis
233 label_issue_category: Svarstomos problemos kategorija
235 label_issue_category: Svarstomos problemos kategorija
234 label_issue_category_plural: Svarstomos problemos kategorijos
236 label_issue_category_plural: Svarstomos problemos kategorijos
235 label_issue_category_new: Nauja kategorija
237 label_issue_category_new: Nauja kategorija
236 label_custom_field: Kliento laukas
238 label_custom_field: Kliento laukas
237 label_custom_field_plural: Kliento laukai
239 label_custom_field_plural: Kliento laukai
238 label_custom_field_new: Naujas kliento laukas
240 label_custom_field_new: Naujas kliento laukas
239 label_enumerations: Išvardinimai
241 label_enumerations: Išvardinimai
240 label_enumeration_new: Nauja vertė
242 label_enumeration_new: Nauja vertė
241 label_information: Informacija
243 label_information: Informacija
242 label_information_plural: Informacija
244 label_information_plural: Informacija
243 label_please_login: Prašom prisijungti
245 label_please_login: Prašom prisijungti
244 label_register: Užsiregistruoti
246 label_register: Užsiregistruoti
245 label_password_lost: Prarastas slaptažodis
247 label_password_lost: Prarastas slaptažodis
246 label_home: Pagrindinis
248 label_home: Pagrindinis
247 label_my_page: Mano puslapis
249 label_my_page: Mano puslapis
248 label_my_account: Mano pranešimas
250 label_my_account: Mano pranešimas
249 label_my_projects: Mano projektai
251 label_my_projects: Mano projektai
250 label_administration: Administracija
252 label_administration: Administracija
251 label_login: Prisijungti
253 label_login: Prisijungti
252 label_logout: Atsijungti
254 label_logout: Atsijungti
253 label_help: Pagalba
255 label_help: Pagalba
254 label_reported_issues: Praneštos svarstomos problemos
256 label_reported_issues: Praneštos svarstomos problemos
255 label_assigned_to_me_issues: Svarstomos problemos, paskirtos man
257 label_assigned_to_me_issues: Svarstomos problemos, paskirtos man
256 label_last_login: Paskutinis ryšys
258 label_last_login: Paskutinis ryšys
257 label_last_updates: Paskutinis atnaujinimas
259 label_last_updates: Paskutinis atnaujinimas
258 label_last_updates_plural: %d paskutinis atnaujinimas
260 label_last_updates_plural: %d paskutinis atnaujinimas
259 label_registered_on: Užregistruota
261 label_registered_on: Užregistruota
260 label_activity: Veikla
262 label_activity: Veikla
261 label_new: Naujas
263 label_new: Naujas
262 label_logged_as: Prisijungęs kaip
264 label_logged_as: Prisijungęs kaip
263 label_environment: Aplinka
265 label_environment: Aplinka
264 label_authentication: Autentiškumo nustatymas
266 label_authentication: Autentiškumo nustatymas
265 label_auth_source: Autentiškumo nustatymo būdas
267 label_auth_source: Autentiškumo nustatymo būdas
266 label_auth_source_new: Naujas autentiškumo nustatymo būdas
268 label_auth_source_new: Naujas autentiškumo nustatymo būdas
267 label_auth_source_plural: Autentiškumo nustatymo būdai
269 label_auth_source_plural: Autentiškumo nustatymo būdai
268 label_subproject_plural: Subprojektai
270 label_subproject_plural: Subprojektai
269 label_min_max_length: Min - Maks ilgis
271 label_min_max_length: Min - Maks ilgis
270 label_list: Sąrašas
272 label_list: Sąrašas
271 label_date: Data
273 label_date: Data
272 label_integer: Sveikasis skaičius
274 label_integer: Sveikasis skaičius
273 label_float: Float
275 label_float: Float
274 label_boolean: Boolean
276 label_boolean: Boolean
275 label_string: Tekstas
277 label_string: Tekstas
276 label_text: Ilgas tekstas
278 label_text: Ilgas tekstas
277 label_attribute: Požymis
279 label_attribute: Požymis
278 label_attribute_plural: Požymiai
280 label_attribute_plural: Požymiai
279 label_download: %d Persiuntimas
281 label_download: %d Persiuntimas
280 label_download_plural: %d Persiuntimai
282 label_download_plural: %d Persiuntimai
281 label_no_data: Nėra ką atvaizduoti
283 label_no_data: Nėra ką atvaizduoti
282 label_change_status: Pakeitimo padėtis
284 label_change_status: Pakeitimo padėtis
283 label_history: Istorija
285 label_history: Istorija
284 label_attachment: Rinkmena
286 label_attachment: Rinkmena
285 label_attachment_new: Nauja rinkmena
287 label_attachment_new: Nauja rinkmena
286 label_attachment_delete: Pašalinkite rinkmeną
288 label_attachment_delete: Pašalinkite rinkmeną
287 label_attachment_plural: Rinkmenos
289 label_attachment_plural: Rinkmenos
288 label_report: Ataskaita
290 label_report: Ataskaita
289 label_report_plural: Ataskaitos
291 label_report_plural: Ataskaitos
290 label_news: Žinia
292 label_news: Žinia
291 label_news_new: Pridėkite žinią
293 label_news_new: Pridėkite žinią
292 label_news_plural: Žinios
294 label_news_plural: Žinios
293 label_news_latest: Paskutinės naujienos
295 label_news_latest: Paskutinės naujienos
294 label_news_view_all: Peržiūrėti visas žinias
296 label_news_view_all: Peržiūrėti visas žinias
295 label_change_log: Pakeitimų žurnalas
297 label_change_log: Pakeitimų žurnalas
296 label_settings: Nustatymai
298 label_settings: Nustatymai
297 label_overview: Apžvalga
299 label_overview: Apžvalga
298 label_version: Versija
300 label_version: Versija
299 label_version_new: Nauja versija
301 label_version_new: Nauja versija
300 label_version_plural: Versijos
302 label_version_plural: Versijos
301 label_confirmation: Patvirtinimas
303 label_confirmation: Patvirtinimas
302 label_export_to: Eksportuoti į
304 label_export_to: Eksportuoti į
303 label_read: Skaitykite...
305 label_read: Skaitykite...
304 label_public_projects: Vieši projektai
306 label_public_projects: Vieši projektai
305 label_open_issues: atidarytas
307 label_open_issues: atidarytas
306 label_open_issues_plural: atidaryti
308 label_open_issues_plural: atidaryti
307 label_closed_issues: uždarytas
309 label_closed_issues: uždarytas
308 label_closed_issues_plural: uždaryti
310 label_closed_issues_plural: uždaryti
309 label_total: Bendra suma
311 label_total: Bendra suma
310 label_permissions: Leidimai
312 label_permissions: Leidimai
311 label_current_status: Einamoji padėtis
313 label_current_status: Einamoji padėtis
312 label_new_statuses_allowed: Naujos padėtys galimos
314 label_new_statuses_allowed: Naujos padėtys galimos
313 label_all: visi
315 label_all: visi
314 label_none: niekas
316 label_none: niekas
315 label_nobody: niekas
317 label_nobody: niekas
316 label_next: Kitas
318 label_next: Kitas
317 label_previous: Ankstesnis
319 label_previous: Ankstesnis
318 label_used_by: Naudotas
320 label_used_by: Naudotas
319 label_details: Detalės
321 label_details: Detalės
320 label_add_note: Pridėkite pastabą
322 label_add_note: Pridėkite pastabą
321 label_per_page: Per puslapį
323 label_per_page: Per puslapį
322 label_calendar: Kalendorius
324 label_calendar: Kalendorius
323 label_months_from: mėnesiai nuo
325 label_months_from: mėnesiai nuo
324 label_gantt: Gantt
326 label_gantt: Gantt
325 label_internal: Vidinis
327 label_internal: Vidinis
326 label_last_changes: paskutiniai %d, pokyčiai
328 label_last_changes: paskutiniai %d, pokyčiai
327 label_change_view_all: Peržiūrėti visus pakeitimus
329 label_change_view_all: Peržiūrėti visus pakeitimus
328 label_personalize_page: Suasmeninti šį puslapį
330 label_personalize_page: Suasmeninti šį puslapį
329 label_comment: Komentaras
331 label_comment: Komentaras
330 label_comment_plural: Komentarai
332 label_comment_plural: Komentarai
331 label_comment_add: Pridėkite komentarą
333 label_comment_add: Pridėkite komentarą
332 label_comment_added: Komentaras pridėtas
334 label_comment_added: Komentaras pridėtas
333 label_comment_delete: Pašalinkite komentarus
335 label_comment_delete: Pašalinkite komentarus
334 label_query: Užklausa
336 label_query: Užklausa
335 label_query_plural: Užklausos
337 label_query_plural: Užklausos
336 label_query_new: Nauja užklausa
338 label_query_new: Nauja užklausa
337 label_filter_add: Pridėti filtrą
339 label_filter_add: Pridėti filtrą
338 label_filter_plural: Filtrai
340 label_filter_plural: Filtrai
339 label_equals: yra
341 label_equals: yra
340 label_not_equals: nėra
342 label_not_equals: nėra
341 label_in_less_than: mažiau negu
343 label_in_less_than: mažiau negu
342 label_in_more_than: daugiau negu
344 label_in_more_than: daugiau negu
343 label_in: in
345 label_in: in
344 label_today: šiandien
346 label_today: šiandien
345 label_this_week: šią savaitę
347 label_this_week: šią savaitę
346 label_less_than_ago: mažiau negu dienomis prieš
348 label_less_than_ago: mažiau negu dienomis prieš
347 label_more_than_ago: daugiau negu dienomis prieš
349 label_more_than_ago: daugiau negu dienomis prieš
348 label_ago: dienomis prieš
350 label_ago: dienomis prieš
349 label_contains: turi savyje
351 label_contains: turi savyje
350 label_not_contains: neturi savyje
352 label_not_contains: neturi savyje
351 label_day_plural: dienos
353 label_day_plural: dienos
352 label_repository: Saugykla
354 label_repository: Saugykla
353 label_browse: Naršyti
355 label_browse: Naršyti
354 label_modification: %d pakeitimas
356 label_modification: %d pakeitimas
355 label_modification_plural: %d pakeitimai
357 label_modification_plural: %d pakeitimai
356 label_revision: Revizija
358 label_revision: Revizija
357 label_revision_plural: Revizijos
359 label_revision_plural: Revizijos
358 label_added: pridėtas
360 label_added: pridėtas
359 label_modified: pakeistas
361 label_modified: pakeistas
360 label_deleted: pašalintas
362 label_deleted: pašalintas
361 label_latest_revision: Paskutinė revizija
363 label_latest_revision: Paskutinė revizija
362 label_latest_revision_plural: Paskutinės revizijos
364 label_latest_revision_plural: Paskutinės revizijos
363 label_view_revisions: Pežiūrėti revizijas
365 label_view_revisions: Pežiūrėti revizijas
364 label_max_size: Maksimalus dydis
366 label_max_size: Maksimalus dydis
365 label_on: 'ant'
367 label_on: 'ant'
366 label_sort_highest: Perkelti į viršūnę
368 label_sort_highest: Perkelti į viršūnę
367 label_sort_higher: Perkelti į viršų
369 label_sort_higher: Perkelti į viršų
368 label_sort_lower: Perkelti žemyn
370 label_sort_lower: Perkelti žemyn
369 label_sort_lowest: Perkelti į apačią
371 label_sort_lowest: Perkelti į apačią
370 label_roadmap: Veiklos grafikas
372 label_roadmap: Veiklos grafikas
371 label_roadmap_due_in: Baigiama
373 label_roadmap_due_in: Baigiama
372 label_roadmap_overdue: %s vėluojama
374 label_roadmap_overdue: %s vėluojama
373 label_roadmap_no_issues: Jokios svarstomos problemos šiai versijai
375 label_roadmap_no_issues: Jokios svarstomos problemos šiai versijai
374 label_search: Ieškoti
376 label_search: Ieškoti
375 label_result_plural: Rezultatai
377 label_result_plural: Rezultatai
376 label_all_words: Visi žodžiai
378 label_all_words: Visi žodžiai
377 label_wiki: Wiki
379 label_wiki: Wiki
378 label_wiki_edit: Wiki redakcija
380 label_wiki_edit: Wiki redakcija
379 label_wiki_edit_plural: Wiki redakcijos
381 label_wiki_edit_plural: Wiki redakcijos
380 label_wiki_page: Wiki puslapis
382 label_wiki_page: Wiki puslapis
381 label_wiki_page_plural: Wiki puslapiai
383 label_wiki_page_plural: Wiki puslapiai
382 label_index_by_title: Indeksas prie pavadinimo
384 label_index_by_title: Indeksas prie pavadinimo
383 label_index_by_date: Indeksas prie datos
385 label_index_by_date: Indeksas prie datos
384 label_current_version: Einamoji versija
386 label_current_version: Einamoji versija
385 label_preview: Peržiūra
387 label_preview: Peržiūra
386 label_feed_plural: Įeitys(Feeds)
388 label_feed_plural: Įeitys(Feeds)
387 label_changes_details: Visų pakeitimų detalės
389 label_changes_details: Visų pakeitimų detalės
388 label_issue_tracking: Svarstomų problemų sekimas
390 label_issue_tracking: Svarstomų problemų sekimas
389 label_spent_time: Sugaištas laikas
391 label_spent_time: Sugaištas laikas
390 label_f_hour: %.2f valanda
392 label_f_hour: %.2f valanda
391 label_f_hour_plural: %.2f valandų
393 label_f_hour_plural: %.2f valandų
392 label_time_tracking: Laiko sekimas
394 label_time_tracking: Laiko sekimas
393 label_change_plural: Pakeitimai
395 label_change_plural: Pakeitimai
394 label_statistics: Statistika
396 label_statistics: Statistika
395 label_commits_per_month: Paveda(commit) per mėnesį
397 label_commits_per_month: Paveda(commit) per mėnesį
396 label_commits_per_author: Autoriaus pavedos(commit)
398 label_commits_per_author: Autoriaus pavedos(commit)
397 label_view_diff: Skirtumų peržiūra
399 label_view_diff: Skirtumų peržiūra
398 label_diff_inline: įterptas
400 label_diff_inline: įterptas
399 label_diff_side_by_side: šalia
401 label_diff_side_by_side: šalia
400 label_options: Pasirinkimai
402 label_options: Pasirinkimai
401 label_copy_workflow_from: Kopijuoti darbų eiga iš
403 label_copy_workflow_from: Kopijuoti darbų eiga iš
402 label_permissions_report: Leidimų pranešimas
404 label_permissions_report: Leidimų pranešimas
403 label_watched_issues: Stebėtos svarstomos problemos
405 label_watched_issues: Stebėtos svarstomos problemos
404 label_related_issues: Susijusios svarstomos problemos
406 label_related_issues: Susijusios svarstomos problemos
405 label_applied_status: Taikomoji padėtis
407 label_applied_status: Taikomoji padėtis
406 label_loading: Kraunama...
408 label_loading: Kraunama...
407 label_relation_new: Naujas ryšys
409 label_relation_new: Naujas ryšys
408 label_relation_delete: Pašalinkite ryšį
410 label_relation_delete: Pašalinkite ryšį
409 label_relates_to: susietas su
411 label_relates_to: susietas su
410 label_duplicates: dublikatai
412 label_duplicates: dublikatai
411 label_blocks: blokai
413 label_blocks: blokai
412 label_blocked_by: blokuotas
414 label_blocked_by: blokuotas
413 label_precedes: įvyksta pirma
415 label_precedes: įvyksta pirma
414 label_follows: seka
416 label_follows: seka
415 label_end_to_start: užbaigti, kad pradėti
417 label_end_to_start: užbaigti, kad pradėti
416 label_end_to_end: užbaigti, kad pabaigti
418 label_end_to_end: užbaigti, kad pabaigti
417 label_start_to_start: pradėkite pradėti
419 label_start_to_start: pradėkite pradėti
418 label_start_to_end: pradėkite užbaigti
420 label_start_to_end: pradėkite užbaigti
419 label_stay_logged_in: Likti prisijungus
421 label_stay_logged_in: Likti prisijungus
420 label_disabled: išjungta(as)
422 label_disabled: išjungta(as)
421 label_show_completed_versions: Parodyti užbaigtas versijas
423 label_show_completed_versions: Parodyti užbaigtas versijas
422 label_me:
424 label_me:
423 label_board: Forumas
425 label_board: Forumas
424 label_board_new: Naujas forumas
426 label_board_new: Naujas forumas
425 label_board_plural: Forumai
427 label_board_plural: Forumai
426 label_topic_plural: Temos
428 label_topic_plural: Temos
427 label_message_plural: Pranešimai
429 label_message_plural: Pranešimai
428 label_message_last: Paskutinis pranešimas
430 label_message_last: Paskutinis pranešimas
429 label_message_new: Naujas pranešimas
431 label_message_new: Naujas pranešimas
430 label_reply_plural: Atsakymai
432 label_reply_plural: Atsakymai
431 label_send_information: Nusiųsti paskyros informaciją vartotojui
433 label_send_information: Nusiųsti paskyros informaciją vartotojui
432 label_year: Metai
434 label_year: Metai
433 label_month: Mėnuo
435 label_month: Mėnuo
434 label_week: Savaitė
436 label_week: Savaitė
435 label_date_from: Nuo
437 label_date_from: Nuo
436 label_date_to: Iki
438 label_date_to: Iki
437 label_language_based: Pagrįsta vartotojo kalba
439 label_language_based: Pagrįsta vartotojo kalba
438 label_sort_by: Rūšiuoti pagal %s
440 label_sort_by: Rūšiuoti pagal %s
439 label_send_test_email: Nusiųsti bandomąjį elektroninį laišką
441 label_send_test_email: Nusiųsti bandomąjį elektroninį laišką
440 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
441 label_module_plural: Moduliai
443 label_module_plural: Moduliai
442 label_added_time_by: Pridėjo %s prieš %s
444 label_added_time_by: Pridėjo %s prieš %s
443 label_updated_time: Atnaujinta prieš %s
445 label_updated_time: Atnaujinta prieš %s
444 label_jump_to_a_project: Šuolis į projektą...
446 label_jump_to_a_project: Šuolis į projektą...
445 label_file_plural: Bylos
447 label_file_plural: Bylos
446 label_changeset_plural: Changesets
448 label_changeset_plural: Changesets
447 label_default_columns: Numatytosios skiltys
449 label_default_columns: Numatytosios skiltys
448 label_no_change_option: (Jokio pakeitimo)
450 label_no_change_option: (Jokio pakeitimo)
449 label_bulk_edit_selected_issues: Masinis pasirinktų svarstomųjų problemų(issues) redagavimas
451 label_bulk_edit_selected_issues: Masinis pasirinktų svarstomųjų problemų(issues) redagavimas
450 label_theme: Tema
452 label_theme: Tema
451 label_default: Numatyta(as)
453 label_default: Numatyta(as)
452 label_search_titles_only: Ieškoti pavadinimų tiktai
454 label_search_titles_only: Ieškoti pavadinimų tiktai
453 label_user_mail_option_all: "Bet kokiam įvykiui visuose mano projektuose"
455 label_user_mail_option_all: "Bet kokiam įvykiui visuose mano projektuose"
454 label_user_mail_option_selected: "Bet kokiam įvykiui tiktai pasirinktuose projektuose ..."
456 label_user_mail_option_selected: "Bet kokiam įvykiui tiktai pasirinktuose projektuose ..."
455 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 į"
456 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"
457 label_registration_activation_by_email: "paskyros aktyvacija per e-paštą"
459 label_registration_activation_by_email: "paskyros aktyvacija per e-paštą"
458 label_registration_manual_activation: "rankinė paskyros aktyvacija"
460 label_registration_manual_activation: "rankinė paskyros aktyvacija"
459 label_registration_automatic_activation: "automatinė paskyros aktyvacija"
461 label_registration_automatic_activation: "automatinė paskyros aktyvacija"
460
462
461 button_login: Registruotis
463 button_login: Registruotis
462 button_submit: Pateikti
464 button_submit: Pateikti
463 button_save: Išsaugoti
465 button_save: Išsaugoti
464 button_check_all: Žymėti visus
466 button_check_all: Žymėti visus
465 button_uncheck_all: Atžymėti visus
467 button_uncheck_all: Atžymėti visus
466 button_delete: Trinti
468 button_delete: Trinti
467 button_create: Sukurti
469 button_create: Sukurti
468 button_test: Testas
470 button_test: Testas
469 button_edit: Redaguoti
471 button_edit: Redaguoti
470 button_add: Pridėti
472 button_add: Pridėti
471 button_change: Keisti
473 button_change: Keisti
472 button_apply: Pritaikyti
474 button_apply: Pritaikyti
473 button_clear: Išvalyti
475 button_clear: Išvalyti
474 button_lock: Rakinti
476 button_lock: Rakinti
475 button_unlock: Atrakinti
477 button_unlock: Atrakinti
476 button_download: Atsisiųsti
478 button_download: Atsisiųsti
477 button_list: Sąrašas
479 button_list: Sąrašas
478 button_view: Žiūrėti
480 button_view: Žiūrėti
479 button_move: Perkelti
481 button_move: Perkelti
480 button_back: Atgal
482 button_back: Atgal
481 button_cancel: Atšaukti
483 button_cancel: Atšaukti
482 button_activate: Aktyvinti
484 button_activate: Aktyvinti
483 button_sort: Rūšiuoti
485 button_sort: Rūšiuoti
484 button_log_time: Log laikas
486 button_log_time: Log laikas
485 button_rollback: Grįžti į šią versiją
487 button_rollback: Grįžti į šią versiją
486 button_watch: Stebėti
488 button_watch: Stebėti
487 button_unwatch: Nestebėti
489 button_unwatch: Nestebėti
488 button_reply: Atsakyti
490 button_reply: Atsakyti
489 button_archive: Archyvuoti
491 button_archive: Archyvuoti
490 button_unarchive: Išpakuoti
492 button_unarchive: Išpakuoti
491 button_reset: Reset
493 button_reset: Reset
492 button_rename: Pervadinti
494 button_rename: Pervadinti
493 button_change_password: Pakeisti slaptažodį
495 button_change_password: Pakeisti slaptažodį
494 button_copy: Kopijuoti
496 button_copy: Kopijuoti
495 button_annotate: Rašyti pastabą
497 button_annotate: Rašyti pastabą
496
498
497 status_active: aktyvus
499 status_active: aktyvus
498 status_registered: užregistruotas
500 status_registered: užregistruotas
499 status_locked: užrakintas
501 status_locked: užrakintas
500
502
501 text_select_mail_notifications: Išrinkite veiksmus, apie kuriuos būtų pranešta elektroniniu pasštu.
503 text_select_mail_notifications: Išrinkite veiksmus, apie kuriuos būtų pranešta elektroniniu pasštu.
502 text_regexp_info: pvz. ^[A-Z0-9]+$
504 text_regexp_info: pvz. ^[A-Z0-9]+$
503 text_min_max_length_info: 0 reiškia jokių apribojimų
505 text_min_max_length_info: 0 reiškia jokių apribojimų
504 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?
505 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ą
506 text_are_you_sure: Ar esate įsitikinęs?
508 text_are_you_sure: Ar esate įsitikinęs?
507 text_journal_changed: pakeistas iš %s į %s
509 text_journal_changed: pakeistas iš %s į %s
508 text_journal_set_to: nustatyta į %s
510 text_journal_set_to: nustatyta į %s
509 text_journal_deleted: ištrintas
511 text_journal_deleted: ištrintas
510 text_tip_task_begin_day: užduotis, prasidedanti šią dieną
512 text_tip_task_begin_day: užduotis, prasidedanti šią dieną
511 text_tip_task_end_day: užduotis, pasibaigianti šią dieną
513 text_tip_task_end_day: užduotis, pasibaigianti šią dieną
512 text_tip_task_begin_end_day: užduoties prasidedanti ir pasibaigianti šią dieną
514 text_tip_task_begin_end_day: užduoties prasidedanti ir pasibaigianti šią dieną
513 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.'
514 text_caracters_maximum: %d simbolių maksimumas.
516 text_caracters_maximum: %d simbolių maksimumas.
515 text_caracters_minimum: Turi būti mažiausiai %d simbolių ilgio.
517 text_caracters_minimum: Turi būti mažiausiai %d simbolių ilgio.
516 text_length_between: Ilgis tarp %d ir %d simbolių.
518 text_length_between: Ilgis tarp %d ir %d simbolių.
517 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
518 text_unallowed_characters: Neleistini simboliai
520 text_unallowed_characters: Neleistini simboliai
519 text_comma_separated: Leistinos kelios reikšmės (atskirtos kableliu).
521 text_comma_separated: Leistinos kelios reikšmės (atskirtos kableliu).
520 text_issues_ref_in_commit_messages: Nurodymas ir fiksavimas svarstomų problemų pavedimų(commit) pranešimuose
522 text_issues_ref_in_commit_messages: Nurodymas ir fiksavimas svarstomų problemų pavedimų(commit) pranešimuose
521 text_issue_added: Svarstoma problema %s buvo pranešta.
523 text_issue_added: Svarstoma problema %s buvo pranešta.
522 text_issue_updated: Svarstoma problema %s buvo atnaujinta.
524 text_issue_updated: Svarstoma problema %s buvo atnaujinta.
523 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į?
524 text_issue_category_destroy_question: Kai kurios svarstomos problemos (%d) yra paskirtos šiai kategorijai. Ką jūs norite padaryti?
526 text_issue_category_destroy_question: Kai kurios svarstomos problemos (%d) yra paskirtos šiai kategorijai. Ką jūs norite padaryti?
525 text_issue_category_destroy_assignments: Pašalinti kategorijos užduotis
527 text_issue_category_destroy_assignments: Pašalinti kategorijos užduotis
526 text_issue_category_reassign_to: Iš naujo paskirti svarstomas problemas šiai kategorijai
528 text_issue_category_reassign_to: Iš naujo paskirti svarstomas problemas šiai kategorijai
527 text_user_mail_option: "neišrinktiems projektams, jūs tiktai gausite pranešimus apie daiktus, kuriuos jūs stebite, ar jūs esate įtrauktas į (eg. svarstomos problemos, jūs esate autorius ar įgaliotinis)."
529 text_user_mail_option: "neišrinktiems projektams, jūs tiktai gausite pranešimus apie daiktus, kuriuos jūs stebite, ar jūs esate įtrauktas į (eg. svarstomos problemos, jūs esate autorius ar įgaliotinis)."
528
530
529 default_role_manager: Vadovas
531 default_role_manager: Vadovas
530 default_role_developper: Projektuotojas
532 default_role_developper: Projektuotojas
531 default_role_reporter: Pranešėjas
533 default_role_reporter: Pranešėjas
532 default_tracker_bug: Klaida
534 default_tracker_bug: Klaida
533 default_tracker_feature: Ypatybė
535 default_tracker_feature: Ypatybė
534 default_tracker_support: Palaikymas
536 default_tracker_support: Palaikymas
535 default_issue_status_new: Nauja
537 default_issue_status_new: Nauja
536 default_issue_status_assigned: Priskirta
538 default_issue_status_assigned: Priskirta
537 default_issue_status_resolved: Išspręsta
539 default_issue_status_resolved: Išspręsta
538 default_issue_status_feedback: Grįžtamasis ryšys
540 default_issue_status_feedback: Grįžtamasis ryšys
539 default_issue_status_closed: Uždaryta
541 default_issue_status_closed: Uždaryta
540 default_issue_status_rejected: Atmesta
542 default_issue_status_rejected: Atmesta
541 default_doc_category_user: Vartotojo dokumentacija
543 default_doc_category_user: Vartotojo dokumentacija
542 default_doc_category_tech: Techniniai dokumentacija
544 default_doc_category_tech: Techniniai dokumentacija
543 default_priority_low: Žemas
545 default_priority_low: Žemas
544 default_priority_normal: Normalus
546 default_priority_normal: Normalus
545 default_priority_high: Aukštas
547 default_priority_high: Aukštas
546 default_priority_urgent: Skubus
548 default_priority_urgent: Skubus
547 default_priority_immediate: Neatidėliotinas
549 default_priority_immediate: Neatidėliotinas
548 default_activity_design: Projektavimas
550 default_activity_design: Projektavimas
549 default_activity_development: Vystymas
551 default_activity_development: Vystymas
550
552
551 enumeration_issue_priorities: Svarstomos problemos prioritetai
553 enumeration_issue_priorities: Svarstomos problemos prioritetai
552 enumeration_doc_categories: Dokumento kategorijos
554 enumeration_doc_categories: Dokumento kategorijos
553 enumeration_activities: Veiklos (laiko sekimas)
555 enumeration_activities: Veiklos (laiko sekimas)
554 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
556 notice_default_data_loaded: Default configuration successfully loaded.
558 notice_default_data_loaded: Default configuration successfully loaded.
557 label_age: Age
559 label_age: Age
558 label_general: General
560 label_general: General
559 button_update: Update
561 button_update: Update
560 setting_issues_export_limit: Issues export limit
562 setting_issues_export_limit: Issues export limit
561 label_change_properties: Change properties
563 label_change_properties: Change properties
562 text_load_default_configuration: Load the default configuration
564 text_load_default_configuration: Load the default configuration
563 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."
565 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."
564 label_repository_plural: Repositories
566 label_repository_plural: Repositories
565 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
567 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
566 label_associated_revisions: Associated revisions
568 label_associated_revisions: Associated revisions
@@ -1,566 +1,568
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_scm_error: Deze ingang of revisie bestaat niet in de repository.
72 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.
73 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
73 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
75
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"
78
77 mail_subject_lost_password: Uw redMine wachtwoord
79 mail_subject_lost_password: Uw redMine wachtwoord
78 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:'
79 mail_subject_register: redMine account activatie
81 mail_subject_register: redMine account activatie
80 mail_body_register: 'Gebruik de volgende link om Uw Redmine account te activeren:'
82 mail_body_register: 'Gebruik de volgende link om Uw Redmine account te activeren:'
81
83
82 gui_validation_error: 1 fout
84 gui_validation_error: 1 fout
83 gui_validation_error_plural: %d fouten
85 gui_validation_error_plural: %d fouten
84
86
85 field_name: Naam
87 field_name: Naam
86 field_description: Beschrijving
88 field_description: Beschrijving
87 field_summary: Samenvatting
89 field_summary: Samenvatting
88 field_is_required: Verplicht
90 field_is_required: Verplicht
89 field_firstname: Voornaam
91 field_firstname: Voornaam
90 field_lastname: Achternaam
92 field_lastname: Achternaam
91 field_mail: Email
93 field_mail: Email
92 field_filename: Bestand
94 field_filename: Bestand
93 field_filesize: Grootte
95 field_filesize: Grootte
94 field_downloads: Downloads
96 field_downloads: Downloads
95 field_author: Auteur
97 field_author: Auteur
96 field_created_on: Aangemaakt
98 field_created_on: Aangemaakt
97 field_updated_on: Gewijzigd
99 field_updated_on: Gewijzigd
98 field_field_format: Formaat
100 field_field_format: Formaat
99 field_is_for_all: Voor alle projecten
101 field_is_for_all: Voor alle projecten
100 field_possible_values: Mogelijke waarden
102 field_possible_values: Mogelijke waarden
101 field_regexp: Reguliere expressie
103 field_regexp: Reguliere expressie
102 field_min_length: Minimale lengte
104 field_min_length: Minimale lengte
103 field_max_length: Maximale lengte
105 field_max_length: Maximale lengte
104 field_value: Waarde
106 field_value: Waarde
105 field_category: Categorie
107 field_category: Categorie
106 field_title: Titel
108 field_title: Titel
107 field_project: Project
109 field_project: Project
108 field_issue: Issue
110 field_issue: Issue
109 field_status: Status
111 field_status: Status
110 field_notes: Notities
112 field_notes: Notities
111 field_is_closed: Issue gesloten
113 field_is_closed: Issue gesloten
112 field_is_default: Default
114 field_is_default: Default
113 field_tracker: Tracker
115 field_tracker: Tracker
114 field_subject: Onderwerp
116 field_subject: Onderwerp
115 field_due_date: Verwachte datum gereed
117 field_due_date: Verwachte datum gereed
116 field_assigned_to: Toegewezen aan
118 field_assigned_to: Toegewezen aan
117 field_priority: Prioriteit
119 field_priority: Prioriteit
118 field_fixed_version: Opgeloste versie
120 field_fixed_version: Opgeloste versie
119 field_user: Gebruiker
121 field_user: Gebruiker
120 field_role: Rol
122 field_role: Rol
121 field_homepage: Homepage
123 field_homepage: Homepage
122 field_is_public: Publiek
124 field_is_public: Publiek
123 field_parent: Subproject van
125 field_parent: Subproject van
124 field_is_in_chlog: Issues weergegeven in wijzigingslog
126 field_is_in_chlog: Issues weergegeven in wijzigingslog
125 field_is_in_roadmap: Issues weergegeven in roadmap
127 field_is_in_roadmap: Issues weergegeven in roadmap
126 field_login: Inloggen
128 field_login: Inloggen
127 field_mail_notification: Mail mededelingen
129 field_mail_notification: Mail mededelingen
128 field_admin: Administrateur
130 field_admin: Administrateur
129 field_last_login_on: Laatste bezoek
131 field_last_login_on: Laatste bezoek
130 field_language: Taal
132 field_language: Taal
131 field_effective_date: Datum
133 field_effective_date: Datum
132 field_password: Wachtwoord
134 field_password: Wachtwoord
133 field_new_password: Nieuw wachtwoord
135 field_new_password: Nieuw wachtwoord
134 field_password_confirmation: Bevestigen
136 field_password_confirmation: Bevestigen
135 field_version: Versie
137 field_version: Versie
136 field_type: Type
138 field_type: Type
137 field_host: Host
139 field_host: Host
138 field_port: Port
140 field_port: Port
139 field_account: Account
141 field_account: Account
140 field_base_dn: Base DN
142 field_base_dn: Base DN
141 field_attr_login: Login attribuut
143 field_attr_login: Login attribuut
142 field_attr_firstname: Voornaam attribuut
144 field_attr_firstname: Voornaam attribuut
143 field_attr_lastname: Achternaam attribuut
145 field_attr_lastname: Achternaam attribuut
144 field_attr_mail: Email attribuut
146 field_attr_mail: Email attribuut
145 field_onthefly: On-the-fly aanmaken van een gebruiker
147 field_onthefly: On-the-fly aanmaken van een gebruiker
146 field_start_date: Start
148 field_start_date: Start
147 field_done_ratio: %% Gereed
149 field_done_ratio: %% Gereed
148 field_auth_source: Authenticatiemethode
150 field_auth_source: Authenticatiemethode
149 field_hide_mail: Verberg mijn emailadres
151 field_hide_mail: Verberg mijn emailadres
150 field_comments: Commentaar
152 field_comments: Commentaar
151 field_url: URL
153 field_url: URL
152 field_start_page: Startpagina
154 field_start_page: Startpagina
153 field_subproject: Subproject
155 field_subproject: Subproject
154 field_hours: Uren
156 field_hours: Uren
155 field_activity: Activiteit
157 field_activity: Activiteit
156 field_spent_on: Datum
158 field_spent_on: Datum
157 field_identifier: Identificatiecode
159 field_identifier: Identificatiecode
158 field_is_filter: Gebruikt als een filter
160 field_is_filter: Gebruikt als een filter
159 field_issue_to_id: Gerelateerd issue
161 field_issue_to_id: Gerelateerd issue
160 field_delay: Vertraging
162 field_delay: Vertraging
161 field_assignable: Issues can be assigned to this role
163 field_assignable: Issues can be assigned to this role
162 field_redirect_existing_links: Redirect existing links
164 field_redirect_existing_links: Redirect existing links
163 field_estimated_hours: Estimated time
165 field_estimated_hours: Estimated time
164 field_default_value: Default value
166 field_default_value: Default value
165
167
166 setting_app_title: Applicatie titel
168 setting_app_title: Applicatie titel
167 setting_app_subtitle: Applicatie ondertitel
169 setting_app_subtitle: Applicatie ondertitel
168 setting_welcome_text: Welkomsttekst
170 setting_welcome_text: Welkomsttekst
169 setting_default_language: Default taal
171 setting_default_language: Default taal
170 setting_login_required: Authent. nodig
172 setting_login_required: Authent. nodig
171 setting_self_registration: Zelf-registratie toegestaan
173 setting_self_registration: Zelf-registratie toegestaan
172 setting_attachment_max_size: Attachment max. grootte
174 setting_attachment_max_size: Attachment max. grootte
173 setting_issues_export_limit: Limiet export issues
175 setting_issues_export_limit: Limiet export issues
174 setting_mail_from: Afzender mail adres
176 setting_mail_from: Afzender mail adres
175 setting_host_name: Host naam
177 setting_host_name: Host naam
176 setting_text_formatting: Tekst formaat
178 setting_text_formatting: Tekst formaat
177 setting_wiki_compression: Wiki geschiedenis comprimeren
179 setting_wiki_compression: Wiki geschiedenis comprimeren
178 setting_feeds_limit: Feed inhoud limiet
180 setting_feeds_limit: Feed inhoud limiet
179 setting_autofetch_changesets: Haal commits automatisch op
181 setting_autofetch_changesets: Haal commits automatisch op
180 setting_sys_api_enabled: Gebruik WS voor repository beheer
182 setting_sys_api_enabled: Gebruik WS voor repository beheer
181 setting_commit_ref_keywords: Referencing keywords
183 setting_commit_ref_keywords: Referencing keywords
182 setting_commit_fix_keywords: Fixing keywords
184 setting_commit_fix_keywords: Fixing keywords
183 setting_autologin: Autologin
185 setting_autologin: Autologin
184 setting_date_format: Date format
186 setting_date_format: Date format
185 setting_cross_project_issue_relations: Allow cross-project issue relations
187 setting_cross_project_issue_relations: Allow cross-project issue relations
186
188
187 label_user: Gebruiker
189 label_user: Gebruiker
188 label_user_plural: Gebruikers
190 label_user_plural: Gebruikers
189 label_user_new: Nieuwe gebruiker
191 label_user_new: Nieuwe gebruiker
190 label_project: Project
192 label_project: Project
191 label_project_new: Nieuw project
193 label_project_new: Nieuw project
192 label_project_plural: Projecten
194 label_project_plural: Projecten
193 label_project_all: Alle Projecten
195 label_project_all: Alle Projecten
194 label_project_latest: Nieuwste projecten
196 label_project_latest: Nieuwste projecten
195 label_issue: Issue
197 label_issue: Issue
196 label_issue_new: Nieuw issue
198 label_issue_new: Nieuw issue
197 label_issue_plural: Issues
199 label_issue_plural: Issues
198 label_issue_view_all: Bekijk alle issues
200 label_issue_view_all: Bekijk alle issues
199 label_document: Document
201 label_document: Document
200 label_document_new: Nieuw document
202 label_document_new: Nieuw document
201 label_document_plural: Documenten
203 label_document_plural: Documenten
202 label_role: Rol
204 label_role: Rol
203 label_role_plural: Rollen
205 label_role_plural: Rollen
204 label_role_new: Nieuwe rol
206 label_role_new: Nieuwe rol
205 label_role_and_permissions: Rollen en permissies
207 label_role_and_permissions: Rollen en permissies
206 label_member: Lid
208 label_member: Lid
207 label_member_new: Nieuw lid
209 label_member_new: Nieuw lid
208 label_member_plural: Leden
210 label_member_plural: Leden
209 label_tracker: Tracker
211 label_tracker: Tracker
210 label_tracker_plural: Trackers
212 label_tracker_plural: Trackers
211 label_tracker_new: Nieuwe tracker
213 label_tracker_new: Nieuwe tracker
212 label_workflow: Workflow
214 label_workflow: Workflow
213 label_issue_status: Issue status
215 label_issue_status: Issue status
214 label_issue_status_plural: Issue statussen
216 label_issue_status_plural: Issue statussen
215 label_issue_status_new: Nieuwe status
217 label_issue_status_new: Nieuwe status
216 label_issue_category: Issue categorie
218 label_issue_category: Issue categorie
217 label_issue_category_plural: Issue categorieën
219 label_issue_category_plural: Issue categorieën
218 label_issue_category_new: Nieuwe categorie
220 label_issue_category_new: Nieuwe categorie
219 label_custom_field: Custom veld
221 label_custom_field: Custom veld
220 label_custom_field_plural: Custom velden
222 label_custom_field_plural: Custom velden
221 label_custom_field_new: Nieuw custom veld
223 label_custom_field_new: Nieuw custom veld
222 label_enumerations: Enumeraties
224 label_enumerations: Enumeraties
223 label_enumeration_new: Nieuwe waarde
225 label_enumeration_new: Nieuwe waarde
224 label_information: Informatie
226 label_information: Informatie
225 label_information_plural: Informatie
227 label_information_plural: Informatie
226 label_please_login: Gaarne inloggen
228 label_please_login: Gaarne inloggen
227 label_register: Registreer
229 label_register: Registreer
228 label_password_lost: Wachtwoord verloren
230 label_password_lost: Wachtwoord verloren
229 label_home: Home
231 label_home: Home
230 label_my_page: Mijn pagina
232 label_my_page: Mijn pagina
231 label_my_account: Mijn account
233 label_my_account: Mijn account
232 label_my_projects: Mijn projecten
234 label_my_projects: Mijn projecten
233 label_administration: Administratie
235 label_administration: Administratie
234 label_login: Inloggen
236 label_login: Inloggen
235 label_logout: Uitloggen
237 label_logout: Uitloggen
236 label_help: Help
238 label_help: Help
237 label_reported_issues: Gemelde issues
239 label_reported_issues: Gemelde issues
238 label_assigned_to_me_issues: Aan mij toegewezen issues
240 label_assigned_to_me_issues: Aan mij toegewezen issues
239 label_last_login: Laatste bezoek
241 label_last_login: Laatste bezoek
240 label_last_updates: Laatste wijziging
242 label_last_updates: Laatste wijziging
241 label_last_updates_plural: %d laatste wijziging
243 label_last_updates_plural: %d laatste wijziging
242 label_registered_on: Geregistreerd op
244 label_registered_on: Geregistreerd op
243 label_activity: Activiteit
245 label_activity: Activiteit
244 label_new: Nieuw
246 label_new: Nieuw
245 label_logged_as: Ingelogd als
247 label_logged_as: Ingelogd als
246 label_environment: Omgeving
248 label_environment: Omgeving
247 label_authentication: Authenticatie
249 label_authentication: Authenticatie
248 label_auth_source: Authenticatie modus
250 label_auth_source: Authenticatie modus
249 label_auth_source_new: Nieuwe authenticatie modus
251 label_auth_source_new: Nieuwe authenticatie modus
250 label_auth_source_plural: Authenticatie modi
252 label_auth_source_plural: Authenticatie modi
251 label_subproject_plural: Subprojecten
253 label_subproject_plural: Subprojecten
252 label_min_max_length: Min - Max lengte
254 label_min_max_length: Min - Max lengte
253 label_list: Lijst
255 label_list: Lijst
254 label_date: Datum
256 label_date: Datum
255 label_integer: Integer
257 label_integer: Integer
256 label_boolean: Boolean
258 label_boolean: Boolean
257 label_string: Tekst
259 label_string: Tekst
258 label_text: Lange tekst
260 label_text: Lange tekst
259 label_attribute: Attribuut
261 label_attribute: Attribuut
260 label_attribute_plural: Attributen
262 label_attribute_plural: Attributen
261 label_download: %d Download
263 label_download: %d Download
262 label_download_plural: %d Downloads
264 label_download_plural: %d Downloads
263 label_no_data: Geen gegevens om te tonen
265 label_no_data: Geen gegevens om te tonen
264 label_change_status: Wijzig status
266 label_change_status: Wijzig status
265 label_history: Geschiedenis
267 label_history: Geschiedenis
266 label_attachment: Bestand
268 label_attachment: Bestand
267 label_attachment_new: Nieuw bestand
269 label_attachment_new: Nieuw bestand
268 label_attachment_delete: Verwijder bestand
270 label_attachment_delete: Verwijder bestand
269 label_attachment_plural: Bestanden
271 label_attachment_plural: Bestanden
270 label_report: Rapport
272 label_report: Rapport
271 label_report_plural: Rapporten
273 label_report_plural: Rapporten
272 label_news: Nieuws
274 label_news: Nieuws
273 label_news_new: Voeg nieuws toe
275 label_news_new: Voeg nieuws toe
274 label_news_plural: Nieuws
276 label_news_plural: Nieuws
275 label_news_latest: Laatste nieuws
277 label_news_latest: Laatste nieuws
276 label_news_view_all: Bekijk al het nieuws
278 label_news_view_all: Bekijk al het nieuws
277 label_change_log: Wijzigingslog
279 label_change_log: Wijzigingslog
278 label_settings: Instellingen
280 label_settings: Instellingen
279 label_overview: Overzicht
281 label_overview: Overzicht
280 label_version: Versie
282 label_version: Versie
281 label_version_new: Nieuwe versie
283 label_version_new: Nieuwe versie
282 label_version_plural: Versies
284 label_version_plural: Versies
283 label_confirmation: Bevestiging
285 label_confirmation: Bevestiging
284 label_export_to: Exporteer naar
286 label_export_to: Exporteer naar
285 label_read: Lees...
287 label_read: Lees...
286 label_public_projects: Publieke projecten
288 label_public_projects: Publieke projecten
287 label_open_issues: open
289 label_open_issues: open
288 label_open_issues_plural: open
290 label_open_issues_plural: open
289 label_closed_issues: gesloten
291 label_closed_issues: gesloten
290 label_closed_issues_plural: gesloten
292 label_closed_issues_plural: gesloten
291 label_total: Totaal
293 label_total: Totaal
292 label_permissions: Permissies
294 label_permissions: Permissies
293 label_current_status: Huidige status
295 label_current_status: Huidige status
294 label_new_statuses_allowed: Nieuwe statuses toegestaan
296 label_new_statuses_allowed: Nieuwe statuses toegestaan
295 label_all: alle
297 label_all: alle
296 label_none: geen
298 label_none: geen
297 label_next: Volgende
299 label_next: Volgende
298 label_previous: Vorige
300 label_previous: Vorige
299 label_used_by: Gebruikt door
301 label_used_by: Gebruikt door
300 label_details: Details
302 label_details: Details
301 label_add_note: Voeg een notitie toe
303 label_add_note: Voeg een notitie toe
302 label_per_page: Per pagina
304 label_per_page: Per pagina
303 label_calendar: Kalender
305 label_calendar: Kalender
304 label_months_from: maanden vanaf
306 label_months_from: maanden vanaf
305 label_gantt: Gantt
307 label_gantt: Gantt
306 label_internal: Intern
308 label_internal: Intern
307 label_last_changes: laatste %d wijzigingen
309 label_last_changes: laatste %d wijzigingen
308 label_change_view_all: Bekijk alle wijzigingen
310 label_change_view_all: Bekijk alle wijzigingen
309 label_personalize_page: Personaliseer deze pagina
311 label_personalize_page: Personaliseer deze pagina
310 label_comment: Commentaar
312 label_comment: Commentaar
311 label_comment_plural: Commentaar
313 label_comment_plural: Commentaar
312 label_comment_add: Voeg commentaar toe
314 label_comment_add: Voeg commentaar toe
313 label_comment_added: Commentaar toegevoegd
315 label_comment_added: Commentaar toegevoegd
314 label_comment_delete: Verwijder commentaar
316 label_comment_delete: Verwijder commentaar
315 label_query: Eigen zoekvraag
317 label_query: Eigen zoekvraag
316 label_query_plural: Eigen zoekvragen
318 label_query_plural: Eigen zoekvragen
317 label_query_new: Nieuwe zoekvraag
319 label_query_new: Nieuwe zoekvraag
318 label_filter_add: Voeg filter toe
320 label_filter_add: Voeg filter toe
319 label_filter_plural: Filters
321 label_filter_plural: Filters
320 label_equals: is gelijk
322 label_equals: is gelijk
321 label_not_equals: is niet gelijk
323 label_not_equals: is niet gelijk
322 label_in_less_than: in minder dan
324 label_in_less_than: in minder dan
323 label_in_more_than: in meer dan
325 label_in_more_than: in meer dan
324 label_in: in
326 label_in: in
325 label_today: vandaag
327 label_today: vandaag
326 label_this_week: this week
328 label_this_week: this week
327 label_less_than_ago: minder dan dagen geleden
329 label_less_than_ago: minder dan dagen geleden
328 label_more_than_ago: meer dan dagen geleden
330 label_more_than_ago: meer dan dagen geleden
329 label_ago: dagen geleden
331 label_ago: dagen geleden
330 label_contains: bevat
332 label_contains: bevat
331 label_not_contains: bevat niet
333 label_not_contains: bevat niet
332 label_day_plural: dagen
334 label_day_plural: dagen
333 label_repository: Repository
335 label_repository: Repository
334 label_browse: Blader
336 label_browse: Blader
335 label_modification: %d wijziging
337 label_modification: %d wijziging
336 label_modification_plural: %d wijzigingen
338 label_modification_plural: %d wijzigingen
337 label_revision: Revisie
339 label_revision: Revisie
338 label_revision_plural: Revisies
340 label_revision_plural: Revisies
339 label_added: toegevoegd
341 label_added: toegevoegd
340 label_modified: gewijzigd
342 label_modified: gewijzigd
341 label_deleted: verwijderd
343 label_deleted: verwijderd
342 label_latest_revision: Meest recente revisie
344 label_latest_revision: Meest recente revisie
343 label_latest_revision_plural: Meest recente revisies
345 label_latest_revision_plural: Meest recente revisies
344 label_view_revisions: Bekijk revisies
346 label_view_revisions: Bekijk revisies
345 label_max_size: Maximum grootte
347 label_max_size: Maximum grootte
346 label_on: 'van'
348 label_on: 'van'
347 label_sort_highest: Verplaats naar begin
349 label_sort_highest: Verplaats naar begin
348 label_sort_higher: Verplaats naar boven
350 label_sort_higher: Verplaats naar boven
349 label_sort_lower: Verplaats naar beneden
351 label_sort_lower: Verplaats naar beneden
350 label_sort_lowest: Verplaats naar eind
352 label_sort_lowest: Verplaats naar eind
351 label_roadmap: Roadmap
353 label_roadmap: Roadmap
352 label_roadmap_due_in: Due in
354 label_roadmap_due_in: Due in
353 label_roadmap_overdue: %s late
355 label_roadmap_overdue: %s late
354 label_roadmap_no_issues: Geen issues voor deze versie
356 label_roadmap_no_issues: Geen issues voor deze versie
355 label_search: Zoeken
357 label_search: Zoeken
356 label_result_plural: Resultaten
358 label_result_plural: Resultaten
357 label_all_words: Alle woorden
359 label_all_words: Alle woorden
358 label_wiki: Wiki
360 label_wiki: Wiki
359 label_wiki_edit: Wiki edit
361 label_wiki_edit: Wiki edit
360 label_wiki_edit_plural: Wiki edits
362 label_wiki_edit_plural: Wiki edits
361 label_wiki_page: Wiki page
363 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
364 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Index by title
365 label_index_by_title: Index by title
364 label_index_by_date: Index by date
366 label_index_by_date: Index by date
365 label_current_version: Huidige versie
367 label_current_version: Huidige versie
366 label_preview: Testweergave
368 label_preview: Testweergave
367 label_feed_plural: Feeds
369 label_feed_plural: Feeds
368 label_changes_details: Details van alle wijzigingen
370 label_changes_details: Details van alle wijzigingen
369 label_issue_tracking: Issue tracking
371 label_issue_tracking: Issue tracking
370 label_spent_time: Gespendeerde tijd
372 label_spent_time: Gespendeerde tijd
371 label_f_hour: %.2f uur
373 label_f_hour: %.2f uur
372 label_f_hour_plural: %.2f uren
374 label_f_hour_plural: %.2f uren
373 label_time_tracking: Tijd tracking
375 label_time_tracking: Tijd tracking
374 label_change_plural: Wijzigingen
376 label_change_plural: Wijzigingen
375 label_statistics: Statistieken
377 label_statistics: Statistieken
376 label_commits_per_month: Commits per maand
378 label_commits_per_month: Commits per maand
377 label_commits_per_author: Commits per auteur
379 label_commits_per_author: Commits per auteur
378 label_view_diff: Bekijk verschillen
380 label_view_diff: Bekijk verschillen
379 label_diff_inline: inline
381 label_diff_inline: inline
380 label_diff_side_by_side: naast elkaar
382 label_diff_side_by_side: naast elkaar
381 label_options: Opties
383 label_options: Opties
382 label_copy_workflow_from: Kopieer workflow van
384 label_copy_workflow_from: Kopieer workflow van
383 label_permissions_report: Permissies rapport
385 label_permissions_report: Permissies rapport
384 label_watched_issues: Gemonitorde issues
386 label_watched_issues: Gemonitorde issues
385 label_related_issues: Gerelateerde issues
387 label_related_issues: Gerelateerde issues
386 label_applied_status: Toegekende status
388 label_applied_status: Toegekende status
387 label_loading: Laden...
389 label_loading: Laden...
388 label_relation_new: Nieuwe relatie
390 label_relation_new: Nieuwe relatie
389 label_relation_delete: Verwijder relatie
391 label_relation_delete: Verwijder relatie
390 label_relates_to: gerelateerd aan
392 label_relates_to: gerelateerd aan
391 label_duplicates: dupliceert
393 label_duplicates: dupliceert
392 label_blocks: blokkeert
394 label_blocks: blokkeert
393 label_blocked_by: geblokkeerd door
395 label_blocked_by: geblokkeerd door
394 label_precedes: gaat vooraf aan
396 label_precedes: gaat vooraf aan
395 label_follows: volgt op
397 label_follows: volgt op
396 label_end_to_start: eind tot start
398 label_end_to_start: eind tot start
397 label_end_to_end: eind tot eind
399 label_end_to_end: eind tot eind
398 label_start_to_start: start tot start
400 label_start_to_start: start tot start
399 label_start_to_end: start tot eind
401 label_start_to_end: start tot eind
400 label_stay_logged_in: Blijf ingelogd
402 label_stay_logged_in: Blijf ingelogd
401 label_disabled: uitgeschakeld
403 label_disabled: uitgeschakeld
402 label_show_completed_versions: Toon afgeronde versies
404 label_show_completed_versions: Toon afgeronde versies
403 label_me: ik
405 label_me: ik
404 label_board: Forum
406 label_board: Forum
405 label_board_new: Nieuw forum
407 label_board_new: Nieuw forum
406 label_board_plural: Forums
408 label_board_plural: Forums
407 label_topic_plural: Onderwerpen
409 label_topic_plural: Onderwerpen
408 label_message_plural: Berichten
410 label_message_plural: Berichten
409 label_message_last: Laatste bericht
411 label_message_last: Laatste bericht
410 label_message_new: Nieuw bericht
412 label_message_new: Nieuw bericht
411 label_reply_plural: Antwoorden
413 label_reply_plural: Antwoorden
412 label_send_information: Send account information to the user
414 label_send_information: Send account information to the user
413 label_year: Year
415 label_year: Year
414 label_month: Month
416 label_month: Month
415 label_week: Week
417 label_week: Week
416 label_date_from: From
418 label_date_from: From
417 label_date_to: To
419 label_date_to: To
418 label_language_based: Language based
420 label_language_based: Language based
419 label_sort_by: Sort by %s
421 label_sort_by: Sort by %s
420 label_send_test_email: Send a test email
422 label_send_test_email: Send a test email
421 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
422 label_module_plural: Modules
424 label_module_plural: Modules
423 label_added_time_by: Added by %s %s ago
425 label_added_time_by: Added by %s %s ago
424 label_updated_time: Updated %s ago
426 label_updated_time: Updated %s ago
425 label_jump_to_a_project: Jump to a project...
427 label_jump_to_a_project: Jump to a project...
426
428
427 button_login: Inloggen
429 button_login: Inloggen
428 button_submit: Toevoegen
430 button_submit: Toevoegen
429 button_save: Bewaren
431 button_save: Bewaren
430 button_check_all: Selecteer alle
432 button_check_all: Selecteer alle
431 button_uncheck_all: Deselecteer alle
433 button_uncheck_all: Deselecteer alle
432 button_delete: Verwijder
434 button_delete: Verwijder
433 button_create: Maak
435 button_create: Maak
434 button_test: Test
436 button_test: Test
435 button_edit: Bewerk
437 button_edit: Bewerk
436 button_add: Voeg toe
438 button_add: Voeg toe
437 button_change: Wijzig
439 button_change: Wijzig
438 button_apply: Pas toe
440 button_apply: Pas toe
439 button_clear: Leeg maken
441 button_clear: Leeg maken
440 button_lock: Lock
442 button_lock: Lock
441 button_unlock: Unlock
443 button_unlock: Unlock
442 button_download: Download
444 button_download: Download
443 button_list: Lijst
445 button_list: Lijst
444 button_view: Bekijken
446 button_view: Bekijken
445 button_move: Verplaatsen
447 button_move: Verplaatsen
446 button_back: Terug
448 button_back: Terug
447 button_cancel: Annuleer
449 button_cancel: Annuleer
448 button_activate: Activeer
450 button_activate: Activeer
449 button_sort: Sorteer
451 button_sort: Sorteer
450 button_log_time: Log tijd
452 button_log_time: Log tijd
451 button_rollback: Rollback naar deze versie
453 button_rollback: Rollback naar deze versie
452 button_watch: Monitor
454 button_watch: Monitor
453 button_unwatch: Niet meer monitoren
455 button_unwatch: Niet meer monitoren
454 button_reply: Antwoord
456 button_reply: Antwoord
455 button_archive: Archive
457 button_archive: Archive
456 button_unarchive: Unarchive
458 button_unarchive: Unarchive
457 button_reset: Reset
459 button_reset: Reset
458 button_rename: Rename
460 button_rename: Rename
459
461
460 status_active: Actief
462 status_active: Actief
461 status_registered: geregistreerd
463 status_registered: geregistreerd
462 status_locked: gelockt
464 status_locked: gelockt
463
465
464 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.
465 text_regexp_info: bv. ^[A-Z0-9]+$
467 text_regexp_info: bv. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 betekent geen restrictie
468 text_min_max_length_info: 0 betekent geen restrictie
467 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 ?
468 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
469 text_are_you_sure: Weet U het zeker ?
471 text_are_you_sure: Weet U het zeker ?
470 text_journal_changed: gewijzigd van %s naar %s
472 text_journal_changed: gewijzigd van %s naar %s
471 text_journal_set_to: ingesteld op %s
473 text_journal_set_to: ingesteld op %s
472 text_journal_deleted: verwijderd
474 text_journal_deleted: verwijderd
473 text_tip_task_begin_day: taak die op deze dag begint
475 text_tip_task_begin_day: taak die op deze dag begint
474 text_tip_task_end_day: taak die op deze dag eindigt
476 text_tip_task_end_day: taak die op deze dag eindigt
475 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
476 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.'
477 text_caracters_maximum: %d van maximum aantal tekens.
479 text_caracters_maximum: %d van maximum aantal tekens.
478 text_length_between: Lengte tussen %d en %d tekens.
480 text_length_between: Lengte tussen %d en %d tekens.
479 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
481 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
480 text_unallowed_characters: Niet toegestane tekens
482 text_unallowed_characters: Niet toegestane tekens
481 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
483 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
482 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
483 text_issue_added: Issue %s is gerapporteerd.
485 text_issue_added: Issue %s is gerapporteerd.
484 text_issue_updated: Issue %s is gewijzigd.
486 text_issue_updated: Issue %s is gewijzigd.
485 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 ?
486 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 ?
487 text_issue_category_destroy_assignments: Remove category assignments
489 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_reassign_to: Reassing issues to this category
490 text_issue_category_reassign_to: Reassing issues to this category
489
491
490 default_role_manager: Manager
492 default_role_manager: Manager
491 default_role_developper: Ontwikkelaar
493 default_role_developper: Ontwikkelaar
492 default_role_reporter: Rapporteur
494 default_role_reporter: Rapporteur
493 default_tracker_bug: Bug
495 default_tracker_bug: Bug
494 default_tracker_feature: Feature
496 default_tracker_feature: Feature
495 default_tracker_support: Support
497 default_tracker_support: Support
496 default_issue_status_new: Nieuw
498 default_issue_status_new: Nieuw
497 default_issue_status_assigned: Toegewezen
499 default_issue_status_assigned: Toegewezen
498 default_issue_status_resolved: Opgelost
500 default_issue_status_resolved: Opgelost
499 default_issue_status_feedback: Terugkoppeling
501 default_issue_status_feedback: Terugkoppeling
500 default_issue_status_closed: Gesloten
502 default_issue_status_closed: Gesloten
501 default_issue_status_rejected: Afgewezen
503 default_issue_status_rejected: Afgewezen
502 default_doc_category_user: Gebruikersdocumentatie
504 default_doc_category_user: Gebruikersdocumentatie
503 default_doc_category_tech: Technische documentatie
505 default_doc_category_tech: Technische documentatie
504 default_priority_low: Laag
506 default_priority_low: Laag
505 default_priority_normal: Normaal
507 default_priority_normal: Normaal
506 default_priority_high: Hoog
508 default_priority_high: Hoog
507 default_priority_urgent: Spoed
509 default_priority_urgent: Spoed
508 default_priority_immediate: Onmiddellijk
510 default_priority_immediate: Onmiddellijk
509 default_activity_design: Design
511 default_activity_design: Design
510 default_activity_development: Development
512 default_activity_development: Development
511
513
512 enumeration_issue_priorities: Issue prioriteiten
514 enumeration_issue_priorities: Issue prioriteiten
513 enumeration_doc_categories: Document categorieën
515 enumeration_doc_categories: Document categorieën
514 enumeration_activities: Activiteiten (tijd tracking)
516 enumeration_activities: Activiteiten (tijd tracking)
515 text_comma_separated: Multiple values allowed (comma separated).
517 text_comma_separated: Multiple values allowed (comma separated).
516 label_file_plural: Files
518 label_file_plural: Files
517 label_changeset_plural: Changesets
519 label_changeset_plural: Changesets
518 field_column_names: Columns
520 field_column_names: Columns
519 label_default_columns: Default columns
521 label_default_columns: Default columns
520 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
521 setting_repositories_encodings: Repositories encodings
523 setting_repositories_encodings: Repositories encodings
522 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."
523 label_bulk_edit_selected_issues: Bulk edit selected issues
525 label_bulk_edit_selected_issues: Bulk edit selected issues
524 label_no_change_option: (No change)
526 label_no_change_option: (No change)
525 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."
526 label_theme: Theme
528 label_theme: Theme
527 label_default: Default
529 label_default: Default
528 label_search_titles_only: Search titles only
530 label_search_titles_only: Search titles only
529 label_nobody: nobody
531 label_nobody: nobody
530 button_change_password: Change password
532 button_change_password: Change password
531 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)."
532 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..."
533 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"
534 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"
535 setting_emails_footer: Emails footer
537 setting_emails_footer: Emails footer
536 label_float: Float
538 label_float: Float
537 button_copy: Copy
539 button_copy: Copy
538 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
540 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
539 mail_body_account_information: Your Redmine account information
541 mail_body_account_information: Your Redmine account information
540 setting_protocol: Protocol
542 setting_protocol: Protocol
541 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"
542 setting_time_format: Time format
544 setting_time_format: Time format
543 label_registration_activation_by_email: account activation by email
545 label_registration_activation_by_email: account activation by email
544 mail_subject_account_activation_request: Redmine account activation request
546 mail_subject_account_activation_request: Redmine account activation request
545 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:'
546 label_registration_automatic_activation: automatic account activation
548 label_registration_automatic_activation: automatic account activation
547 label_registration_manual_activation: manual account activation
549 label_registration_manual_activation: manual account activation
548 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."
549 field_time_zone: Time zone
551 field_time_zone: Time zone
550 text_caracters_minimum: Must be at least %d characters long.
552 text_caracters_minimum: Must be at least %d characters long.
551 setting_bcc_recipients: Blind carbon copy recipients (bcc)
553 setting_bcc_recipients: Blind carbon copy recipients (bcc)
552 button_annotate: Annotate
554 button_annotate: Annotate
553 label_issues_by: Issues by %s
555 label_issues_by: Issues by %s
554 field_searchable: Searchable
556 field_searchable: Searchable
555 label_display_per_page: 'Per page: %s'
557 label_display_per_page: 'Per page: %s'
556 setting_per_page_options: Objects per page options
558 setting_per_page_options: Objects per page options
557 label_age: Age
559 label_age: Age
558 notice_default_data_loaded: Default configuration successfully loaded.
560 notice_default_data_loaded: Default configuration successfully loaded.
559 text_load_default_configuration: Load the default configuration
561 text_load_default_configuration: Load the default configuration
560 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."
561 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"
562 button_update: Update
564 button_update: Update
563 label_change_properties: Change properties
565 label_change_properties: Change properties
564 label_general: General
566 label_general: General
565 label_repository_plural: Repositories
567 label_repository_plural: Repositories
566 label_associated_revisions: Associated revisions
568 label_associated_revisions: Associated revisions
@@ -1,565 +1,567
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_scm_error: Wejście i/lub zmiana nie istnieje w repozytorium.
72 notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę.
71 notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę.
73
72
73 error_scm_not_found: "Wejście i/lub zmiana nie istnieje w repozytorium."
74 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
75
74 mail_subject_lost_password: Twoje hasło do redMine
76 mail_subject_lost_password: Twoje hasło do redMine
75 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:'
76 mail_subject_register: Aktywacja konta w redMine
78 mail_subject_register: Aktywacja konta w redMine
77 mail_body_register: 'W celu aktywacji Twojego konta w Redmine, użyj poniższego odnośnika:'
79 mail_body_register: 'W celu aktywacji Twojego konta w Redmine, użyj poniższego odnośnika:'
78
80
79 gui_validation_error: 1 błąd
81 gui_validation_error: 1 błąd
80 gui_validation_error_plural: %d błędów
82 gui_validation_error_plural: %d błędów
81
83
82 field_name: Nazwa
84 field_name: Nazwa
83 field_description: Opis
85 field_description: Opis
84 field_summary: Podsumowanie
86 field_summary: Podsumowanie
85 field_is_required: Wymagane
87 field_is_required: Wymagane
86 field_firstname: Imię
88 field_firstname: Imię
87 field_lastname: Nazwisko
89 field_lastname: Nazwisko
88 field_mail: Email
90 field_mail: Email
89 field_filename: Plik
91 field_filename: Plik
90 field_filesize: Rozmiar
92 field_filesize: Rozmiar
91 field_downloads: Pobrań
93 field_downloads: Pobrań
92 field_author: Autor
94 field_author: Autor
93 field_created_on: Stworzone
95 field_created_on: Stworzone
94 field_updated_on: Zmienione
96 field_updated_on: Zmienione
95 field_field_format: Format
97 field_field_format: Format
96 field_is_for_all: Dla wszystkich projektów
98 field_is_for_all: Dla wszystkich projektów
97 field_possible_values: Możliwe wartości
99 field_possible_values: Możliwe wartości
98 field_regexp: Wyrażenie regularne
100 field_regexp: Wyrażenie regularne
99 field_min_length: Minimalna długość
101 field_min_length: Minimalna długość
100 field_max_length: Maksymalna długość
102 field_max_length: Maksymalna długość
101 field_value: Wartość
103 field_value: Wartość
102 field_category: Kategoria
104 field_category: Kategoria
103 field_title: Tytuł
105 field_title: Tytuł
104 field_project: Projekt
106 field_project: Projekt
105 field_issue: Zagadnienie
107 field_issue: Zagadnienie
106 field_status: Status
108 field_status: Status
107 field_notes: Notatki
109 field_notes: Notatki
108 field_is_closed: Zagadnienie zamknięte
110 field_is_closed: Zagadnienie zamknięte
109 field_is_default: Domyślny status
111 field_is_default: Domyślny status
110 field_tracker: Typ zagadnienia
112 field_tracker: Typ zagadnienia
111 field_subject: Temat
113 field_subject: Temat
112 field_due_date: Data oddania
114 field_due_date: Data oddania
113 field_assigned_to: Przydzielony do
115 field_assigned_to: Przydzielony do
114 field_priority: Priorytet
116 field_priority: Priorytet
115 field_fixed_version: Wersja
117 field_fixed_version: Wersja
116 field_user: Użytkownik
118 field_user: Użytkownik
117 field_role: Rola
119 field_role: Rola
118 field_homepage: Strona www
120 field_homepage: Strona www
119 field_is_public: Publiczny
121 field_is_public: Publiczny
120 field_parent: Podprojekt
122 field_parent: Podprojekt
121 field_is_in_chlog: Zagadnienie pokazywane w zapisie zmian
123 field_is_in_chlog: Zagadnienie pokazywane w zapisie zmian
122 field_is_in_roadmap: Zagadnienie pokazywane na mapie
124 field_is_in_roadmap: Zagadnienie pokazywane na mapie
123 field_login: Login
125 field_login: Login
124 field_mail_notification: Powiadomienia Email
126 field_mail_notification: Powiadomienia Email
125 field_admin: Administrator
127 field_admin: Administrator
126 field_last_login_on: Ostatnie połączenie
128 field_last_login_on: Ostatnie połączenie
127 field_language: Język
129 field_language: Język
128 field_effective_date: Data
130 field_effective_date: Data
129 field_password: Hasło
131 field_password: Hasło
130 field_new_password: Nowe hasło
132 field_new_password: Nowe hasło
131 field_password_confirmation: Potwierdzenie
133 field_password_confirmation: Potwierdzenie
132 field_version: Wersja
134 field_version: Wersja
133 field_type: Typ
135 field_type: Typ
134 field_host: Host
136 field_host: Host
135 field_port: Port
137 field_port: Port
136 field_account: Konto
138 field_account: Konto
137 field_base_dn: Base DN
139 field_base_dn: Base DN
138 field_attr_login: Login atrybut
140 field_attr_login: Login atrybut
139 field_attr_firstname: Imię atrybut
141 field_attr_firstname: Imię atrybut
140 field_attr_lastname: Nazwisko atrybut
142 field_attr_lastname: Nazwisko atrybut
141 field_attr_mail: Email atrybut
143 field_attr_mail: Email atrybut
142 field_onthefly: Tworzenie użytkownika w locie
144 field_onthefly: Tworzenie użytkownika w locie
143 field_start_date: Start
145 field_start_date: Start
144 field_done_ratio: %% Wykonane
146 field_done_ratio: %% Wykonane
145 field_auth_source: Tryb identyfikacji
147 field_auth_source: Tryb identyfikacji
146 field_hide_mail: Ukryj mój adres email
148 field_hide_mail: Ukryj mój adres email
147 field_comments: Komentarz
149 field_comments: Komentarz
148 field_url: URL
150 field_url: URL
149 field_start_page: Strona startowa
151 field_start_page: Strona startowa
150 field_subproject: Podprojekt
152 field_subproject: Podprojekt
151 field_hours: Godzin
153 field_hours: Godzin
152 field_activity: Aktywność
154 field_activity: Aktywność
153 field_spent_on: Data
155 field_spent_on: Data
154 field_identifier: Identifikator
156 field_identifier: Identifikator
155 field_is_filter: Atrybut filtrowania
157 field_is_filter: Atrybut filtrowania
156 field_issue_to_id: Powiązania zagadnienia
158 field_issue_to_id: Powiązania zagadnienia
157 field_delay: Opóźnienie
159 field_delay: Opóźnienie
158 field_default_value: Domyślny
160 field_default_value: Domyślny
159
161
160 setting_app_title: Tytuł aplikacji
162 setting_app_title: Tytuł aplikacji
161 setting_app_subtitle: Podtytuł aplikacji
163 setting_app_subtitle: Podtytuł aplikacji
162 setting_welcome_text: Tekst powitalny
164 setting_welcome_text: Tekst powitalny
163 setting_default_language: Domyślny język
165 setting_default_language: Domyślny język
164 setting_login_required: Identyfikacja wymagana
166 setting_login_required: Identyfikacja wymagana
165 setting_self_registration: Własna rejestracja umożliwiona
167 setting_self_registration: Własna rejestracja umożliwiona
166 setting_attachment_max_size: Maks. rozm. załącznika
168 setting_attachment_max_size: Maks. rozm. załącznika
167 setting_issues_export_limit: Limit eksportu zagadnień
169 setting_issues_export_limit: Limit eksportu zagadnień
168 setting_mail_from: Adres email wysyłki
170 setting_mail_from: Adres email wysyłki
169 setting_host_name: Nazwa hosta
171 setting_host_name: Nazwa hosta
170 setting_text_formatting: Formatowanie tekstu
172 setting_text_formatting: Formatowanie tekstu
171 setting_wiki_compression: Kompresja historii Wiki
173 setting_wiki_compression: Kompresja historii Wiki
172 setting_feeds_limit: Limit danych RSS
174 setting_feeds_limit: Limit danych RSS
173 setting_autofetch_changesets: Auto-odświeżanie CVS
175 setting_autofetch_changesets: Auto-odświeżanie CVS
174 setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium
176 setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium
175 setting_commit_ref_keywords: Terminy odnoszące (CVS)
177 setting_commit_ref_keywords: Terminy odnoszące (CVS)
176 setting_commit_fix_keywords: Terminy ustalające (CVS)
178 setting_commit_fix_keywords: Terminy ustalające (CVS)
177 setting_autologin: Auto logowanie
179 setting_autologin: Auto logowanie
178 setting_date_format: Format daty
180 setting_date_format: Format daty
179
181
180 label_user: Użytkownik
182 label_user: Użytkownik
181 label_user_plural: Użytkownicy
183 label_user_plural: Użytkownicy
182 label_user_new: Nowy użytkownik
184 label_user_new: Nowy użytkownik
183 label_project: Projekt
185 label_project: Projekt
184 label_project_new: Nowy projekt
186 label_project_new: Nowy projekt
185 label_project_plural: Projekty
187 label_project_plural: Projekty
186 label_project_all: Wszystkie projekty
188 label_project_all: Wszystkie projekty
187 label_project_latest: Ostatnie projekty
189 label_project_latest: Ostatnie projekty
188 label_issue: Zagadnienie
190 label_issue: Zagadnienie
189 label_issue_new: Nowe zagadnienie
191 label_issue_new: Nowe zagadnienie
190 label_issue_plural: Zagadnienia
192 label_issue_plural: Zagadnienia
191 label_issue_view_all: Zobacz wszystkie zagadnienia
193 label_issue_view_all: Zobacz wszystkie zagadnienia
192 label_document: Dokument
194 label_document: Dokument
193 label_document_new: Nowy dokument
195 label_document_new: Nowy dokument
194 label_document_plural: Dokumenty
196 label_document_plural: Dokumenty
195 label_role: Rola
197 label_role: Rola
196 label_role_plural: Role
198 label_role_plural: Role
197 label_role_new: Nowa rola
199 label_role_new: Nowa rola
198 label_role_and_permissions: Role i Uprawnienia
200 label_role_and_permissions: Role i Uprawnienia
199 label_member: Uczestnik
201 label_member: Uczestnik
200 label_member_new: Nowy uczestnik
202 label_member_new: Nowy uczestnik
201 label_member_plural: Uczestnicy
203 label_member_plural: Uczestnicy
202 label_tracker: Typ zagadnienia
204 label_tracker: Typ zagadnienia
203 label_tracker_plural: Typy zagadnień
205 label_tracker_plural: Typy zagadnień
204 label_tracker_new: Nowy typ zagadnienia
206 label_tracker_new: Nowy typ zagadnienia
205 label_workflow: Przepływ
207 label_workflow: Przepływ
206 label_issue_status: Status zagadnienia
208 label_issue_status: Status zagadnienia
207 label_issue_status_plural: Statusy zagadnień
209 label_issue_status_plural: Statusy zagadnień
208 label_issue_status_new: Nowy status
210 label_issue_status_new: Nowy status
209 label_issue_category: Kategoria zagadnienia
211 label_issue_category: Kategoria zagadnienia
210 label_issue_category_plural: Kategorie zagadnień
212 label_issue_category_plural: Kategorie zagadnień
211 label_issue_category_new: Nowa kategoria
213 label_issue_category_new: Nowa kategoria
212 label_custom_field: Dowolne pole
214 label_custom_field: Dowolne pole
213 label_custom_field_plural: Dowolne pola
215 label_custom_field_plural: Dowolne pola
214 label_custom_field_new: Nowe dowolne pole
216 label_custom_field_new: Nowe dowolne pole
215 label_enumerations: Wyliczenia
217 label_enumerations: Wyliczenia
216 label_enumeration_new: Nowa wartość
218 label_enumeration_new: Nowa wartość
217 label_information: Informacja
219 label_information: Informacja
218 label_information_plural: Informacje
220 label_information_plural: Informacje
219 label_please_login: Zaloguj się
221 label_please_login: Zaloguj się
220 label_register: Rejestracja
222 label_register: Rejestracja
221 label_password_lost: Zapomniane hasło
223 label_password_lost: Zapomniane hasło
222 label_home: Główna
224 label_home: Główna
223 label_my_page: Moja strona
225 label_my_page: Moja strona
224 label_my_account: Moje konto
226 label_my_account: Moje konto
225 label_my_projects: Moje projekty
227 label_my_projects: Moje projekty
226 label_administration: Administracja
228 label_administration: Administracja
227 label_login: Login
229 label_login: Login
228 label_logout: Wylogowanie
230 label_logout: Wylogowanie
229 label_help: Pomoc
231 label_help: Pomoc
230 label_reported_issues: Wprowadzone zagadnienia
232 label_reported_issues: Wprowadzone zagadnienia
231 label_assigned_to_me_issues: Zagadnienia przypisane do mnie
233 label_assigned_to_me_issues: Zagadnienia przypisane do mnie
232 label_last_login: Ostatnie połączenie
234 label_last_login: Ostatnie połączenie
233 label_last_updates: Ostatnia zmieniana
235 label_last_updates: Ostatnia zmieniana
234 label_last_updates_plural: %d ostatnie zmiany
236 label_last_updates_plural: %d ostatnie zmiany
235 label_registered_on: Zarejestrowany
237 label_registered_on: Zarejestrowany
236 label_activity: Aktywność
238 label_activity: Aktywność
237 label_new: Nowy
239 label_new: Nowy
238 label_logged_as: Zalogowany jako
240 label_logged_as: Zalogowany jako
239 label_environment: Środowisko
241 label_environment: Środowisko
240 label_authentication: Identyfikacja
242 label_authentication: Identyfikacja
241 label_auth_source: Tryb identyfikacji
243 label_auth_source: Tryb identyfikacji
242 label_auth_source_new: Nowy tryb identyfikacji
244 label_auth_source_new: Nowy tryb identyfikacji
243 label_auth_source_plural: Tryby identyfikacji
245 label_auth_source_plural: Tryby identyfikacji
244 label_subproject_plural: Podprojekty
246 label_subproject_plural: Podprojekty
245 label_min_max_length: Min - Maks długość
247 label_min_max_length: Min - Maks długość
246 label_list: Lista
248 label_list: Lista
247 label_date: Data
249 label_date: Data
248 label_integer: Liczba całkowita
250 label_integer: Liczba całkowita
249 label_boolean: Wartość logiczna
251 label_boolean: Wartość logiczna
250 label_string: Tekst
252 label_string: Tekst
251 label_text: Długi tekst
253 label_text: Długi tekst
252 label_attribute: Atrybut
254 label_attribute: Atrybut
253 label_attribute_plural: Atrybuty
255 label_attribute_plural: Atrybuty
254 label_download: %d Pobranie
256 label_download: %d Pobranie
255 label_download_plural: %d Pobrania
257 label_download_plural: %d Pobrania
256 label_no_data: Brak danych do pokazania
258 label_no_data: Brak danych do pokazania
257 label_change_status: Status zmian
259 label_change_status: Status zmian
258 label_history: Historia
260 label_history: Historia
259 label_attachment: Plik
261 label_attachment: Plik
260 label_attachment_new: Nowy plik
262 label_attachment_new: Nowy plik
261 label_attachment_delete: Skasuj plik
263 label_attachment_delete: Skasuj plik
262 label_attachment_plural: Pliki
264 label_attachment_plural: Pliki
263 label_report: Raport
265 label_report: Raport
264 label_report_plural: Raporty
266 label_report_plural: Raporty
265 label_news: Wiadomość
267 label_news: Wiadomość
266 label_news_new: Dodaj wiadomość
268 label_news_new: Dodaj wiadomość
267 label_news_plural: Wiadomości
269 label_news_plural: Wiadomości
268 label_news_latest: Ostatnie wiadomości
270 label_news_latest: Ostatnie wiadomości
269 label_news_view_all: Pokaż wszystkie wiadomości
271 label_news_view_all: Pokaż wszystkie wiadomości
270 label_change_log: Lista zmian
272 label_change_log: Lista zmian
271 label_settings: Ustawienia
273 label_settings: Ustawienia
272 label_overview: Przegląd
274 label_overview: Przegląd
273 label_version: Wersja
275 label_version: Wersja
274 label_version_new: Nowa wersja
276 label_version_new: Nowa wersja
275 label_version_plural: Wersje
277 label_version_plural: Wersje
276 label_confirmation: Potwierdzenie
278 label_confirmation: Potwierdzenie
277 label_export_to: Eksportuj do
279 label_export_to: Eksportuj do
278 label_read: Czytanie...
280 label_read: Czytanie...
279 label_public_projects: Projekty publiczne
281 label_public_projects: Projekty publiczne
280 label_open_issues: otwarte
282 label_open_issues: otwarte
281 label_open_issues_plural: otwarte
283 label_open_issues_plural: otwarte
282 label_closed_issues: zamknięte
284 label_closed_issues: zamknięte
283 label_closed_issues_plural: zamknięte
285 label_closed_issues_plural: zamknięte
284 label_total: Ogółem
286 label_total: Ogółem
285 label_permissions: Uprawnienia
287 label_permissions: Uprawnienia
286 label_current_status: Obecny status
288 label_current_status: Obecny status
287 label_new_statuses_allowed: Uprawnione nowe statusy
289 label_new_statuses_allowed: Uprawnione nowe statusy
288 label_all: wszystko
290 label_all: wszystko
289 label_none: brak
291 label_none: brak
290 label_next: Następne
292 label_next: Następne
291 label_previous: Poprzednie
293 label_previous: Poprzednie
292 label_used_by: Używane przez
294 label_used_by: Używane przez
293 label_details: Szczegóły
295 label_details: Szczegóły
294 label_add_note: Dodaj notatkę
296 label_add_note: Dodaj notatkę
295 label_per_page: Na stronę
297 label_per_page: Na stronę
296 label_calendar: Kalendarz
298 label_calendar: Kalendarz
297 label_months_from: miesiące od
299 label_months_from: miesiące od
298 label_gantt: Gantt
300 label_gantt: Gantt
299 label_internal: Wewnętrzny
301 label_internal: Wewnętrzny
300 label_last_changes: ostatnie %d zmian
302 label_last_changes: ostatnie %d zmian
301 label_change_view_all: Pokaż wszystkie zmiany
303 label_change_view_all: Pokaż wszystkie zmiany
302 label_personalize_page: Personalizuj tą stronę
304 label_personalize_page: Personalizuj tą stronę
303 label_comment: Komentarz
305 label_comment: Komentarz
304 label_comment_plural: Komentarze
306 label_comment_plural: Komentarze
305 label_comment_add: Dodaj komentarz
307 label_comment_add: Dodaj komentarz
306 label_comment_added: Komentarz dodany
308 label_comment_added: Komentarz dodany
307 label_comment_delete: Usuń komentarze
309 label_comment_delete: Usuń komentarze
308 label_query: Dowolne zapytanie
310 label_query: Dowolne zapytanie
309 label_query_plural: Dowolne zapytania
311 label_query_plural: Dowolne zapytania
310 label_query_new: Nowe zapytanie
312 label_query_new: Nowe zapytanie
311 label_filter_add: Dodaj filtr
313 label_filter_add: Dodaj filtr
312 label_filter_plural: Filtry
314 label_filter_plural: Filtry
313 label_equals: jest
315 label_equals: jest
314 label_not_equals: nie jest
316 label_not_equals: nie jest
315 label_in_less_than: w mniejszych od
317 label_in_less_than: w mniejszych od
316 label_in_more_than: w większych niż
318 label_in_more_than: w większych niż
317 label_in: w
319 label_in: w
318 label_today: dzisiaj
320 label_today: dzisiaj
319 label_less_than_ago: dni mniej
321 label_less_than_ago: dni mniej
320 label_more_than_ago: dni więcej
322 label_more_than_ago: dni więcej
321 label_ago: dni temu
323 label_ago: dni temu
322 label_contains: zawiera
324 label_contains: zawiera
323 label_not_contains: nie zawiera
325 label_not_contains: nie zawiera
324 label_day_plural: dni
326 label_day_plural: dni
325 label_repository: Repozytorium
327 label_repository: Repozytorium
326 label_browse: Przegląd
328 label_browse: Przegląd
327 label_modification: %d modyfikacja
329 label_modification: %d modyfikacja
328 label_modification_plural: %d modyfikacja
330 label_modification_plural: %d modyfikacja
329 label_revision: Zmiana
331 label_revision: Zmiana
330 label_revision_plural: Zmiany
332 label_revision_plural: Zmiany
331 label_added: dodane
333 label_added: dodane
332 label_modified: zmodufikowane
334 label_modified: zmodufikowane
333 label_deleted: usunięte
335 label_deleted: usunięte
334 label_latest_revision: Ostatnia zmiana
336 label_latest_revision: Ostatnia zmiana
335 label_latest_revision_plural: Ostatnie zmiany
337 label_latest_revision_plural: Ostatnie zmiany
336 label_view_revisions: Pokaż zmiany
338 label_view_revisions: Pokaż zmiany
337 label_max_size: Maksymalny rozmiar
339 label_max_size: Maksymalny rozmiar
338 label_on: 'z'
340 label_on: 'z'
339 label_sort_highest: Przesuń na górę
341 label_sort_highest: Przesuń na górę
340 label_sort_higher: Do góry
342 label_sort_higher: Do góry
341 label_sort_lower: Do dołu
343 label_sort_lower: Do dołu
342 label_sort_lowest: Przesuń na dół
344 label_sort_lowest: Przesuń na dół
343 label_roadmap: Mapa
345 label_roadmap: Mapa
344 label_roadmap_due_in: W czasie
346 label_roadmap_due_in: W czasie
345 label_roadmap_no_issues: Brak zagadnień do tej wersji
347 label_roadmap_no_issues: Brak zagadnień do tej wersji
346 label_search: Szukaj
348 label_search: Szukaj
347 label_result_plural: Rezultatów
349 label_result_plural: Rezultatów
348 label_all_words: Wszystkie słowa
350 label_all_words: Wszystkie słowa
349 label_wiki: Wiki
351 label_wiki: Wiki
350 label_wiki_edit: Edycja wiki
352 label_wiki_edit: Edycja wiki
351 label_wiki_edit_plural: Edycje wiki
353 label_wiki_edit_plural: Edycje wiki
352 label_wiki_page: Strona wiki
354 label_wiki_page: Strona wiki
353 label_wiki_page_plural: Strony wiki
355 label_wiki_page_plural: Strony wiki
354 label_index_by_title: Indeks
356 label_index_by_title: Indeks
355 label_index_by_date: Index by date
357 label_index_by_date: Index by date
356 label_current_version: Obecna wersja
358 label_current_version: Obecna wersja
357 label_preview: Podgląd
359 label_preview: Podgląd
358 label_feed_plural: Ilość RSS
360 label_feed_plural: Ilość RSS
359 label_changes_details: Szczegóły wszystkich zmian
361 label_changes_details: Szczegóły wszystkich zmian
360 label_issue_tracking: Śledzenie zagadnień
362 label_issue_tracking: Śledzenie zagadnień
361 label_spent_time: Spędzony czas
363 label_spent_time: Spędzony czas
362 label_f_hour: %.2f godzina
364 label_f_hour: %.2f godzina
363 label_f_hour_plural: %.2f godzin
365 label_f_hour_plural: %.2f godzin
364 label_time_tracking: Śledzenie czasu
366 label_time_tracking: Śledzenie czasu
365 label_change_plural: Zmiany
367 label_change_plural: Zmiany
366 label_statistics: Statystyki
368 label_statistics: Statystyki
367 label_commits_per_month: Wrzutek CVS w miesiącu
369 label_commits_per_month: Wrzutek CVS w miesiącu
368 label_commits_per_author: Wrzutek CVS przez autora
370 label_commits_per_author: Wrzutek CVS przez autora
369 label_view_diff: Pokaż różnice
371 label_view_diff: Pokaż różnice
370 label_diff_inline: w linii
372 label_diff_inline: w linii
371 label_diff_side_by_side: obok siebie
373 label_diff_side_by_side: obok siebie
372 label_options: Opcje
374 label_options: Opcje
373 label_copy_workflow_from: Kopiuj przepływ z
375 label_copy_workflow_from: Kopiuj przepływ z
374 label_permissions_report: Raport uprawnień
376 label_permissions_report: Raport uprawnień
375 label_watched_issues: Obserwowane zagadnienia
377 label_watched_issues: Obserwowane zagadnienia
376 label_related_issues: Powiązane zagadnienia
378 label_related_issues: Powiązane zagadnienia
377 label_applied_status: Stosowany status
379 label_applied_status: Stosowany status
378 label_loading: Ładowanie...
380 label_loading: Ładowanie...
379 label_relation_new: Nowe powiązanie
381 label_relation_new: Nowe powiązanie
380 label_relation_delete: Usuń powiązanie
382 label_relation_delete: Usuń powiązanie
381 label_relates_to: powiązane z
383 label_relates_to: powiązane z
382 label_duplicates: duplikaty
384 label_duplicates: duplikaty
383 label_blocks: blokady
385 label_blocks: blokady
384 label_blocked_by: zablokowane przez
386 label_blocked_by: zablokowane przez
385 label_precedes: poprzedza
387 label_precedes: poprzedza
386 label_follows: podąża
388 label_follows: podąża
387 label_end_to_start: koniec do początku
389 label_end_to_start: koniec do początku
388 label_end_to_end: koniec do końca
390 label_end_to_end: koniec do końca
389 label_start_to_start: początek do początku
391 label_start_to_start: początek do początku
390 label_start_to_end: początek do końca
392 label_start_to_end: początek do końca
391 label_stay_logged_in: Pozostań zalogowany
393 label_stay_logged_in: Pozostań zalogowany
392 label_disabled: zablokowany
394 label_disabled: zablokowany
393 label_show_completed_versions: Pokaż kompletne wersje
395 label_show_completed_versions: Pokaż kompletne wersje
394 label_me: ja
396 label_me: ja
395 label_board: Forum
397 label_board: Forum
396 label_board_new: Nowe forum
398 label_board_new: Nowe forum
397 label_board_plural: Fora
399 label_board_plural: Fora
398 label_topic_plural: Tematy
400 label_topic_plural: Tematy
399 label_message_plural: Wiadomości
401 label_message_plural: Wiadomości
400 label_message_last: Ostatnia wiadomość
402 label_message_last: Ostatnia wiadomość
401 label_message_new: Nowa wiadomość
403 label_message_new: Nowa wiadomość
402 label_reply_plural: Odpowiedzi
404 label_reply_plural: Odpowiedzi
403 label_send_information: Wyślij informację użytkownikowi
405 label_send_information: Wyślij informację użytkownikowi
404 label_year: Rok
406 label_year: Rok
405 label_month: Miesiąc
407 label_month: Miesiąc
406 label_week: Tydzień
408 label_week: Tydzień
407 label_date_from: Z
409 label_date_from: Z
408 label_date_to: Do
410 label_date_to: Do
409 label_language_based: Na podstawie języka
411 label_language_based: Na podstawie języka
410
412
411 button_login: Login
413 button_login: Login
412 button_submit: Wyślij
414 button_submit: Wyślij
413 button_save: Zapisz
415 button_save: Zapisz
414 button_check_all: Zaznacz wszystko
416 button_check_all: Zaznacz wszystko
415 button_uncheck_all: Odznacz wszystko
417 button_uncheck_all: Odznacz wszystko
416 button_delete: Usuń
418 button_delete: Usuń
417 button_create: Stwórz
419 button_create: Stwórz
418 button_test: Testuj
420 button_test: Testuj
419 button_edit: Edytuj
421 button_edit: Edytuj
420 button_add: Dodaj
422 button_add: Dodaj
421 button_change: Zmień
423 button_change: Zmień
422 button_apply: Ustaw
424 button_apply: Ustaw
423 button_clear: Wyczyść
425 button_clear: Wyczyść
424 button_lock: Zablokuj
426 button_lock: Zablokuj
425 button_unlock: Odblokuj
427 button_unlock: Odblokuj
426 button_download: Pobierz
428 button_download: Pobierz
427 button_list: Lista
429 button_list: Lista
428 button_view: Pokaż
430 button_view: Pokaż
429 button_move: Przenieś
431 button_move: Przenieś
430 button_back: Wstecz
432 button_back: Wstecz
431 button_cancel: Anuluj
433 button_cancel: Anuluj
432 button_activate: Aktywuj
434 button_activate: Aktywuj
433 button_sort: Sortuj
435 button_sort: Sortuj
434 button_log_time: Logowanie czasu
436 button_log_time: Logowanie czasu
435 button_rollback: Przywróc do tej wersji
437 button_rollback: Przywróc do tej wersji
436 button_watch: Obserwuj
438 button_watch: Obserwuj
437 button_unwatch: Nie obserwuj
439 button_unwatch: Nie obserwuj
438 button_reply: Odpowiedz
440 button_reply: Odpowiedz
439 button_archive: Archiwizuj
441 button_archive: Archiwizuj
440 button_unarchive: Przywróc z archiwum
442 button_unarchive: Przywróc z archiwum
441
443
442 status_active: aktywny
444 status_active: aktywny
443 status_registered: zarejestrowany
445 status_registered: zarejestrowany
444 status_locked: zablokowany
446 status_locked: zablokowany
445
447
446 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.
447 text_regexp_info: np. ^[A-Z0-9]+$
449 text_regexp_info: np. ^[A-Z0-9]+$
448 text_min_max_length_info: 0 oznacza brak restrykcji
450 text_min_max_length_info: 0 oznacza brak restrykcji
449 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?
450 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
451 text_are_you_sure: Jesteś pewien ?
453 text_are_you_sure: Jesteś pewien ?
452 text_journal_changed: zmienione %s do %s
454 text_journal_changed: zmienione %s do %s
453 text_journal_set_to: ustawione na %s
455 text_journal_set_to: ustawione na %s
454 text_journal_deleted: usunięte
456 text_journal_deleted: usunięte
455 text_tip_task_begin_day: zadanie zaczynające się dzisiaj
457 text_tip_task_begin_day: zadanie zaczynające się dzisiaj
456 text_tip_task_end_day: zadanie kończące się dzisiaj
458 text_tip_task_end_day: zadanie kończące się dzisiaj
457 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
458 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.'
459 text_caracters_maximum: %d znaków maksymalnie.
461 text_caracters_maximum: %d znaków maksymalnie.
460 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.
461 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
462 text_unallowed_characters: Niedozwolone znaki
464 text_unallowed_characters: Niedozwolone znaki
463 text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
465 text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
464 text_issues_ref_in_commit_messages: Zagadnienia odnoszące i ustalające we wrzutkach CVS
466 text_issues_ref_in_commit_messages: Zagadnienia odnoszące i ustalające we wrzutkach CVS
465
467
466 default_role_manager: Kierownik
468 default_role_manager: Kierownik
467 default_role_developper: Programista
469 default_role_developper: Programista
468 default_role_reporter: Wprowadzajacy
470 default_role_reporter: Wprowadzajacy
469 default_tracker_bug: Błąd
471 default_tracker_bug: Błąd
470 default_tracker_feature: Cecha
472 default_tracker_feature: Cecha
471 default_tracker_support: Wsparcie
473 default_tracker_support: Wsparcie
472 default_issue_status_new: Nowy
474 default_issue_status_new: Nowy
473 default_issue_status_assigned: Przypisany
475 default_issue_status_assigned: Przypisany
474 default_issue_status_resolved: Rozwiązany
476 default_issue_status_resolved: Rozwiązany
475 default_issue_status_feedback: Odpowiedź
477 default_issue_status_feedback: Odpowiedź
476 default_issue_status_closed: Zamknięty
478 default_issue_status_closed: Zamknięty
477 default_issue_status_rejected: Odrzucony
479 default_issue_status_rejected: Odrzucony
478 default_doc_category_user: Dokumentacja użytkownika
480 default_doc_category_user: Dokumentacja użytkownika
479 default_doc_category_tech: Dokumentacja techniczna
481 default_doc_category_tech: Dokumentacja techniczna
480 default_priority_low: Niski
482 default_priority_low: Niski
481 default_priority_normal: Normalny
483 default_priority_normal: Normalny
482 default_priority_high: Wysoki
484 default_priority_high: Wysoki
483 default_priority_urgent: Pilny
485 default_priority_urgent: Pilny
484 default_priority_immediate: Natyczmiastowy
486 default_priority_immediate: Natyczmiastowy
485 default_activity_design: Projektowanie
487 default_activity_design: Projektowanie
486 default_activity_development: Rozwój
488 default_activity_development: Rozwój
487
489
488 enumeration_issue_priorities: Priorytety zagadnień
490 enumeration_issue_priorities: Priorytety zagadnień
489 enumeration_doc_categories: Kategorie dokumentów
491 enumeration_doc_categories: Kategorie dokumentów
490 enumeration_activities: Działania (śledzenie czasu)
492 enumeration_activities: Działania (śledzenie czasu)
491 button_rename: Zmień nazwę
493 button_rename: Zmień nazwę
492 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ć?
493 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
494 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
495 label_roadmap_overdue: %s spóźnienia
497 label_roadmap_overdue: %s spóźnienia
496 label_module_plural: Moduły
498 label_module_plural: Moduły
497 label_this_week: ten tydzień
499 label_this_week: ten tydzień
498 label_jump_to_a_project: Skocz do projektu...
500 label_jump_to_a_project: Skocz do projektu...
499 field_assignable: Zagadnienia mogą być przypisane do tej roli
501 field_assignable: Zagadnienia mogą być przypisane do tej roli
500 label_sort_by: Sortuj po %s
502 label_sort_by: Sortuj po %s
501 text_issue_updated: Zagadnienie %s zostało zaktualizowane.
503 text_issue_updated: Zagadnienie %s zostało zaktualizowane.
502 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.
503 field_redirect_existing_links: Przekierowanie istniejących odnośników
505 field_redirect_existing_links: Przekierowanie istniejących odnośników
504 text_issue_category_reassign_to: Przydziel zagadnienie do tej kategorii
506 text_issue_category_reassign_to: Przydziel zagadnienie do tej kategorii
505 notice_email_sent: Email został wysłany do %s
507 notice_email_sent: Email został wysłany do %s
506 text_issue_added: Zagadnienie %s zostało wprowadzone.
508 text_issue_added: Zagadnienie %s zostało wprowadzone.
507 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ść ?
508 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)
509 label_updated_time: Zaktualizowane %s temu
511 label_updated_time: Zaktualizowane %s temu
510 text_issue_category_destroy_assignments: Usuń przydziały kategorii
512 text_issue_category_destroy_assignments: Usuń przydziały kategorii
511 label_send_test_email: Wyślij próbny email
513 label_send_test_email: Wyślij próbny email
512 button_reset: Resetuj
514 button_reset: Resetuj
513 label_added_time_by: Dodane przez %s %s temu
515 label_added_time_by: Dodane przez %s %s temu
514 field_estimated_hours: Szacowany czas
516 field_estimated_hours: Szacowany czas
515 label_file_plural: Pliki
517 label_file_plural: Pliki
516 label_changeset_plural: Zestawienia zmian
518 label_changeset_plural: Zestawienia zmian
517 field_column_names: Nazwy kolumn
519 field_column_names: Nazwy kolumn
518 label_default_columns: Domyślne kolumny
520 label_default_columns: Domyślne kolumny
519 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ń
520 setting_repositories_encodings: Kodowanie repozytoriów
522 setting_repositories_encodings: Kodowanie repozytoriów
521 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ć."
522 label_bulk_edit_selected_issues: Zbiorowa edycja zagadnień
524 label_bulk_edit_selected_issues: Zbiorowa edycja zagadnień
523 label_no_change_option: (Bez zmian)
525 label_no_change_option: (Bez zmian)
524 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."
525 label_theme: Temat
527 label_theme: Temat
526 label_default: Domyślne
528 label_default: Domyślne
527 label_search_titles_only: Przeszukuj tylko tytuły
529 label_search_titles_only: Przeszukuj tylko tytuły
528 label_nobody: nikt
530 label_nobody: nikt
529 button_change_password: Zmień hasło
531 button_change_password: Zmień hasło
530 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)."
531 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..."
532 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"
533 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ł"
534 setting_emails_footer: Stopka e-mail
536 setting_emails_footer: Stopka e-mail
535 label_float: Liczba rzeczywista
537 label_float: Liczba rzeczywista
536 button_copy: Kopia
538 button_copy: Kopia
537 mail_body_account_information_external: Możesz użyć twojego "%s" konta do zalogowania do Redmine.
539 mail_body_account_information_external: Możesz użyć twojego "%s" konta do zalogowania do Redmine.
538 mail_body_account_information: Twoje konto w Redmine
540 mail_body_account_information: Twoje konto w Redmine
539 setting_protocol: Protokoł
541 setting_protocol: Protokoł
540 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."
541 setting_time_format: Format czasu
543 setting_time_format: Format czasu
542 label_registration_activation_by_email: aktywacja konta przez e-mail
544 label_registration_activation_by_email: aktywacja konta przez e-mail
543 mail_subject_account_activation_request: Zapytanie aktywacyjne konta Redmine
545 mail_subject_account_activation_request: Zapytanie aktywacyjne konta Redmine
544 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:'
545 label_registration_automatic_activation: automatyczna aktywacja kont
547 label_registration_automatic_activation: automatyczna aktywacja kont
546 label_registration_manual_activation: manualna aktywacja kont
548 label_registration_manual_activation: manualna aktywacja kont
547 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."
548 field_time_zone: Strefa czasowa
550 field_time_zone: Strefa czasowa
549 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.
550 setting_bcc_recipients: Odbiorcy kopii tajnej (kt/bcc)
552 setting_bcc_recipients: Odbiorcy kopii tajnej (kt/bcc)
551 button_annotate: Adnotuj
553 button_annotate: Adnotuj
552 label_issues_by: Zagadnienia wprowadzone przez %s
554 label_issues_by: Zagadnienia wprowadzone przez %s
553 field_searchable: Przeszukiwalne
555 field_searchable: Przeszukiwalne
554 label_display_per_page: 'Na stronę: %s'
556 label_display_per_page: 'Na stronę: %s'
555 setting_per_page_options: Opcje ilości obiektów na stronie
557 setting_per_page_options: Opcje ilości obiektów na stronie
556 label_age: Wiek
558 label_age: Wiek
557 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.
558 text_load_default_configuration: Załaduj domyślną konfigurację
560 text_load_default_configuration: Załaduj domyślną konfigurację
559 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."
560 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"
561 button_update: Uaktualnij
563 button_update: Uaktualnij
562 label_change_properties: Zmień właściwości
564 label_change_properties: Zmień właściwości
563 label_general: Ogólne
565 label_general: Ogólne
564 label_repository_plural: Repozytoria
566 label_repository_plural: Repozytoria
565 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
@@ -1,565 +1,567
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,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,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: sobre uma hora
10 actionview_datehelper_time_in_words_hour_about: sobre uma hora
11 actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas
12 actionview_datehelper_time_in_words_hour_about_single: sobre uma hora
12 actionview_datehelper_time_in_words_hour_about_single: sobre 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 que um minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos que 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 que um segundo
18 actionview_datehelper_time_in_words_second_less_than: menos que um segundo
19 actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos
19 actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos
20 actionview_instancetag_blank_option: Selecione
20 actionview_instancetag_blank_option: Selecione
21
21
22 activerecord_error_inclusion: nao esta incluido na lista
22 activerecord_error_inclusion: nao esta incluido na lista
23 activerecord_error_exclusion: esta reservado
23 activerecord_error_exclusion: esta reservado
24 activerecord_error_invalid: e invalido
24 activerecord_error_invalid: e invalido
25 activerecord_error_confirmation: confirmacao nao confere
25 activerecord_error_confirmation: confirmacao nao confere
26 activerecord_error_accepted: deve ser aceito
26 activerecord_error_accepted: deve ser aceito
27 activerecord_error_empty: nao pode ser vazio
27 activerecord_error_empty: nao pode ser vazio
28 activerecord_error_blank: nao pode estar em branco
28 activerecord_error_blank: nao pode estar em branco
29 activerecord_error_too_long: e muito longo
29 activerecord_error_too_long: e muito longo
30 activerecord_error_too_short: e muito comprido
30 activerecord_error_too_short: e muito comprido
31 activerecord_error_wrong_length: esta com o comprimento errado
31 activerecord_error_wrong_length: esta com o comprimento errado
32 activerecord_error_taken: ja esta examinado
32 activerecord_error_taken: ja esta examinado
33 activerecord_error_not_a_number: nao e um numero
33 activerecord_error_not_a_number: nao e um numero
34 activerecord_error_not_a_date: nao e uma data valida
34 activerecord_error_not_a_date: nao e 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: 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: 'Nao'
45 general_text_No: 'Nao'
46 general_text_Yes: 'Sim'
46 general_text_Yes: 'Sim'
47 general_text_no: 'nao'
47 general_text_no: 'nao'
48 general_text_yes: 'sim'
48 general_text_yes: 'sim'
49 general_lang_name: 'Portugues Brasileiro'
49 general_lang_name: 'Portugues Brasileiro'
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,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
53 general_day_names: Segunda,Terca,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: Usuario ou senha invalido.
57 notice_account_invalid_creditentials: Usuario ou senha invalido.
58 notice_account_password_updated: Senha foi alterada com sucesso.
58 notice_account_password_updated: Senha foi alterada com sucesso.
59 notice_account_wrong_password: Senha errada.
59 notice_account_wrong_password: Senha errada.
60 notice_account_register_done: Conta foi criada com sucesso.
60 notice_account_register_done: Conta foi criada com sucesso.
61 notice_account_unknown_email: Usuario desconhecido.
61 notice_account_unknown_email: Usuario desconhecido.
62 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
62 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
63 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
63 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
64 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
64 notice_account_activated: Sua conta foi ativada. Voce pode logar 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: Apagado com sucesso.
67 notice_successful_delete: Apagado com sucesso.
68 notice_successful_connection: Conectado com sucesso.
68 notice_successful_connection: Conectado com sucesso.
69 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
69 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
70 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
70 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
71 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
72 notice_not_authorized: You are not authorized to access this page.
71 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
73 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
75
76 error_scm_not_found: "A entrada e/ou a revisao nao existem no repositorio."
77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78
77 mail_subject_lost_password: Sua senha do redMine.
79 mail_subject_lost_password: Sua senha do redMine.
78 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:'
79 mail_subject_register: Ativacao de conta do redMine.
81 mail_subject_register: Ativacao de conta do redMine.
80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
82 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
81
83
82 gui_validation_error: 1 erro
84 gui_validation_error: 1 erro
83 gui_validation_error_plural: %d erros
85 gui_validation_error_plural: %d erros
84
86
85 field_name: Nome
87 field_name: Nome
86 field_description: Descricao
88 field_description: Descricao
87 field_summary: Sumario
89 field_summary: Sumario
88 field_is_required: Obrigatorio
90 field_is_required: Obrigatorio
89 field_firstname: Primeiro nome
91 field_firstname: Primeiro nome
90 field_lastname: Ultimo nome
92 field_lastname: Ultimo nome
91 field_mail: Email
93 field_mail: Email
92 field_filename: Arquivo
94 field_filename: Arquivo
93 field_filesize: Tamanho
95 field_filesize: Tamanho
94 field_downloads: Downloads
96 field_downloads: Downloads
95 field_author: Autor
97 field_author: Autor
96 field_created_on: Criado
98 field_created_on: Criado
97 field_updated_on: Alterado
99 field_updated_on: Alterado
98 field_field_format: Formato
100 field_field_format: Formato
99 field_is_for_all: Para todos os projetos
101 field_is_for_all: Para todos os projetos
100 field_possible_values: Possiveis valores
102 field_possible_values: Possiveis valores
101 field_regexp: Expressao regular
103 field_regexp: Expressao regular
102 field_min_length: Tamanho minimo
104 field_min_length: Tamanho minimo
103 field_max_length: Tamanho maximo
105 field_max_length: Tamanho maximo
104 field_value: Valor
106 field_value: Valor
105 field_category: Categoria
107 field_category: Categoria
106 field_title: Titulo
108 field_title: Titulo
107 field_project: Projeto
109 field_project: Projeto
108 field_issue: Tarefa
110 field_issue: Tarefa
109 field_status: Status
111 field_status: Status
110 field_notes: Notas
112 field_notes: Notas
111 field_is_closed: Tarefa fechada
113 field_is_closed: Tarefa fechada
112 field_is_default: Status padrao
114 field_is_default: Status padrao
113 field_tracker: Tipo
115 field_tracker: Tipo
114 field_subject: Titulo
116 field_subject: Titulo
115 field_due_date: Data devida
117 field_due_date: Data devida
116 field_assigned_to: Atribuido para
118 field_assigned_to: Atribuido para
117 field_priority: Prioridade
119 field_priority: Prioridade
118 field_fixed_version: Versao corrigida
120 field_fixed_version: Versao corrigida
119 field_user: Usuario
121 field_user: Usuario
120 field_role: Regra
122 field_role: Regra
121 field_homepage: Pagina inicial
123 field_homepage: Pagina inicial
122 field_is_public: Publico
124 field_is_public: Publico
123 field_parent: Sub-projeto de
125 field_parent: Sub-projeto de
124 field_is_in_chlog: Tarefas mostradas no changelog
126 field_is_in_chlog: Tarefas mostradas no changelog
125 field_is_in_roadmap: Tarefas mostradas no roadmap
127 field_is_in_roadmap: Tarefas mostradas no roadmap
126 field_login: Login
128 field_login: Login
127 field_mail_notification: Notificacoes por email
129 field_mail_notification: Notificacoes por email
128 field_admin: Administrador
130 field_admin: Administrador
129 field_last_login_on: Ultima conexao
131 field_last_login_on: Ultima conexao
130 field_language: Lingua
132 field_language: Lingua
131 field_effective_date: Data
133 field_effective_date: Data
132 field_password: Senha
134 field_password: Senha
133 field_new_password: Nova senha
135 field_new_password: Nova senha
134 field_password_confirmation: Confirmacao
136 field_password_confirmation: Confirmacao
135 field_version: Versao
137 field_version: Versao
136 field_type: Tipo
138 field_type: Tipo
137 field_host: Servidor
139 field_host: Servidor
138 field_port: Porta
140 field_port: Porta
139 field_account: Conta
141 field_account: Conta
140 field_base_dn: Base DN
142 field_base_dn: Base DN
141 field_attr_login: Atributo login
143 field_attr_login: Atributo login
142 field_attr_firstname: Atributo primeiro nome
144 field_attr_firstname: Atributo primeiro nome
143 field_attr_lastname: Atributo ultimo nome
145 field_attr_lastname: Atributo ultimo nome
144 field_attr_mail: Atributo email
146 field_attr_mail: Atributo email
145 field_onthefly: Criacao de usuario on-the-fly
147 field_onthefly: Criacao de usuario on-the-fly
146 field_start_date: Inicio
148 field_start_date: Inicio
147 field_done_ratio: %% Terminado
149 field_done_ratio: %% Terminado
148 field_auth_source: Modo de autenticacao
150 field_auth_source: Modo de autenticacao
149 field_hide_mail: Esconder meu email
151 field_hide_mail: Esconder meu email
150 field_comments: Comentario
152 field_comments: Comentario
151 field_url: URL
153 field_url: URL
152 field_start_page: Pagina inicial
154 field_start_page: Pagina inicial
153 field_subproject: Sub-projeto
155 field_subproject: Sub-projeto
154 field_hours: Horas
156 field_hours: Horas
155 field_activity: Atividade
157 field_activity: Atividade
156 field_spent_on: Data
158 field_spent_on: Data
157 field_identifier: Identificador
159 field_identifier: Identificador
158 field_is_filter: Used as a filter
160 field_is_filter: Used as a filter
159 field_issue_to_id: Related issue
161 field_issue_to_id: Related issue
160 field_delay: Delay
162 field_delay: Delay
161 field_assignable: Issues can be assigned to this role
163 field_assignable: Issues can be assigned to this role
162 field_redirect_existing_links: Redirect existing links
164 field_redirect_existing_links: Redirect existing links
163 field_estimated_hours: Estimated time
165 field_estimated_hours: Estimated time
164 field_default_value: Padrao
166 field_default_value: Padrao
165
167
166 setting_app_title: Titulo da aplicacao
168 setting_app_title: Titulo da aplicacao
167 setting_app_subtitle: Sub-titulo da aplicacao
169 setting_app_subtitle: Sub-titulo da aplicacao
168 setting_welcome_text: Texto de boa-vinda
170 setting_welcome_text: Texto de boa-vinda
169 setting_default_language: Lingua padrao
171 setting_default_language: Lingua padrao
170 setting_login_required: Autenticacao obrigatoria
172 setting_login_required: Autenticacao obrigatoria
171 setting_self_registration: Registro de si mesmo permitido
173 setting_self_registration: Registro de si mesmo permitido
172 setting_attachment_max_size: Tamanho maximo do anexo
174 setting_attachment_max_size: Tamanho maximo do anexo
173 setting_issues_export_limit: Limite de exportacao das tarefas
175 setting_issues_export_limit: Limite de exportacao das tarefas
174 setting_mail_from: Email enviado de
176 setting_mail_from: Email enviado de
175 setting_host_name: Servidor
177 setting_host_name: Servidor
176 setting_text_formatting: Formato do texto
178 setting_text_formatting: Formato do texto
177 setting_wiki_compression: Compactacao do historio do Wiki
179 setting_wiki_compression: Compactacao do historio do Wiki
178 setting_feeds_limit: Limite do Feed
180 setting_feeds_limit: Limite do Feed
179 setting_autofetch_changesets: Autofetch commits
181 setting_autofetch_changesets: Autofetch commits
180 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
182 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
181 setting_commit_ref_keywords: Referencing keywords
183 setting_commit_ref_keywords: Referencing keywords
182 setting_commit_fix_keywords: Fixing keywords
184 setting_commit_fix_keywords: Fixing keywords
183 setting_autologin: Autologin
185 setting_autologin: Autologin
184 setting_date_format: Date format
186 setting_date_format: Date format
185 setting_cross_project_issue_relations: Allow cross-project issue relations
187 setting_cross_project_issue_relations: Allow cross-project issue relations
186
188
187 label_user: Usuario
189 label_user: Usuario
188 label_user_plural: Usuarios
190 label_user_plural: Usuarios
189 label_user_new: Novo usuario
191 label_user_new: Novo usuario
190 label_project: Projeto
192 label_project: Projeto
191 label_project_new: Novo projeto
193 label_project_new: Novo projeto
192 label_project_plural: Projetos
194 label_project_plural: Projetos
193 label_project_all: All Projects
195 label_project_all: All Projects
194 label_project_latest: Ultimos projetos
196 label_project_latest: Ultimos projetos
195 label_issue: Tarefa
197 label_issue: Tarefa
196 label_issue_new: Nova tarefa
198 label_issue_new: Nova tarefa
197 label_issue_plural: Tarefas
199 label_issue_plural: Tarefas
198 label_issue_view_all: Ver todas as tarefas
200 label_issue_view_all: Ver todas as tarefas
199 label_document: Documento
201 label_document: Documento
200 label_document_new: Novo documento
202 label_document_new: Novo documento
201 label_document_plural: Documentos
203 label_document_plural: Documentos
202 label_role: Regra
204 label_role: Regra
203 label_role_plural: Regras
205 label_role_plural: Regras
204 label_role_new: Nova regra
206 label_role_new: Nova regra
205 label_role_and_permissions: Regras e permissoes
207 label_role_and_permissions: Regras e permissoes
206 label_member: Membro
208 label_member: Membro
207 label_member_new: Novo membro
209 label_member_new: Novo membro
208 label_member_plural: Membros
210 label_member_plural: Membros
209 label_tracker: Tipo
211 label_tracker: Tipo
210 label_tracker_plural: Tipos
212 label_tracker_plural: Tipos
211 label_tracker_new: Novo tipo
213 label_tracker_new: Novo tipo
212 label_workflow: Workflow
214 label_workflow: Workflow
213 label_issue_status: Status da tarefa
215 label_issue_status: Status da tarefa
214 label_issue_status_plural: Status das tarefas
216 label_issue_status_plural: Status das tarefas
215 label_issue_status_new: Novo status
217 label_issue_status_new: Novo status
216 label_issue_category: Categoria de tarefa
218 label_issue_category: Categoria de tarefa
217 label_issue_category_plural: Categorias de tarefa
219 label_issue_category_plural: Categorias de tarefa
218 label_issue_category_new: Nova categoria
220 label_issue_category_new: Nova categoria
219 label_custom_field: Campo personalizado
221 label_custom_field: Campo personalizado
220 label_custom_field_plural: Campos personalizado
222 label_custom_field_plural: Campos personalizado
221 label_custom_field_new: Novo campo personalizado
223 label_custom_field_new: Novo campo personalizado
222 label_enumerations: Enumeracao
224 label_enumerations: Enumeracao
223 label_enumeration_new: Novo valor
225 label_enumeration_new: Novo valor
224 label_information: Informacao
226 label_information: Informacao
225 label_information_plural: Informacoes
227 label_information_plural: Informacoes
226 label_please_login: Efetue login
228 label_please_login: Efetue login
227 label_register: Registre-se
229 label_register: Registre-se
228 label_password_lost: Perdi a senha
230 label_password_lost: Perdi a senha
229 label_home: Pagina inicial
231 label_home: Pagina inicial
230 label_my_page: Minha pagina
232 label_my_page: Minha pagina
231 label_my_account: Minha conta
233 label_my_account: Minha conta
232 label_my_projects: Meus projetos
234 label_my_projects: Meus projetos
233 label_administration: Administracao
235 label_administration: Administracao
234 label_login: Login
236 label_login: Login
235 label_logout: Logout
237 label_logout: Logout
236 label_help: Ajuda
238 label_help: Ajuda
237 label_reported_issues: Tarefas reportadas
239 label_reported_issues: Tarefas reportadas
238 label_assigned_to_me_issues: Tarefas atribuidas a mim
240 label_assigned_to_me_issues: Tarefas atribuidas a mim
239 label_last_login: Utima conexao
241 label_last_login: Utima conexao
240 label_last_updates: Ultima alteracao
242 label_last_updates: Ultima alteracao
241 label_last_updates_plural: %d Ultimas alteracoes
243 label_last_updates_plural: %d Ultimas alteracoes
242 label_registered_on: Registrado em
244 label_registered_on: Registrado em
243 label_activity: Atividade
245 label_activity: Atividade
244 label_new: Novo
246 label_new: Novo
245 label_logged_as: Logado como
247 label_logged_as: Logado como
246 label_environment: Ambiente
248 label_environment: Ambiente
247 label_authentication: Autenticacao
249 label_authentication: Autenticacao
248 label_auth_source: Modo de autenticacao
250 label_auth_source: Modo de autenticacao
249 label_auth_source_new: Novo modo de autenticacao
251 label_auth_source_new: Novo modo de autenticacao
250 label_auth_source_plural: Modos de autenticacao
252 label_auth_source_plural: Modos de autenticacao
251 label_subproject_plural: Sub-projetos
253 label_subproject_plural: Sub-projetos
252 label_min_max_length: Tamanho min-max
254 label_min_max_length: Tamanho min-max
253 label_list: Lista
255 label_list: Lista
254 label_date: Data
256 label_date: Data
255 label_integer: Inteiro
257 label_integer: Inteiro
256 label_boolean: Boleano
258 label_boolean: Boleano
257 label_string: Texto
259 label_string: Texto
258 label_text: Texto longo
260 label_text: Texto longo
259 label_attribute: Atributo
261 label_attribute: Atributo
260 label_attribute_plural: Atributos
262 label_attribute_plural: Atributos
261 label_download: %d Download
263 label_download: %d Download
262 label_download_plural: %d Downloads
264 label_download_plural: %d Downloads
263 label_no_data: Sem dados para mostrar
265 label_no_data: Sem dados para mostrar
264 label_change_status: Mudar status
266 label_change_status: Mudar status
265 label_history: Historico
267 label_history: Historico
266 label_attachment: Arquivo
268 label_attachment: Arquivo
267 label_attachment_new: Novo arquivo
269 label_attachment_new: Novo arquivo
268 label_attachment_delete: Apagar arquivo
270 label_attachment_delete: Apagar arquivo
269 label_attachment_plural: Arquivos
271 label_attachment_plural: Arquivos
270 label_report: Relatorio
272 label_report: Relatorio
271 label_report_plural: Relatorio
273 label_report_plural: Relatorio
272 label_news: Noticias
274 label_news: Noticias
273 label_news_new: Adicionar noticias
275 label_news_new: Adicionar noticias
274 label_news_plural: Noticias
276 label_news_plural: Noticias
275 label_news_latest: Ultimas noticias
277 label_news_latest: Ultimas noticias
276 label_news_view_all: Ver todas as noticias
278 label_news_view_all: Ver todas as noticias
277 label_change_log: Change log
279 label_change_log: Change log
278 label_settings: Ajustes
280 label_settings: Ajustes
279 label_overview: Visao geral
281 label_overview: Visao geral
280 label_version: Versao
282 label_version: Versao
281 label_version_new: Nova versao
283 label_version_new: Nova versao
282 label_version_plural: Versoes
284 label_version_plural: Versoes
283 label_confirmation: Confirmacao
285 label_confirmation: Confirmacao
284 label_export_to: Exportar para
286 label_export_to: Exportar para
285 label_read: Ler...
287 label_read: Ler...
286 label_public_projects: Projetos publicos
288 label_public_projects: Projetos publicos
287 label_open_issues: Aberto
289 label_open_issues: Aberto
288 label_open_issues_plural: Abertos
290 label_open_issues_plural: Abertos
289 label_closed_issues: Fechado
291 label_closed_issues: Fechado
290 label_closed_issues_plural: Fechados
292 label_closed_issues_plural: Fechados
291 label_total: Total
293 label_total: Total
292 label_permissions: Permissoes
294 label_permissions: Permissoes
293 label_current_status: Status atual
295 label_current_status: Status atual
294 label_new_statuses_allowed: Novo status permitido
296 label_new_statuses_allowed: Novo status permitido
295 label_all: todos
297 label_all: todos
296 label_none: nenhum
298 label_none: nenhum
297 label_next: Proximo
299 label_next: Proximo
298 label_previous: Anterior
300 label_previous: Anterior
299 label_used_by: Usado por
301 label_used_by: Usado por
300 label_details: Detalhes
302 label_details: Detalhes
301 label_add_note: Adicionar nota
303 label_add_note: Adicionar nota
302 label_per_page: Por pagina
304 label_per_page: Por pagina
303 label_calendar: Calendario
305 label_calendar: Calendario
304 label_months_from: Meses de
306 label_months_from: Meses de
305 label_gantt: Gantt
307 label_gantt: Gantt
306 label_internal: Interno
308 label_internal: Interno
307 label_last_changes: utlimas %d mudancas
309 label_last_changes: utlimas %d mudancas
308 label_change_view_all: Mostrar todas as mudancas
310 label_change_view_all: Mostrar todas as mudancas
309 label_personalize_page: Personalizar esta pagina
311 label_personalize_page: Personalizar esta pagina
310 label_comment: Comentario
312 label_comment: Comentario
311 label_comment_plural: Comentarios
313 label_comment_plural: Comentarios
312 label_comment_add: Adicionar comentario
314 label_comment_add: Adicionar comentario
313 label_comment_added: Comentario adicionado
315 label_comment_added: Comentario adicionado
314 label_comment_delete: Apagar comentario
316 label_comment_delete: Apagar comentario
315 label_query: Consulta personalizada
317 label_query: Consulta personalizada
316 label_query_plural: Consultas personalizadas
318 label_query_plural: Consultas personalizadas
317 label_query_new: Nova consulta
319 label_query_new: Nova consulta
318 label_filter_add: Adicionar filtro
320 label_filter_add: Adicionar filtro
319 label_filter_plural: Filtros
321 label_filter_plural: Filtros
320 label_equals: e
322 label_equals: e
321 label_not_equals: nao e
323 label_not_equals: nao e
322 label_in_less_than: e maior que
324 label_in_less_than: e maior que
323 label_in_more_than: e menor que
325 label_in_more_than: e menor que
324 label_in: em
326 label_in: em
325 label_today: hoje
327 label_today: hoje
326 label_this_week: this week
328 label_this_week: this week
327 label_less_than_ago: faz menos de
329 label_less_than_ago: faz menos de
328 label_more_than_ago: faz mais de
330 label_more_than_ago: faz mais de
329 label_ago: dias atras
331 label_ago: dias atras
330 label_contains: contem
332 label_contains: contem
331 label_not_contains: nao contem
333 label_not_contains: nao contem
332 label_day_plural: dias
334 label_day_plural: dias
333 label_repository: Repository
335 label_repository: Repository
334 label_browse: Browse
336 label_browse: Browse
335 label_modification: %d change
337 label_modification: %d change
336 label_modification_plural: %d changes
338 label_modification_plural: %d changes
337 label_revision: Revision
339 label_revision: Revision
338 label_revision_plural: Revisions
340 label_revision_plural: Revisions
339 label_added: added
341 label_added: added
340 label_modified: modified
342 label_modified: modified
341 label_deleted: deleted
343 label_deleted: deleted
342 label_latest_revision: Latest revision
344 label_latest_revision: Latest revision
343 label_latest_revision_plural: Latest revisions
345 label_latest_revision_plural: Latest revisions
344 label_view_revisions: View revisions
346 label_view_revisions: View revisions
345 label_max_size: Maximum size
347 label_max_size: Maximum size
346 label_on: 'em'
348 label_on: 'em'
347 label_sort_highest: Mover para o inicio
349 label_sort_highest: Mover para o inicio
348 label_sort_higher: Mover para cima
350 label_sort_higher: Mover para cima
349 label_sort_lower: Mover para baixo
351 label_sort_lower: Mover para baixo
350 label_sort_lowest: Mover para o fim
352 label_sort_lowest: Mover para o fim
351 label_roadmap: Roadmap
353 label_roadmap: Roadmap
352 label_roadmap_due_in: Due in
354 label_roadmap_due_in: Due in
353 label_roadmap_overdue: %s late
355 label_roadmap_overdue: %s late
354 label_roadmap_no_issues: Sem tarefas para essa versao
356 label_roadmap_no_issues: Sem tarefas para essa versao
355 label_search: Busca
357 label_search: Busca
356 label_result_plural: Resultados
358 label_result_plural: Resultados
357 label_all_words: Todas as palavras
359 label_all_words: Todas as palavras
358 label_wiki: Wiki
360 label_wiki: Wiki
359 label_wiki_edit: Wiki edit
361 label_wiki_edit: Wiki edit
360 label_wiki_edit_plural: Wiki edits
362 label_wiki_edit_plural: Wiki edits
361 label_wiki_page: Wiki page
363 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
364 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Index by title
365 label_index_by_title: Index by title
364 label_index_by_date: Index by date
366 label_index_by_date: Index by date
365 label_current_version: Versao atual
367 label_current_version: Versao atual
366 label_preview: Previa
368 label_preview: Previa
367 label_feed_plural: Feeds
369 label_feed_plural: Feeds
368 label_changes_details: Detalhes de todas as mudancas
370 label_changes_details: Detalhes de todas as mudancas
369 label_issue_tracking: Tarefas
371 label_issue_tracking: Tarefas
370 label_spent_time: Tempo gasto
372 label_spent_time: Tempo gasto
371 label_f_hour: %.2f hora
373 label_f_hour: %.2f hora
372 label_f_hour_plural: %.2f horas
374 label_f_hour_plural: %.2f horas
373 label_time_tracking: Tempo trabalhado
375 label_time_tracking: Tempo trabalhado
374 label_change_plural: Mudancas
376 label_change_plural: Mudancas
375 label_statistics: Estatisticas
377 label_statistics: Estatisticas
376 label_commits_per_month: Commits por mes
378 label_commits_per_month: Commits por mes
377 label_commits_per_author: Commits por autor
379 label_commits_per_author: Commits por autor
378 label_view_diff: Ver diferencas
380 label_view_diff: Ver diferencas
379 label_diff_inline: inline
381 label_diff_inline: inline
380 label_diff_side_by_side: side by side
382 label_diff_side_by_side: side by side
381 label_options: Opcoes
383 label_options: Opcoes
382 label_copy_workflow_from: Copiar workflow de
384 label_copy_workflow_from: Copiar workflow de
383 label_permissions_report: Relatorio de permissoes
385 label_permissions_report: Relatorio de permissoes
384 label_watched_issues: Watched issues
386 label_watched_issues: Watched issues
385 label_related_issues: Related issues
387 label_related_issues: Related issues
386 label_applied_status: Applied status
388 label_applied_status: Applied status
387 label_loading: Loading...
389 label_loading: Loading...
388 label_relation_new: New relation
390 label_relation_new: New relation
389 label_relation_delete: Delete relation
391 label_relation_delete: Delete relation
390 label_relates_to: related to
392 label_relates_to: related to
391 label_duplicates: duplicates
393 label_duplicates: duplicates
392 label_blocks: blocks
394 label_blocks: blocks
393 label_blocked_by: blocked by
395 label_blocked_by: blocked by
394 label_precedes: precedes
396 label_precedes: precedes
395 label_follows: follows
397 label_follows: follows
396 label_end_to_start: end to start
398 label_end_to_start: end to start
397 label_end_to_end: end to end
399 label_end_to_end: end to end
398 label_start_to_start: start to start
400 label_start_to_start: start to start
399 label_start_to_end: start to end
401 label_start_to_end: start to end
400 label_stay_logged_in: Stay logged in
402 label_stay_logged_in: Stay logged in
401 label_disabled: disabled
403 label_disabled: disabled
402 label_show_completed_versions: Show completed versions
404 label_show_completed_versions: Show completed versions
403 label_me: me
405 label_me: me
404 label_board: Forum
406 label_board: Forum
405 label_board_new: New forum
407 label_board_new: New forum
406 label_board_plural: Forums
408 label_board_plural: Forums
407 label_topic_plural: Topics
409 label_topic_plural: Topics
408 label_message_plural: Messages
410 label_message_plural: Messages
409 label_message_last: Last message
411 label_message_last: Last message
410 label_message_new: New message
412 label_message_new: New message
411 label_reply_plural: Replies
413 label_reply_plural: Replies
412 label_send_information: Send account information to the user
414 label_send_information: Send account information to the user
413 label_year: Year
415 label_year: Year
414 label_month: Month
416 label_month: Month
415 label_week: Week
417 label_week: Week
416 label_date_from: From
418 label_date_from: From
417 label_date_to: To
419 label_date_to: To
418 label_language_based: Language based
420 label_language_based: Language based
419 label_sort_by: Sort by %s
421 label_sort_by: Sort by %s
420 label_send_test_email: Send a test email
422 label_send_test_email: Send a test email
421 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
422 label_module_plural: Modules
424 label_module_plural: Modules
423 label_added_time_by: Added by %s %s ago
425 label_added_time_by: Added by %s %s ago
424 label_updated_time: Updated %s ago
426 label_updated_time: Updated %s ago
425 label_jump_to_a_project: Jump to a project...
427 label_jump_to_a_project: Jump to a project...
426
428
427 button_login: Login
429 button_login: Login
428 button_submit: Enviar
430 button_submit: Enviar
429 button_save: Salvar
431 button_save: Salvar
430 button_check_all: Marcar todos
432 button_check_all: Marcar todos
431 button_uncheck_all: Desmarcar todos
433 button_uncheck_all: Desmarcar todos
432 button_delete: Apagar
434 button_delete: Apagar
433 button_create: Criar
435 button_create: Criar
434 button_test: Testar
436 button_test: Testar
435 button_edit: Editar
437 button_edit: Editar
436 button_add: Adicionar
438 button_add: Adicionar
437 button_change: Mudar
439 button_change: Mudar
438 button_apply: Aplicar
440 button_apply: Aplicar
439 button_clear: Limpar
441 button_clear: Limpar
440 button_lock: Bloquear
442 button_lock: Bloquear
441 button_unlock: Desbloquear
443 button_unlock: Desbloquear
442 button_download: Download
444 button_download: Download
443 button_list: Listar
445 button_list: Listar
444 button_view: Ver
446 button_view: Ver
445 button_move: Mover
447 button_move: Mover
446 button_back: Voltar
448 button_back: Voltar
447 button_cancel: Cancelar
449 button_cancel: Cancelar
448 button_activate: Ativar
450 button_activate: Ativar
449 button_sort: Ordenar
451 button_sort: Ordenar
450 button_log_time: Tempo de trabalho
452 button_log_time: Tempo de trabalho
451 button_rollback: Voltar para esta versao
453 button_rollback: Voltar para esta versao
452 button_watch: Watch
454 button_watch: Watch
453 button_unwatch: Unwatch
455 button_unwatch: Unwatch
454 button_reply: Reply
456 button_reply: Reply
455 button_archive: Archive
457 button_archive: Archive
456 button_unarchive: Unarchive
458 button_unarchive: Unarchive
457 button_reset: Reset
459 button_reset: Reset
458 button_rename: Rename
460 button_rename: Rename
459
461
460 status_active: ativo
462 status_active: ativo
461 status_registered: registrado
463 status_registered: registrado
462 status_locked: bloqueado
464 status_locked: bloqueado
463
465
464 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
466 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
465 text_regexp_info: eg. ^[A-Z0-9]+$
467 text_regexp_info: eg. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 siginifica sem restricao
468 text_min_max_length_info: 0 siginifica sem restricao
467 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
469 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
468 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
469 text_are_you_sure: Voce tem certeza ?
471 text_are_you_sure: Voce tem certeza ?
470 text_journal_changed: alterado de %s para %s
472 text_journal_changed: alterado de %s para %s
471 text_journal_set_to: setar para %s
473 text_journal_set_to: setar para %s
472 text_journal_deleted: apagado
474 text_journal_deleted: apagado
473 text_tip_task_begin_day: tarefa comeca neste dia
475 text_tip_task_begin_day: tarefa comeca neste dia
474 text_tip_task_end_day: tarefa termina neste dia
476 text_tip_task_end_day: tarefa termina neste dia
475 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
477 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
476 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
478 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
477 text_caracters_maximum: %d maximo de caracteres
479 text_caracters_maximum: %d maximo de caracteres
478 text_length_between: Tamanho entre %d e %d caracteres.
480 text_length_between: Tamanho entre %d e %d caracteres.
479 text_tracker_no_workflow: Sem workflow definido para este tipo.
481 text_tracker_no_workflow: Sem workflow definido para este tipo.
480 text_unallowed_characters: Unallowed characters
482 text_unallowed_characters: Unallowed characters
481 text_comma_separated: Multiple values allowed (comma separated).
483 text_comma_separated: Multiple values allowed (comma separated).
482 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
483 text_issue_added: Tarefa %s foi incluída.
485 text_issue_added: Tarefa %s foi incluída.
484 text_issue_updated: Tarefa %s foi alterada.
486 text_issue_updated: Tarefa %s foi alterada.
485 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 ?
486 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 ?
487 text_issue_category_destroy_assignments: Remove category assignments
489 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_reassign_to: Reassing issues to this category
490 text_issue_category_reassign_to: Reassing issues to this category
489
491
490 default_role_manager: Analista de Negocio ou Gerente de Projeto
492 default_role_manager: Analista de Negocio ou Gerente de Projeto
491 default_role_developper: Desenvolvedor
493 default_role_developper: Desenvolvedor
492 default_role_reporter: Analista de Suporte
494 default_role_reporter: Analista de Suporte
493 default_tracker_bug: Bug
495 default_tracker_bug: Bug
494 default_tracker_feature: Implementacao
496 default_tracker_feature: Implementacao
495 default_tracker_support: Suporte
497 default_tracker_support: Suporte
496 default_issue_status_new: Novo
498 default_issue_status_new: Novo
497 default_issue_status_assigned: Atribuido
499 default_issue_status_assigned: Atribuido
498 default_issue_status_resolved: Resolvido
500 default_issue_status_resolved: Resolvido
499 default_issue_status_feedback: Feedback
501 default_issue_status_feedback: Feedback
500 default_issue_status_closed: Fechado
502 default_issue_status_closed: Fechado
501 default_issue_status_rejected: Rejeitado
503 default_issue_status_rejected: Rejeitado
502 default_doc_category_user: Documentacao do usuario
504 default_doc_category_user: Documentacao do usuario
503 default_doc_category_tech: Documentacao do tecnica
505 default_doc_category_tech: Documentacao do tecnica
504 default_priority_low: Baixo
506 default_priority_low: Baixo
505 default_priority_normal: Normal
507 default_priority_normal: Normal
506 default_priority_high: Alto
508 default_priority_high: Alto
507 default_priority_urgent: Urgente
509 default_priority_urgent: Urgente
508 default_priority_immediate: Imediato
510 default_priority_immediate: Imediato
509 default_activity_design: Design
511 default_activity_design: Design
510 default_activity_development: Desenvolvimento
512 default_activity_development: Desenvolvimento
511
513
512 enumeration_issue_priorities: Prioridade das tarefas
514 enumeration_issue_priorities: Prioridade das tarefas
513 enumeration_doc_categories: Categorias de documento
515 enumeration_doc_categories: Categorias de documento
514 enumeration_activities: Atividades (time tracking)
516 enumeration_activities: Atividades (time tracking)
515 label_file_plural: Files
517 label_file_plural: Files
516 label_changeset_plural: Changesets
518 label_changeset_plural: Changesets
517 field_column_names: Columns
519 field_column_names: Columns
518 label_default_columns: Default columns
520 label_default_columns: Default columns
519 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
520 setting_repositories_encodings: Repositories encodings
522 setting_repositories_encodings: Repositories encodings
521 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."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
524 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
525 label_no_change_option: (No change)
524 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."
525 label_theme: Theme
527 label_theme: Theme
526 label_default: Default
528 label_default: Default
527 label_search_titles_only: Search titles only
529 label_search_titles_only: Search titles only
528 label_nobody: nobody
530 label_nobody: nobody
529 button_change_password: Change password
531 button_change_password: Change password
530 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)."
531 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..."
532 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"
533 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"
534 setting_emails_footer: Emails footer
536 setting_emails_footer: Emails footer
535 label_float: Float
537 label_float: Float
536 button_copy: Copy
538 button_copy: Copy
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
538 mail_body_account_information: Your Redmine account information
540 mail_body_account_information: Your Redmine account information
539 setting_protocol: Protocol
541 setting_protocol: Protocol
540 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"
541 setting_time_format: Time format
543 setting_time_format: Time format
542 label_registration_activation_by_email: account activation by email
544 label_registration_activation_by_email: account activation by email
543 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: Redmine account activation request
544 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:'
545 label_registration_automatic_activation: automatic account activation
547 label_registration_automatic_activation: automatic account activation
546 label_registration_manual_activation: manual account activation
548 label_registration_manual_activation: manual account activation
547 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."
548 field_time_zone: Time zone
550 field_time_zone: Time zone
549 text_caracters_minimum: Must be at least %d characters long.
551 text_caracters_minimum: Must be at least %d characters long.
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 button_annotate: Annotate
553 button_annotate: Annotate
552 label_issues_by: Issues by %s
554 label_issues_by: Issues by %s
553 field_searchable: Searchable
555 field_searchable: Searchable
554 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
556 label_age: Age
558 label_age: Age
557 notice_default_data_loaded: Default configuration successfully loaded.
559 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
560 text_load_default_configuration: Load the default configuration
559 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."
560 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"
561 button_update: Update
563 button_update: Update
562 label_change_properties: Change properties
564 label_change_properties: Change properties
563 label_general: General
565 label_general: General
564 label_repository_plural: Repositories
566 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
@@ -1,565 +1,567
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,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abril,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: em torno de uma hora
10 actionview_datehelper_time_in_words_hour_about: em torno de uma hora
11 actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas
12 actionview_datehelper_time_in_words_hour_about_single: em torno de uma hora
12 actionview_datehelper_time_in_words_hour_about_single: em torno de 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 existe na lista
22 activerecord_error_inclusion: não existe na lista
23 activerecord_error_exclusion: já existe na lista
23 activerecord_error_exclusion: já existe na lista
24 activerecord_error_invalid: é inválido
24 activerecord_error_invalid: é inválido
25 activerecord_error_confirmation: não confere com sua confirmação
25 activerecord_error_confirmation: não confere com sua confirmação
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: possui o comprimento errado
31 activerecord_error_wrong_length: possui o comprimento errado
32 activerecord_error_taken: já foi usado em outro registro
32 activerecord_error_taken: já foi usado em outro registro
33 activerecord_error_not_a_number: não é um número
33 activerecord_error_not_a_number: não é um número
34 activerecord_error_not_a_date: não é uma data válida
34 activerecord_error_not_a_date: não é uma data válida
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 pertence ao mesmo projeto
36 activerecord_error_not_same_project: não pertence ao mesmo projeto
37 activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular
37 activerecord_error_circular_dependency: Este relaão pode criar 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'
49 general_lang_name: 'Português'
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,Sábado,Domingo
53 general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Conta foi atualizada com sucesso.
56 notice_account_updated: Conta foi atualizada com sucesso.
57 notice_account_invalid_creditentials: Usuário ou senha inválidos.
57 notice_account_invalid_creditentials: Usuário ou senha inválidos.
58 notice_account_password_updated: Senha foi alterada com sucesso.
58 notice_account_password_updated: Senha foi alterada com sucesso.
59 notice_account_wrong_password: Senha errada.
59 notice_account_wrong_password: Senha errada.
60 notice_account_register_done: Conta foi criada com sucesso.
60 notice_account_register_done: Conta foi 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 trocar a senha.
62 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha.
63 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
63 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
64 notice_account_activated: Sua conta foi ativada. Você pode logar agora
64 notice_account_activated: Sua conta foi ativada. Você pode logar 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: Apagado com sucesso.
67 notice_successful_delete: Apagado 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 um outro usuário.
70 notice_locking_conflict: Os dados foram atualizados por um outro usuário.
71 notice_scm_error: A entrada e/ou a revisão não existem no repositório.
72 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.
73 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
73 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
75
76 error_scm_not_found: "A entrada e/ou a revisão não existem no repositório."
77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78
77 mail_subject_lost_password: Sua senha do redMine.
79 mail_subject_lost_password: Sua senha do redMine.
78 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:'
79 mail_subject_register: Ativação de conta do redMine.
81 mail_subject_register: Ativação de conta do redMine.
80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
82 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
81
83
82 gui_validation_error: 1 erro
84 gui_validation_error: 1 erro
83 gui_validation_error_plural: %d erros
85 gui_validation_error_plural: %d erros
84
86
85 field_name: Nome
87 field_name: Nome
86 field_description: Descrição
88 field_description: Descrição
87 field_summary: Sumário
89 field_summary: Sumário
88 field_is_required: Obrigatório
90 field_is_required: Obrigatório
89 field_firstname: Primeiro nome
91 field_firstname: Primeiro nome
90 field_lastname: Último nome
92 field_lastname: Último nome
91 field_mail: Email
93 field_mail: Email
92 field_filename: Arquivo
94 field_filename: Arquivo
93 field_filesize: Tamanho
95 field_filesize: Tamanho
94 field_downloads: Downloads
96 field_downloads: Downloads
95 field_author: Autor
97 field_author: Autor
96 field_created_on: Criado
98 field_created_on: Criado
97 field_updated_on: Alterado
99 field_updated_on: Alterado
98 field_field_format: Formato
100 field_field_format: Formato
99 field_is_for_all: Para todos os projetos
101 field_is_for_all: Para todos os projetos
100 field_possible_values: Possíveis valores
102 field_possible_values: Possíveis valores
101 field_regexp: Expressão regular
103 field_regexp: Expressão regular
102 field_min_length: Tamanho mínimo
104 field_min_length: Tamanho mínimo
103 field_max_length: Tamanho máximo
105 field_max_length: Tamanho máximo
104 field_value: Valor
106 field_value: Valor
105 field_category: Categoria
107 field_category: Categoria
106 field_title: Título
108 field_title: Título
107 field_project: Projeto
109 field_project: Projeto
108 field_issue: Tarefa
110 field_issue: Tarefa
109 field_status: Status
111 field_status: Status
110 field_notes: Notas
112 field_notes: Notas
111 field_is_closed: Tarefa fechada
113 field_is_closed: Tarefa fechada
112 field_is_default: Status padrão
114 field_is_default: Status padrão
113 field_tracker: Tipo
115 field_tracker: Tipo
114 field_subject: Assunto
116 field_subject: Assunto
115 field_due_date: Data final
117 field_due_date: Data final
116 field_assigned_to: Atribuído para
118 field_assigned_to: Atribuído para
117 field_priority: Prioridade
119 field_priority: Prioridade
118 field_fixed_version: Versão corrigida
120 field_fixed_version: Versão corrigida
119 field_user: Usuário
121 field_user: Usuário
120 field_role: Regra
122 field_role: Regra
121 field_homepage: Página inicial
123 field_homepage: Página inicial
122 field_is_public: Público
124 field_is_public: Público
123 field_parent: Sub-projeto de
125 field_parent: Sub-projeto de
124 field_is_in_chlog: Tarefas mostradas no changelog
126 field_is_in_chlog: Tarefas mostradas no changelog
125 field_is_in_roadmap: Tarefas mostradas no roadmap
127 field_is_in_roadmap: Tarefas mostradas no roadmap
126 field_login: Login
128 field_login: Login
127 field_mail_notification: Notificações por email
129 field_mail_notification: Notificações por email
128 field_admin: Administrador
130 field_admin: Administrador
129 field_last_login_on: Última conexão
131 field_last_login_on: Última conexão
130 field_language: Língua
132 field_language: Língua
131 field_effective_date: Data
133 field_effective_date: Data
132 field_password: Senha
134 field_password: Senha
133 field_new_password: Nova senha
135 field_new_password: Nova senha
134 field_password_confirmation: Confirmação
136 field_password_confirmation: Confirmação
135 field_version: Versão
137 field_version: Versão
136 field_type: Tipo
138 field_type: Tipo
137 field_host: Servidor
139 field_host: Servidor
138 field_port: Porta
140 field_port: Porta
139 field_account: Conta
141 field_account: Conta
140 field_base_dn: Base DN
142 field_base_dn: Base DN
141 field_attr_login: Atributo login
143 field_attr_login: Atributo login
142 field_attr_firstname: Atributo primeiro nome
144 field_attr_firstname: Atributo primeiro nome
143 field_attr_lastname: Atributo último nome
145 field_attr_lastname: Atributo último nome
144 field_attr_mail: Atributo email
146 field_attr_mail: Atributo email
145 field_onthefly: Criação de usuário sob-demanda
147 field_onthefly: Criação de usuário sob-demanda
146 field_start_date: Início
148 field_start_date: Início
147 field_done_ratio: %% Terminado
149 field_done_ratio: %% Terminado
148 field_auth_source: Modo de autenticação
150 field_auth_source: Modo de autenticação
149 field_hide_mail: Esconda meu email
151 field_hide_mail: Esconda meu email
150 field_comments: Comentário
152 field_comments: Comentário
151 field_url: URL
153 field_url: URL
152 field_start_page: Página inicial
154 field_start_page: Página inicial
153 field_subproject: Sub-projeto
155 field_subproject: Sub-projeto
154 field_hours: Horas
156 field_hours: Horas
155 field_activity: Atividade
157 field_activity: Atividade
156 field_spent_on: Data
158 field_spent_on: Data
157 field_identifier: Identificador
159 field_identifier: Identificador
158 field_is_filter: Usado como filtro
160 field_is_filter: Usado como filtro
159 field_issue_to_id: Tarefa relacionada
161 field_issue_to_id: Tarefa relacionada
160 field_delay: Atraso
162 field_delay: Atraso
161 field_assignable: Issues can be assigned to this role
163 field_assignable: Issues can be assigned to this role
162 field_redirect_existing_links: Redirect existing links
164 field_redirect_existing_links: Redirect existing links
163 field_estimated_hours: Estimated time
165 field_estimated_hours: Estimated time
164 field_default_value: Padrão
166 field_default_value: Padrão
165
167
166 setting_app_title: Título da aplicação
168 setting_app_title: Título da aplicação
167 setting_app_subtitle: Sub-título da aplicação
169 setting_app_subtitle: Sub-título da aplicação
168 setting_welcome_text: Texto de boas-vindas
170 setting_welcome_text: Texto de boas-vindas
169 setting_default_language: Linguagem padrão
171 setting_default_language: Linguagem padrão
170 setting_login_required: Autenticação obrigatória
172 setting_login_required: Autenticação obrigatória
171 setting_self_registration: Registro permitido
173 setting_self_registration: Registro permitido
172 setting_attachment_max_size: Tamanho máximo do anexo
174 setting_attachment_max_size: Tamanho máximo do anexo
173 setting_issues_export_limit: Limite de exportação das tarefas
175 setting_issues_export_limit: Limite de exportação das tarefas
174 setting_mail_from: Email enviado de
176 setting_mail_from: Email enviado de
175 setting_host_name: Servidor
177 setting_host_name: Servidor
176 setting_text_formatting: Formato do texto
178 setting_text_formatting: Formato do texto
177 setting_wiki_compression: Compactação do histórico do Wiki
179 setting_wiki_compression: Compactação do histórico do Wiki
178 setting_feeds_limit: Limite do Feed
180 setting_feeds_limit: Limite do Feed
179 setting_autofetch_changesets: Buscar automaticamente commits
181 setting_autofetch_changesets: Buscar automaticamente commits
180 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
182 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
181 setting_commit_ref_keywords: Palavras-chave de referôncia
183 setting_commit_ref_keywords: Palavras-chave de referôncia
182 setting_commit_fix_keywords: Palavras-chave fixas
184 setting_commit_fix_keywords: Palavras-chave fixas
183 setting_autologin: Autologin
185 setting_autologin: Autologin
184 setting_date_format: Date format
186 setting_date_format: Date format
185 setting_cross_project_issue_relations: Allow cross-project issue relations
187 setting_cross_project_issue_relations: Allow cross-project issue relations
186
188
187 label_user: Usuário
189 label_user: Usuário
188 label_user_plural: Usuários
190 label_user_plural: Usuários
189 label_user_new: Novo usuário
191 label_user_new: Novo usuário
190 label_project: Projeto
192 label_project: Projeto
191 label_project_new: Novo projeto
193 label_project_new: Novo projeto
192 label_project_plural: Projetos
194 label_project_plural: Projetos
193 label_project_all: All Projects
195 label_project_all: All Projects
194 label_project_latest: Últimos projetos
196 label_project_latest: Últimos projetos
195 label_issue: Tarefa
197 label_issue: Tarefa
196 label_issue_new: Nova tarefa
198 label_issue_new: Nova tarefa
197 label_issue_plural: Tarefas
199 label_issue_plural: Tarefas
198 label_issue_view_all: Ver todas as tarefas
200 label_issue_view_all: Ver todas as tarefas
199 label_document: Documento
201 label_document: Documento
200 label_document_new: Novo documento
202 label_document_new: Novo documento
201 label_document_plural: Documentos
203 label_document_plural: Documentos
202 label_role: Regra
204 label_role: Regra
203 label_role_plural: Regras
205 label_role_plural: Regras
204 label_role_new: Nova regra
206 label_role_new: Nova regra
205 label_role_and_permissions: Regras e permissões
207 label_role_and_permissions: Regras e permissões
206 label_member: Membro
208 label_member: Membro
207 label_member_new: Novo membro
209 label_member_new: Novo membro
208 label_member_plural: Membros
210 label_member_plural: Membros
209 label_tracker: Tipo
211 label_tracker: Tipo
210 label_tracker_plural: Tipos
212 label_tracker_plural: Tipos
211 label_tracker_new: Novo tipo
213 label_tracker_new: Novo tipo
212 label_workflow: Workflow
214 label_workflow: Workflow
213 label_issue_status: Status da tarefa
215 label_issue_status: Status da tarefa
214 label_issue_status_plural: Status das tarefas
216 label_issue_status_plural: Status das tarefas
215 label_issue_status_new: Novo status
217 label_issue_status_new: Novo status
216 label_issue_category: Categoria da tarefa
218 label_issue_category: Categoria da tarefa
217 label_issue_category_plural: Categorias das tarefas
219 label_issue_category_plural: Categorias das tarefas
218 label_issue_category_new: Nova categoria
220 label_issue_category_new: Nova categoria
219 label_custom_field: Campo personalizado
221 label_custom_field: Campo personalizado
220 label_custom_field_plural: Campos personalizados
222 label_custom_field_plural: Campos personalizados
221 label_custom_field_new: Novo campo personalizado
223 label_custom_field_new: Novo campo personalizado
222 label_enumerations: Enumeração
224 label_enumerations: Enumeração
223 label_enumeration_new: Novo valor
225 label_enumeration_new: Novo valor
224 label_information: Informação
226 label_information: Informação
225 label_information_plural: Informações
227 label_information_plural: Informações
226 label_please_login: Efetue login
228 label_please_login: Efetue login
227 label_register: Registre-se
229 label_register: Registre-se
228 label_password_lost: Perdi a senha
230 label_password_lost: Perdi a senha
229 label_home: Página inicial
231 label_home: Página inicial
230 label_my_page: Minha página
232 label_my_page: Minha página
231 label_my_account: Minha conta
233 label_my_account: Minha conta
232 label_my_projects: Meus projetos
234 label_my_projects: Meus projetos
233 label_administration: Administração
235 label_administration: Administração
234 label_login: Login
236 label_login: Login
235 label_logout: Logout
237 label_logout: Logout
236 label_help: Ajuda
238 label_help: Ajuda
237 label_reported_issues: Tarefas reportadas
239 label_reported_issues: Tarefas reportadas
238 label_assigned_to_me_issues: Tarefas atribuídas à mim
240 label_assigned_to_me_issues: Tarefas atribuídas à mim
239 label_last_login: Útima conexão
241 label_last_login: Útima conexão
240 label_last_updates: Última alteração
242 label_last_updates: Última alteração
241 label_last_updates_plural: %d Últimas alterações
243 label_last_updates_plural: %d Últimas alterações
242 label_registered_on: Registrado em
244 label_registered_on: Registrado em
243 label_activity: Atividade
245 label_activity: Atividade
244 label_new: Novo
246 label_new: Novo
245 label_logged_as: Logado como
247 label_logged_as: Logado como
246 label_environment: Ambiente
248 label_environment: Ambiente
247 label_authentication: Autenticação
249 label_authentication: Autenticação
248 label_auth_source: Modo de autenticação
250 label_auth_source: Modo de autenticação
249 label_auth_source_new: Novo modo de autenticação
251 label_auth_source_new: Novo modo de autenticação
250 label_auth_source_plural: Modos de autenticação
252 label_auth_source_plural: Modos de autenticação
251 label_subproject_plural: Sub-projetos
253 label_subproject_plural: Sub-projetos
252 label_min_max_length: Tamanho min-max
254 label_min_max_length: Tamanho min-max
253 label_list: Lista
255 label_list: Lista
254 label_date: Data
256 label_date: Data
255 label_integer: Inteiro
257 label_integer: Inteiro
256 label_boolean: Booleano
258 label_boolean: Booleano
257 label_string: Texto
259 label_string: Texto
258 label_text: Texto longo
260 label_text: Texto longo
259 label_attribute: Atributo
261 label_attribute: Atributo
260 label_attribute_plural: Atributos
262 label_attribute_plural: Atributos
261 label_download: %d Download
263 label_download: %d Download
262 label_download_plural: %d Downloads
264 label_download_plural: %d Downloads
263 label_no_data: Sem dados para mostrar
265 label_no_data: Sem dados para mostrar
264 label_change_status: Mudar status
266 label_change_status: Mudar status
265 label_history: Histórico
267 label_history: Histórico
266 label_attachment: Arquivo
268 label_attachment: Arquivo
267 label_attachment_new: Novo arquivo
269 label_attachment_new: Novo arquivo
268 label_attachment_delete: Apagar arquivo
270 label_attachment_delete: Apagar arquivo
269 label_attachment_plural: Arquivos
271 label_attachment_plural: Arquivos
270 label_report: Relatório
272 label_report: Relatório
271 label_report_plural: Relatório
273 label_report_plural: Relatório
272 label_news: Notícias
274 label_news: Notícias
273 label_news_new: Adicionar notícias
275 label_news_new: Adicionar notícias
274 label_news_plural: Notícias
276 label_news_plural: Notícias
275 label_news_latest: Últimas notícias
277 label_news_latest: Últimas notícias
276 label_news_view_all: Ver todas as notícias
278 label_news_view_all: Ver todas as notícias
277 label_change_log: Log de mudanças
279 label_change_log: Log de mudanças
278 label_settings: Configurações
280 label_settings: Configurações
279 label_overview: Visão geral
281 label_overview: Visão geral
280 label_version: Versão
282 label_version: Versão
281 label_version_new: Nova versão
283 label_version_new: Nova versão
282 label_version_plural: Versões
284 label_version_plural: Versões
283 label_confirmation: Confirmação
285 label_confirmation: Confirmação
284 label_export_to: Exportar para
286 label_export_to: Exportar para
285 label_read: Ler...
287 label_read: Ler...
286 label_public_projects: Projetos públicos
288 label_public_projects: Projetos públicos
287 label_open_issues: Aberto
289 label_open_issues: Aberto
288 label_open_issues_plural: Abertos
290 label_open_issues_plural: Abertos
289 label_closed_issues: Fechado
291 label_closed_issues: Fechado
290 label_closed_issues_plural: Fechados
292 label_closed_issues_plural: Fechados
291 label_total: Total
293 label_total: Total
292 label_permissions: Permissões
294 label_permissions: Permissões
293 label_current_status: Status atual
295 label_current_status: Status atual
294 label_new_statuses_allowed: Novo status permitido
296 label_new_statuses_allowed: Novo status permitido
295 label_all: todos
297 label_all: todos
296 label_none: nenhum
298 label_none: nenhum
297 label_next: Próximo
299 label_next: Próximo
298 label_previous: Anterior
300 label_previous: Anterior
299 label_used_by: Usado por
301 label_used_by: Usado por
300 label_details: Detalhes
302 label_details: Detalhes
301 label_add_note: Adicionar nota
303 label_add_note: Adicionar nota
302 label_per_page: Por página
304 label_per_page: Por página
303 label_calendar: Calendário
305 label_calendar: Calendário
304 label_months_from: Meses de
306 label_months_from: Meses de
305 label_gantt: Gantt
307 label_gantt: Gantt
306 label_internal: Interno
308 label_internal: Interno
307 label_last_changes: últimas %d mudanças
309 label_last_changes: últimas %d mudanças
308 label_change_view_all: Mostrar todas as mudanças
310 label_change_view_all: Mostrar todas as mudanças
309 label_personalize_page: Personalizar esta página
311 label_personalize_page: Personalizar esta página
310 label_comment: Comentário
312 label_comment: Comentário
311 label_comment_plural: Comentários
313 label_comment_plural: Comentários
312 label_comment_add: Adicionar comentário
314 label_comment_add: Adicionar comentário
313 label_comment_added: Comentário adicionado
315 label_comment_added: Comentário adicionado
314 label_comment_delete: Apagar comentário
316 label_comment_delete: Apagar comentário
315 label_query: Consulta personalizada
317 label_query: Consulta personalizada
316 label_query_plural: Consultas personalizadas
318 label_query_plural: Consultas personalizadas
317 label_query_new: Nova consulta
319 label_query_new: Nova consulta
318 label_filter_add: Adicionar filtro
320 label_filter_add: Adicionar filtro
319 label_filter_plural: Filtros
321 label_filter_plural: Filtros
320 label_equals: é
322 label_equals: é
321 label_not_equals: não e
323 label_not_equals: não e
322 label_in_less_than: é maior que
324 label_in_less_than: é maior que
323 label_in_more_than: é menor que
325 label_in_more_than: é menor que
324 label_in: em
326 label_in: em
325 label_today: hoje
327 label_today: hoje
326 label_this_week: this week
328 label_this_week: this week
327 label_less_than_ago: faz menos de
329 label_less_than_ago: faz menos de
328 label_more_than_ago: faz mais de
330 label_more_than_ago: faz mais de
329 label_ago: dias atrás
331 label_ago: dias atrás
330 label_contains: contém
332 label_contains: contém
331 label_not_contains: não contém
333 label_not_contains: não contém
332 label_day_plural: dias
334 label_day_plural: dias
333 label_repository: Repositório
335 label_repository: Repositório
334 label_browse: Procurar
336 label_browse: Procurar
335 label_modification: %d mudança
337 label_modification: %d mudança
336 label_modification_plural: %d mudanças
338 label_modification_plural: %d mudanças
337 label_revision: Revisão
339 label_revision: Revisão
338 label_revision_plural: Revisões
340 label_revision_plural: Revisões
339 label_added: adicionado
341 label_added: adicionado
340 label_modified: modificado
342 label_modified: modificado
341 label_deleted: deletado
343 label_deleted: deletado
342 label_latest_revision: Última revisão
344 label_latest_revision: Última revisão
343 label_latest_revision_plural: Últimas revisões
345 label_latest_revision_plural: Últimas revisões
344 label_view_revisions: Ver revisões
346 label_view_revisions: Ver revisões
345 label_max_size: Tamanho máximo
347 label_max_size: Tamanho máximo
346 label_on: em
348 label_on: em
347 label_sort_highest: Mover para o início
349 label_sort_highest: Mover para o início
348 label_sort_higher: Mover para cima
350 label_sort_higher: Mover para cima
349 label_sort_lower: Mover para baixo
351 label_sort_lower: Mover para baixo
350 label_sort_lowest: Mover para o fim
352 label_sort_lowest: Mover para o fim
351 label_roadmap: Roadmap
353 label_roadmap: Roadmap
352 label_roadmap_due_in: Termina em
354 label_roadmap_due_in: Termina em
353 label_roadmap_overdue: %s late
355 label_roadmap_overdue: %s late
354 label_roadmap_no_issues: Sem tarefas para essa versão
356 label_roadmap_no_issues: Sem tarefas para essa versão
355 label_search: Busca
357 label_search: Busca
356 label_result_plural: Resultados
358 label_result_plural: Resultados
357 label_all_words: Todas as palavras
359 label_all_words: Todas as palavras
358 label_wiki: Wiki
360 label_wiki: Wiki
359 label_wiki_edit: Wiki edit
361 label_wiki_edit: Wiki edit
360 label_wiki_edit_plural: Wiki edits
362 label_wiki_edit_plural: Wiki edits
361 label_wiki_page: Wiki page
363 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
364 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Index by title
365 label_index_by_title: Index by title
364 label_index_by_date: Index by date
366 label_index_by_date: Index by date
365 label_current_version: Versão atual
367 label_current_version: Versão atual
366 label_preview: Prévia
368 label_preview: Prévia
367 label_feed_plural: Feeds
369 label_feed_plural: Feeds
368 label_changes_details: Detalhes de todas as mudanças
370 label_changes_details: Detalhes de todas as mudanças
369 label_issue_tracking: Tarefas
371 label_issue_tracking: Tarefas
370 label_spent_time: Tempo gasto
372 label_spent_time: Tempo gasto
371 label_f_hour: %.2f hora
373 label_f_hour: %.2f hora
372 label_f_hour_plural: %.2f horas
374 label_f_hour_plural: %.2f horas
373 label_time_tracking: Tempo trabalhado
375 label_time_tracking: Tempo trabalhado
374 label_change_plural: Mudanças
376 label_change_plural: Mudanças
375 label_statistics: Estatísticas
377 label_statistics: Estatísticas
376 label_commits_per_month: Commits por mês
378 label_commits_per_month: Commits por mês
377 label_commits_per_author: Commits por autor
379 label_commits_per_author: Commits por autor
378 label_view_diff: Ver diferenças
380 label_view_diff: Ver diferenças
379 label_diff_inline: inline
381 label_diff_inline: inline
380 label_diff_side_by_side: lado a lado
382 label_diff_side_by_side: lado a lado
381 label_options: Opções
383 label_options: Opções
382 label_copy_workflow_from: Copiar workflow de
384 label_copy_workflow_from: Copiar workflow de
383 label_permissions_report: Relatório de permissões
385 label_permissions_report: Relatório de permissões
384 label_watched_issues: Tarefas observadas
386 label_watched_issues: Tarefas observadas
385 label_related_issues: tarefas relacionadas
387 label_related_issues: tarefas relacionadas
386 label_applied_status: Status aplicado
388 label_applied_status: Status aplicado
387 label_loading: Carregando...
389 label_loading: Carregando...
388 label_relation_new: Nova relação
390 label_relation_new: Nova relação
389 label_relation_delete: Deletar relação
391 label_relation_delete: Deletar relação
390 label_relates_to: relacionado à
392 label_relates_to: relacionado à
391 label_duplicates: duplicadas
393 label_duplicates: duplicadas
392 label_blocks: bloqueios
394 label_blocks: bloqueios
393 label_blocked_by: bloqueado por
395 label_blocked_by: bloqueado por
394 label_precedes: procede
396 label_precedes: procede
395 label_follows: segue
397 label_follows: segue
396 label_end_to_start: fim ao início
398 label_end_to_start: fim ao início
397 label_end_to_end: fim ao fim
399 label_end_to_end: fim ao fim
398 label_start_to_start: ínícia ao inícia
400 label_start_to_start: ínícia ao inícia
399 label_start_to_end: inícia ao fim
401 label_start_to_end: inícia ao fim
400 label_stay_logged_in: Rester connecté
402 label_stay_logged_in: Rester connecté
401 label_disabled: désactivé
403 label_disabled: désactivé
402 label_show_completed_versions: Voire les versions passées
404 label_show_completed_versions: Voire les versions passées
403 label_me: me
405 label_me: me
404 label_board: Forum
406 label_board: Forum
405 label_board_new: New forum
407 label_board_new: New forum
406 label_board_plural: Forums
408 label_board_plural: Forums
407 label_topic_plural: Topics
409 label_topic_plural: Topics
408 label_message_plural: Messages
410 label_message_plural: Messages
409 label_message_last: Last message
411 label_message_last: Last message
410 label_message_new: New message
412 label_message_new: New message
411 label_reply_plural: Replies
413 label_reply_plural: Replies
412 label_send_information: Send account information to the user
414 label_send_information: Send account information to the user
413 label_year: Year
415 label_year: Year
414 label_month: Month
416 label_month: Month
415 label_week: Week
417 label_week: Week
416 label_date_from: From
418 label_date_from: From
417 label_date_to: To
419 label_date_to: To
418 label_language_based: Language based
420 label_language_based: Language based
419 label_sort_by: Sort by %s
421 label_sort_by: Sort by %s
420 label_send_test_email: Send a test email
422 label_send_test_email: Send a test email
421 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
422 label_module_plural: Modules
424 label_module_plural: Modules
423 label_added_time_by: Added by %s %s ago
425 label_added_time_by: Added by %s %s ago
424 label_updated_time: Updated %s ago
426 label_updated_time: Updated %s ago
425 label_jump_to_a_project: Jump to a project...
427 label_jump_to_a_project: Jump to a project...
426
428
427 button_login: Login
429 button_login: Login
428 button_submit: Enviar
430 button_submit: Enviar
429 button_save: Salvar
431 button_save: Salvar
430 button_check_all: Marcar todos
432 button_check_all: Marcar todos
431 button_uncheck_all: Desmarcar todos
433 button_uncheck_all: Desmarcar todos
432 button_delete: Apagar
434 button_delete: Apagar
433 button_create: Criar
435 button_create: Criar
434 button_test: Testar
436 button_test: Testar
435 button_edit: Editar
437 button_edit: Editar
436 button_add: Adicionar
438 button_add: Adicionar
437 button_change: Mudar
439 button_change: Mudar
438 button_apply: Aplicar
440 button_apply: Aplicar
439 button_clear: Limpar
441 button_clear: Limpar
440 button_lock: Bloquear
442 button_lock: Bloquear
441 button_unlock: Desbloquear
443 button_unlock: Desbloquear
442 button_download: Download
444 button_download: Download
443 button_list: Listar
445 button_list: Listar
444 button_view: Ver
446 button_view: Ver
445 button_move: Mover
447 button_move: Mover
446 button_back: Voltar
448 button_back: Voltar
447 button_cancel: Cancelar
449 button_cancel: Cancelar
448 button_activate: Ativar
450 button_activate: Ativar
449 button_sort: Ordenar
451 button_sort: Ordenar
450 button_log_time: Tempo de trabalho
452 button_log_time: Tempo de trabalho
451 button_rollback: Voltar para esta versão
453 button_rollback: Voltar para esta versão
452 button_watch: Observar
454 button_watch: Observar
453 button_unwatch: Não observar
455 button_unwatch: Não observar
454 button_reply: Reply
456 button_reply: Reply
455 button_archive: Archive
457 button_archive: Archive
456 button_unarchive: Unarchive
458 button_unarchive: Unarchive
457 button_reset: Reset
459 button_reset: Reset
458 button_rename: Rename
460 button_rename: Rename
459
461
460 status_active: ativo
462 status_active: ativo
461 status_registered: registrado
463 status_registered: registrado
462 status_locked: bloqueado
464 status_locked: bloqueado
463
465
464 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
466 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
465 text_regexp_info: ex. ^[A-Z0-9]+$
467 text_regexp_info: ex. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 siginifica sem restrição
468 text_min_max_length_info: 0 siginifica sem restrição
467 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
469 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
468 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
469 text_are_you_sure: Você tem certeza ?
471 text_are_you_sure: Você tem certeza ?
470 text_journal_changed: alterado de %s para %s
472 text_journal_changed: alterado de %s para %s
471 text_journal_set_to: alterar para %s
473 text_journal_set_to: alterar para %s
472 text_journal_deleted: apagado
474 text_journal_deleted: apagado
473 text_tip_task_begin_day: tarefa começa neste dia
475 text_tip_task_begin_day: tarefa começa neste dia
474 text_tip_task_end_day: tarefa termina neste dia
476 text_tip_task_end_day: tarefa termina neste dia
475 text_tip_task_begin_end_day: tarefa começa e termina neste dia
477 text_tip_task_begin_end_day: tarefa começa e termina neste dia
476 text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
478 text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
477 text_caracters_maximum: %d móximo de caracteres
479 text_caracters_maximum: %d móximo de caracteres
478 text_length_between: Tamanho entre %d e %d caracteres.
480 text_length_between: Tamanho entre %d e %d caracteres.
479 text_tracker_no_workflow: Sem workflow definido para este tipo.
481 text_tracker_no_workflow: Sem workflow definido para este tipo.
480 text_unallowed_characters: Caracteres não permitidos
482 text_unallowed_characters: Caracteres não permitidos
481 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
483 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
482 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
484 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
483 text_issue_added: Tarefa %s foi incluída.
485 text_issue_added: Tarefa %s foi incluída.
484 text_issue_updated: Tarefa %s foi alterada.
486 text_issue_updated: Tarefa %s foi alterada.
485 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 ?
486 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 ?
487 text_issue_category_destroy_assignments: Remove category assignments
489 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_reassign_to: Reassing issues to this category
490 text_issue_category_reassign_to: Reassing issues to this category
489
491
490 default_role_manager: Analista de Negócio ou Gerente de Projeto
492 default_role_manager: Analista de Negócio ou Gerente de Projeto
491 default_role_developper: Desenvolvedor
493 default_role_developper: Desenvolvedor
492 default_role_reporter: Analista de Suporte
494 default_role_reporter: Analista de Suporte
493 default_tracker_bug: Bug
495 default_tracker_bug: Bug
494 default_tracker_feature: Implementaçõo
496 default_tracker_feature: Implementaçõo
495 default_tracker_support: Suporte
497 default_tracker_support: Suporte
496 default_issue_status_new: Novo
498 default_issue_status_new: Novo
497 default_issue_status_assigned: Atribuído
499 default_issue_status_assigned: Atribuído
498 default_issue_status_resolved: Resolvido
500 default_issue_status_resolved: Resolvido
499 default_issue_status_feedback: Feedback
501 default_issue_status_feedback: Feedback
500 default_issue_status_closed: Fechado
502 default_issue_status_closed: Fechado
501 default_issue_status_rejected: Rejeitado
503 default_issue_status_rejected: Rejeitado
502 default_doc_category_user: Documentação do usuário
504 default_doc_category_user: Documentação do usuário
503 default_doc_category_tech: Documentação técnica
505 default_doc_category_tech: Documentação técnica
504 default_priority_low: Baixo
506 default_priority_low: Baixo
505 default_priority_normal: Normal
507 default_priority_normal: Normal
506 default_priority_high: Alto
508 default_priority_high: Alto
507 default_priority_urgent: Urgente
509 default_priority_urgent: Urgente
508 default_priority_immediate: Imediato
510 default_priority_immediate: Imediato
509 default_activity_design: Design
511 default_activity_design: Design
510 default_activity_development: Desenvolvimento
512 default_activity_development: Desenvolvimento
511
513
512 enumeration_issue_priorities: Prioridade das tarefas
514 enumeration_issue_priorities: Prioridade das tarefas
513 enumeration_doc_categories: Categorias de documento
515 enumeration_doc_categories: Categorias de documento
514 enumeration_activities: Atividades (time tracking)
516 enumeration_activities: Atividades (time tracking)
515 label_file_plural: Files
517 label_file_plural: Files
516 label_changeset_plural: Changesets
518 label_changeset_plural: Changesets
517 field_column_names: Columns
519 field_column_names: Columns
518 label_default_columns: Default columns
520 label_default_columns: Default columns
519 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
520 setting_repositories_encodings: Repositories encodings
522 setting_repositories_encodings: Repositories encodings
521 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."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
524 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
525 label_no_change_option: (No change)
524 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."
525 label_theme: Theme
527 label_theme: Theme
526 label_default: Default
528 label_default: Default
527 label_search_titles_only: Search titles only
529 label_search_titles_only: Search titles only
528 label_nobody: nobody
530 label_nobody: nobody
529 button_change_password: Change password
531 button_change_password: Change password
530 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)."
531 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..."
532 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"
533 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"
534 setting_emails_footer: Emails footer
536 setting_emails_footer: Emails footer
535 label_float: Float
537 label_float: Float
536 button_copy: Copy
538 button_copy: Copy
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
538 mail_body_account_information: Your Redmine account information
540 mail_body_account_information: Your Redmine account information
539 setting_protocol: Protocol
541 setting_protocol: Protocol
540 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"
541 setting_time_format: Time format
543 setting_time_format: Time format
542 label_registration_activation_by_email: account activation by email
544 label_registration_activation_by_email: account activation by email
543 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: Redmine account activation request
544 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:'
545 label_registration_automatic_activation: automatic account activation
547 label_registration_automatic_activation: automatic account activation
546 label_registration_manual_activation: manual account activation
548 label_registration_manual_activation: manual account activation
547 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."
548 field_time_zone: Time zone
550 field_time_zone: Time zone
549 text_caracters_minimum: Must be at least %d characters long.
551 text_caracters_minimum: Must be at least %d characters long.
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 button_annotate: Annotate
553 button_annotate: Annotate
552 label_issues_by: Issues by %s
554 label_issues_by: Issues by %s
553 field_searchable: Searchable
555 field_searchable: Searchable
554 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
556 label_age: Age
558 label_age: Age
557 notice_default_data_loaded: Default configuration successfully loaded.
559 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
560 text_load_default_configuration: Load the default configuration
559 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."
560 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"
561 button_update: Update
563 button_update: Update
562 label_change_properties: Change properties
564 label_change_properties: Change properties
563 label_general: General
565 label_general: General
564 label_repository_plural: Repositories
566 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
@@ -1,565 +1,567
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: Ianuarie,Februarie,Martie,Aprilie,Mai,Iunie,Iulie,August,Septembrie,Octombrie,Noiembrie,Decembrie
4 actionview_datehelper_select_month_names: Ianuarie,Februarie,Martie,Aprilie,Mai,Iunie,Iulie,August,Septembrie,Octombrie,Noiembrie,Decembrie
5 actionview_datehelper_select_month_names_abbr: Ian,Feb,Mar,Apr,Mai,Jun,Jul,Aug,Sep,Oct,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Ian,Feb,Mar,Apr,Mai,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 zi
8 actionview_datehelper_time_in_words_day: 1 zi
9 actionview_datehelper_time_in_words_day_plural: %d zile
9 actionview_datehelper_time_in_words_day_plural: %d zile
10 actionview_datehelper_time_in_words_hour_about: aproximativ o ora
10 actionview_datehelper_time_in_words_hour_about: aproximativ o ora
11 actionview_datehelper_time_in_words_hour_about_plural: aproximativ %d ore
11 actionview_datehelper_time_in_words_hour_about_plural: aproximativ %d ore
12 actionview_datehelper_time_in_words_hour_about_single: aproximativ o ora
12 actionview_datehelper_time_in_words_hour_about_single: aproximativ o ora
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: 30 de secunde
14 actionview_datehelper_time_in_words_minute_half: 30 de secunde
15 actionview_datehelper_time_in_words_minute_less_than: mai putin de un minut
15 actionview_datehelper_time_in_words_minute_less_than: mai putin de un minut
16 actionview_datehelper_time_in_words_minute_plural: %d minute
16 actionview_datehelper_time_in_words_minute_plural: %d minute
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: mai putin de o secunda
18 actionview_datehelper_time_in_words_second_less_than: mai putin de o secunda
19 actionview_datehelper_time_in_words_second_less_than_plural: mai putin de %d secunde
19 actionview_datehelper_time_in_words_second_less_than_plural: mai putin de %d secunde
20 actionview_instancetag_blank_option: Va rog selectati
20 actionview_instancetag_blank_option: Va rog selectati
21
21
22 activerecord_error_inclusion: nu este inclus in lista
22 activerecord_error_inclusion: nu este inclus in lista
23 activerecord_error_exclusion: este rezervat
23 activerecord_error_exclusion: este rezervat
24 activerecord_error_invalid: este invalid
24 activerecord_error_invalid: este invalid
25 activerecord_error_confirmation: nu corespunde confirmarii
25 activerecord_error_confirmation: nu corespunde confirmarii
26 activerecord_error_accepted: trebuie acceptat
26 activerecord_error_accepted: trebuie acceptat
27 activerecord_error_empty: nu poate fi gol
27 activerecord_error_empty: nu poate fi gol
28 activerecord_error_blank: nu poate fi gol
28 activerecord_error_blank: nu poate fi gol
29 activerecord_error_too_long: este prea lung
29 activerecord_error_too_long: este prea lung
30 activerecord_error_too_short: este prea scurt
30 activerecord_error_too_short: este prea scurt
31 activerecord_error_wrong_length: are lungimea eronata
31 activerecord_error_wrong_length: are lungimea eronata
32 activerecord_error_taken: deja a fost luat/rezervat
32 activerecord_error_taken: deja a fost luat/rezervat
33 activerecord_error_not_a_number: nu este un numar
33 activerecord_error_not_a_number: nu este un numar
34 activerecord_error_not_a_date: nu este o data valida
34 activerecord_error_not_a_date: nu este o data valida
35 activerecord_error_greater_than_start_date: trebuie sa fie mai mare ca data de start
35 activerecord_error_greater_than_start_date: trebuie sa fie mai mare ca data de start
36 activerecord_error_not_same_project: nu apartine projectului respectiv
36 activerecord_error_not_same_project: nu apartine projectului respectiv
37 activerecord_error_circular_dependency: Aceasta relatie ar crea dependenta circulara
37 activerecord_error_circular_dependency: Aceasta relatie ar crea dependenta circulara
38
38
39 general_fmt_age: %d an
39 general_fmt_age: %d an
40 general_fmt_age_plural: %d ani
40 general_fmt_age_plural: %d ani
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: 'Nu'
45 general_text_No: 'Nu'
46 general_text_Yes: 'Da'
46 general_text_Yes: 'Da'
47 general_text_no: 'nu'
47 general_text_no: 'nu'
48 general_text_yes: 'da'
48 general_text_yes: 'da'
49 general_lang_name: 'Română'
49 general_lang_name: 'Română'
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: Luni,Marti,Miercuri,Joi,Vineri,Sambata,Duminica
53 general_day_names: Luni,Marti,Miercuri,Joi,Vineri,Sambata,Duminica
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Contul a fost creat cu succes.
56 notice_account_updated: Contul a fost creat cu succes.
57 notice_account_invalid_creditentials: Numele utilizator sau parola este invalida.
57 notice_account_invalid_creditentials: Numele utilizator sau parola este invalida.
58 notice_account_password_updated: Parola a fost modificata cu succes.
58 notice_account_password_updated: Parola a fost modificata cu succes.
59 notice_account_wrong_password: Parola gresita
59 notice_account_wrong_password: Parola gresita
60 notice_account_register_done: Contul a fost creat cu succes. Pentru activarea contului folositi linkul primit in e-mailul de confirmare.
60 notice_account_register_done: Contul a fost creat cu succes. Pentru activarea contului folositi linkul primit in e-mailul de confirmare.
61 notice_account_unknown_email: Utilizator inexistent.
61 notice_account_unknown_email: Utilizator inexistent.
62 notice_can_t_change_password: Acest cont foloseste un sistem de autenticare externa. Parola nu poate fi schimbata.
62 notice_can_t_change_password: Acest cont foloseste un sistem de autenticare externa. Parola nu poate fi schimbata.
63 notice_account_lost_email_sent: Un e-mail cu instructiuni de a seta noua parola a fost trimisa.
63 notice_account_lost_email_sent: Un e-mail cu instructiuni de a seta noua parola a fost trimisa.
64 notice_account_activated: Contul a fost activat. Acum puteti intra in cont.
64 notice_account_activated: Contul a fost activat. Acum puteti intra in cont.
65 notice_successful_create: Creat cu succes.
65 notice_successful_create: Creat cu succes.
66 notice_successful_update: Modificare cu succes.
66 notice_successful_update: Modificare cu succes.
67 notice_successful_delete: Stergere cu succes.
67 notice_successful_delete: Stergere cu succes.
68 notice_successful_connection: Conectare cu succes.
68 notice_successful_connection: Conectare cu succes.
69 notice_file_not_found: Pagina dorita nu exista sau nu mai este valabila.
69 notice_file_not_found: Pagina dorita nu exista sau nu mai este valabila.
70 notice_locking_conflict: Informatiile au fost modificate de un alt utilizator.
70 notice_locking_conflict: Informatiile au fost modificate de un alt utilizator.
71 notice_scm_error: Articolul sau reviziunea nu exista in stoc (Repository).
72 notice_not_authorized: Nu aveti autorizatia sa accesati aceasta pagina.
71 notice_not_authorized: Nu aveti autorizatia sa accesati aceasta pagina.
73 notice_email_sent: Un e-mail a fost trimis la adresa %s
72 notice_email_sent: Un e-mail a fost trimis la adresa %s
74 notice_email_error: Eroare in trimiterea e-mailului (%s)
73 notice_email_error: Eroare in trimiterea e-mailului (%s)
75 notice_feeds_access_key_reseted: Parola de acces RSS a fost resetat.
74 notice_feeds_access_key_reseted: Parola de acces RSS a fost resetat.
76
75
76 error_scm_not_found: "Articolul sau reviziunea nu exista in stoc (Repository)."
77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78
77 mail_subject_lost_password: Your Redmine password
79 mail_subject_lost_password: Your Redmine password
78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
80 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
79 mail_subject_register: Redmine account activation
81 mail_subject_register: Redmine account activation
80 mail_body_register: 'To activate your Redmine account, click on the following link:'
82 mail_body_register: 'To activate your Redmine account, click on the following link:'
81
83
82 gui_validation_error: 1 eroare
84 gui_validation_error: 1 eroare
83 gui_validation_error_plural: %d erori
85 gui_validation_error_plural: %d erori
84
86
85 field_name: Nume
87 field_name: Nume
86 field_description: Descriere
88 field_description: Descriere
87 field_summary: Sumar
89 field_summary: Sumar
88 field_is_required: Obligatoriu
90 field_is_required: Obligatoriu
89 field_firstname: Nume
91 field_firstname: Nume
90 field_lastname: Prenume
92 field_lastname: Prenume
91 field_mail: Email
93 field_mail: Email
92 field_filename: Fisier
94 field_filename: Fisier
93 field_filesize: Marimea fisierului
95 field_filesize: Marimea fisierului
94 field_downloads: Download
96 field_downloads: Download
95 field_author: Autor
97 field_author: Autor
96 field_created_on: Creat
98 field_created_on: Creat
97 field_updated_on: Modificat
99 field_updated_on: Modificat
98 field_field_format: Format
100 field_field_format: Format
99 field_is_for_all: Pentru toate proiectele
101 field_is_for_all: Pentru toate proiectele
100 field_possible_values: Valori posibile
102 field_possible_values: Valori posibile
101 field_regexp: Expresie regulara
103 field_regexp: Expresie regulara
102 field_min_length: Lungime minima
104 field_min_length: Lungime minima
103 field_max_length: Lungime maxima
105 field_max_length: Lungime maxima
104 field_value: Valoare
106 field_value: Valoare
105 field_category: Categorie
107 field_category: Categorie
106 field_title: Titlu
108 field_title: Titlu
107 field_project: Proiect
109 field_project: Proiect
108 field_issue: Tichet
110 field_issue: Tichet
109 field_status: Statut
111 field_status: Statut
110 field_notes: Note
112 field_notes: Note
111 field_is_closed: Tichet rezolvat
113 field_is_closed: Tichet rezolvat
112 field_is_default: Statut de baza
114 field_is_default: Statut de baza
113 field_tracker: Tip tichet
115 field_tracker: Tip tichet
114 field_subject: Subiect
116 field_subject: Subiect
115 field_due_date: Data finalizarii
117 field_due_date: Data finalizarii
116 field_assigned_to: Atribuit pentru
118 field_assigned_to: Atribuit pentru
117 field_priority: Prioritate
119 field_priority: Prioritate
118 field_fixed_version: Versiune rezolvata
120 field_fixed_version: Versiune rezolvata
119 field_user: Utilizator
121 field_user: Utilizator
120 field_role: Rol
122 field_role: Rol
121 field_homepage: Pagina principala
123 field_homepage: Pagina principala
122 field_is_public: Public
124 field_is_public: Public
123 field_parent: Subproiect al
125 field_parent: Subproiect al
124 field_is_in_chlog: Tichetele sunt vizibile in changelog
126 field_is_in_chlog: Tichetele sunt vizibile in changelog
125 field_is_in_roadmap: Tichetele sunt vizibile in roadmap
127 field_is_in_roadmap: Tichetele sunt vizibile in roadmap
126 field_login: Autentificare
128 field_login: Autentificare
127 field_mail_notification: Notificari prin e-mail
129 field_mail_notification: Notificari prin e-mail
128 field_admin: Administrator
130 field_admin: Administrator
129 field_last_login_on: Ultima conectare
131 field_last_login_on: Ultima conectare
130 field_language: Limba
132 field_language: Limba
131 field_effective_date: Data
133 field_effective_date: Data
132 field_password: Parola
134 field_password: Parola
133 field_new_password: Parola noua
135 field_new_password: Parola noua
134 field_password_confirmation: Confirmare
136 field_password_confirmation: Confirmare
135 field_version: Versiune
137 field_version: Versiune
136 field_type: Tip
138 field_type: Tip
137 field_host: Host
139 field_host: Host
138 field_port: Port
140 field_port: Port
139 field_account: Cont
141 field_account: Cont
140 field_base_dn: Base DN
142 field_base_dn: Base DN
141 field_attr_login: Atribut autentificare
143 field_attr_login: Atribut autentificare
142 field_attr_firstname: Atribut nume
144 field_attr_firstname: Atribut nume
143 field_attr_lastname: Atribut prenume
145 field_attr_lastname: Atribut prenume
144 field_attr_mail: Atribut e-mail
146 field_attr_mail: Atribut e-mail
145 field_onthefly: Creare utilizator on-the-fly (rapid)
147 field_onthefly: Creare utilizator on-the-fly (rapid)
146 field_start_date: Start
148 field_start_date: Start
147 field_done_ratio: %% rezolvat
149 field_done_ratio: %% rezolvat
148 field_auth_source: Mod de autentificare
150 field_auth_source: Mod de autentificare
149 field_hide_mail: Ascunde adresa de e-mail
151 field_hide_mail: Ascunde adresa de e-mail
150 field_comments: Comentariu
152 field_comments: Comentariu
151 field_url: URL
153 field_url: URL
152 field_start_page: Pagina de start
154 field_start_page: Pagina de start
153 field_subproject: Subproiect
155 field_subproject: Subproiect
154 field_hours: Ore
156 field_hours: Ore
155 field_activity: Activitate
157 field_activity: Activitate
156 field_spent_on: Data
158 field_spent_on: Data
157 field_identifier: Identificator
159 field_identifier: Identificator
158 field_is_filter: Folosit ca un filtru
160 field_is_filter: Folosit ca un filtru
159 field_issue_to_id: Articole similare
161 field_issue_to_id: Articole similare
160 field_delay: Intarziere
162 field_delay: Intarziere
161 field_assignable: La acest rol se poate atribui tichete
163 field_assignable: La acest rol se poate atribui tichete
162 field_redirect_existing_links: Redirectare linkuri existente
164 field_redirect_existing_links: Redirectare linkuri existente
163 field_estimated_hours: Timpul estimat
165 field_estimated_hours: Timpul estimat
164 field_default_value: Default value
166 field_default_value: Default value
165
167
166 setting_app_title: Titlul aplicatiei
168 setting_app_title: Titlul aplicatiei
167 setting_app_subtitle: Subtitlul aplicatiei
169 setting_app_subtitle: Subtitlul aplicatiei
168 setting_welcome_text: Textul de intampinare
170 setting_welcome_text: Textul de intampinare
169 setting_default_language: Limbajul
171 setting_default_language: Limbajul
170 setting_login_required: Autentificare obligatorie
172 setting_login_required: Autentificare obligatorie
171 setting_self_registration: Inregistrarea utilizatorilor pe cont propriu este permisa
173 setting_self_registration: Inregistrarea utilizatorilor pe cont propriu este permisa
172 setting_attachment_max_size: Lungimea maxima al attachmentului
174 setting_attachment_max_size: Lungimea maxima al attachmentului
173 setting_issues_export_limit: Limita de exportare a tichetelor
175 setting_issues_export_limit: Limita de exportare a tichetelor
174 setting_mail_from: Adresa de e-mail al emitatorului
176 setting_mail_from: Adresa de e-mail al emitatorului
175 setting_host_name: Numele hostului
177 setting_host_name: Numele hostului
176 setting_text_formatting: Formatarea textului
178 setting_text_formatting: Formatarea textului
177 setting_wiki_compression: Compresie istoric wiki
179 setting_wiki_compression: Compresie istoric wiki
178 setting_feeds_limit: Limita continut feed
180 setting_feeds_limit: Limita continut feed
179 setting_autofetch_changesets: Autofetch commits
181 setting_autofetch_changesets: Autofetch commits
180 setting_sys_api_enabled: Setare WS pentru managementul stocului (repository)
182 setting_sys_api_enabled: Setare WS pentru managementul stocului (repository)
181 setting_commit_ref_keywords: Cuvinte cheie de referinta
183 setting_commit_ref_keywords: Cuvinte cheie de referinta
182 setting_commit_fix_keywords: Cuvinte cheie de rezolvare
184 setting_commit_fix_keywords: Cuvinte cheie de rezolvare
183 setting_autologin: Autentificare automata
185 setting_autologin: Autentificare automata
184 setting_date_format: Formatul datelor
186 setting_date_format: Formatul datelor
185 setting_cross_project_issue_relations: Tichetele pot avea relatii intre diferite proiecte
187 setting_cross_project_issue_relations: Tichetele pot avea relatii intre diferite proiecte
186
188
187 label_user: Utilizator
189 label_user: Utilizator
188 label_user_plural: Utilizatori
190 label_user_plural: Utilizatori
189 label_user_new: Utilizator nou
191 label_user_new: Utilizator nou
190 label_project: Proiect
192 label_project: Proiect
191 label_project_new: Proiect nou
193 label_project_new: Proiect nou
192 label_project_plural: Proiecte
194 label_project_plural: Proiecte
193 label_project_all: Toate proiectele
195 label_project_all: Toate proiectele
194 label_project_latest: Ultimele proiecte
196 label_project_latest: Ultimele proiecte
195 label_issue: Tichet
197 label_issue: Tichet
196 label_issue_new: Tichet nou
198 label_issue_new: Tichet nou
197 label_issue_plural: Tichete
199 label_issue_plural: Tichete
198 label_issue_view_all: Vizualizare toate tichetele
200 label_issue_view_all: Vizualizare toate tichetele
199 label_document: Document
201 label_document: Document
200 label_document_new: Document nou
202 label_document_new: Document nou
201 label_document_plural: Documente
203 label_document_plural: Documente
202 label_role: Rol
204 label_role: Rol
203 label_role_plural: Roluri
205 label_role_plural: Roluri
204 label_role_new: Rol nou
206 label_role_new: Rol nou
205 label_role_and_permissions: Roluri si permisiuni
207 label_role_and_permissions: Roluri si permisiuni
206 label_member: Membru
208 label_member: Membru
207 label_member_new: Membru nou
209 label_member_new: Membru nou
208 label_member_plural: Membrii
210 label_member_plural: Membrii
209 label_tracker: Tip tichet
211 label_tracker: Tip tichet
210 label_tracker_plural: Tipuri de tichete
212 label_tracker_plural: Tipuri de tichete
211 label_tracker_new: Tip tichet nou
213 label_tracker_new: Tip tichet nou
212 label_workflow: Workflow
214 label_workflow: Workflow
213 label_issue_status: Statut tichet
215 label_issue_status: Statut tichet
214 label_issue_status_plural: Statut tichete
216 label_issue_status_plural: Statut tichete
215 label_issue_status_new: Statut nou
217 label_issue_status_new: Statut nou
216 label_issue_category: Categorie tichet
218 label_issue_category: Categorie tichet
217 label_issue_category_plural: Categorii tichete
219 label_issue_category_plural: Categorii tichete
218 label_issue_category_new: Categorie noua
220 label_issue_category_new: Categorie noua
219 label_custom_field: Camp personalizat
221 label_custom_field: Camp personalizat
220 label_custom_field_plural: Campuri personalizate
222 label_custom_field_plural: Campuri personalizate
221 label_custom_field_new: Camp personalizat nou
223 label_custom_field_new: Camp personalizat nou
222 label_enumerations: Enumeratii
224 label_enumerations: Enumeratii
223 label_enumeration_new: Valoare noua
225 label_enumeration_new: Valoare noua
224 label_information: Informatie
226 label_information: Informatie
225 label_information_plural: Informatii
227 label_information_plural: Informatii
226 label_please_login: Va rugam sa va autentificati
228 label_please_login: Va rugam sa va autentificati
227 label_register: Inregistrare
229 label_register: Inregistrare
228 label_password_lost: Parola pierduta
230 label_password_lost: Parola pierduta
229 label_home: Prima pagina
231 label_home: Prima pagina
230 label_my_page: Pagina mea
232 label_my_page: Pagina mea
231 label_my_account: Contul meu
233 label_my_account: Contul meu
232 label_my_projects: Proiectele mele
234 label_my_projects: Proiectele mele
233 label_administration: Administrare
235 label_administration: Administrare
234 label_login: Autentificare
236 label_login: Autentificare
235 label_logout: Iesire din cont
237 label_logout: Iesire din cont
236 label_help: Ajutor
238 label_help: Ajutor
237 label_reported_issues: Tichete raportate
239 label_reported_issues: Tichete raportate
238 label_assigned_to_me_issues: Tichete atribuite pentru mine
240 label_assigned_to_me_issues: Tichete atribuite pentru mine
239 label_last_login: Ultima conectare
241 label_last_login: Ultima conectare
240 label_last_updates: Ultima modificare
242 label_last_updates: Ultima modificare
241 label_last_updates_plural: ultimele %d modificari
243 label_last_updates_plural: ultimele %d modificari
242 label_registered_on: Inregistrat la
244 label_registered_on: Inregistrat la
243 label_activity: Activitate
245 label_activity: Activitate
244 label_new: Nou
246 label_new: Nou
245 label_logged_as: Inregistrat ca
247 label_logged_as: Inregistrat ca
246 label_environment: Mediu
248 label_environment: Mediu
247 label_authentication: Autentificare
249 label_authentication: Autentificare
248 label_auth_source: Modul de autentificare
250 label_auth_source: Modul de autentificare
249 label_auth_source_new: Mod de autentificare noua
251 label_auth_source_new: Mod de autentificare noua
250 label_auth_source_plural: Moduri de autentificare
252 label_auth_source_plural: Moduri de autentificare
251 label_subproject_plural: Subproiecte
253 label_subproject_plural: Subproiecte
252 label_min_max_length: Lungime min-max
254 label_min_max_length: Lungime min-max
253 label_list: Lista
255 label_list: Lista
254 label_date: Data
256 label_date: Data
255 label_integer: Numar intreg
257 label_integer: Numar intreg
256 label_boolean: Variabila logica
258 label_boolean: Variabila logica
257 label_string: Text
259 label_string: Text
258 label_text: text lung
260 label_text: text lung
259 label_attribute: Atribut
261 label_attribute: Atribut
260 label_attribute_plural: Attribute
262 label_attribute_plural: Attribute
261 label_download: %d Download
263 label_download: %d Download
262 label_download_plural: %d Downloads
264 label_download_plural: %d Downloads
263 label_no_data: Nu exista date de vizualizat
265 label_no_data: Nu exista date de vizualizat
264 label_change_status: Schimbare statut
266 label_change_status: Schimbare statut
265 label_history: Istoric
267 label_history: Istoric
266 label_attachment: Fisier
268 label_attachment: Fisier
267 label_attachment_new: Fisier nou
269 label_attachment_new: Fisier nou
268 label_attachment_delete: Stergere fisier
270 label_attachment_delete: Stergere fisier
269 label_attachment_plural: Fisiere
271 label_attachment_plural: Fisiere
270 label_report: Raport
272 label_report: Raport
271 label_report_plural: Rapoarte
273 label_report_plural: Rapoarte
272 label_news: Stiri
274 label_news: Stiri
273 label_news_new: Adauga stiri
275 label_news_new: Adauga stiri
274 label_news_plural: Stiri
276 label_news_plural: Stiri
275 label_news_latest: Ultimele noutati
277 label_news_latest: Ultimele noutati
276 label_news_view_all: Vizualizare stiri
278 label_news_view_all: Vizualizare stiri
277 label_change_log: Change log
279 label_change_log: Change log
278 label_settings: Setari
280 label_settings: Setari
279 label_overview: Sumar
281 label_overview: Sumar
280 label_version: Versiune
282 label_version: Versiune
281 label_version_new: Versiune noua
283 label_version_new: Versiune noua
282 label_version_plural: Versiuni
284 label_version_plural: Versiuni
283 label_confirmation: Confirmare
285 label_confirmation: Confirmare
284 label_export_to: Exportare in
286 label_export_to: Exportare in
285 label_read: Citire...
287 label_read: Citire...
286 label_public_projects: Proiecte publice
288 label_public_projects: Proiecte publice
287 label_open_issues: deschis
289 label_open_issues: deschis
288 label_open_issues_plural: deschise
290 label_open_issues_plural: deschise
289 label_closed_issues: rezolvat
291 label_closed_issues: rezolvat
290 label_closed_issues_plural: rezolvate
292 label_closed_issues_plural: rezolvate
291 label_total: Total
293 label_total: Total
292 label_permissions: Permisiuni
294 label_permissions: Permisiuni
293 label_current_status: Statut curent
295 label_current_status: Statut curent
294 label_new_statuses_allowed: Drepturi de a schimba statutul in
296 label_new_statuses_allowed: Drepturi de a schimba statutul in
295 label_all: toate
297 label_all: toate
296 label_none: n/a
298 label_none: n/a
297 label_next: Urmator
299 label_next: Urmator
298 label_previous: Anterior
300 label_previous: Anterior
299 label_used_by: Folosit de
301 label_used_by: Folosit de
300 label_details: Detalii
302 label_details: Detalii
301 label_add_note: Adauga o nota
303 label_add_note: Adauga o nota
302 label_per_page: Per pagina
304 label_per_page: Per pagina
303 label_calendar: Calendar
305 label_calendar: Calendar
304 label_months_from: luni incepand cu
306 label_months_from: luni incepand cu
305 label_gantt: Gantt
307 label_gantt: Gantt
306 label_internal: Internal
308 label_internal: Internal
307 label_last_changes: ultimele %d modificari
309 label_last_changes: ultimele %d modificari
308 label_change_view_all: Vizualizare toate modificarile
310 label_change_view_all: Vizualizare toate modificarile
309 label_personalize_page: Personalizeaza aceasta pagina
311 label_personalize_page: Personalizeaza aceasta pagina
310 label_comment: Comentariu
312 label_comment: Comentariu
311 label_comment_plural: Comentarii
313 label_comment_plural: Comentarii
312 label_comment_add: Adauga un comentariu
314 label_comment_add: Adauga un comentariu
313 label_comment_added: Comentariu adaugat
315 label_comment_added: Comentariu adaugat
314 label_comment_delete: Stergere comentarii
316 label_comment_delete: Stergere comentarii
315 label_query: Raport personalizat
317 label_query: Raport personalizat
316 label_query_plural: Rapoarte personalizate
318 label_query_plural: Rapoarte personalizate
317 label_query_new: Raport nou
319 label_query_new: Raport nou
318 label_filter_add: Adauga filtru
320 label_filter_add: Adauga filtru
319 label_filter_plural: Filtre
321 label_filter_plural: Filtre
320 label_equals: egal cu
322 label_equals: egal cu
321 label_not_equals: nu este egal cu
323 label_not_equals: nu este egal cu
322 label_in_less_than: este mai putin decat
324 label_in_less_than: este mai putin decat
323 label_in_more_than: este mai mult ca
325 label_in_more_than: este mai mult ca
324 label_in: in
326 label_in: in
325 label_today: azi
327 label_today: azi
326 label_this_week: saptamana curenta
328 label_this_week: saptamana curenta
327 label_less_than_ago: recent
329 label_less_than_ago: recent
328 label_more_than_ago: mai multe zile
330 label_more_than_ago: mai multe zile
329 label_ago: in ultimele zile
331 label_ago: in ultimele zile
330 label_contains: contine
332 label_contains: contine
331 label_not_contains: nu contine
333 label_not_contains: nu contine
332 label_day_plural: zile
334 label_day_plural: zile
333 label_repository: Stoc (Repository)
335 label_repository: Stoc (Repository)
334 label_browse: Navigare
336 label_browse: Navigare
335 label_modification: %d modificare
337 label_modification: %d modificare
336 label_modification_plural: %d modificari
338 label_modification_plural: %d modificari
337 label_revision: Revizie
339 label_revision: Revizie
338 label_revision_plural: Revizii
340 label_revision_plural: Revizii
339 label_added: adaugat
341 label_added: adaugat
340 label_modified: modificat
342 label_modified: modificat
341 label_deleted: sters
343 label_deleted: sters
342 label_latest_revision: Ultima revizie
344 label_latest_revision: Ultima revizie
343 label_latest_revision_plural: Ultimele revizii
345 label_latest_revision_plural: Ultimele revizii
344 label_view_revisions: Vizualizare revizii
346 label_view_revisions: Vizualizare revizii
345 label_max_size: Marime maxima
347 label_max_size: Marime maxima
346 label_on: 'din'
348 label_on: 'din'
347 label_sort_highest: Muta prima
349 label_sort_highest: Muta prima
348 label_sort_higher: Muta sus
350 label_sort_higher: Muta sus
349 label_sort_lower: Mota jos
351 label_sort_lower: Mota jos
350 label_sort_lowest: Mota ultima
352 label_sort_lowest: Mota ultima
351 label_roadmap: Harta activitatiilor
353 label_roadmap: Harta activitatiilor
352 label_roadmap_due_in: Rezolvat in
354 label_roadmap_due_in: Rezolvat in
353 label_roadmap_overdue: %s intarziere
355 label_roadmap_overdue: %s intarziere
354 label_roadmap_no_issues: Nu sunt tichete pentru aceasta reviziune
356 label_roadmap_no_issues: Nu sunt tichete pentru aceasta reviziune
355 label_search: Cauta
357 label_search: Cauta
356 label_result_plural: Rezultate
358 label_result_plural: Rezultate
357 label_all_words: Toate cuvintele
359 label_all_words: Toate cuvintele
358 label_wiki: Wiki
360 label_wiki: Wiki
359 label_wiki_edit: Editare wiki
361 label_wiki_edit: Editare wiki
360 label_wiki_edit_plural: Editari wiki
362 label_wiki_edit_plural: Editari wiki
361 label_wiki_page: Pagina wiki
363 label_wiki_page: Pagina wiki
362 label_wiki_page_plural: Pagini wiki
364 label_wiki_page_plural: Pagini wiki
363 label_current_version: Versiunea curenta
365 label_current_version: Versiunea curenta
364 label_preview: Pre-vizualizare
366 label_preview: Pre-vizualizare
365 label_feed_plural: Feeduri
367 label_feed_plural: Feeduri
366 label_changes_details: Detaliile modificarilor
368 label_changes_details: Detaliile modificarilor
367 label_issue_tracking: Urmarire tichete
369 label_issue_tracking: Urmarire tichete
368 label_spent_time: Timp consumat
370 label_spent_time: Timp consumat
369 label_f_hour: %.2f ora
371 label_f_hour: %.2f ora
370 label_f_hour_plural: %.2f ore
372 label_f_hour_plural: %.2f ore
371 label_time_tracking: Urmarire timp
373 label_time_tracking: Urmarire timp
372 label_change_plural: Schimbari
374 label_change_plural: Schimbari
373 label_statistics: Statistici
375 label_statistics: Statistici
374 label_commits_per_month: Rezolvari lunare
376 label_commits_per_month: Rezolvari lunare
375 label_commits_per_author: Rezolvari
377 label_commits_per_author: Rezolvari
376 label_view_diff: Vizualizare diferente
378 label_view_diff: Vizualizare diferente
377 label_diff_inline: inline
379 label_diff_inline: inline
378 label_diff_side_by_side: side by side
380 label_diff_side_by_side: side by side
379 label_options: Optiuni
381 label_options: Optiuni
380 label_copy_workflow_from: Copiaza workflow de la
382 label_copy_workflow_from: Copiaza workflow de la
381 label_permissions_report: Raportul permisiunilor
383 label_permissions_report: Raportul permisiunilor
382 label_watched_issues: Tichete urmarite
384 label_watched_issues: Tichete urmarite
383 label_related_issues: Tichete similare
385 label_related_issues: Tichete similare
384 label_applied_status: Statut aplicat
386 label_applied_status: Statut aplicat
385 label_loading: Incarcare...
387 label_loading: Incarcare...
386 label_relation_new: Relatie noua
388 label_relation_new: Relatie noua
387 label_relation_delete: Stergere relatie
389 label_relation_delete: Stergere relatie
388 label_relates_to: relatat la
390 label_relates_to: relatat la
389 label_duplicates: duplicate
391 label_duplicates: duplicate
390 label_blocks: blocuri
392 label_blocks: blocuri
391 label_blocked_by: blocat de
393 label_blocked_by: blocat de
392 label_precedes: precedes
394 label_precedes: precedes
393 label_follows: follows
395 label_follows: follows
394 label_end_to_start: de la sfarsit la capat
396 label_end_to_start: de la sfarsit la capat
395 label_end_to_end: de la sfarsit la sfarsit
397 label_end_to_end: de la sfarsit la sfarsit
396 label_start_to_start: de la capat la capat
398 label_start_to_start: de la capat la capat
397 label_start_to_end: de la sfarsit la capat
399 label_start_to_end: de la sfarsit la capat
398 label_stay_logged_in: Ramane autenticat
400 label_stay_logged_in: Ramane autenticat
399 label_disabled: dezactivata
401 label_disabled: dezactivata
400 label_show_completed_versions: Vizualizare verziuni completate
402 label_show_completed_versions: Vizualizare verziuni completate
401 label_me: mine
403 label_me: mine
402 label_board: Forum
404 label_board: Forum
403 label_board_new: Forum nou
405 label_board_new: Forum nou
404 label_board_plural: Forumuri
406 label_board_plural: Forumuri
405 label_topic_plural: Subiecte
407 label_topic_plural: Subiecte
406 label_message_plural: Mesaje
408 label_message_plural: Mesaje
407 label_message_last: Ultimul mesaj
409 label_message_last: Ultimul mesaj
408 label_message_new: Mesaj nou
410 label_message_new: Mesaj nou
409 label_reply_plural: Raspunsuri
411 label_reply_plural: Raspunsuri
410 label_send_information: Trimite informatii despre cont pentru utilizator
412 label_send_information: Trimite informatii despre cont pentru utilizator
411 label_year: An
413 label_year: An
412 label_month: Luna
414 label_month: Luna
413 label_week: Saptamana
415 label_week: Saptamana
414 label_date_from: De la
416 label_date_from: De la
415 label_date_to: Pentru
417 label_date_to: Pentru
416 label_language_based: Bazat pe limbaj
418 label_language_based: Bazat pe limbaj
417 label_sort_by: Sortare dupa %s
419 label_sort_by: Sortare dupa %s
418 label_send_test_email: trimite un e-mail de test
420 label_send_test_email: trimite un e-mail de test
419 label_feeds_access_key_created_on: Parola de acces RSS creat cu %s mai devreme
421 label_feeds_access_key_created_on: Parola de acces RSS creat cu %s mai devreme
420 label_module_plural: Module
422 label_module_plural: Module
421 label_added_time_by: Adaugat de %s %s mai devreme
423 label_added_time_by: Adaugat de %s %s mai devreme
422 label_updated_time: Modificat %s mai devreme
424 label_updated_time: Modificat %s mai devreme
423 label_jump_to_a_project: Alege un proiect ...
425 label_jump_to_a_project: Alege un proiect ...
424
426
425 button_login: Autentificare
427 button_login: Autentificare
426 button_submit: Trimite
428 button_submit: Trimite
427 button_save: Salveaza
429 button_save: Salveaza
428 button_check_all: Bifeaza toate
430 button_check_all: Bifeaza toate
429 button_uncheck_all: Reseteaza toate
431 button_uncheck_all: Reseteaza toate
430 button_delete: Sterge
432 button_delete: Sterge
431 button_create: Creare
433 button_create: Creare
432 button_test: Test
434 button_test: Test
433 button_edit: Editare
435 button_edit: Editare
434 button_add: Adauga
436 button_add: Adauga
435 button_change: Modificare
437 button_change: Modificare
436 button_apply: Aplicare
438 button_apply: Aplicare
437 button_clear: Resetare
439 button_clear: Resetare
438 button_lock: Inchide
440 button_lock: Inchide
439 button_unlock: Deschide
441 button_unlock: Deschide
440 button_download: Download
442 button_download: Download
441 button_list: Listare
443 button_list: Listare
442 button_view: Vizualizare
444 button_view: Vizualizare
443 button_move: Mutare
445 button_move: Mutare
444 button_back: Inapoi
446 button_back: Inapoi
445 button_cancel: Anulare
447 button_cancel: Anulare
446 button_activate: Activare
448 button_activate: Activare
447 button_sort: Sortare
449 button_sort: Sortare
448 button_log_time: Log time
450 button_log_time: Log time
449 button_rollback: Inapoi la aceasta versiune
451 button_rollback: Inapoi la aceasta versiune
450 button_watch: Urmarie
452 button_watch: Urmarie
451 button_unwatch: Terminare urmarire
453 button_unwatch: Terminare urmarire
452 button_reply: Raspuns
454 button_reply: Raspuns
453 button_archive: Arhivare
455 button_archive: Arhivare
454 button_unarchive: Dezarhivare
456 button_unarchive: Dezarhivare
455 button_reset: Reset
457 button_reset: Reset
456 button_rename: Redenumire
458 button_rename: Redenumire
457
459
458 status_active: activ
460 status_active: activ
459 status_registered: inregistrat
461 status_registered: inregistrat
460 status_locked: inchis
462 status_locked: inchis
461
463
462 text_select_mail_notifications: Selectare actiuni pentru care se va trimite notificari prin e-mail.
464 text_select_mail_notifications: Selectare actiuni pentru care se va trimite notificari prin e-mail.
463 text_regexp_info: de exemplu ^[A-Z0-9]+$
465 text_regexp_info: de exemplu ^[A-Z0-9]+$
464 text_min_max_length_info: 0 inseamna fara restrictii
466 text_min_max_length_info: 0 inseamna fara restrictii
465 text_project_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest proiect si toate datele aferente ?
467 text_project_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest proiect si toate datele aferente ?
466 text_workflow_edit: Selecteaza un rol si un tip tichet pentru a edita acest workflow
468 text_workflow_edit: Selecteaza un rol si un tip tichet pentru a edita acest workflow
467 text_are_you_sure: Sunteti sigur ?
469 text_are_you_sure: Sunteti sigur ?
468 text_journal_changed: modificat de la %s la %s
470 text_journal_changed: modificat de la %s la %s
469 text_journal_set_to: setat la %s
471 text_journal_set_to: setat la %s
470 text_journal_deleted: sters
472 text_journal_deleted: sters
471 text_tip_task_begin_day: activitate care incepe azi
473 text_tip_task_begin_day: activitate care incepe azi
472 text_tip_task_end_day: activitate care se termina azi
474 text_tip_task_end_day: activitate care se termina azi
473 text_tip_task_begin_end_day: activitate care incepe si se termina azi
475 text_tip_task_begin_end_day: activitate care incepe si se termina azi
474 text_project_identifier_info: 'Se poate folosi caracterele a-z si cifrele.<br />Odata salvat identificatorul nu poate fi modificat.'
476 text_project_identifier_info: 'Se poate folosi caracterele a-z si cifrele.<br />Odata salvat identificatorul nu poate fi modificat.'
475 text_caracters_maximum: maximum %d caractere.
477 text_caracters_maximum: maximum %d caractere.
476 text_length_between: Lungimea intre %d si %d caractere.
478 text_length_between: Lungimea intre %d si %d caractere.
477 text_tracker_no_workflow: Nu este definit nici un workflow pentru acest tip de tichet
479 text_tracker_no_workflow: Nu este definit nici un workflow pentru acest tip de tichet
478 text_unallowed_characters: Caractere nepermise
480 text_unallowed_characters: Caractere nepermise
479 text_comma_separated: Se poate folosi valori multiple (separate de virgula).
481 text_comma_separated: Se poate folosi valori multiple (separate de virgula).
480 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
481 text_issue_added: Tichetul %s a fost raportat.
483 text_issue_added: Tichetul %s a fost raportat.
482 text_issue_updated: tichetul %s a fost modificat.
484 text_issue_updated: tichetul %s a fost modificat.
483 text_wiki_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest wiki si continutul ei ?
485 text_wiki_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest wiki si continutul ei ?
484 text_issue_category_destroy_question: Cateva tichete (%d) apartin acestei categorii. Cum vreti sa procedati ?
486 text_issue_category_destroy_question: Cateva tichete (%d) apartin acestei categorii. Cum vreti sa procedati ?
485 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
486 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
487
489
488 default_role_manager: Manager
490 default_role_manager: Manager
489 default_role_developper: Programator
491 default_role_developper: Programator
490 default_role_reporter: Creator rapoarte
492 default_role_reporter: Creator rapoarte
491 default_tracker_bug: Defect
493 default_tracker_bug: Defect
492 default_tracker_feature: Functionalitate
494 default_tracker_feature: Functionalitate
493 default_tracker_support: Suport
495 default_tracker_support: Suport
494 default_issue_status_new: Nou
496 default_issue_status_new: Nou
495 default_issue_status_assigned: Atribuit
497 default_issue_status_assigned: Atribuit
496 default_issue_status_resolved: Rezolvat
498 default_issue_status_resolved: Rezolvat
497 default_issue_status_feedback: Feedback
499 default_issue_status_feedback: Feedback
498 default_issue_status_closed: Rezolvat
500 default_issue_status_closed: Rezolvat
499 default_issue_status_rejected: Respins
501 default_issue_status_rejected: Respins
500 default_doc_category_user: Documentatie
502 default_doc_category_user: Documentatie
501 default_doc_category_tech: Documentatie tehnica
503 default_doc_category_tech: Documentatie tehnica
502 default_priority_low: Redusa
504 default_priority_low: Redusa
503 default_priority_normal: Normala
505 default_priority_normal: Normala
504 default_priority_high: Ridicata
506 default_priority_high: Ridicata
505 default_priority_urgent: Urgenta
507 default_priority_urgent: Urgenta
506 default_priority_immediate: Imediata
508 default_priority_immediate: Imediata
507 default_activity_design: Design
509 default_activity_design: Design
508 default_activity_development: Programare
510 default_activity_development: Programare
509
511
510 enumeration_issue_priorities: Prioritati tichet
512 enumeration_issue_priorities: Prioritati tichet
511 enumeration_doc_categories: Categorii documente
513 enumeration_doc_categories: Categorii documente
512 enumeration_activities: Activitati (urmarite in timp)
514 enumeration_activities: Activitati (urmarite in timp)
513 label_index_by_date: Index by date
515 label_index_by_date: Index by date
514 label_index_by_title: Index by title
516 label_index_by_title: Index by title
515 label_file_plural: Files
517 label_file_plural: Files
516 label_changeset_plural: Changesets
518 label_changeset_plural: Changesets
517 field_column_names: Columns
519 field_column_names: Columns
518 label_default_columns: Default columns
520 label_default_columns: Default columns
519 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
520 setting_repositories_encodings: Repositories encodings
522 setting_repositories_encodings: Repositories encodings
521 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."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
524 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
525 label_no_change_option: (No change)
524 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."
525 label_theme: Theme
527 label_theme: Theme
526 label_default: Default
528 label_default: Default
527 label_search_titles_only: Search titles only
529 label_search_titles_only: Search titles only
528 label_nobody: nobody
530 label_nobody: nobody
529 button_change_password: Change password
531 button_change_password: Change password
530 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)."
531 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..."
532 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"
533 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"
534 setting_emails_footer: Emails footer
536 setting_emails_footer: Emails footer
535 label_float: Float
537 label_float: Float
536 button_copy: Copy
538 button_copy: Copy
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
538 mail_body_account_information: Your Redmine account information
540 mail_body_account_information: Your Redmine account information
539 setting_protocol: Protocol
541 setting_protocol: Protocol
540 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"
541 setting_time_format: Time format
543 setting_time_format: Time format
542 label_registration_activation_by_email: account activation by email
544 label_registration_activation_by_email: account activation by email
543 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: Redmine account activation request
544 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:'
545 label_registration_automatic_activation: automatic account activation
547 label_registration_automatic_activation: automatic account activation
546 label_registration_manual_activation: manual account activation
548 label_registration_manual_activation: manual account activation
547 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."
548 field_time_zone: Time zone
550 field_time_zone: Time zone
549 text_caracters_minimum: Must be at least %d characters long.
551 text_caracters_minimum: Must be at least %d characters long.
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 button_annotate: Annotate
553 button_annotate: Annotate
552 label_issues_by: Issues by %s
554 label_issues_by: Issues by %s
553 field_searchable: Searchable
555 field_searchable: Searchable
554 label_display_per_page: 'Per page: %s'
556 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
557 setting_per_page_options: Objects per page options
556 label_age: Age
558 label_age: Age
557 notice_default_data_loaded: Default configuration successfully loaded.
559 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
560 text_load_default_configuration: Load the default configuration
559 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."
560 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"
561 button_update: Update
563 button_update: Update
562 label_change_properties: Change properties
564 label_change_properties: Change properties
563 label_general: General
565 label_general: General
564 label_repository_plural: Repositories
566 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
567 label_associated_revisions: Associated revisions
@@ -1,564 +1,566
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: %%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: 'Нет'
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: 'Russian (Русский)'
49 general_lang_name: 'Russian (Русский)'
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: Неизвестный пользователь.
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_scm_error: Записи и/или исправления нет в репозитории.
72 notice_not_authorized: У вас нет прав для посещения данной страницы.
71 notice_not_authorized: У вас нет прав для посещения данной страницы.
73 notice_email_sent: Отправлено письмо %s
72 notice_email_sent: Отправлено письмо %s
74 notice_email_error: Во время отправки письма произошла ошибка (%s)
73 notice_email_error: Во время отправки письма произошла ошибка (%s)
75 notice_feeds_access_key_reseted: Ваш ключ доступа RSS был перезапущен.
74 notice_feeds_access_key_reseted: Ваш ключ доступа RSS был перезапущен.
76 notice_failed_to_save_issues: "Не удалось сохранить %d пункт(ов)из %d выбранных: %s."
75 notice_failed_to_save_issues: "Не удалось сохранить %d пункт(ов)из %d выбранных: %s."
77 notice_no_issue_selected: "Не выбрано ни одной задачи! Пожалуйста, отметьте задачи, которые вы хотите отредактировать."
76 notice_no_issue_selected: "Не выбрано ни одной задачи! Пожалуйста, отметьте задачи, которые вы хотите отредактировать."
78
77
78 error_scm_not_found: Записи и/или исправления нет в репозитории.
79 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
80
79 mail_subject_lost_password: Ваш Redmine пароль
81 mail_subject_lost_password: Ваш Redmine пароль
80 mail_body_lost_password: 'Для изменения Redmine пароля, зайдите по следующей ссылке:'
82 mail_body_lost_password: 'Для изменения Redmine пароля, зайдите по следующей ссылке:'
81 mail_subject_register: Активация учетной записи Redmine
83 mail_subject_register: Активация учетной записи Redmine
82 mail_body_register: 'Для активации учетной записи Redmine, зайдите по следующей ссылке:'
84 mail_body_register: 'Для активации учетной записи Redmine, зайдите по следующей ссылке:'
83 mail_body_account_information_external: Вы можете использовать вашу "%s" учетную запись для входа в Redmine.
85 mail_body_account_information_external: Вы можете использовать вашу "%s" учетную запись для входа в Redmine.
84 mail_body_account_information: Информация по Вашей учетной записи Redmine
86 mail_body_account_information: Информация по Вашей учетной записи Redmine
85
87
86 gui_validation_error: 1 ошибка
88 gui_validation_error: 1 ошибка
87 gui_validation_error_plural: %d ошибки(ок)
89 gui_validation_error_plural: %d ошибки(ок)
88
90
89 field_name: Имя
91 field_name: Имя
90 field_description: Описание
92 field_description: Описание
91 field_summary: Краткое описание
93 field_summary: Краткое описание
92 field_is_required: Необходимо
94 field_is_required: Необходимо
93 field_firstname: Имя
95 field_firstname: Имя
94 field_lastname: Фамилия
96 field_lastname: Фамилия
95 field_mail: Email
97 field_mail: Email
96 field_filename: Файл
98 field_filename: Файл
97 field_filesize: Размер
99 field_filesize: Размер
98 field_downloads: Загрузки
100 field_downloads: Загрузки
99 field_author: Автор
101 field_author: Автор
100 field_created_on: Создано
102 field_created_on: Создано
101 field_updated_on: Обновлено
103 field_updated_on: Обновлено
102 field_field_format: Формат
104 field_field_format: Формат
103 field_is_for_all: Для всех форматов
105 field_is_for_all: Для всех форматов
104 field_possible_values: Возможные значения
106 field_possible_values: Возможные значения
105 field_regexp: Регулярное выражение
107 field_regexp: Регулярное выражение
106 field_min_length: Минимальная длина
108 field_min_length: Минимальная длина
107 field_max_length: Максимальная длина
109 field_max_length: Максимальная длина
108 field_value: Значение
110 field_value: Значение
109 field_category: Категория
111 field_category: Категория
110 field_title: Название
112 field_title: Название
111 field_project: Проект
113 field_project: Проект
112 field_issue: Задача
114 field_issue: Задача
113 field_status: Статус
115 field_status: Статус
114 field_notes: Примечания
116 field_notes: Примечания
115 field_is_closed: Задача закрыта
117 field_is_closed: Задача закрыта
116 field_is_default: Значение по умолчанию
118 field_is_default: Значение по умолчанию
117 field_tracker: Трекер
119 field_tracker: Трекер
118 field_subject: Тема
120 field_subject: Тема
119 field_due_date: Дата выполнения
121 field_due_date: Дата выполнения
120 field_assigned_to: Назначена
122 field_assigned_to: Назначена
121 field_priority: Приоритет
123 field_priority: Приоритет
122 field_fixed_version: Фиксированная версия
124 field_fixed_version: Фиксированная версия
123 field_user: Пользователь
125 field_user: Пользователь
124 field_role: Роль
126 field_role: Роль
125 field_homepage: Стартовая страница
127 field_homepage: Стартовая страница
126 field_is_public: Публичный
128 field_is_public: Публичный
127 field_parent: Подпроект
129 field_parent: Подпроект
128 field_is_in_chlog: Задачи, отображаемые в журнале изменений
130 field_is_in_chlog: Задачи, отображаемые в журнале изменений
129 field_is_in_roadmap: Задачи, отображаемые в оперативном плане
131 field_is_in_roadmap: Задачи, отображаемые в оперативном плане
130 field_login: Вход
132 field_login: Вход
131 field_mail_notification: Уведомления по Email
133 field_mail_notification: Уведомления по Email
132 field_admin: Администратор
134 field_admin: Администратор
133 field_last_login_on: Последнее подключение
135 field_last_login_on: Последнее подключение
134 field_language: Язык
136 field_language: Язык
135 field_effective_date: Дата
137 field_effective_date: Дата
136 field_password: Пароль
138 field_password: Пароль
137 field_new_password: Новый пароль
139 field_new_password: Новый пароль
138 field_password_confirmation: Подтверждение
140 field_password_confirmation: Подтверждение
139 field_version: Версия
141 field_version: Версия
140 field_type: Тип
142 field_type: Тип
141 field_host: Компьютер
143 field_host: Компьютер
142 field_port: Порт
144 field_port: Порт
143 field_account: Учетная запись
145 field_account: Учетная запись
144 field_base_dn: Базовое отличительное имя
146 field_base_dn: Базовое отличительное имя
145 field_attr_login: Атрибут Регистрация
147 field_attr_login: Атрибут Регистрация
146 field_attr_firstname: Атрибут Имя
148 field_attr_firstname: Атрибут Имя
147 field_attr_lastname: Атрибут Фамилия
149 field_attr_lastname: Атрибут Фамилия
148 field_attr_mail: Атрибут Email
150 field_attr_mail: Атрибут Email
149 field_onthefly: Создание пользователя на лету
151 field_onthefly: Создание пользователя на лету
150 field_start_date: Начало
152 field_start_date: Начало
151 field_done_ratio: Готовность в %%
153 field_done_ratio: Готовность в %%
152 field_auth_source: Режим аутентификации
154 field_auth_source: Режим аутентификации
153 field_hide_mail: Скрывать мой email
155 field_hide_mail: Скрывать мой email
154 field_comments: Комментарий
156 field_comments: Комментарий
155 field_url: URL
157 field_url: URL
156 field_start_page: Стартовая страница
158 field_start_page: Стартовая страница
157 field_subproject: Подпроект
159 field_subproject: Подпроект
158 field_hours: Час(а)(ов)
160 field_hours: Час(а)(ов)
159 field_activity: Деятельность
161 field_activity: Деятельность
160 field_spent_on: Дата
162 field_spent_on: Дата
161 field_identifier: Ун. идентификатор
163 field_identifier: Ун. идентификатор
162 field_is_filter: Используется в качестве фильтра
164 field_is_filter: Используется в качестве фильтра
163 field_issue_to_id: Связанные задачи
165 field_issue_to_id: Связанные задачи
164 field_delay: Отложить
166 field_delay: Отложить
165 field_assignable: Задача может быть назначена этой роли
167 field_assignable: Задача может быть назначена этой роли
166 field_redirect_existing_links: Перенаправить существующие ссылки
168 field_redirect_existing_links: Перенаправить существующие ссылки
167 field_estimated_hours: Оцененное время
169 field_estimated_hours: Оцененное время
168 field_column_names: Колонки
170 field_column_names: Колонки
169 field_default_value: Default value
171 field_default_value: Default value
170
172
171 setting_app_title: Название приложения
173 setting_app_title: Название приложения
172 setting_app_subtitle: Подзаголовок приложения
174 setting_app_subtitle: Подзаголовок приложения
173 setting_welcome_text: Текст приветствия
175 setting_welcome_text: Текст приветствия
174 setting_default_language: Язык по умолчанию
176 setting_default_language: Язык по умолчанию
175 setting_login_required: Необходима аутентификация
177 setting_login_required: Необходима аутентификация
176 setting_self_registration: Возможна само-регистрация
178 setting_self_registration: Возможна само-регистрация
177 setting_attachment_max_size: Максимальный размер вложения
179 setting_attachment_max_size: Максимальный размер вложения
178 setting_issues_export_limit: Ограничение по экспортируемым задачам
180 setting_issues_export_limit: Ограничение по экспортируемым задачам
179 setting_mail_from: email адрес для передачи информации
181 setting_mail_from: email адрес для передачи информации
180 setting_host_name: Имя компьютера
182 setting_host_name: Имя компьютера
181 setting_text_formatting: Форматирование текста
183 setting_text_formatting: Форматирование текста
182 setting_wiki_compression: Сжатие истории Wiki
184 setting_wiki_compression: Сжатие истории Wiki
183 setting_feeds_limit: Ограничения вводимого содержания
185 setting_feeds_limit: Ограничения вводимого содержания
184 setting_autofetch_changesets: Автоматически следить за коммитами
186 setting_autofetch_changesets: Автоматически следить за коммитами
185 setting_sys_api_enabled: Разрешить WS для управления репозиторием
187 setting_sys_api_enabled: Разрешить WS для управления репозиторием
186 setting_commit_ref_keywords: Ключевые слова для поиска
188 setting_commit_ref_keywords: Ключевые слова для поиска
187 setting_commit_fix_keywords: Назначение ключевых слов
189 setting_commit_fix_keywords: Назначение ключевых слов
188 setting_autologin: Автоматический вход
190 setting_autologin: Автоматический вход
189 setting_date_format: Формат даты
191 setting_date_format: Формат даты
190 setting_time_format: Формат времени
192 setting_time_format: Формат времени
191 setting_cross_project_issue_relations: Разрешить пересечение задач по проектам
193 setting_cross_project_issue_relations: Разрешить пересечение задач по проектам
192 setting_issue_list_default_columns: Колонки, отображаемые в списке задач по умолчанию
194 setting_issue_list_default_columns: Колонки, отображаемые в списке задач по умолчанию
193 setting_repositories_encodings: Кодировки репозитория
195 setting_repositories_encodings: Кодировки репозитория
194 setting_emails_footer: Подстрочные примечания Emailов
196 setting_emails_footer: Подстрочные примечания Emailов
195 setting_protocol: Протокол
197 setting_protocol: Протокол
196
198
197 label_user: Пользователь
199 label_user: Пользователь
198 label_user_plural: Пользователи
200 label_user_plural: Пользователи
199 label_user_new: Новый пользователь
201 label_user_new: Новый пользователь
200 label_project: Проект
202 label_project: Проект
201 label_project_new: Новый проект
203 label_project_new: Новый проект
202 label_project_plural: Проекты
204 label_project_plural: Проекты
203 label_project_all: Все проекты
205 label_project_all: Все проекты
204 label_project_latest: Последние проекты
206 label_project_latest: Последние проекты
205 label_issue: Задача
207 label_issue: Задача
206 label_issue_new: Новая задача
208 label_issue_new: Новая задача
207 label_issue_plural: Задачи
209 label_issue_plural: Задачи
208 label_issue_view_all: Просмотреть все задачи
210 label_issue_view_all: Просмотреть все задачи
209 label_document: Документ
211 label_document: Документ
210 label_document_new: Новый документ
212 label_document_new: Новый документ
211 label_document_plural: Документы
213 label_document_plural: Документы
212 label_role: Роль
214 label_role: Роль
213 label_role_plural: Роли
215 label_role_plural: Роли
214 label_role_new: Новая роль
216 label_role_new: Новая роль
215 label_role_and_permissions: Роли и права доступа
217 label_role_and_permissions: Роли и права доступа
216 label_member: Участник
218 label_member: Участник
217 label_member_new: Новый участник
219 label_member_new: Новый участник
218 label_member_plural: Участники
220 label_member_plural: Участники
219 label_tracker: Трекер
221 label_tracker: Трекер
220 label_tracker_plural: Трекеры
222 label_tracker_plural: Трекеры
221 label_tracker_new: Новый трекер
223 label_tracker_new: Новый трекер
222 label_workflow: Последовательность действий
224 label_workflow: Последовательность действий
223 label_issue_status: Статус задачи
225 label_issue_status: Статус задачи
224 label_issue_status_plural: Статусы задачи
226 label_issue_status_plural: Статусы задачи
225 label_issue_status_new: Новый статус
227 label_issue_status_new: Новый статус
226 label_issue_category: Категория задачи
228 label_issue_category: Категория задачи
227 label_issue_category_plural: Категории задачи
229 label_issue_category_plural: Категории задачи
228 label_issue_category_new: Новая категория
230 label_issue_category_new: Новая категория
229 label_custom_field: Поле клиента
231 label_custom_field: Поле клиента
230 label_custom_field_plural: Поля клиента
232 label_custom_field_plural: Поля клиента
231 label_custom_field_new: Новое поле клиента
233 label_custom_field_new: Новое поле клиента
232 label_enumerations: Справочники
234 label_enumerations: Справочники
233 label_enumeration_new: Новое значение
235 label_enumeration_new: Новое значение
234 label_information: Информация
236 label_information: Информация
235 label_information_plural: Информация
237 label_information_plural: Информация
236 label_please_login: Пожалуйста, войдите.
238 label_please_login: Пожалуйста, войдите.
237 label_register: Зарегистрироваться
239 label_register: Зарегистрироваться
238 label_password_lost: Забыли пароль
240 label_password_lost: Забыли пароль
239 label_home: Домашняя страница
241 label_home: Домашняя страница
240 label_my_page: Моя страница
242 label_my_page: Моя страница
241 label_my_account: Моя учетная запись
243 label_my_account: Моя учетная запись
242 label_my_projects: Мои проекты
244 label_my_projects: Мои проекты
243 label_administration: Администрирование
245 label_administration: Администрирование
244 label_login: Войти
246 label_login: Войти
245 label_logout: Выйти
247 label_logout: Выйти
246 label_help: Помощь
248 label_help: Помощь
247 label_reported_issues: Созданые задачи
249 label_reported_issues: Созданые задачи
248 label_assigned_to_me_issues: Мои задачи
250 label_assigned_to_me_issues: Мои задачи
249 label_last_login: Последнее подключение
251 label_last_login: Последнее подключение
250 label_last_updates: Последнее обновление
252 label_last_updates: Последнее обновление
251 label_last_updates_plural: %d последние обновления
253 label_last_updates_plural: %d последние обновления
252 label_registered_on: Зарегистрирован(а)
254 label_registered_on: Зарегистрирован(а)
253 label_activity: Активность
255 label_activity: Активность
254 label_new: Новый
256 label_new: Новый
255 label_logged_as: Вошел как
257 label_logged_as: Вошел как
256 label_environment: Окружение
258 label_environment: Окружение
257 label_authentication: Аутентификация
259 label_authentication: Аутентификация
258 label_auth_source: Режим аутентификации
260 label_auth_source: Режим аутентификации
259 label_auth_source_new: Новый режим аутентификации
261 label_auth_source_new: Новый режим аутентификации
260 label_auth_source_plural: Режимы аутентификации
262 label_auth_source_plural: Режимы аутентификации
261 label_subproject_plural: Подпроекты
263 label_subproject_plural: Подпроекты
262 label_min_max_length: Min - Максимальная длина
264 label_min_max_length: Min - Максимальная длина
263 label_list: Список
265 label_list: Список
264 label_date: Дата
266 label_date: Дата
265 label_integer: Целый
267 label_integer: Целый
266 label_float: Свободный
268 label_float: Свободный
267 label_boolean: Логический
269 label_boolean: Логический
268 label_string: Текст
270 label_string: Текст
269 label_text: Длинный текст
271 label_text: Длинный текст
270 label_attribute: Атрибут
272 label_attribute: Атрибут
271 label_attribute_plural: атрибуты
273 label_attribute_plural: атрибуты
272 label_download: %d Загружено
274 label_download: %d Загружено
273 label_download_plural: %d Загрузок
275 label_download_plural: %d Загрузок
274 label_no_data: Нет данных для отображения
276 label_no_data: Нет данных для отображения
275 label_change_status: Изменить статус
277 label_change_status: Изменить статус
276 label_history: История
278 label_history: История
277 label_attachment: Файл
279 label_attachment: Файл
278 label_attachment_new: Новый файл
280 label_attachment_new: Новый файл
279 label_attachment_delete: Удалить файл
281 label_attachment_delete: Удалить файл
280 label_attachment_plural: Файлы
282 label_attachment_plural: Файлы
281 label_report: Отчет
283 label_report: Отчет
282 label_report_plural: Отчеты
284 label_report_plural: Отчеты
283 label_news: Новости
285 label_news: Новости
284 label_news_new: Добавить новость
286 label_news_new: Добавить новость
285 label_news_plural: Новости
287 label_news_plural: Новости
286 label_news_latest: Последние новости
288 label_news_latest: Последние новости
287 label_news_view_all: Посмотреть все новости
289 label_news_view_all: Посмотреть все новости
288 label_change_log: Журнал изменений
290 label_change_log: Журнал изменений
289 label_settings: Настройки
291 label_settings: Настройки
290 label_overview: Просмотр
292 label_overview: Просмотр
291 label_version: Версия
293 label_version: Версия
292 label_version_new: Новая версия
294 label_version_new: Новая версия
293 label_version_plural: Версии
295 label_version_plural: Версии
294 label_confirmation: Подтверждение
296 label_confirmation: Подтверждение
295 label_export_to: Экспортировать в
297 label_export_to: Экспортировать в
296 label_read: Чтение...
298 label_read: Чтение...
297 label_public_projects: Общие проекты
299 label_public_projects: Общие проекты
298 label_open_issues: открытый
300 label_open_issues: открытый
299 label_open_issues_plural: открытые
301 label_open_issues_plural: открытые
300 label_closed_issues: закрытый
302 label_closed_issues: закрытый
301 label_closed_issues_plural: закрытые
303 label_closed_issues_plural: закрытые
302 label_total: Всего
304 label_total: Всего
303 label_permissions: Права доступа
305 label_permissions: Права доступа
304 label_current_status: Текущий статус
306 label_current_status: Текущий статус
305 label_new_statuses_allowed: Разрешены новые статусы
307 label_new_statuses_allowed: Разрешены новые статусы
306 label_all: Все
308 label_all: Все
307 label_none: Никому
309 label_none: Никому
308 label_nobody: Никто
310 label_nobody: Никто
309 label_next: Следующий
311 label_next: Следующий
310 label_previous: Предыдущий
312 label_previous: Предыдущий
311 label_used_by: Используется
313 label_used_by: Используется
312 label_details: Подробности
314 label_details: Подробности
313 label_add_note: Добавить замечание
315 label_add_note: Добавить замечание
314 label_per_page: На страницу
316 label_per_page: На страницу
315 label_calendar: Календарь
317 label_calendar: Календарь
316 label_months_from: месяцев(ца) с
318 label_months_from: месяцев(ца) с
317 label_gantt: Диаграмма Гантта
319 label_gantt: Диаграмма Гантта
318 label_internal: Внутренний
320 label_internal: Внутренний
319 label_last_changes: менее %d изменений
321 label_last_changes: менее %d изменений
320 label_change_view_all: Просмотреть все изменения
322 label_change_view_all: Просмотреть все изменения
321 label_personalize_page: Персонализировать данную страницу
323 label_personalize_page: Персонализировать данную страницу
322 label_comment: Комментировать
324 label_comment: Комментировать
323 label_comment_plural: Комментарии
325 label_comment_plural: Комментарии
324 label_comment_add: Оставить комментарий
326 label_comment_add: Оставить комментарий
325 label_comment_added: Добавленный комментарий
327 label_comment_added: Добавленный комментарий
326 label_comment_delete: Удалить комментарии
328 label_comment_delete: Удалить комментарии
327 label_query: Запрос клиента
329 label_query: Запрос клиента
328 label_query_plural: Запросы клиентов
330 label_query_plural: Запросы клиентов
329 label_query_new: Новый запрос
331 label_query_new: Новый запрос
330 label_filter_add: Добавить фильтр
332 label_filter_add: Добавить фильтр
331 label_filter_plural: Фильтры
333 label_filter_plural: Фильтры
332 label_equals: есть
334 label_equals: есть
333 label_not_equals: нет
335 label_not_equals: нет
334 label_in_less_than: менее чем
336 label_in_less_than: менее чем
335 label_in_more_than: более чем
337 label_in_more_than: более чем
336 label_in: в
338 label_in: в
337 label_today: сегодня
339 label_today: сегодня
338 label_this_week: на этой неделе
340 label_this_week: на этой неделе
339 label_less_than_ago: менее чем дней(я) назад
341 label_less_than_ago: менее чем дней(я) назад
340 label_more_than_ago: более чем дней(я) назад
342 label_more_than_ago: более чем дней(я) назад
341 label_ago: дней(я) назад
343 label_ago: дней(я) назад
342 label_contains: содержит
344 label_contains: содержит
343 label_not_contains: не содержит
345 label_not_contains: не содержит
344 label_day_plural: дней(я)
346 label_day_plural: дней(я)
345 label_repository: Репозиторий
347 label_repository: Репозиторий
346 label_browse: Искать
348 label_browse: Искать
347 label_modification: %d изменение
349 label_modification: %d изменение
348 label_modification_plural: %d изменений
350 label_modification_plural: %d изменений
349 label_revision: Версия
351 label_revision: Версия
350 label_revision_plural: Версии
352 label_revision_plural: Версии
351 label_added: добавлено
353 label_added: добавлено
352 label_modified: изменено
354 label_modified: изменено
353 label_deleted: удалено
355 label_deleted: удалено
354 label_latest_revision: Последняя версия
356 label_latest_revision: Последняя версия
355 label_latest_revision_plural: Последние версии
357 label_latest_revision_plural: Последние версии
356 label_view_revisions: Просмотреть версии
358 label_view_revisions: Просмотреть версии
357 label_max_size: Максимальный размер
359 label_max_size: Максимальный размер
358 label_on: 'из'
360 label_on: 'из'
359 label_sort_highest: В начало
361 label_sort_highest: В начало
360 label_sort_higher: Вверх
362 label_sort_higher: Вверх
361 label_sort_lower: Вниз
363 label_sort_lower: Вниз
362 label_sort_lowest: В конец
364 label_sort_lowest: В конец
363 label_roadmap: Оперативный план
365 label_roadmap: Оперативный план
364 label_roadmap_due_in: Вовремя
366 label_roadmap_due_in: Вовремя
365 label_roadmap_overdue: %s опоздание
367 label_roadmap_overdue: %s опоздание
366 label_roadmap_no_issues: Нет задач для данной версии
368 label_roadmap_no_issues: Нет задач для данной версии
367 label_search: Поиск
369 label_search: Поиск
368 label_result_plural: Результаты
370 label_result_plural: Результаты
369 label_all_words: Все слова
371 label_all_words: Все слова
370 label_wiki: Wiki
372 label_wiki: Wiki
371 label_wiki_edit: Редактирование Wiki
373 label_wiki_edit: Редактирование Wiki
372 label_wiki_edit_plural: Редактирования Wiki
374 label_wiki_edit_plural: Редактирования Wiki
373 label_wiki_page: Страница Wiki
375 label_wiki_page: Страница Wiki
374 label_wiki_page_plural: Страницы Wiki
376 label_wiki_page_plural: Страницы Wiki
375 label_index_by_title: Индекс по названию
377 label_index_by_title: Индекс по названию
376 label_index_by_date: Индекс по дате
378 label_index_by_date: Индекс по дате
377 label_current_version: Текущая версия
379 label_current_version: Текущая версия
378 label_preview: Предварительный просмотр
380 label_preview: Предварительный просмотр
379 label_feed_plural: Вводы
381 label_feed_plural: Вводы
380 label_changes_details: Подробности по всем изменениям
382 label_changes_details: Подробности по всем изменениям
381 label_issue_tracking: Ситуация по задачам
383 label_issue_tracking: Ситуация по задачам
382 label_spent_time: Затраченное время
384 label_spent_time: Затраченное время
383 label_f_hour: %.2f час
385 label_f_hour: %.2f час
384 label_f_hour_plural: %.2f часов(а)
386 label_f_hour_plural: %.2f часов(а)
385 label_time_tracking: Учет времени
387 label_time_tracking: Учет времени
386 label_change_plural: Изменения
388 label_change_plural: Изменения
387 label_statistics: Статистика
389 label_statistics: Статистика
388 label_commits_per_month: Коммиты на месяц
390 label_commits_per_month: Коммиты на месяц
389 label_commits_per_author: Коммиты на пользователя
391 label_commits_per_author: Коммиты на пользователя
390 label_view_diff: Просмотреть отличия
392 label_view_diff: Просмотреть отличия
391 label_diff_inline: подключенный
393 label_diff_inline: подключенный
392 label_diff_side_by_side: рядом
394 label_diff_side_by_side: рядом
393 label_options: Опции
395 label_options: Опции
394 label_copy_workflow_from: Скопировать последовательность действий из
396 label_copy_workflow_from: Скопировать последовательность действий из
395 label_permissions_report: Отчет о правах доступа
397 label_permissions_report: Отчет о правах доступа
396 label_watched_issues: Просмотренные задачи
398 label_watched_issues: Просмотренные задачи
397 label_related_issues: Связанные задачи
399 label_related_issues: Связанные задачи
398 label_applied_status: Применимый статус
400 label_applied_status: Применимый статус
399 label_loading: Загрузка...
401 label_loading: Загрузка...
400 label_relation_new: Новое отношение
402 label_relation_new: Новое отношение
401 label_relation_delete: Удалить связь
403 label_relation_delete: Удалить связь
402 label_relates_to: связана с
404 label_relates_to: связана с
403 label_duplicates: дублицирует
405 label_duplicates: дублицирует
404 label_blocks: блокирует
406 label_blocks: блокирует
405 label_blocked_by: заблокировано
407 label_blocked_by: заблокировано
406 label_precedes: предшествует
408 label_precedes: предшествует
407 label_follows: следующий
409 label_follows: следующий
408 label_end_to_start: с конца к началу
410 label_end_to_start: с конца к началу
409 label_end_to_end: с конца к концу
411 label_end_to_end: с конца к концу
410 label_start_to_start: с начала к началу
412 label_start_to_start: с начала к началу
411 label_start_to_end: с начала к концу
413 label_start_to_end: с начала к концу
412 label_stay_logged_in: Оставаться в системе
414 label_stay_logged_in: Оставаться в системе
413 label_disabled: отключен
415 label_disabled: отключен
414 label_show_completed_versions: Показать завершенную версию
416 label_show_completed_versions: Показать завершенную версию
415 label_me: Я
417 label_me: Я
416 label_board: Форум
418 label_board: Форум
417 label_board_new: Новый форум
419 label_board_new: Новый форум
418 label_board_plural: Форумы
420 label_board_plural: Форумы
419 label_topic_plural: Темы
421 label_topic_plural: Темы
420 label_message_plural: Сообщения
422 label_message_plural: Сообщения
421 label_message_last: Последнее сообщение
423 label_message_last: Последнее сообщение
422 label_message_new: Новое сообщение
424 label_message_new: Новое сообщение
423 label_reply_plural: Ответы
425 label_reply_plural: Ответы
424 label_send_information: Отправить пользователю информацию по учетной записи
426 label_send_information: Отправить пользователю информацию по учетной записи
425 label_year: Год
427 label_year: Год
426 label_month: Месяц
428 label_month: Месяц
427 label_week: Неделя
429 label_week: Неделя
428 label_date_from: От
430 label_date_from: От
429 label_date_to: Кому
431 label_date_to: Кому
430 label_language_based: На основе языка
432 label_language_based: На основе языка
431 label_sort_by: Сортировать по %s
433 label_sort_by: Сортировать по %s
432 label_send_test_email: Послать email для проверки
434 label_send_test_email: Послать email для проверки
433 label_feeds_access_key_created_on: Ключ доступа RSS создан %s назад
435 label_feeds_access_key_created_on: Ключ доступа RSS создан %s назад
434 label_module_plural: Модули
436 label_module_plural: Модули
435 label_added_time_by: Добавлен %s %s назад
437 label_added_time_by: Добавлен %s %s назад
436 label_updated_time: Обновлен %s назад
438 label_updated_time: Обновлен %s назад
437 label_jump_to_a_project: Перейти к проекту...
439 label_jump_to_a_project: Перейти к проекту...
438 label_file_plural: Файлы
440 label_file_plural: Файлы
439 label_changeset_plural: Наборы изменений
441 label_changeset_plural: Наборы изменений
440 label_default_columns: Колонки по умолчанию
442 label_default_columns: Колонки по умолчанию
441 label_no_change_option: (Нет изменений)
443 label_no_change_option: (Нет изменений)
442 label_bulk_edit_selected_issues: Редактировать все выбранные вопросы
444 label_bulk_edit_selected_issues: Редактировать все выбранные вопросы
443 label_theme: Тема
445 label_theme: Тема
444 label_default: По умолчанию
446 label_default: По умолчанию
445 label_search_titles_only: Искать только в названиях
447 label_search_titles_only: Искать только в названиях
446 label_user_mail_option_all: "Для всех событий во всех моих проектах"
448 label_user_mail_option_all: "Для всех событий во всех моих проектах"
447 label_user_mail_option_selected: "Для всех событий только в выбранном проекте..."
449 label_user_mail_option_selected: "Для всех событий только в выбранном проекте..."
448 label_user_mail_option_none: "Только для того, что я просматриваю или в чем я участвую"
450 label_user_mail_option_none: "Только для того, что я просматриваю или в чем я участвую"
449 label_user_mail_no_self_notified: "Не извещать об изменениях которые я сделал сам"
451 label_user_mail_no_self_notified: "Не извещать об изменениях которые я сделал сам"
450
452
451 button_login: Вход
453 button_login: Вход
452 button_submit: Принять
454 button_submit: Принять
453 button_save: Сохранить
455 button_save: Сохранить
454 button_check_all: Отметить все
456 button_check_all: Отметить все
455 button_uncheck_all: Очистить
457 button_uncheck_all: Очистить
456 button_delete: Удалить
458 button_delete: Удалить
457 button_create: Создать
459 button_create: Создать
458 button_test: Проверить
460 button_test: Проверить
459 button_edit: Редактировать
461 button_edit: Редактировать
460 button_add: Добавить
462 button_add: Добавить
461 button_change: Изменить
463 button_change: Изменить
462 button_apply: Применить
464 button_apply: Применить
463 button_clear: Очистить
465 button_clear: Очистить
464 button_lock: Заблокировать
466 button_lock: Заблокировать
465 button_unlock: Открыть
467 button_unlock: Открыть
466 button_download: Загрузить
468 button_download: Загрузить
467 button_list: Список
469 button_list: Список
468 button_view: Просмотреть
470 button_view: Просмотреть
469 button_move: Переместить
471 button_move: Переместить
470 button_back: Назад
472 button_back: Назад
471 button_cancel: Отмена
473 button_cancel: Отмена
472 button_activate: Активировать
474 button_activate: Активировать
473 button_sort: Сортировать
475 button_sort: Сортировать
474 button_log_time: Время в системе
476 button_log_time: Время в системе
475 button_rollback: Вернуться к данной версии
477 button_rollback: Вернуться к данной версии
476 button_watch: Смотреть
478 button_watch: Смотреть
477 button_unwatch: Не смотреть
479 button_unwatch: Не смотреть
478 button_reply: Ответить
480 button_reply: Ответить
479 button_archive: Архивировать
481 button_archive: Архивировать
480 button_unarchive: Разархивировать
482 button_unarchive: Разархивировать
481 button_reset: Перезапустить
483 button_reset: Перезапустить
482 button_rename: Переименовать
484 button_rename: Переименовать
483 button_change_password: Изменить пароль
485 button_change_password: Изменить пароль
484 button_copy: Копировать
486 button_copy: Копировать
485
487
486 status_active: Активен
488 status_active: Активен
487 status_registered: Зарегистрирован
489 status_registered: Зарегистрирован
488 status_locked: Закрыт
490 status_locked: Закрыт
489
491
490 text_select_mail_notifications: Выберите действия, на которые будет отсылаться уведомление на электронную почту.
492 text_select_mail_notifications: Выберите действия, на которые будет отсылаться уведомление на электронную почту.
491 text_regexp_info: eg. ^[A-Z0-9]+$
493 text_regexp_info: eg. ^[A-Z0-9]+$
492 text_min_max_length_info: 0 означает отсутствие запретов
494 text_min_max_length_info: 0 означает отсутствие запретов
493 text_project_destroy_confirmation: Вы настаиваете на удалении данного проекта и всей относящейся к нему информации?
495 text_project_destroy_confirmation: Вы настаиваете на удалении данного проекта и всей относящейся к нему информации?
494 text_workflow_edit: Выберите роль и трекер для редактирования последовательности состояний
496 text_workflow_edit: Выберите роль и трекер для редактирования последовательности состояний
495 text_are_you_sure: Подтвердите
497 text_are_you_sure: Подтвердите
496 text_journal_changed: параметр изменился с %s на %s
498 text_journal_changed: параметр изменился с %s на %s
497 text_journal_set_to: параметр изменился на %s
499 text_journal_set_to: параметр изменился на %s
498 text_journal_deleted: удалено
500 text_journal_deleted: удалено
499 text_tip_task_begin_day: дата начала задачи
501 text_tip_task_begin_day: дата начала задачи
500 text_tip_task_end_day: дата завершения задачи
502 text_tip_task_end_day: дата завершения задачи
501 text_tip_task_begin_end_day: начало задачи и окончание ее в этот день
503 text_tip_task_begin_end_day: начало задачи и окончание ее в этот день
502 text_project_identifier_info: 'Строчные буквы (a-z), допустимы цифры и дефис.<br />Сохраненный идентификатор не может быть изменен.'
504 text_project_identifier_info: 'Строчные буквы (a-z), допустимы цифры и дефис.<br />Сохраненный идентификатор не может быть изменен.'
503 text_caracters_maximum: %d символов(а) максимум.
505 text_caracters_maximum: %d символов(а) максимум.
504 text_length_between: Длина между %d и %d символов.
506 text_length_between: Длина между %d и %d символов.
505 text_tracker_no_workflow: Для этого трекера последовательность действий не определена
507 text_tracker_no_workflow: Для этого трекера последовательность действий не определена
506 text_unallowed_characters: Запрещенные символы
508 text_unallowed_characters: Запрещенные символы
507 text_comma_separated: Допустимы несколько значений (разделенные запятой).
509 text_comma_separated: Допустимы несколько значений (разделенные запятой).
508 text_issues_ref_in_commit_messages: Сопоставление и изменение статуса задач исходя из текста сообщений
510 text_issues_ref_in_commit_messages: Сопоставление и изменение статуса задач исходя из текста сообщений
509 text_issue_added: О вопросе %s был создает отчет.
511 text_issue_added: О вопросе %s был создает отчет.
510 text_issue_updated: Вопрос %s был обновлен.
512 text_issue_updated: Вопрос %s был обновлен.
511 text_wiki_destroy_confirmation: Вы уверены, что хотите удалить данную вики и все содержание?
513 text_wiki_destroy_confirmation: Вы уверены, что хотите удалить данную вики и все содержание?
512 text_issue_category_destroy_question: Несколько задач (%d) назначено в данную категорию. Что вы хотите предпринять?
514 text_issue_category_destroy_question: Несколько задач (%d) назначено в данную категорию. Что вы хотите предпринять?
513 text_issue_category_destroy_assignments: Удалить назначения категории
515 text_issue_category_destroy_assignments: Удалить назначения категории
514 text_issue_category_reassign_to: Переназначить задачи для данной категории
516 text_issue_category_reassign_to: Переназначить задачи для данной категории
515 text_user_mail_option: "Для невыбранных проектов, вы будете получать уведомления только о том что просматриваете или в чем участвуете (например, вопросы автором которых вы являетесь или которые вам назначенАы)."
517 text_user_mail_option: "Для невыбранных проектов, вы будете получать уведомления только о том что просматриваете или в чем участвуете (например, вопросы автором которых вы являетесь или которые вам назначенАы)."
516
518
517 default_role_manager: Менеджер
519 default_role_manager: Менеджер
518 default_role_developper: Разработчик
520 default_role_developper: Разработчик
519 default_role_reporter: Генератор отчетов
521 default_role_reporter: Генератор отчетов
520 default_tracker_bug: Bug Ошибка
522 default_tracker_bug: Bug Ошибка
521 default_tracker_feature: Характеристика
523 default_tracker_feature: Характеристика
522 default_tracker_support: Поддержка
524 default_tracker_support: Поддержка
523 default_issue_status_new: Новый
525 default_issue_status_new: Новый
524 default_issue_status_assigned: Назначен
526 default_issue_status_assigned: Назначен
525 default_issue_status_resolved: Заблокирован
527 default_issue_status_resolved: Заблокирован
526 default_issue_status_feedback: Обратная связь
528 default_issue_status_feedback: Обратная связь
527 default_issue_status_closed: Закрыт
529 default_issue_status_closed: Закрыт
528 default_issue_status_rejected: Отказ
530 default_issue_status_rejected: Отказ
529 default_doc_category_user: Документация пользователя
531 default_doc_category_user: Документация пользователя
530 default_doc_category_tech: Техническая документация
532 default_doc_category_tech: Техническая документация
531 default_priority_low: Низкий
533 default_priority_low: Низкий
532 default_priority_normal: Нормальный
534 default_priority_normal: Нормальный
533 default_priority_high: Высокий
535 default_priority_high: Высокий
534 default_priority_urgent: Срочный
536 default_priority_urgent: Срочный
535 default_priority_immediate: Немедленный
537 default_priority_immediate: Немедленный
536 default_activity_design: Проектирование
538 default_activity_design: Проектирование
537 default_activity_development: Разработка
539 default_activity_development: Разработка
538 enumeration_issue_priorities: Приоритеты задач
540 enumeration_issue_priorities: Приоритеты задач
539 enumeration_doc_categories: Категории документов
541 enumeration_doc_categories: Категории документов
540 enumeration_activities: Действия (учет времени)
542 enumeration_activities: Действия (учет времени)
541 label_registration_activation_by_email: активация аккаунтов по email
543 label_registration_activation_by_email: активация аккаунтов по email
542 mail_subject_account_activation_request: Запрос на активацию пользователя в системе Redmine
544 mail_subject_account_activation_request: Запрос на активацию пользователя в системе Redmine
543 mail_body_account_activation_request: 'Новый пользователь (%s) зарегистирован. Аккаунт ожидает вашего утверждения:'
545 mail_body_account_activation_request: 'Новый пользователь (%s) зарегистирован. Аккаунт ожидает вашего утверждения:'
544 label_registration_automatic_activation: автоматическая активация аккаунтов
546 label_registration_automatic_activation: автоматическая активация аккаунтов
545 label_registration_manual_activation: активировать аккаунты вручную
547 label_registration_manual_activation: активировать аккаунты вручную
546 notice_account_pending: "Ваш аккаунт уже создан и ожидает подтверждения администратора."
548 notice_account_pending: "Ваш аккаунт уже создан и ожидает подтверждения администратора."
547 field_time_zone: Часовой пояс
549 field_time_zone: Часовой пояс
548 text_caracters_minimum: Должно быть не менее %d знаков.
550 text_caracters_minimum: Должно быть не менее %d знаков.
549 setting_bcc_recipients: Использовать скрытые списки (bcc)
551 setting_bcc_recipients: Использовать скрытые списки (bcc)
550 button_annotate: Авторство
552 button_annotate: Авторство
551 label_issues_by: Сортировать по %s
553 label_issues_by: Сортировать по %s
552 field_searchable: Доступно для поиска
554 field_searchable: Доступно для поиска
553 label_display_per_page: 'На страницу: %s'
555 label_display_per_page: 'На страницу: %s'
554 setting_per_page_options: Кол-во строк на страницу
556 setting_per_page_options: Кол-во строк на страницу
555 label_age: Возраст
557 label_age: Возраст
556 notice_default_data_loaded: Была загружена конфигурация по-умолчанию.
558 notice_default_data_loaded: Была загружена конфигурация по-умолчанию.
557 text_load_default_configuration: Загрузить конфигурацию по-умолчанию
559 text_load_default_configuration: Загрузить конфигурацию по-умолчанию
558 text_no_configuration_data: "Роли, трекеры, статусы задач и оперативный план не были сконфигурированны.\nНастоятельно рекомендуется загрузить конфигурацию по-умолчанию. Вы сможете её изменить потом."
560 text_no_configuration_data: "Роли, трекеры, статусы задач и оперативный план не были сконфигурированны.\nНастоятельно рекомендуется загрузить конфигурацию по-умолчанию. Вы сможете её изменить потом."
559 error_can_t_load_default_data: "Конфигурация по умолчанию не была загружена: %s"
561 error_can_t_load_default_data: "Конфигурация по умолчанию не была загружена: %s"
560 button_update: Обновить
562 button_update: Обновить
561 label_change_properties: Изменить свойства
563 label_change_properties: Изменить свойства
562 label_general: Общее
564 label_general: Общее
563 label_repository_plural: Репозитории
565 label_repository_plural: Репозитории
564 label_associated_revisions: Associated revisions
566 label_associated_revisions: Associated revisions
@@ -1,566 +1,568
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,Mart,April,Maj,Jun,Jul,Avgust,Septembar,Oktobar,Novembar,Decembar
4 actionview_datehelper_select_month_names: Januar,Februar,Mart,April,Maj,Jun,Jul,Avgust,Septembar,Oktobar,Novembar,Decembar
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Avg,Sep,Okt,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Avg,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 dan
8 actionview_datehelper_time_in_words_day: 1 dan
9 actionview_datehelper_time_in_words_day_plural: %d dana
9 actionview_datehelper_time_in_words_day_plural: %d dana
10 actionview_datehelper_time_in_words_hour_about: oko sat vremena
10 actionview_datehelper_time_in_words_hour_about: oko sat vremena
11 actionview_datehelper_time_in_words_hour_about_plural: oko %d sati
11 actionview_datehelper_time_in_words_hour_about_plural: oko %d sati
12 actionview_datehelper_time_in_words_hour_about_single: oko sat vremena
12 actionview_datehelper_time_in_words_hour_about_single: oko sat vremena
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: pola minuta
14 actionview_datehelper_time_in_words_minute_half: pola minuta
15 actionview_datehelper_time_in_words_minute_less_than: manje od minut
15 actionview_datehelper_time_in_words_minute_less_than: manje od minut
16 actionview_datehelper_time_in_words_minute_plural: %d minuta
16 actionview_datehelper_time_in_words_minute_plural: %d minuta
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: manje od sekunde
18 actionview_datehelper_time_in_words_second_less_than: manje od sekunde
19 actionview_datehelper_time_in_words_second_less_than_plural: manje od %d sekundi
19 actionview_datehelper_time_in_words_second_less_than_plural: manje od %d sekundi
20 actionview_instancetag_blank_option: Molim izaberite
20 actionview_instancetag_blank_option: Molim izaberite
21
21
22 activerecord_error_inclusion: nije uključen u listu
22 activerecord_error_inclusion: nije uključen u listu
23 activerecord_error_exclusion: je rezervisan
23 activerecord_error_exclusion: je rezervisan
24 activerecord_error_invalid: je pogrešan
24 activerecord_error_invalid: je pogrešan
25 activerecord_error_confirmation: Ne slaže se sa potvrdom
25 activerecord_error_confirmation: Ne slaže se sa potvrdom
26 activerecord_error_accepted: mora biti prihvaćen
26 activerecord_error_accepted: mora biti prihvaćen
27 activerecord_error_empty: ne sme biti prazan
27 activerecord_error_empty: ne sme biti prazan
28 activerecord_error_blank: ne sme biti prazno
28 activerecord_error_blank: ne sme biti prazno
29 activerecord_error_too_long: je suvise dugačko
29 activerecord_error_too_long: je suvise dugačko
30 activerecord_error_too_short: je suvise kratko
30 activerecord_error_too_short: je suvise kratko
31 activerecord_error_wrong_length: je pogrešne dužine
31 activerecord_error_wrong_length: je pogrešne dužine
32 activerecord_error_taken: je već zauzeto
32 activerecord_error_taken: je već zauzeto
33 activerecord_error_not_a_number: nije broj
33 activerecord_error_not_a_number: nije broj
34 activerecord_error_not_a_date: nije datum
34 activerecord_error_not_a_date: nije datum
35 activerecord_error_greater_than_start_date: mora biti veći od početnog datuma
35 activerecord_error_greater_than_start_date: mora biti veći od početnog datuma
36 activerecord_error_not_same_project: ne pripada istom projektu
36 activerecord_error_not_same_project: ne pripada istom projektu
37 activerecord_error_circular_dependency: Ova relacija bi kreirala kružnu zavisnost
37 activerecord_error_circular_dependency: Ova relacija bi kreirala kružnu zavisnost
38
38
39 general_fmt_age: %d g
39 general_fmt_age: %d g
40 general_fmt_age_plural: %d god.
40 general_fmt_age_plural: %d god.
41 general_fmt_date: %%m/%%d/%%G
41 general_fmt_date: %%m/%%d/%%G
42 general_fmt_datetime: %%m/%%d/%%G %%H:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%G %%H:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%H:%%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: 'Da'
46 general_text_Yes: 'Da'
47 general_text_no: 'ne'
47 general_text_no: 'ne'
48 general_text_yes: 'da'
48 general_text_yes: 'da'
49 general_lang_name: 'Srpski'
49 general_lang_name: 'Srpski'
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: Ponedeljak, Utorak, Sreda, četvrtak, Petak, Subota, Nedelja
53 general_day_names: Ponedeljak, Utorak, Sreda, četvrtak, Petak, Subota, Nedelja
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Nalog je uspešno izmenjen.
56 notice_account_updated: Nalog je uspešno izmenjen.
57 notice_account_invalid_creditentials: Pogrešan korisnik ili lozinka
57 notice_account_invalid_creditentials: Pogrešan korisnik ili lozinka
58 notice_account_password_updated: Lozinka je uspešno izmenjena.
58 notice_account_password_updated: Lozinka je uspešno izmenjena.
59 notice_account_wrong_password: Pogrešna lozinka
59 notice_account_wrong_password: Pogrešna lozinka
60 notice_account_register_done: Nalog je uspešno kreiran. Da bi ste aktivirali vaš nalog kliknite na link koji vam je poslat.
60 notice_account_register_done: Nalog je uspešno kreiran. Da bi ste aktivirali vaš nalog kliknite na link koji vam je poslat.
61 notice_account_unknown_email: Nepoznati korisnik.
61 notice_account_unknown_email: Nepoznati korisnik.
62 notice_can_t_change_password: Ovaj nalog koristi eksterni izvor prijavljivanja. Ne mogu da promenim šifru.
62 notice_can_t_change_password: Ovaj nalog koristi eksterni izvor prijavljivanja. Ne mogu da promenim šifru.
63 notice_account_lost_email_sent: Email sa uputstvima o izboru nove šifre je poslat na vašu adresu.
63 notice_account_lost_email_sent: Email sa uputstvima o izboru nove šifre je poslat na vašu adresu.
64 notice_account_activated: Vaš nalog je aktiviran. Možete se ulogovati.
64 notice_account_activated: Vaš nalog je aktiviran. Možete se ulogovati.
65 notice_successful_create: Uspešna kreacija.
65 notice_successful_create: Uspešna kreacija.
66 notice_successful_update: Uspešna izmena.
66 notice_successful_update: Uspešna izmena.
67 notice_successful_delete: Uspešno brisanje.
67 notice_successful_delete: Uspešno brisanje.
68 notice_successful_connection: Uspešna konekcija.
68 notice_successful_connection: Uspešna konekcija.
69 notice_file_not_found: Stranica kojoj pokušavate da pristupite ne postoji ili je uklonjena.
69 notice_file_not_found: Stranica kojoj pokušavate da pristupite ne postoji ili je uklonjena.
70 notice_locking_conflict: Podaci su izmenjeni od strane drugog korisnika.
70 notice_locking_conflict: Podaci su izmenjeni od strane drugog korisnika.
71 notice_scm_error: Unos i/ili revizija ne postoji u spremištu.
72 notice_not_authorized: Niste ovlašćeni da pristupite ovoj stranici.
71 notice_not_authorized: Niste ovlašćeni da pristupite ovoj stranici.
73 notice_email_sent: Email je poslat %s
72 notice_email_sent: Email je poslat %s
74 notice_email_error: Došlo je do greške pri slanju maila (%s)
73 notice_email_error: Došlo je do greške pri slanju maila (%s)
75 notice_feeds_access_key_reseted: Vaš RSS pristup je resetovan.
74 notice_feeds_access_key_reseted: Vaš RSS pristup je resetovan.
76 notice_failed_to_save_issues: "Neuspešno snimanje %d kartica na %d izabrano: %s."
75 notice_failed_to_save_issues: "Neuspešno snimanje %d kartica na %d izabrano: %s."
77 notice_no_issue_selected: "Nijedna kartica nije izabrana! Molim, izaberite kartice koje želite za editujete."
76 notice_no_issue_selected: "Nijedna kartica nije izabrana! Molim, izaberite kartice koje želite za editujete."
78
77
78 error_scm_not_found: "Unos i/ili revizija ne postoji u spremištu."
79 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
80
79 mail_subject_lost_password: Vaša redMine lozinka
81 mail_subject_lost_password: Vaša redMine lozinka
80 mail_body_lost_password: 'Da biste izmenili vašu Redmine lozinku, kliknite na sledeći link:'
82 mail_body_lost_password: 'Da biste izmenili vašu Redmine lozinku, kliknite na sledeći link:'
81 mail_subject_register: aktivacija redMine naloga
83 mail_subject_register: aktivacija redMine naloga
82 mail_body_register: 'Da biste aktivirali vaš Redmine nalog, kliknite na sledeći link:'
84 mail_body_register: 'Da biste aktivirali vaš Redmine nalog, kliknite na sledeći link:'
83 mail_body_account_information_external: Mozete koristiti vas "%s" nalog da bi ste se prikljucili na Redmine.
85 mail_body_account_information_external: Mozete koristiti vas "%s" nalog da bi ste se prikljucili na Redmine.
84 mail_body_account_information: Informacije o vasem Redmine nalogu
86 mail_body_account_information: Informacije o vasem Redmine nalogu
85
87
86 gui_validation_error: 1 greška
88 gui_validation_error: 1 greška
87 gui_validation_error_plural: %d grešaka
89 gui_validation_error_plural: %d grešaka
88
90
89 field_name: Ime
91 field_name: Ime
90 field_description: Opis
92 field_description: Opis
91 field_summary: Sažetak
93 field_summary: Sažetak
92 field_is_required: Zahtevano
94 field_is_required: Zahtevano
93 field_firstname: Ime
95 field_firstname: Ime
94 field_lastname: Prezime
96 field_lastname: Prezime
95 field_mail: Email
97 field_mail: Email
96 field_filename: File
98 field_filename: File
97 field_filesize: Veličina
99 field_filesize: Veličina
98 field_downloads: Downloads
100 field_downloads: Downloads
99 field_author: Autor
101 field_author: Autor
100 field_created_on: Kreirano
102 field_created_on: Kreirano
101 field_updated_on: Izmenjeno
103 field_updated_on: Izmenjeno
102 field_field_format: Format
104 field_field_format: Format
103 field_is_for_all: Za sve projekte
105 field_is_for_all: Za sve projekte
104 field_possible_values: Moguće vrednosti
106 field_possible_values: Moguće vrednosti
105 field_regexp: Regularni izraz
107 field_regexp: Regularni izraz
106 field_min_length: Minimalna dužina
108 field_min_length: Minimalna dužina
107 field_max_length: Maximalna dužina
109 field_max_length: Maximalna dužina
108 field_value: Vrednost
110 field_value: Vrednost
109 field_category: Kategorija
111 field_category: Kategorija
110 field_title: Naslov
112 field_title: Naslov
111 field_project: Projekat
113 field_project: Projekat
112 field_issue: Kartica
114 field_issue: Kartica
113 field_status: Status
115 field_status: Status
114 field_notes: Beleške
116 field_notes: Beleške
115 field_is_closed: Greška zatvorena
117 field_is_closed: Greška zatvorena
116 field_is_default: Podrazumevana vrednost
118 field_is_default: Podrazumevana vrednost
117 field_tracker: Tracker
119 field_tracker: Tracker
118 field_subject: Subjekat
120 field_subject: Subjekat
119 field_due_date: Do datuma
121 field_due_date: Do datuma
120 field_assigned_to: Dodeljeno
122 field_assigned_to: Dodeljeno
121 field_priority: Prioritet
123 field_priority: Prioritet
122 field_fixed_version: Ispravljena verzija
124 field_fixed_version: Ispravljena verzija
123 field_user: Korisnik
125 field_user: Korisnik
124 field_role: Uloga
126 field_role: Uloga
125 field_homepage: Homepage
127 field_homepage: Homepage
126 field_is_public: Javni
128 field_is_public: Javni
127 field_parent: Podprojekat od
129 field_parent: Podprojekat od
128 field_is_in_chlog: Kartice se prikazuju u changelog-u
130 field_is_in_chlog: Kartice se prikazuju u changelog-u
129 field_is_in_roadmap: Kartice se prikazuju u roadmap-u
131 field_is_in_roadmap: Kartice se prikazuju u roadmap-u
130 field_login: Login
132 field_login: Login
131 field_mail_notification: Obaveštavanje putem mail-a
133 field_mail_notification: Obaveštavanje putem mail-a
132 field_admin: Administrator
134 field_admin: Administrator
133 field_last_login_on: Poslednja konekcija
135 field_last_login_on: Poslednja konekcija
134 field_language: Jezik
136 field_language: Jezik
135 field_effective_date: Datum
137 field_effective_date: Datum
136 field_password: Lozinka
138 field_password: Lozinka
137 field_new_password: Nova lozinka
139 field_new_password: Nova lozinka
138 field_password_confirmation: Potvrda
140 field_password_confirmation: Potvrda
139 field_version: Verzija
141 field_version: Verzija
140 field_type: Tip
142 field_type: Tip
141 field_host: Host
143 field_host: Host
142 field_port: Port
144 field_port: Port
143 field_account: Nalog
145 field_account: Nalog
144 field_base_dn: Bazni DN
146 field_base_dn: Bazni DN
145 field_attr_login: Login atribut
147 field_attr_login: Login atribut
146 field_attr_firstname: Atribut imena
148 field_attr_firstname: Atribut imena
147 field_attr_lastname: Atribut prezimena
149 field_attr_lastname: Atribut prezimena
148 field_attr_mail: Atribut email-a
150 field_attr_mail: Atribut email-a
149 field_onthefly: Kreacija naloga "On-the-fly"
151 field_onthefly: Kreacija naloga "On-the-fly"
150 field_start_date: Start
152 field_start_date: Start
151 field_done_ratio: %% Završeno
153 field_done_ratio: %% Završeno
152 field_auth_source: Vrsta prijavljivanja
154 field_auth_source: Vrsta prijavljivanja
153 field_hide_mail: Sakrij moju email adresu
155 field_hide_mail: Sakrij moju email adresu
154 field_comments: Komentar
156 field_comments: Komentar
155 field_url: URL
157 field_url: URL
156 field_start_page: Početna strana
158 field_start_page: Početna strana
157 field_subproject: Podprojekat
159 field_subproject: Podprojekat
158 field_hours: Sati
160 field_hours: Sati
159 field_activity: Aktivnost
161 field_activity: Aktivnost
160 field_spent_on: Datum
162 field_spent_on: Datum
161 field_identifier: Identifikator
163 field_identifier: Identifikator
162 field_is_filter: Korišćen kao filter
164 field_is_filter: Korišćen kao filter
163 field_issue_to_id: Povezano sa karticom
165 field_issue_to_id: Povezano sa karticom
164 field_delay: Odloženo
166 field_delay: Odloženo
165 field_assignable: Kartice mogu biti dodeljene ovoj ulozi
167 field_assignable: Kartice mogu biti dodeljene ovoj ulozi
166 field_redirect_existing_links: Redirekcija postojećih linkova
168 field_redirect_existing_links: Redirekcija postojećih linkova
167 field_estimated_hours: Procenjeno vreme
169 field_estimated_hours: Procenjeno vreme
168 field_column_names: Kolone
170 field_column_names: Kolone
169 field_default_value: Default value
171 field_default_value: Default value
170
172
171 setting_app_title: Naziv aplikacije
173 setting_app_title: Naziv aplikacije
172 setting_app_subtitle: Podnaslov aplikacije
174 setting_app_subtitle: Podnaslov aplikacije
173 setting_welcome_text: Tekst dobrodošlice
175 setting_welcome_text: Tekst dobrodošlice
174 setting_default_language: Podrazumevani jezik
176 setting_default_language: Podrazumevani jezik
175 setting_login_required: Prijavljivanje obaveyno
177 setting_login_required: Prijavljivanje obaveyno
176 setting_self_registration: Samoregistracija je dozvoljena
178 setting_self_registration: Samoregistracija je dozvoljena
177 setting_attachment_max_size: Maksimalna velicina Attachment-a
179 setting_attachment_max_size: Maksimalna velicina Attachment-a
178 setting_issues_export_limit: Max broj kartica u exportu
180 setting_issues_export_limit: Max broj kartica u exportu
179 setting_mail_from: Izvorna email adresa
181 setting_mail_from: Izvorna email adresa
180 setting_host_name: Naziv host-a
182 setting_host_name: Naziv host-a
181 setting_text_formatting: Formatiranje teksta
183 setting_text_formatting: Formatiranje teksta
182 setting_wiki_compression: Kompresija wiki history-a
184 setting_wiki_compression: Kompresija wiki history-a
183 setting_feeds_limit: Feed content limit
185 setting_feeds_limit: Feed content limit
184 setting_autofetch_changesets: Autofetch commits
186 setting_autofetch_changesets: Autofetch commits
185 setting_sys_api_enabled: Ukljuci WS za menadžment spremišta
187 setting_sys_api_enabled: Ukljuci WS za menadžment spremišta
186 setting_commit_ref_keywords: Referentne ključne reči
188 setting_commit_ref_keywords: Referentne ključne reči
187 setting_commit_fix_keywords: Fiksne ključne reči
189 setting_commit_fix_keywords: Fiksne ključne reči
188 setting_autologin: Autologin
190 setting_autologin: Autologin
189 setting_date_format: Format datuma
191 setting_date_format: Format datuma
190 setting_cross_project_issue_relations: Dozvoli relacije kartica između različitih projekata
192 setting_cross_project_issue_relations: Dozvoli relacije kartica između različitih projekata
191 setting_issue_list_default_columns: Podrazumevana kolona se prikazuje na listi kartica
193 setting_issue_list_default_columns: Podrazumevana kolona se prikazuje na listi kartica
192 setting_repositories_encodings: Kodna stranica spremišta
194 setting_repositories_encodings: Kodna stranica spremišta
193 setting_emails_footer: Zaglavlje emaila
195 setting_emails_footer: Zaglavlje emaila
194
196
195 label_user: Korisnik
197 label_user: Korisnik
196 label_user_plural: Korisnici
198 label_user_plural: Korisnici
197 label_user_new: Novi korisnik
199 label_user_new: Novi korisnik
198 label_project: Projekat
200 label_project: Projekat
199 label_project_new: Novi projekat
201 label_project_new: Novi projekat
200 label_project_plural: Projekti
202 label_project_plural: Projekti
201 label_project_all: Svi Projekti
203 label_project_all: Svi Projekti
202 label_project_latest: Poslednji projekat
204 label_project_latest: Poslednji projekat
203 label_issue: Kartica
205 label_issue: Kartica
204 label_issue_new: Nova kartica
206 label_issue_new: Nova kartica
205 label_issue_plural: Kartice
207 label_issue_plural: Kartice
206 label_issue_view_all: Pregled svih kartica
208 label_issue_view_all: Pregled svih kartica
207 label_document: Dokumenat
209 label_document: Dokumenat
208 label_document_new: Novi dokumenat
210 label_document_new: Novi dokumenat
209 label_document_plural: Dokumenti
211 label_document_plural: Dokumenti
210 label_role: Uloga
212 label_role: Uloga
211 label_role_plural: Uloge
213 label_role_plural: Uloge
212 label_role_new: Nova uloga
214 label_role_new: Nova uloga
213 label_role_and_permissions: Uloge i prava
215 label_role_and_permissions: Uloge i prava
214 label_member: Član
216 label_member: Član
215 label_member_new: Novi član
217 label_member_new: Novi član
216 label_member_plural: Članovi
218 label_member_plural: Članovi
217 label_tracker: Tracker
219 label_tracker: Tracker
218 label_tracker_plural: Trackers
220 label_tracker_plural: Trackers
219 label_tracker_new: Novi tracker
221 label_tracker_new: Novi tracker
220 label_workflow: Tok rada
222 label_workflow: Tok rada
221 label_issue_status: Status kartice
223 label_issue_status: Status kartice
222 label_issue_status_plural: Statusi kartica
224 label_issue_status_plural: Statusi kartica
223 label_issue_status_new: Novi status
225 label_issue_status_new: Novi status
224 label_issue_category: Kategorij kartice
226 label_issue_category: Kategorij kartice
225 label_issue_category_plural: Kategorije kartica
227 label_issue_category_plural: Kategorije kartica
226 label_issue_category_new: Nova kategorija
228 label_issue_category_new: Nova kategorija
227 label_custom_field: Korisnički definisano polje
229 label_custom_field: Korisnički definisano polje
228 label_custom_field_plural: Korisnički definisana polja
230 label_custom_field_plural: Korisnički definisana polja
229 label_custom_field_new: Novo korisnički definisano polje
231 label_custom_field_new: Novo korisnički definisano polje
230 label_enumerations: Enumeracije
232 label_enumerations: Enumeracije
231 label_enumeration_new: Nova vrednost
233 label_enumeration_new: Nova vrednost
232 label_information: Informacija
234 label_information: Informacija
233 label_information_plural: Informacije
235 label_information_plural: Informacije
234 label_please_login: Molim ulogujte se
236 label_please_login: Molim ulogujte se
235 label_register: Registracija
237 label_register: Registracija
236 label_password_lost: Izgubljena lozinka
238 label_password_lost: Izgubljena lozinka
237 label_home: Home
239 label_home: Home
238 label_my_page: Moja Stranica
240 label_my_page: Moja Stranica
239 label_my_account: Moj nalog
241 label_my_account: Moj nalog
240 label_my_projects: Moji projekti
242 label_my_projects: Moji projekti
241 label_administration: Administracija
243 label_administration: Administracija
242 label_login: Login
244 label_login: Login
243 label_logout: Logout
245 label_logout: Logout
244 label_help: Pomoć
246 label_help: Pomoć
245 label_reported_issues: Prijavljene kartice
247 label_reported_issues: Prijavljene kartice
246 label_assigned_to_me_issues: Kartice meni dodeljene
248 label_assigned_to_me_issues: Kartice meni dodeljene
247 label_last_login: Poslednja konekcija
249 label_last_login: Poslednja konekcija
248 label_last_updates: Poslednje izmene
250 label_last_updates: Poslednje izmene
249 label_last_updates_plural: %d poslednje izmenjene
251 label_last_updates_plural: %d poslednje izmenjene
250 label_registered_on: Registrovano
252 label_registered_on: Registrovano
251 label_activity: Aktivnost
253 label_activity: Aktivnost
252 label_new: Novo
254 label_new: Novo
253 label_logged_as: Prijavljen kao
255 label_logged_as: Prijavljen kao
254 label_environment: Environment
256 label_environment: Environment
255 label_authentication: Prijavljivanje
257 label_authentication: Prijavljivanje
256 label_auth_source: Način prijavljivanja
258 label_auth_source: Način prijavljivanja
257 label_auth_source_new: Novi način prijavljivanja
259 label_auth_source_new: Novi način prijavljivanja
258 label_auth_source_plural: Načini prijavljivanja
260 label_auth_source_plural: Načini prijavljivanja
259 label_subproject_plural: Podprojekti
261 label_subproject_plural: Podprojekti
260 label_min_max_length: Min - Max velicina
262 label_min_max_length: Min - Max velicina
261 label_list: Liste
263 label_list: Liste
262 label_date: Datum
264 label_date: Datum
263 label_integer: Integer
265 label_integer: Integer
264 label_boolean: Boolean
266 label_boolean: Boolean
265 label_string: Text
267 label_string: Text
266 label_text: Long text
268 label_text: Long text
267 label_attribute: Atribut
269 label_attribute: Atribut
268 label_attribute_plural: Atributi
270 label_attribute_plural: Atributi
269 label_download: %d Download
271 label_download: %d Download
270 label_download_plural: %d Downloads
272 label_download_plural: %d Downloads
271 label_no_data: Nema podataka za prikaz
273 label_no_data: Nema podataka za prikaz
272 label_change_status: Izmena statusa
274 label_change_status: Izmena statusa
273 label_history: Istorija
275 label_history: Istorija
274 label_attachment: Fajl
276 label_attachment: Fajl
275 label_attachment_new: Novi fajl
277 label_attachment_new: Novi fajl
276 label_attachment_delete: Brisanje fajla
278 label_attachment_delete: Brisanje fajla
277 label_attachment_plural: Fajlovi
279 label_attachment_plural: Fajlovi
278 label_report: Izveštaj
280 label_report: Izveštaj
279 label_report_plural: Izveštaji
281 label_report_plural: Izveštaji
280 label_news: Novosti
282 label_news: Novosti
281 label_news_new: Dodaj novosti
283 label_news_new: Dodaj novosti
282 label_news_plural: Novosti
284 label_news_plural: Novosti
283 label_news_latest: Poslednje novosti
285 label_news_latest: Poslednje novosti
284 label_news_view_all: Pregled svih novosti
286 label_news_view_all: Pregled svih novosti
285 label_change_log: Change log
287 label_change_log: Change log
286 label_settings: Podešavanja
288 label_settings: Podešavanja
287 label_overview: Overview
289 label_overview: Overview
288 label_version: Verzija
290 label_version: Verzija
289 label_version_new: Nova verzija
291 label_version_new: Nova verzija
290 label_version_plural: Verzije
292 label_version_plural: Verzije
291 label_confirmation: Potvrda
293 label_confirmation: Potvrda
292 label_export_to: Izvoz u
294 label_export_to: Izvoz u
293 label_read: Čitaj...
295 label_read: Čitaj...
294 label_public_projects: Javni projekti
296 label_public_projects: Javni projekti
295 label_open_issues: Otvoren
297 label_open_issues: Otvoren
296 label_open_issues_plural: Otvoreni
298 label_open_issues_plural: Otvoreni
297 label_closed_issues: Zatvoreni
299 label_closed_issues: Zatvoreni
298 label_closed_issues_plural: Zatvoreni
300 label_closed_issues_plural: Zatvoreni
299 label_total: Ukupno
301 label_total: Ukupno
300 label_permissions: Dozvole
302 label_permissions: Dozvole
301 label_current_status: Trenutni status
303 label_current_status: Trenutni status
302 label_new_statuses_allowed: Novi status je dozvoljen
304 label_new_statuses_allowed: Novi status je dozvoljen
303 label_all: Sve
305 label_all: Sve
304 label_none: nijedan
306 label_none: nijedan
305 label_nobody: niko
307 label_nobody: niko
306
308
307 label_next: Naredni
309 label_next: Naredni
308 label_previous: Prethodni
310 label_previous: Prethodni
309 label_used_by: Korišćen od
311 label_used_by: Korišćen od
310 label_details: Detalji
312 label_details: Detalji
311 label_add_note: Dodaj belešku
313 label_add_note: Dodaj belešku
312 label_per_page: Po stranici
314 label_per_page: Po stranici
313 label_calendar: Kalendar
315 label_calendar: Kalendar
314 label_months_from: Meseci od
316 label_months_from: Meseci od
315 label_gantt: Gantt
317 label_gantt: Gantt
316 label_internal: Interno
318 label_internal: Interno
317 label_last_changes: Poslednjih %d izmena
319 label_last_changes: Poslednjih %d izmena
318 label_change_view_all: Prikaz svih izmena
320 label_change_view_all: Prikaz svih izmena
319 label_personalize_page: Personalizuj ovu stranicu
321 label_personalize_page: Personalizuj ovu stranicu
320 label_comment: Komentar
322 label_comment: Komentar
321 label_comment_plural: Komentari
323 label_comment_plural: Komentari
322 label_comment_add: Dodaj komentar
324 label_comment_add: Dodaj komentar
323 label_comment_added: Komentar dodat
325 label_comment_added: Komentar dodat
324 label_comment_delete: Brisanje komentara
326 label_comment_delete: Brisanje komentara
325 label_query: Korisnički upit
327 label_query: Korisnički upit
326 label_query_plural: Korisnički upiti
328 label_query_plural: Korisnički upiti
327 label_query_new: Novi upit
329 label_query_new: Novi upit
328 label_filter_add: Dodaj filter
330 label_filter_add: Dodaj filter
329 label_filter_plural: Filter
331 label_filter_plural: Filter
330 label_equals: je
332 label_equals: je
331 label_not_equals: nije
333 label_not_equals: nije
332 label_in_less_than: je manji od
334 label_in_less_than: je manji od
333 label_in_more_than: je veci od
335 label_in_more_than: je veci od
334 label_in: u
336 label_in: u
335 label_today: danas
337 label_today: danas
336 label_this_week: ove nedelje
338 label_this_week: ove nedelje
337 label_less_than_ago: manje nego dana
339 label_less_than_ago: manje nego dana
338 label_more_than_ago: više nego dana
340 label_more_than_ago: više nego dana
339 label_ago: pre dana
341 label_ago: pre dana
340 label_contains: Sadrži
342 label_contains: Sadrži
341 label_not_contains: ne sadrži
343 label_not_contains: ne sadrži
342 label_day_plural: dana
344 label_day_plural: dana
343 label_repository: Spremište
345 label_repository: Spremište
344 label_browse: Pregled
346 label_browse: Pregled
345 label_modification: %d izmena
347 label_modification: %d izmena
346 label_modification_plural: %d izmena
348 label_modification_plural: %d izmena
347 label_revision: Revizija
349 label_revision: Revizija
348 label_revision_plural: Revizije
350 label_revision_plural: Revizije
349 label_added: dodato
351 label_added: dodato
350 label_modified: modifikovano
352 label_modified: modifikovano
351 label_deleted: izmenjeno
353 label_deleted: izmenjeno
352 label_latest_revision: Poslednja revizija
354 label_latest_revision: Poslednja revizija
353 label_latest_revision_plural: Poslednje revizije
355 label_latest_revision_plural: Poslednje revizije
354 label_view_revisions: Pregled revizija
356 label_view_revisions: Pregled revizija
355 label_max_size: Maksimalna veličina
357 label_max_size: Maksimalna veličina
356 label_on: 'uključeno'
358 label_on: 'uključeno'
357 label_sort_highest: Premesti na vrh
359 label_sort_highest: Premesti na vrh
358 label_sort_higher: premesti na gore
360 label_sort_higher: premesti na gore
359 label_sort_lower: Premesti na dole
361 label_sort_lower: Premesti na dole
360 label_sort_lowest: Premesti na dno
362 label_sort_lowest: Premesti na dno
361 label_roadmap: Roadmap
363 label_roadmap: Roadmap
362 label_roadmap_due_in: Završava se za
364 label_roadmap_due_in: Završava se za
363 label_roadmap_overdue: %s kasni
365 label_roadmap_overdue: %s kasni
364 label_roadmap_no_issues: Nema kartica za ovu verziju
366 label_roadmap_no_issues: Nema kartica za ovu verziju
365 label_search: Traži
367 label_search: Traži
366 label_result_plural: Rezultati
368 label_result_plural: Rezultati
367 label_all_words: Sve reči
369 label_all_words: Sve reči
368 label_wiki: Wiki
370 label_wiki: Wiki
369 label_wiki_edit: Wiki izmena
371 label_wiki_edit: Wiki izmena
370 label_wiki_edit_plural: Wiki izmene
372 label_wiki_edit_plural: Wiki izmene
371 label_wiki_page: Wiki stranica
373 label_wiki_page: Wiki stranica
372 label_wiki_page_plural: Wiki stranice
374 label_wiki_page_plural: Wiki stranice
373 label_index_by_title: Indeks po naslovima
375 label_index_by_title: Indeks po naslovima
374 label_index_by_date: Indeks po datumu
376 label_index_by_date: Indeks po datumu
375 label_current_version: Trenutna verzija
377 label_current_version: Trenutna verzija
376 label_preview: Brzi pregled
378 label_preview: Brzi pregled
377 label_feed_plural: Feeds
379 label_feed_plural: Feeds
378 label_changes_details: Detalji svih izmena
380 label_changes_details: Detalji svih izmena
379 label_issue_tracking: Praćenje kartica
381 label_issue_tracking: Praćenje kartica
380 label_spent_time: Potrošeno vremena
382 label_spent_time: Potrošeno vremena
381 label_f_hour: %.2f časa
383 label_f_hour: %.2f časa
382 label_f_hour_plural: %.2f časova
384 label_f_hour_plural: %.2f časova
383 label_time_tracking: Praćenje vremena
385 label_time_tracking: Praćenje vremena
384 label_change_plural: Izmene
386 label_change_plural: Izmene
385 label_statistics: Statistika
387 label_statistics: Statistika
386 label_commits_per_month: Commit-a po mesecu
388 label_commits_per_month: Commit-a po mesecu
387 label_commits_per_author: Commit-a po autoru
389 label_commits_per_author: Commit-a po autoru
388 label_view_diff: Pregled razlika
390 label_view_diff: Pregled razlika
389 label_diff_inline: uvučeno
391 label_diff_inline: uvučeno
390 label_diff_side_by_side: paralelno
392 label_diff_side_by_side: paralelno
391 label_options: Opcije
393 label_options: Opcije
392 label_copy_workflow_from: Kopiraj tok rada od
394 label_copy_workflow_from: Kopiraj tok rada od
393 label_permissions_report: Izveštaj o dozvolama
395 label_permissions_report: Izveštaj o dozvolama
394 label_watched_issues: Praćene kartice
396 label_watched_issues: Praćene kartice
395 label_related_issues: Kartice u vezi
397 label_related_issues: Kartice u vezi
396 label_applied_status: Primenjen status
398 label_applied_status: Primenjen status
397 label_loading: Učitavam...
399 label_loading: Učitavam...
398 label_relation_new: Nova relacija
400 label_relation_new: Nova relacija
399 label_relation_delete: Brisanje relacije
401 label_relation_delete: Brisanje relacije
400 label_relates_to: u relaciji sa
402 label_relates_to: u relaciji sa
401 label_duplicates: Duplira
403 label_duplicates: Duplira
402 label_blocks: blokira
404 label_blocks: blokira
403 label_blocked_by: blokiran od strane
405 label_blocked_by: blokiran od strane
404 label_precedes: prethodi
406 label_precedes: prethodi
405 label_follows: sledi
407 label_follows: sledi
406 label_end_to_start: od kraja do početka
408 label_end_to_start: od kraja do početka
407 label_end_to_end: od kraja do kraja
409 label_end_to_end: od kraja do kraja
408 label_start_to_start: od početka do pocetka
410 label_start_to_start: od početka do pocetka
409 label_start_to_end: od početka do kraja
411 label_start_to_end: od početka do kraja
410 label_stay_logged_in: Ostani ulogovan
412 label_stay_logged_in: Ostani ulogovan
411 label_disabled: Isključen
413 label_disabled: Isključen
412 label_show_completed_versions: Prikaži završene verzije
414 label_show_completed_versions: Prikaži završene verzije
413 label_me: ja
415 label_me: ja
414 label_board: Forum
416 label_board: Forum
415 label_board_new: Novi forum
417 label_board_new: Novi forum
416 label_board_plural: Forumi
418 label_board_plural: Forumi
417 label_topic_plural: Teme
419 label_topic_plural: Teme
418 label_message_plural: Poruke
420 label_message_plural: Poruke
419 label_message_last: Poslednja poruka
421 label_message_last: Poslednja poruka
420 label_message_new: Nova poruka
422 label_message_new: Nova poruka
421 label_reply_plural: Odgovori
423 label_reply_plural: Odgovori
422 label_send_information: Pošalji informaciju o nalogu korisniku
424 label_send_information: Pošalji informaciju o nalogu korisniku
423 label_year: Godina
425 label_year: Godina
424 label_month: Mesec
426 label_month: Mesec
425 label_week: Nedelja
427 label_week: Nedelja
426 label_date_from: Od
428 label_date_from: Od
427 label_date_to: Do
429 label_date_to: Do
428 label_language_based: Bazirano na jeziku
430 label_language_based: Bazirano na jeziku
429 label_sort_by: Sortiraj po %s
431 label_sort_by: Sortiraj po %s
430 label_send_test_email: Pošalji probni email
432 label_send_test_email: Pošalji probni email
431 label_feeds_access_key_created_on: RSS ključ za pristup je kreiran pre %s
433 label_feeds_access_key_created_on: RSS ključ za pristup je kreiran pre %s
432 label_module_plural: Modulovi
434 label_module_plural: Modulovi
433 label_added_time_by: Dodato pre %s %s
435 label_added_time_by: Dodato pre %s %s
434 label_updated_time: Izmenjeno pre %s
436 label_updated_time: Izmenjeno pre %s
435 label_jump_to_a_project: Prebaci se na projekat...
437 label_jump_to_a_project: Prebaci se na projekat...
436 label_file_plural: Fajlovi
438 label_file_plural: Fajlovi
437 label_changeset_plural: Skupovi izmena
439 label_changeset_plural: Skupovi izmena
438 label_default_columns: Podrazumevane kolone
440 label_default_columns: Podrazumevane kolone
439 label_no_change_option: (Bez izmena)
441 label_no_change_option: (Bez izmena)
440 label_bulk_edit_selected_issues: Zajednička izmena izabranih kartica
442 label_bulk_edit_selected_issues: Zajednička izmena izabranih kartica
441 label_theme: Tema
443 label_theme: Tema
442 label_default: Podrazumevana
444 label_default: Podrazumevana
443 label_search_titles_only: Pretraga samo naslova
445 label_search_titles_only: Pretraga samo naslova
444 label_user_mail_option_all: "Za bilo koji događaj na svim mojim projektima"
446 label_user_mail_option_all: "Za bilo koji događaj na svim mojim projektima"
445 label_user_mail_option_selected: "Za bilo koji događaj za samo izabrane projekte..."
447 label_user_mail_option_selected: "Za bilo koji događaj za samo izabrane projekte..."
446 label_user_mail_option_none: "Samo za stvari koje pratim ili u kojima učestvujem"
448 label_user_mail_option_none: "Samo za stvari koje pratim ili u kojima učestvujem"
447
449
448 button_login: Login
450 button_login: Login
449 button_submit: Pošalji
451 button_submit: Pošalji
450 button_save: Snimi
452 button_save: Snimi
451 button_check_all: Označi sve
453 button_check_all: Označi sve
452 button_uncheck_all: Isključi sve
454 button_uncheck_all: Isključi sve
453 button_delete: Briši
455 button_delete: Briši
454 button_create: Kreiraj
456 button_create: Kreiraj
455 button_test: Testiraj
457 button_test: Testiraj
456 button_edit: Izmene
458 button_edit: Izmene
457 button_add: Dodavanje
459 button_add: Dodavanje
458 button_change: Izmena
460 button_change: Izmena
459 button_apply: Primena
461 button_apply: Primena
460 button_clear: Brisanje
462 button_clear: Brisanje
461 button_lock: Zaključavanje
463 button_lock: Zaključavanje
462 button_unlock: Odključavanje
464 button_unlock: Odključavanje
463 button_download: Download
465 button_download: Download
464 button_list: Lista
466 button_list: Lista
465 button_view: Pregled
467 button_view: Pregled
466 button_move: Premeštanje
468 button_move: Premeštanje
467 button_back: Nazad
469 button_back: Nazad
468 button_cancel: Odustajanje
470 button_cancel: Odustajanje
469 button_activate: Aktiviraj
471 button_activate: Aktiviraj
470 button_sort: Sortiranje
472 button_sort: Sortiranje
471 button_log_time: Log time
473 button_log_time: Log time
472 button_rollback: Izvrši rollback na ovu verziju
474 button_rollback: Izvrši rollback na ovu verziju
473 button_watch: Praćenje
475 button_watch: Praćenje
474 button_unwatch: Prekid praćenja
476 button_unwatch: Prekid praćenja
475 button_reply: Odgovor
477 button_reply: Odgovor
476 button_archive: Arhiviranje
478 button_archive: Arhiviranje
477 button_unarchive: Dearhiviranje
479 button_unarchive: Dearhiviranje
478 button_reset: Reset
480 button_reset: Reset
479 button_rename: Promena imena
481 button_rename: Promena imena
480 button_change_password: Izmena lozinke
482 button_change_password: Izmena lozinke
481
483
482 status_active: aktivan
484 status_active: aktivan
483 status_registered: registrovan
485 status_registered: registrovan
484 status_locked: zaključan
486 status_locked: zaključan
485
487
486 text_select_mail_notifications: Izbor akcija za koje će biti poslato obaveštenje mailom.
488 text_select_mail_notifications: Izbor akcija za koje će biti poslato obaveštenje mailom.
487 text_regexp_info: eg. ^[A-Z0-9]+$
489 text_regexp_info: eg. ^[A-Z0-9]+$
488 text_min_max_length_info: 0 znači bez restrikcija
490 text_min_max_length_info: 0 znači bez restrikcija
489 text_project_destroy_confirmation: Da li ste sigurni da želite da izbrišete ovaj projekat i sve njegove podatke?
491 text_project_destroy_confirmation: Da li ste sigurni da želite da izbrišete ovaj projekat i sve njegove podatke?
490 text_workflow_edit: Select a role and a tracker to edit the workflow
492 text_workflow_edit: Select a role and a tracker to edit the workflow
491 text_are_you_sure: Da li ste sigurni ?
493 text_are_you_sure: Da li ste sigurni ?
492 text_journal_changed: izmenjen iz %s u %s
494 text_journal_changed: izmenjen iz %s u %s
493 text_journal_set_to: postavi na %s
495 text_journal_set_to: postavi na %s
494 text_journal_deleted: izbrisano
496 text_journal_deleted: izbrisano
495 text_tip_task_begin_day: Zadaci koji počinju ovog dana
497 text_tip_task_begin_day: Zadaci koji počinju ovog dana
496 text_tip_task_end_day: zadaci koji se završavaju ovog dana
498 text_tip_task_end_day: zadaci koji se završavaju ovog dana
497 text_tip_task_begin_end_day: Zadaci koji počinju i završavaju se ovog dana
499 text_tip_task_begin_end_day: Zadaci koji počinju i završavaju se ovog dana
498 text_project_identifier_info: 'mala slova (a-z), brojevi i crtice su dozvoljeni.<br />Jednom snimljen identifikator se ne može menjati'
500 text_project_identifier_info: 'mala slova (a-z), brojevi i crtice su dozvoljeni.<br />Jednom snimljen identifikator se ne može menjati'
499 text_caracters_maximum: %d karaktera maksimalno.
501 text_caracters_maximum: %d karaktera maksimalno.
500 text_length_between: Dužina izmedu %d i %d karaktera.
502 text_length_between: Dužina izmedu %d i %d karaktera.
501 text_tracker_no_workflow: Tok rada nije definisan za ovaj tracker
503 text_tracker_no_workflow: Tok rada nije definisan za ovaj tracker
502 text_unallowed_characters: Nedozvoljeni karakteri
504 text_unallowed_characters: Nedozvoljeni karakteri
503 text_comma_separated: Višestruke vrednosti su dozvoljene (razdvojene zarezom).
505 text_comma_separated: Višestruke vrednosti su dozvoljene (razdvojene zarezom).
504 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
506 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
505 text_issue_added: Kartica %s je prijavljena.
507 text_issue_added: Kartica %s je prijavljena.
506 text_issue_updated: Kartica %s je izmenjena.
508 text_issue_updated: Kartica %s je izmenjena.
507 text_wiki_destroy_confirmation: Da li ste sigurni da želite da izbrišete ovaj wiki i svu njegovu sadržinu ?
509 text_wiki_destroy_confirmation: Da li ste sigurni da želite da izbrišete ovaj wiki i svu njegovu sadržinu ?
508 text_issue_category_destroy_question: Neke kartice (%d) su dodeljene ovoj kategoriji. Šta želite da uradite ?
510 text_issue_category_destroy_question: Neke kartice (%d) su dodeljene ovoj kategoriji. Šta želite da uradite ?
509 text_issue_category_destroy_assignments: Ukloni dodeljivanje kategorija
511 text_issue_category_destroy_assignments: Ukloni dodeljivanje kategorija
510 text_issue_category_reassign_to: Ponovo dodeli kartice ovoj kategoriji
512 text_issue_category_reassign_to: Ponovo dodeli kartice ovoj kategoriji
511 text_user_mail_option: "Za neizabrane projekte, primaćete obaveštenja samo o stvarima koje pratite ili u kojima učestvujete (npr. kartice koje ste vi kreirali ili koje su vama dodeljene)."
513 text_user_mail_option: "Za neizabrane projekte, primaćete obaveštenja samo o stvarima koje pratite ili u kojima učestvujete (npr. kartice koje ste vi kreirali ili koje su vama dodeljene)."
512
514
513 default_role_manager: Menadžer
515 default_role_manager: Menadžer
514 default_role_developper: Developer
516 default_role_developper: Developer
515 default_role_reporter: Reporter
517 default_role_reporter: Reporter
516 default_tracker_bug: Greška
518 default_tracker_bug: Greška
517 default_tracker_feature: Nova osobina
519 default_tracker_feature: Nova osobina
518 default_tracker_support: Podrška
520 default_tracker_support: Podrška
519 default_issue_status_new: Novo
521 default_issue_status_new: Novo
520 default_issue_status_assigned: Dodeljeno
522 default_issue_status_assigned: Dodeljeno
521 default_issue_status_resolved: Rešeno
523 default_issue_status_resolved: Rešeno
522 default_issue_status_feedback: Povratna informacija
524 default_issue_status_feedback: Povratna informacija
523 default_issue_status_closed: Zatvoreno
525 default_issue_status_closed: Zatvoreno
524 default_issue_status_rejected: Odbačeno
526 default_issue_status_rejected: Odbačeno
525 default_doc_category_user: Korisnička dokumentacija
527 default_doc_category_user: Korisnička dokumentacija
526 default_doc_category_tech: Tehnička dokumentacija
528 default_doc_category_tech: Tehnička dokumentacija
527 default_priority_low: Nizak
529 default_priority_low: Nizak
528 default_priority_normal: Normalan
530 default_priority_normal: Normalan
529 default_priority_high: Visok
531 default_priority_high: Visok
530 default_priority_urgent: Hitan
532 default_priority_urgent: Hitan
531 default_priority_immediate: Odmah
533 default_priority_immediate: Odmah
532 default_activity_design: Dizajn
534 default_activity_design: Dizajn
533 default_activity_development: Razvoj
535 default_activity_development: Razvoj
534
536
535 enumeration_issue_priorities: Prioriteti kartica
537 enumeration_issue_priorities: Prioriteti kartica
536 enumeration_doc_categories: Kategorija dokumenata
538 enumeration_doc_categories: Kategorija dokumenata
537 enumeration_activities: Aktivnosti (praćenje vremena))
539 enumeration_activities: Aktivnosti (praćenje vremena))
538 label_float: Float
540 label_float: Float
539 button_copy: Copy
541 button_copy: Copy
540 setting_protocol: Protocol
542 setting_protocol: Protocol
541 label_user_mail_no_self_notified: "Ne želim da budem obaveštavan o izmenama koje sam pravim"
543 label_user_mail_no_self_notified: "Ne želim da budem obaveštavan o izmenama koje sam pravim"
542 setting_time_format: Format vremena
544 setting_time_format: Format vremena
543 label_registration_activation_by_email: aktivacija naloga putem email-a
545 label_registration_activation_by_email: aktivacija naloga putem email-a
544 mail_subject_account_activation_request: Redmine zahtev za aktivacijom naloga
546 mail_subject_account_activation_request: Redmine zahtev za aktivacijom naloga
545 mail_body_account_activation_request: 'Novi korisnik (%s) se registrovao. Njegov nalog čeka vaše odobrenje:'
547 mail_body_account_activation_request: 'Novi korisnik (%s) se registrovao. Njegov nalog čeka vaše odobrenje:'
546 label_registration_automatic_activation: automatska aktivacija naloga
548 label_registration_automatic_activation: automatska aktivacija naloga
547 label_registration_manual_activation: ručna aktivacija naloga
549 label_registration_manual_activation: ručna aktivacija naloga
548 notice_account_pending: "Vaš nalog je kreiran i čeka odobrenje administratora."
550 notice_account_pending: "Vaš nalog je kreiran i čeka odobrenje administratora."
549 field_time_zone: Vremenska zona
551 field_time_zone: Vremenska zona
550 text_caracters_minimum: Mora biti minimum %d karaktera dugačka.
552 text_caracters_minimum: Mora biti minimum %d karaktera dugačka.
551 setting_bcc_recipients: '"Blind carbon copy" primaoci (bcc)'
553 setting_bcc_recipients: '"Blind carbon copy" primaoci (bcc)'
552 button_annotate: Annotate
554 button_annotate: Annotate
553 label_issues_by: Kartice od %s
555 label_issues_by: Kartice od %s
554 field_searchable: Searchable
556 field_searchable: Searchable
555 label_display_per_page: 'Po stranici: %s'
557 label_display_per_page: 'Po stranici: %s'
556 setting_per_page_options: Objekata po stranici opcija
558 setting_per_page_options: Objekata po stranici opcija
557 label_age: Starost
559 label_age: Starost
558 notice_default_data_loaded: Default configuration successfully loaded.
560 notice_default_data_loaded: Default configuration successfully loaded.
559 text_load_default_configuration: Load the default configuration
561 text_load_default_configuration: Load the default configuration
560 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."
561 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"
562 button_update: Update
564 button_update: Update
563 label_change_properties: Change properties
565 label_change_properties: Change properties
564 label_general: General
566 label_general: General
565 label_repository_plural: Repositories
567 label_repository_plural: Repositories
566 label_associated_revisions: Associated revisions
568 label_associated_revisions: Associated revisions
@@ -1,566 +1,568
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,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December
4 actionview_datehelper_select_month_names: Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,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 dagar
9 actionview_datehelper_time_in_words_day_plural: %d dagar
10 actionview_datehelper_time_in_words_hour_about: cirka en timme
10 actionview_datehelper_time_in_words_hour_about: cirka en timme
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar
12 actionview_datehelper_time_in_words_hour_about_single: cirka en timme
12 actionview_datehelper_time_in_words_hour_about_single: cirka en timme
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: en halv minute
14 actionview_datehelper_time_in_words_minute_half: en halv minute
15 actionview_datehelper_time_in_words_minute_less_than: mindre än en minut
15 actionview_datehelper_time_in_words_minute_less_than: mindre än en minut
16 actionview_datehelper_time_in_words_minute_plural: %d minuter
16 actionview_datehelper_time_in_words_minute_plural: %d minuter
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 än en sekund
18 actionview_datehelper_time_in_words_second_less_than: mindre än en sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder
20 actionview_instancetag_blank_option: Var god välj
20 actionview_instancetag_blank_option: Var god välj
21
21
22 activerecord_error_inclusion: finns inte i listan
22 activerecord_error_inclusion: finns inte i listan
23 activerecord_error_exclusion: är reserverad
23 activerecord_error_exclusion: är reserverad
24 activerecord_error_invalid: är ogiltig
24 activerecord_error_invalid: är ogiltig
25 activerecord_error_confirmation: överränsstämmer inte med bekräftelsen
25 activerecord_error_confirmation: överränsstämmer inte med bekräftelsen
26 activerecord_error_accepted: måste accepteras
26 activerecord_error_accepted: måste accepteras
27 activerecord_error_empty: får inte vara tom
27 activerecord_error_empty: får inte vara tom
28 activerecord_error_blank: får inte vara tom
28 activerecord_error_blank: får inte vara tom
29 activerecord_error_too_long: är för lång
29 activerecord_error_too_long: är för lång
30 activerecord_error_too_short: är för kort
30 activerecord_error_too_short: är för kort
31 activerecord_error_wrong_length: har fel längd
31 activerecord_error_wrong_length: har fel längd
32 activerecord_error_taken: har redan blivit tagen
32 activerecord_error_taken: har redan blivit tagen
33 activerecord_error_not_a_number: är inte ett nummer
33 activerecord_error_not_a_number: är inte ett nummer
34 activerecord_error_not_a_date: är inte ett korrekt datum
34 activerecord_error_not_a_date: är inte ett korrekt datum
35 activerecord_error_greater_than_start_date: måste vara senare än startdatumet
35 activerecord_error_greater_than_start_date: måste vara senare än startdatumet
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 å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: %%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: '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: 'Svenska'
49 general_lang_name: 'Svenska'
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: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag
53 general_day_names: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Kontot har uppdaterats
56 notice_account_updated: Kontot har uppdaterats
57 notice_account_invalid_creditentials: Fel användarnamn eller lösenord
57 notice_account_invalid_creditentials: Fel användarnamn eller lösenord
58 notice_account_password_updated: Lösenordet har uppdaterats
58 notice_account_password_updated: Lösenordet har uppdaterats
59 notice_account_wrong_password: Fel lösenord
59 notice_account_wrong_password: Fel lösenord
60 notice_account_register_done: Kontot har skapats.
60 notice_account_register_done: Kontot har skapats.
61 notice_account_unknown_email: Okäns användare.
61 notice_account_unknown_email: Okäns användare.
62 notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord.
62 notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord.
63 notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig.
63 notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig.
64 notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in.
64 notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in.
65 notice_successful_create: Lyckat skapande.
65 notice_successful_create: Lyckat skapande.
66 notice_successful_update: Lyckad uppdatering.
66 notice_successful_update: Lyckad uppdatering.
67 notice_successful_delete: Lyckad borttagning.
67 notice_successful_delete: Lyckad borttagning.
68 notice_successful_connection: Lyckad uppkoppling.
68 notice_successful_connection: Lyckad uppkoppling.
69 notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen.
69 notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen.
70 notice_locking_conflict: Data har uppdaterats av en annan användare.
70 notice_locking_conflict: Data har uppdaterats av en annan användare.
71 notice_scm_error: Inlägg och/eller revision finns inte i repositoriet.
72 notice_not_authorized: You are not authorized to access this page.
71 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
73 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
75
76 error_scm_not_found: "Inlägg och/eller revision finns inte i repositoriet."
77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78
77 mail_subject_lost_password: Ditt redMine lösenord
79 mail_subject_lost_password: Ditt redMine lösenord
78 mail_body_lost_password: 'För att ändra lösenord, följ denna länk:'
80 mail_body_lost_password: 'För att ändra lösenord, följ denna länk:'
79 mail_subject_register: redMine kontoaktivering
81 mail_subject_register: redMine kontoaktivering
80 mail_body_register: 'För att aktivera ditt Redmine-konto, använd följande länk.'
82 mail_body_register: 'För att aktivera ditt Redmine-konto, använd följande länk.'
81
83
82 gui_validation_error: 1 fel
84 gui_validation_error: 1 fel
83 gui_validation_error_plural: %d fel
85 gui_validation_error_plural: %d fel
84
86
85 field_name: Namn
87 field_name: Namn
86 field_description: Beskrivning
88 field_description: Beskrivning
87 field_summary: Sammanfattning
89 field_summary: Sammanfattning
88 field_is_required: Obligatorisk
90 field_is_required: Obligatorisk
89 field_firstname: Förnamn
91 field_firstname: Förnamn
90 field_lastname: Efternamn
92 field_lastname: Efternamn
91 field_mail: Email
93 field_mail: Email
92 field_filename: Fil
94 field_filename: Fil
93 field_filesize: Storlek
95 field_filesize: Storlek
94 field_downloads: Nerladdningar
96 field_downloads: Nerladdningar
95 field_author: Författare
97 field_author: Författare
96 field_created_on: Skapad
98 field_created_on: Skapad
97 field_updated_on: Uppdaterad
99 field_updated_on: Uppdaterad
98 field_field_format: Format
100 field_field_format: Format
99 field_is_for_all: För alla projekt
101 field_is_for_all: För alla projekt
100 field_possible_values: Möjliga värden
102 field_possible_values: Möjliga värden
101 field_regexp: Regular expression
103 field_regexp: Regular expression
102 field_min_length: Minimilängd
104 field_min_length: Minimilängd
103 field_max_length: Maximumlängd
105 field_max_length: Maximumlängd
104 field_value: Värde
106 field_value: Värde
105 field_category: Kategori
107 field_category: Kategori
106 field_title: Titel
108 field_title: Titel
107 field_project: Projekt
109 field_project: Projekt
108 field_issue: Brist
110 field_issue: Brist
109 field_status: Status
111 field_status: Status
110 field_notes: Anteckningar
112 field_notes: Anteckningar
111 field_is_closed: Brist stängd
113 field_is_closed: Brist stängd
112 field_is_default: Defaultstatus
114 field_is_default: Defaultstatus
113 field_tracker: Tracker
115 field_tracker: Tracker
114 field_subject: Rubrik
116 field_subject: Rubrik
115 field_due_date: Färdigdatum
117 field_due_date: Färdigdatum
116 field_assigned_to: Tilldelad
118 field_assigned_to: Tilldelad
117 field_priority: Prioritet
119 field_priority: Prioritet
118 field_fixed_version: Fixed version
120 field_fixed_version: Fixed version
119 field_user: Användare
121 field_user: Användare
120 field_role: Roll
122 field_role: Roll
121 field_homepage: Hemsida
123 field_homepage: Hemsida
122 field_is_public: Offentlig
124 field_is_public: Offentlig
123 field_parent: Delprojekt av
125 field_parent: Delprojekt av
124 field_is_in_chlog: Brister visade i ändringslogg
126 field_is_in_chlog: Brister visade i ändringslogg
125 field_is_in_roadmap: Bsiter visade i roadmap
127 field_is_in_roadmap: Bsiter visade i roadmap
126 field_login: Inloggning
128 field_login: Inloggning
127 field_mail_notification: Emailnotifieringar
129 field_mail_notification: Emailnotifieringar
128 field_admin: Administratör
130 field_admin: Administratör
129 field_last_login_on: Senaste inloggning
131 field_last_login_on: Senaste inloggning
130 field_language: Språk
132 field_language: Språk
131 field_effective_date: Datum
133 field_effective_date: Datum
132 field_password: Lösenord
134 field_password: Lösenord
133 field_new_password: Nytt lösenord
135 field_new_password: Nytt lösenord
134 field_password_confirmation: Bekräfta
136 field_password_confirmation: Bekräfta
135 field_version: Version
137 field_version: Version
136 field_type: Typ
138 field_type: Typ
137 field_host: Värddator
139 field_host: Värddator
138 field_port: Port
140 field_port: Port
139 field_account: Konto
141 field_account: Konto
140 field_base_dn: Bas DN
142 field_base_dn: Bas DN
141 field_attr_login: Inloggningsattribut
143 field_attr_login: Inloggningsattribut
142 field_attr_firstname: Förnamnattribut
144 field_attr_firstname: Förnamnattribut
143 field_attr_lastname: Efternamnattribut
145 field_attr_lastname: Efternamnattribut
144 field_attr_mail: Emailattribut
146 field_attr_mail: Emailattribut
145 field_onthefly: On-the-fly användarskapning
147 field_onthefly: On-the-fly användarskapning
146 field_start_date: Start
148 field_start_date: Start
147 field_done_ratio: %% Done
149 field_done_ratio: %% Done
148 field_auth_source: Authentikeringsläge
150 field_auth_source: Authentikeringsläge
149 field_hide_mail: Dölj min emailadress
151 field_hide_mail: Dölj min emailadress
150 field_comment: Kommentar
152 field_comment: Kommentar
151 field_url: URL
153 field_url: URL
152 field_start_page: Startsida
154 field_start_page: Startsida
153 field_subproject: Delprojekt
155 field_subproject: Delprojekt
154 field_hours: Timmar
156 field_hours: Timmar
155 field_activity: Aktivitet
157 field_activity: Aktivitet
156 field_spent_on: Datum
158 field_spent_on: Datum
157 field_identifier: Identifierare
159 field_identifier: Identifierare
158 field_is_filter: Used as a filter
160 field_is_filter: Used as a filter
159 field_issue_to_id: Related issue
161 field_issue_to_id: Related issue
160 field_delay: Delay
162 field_delay: Delay
161 field_assignable: Issues can be assigned to this role
163 field_assignable: Issues can be assigned to this role
162 field_redirect_existing_links: Redirect existing links
164 field_redirect_existing_links: Redirect existing links
163 field_estimated_hours: Estimated time
165 field_estimated_hours: Estimated time
164 field_default_value: Default value
166 field_default_value: Default value
165
167
166 setting_app_title: Applikationstitel
168 setting_app_title: Applikationstitel
167 setting_app_subtitle: Applicationsunderrubrik
169 setting_app_subtitle: Applicationsunderrubrik
168 setting_welcome_text: Välkommentext
170 setting_welcome_text: Välkommentext
169 setting_default_language: Default språk
171 setting_default_language: Default språk
170 setting_login_required: Authent. obligatoriskt
172 setting_login_required: Authent. obligatoriskt
171 setting_self_registration: Självregistrering påslaget
173 setting_self_registration: Självregistrering påslaget
172 setting_attachment_max_size: Bifogad maxstorlek
174 setting_attachment_max_size: Bifogad maxstorlek
173 setting_issues_export_limit: Brist exportgräns
175 setting_issues_export_limit: Brist exportgräns
174 setting_mail_from: Emailavsändare
176 setting_mail_from: Emailavsändare
175 setting_host_name: Värddatornamn
177 setting_host_name: Värddatornamn
176 setting_text_formatting: Textformattering
178 setting_text_formatting: Textformattering
177 setting_wiki_compression: Wiki historiekomprimering
179 setting_wiki_compression: Wiki historiekomprimering
178 setting_feeds_limit: Feed innehållsgräns
180 setting_feeds_limit: Feed innehållsgräns
179 setting_autofetch_changesets: Automatisk hämtning av commits
181 setting_autofetch_changesets: Automatisk hämtning av commits
180 setting_sys_api_enabled: Aktivera WS för repository management
182 setting_sys_api_enabled: Aktivera WS för repository management
181 setting_commit_ref_keywords: Referencing keywords
183 setting_commit_ref_keywords: Referencing keywords
182 setting_commit_fix_keywords: Fixing keywords
184 setting_commit_fix_keywords: Fixing keywords
183 setting_autologin: Autologin
185 setting_autologin: Autologin
184 setting_date_format: Date format
186 setting_date_format: Date format
185 setting_cross_project_issue_relations: Allow cross-project issue relations
187 setting_cross_project_issue_relations: Allow cross-project issue relations
186
188
187 label_user: Användare
189 label_user: Användare
188 label_user_plural: Användare
190 label_user_plural: Användare
189 label_user_new: Ny användare
191 label_user_new: Ny användare
190 label_project: Projekt
192 label_project: Projekt
191 label_project_new: Nytt projekt
193 label_project_new: Nytt projekt
192 label_project_plural: Projekt
194 label_project_plural: Projekt
193 label_project_all: All Projects
195 label_project_all: All Projects
194 label_project_latest: Senaste projekt
196 label_project_latest: Senaste projekt
195 label_issue: Brist
197 label_issue: Brist
196 label_issue_new: Ny brist
198 label_issue_new: Ny brist
197 label_issue_plural: Brister
199 label_issue_plural: Brister
198 label_issue_view_all: Visa alla brister
200 label_issue_view_all: Visa alla brister
199 label_document: Dokument
201 label_document: Dokument
200 label_document_new: Nytt dokument
202 label_document_new: Nytt dokument
201 label_document_plural: Dokument
203 label_document_plural: Dokument
202 label_role: Roll
204 label_role: Roll
203 label_role_plural: Roller
205 label_role_plural: Roller
204 label_role_new: Ny roll
206 label_role_new: Ny roll
205 label_role_and_permissions: Roller och rättigheter
207 label_role_and_permissions: Roller och rättigheter
206 label_member: Medlem
208 label_member: Medlem
207 label_member_new: Ny medlem
209 label_member_new: Ny medlem
208 label_member_plural: Medlemmar
210 label_member_plural: Medlemmar
209 label_tracker: Tracker
211 label_tracker: Tracker
210 label_tracker_plural: Trackers
212 label_tracker_plural: Trackers
211 label_tracker_new: Ny tracker
213 label_tracker_new: Ny tracker
212 label_workflow: Workflow
214 label_workflow: Workflow
213 label_issue_status: Briststatus
215 label_issue_status: Briststatus
214 label_issue_status_plural: Briststatusar
216 label_issue_status_plural: Briststatusar
215 label_issue_status_new: Ny status
217 label_issue_status_new: Ny status
216 label_issue_category: Bristkategori
218 label_issue_category: Bristkategori
217 label_issue_category_plural: Bristkategorier
219 label_issue_category_plural: Bristkategorier
218 label_issue_category_new: Ny kategori
220 label_issue_category_new: Ny kategori
219 label_custom_field: Användardefinerat fält
221 label_custom_field: Användardefinerat fält
220 label_custom_field_plural: Användardefinerade fält
222 label_custom_field_plural: Användardefinerade fält
221 label_custom_field_new: Nytt Användardefinerat fält
223 label_custom_field_new: Nytt Användardefinerat fält
222 label_enumerations: Uppräkningar
224 label_enumerations: Uppräkningar
223 label_enumeration_new: Nytt värde
225 label_enumeration_new: Nytt värde
224 label_information: Information
226 label_information: Information
225 label_information_plural: Information
227 label_information_plural: Information
226 label_please_login: Var god logga in
228 label_please_login: Var god logga in
227 label_register: Registrera
229 label_register: Registrera
228 label_password_lost: Glömt lösenord
230 label_password_lost: Glömt lösenord
229 label_home: Hem
231 label_home: Hem
230 label_my_page: Min sida
232 label_my_page: Min sida
231 label_my_account: Mitt konto
233 label_my_account: Mitt konto
232 label_my_projects: Mina projekt
234 label_my_projects: Mina projekt
233 label_administration: Administration
235 label_administration: Administration
234 label_login: Logga in
236 label_login: Logga in
235 label_logout: Logga ut
237 label_logout: Logga ut
236 label_help: Hjälp
238 label_help: Hjälp
237 label_reported_issues: Rapporterade brister
239 label_reported_issues: Rapporterade brister
238 label_assigned_to_me_issues: Brister tilldelade mig
240 label_assigned_to_me_issues: Brister tilldelade mig
239 label_last_login: Senaste inloggning
241 label_last_login: Senaste inloggning
240 label_last_updates: Senast uppdaterad
242 label_last_updates: Senast uppdaterad
241 label_last_updates_plural: %d senaste uppdateringarna
243 label_last_updates_plural: %d senaste uppdateringarna
242 label_registered_on: Registrerad
244 label_registered_on: Registrerad
243 label_activity: Aktivitet
245 label_activity: Aktivitet
244 label_new: Ny
246 label_new: Ny
245 label_logged_as: Loggad som
247 label_logged_as: Loggad som
246 label_environment: Miljö
248 label_environment: Miljö
247 label_authentication: Authentikering
249 label_authentication: Authentikering
248 label_auth_source: Authentikeringsläge
250 label_auth_source: Authentikeringsläge
249 label_auth_source_new: Nytt authentikeringsläge
251 label_auth_source_new: Nytt authentikeringsläge
250 label_auth_source_plural: Authentikeringslägen
252 label_auth_source_plural: Authentikeringslägen
251 label_subproject_plural: Delprojekt
253 label_subproject_plural: Delprojekt
252 label_min_max_length: Min - Max längd
254 label_min_max_length: Min - Max längd
253 label_list: Lista
255 label_list: Lista
254 label_date: Datum
256 label_date: Datum
255 label_integer: Heltal
257 label_integer: Heltal
256 label_boolean: Boolean
258 label_boolean: Boolean
257 label_string: Text
259 label_string: Text
258 label_text: Long text
260 label_text: Long text
259 label_attribute: Attribut
261 label_attribute: Attribut
260 label_attribute_plural: Attribut
262 label_attribute_plural: Attribut
261 label_download: %d Nerladdning
263 label_download: %d Nerladdning
262 label_download_plural: %d Nerladdningar
264 label_download_plural: %d Nerladdningar
263 label_no_data: Ingen data att visa
265 label_no_data: Ingen data att visa
264 label_change_status: Ändra status
266 label_change_status: Ändra status
265 label_history: Historia
267 label_history: Historia
266 label_attachment: Fil
268 label_attachment: Fil
267 label_attachment_new: Ny fil
269 label_attachment_new: Ny fil
268 label_attachment_delete: Ta bort fil
270 label_attachment_delete: Ta bort fil
269 label_attachment_plural: Filer
271 label_attachment_plural: Filer
270 label_report: Rapport
272 label_report: Rapport
271 label_report_plural: Rapporter
273 label_report_plural: Rapporter
272 label_news: Nyhet
274 label_news: Nyhet
273 label_news_new: Lägg till nyhet
275 label_news_new: Lägg till nyhet
274 label_news_plural: Nyheter
276 label_news_plural: Nyheter
275 label_news_latest: Senaste neheten
277 label_news_latest: Senaste neheten
276 label_news_view_all: Visa alla nyheter
278 label_news_view_all: Visa alla nyheter
277 label_change_log: Ändringslogg
279 label_change_log: Ändringslogg
278 label_settings: Inställningar
280 label_settings: Inställningar
279 label_overview: Överblick
281 label_overview: Överblick
280 label_version: Version
282 label_version: Version
281 label_version_new: Ny version
283 label_version_new: Ny version
282 label_version_plural: Versioner
284 label_version_plural: Versioner
283 label_confirmation: Bekräftelse
285 label_confirmation: Bekräftelse
284 label_export_to: Exportera till
286 label_export_to: Exportera till
285 label_read: Läs...
287 label_read: Läs...
286 label_public_projects: Offentligt projekt
288 label_public_projects: Offentligt projekt
287 label_open_issues: öppen
289 label_open_issues: öppen
288 label_open_issues_plural: öppna
290 label_open_issues_plural: öppna
289 label_closed_issues: stängd
291 label_closed_issues: stängd
290 label_closed_issues_plural: stängda
292 label_closed_issues_plural: stängda
291 label_total: Total
293 label_total: Total
292 label_permissions: Rättigheter
294 label_permissions: Rättigheter
293 label_current_status: Nuvarande status
295 label_current_status: Nuvarande status
294 label_new_statuses_allowed: Nya statusar tillåtna
296 label_new_statuses_allowed: Nya statusar tillåtna
295 label_all: alla
297 label_all: alla
296 label_none: inga
298 label_none: inga
297 label_next: Nästa
299 label_next: Nästa
298 label_previous: Föregående
300 label_previous: Föregående
299 label_used_by: Använd av
301 label_used_by: Använd av
300 label_details: Detaljer
302 label_details: Detaljer
301 label_add_note: Lägg till anteckning
303 label_add_note: Lägg till anteckning
302 label_per_page: Per sida
304 label_per_page: Per sida
303 label_calendar: Kalender
305 label_calendar: Kalender
304 label_months_from: månader från
306 label_months_from: månader från
305 label_gantt: Gantt
307 label_gantt: Gantt
306 label_internal: Intern
308 label_internal: Intern
307 label_last_changes: senaste %d ändringar
309 label_last_changes: senaste %d ändringar
308 label_change_view_all: Visa alla ändringar
310 label_change_view_all: Visa alla ändringar
309 label_personalize_page: Anpassa denna sida
311 label_personalize_page: Anpassa denna sida
310 label_comment: Kommentar
312 label_comment: Kommentar
311 label_comment_plural: Kommentarer
313 label_comment_plural: Kommentarer
312 label_comment_add: Lägg till kommentar
314 label_comment_add: Lägg till kommentar
313 label_comment_added: Kommentar tillagd
315 label_comment_added: Kommentar tillagd
314 label_comment_delete: Ta bort kommentar
316 label_comment_delete: Ta bort kommentar
315 label_query: Användardefinerad fråga
317 label_query: Användardefinerad fråga
316 label_query_plural: Användardefinerade frågor
318 label_query_plural: Användardefinerade frågor
317 label_query_new: Ny fråga
319 label_query_new: Ny fråga
318 label_filter_add: Lägg till filter
320 label_filter_add: Lägg till filter
319 label_filter_plural: Filter
321 label_filter_plural: Filter
320 label_equals: är
322 label_equals: är
321 label_not_equals: är inte
323 label_not_equals: är inte
322 label_in_less_than: i mindre än
324 label_in_less_than: i mindre än
323 label_in_more_than: i mer än
325 label_in_more_than: i mer än
324 label_in: i
326 label_in: i
325 label_today: idag
327 label_today: idag
326 label_this_week: this week
328 label_this_week: this week
327 label_less_than_ago: mindre än dagar sedan
329 label_less_than_ago: mindre än dagar sedan
328 label_more_than_ago: mer än dagar sedan
330 label_more_than_ago: mer än dagar sedan
329 label_ago: dagar sedan
331 label_ago: dagar sedan
330 label_contains: innehåller
332 label_contains: innehåller
331 label_not_contains: innehåller inte
333 label_not_contains: innehåller inte
332 label_day_plural: dagar
334 label_day_plural: dagar
333 label_repository: Repositorie
335 label_repository: Repositorie
334 label_browse: Bläddra
336 label_browse: Bläddra
335 label_modification: %d ändring
337 label_modification: %d ändring
336 label_modification_plural: %d ändringar
338 label_modification_plural: %d ändringar
337 label_revision: Revision
339 label_revision: Revision
338 label_revision_plural: Revisioner
340 label_revision_plural: Revisioner
339 label_added: tillagd
341 label_added: tillagd
340 label_modified: modifierad
342 label_modified: modifierad
341 label_deleted: borttagen
343 label_deleted: borttagen
342 label_latest_revision: Senaste revisionen
344 label_latest_revision: Senaste revisionen
343 label_latest_revision_plural: Senaste revisionerna
345 label_latest_revision_plural: Senaste revisionerna
344 label_view_revisions: Visa revisioner
346 label_view_revisions: Visa revisioner
345 label_max_size: Maximumstorlek
347 label_max_size: Maximumstorlek
346 label_on: 'på'
348 label_on: 'på'
347 label_sort_highest: Flytta till top
349 label_sort_highest: Flytta till top
348 label_sort_higher: Flytta up
350 label_sort_higher: Flytta up
349 label_sort_lower: Flytta ner
351 label_sort_lower: Flytta ner
350 label_sort_lowest: Flytta till botten
352 label_sort_lowest: Flytta till botten
351 label_roadmap: Roadmap
353 label_roadmap: Roadmap
352 label_roadmap_due_in: Färdig om
354 label_roadmap_due_in: Färdig om
353 label_roadmap_overdue: %s late
355 label_roadmap_overdue: %s late
354 label_roadmap_no_issues: Inga brister för denna version
356 label_roadmap_no_issues: Inga brister för denna version
355 label_search: Sök
357 label_search: Sök
356 label_result_plural: Resultat
358 label_result_plural: Resultat
357 label_all_words: Alla ord
359 label_all_words: Alla ord
358 label_wiki: Wiki
360 label_wiki: Wiki
359 label_wiki_edit: Wiki editera
361 label_wiki_edit: Wiki editera
360 label_wiki_edit_plural: Wiki editeringar
362 label_wiki_edit_plural: Wiki editeringar
361 label_wiki_page: Wiki page
363 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
364 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Index by title
365 label_index_by_title: Index by title
364 label_index_by_date: Index by date
366 label_index_by_date: Index by date
365 label_current_version: Nuvarande version
367 label_current_version: Nuvarande version
366 label_preview: Preview
368 label_preview: Preview
367 label_feed_plural: Feeder
369 label_feed_plural: Feeder
368 label_changes_details: Detaljer om alla ändringar
370 label_changes_details: Detaljer om alla ändringar
369 label_issue_tracking: Bristspårning
371 label_issue_tracking: Bristspårning
370 label_spent_time: Spenderad tid
372 label_spent_time: Spenderad tid
371 label_f_hour: %.2f timmar
373 label_f_hour: %.2f timmar
372 label_f_hour_plural: %.2f timmar
374 label_f_hour_plural: %.2f timmar
373 label_time_tracking: Tidsspårning
375 label_time_tracking: Tidsspårning
374 label_change_plural: Ändringar
376 label_change_plural: Ändringar
375 label_statistics: Statistik
377 label_statistics: Statistik
376 label_commits_per_month: Commit per månad
378 label_commits_per_month: Commit per månad
377 label_commits_per_author: Commit per författare
379 label_commits_per_author: Commit per författare
378 label_view_diff: Visa skillnader
380 label_view_diff: Visa skillnader
379 label_diff_inline: inline
381 label_diff_inline: inline
380 label_diff_side_by_side: sida vid sida
382 label_diff_side_by_side: sida vid sida
381 label_options: Inställningar
383 label_options: Inställningar
382 label_copy_workflow_from: Kopiera workflow från
384 label_copy_workflow_from: Kopiera workflow från
383 label_permissions_report: Rättighetsrapport
385 label_permissions_report: Rättighetsrapport
384 label_watched_issues: Watched issues
386 label_watched_issues: Watched issues
385 label_related_issues: Related issues
387 label_related_issues: Related issues
386 label_applied_status: Applied status
388 label_applied_status: Applied status
387 label_loading: Loading...
389 label_loading: Loading...
388 label_relation_new: New relation
390 label_relation_new: New relation
389 label_relation_delete: Delete relation
391 label_relation_delete: Delete relation
390 label_relates_to: related to
392 label_relates_to: related to
391 label_duplicates: duplicates
393 label_duplicates: duplicates
392 label_blocks: blocks
394 label_blocks: blocks
393 label_blocked_by: blocked by
395 label_blocked_by: blocked by
394 label_precedes: precedes
396 label_precedes: precedes
395 label_follows: follows
397 label_follows: follows
396 label_end_to_start: end to start
398 label_end_to_start: end to start
397 label_end_to_end: end to end
399 label_end_to_end: end to end
398 label_start_to_start: start to start
400 label_start_to_start: start to start
399 label_start_to_end: start to end
401 label_start_to_end: start to end
400 label_stay_logged_in: Stay logged in
402 label_stay_logged_in: Stay logged in
401 label_disabled: disabled
403 label_disabled: disabled
402 label_show_completed_versions: Show completed versions
404 label_show_completed_versions: Show completed versions
403 label_me: me
405 label_me: me
404 label_board: Forum
406 label_board: Forum
405 label_board_new: New forum
407 label_board_new: New forum
406 label_board_plural: Forums
408 label_board_plural: Forums
407 label_topic_plural: Topics
409 label_topic_plural: Topics
408 label_message_plural: Messages
410 label_message_plural: Messages
409 label_message_last: Last message
411 label_message_last: Last message
410 label_message_new: New message
412 label_message_new: New message
411 label_reply_plural: Replies
413 label_reply_plural: Replies
412 label_send_information: Send account information to the user
414 label_send_information: Send account information to the user
413 label_year: Year
415 label_year: Year
414 label_month: Month
416 label_month: Month
415 label_week: Week
417 label_week: Week
416 label_date_from: From
418 label_date_from: From
417 label_date_to: To
419 label_date_to: To
418 label_language_based: Language based
420 label_language_based: Language based
419 label_sort_by: Sort by %s
421 label_sort_by: Sort by %s
420 label_send_test_email: Send a test email
422 label_send_test_email: Send a test email
421 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
422 label_module_plural: Modules
424 label_module_plural: Modules
423 label_added_time_by: Added by %s %s ago
425 label_added_time_by: Added by %s %s ago
424 label_updated_time: Updated %s ago
426 label_updated_time: Updated %s ago
425 label_jump_to_a_project: Jump to a project...
427 label_jump_to_a_project: Jump to a project...
426
428
427 button_login: Logga in
429 button_login: Logga in
428 button_submit: Skicka
430 button_submit: Skicka
429 button_save: Spara
431 button_save: Spara
430 button_check_all: Markera alla
432 button_check_all: Markera alla
431 button_uncheck_all: Avmarkera alla
433 button_uncheck_all: Avmarkera alla
432 button_delete: Ta bort
434 button_delete: Ta bort
433 button_create: Skapa
435 button_create: Skapa
434 button_test: Testa
436 button_test: Testa
435 button_edit: Editera
437 button_edit: Editera
436 button_add: Lägg till
438 button_add: Lägg till
437 button_change: Ändra
439 button_change: Ändra
438 button_apply: Värkställ
440 button_apply: Värkställ
439 button_clear: Rensa
441 button_clear: Rensa
440 button_lock: Lås
442 button_lock: Lås
441 button_unlock: Lås upp
443 button_unlock: Lås upp
442 button_download: Ladda ner
444 button_download: Ladda ner
443 button_list: Lista
445 button_list: Lista
444 button_view: Visa
446 button_view: Visa
445 button_move: Flytta
447 button_move: Flytta
446 button_back: Tillbaka
448 button_back: Tillbaka
447 button_cancel: Avbryt
449 button_cancel: Avbryt
448 button_activate: Aktivera
450 button_activate: Aktivera
449 button_sort: Sortera
451 button_sort: Sortera
450 button_log_time: Logga tid
452 button_log_time: Logga tid
451 button_rollback: Rulla tillbaka till denna version
453 button_rollback: Rulla tillbaka till denna version
452 button_watch: Watch
454 button_watch: Watch
453 button_unwatch: Unwatch
455 button_unwatch: Unwatch
454 button_reply: Reply
456 button_reply: Reply
455 button_archive: Archive
457 button_archive: Archive
456 button_unarchive: Unarchive
458 button_unarchive: Unarchive
457 button_reset: Reset
459 button_reset: Reset
458 button_rename: Rename
460 button_rename: Rename
459
461
460 status_active: activ
462 status_active: activ
461 status_registered: registrerad
463 status_registered: registrerad
462 status_locked: låst
464 status_locked: låst
463
465
464 text_select_mail_notifications: Väl action för vilka email ska skickas.
466 text_select_mail_notifications: Väl action för vilka email ska skickas.
465 text_regexp_info: eg. ^[A-Z0-9]+$
467 text_regexp_info: eg. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 betyder ingen gräns
468 text_min_max_length_info: 0 betyder ingen gräns
467 text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data?
469 text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data?
468 text_workflow_edit: Väl en roll och en tracker för att editera workflow.
470 text_workflow_edit: Väl en roll och en tracker för att editera workflow.
469 text_are_you_sure: Är du säker?
471 text_are_you_sure: Är du säker?
470 text_journal_changed: ändrad från %s till %s
472 text_journal_changed: ändrad från %s till %s
471 text_journal_set_to: satt till %s
473 text_journal_set_to: satt till %s
472 text_journal_deleted: borttagen
474 text_journal_deleted: borttagen
473 text_tip_task_begin_day: arbetsuppgift börjar denna dag
475 text_tip_task_begin_day: arbetsuppgift börjar denna dag
474 text_tip_task_end_day: arbetsuppgift slutar denna dag
476 text_tip_task_end_day: arbetsuppgift slutar denna dag
475 text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag
477 text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag
476 text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.'
478 text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.'
477 text_caracters_maximum: %d tecken maximum.
479 text_caracters_maximum: %d tecken maximum.
478 text_length_between: Längd mellan %d och %d tecken.
480 text_length_between: Längd mellan %d och %d tecken.
479 text_tracker_no_workflow: Inget workflow definerat för denna tracker
481 text_tracker_no_workflow: Inget workflow definerat för denna tracker
480 text_unallowed_characters: Unallowed characters
482 text_unallowed_characters: Unallowed characters
481 text_comma_separated: Multiple values allowed (comma separated).
483 text_comma_separated: Multiple values allowed (comma separated).
482 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
483 text_issue_added: Brist %s har rapporterats.
485 text_issue_added: Brist %s har rapporterats.
484 text_issue_updated: Brist %s har uppdaterats.
486 text_issue_updated: Brist %s har uppdaterats.
485 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 ?
486 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 ?
487 text_issue_category_destroy_assignments: Remove category assignments
489 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_reassign_to: Reassing issues to this category
490 text_issue_category_reassign_to: Reassing issues to this category
489
491
490 default_role_manager: Förvaltare
492 default_role_manager: Förvaltare
491 default_role_developper: Utvecklare
493 default_role_developper: Utvecklare
492 default_role_reporter: Rapporterare
494 default_role_reporter: Rapporterare
493 default_tracker_bug: Bugg
495 default_tracker_bug: Bugg
494 default_tracker_feature: Finess
496 default_tracker_feature: Finess
495 default_tracker_support: Support
497 default_tracker_support: Support
496 default_issue_status_new: Ny
498 default_issue_status_new: Ny
497 default_issue_status_assigned: Tilldelad
499 default_issue_status_assigned: Tilldelad
498 default_issue_status_resolved: Löst
500 default_issue_status_resolved: Löst
499 default_issue_status_feedback: Feedback
501 default_issue_status_feedback: Feedback
500 default_issue_status_closed: Stängd
502 default_issue_status_closed: Stängd
501 default_issue_status_rejected: Avslagen
503 default_issue_status_rejected: Avslagen
502 default_doc_category_user: Användardokumentation
504 default_doc_category_user: Användardokumentation
503 default_doc_category_tech: Teknisk dokumentation
505 default_doc_category_tech: Teknisk dokumentation
504 default_priority_low: Låg
506 default_priority_low: Låg
505 default_priority_normal: Normal
507 default_priority_normal: Normal
506 default_priority_high: Hög
508 default_priority_high: Hög
507 default_priority_urgent: Bråttom
509 default_priority_urgent: Bråttom
508 default_priority_immediate: Omedelbar
510 default_priority_immediate: Omedelbar
509 default_activity_design: Design
511 default_activity_design: Design
510 default_activity_development: Utveckling
512 default_activity_development: Utveckling
511
513
512 enumeration_issue_priorities: Bristprioriteringar
514 enumeration_issue_priorities: Bristprioriteringar
513 enumeration_doc_categories: Dokumentkategorier
515 enumeration_doc_categories: Dokumentkategorier
514 enumeration_activities: Aktiviteter (tidsspårning)
516 enumeration_activities: Aktiviteter (tidsspårning)
515 field_comments: Comment
517 field_comments: Comment
516 label_file_plural: Files
518 label_file_plural: Files
517 label_changeset_plural: Changesets
519 label_changeset_plural: Changesets
518 field_column_names: Columns
520 field_column_names: Columns
519 label_default_columns: Default columns
521 label_default_columns: Default columns
520 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
521 setting_repositories_encodings: Repositories encodings
523 setting_repositories_encodings: Repositories encodings
522 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."
523 label_bulk_edit_selected_issues: Bulk edit selected issues
525 label_bulk_edit_selected_issues: Bulk edit selected issues
524 label_no_change_option: (No change)
526 label_no_change_option: (No change)
525 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."
526 label_theme: Theme
528 label_theme: Theme
527 label_default: Default
529 label_default: Default
528 label_search_titles_only: Search titles only
530 label_search_titles_only: Search titles only
529 label_nobody: nobody
531 label_nobody: nobody
530 button_change_password: Change password
532 button_change_password: Change password
531 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)."
532 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..."
533 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"
534 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"
535 setting_emails_footer: Emails footer
537 setting_emails_footer: Emails footer
536 label_float: Float
538 label_float: Float
537 button_copy: Copy
539 button_copy: Copy
538 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
540 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
539 mail_body_account_information: Your Redmine account information
541 mail_body_account_information: Your Redmine account information
540 setting_protocol: Protocol
542 setting_protocol: Protocol
541 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"
542 setting_time_format: Time format
544 setting_time_format: Time format
543 label_registration_activation_by_email: account activation by email
545 label_registration_activation_by_email: account activation by email
544 mail_subject_account_activation_request: Redmine account activation request
546 mail_subject_account_activation_request: Redmine account activation request
545 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:'
546 label_registration_automatic_activation: automatic account activation
548 label_registration_automatic_activation: automatic account activation
547 label_registration_manual_activation: manual account activation
549 label_registration_manual_activation: manual account activation
548 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."
549 field_time_zone: Time zone
551 field_time_zone: Time zone
550 text_caracters_minimum: Must be at least %d characters long.
552 text_caracters_minimum: Must be at least %d characters long.
551 setting_bcc_recipients: Blind carbon copy recipients (bcc)
553 setting_bcc_recipients: Blind carbon copy recipients (bcc)
552 button_annotate: Annotate
554 button_annotate: Annotate
553 label_issues_by: Issues by %s
555 label_issues_by: Issues by %s
554 field_searchable: Searchable
556 field_searchable: Searchable
555 label_display_per_page: 'Per page: %s'
557 label_display_per_page: 'Per page: %s'
556 setting_per_page_options: Objects per page options
558 setting_per_page_options: Objects per page options
557 label_age: Age
559 label_age: Age
558 notice_default_data_loaded: Default configuration successfully loaded.
560 notice_default_data_loaded: Default configuration successfully loaded.
559 text_load_default_configuration: Load the default configuration
561 text_load_default_configuration: Load the default configuration
560 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."
561 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"
562 button_update: Update
564 button_update: Update
563 label_change_properties: Change properties
565 label_change_properties: Change properties
564 label_general: General
566 label_general: General
565 label_repository_plural: Repositories
567 label_repository_plural: Repositories
566 label_associated_revisions: Associated revisions
568 label_associated_revisions: Associated revisions
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