@@ -1,631 +1,633 | |||||
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 'csv' |
|
18 | require 'csv' | |
19 |
|
19 | |||
20 | class ProjectsController < ApplicationController |
|
20 | class ProjectsController < ApplicationController | |
21 | layout 'base' |
|
21 | layout 'base' | |
22 | before_filter :find_project, :except => [ :index, :list, :add ] |
|
22 | before_filter :find_project, :except => [ :index, :list, :add ] | |
23 | before_filter :authorize, :except => [ :index, :list, :add, :archive, :unarchive, :destroy ] |
|
23 | before_filter :authorize, :except => [ :index, :list, :add, :archive, :unarchive, :destroy ] | |
24 | before_filter :require_admin, :only => [ :add, :archive, :unarchive, :destroy ] |
|
24 | before_filter :require_admin, :only => [ :add, :archive, :unarchive, :destroy ] | |
25 | accept_key_auth :activity, :calendar |
|
25 | accept_key_auth :activity, :calendar | |
26 |
|
26 | |||
27 | cache_sweeper :project_sweeper, :only => [ :add, :edit, :archive, :unarchive, :destroy ] |
|
27 | cache_sweeper :project_sweeper, :only => [ :add, :edit, :archive, :unarchive, :destroy ] | |
28 | cache_sweeper :issue_sweeper, :only => [ :add_issue ] |
|
28 | cache_sweeper :issue_sweeper, :only => [ :add_issue ] | |
29 | cache_sweeper :version_sweeper, :only => [ :add_version ] |
|
29 | cache_sweeper :version_sweeper, :only => [ :add_version ] | |
30 |
|
30 | |||
31 | helper :sort |
|
31 | helper :sort | |
32 | include SortHelper |
|
32 | include SortHelper | |
33 | helper :custom_fields |
|
33 | helper :custom_fields | |
34 | include CustomFieldsHelper |
|
34 | include CustomFieldsHelper | |
35 | helper :ifpdf |
|
35 | helper :ifpdf | |
36 | include IfpdfHelper |
|
36 | include IfpdfHelper | |
37 | helper IssuesHelper |
|
37 | helper IssuesHelper | |
38 | helper :queries |
|
38 | helper :queries | |
39 | include QueriesHelper |
|
39 | include QueriesHelper | |
40 | helper :repositories |
|
40 | helper :repositories | |
41 | include RepositoriesHelper |
|
41 | include RepositoriesHelper | |
42 | include ProjectsHelper |
|
42 | include ProjectsHelper | |
43 |
|
43 | |||
44 | def index |
|
44 | def index | |
45 | list |
|
45 | list | |
46 | render :action => 'list' unless request.xhr? |
|
46 | render :action => 'list' unless request.xhr? | |
47 | end |
|
47 | end | |
48 |
|
48 | |||
49 | # Lists visible projects |
|
49 | # Lists visible projects | |
50 | def list |
|
50 | def list | |
51 | projects = Project.find :all, |
|
51 | projects = Project.find :all, | |
52 | :conditions => Project.visible_by(logged_in_user), |
|
52 | :conditions => Project.visible_by(logged_in_user), | |
53 | :include => :parent |
|
53 | :include => :parent | |
54 | @project_tree = projects.group_by {|p| p.parent || p} |
|
54 | @project_tree = projects.group_by {|p| p.parent || p} | |
55 | @project_tree.each_key {|p| @project_tree[p] -= [p]} |
|
55 | @project_tree.each_key {|p| @project_tree[p] -= [p]} | |
56 | end |
|
56 | end | |
57 |
|
57 | |||
58 | # Add a new project |
|
58 | # Add a new project | |
59 | def add |
|
59 | def add | |
60 | @custom_fields = IssueCustomField.find(:all) |
|
60 | @custom_fields = IssueCustomField.find(:all) | |
61 | @root_projects = Project.find(:all, :conditions => "parent_id IS NULL AND status = #{Project::STATUS_ACTIVE}") |
|
61 | @root_projects = Project.find(:all, :conditions => "parent_id IS NULL AND status = #{Project::STATUS_ACTIVE}") | |
62 | @project = Project.new(params[:project]) |
|
62 | @project = Project.new(params[:project]) | |
63 | @project.enabled_module_names = Redmine::AccessControl.available_project_modules |
|
63 | @project.enabled_module_names = Redmine::AccessControl.available_project_modules | |
64 | if request.get? |
|
64 | if request.get? | |
65 | @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project) } |
|
65 | @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project) } | |
66 | else |
|
66 | else | |
67 | @project.custom_fields = CustomField.find(params[:custom_field_ids]) if params[:custom_field_ids] |
|
67 | @project.custom_fields = CustomField.find(params[:custom_field_ids]) if params[:custom_field_ids] | |
68 | @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => (params[:custom_fields] ? params["custom_fields"][x.id.to_s] : nil)) } |
|
68 | @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => (params[:custom_fields] ? params["custom_fields"][x.id.to_s] : nil)) } | |
69 | @project.custom_values = @custom_values |
|
69 | @project.custom_values = @custom_values | |
70 | if @project.save |
|
70 | if @project.save | |
71 | @project.enabled_module_names = params[:enabled_modules] |
|
71 | @project.enabled_module_names = params[:enabled_modules] | |
72 | flash[:notice] = l(:notice_successful_create) |
|
72 | flash[:notice] = l(:notice_successful_create) | |
73 | redirect_to :controller => 'admin', :action => 'projects' |
|
73 | redirect_to :controller => 'admin', :action => 'projects' | |
74 | end |
|
74 | end | |
75 | end |
|
75 | end | |
76 | end |
|
76 | end | |
77 |
|
77 | |||
78 | # Show @project |
|
78 | # Show @project | |
79 | def show |
|
79 | def show | |
80 | @custom_values = @project.custom_values.find(:all, :include => :custom_field) |
|
80 | @custom_values = @project.custom_values.find(:all, :include => :custom_field) | |
81 | @members_by_role = @project.members.find(:all, :include => [:user, :role], :order => 'position').group_by {|m| m.role} |
|
81 | @members_by_role = @project.members.find(:all, :include => [:user, :role], :order => 'position').group_by {|m| m.role} | |
82 | @subprojects = @project.active_children |
|
82 | @subprojects = @project.active_children | |
83 | @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC") |
|
83 | @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC") | |
84 | @trackers = Tracker.find(:all, :order => 'position') |
|
84 | @trackers = Tracker.find(:all, :order => 'position') | |
85 | @open_issues_by_tracker = Issue.count(:group => :tracker, :joins => "INNER JOIN #{IssueStatus.table_name} ON #{IssueStatus.table_name}.id = #{Issue.table_name}.status_id", :conditions => ["project_id=? and #{IssueStatus.table_name}.is_closed=?", @project.id, false]) |
|
85 | @open_issues_by_tracker = Issue.count(:group => :tracker, :joins => "INNER JOIN #{IssueStatus.table_name} ON #{IssueStatus.table_name}.id = #{Issue.table_name}.status_id", :conditions => ["project_id=? and #{IssueStatus.table_name}.is_closed=?", @project.id, false]) | |
86 | @total_issues_by_tracker = Issue.count(:group => :tracker, :conditions => ["project_id=?", @project.id]) |
|
86 | @total_issues_by_tracker = Issue.count(:group => :tracker, :conditions => ["project_id=?", @project.id]) | |
87 | @total_hours = @project.time_entries.sum(:hours) |
|
87 | @total_hours = @project.time_entries.sum(:hours) | |
88 | @key = User.current.rss_key |
|
88 | @key = User.current.rss_key | |
89 | end |
|
89 | end | |
90 |
|
90 | |||
91 | def settings |
|
91 | def settings | |
92 | @root_projects = Project::find(:all, :conditions => ["parent_id IS NULL AND status = #{Project::STATUS_ACTIVE} AND id <> ?", @project.id]) |
|
92 | @root_projects = Project::find(:all, :conditions => ["parent_id IS NULL AND status = #{Project::STATUS_ACTIVE} AND id <> ?", @project.id]) | |
93 | @custom_fields = IssueCustomField.find(:all) |
|
93 | @custom_fields = IssueCustomField.find(:all) | |
94 | @issue_category ||= IssueCategory.new |
|
94 | @issue_category ||= IssueCategory.new | |
95 | @member ||= @project.members.new |
|
95 | @member ||= @project.members.new | |
96 | @custom_values ||= ProjectCustomField.find(:all).collect { |x| @project.custom_values.find_by_custom_field_id(x.id) || CustomValue.new(:custom_field => x) } |
|
96 | @custom_values ||= ProjectCustomField.find(:all).collect { |x| @project.custom_values.find_by_custom_field_id(x.id) || CustomValue.new(:custom_field => x) } | |
97 | @repository ||= @project.repository |
|
97 | @repository ||= @project.repository | |
98 | @wiki ||= @project.wiki |
|
98 | @wiki ||= @project.wiki | |
99 | end |
|
99 | end | |
100 |
|
100 | |||
101 | # Edit @project |
|
101 | # Edit @project | |
102 | def edit |
|
102 | def edit | |
103 | if request.post? |
|
103 | if request.post? | |
104 | @project.custom_fields = IssueCustomField.find(params[:custom_field_ids]) if params[:custom_field_ids] |
|
104 | @project.custom_fields = IssueCustomField.find(params[:custom_field_ids]) if params[:custom_field_ids] | |
105 | if params[:custom_fields] |
|
105 | if params[:custom_fields] | |
106 | @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) } |
|
106 | @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) } | |
107 | @project.custom_values = @custom_values |
|
107 | @project.custom_values = @custom_values | |
108 | end |
|
108 | end | |
109 | @project.attributes = params[:project] |
|
109 | @project.attributes = params[:project] | |
110 | if @project.save |
|
110 | if @project.save | |
111 | flash[:notice] = l(:notice_successful_update) |
|
111 | flash[:notice] = l(:notice_successful_update) | |
112 | redirect_to :action => 'settings', :id => @project |
|
112 | redirect_to :action => 'settings', :id => @project | |
113 | else |
|
113 | else | |
114 | settings |
|
114 | settings | |
115 | render :action => 'settings' |
|
115 | render :action => 'settings' | |
116 | end |
|
116 | end | |
117 | end |
|
117 | end | |
118 | end |
|
118 | end | |
119 |
|
119 | |||
120 | def modules |
|
120 | def modules | |
121 | @project.enabled_module_names = params[:enabled_modules] |
|
121 | @project.enabled_module_names = params[:enabled_modules] | |
122 | redirect_to :action => 'settings', :id => @project, :tab => 'modules' |
|
122 | redirect_to :action => 'settings', :id => @project, :tab => 'modules' | |
123 | end |
|
123 | end | |
124 |
|
124 | |||
125 | def archive |
|
125 | def archive | |
126 | @project.archive if request.post? && @project.active? |
|
126 | @project.archive if request.post? && @project.active? | |
127 | redirect_to :controller => 'admin', :action => 'projects' |
|
127 | redirect_to :controller => 'admin', :action => 'projects' | |
128 | end |
|
128 | end | |
129 |
|
129 | |||
130 | def unarchive |
|
130 | def unarchive | |
131 | @project.unarchive if request.post? && !@project.active? |
|
131 | @project.unarchive if request.post? && !@project.active? | |
132 | redirect_to :controller => 'admin', :action => 'projects' |
|
132 | redirect_to :controller => 'admin', :action => 'projects' | |
133 | end |
|
133 | end | |
134 |
|
134 | |||
135 | # Delete @project |
|
135 | # Delete @project | |
136 | def destroy |
|
136 | def destroy | |
137 | @project_to_destroy = @project |
|
137 | @project_to_destroy = @project | |
138 | if request.post? and params[:confirm] |
|
138 | if request.post? and params[:confirm] | |
139 | @project_to_destroy.destroy |
|
139 | @project_to_destroy.destroy | |
140 | redirect_to :controller => 'admin', :action => 'projects' |
|
140 | redirect_to :controller => 'admin', :action => 'projects' | |
141 | end |
|
141 | end | |
142 | # hide project in layout |
|
142 | # hide project in layout | |
143 | @project = nil |
|
143 | @project = nil | |
144 | end |
|
144 | end | |
145 |
|
145 | |||
146 | # Add a new issue category to @project |
|
146 | # Add a new issue category to @project | |
147 | def add_issue_category |
|
147 | def add_issue_category | |
148 | @category = @project.issue_categories.build(params[:category]) |
|
148 | @category = @project.issue_categories.build(params[:category]) | |
149 | if request.post? and @category.save |
|
149 | if request.post? and @category.save | |
150 | respond_to do |format| |
|
150 | respond_to do |format| | |
151 | format.html do |
|
151 | format.html do | |
152 | flash[:notice] = l(:notice_successful_create) |
|
152 | flash[:notice] = l(:notice_successful_create) | |
153 | redirect_to :action => 'settings', :tab => 'categories', :id => @project |
|
153 | redirect_to :action => 'settings', :tab => 'categories', :id => @project | |
154 | end |
|
154 | end | |
155 | format.js do |
|
155 | format.js do | |
156 | # IE doesn't support the replace_html rjs method for select box options |
|
156 | # IE doesn't support the replace_html rjs method for select box options | |
157 | render(:update) {|page| page.replace "issue_category_id", |
|
157 | render(:update) {|page| page.replace "issue_category_id", | |
158 | content_tag('select', '<option></option>' + options_from_collection_for_select(@project.issue_categories, 'id', 'name', @category.id), :id => 'issue_category_id', :name => 'issue[category_id]') |
|
158 | content_tag('select', '<option></option>' + options_from_collection_for_select(@project.issue_categories, 'id', 'name', @category.id), :id => 'issue_category_id', :name => 'issue[category_id]') | |
159 | } |
|
159 | } | |
160 | end |
|
160 | end | |
161 | end |
|
161 | end | |
162 | end |
|
162 | end | |
163 | end |
|
163 | end | |
164 |
|
164 | |||
165 | # Add a new version to @project |
|
165 | # Add a new version to @project | |
166 | def add_version |
|
166 | def add_version | |
167 | @version = @project.versions.build(params[:version]) |
|
167 | @version = @project.versions.build(params[:version]) | |
168 | if request.post? and @version.save |
|
168 | if request.post? and @version.save | |
169 | flash[:notice] = l(:notice_successful_create) |
|
169 | flash[:notice] = l(:notice_successful_create) | |
170 | redirect_to :action => 'settings', :tab => 'versions', :id => @project |
|
170 | redirect_to :action => 'settings', :tab => 'versions', :id => @project | |
171 | end |
|
171 | end | |
172 | end |
|
172 | end | |
173 |
|
173 | |||
174 | # Add a new document to @project |
|
174 | # Add a new document to @project | |
175 | def add_document |
|
175 | def add_document | |
176 | @categories = Enumeration::get_values('DCAT') |
|
176 | @categories = Enumeration::get_values('DCAT') | |
177 | @document = @project.documents.build(params[:document]) |
|
177 | @document = @project.documents.build(params[:document]) | |
178 | if request.post? and @document.save |
|
178 | if request.post? and @document.save | |
179 | # Save the attachments |
|
179 | # Save the attachments | |
180 | params[:attachments].each { |a| |
|
180 | params[:attachments].each { |a| | |
181 | Attachment.create(:container => @document, :file => a, :author => logged_in_user) unless a.size == 0 |
|
181 | Attachment.create(:container => @document, :file => a, :author => logged_in_user) unless a.size == 0 | |
182 | } if params[:attachments] and params[:attachments].is_a? Array |
|
182 | } if params[:attachments] and params[:attachments].is_a? Array | |
183 | flash[:notice] = l(:notice_successful_create) |
|
183 | flash[:notice] = l(:notice_successful_create) | |
184 | Mailer.deliver_document_add(@document) if Setting.notified_events.include?('document_added') |
|
184 | Mailer.deliver_document_add(@document) if Setting.notified_events.include?('document_added') | |
185 | redirect_to :action => 'list_documents', :id => @project |
|
185 | redirect_to :action => 'list_documents', :id => @project | |
186 | end |
|
186 | end | |
187 | end |
|
187 | end | |
188 |
|
188 | |||
189 | # Show documents list of @project |
|
189 | # Show documents list of @project | |
190 | def list_documents |
|
190 | def list_documents | |
191 | @documents = @project.documents.find :all, :include => :category |
|
191 | @documents = @project.documents.find :all, :include => :category | |
192 | end |
|
192 | end | |
193 |
|
193 | |||
194 | # Add a new issue to @project |
|
194 | # Add a new issue to @project | |
195 | def add_issue |
|
195 | def add_issue | |
196 | @tracker = Tracker.find(params[:tracker_id]) |
|
196 | @tracker = Tracker.find(params[:tracker_id]) | |
197 | @priorities = Enumeration::get_values('IPRI') |
|
197 | @priorities = Enumeration::get_values('IPRI') | |
198 |
|
198 | |||
199 | default_status = IssueStatus.default |
|
199 | default_status = IssueStatus.default | |
200 | unless default_status |
|
200 | unless default_status | |
201 | flash.now[:error] = 'No default issue status defined. Please check your configuration.' |
|
201 | flash.now[:error] = 'No default issue status defined. Please check your configuration.' | |
202 | render :nothing => true, :layout => true |
|
202 | render :nothing => true, :layout => true | |
203 | return |
|
203 | return | |
204 | end |
|
204 | end | |
205 | @issue = Issue.new(:project => @project, :tracker => @tracker) |
|
205 | @issue = Issue.new(:project => @project, :tracker => @tracker) | |
206 | @issue.status = default_status |
|
206 | @issue.status = default_status | |
207 | @allowed_statuses = ([default_status] + default_status.find_new_statuses_allowed_to(logged_in_user.role_for_project(@project), @issue.tracker))if logged_in_user |
|
207 | @allowed_statuses = ([default_status] + default_status.find_new_statuses_allowed_to(logged_in_user.role_for_project(@project), @issue.tracker))if logged_in_user | |
208 | if request.get? |
|
208 | if request.get? | |
209 | @issue.start_date = Date.today |
|
209 | @issue.start_date = Date.today | |
210 | @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue) } |
|
210 | @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue) } | |
211 | else |
|
211 | else | |
212 | @issue.attributes = params[:issue] |
|
212 | @issue.attributes = params[:issue] | |
213 |
|
213 | |||
214 | requested_status = IssueStatus.find_by_id(params[:issue][:status_id]) |
|
214 | requested_status = IssueStatus.find_by_id(params[:issue][:status_id]) | |
215 | @issue.status = (@allowed_statuses.include? requested_status) ? requested_status : default_status |
|
215 | @issue.status = (@allowed_statuses.include? requested_status) ? requested_status : default_status | |
216 |
|
216 | |||
217 | @issue.author_id = self.logged_in_user.id if self.logged_in_user |
|
217 | @issue.author_id = self.logged_in_user.id if self.logged_in_user | |
218 | # Multiple file upload |
|
218 | # Multiple file upload | |
219 | @attachments = [] |
|
219 | @attachments = [] | |
220 | params[:attachments].each { |a| |
|
220 | params[:attachments].each { |a| | |
221 | @attachments << Attachment.new(:container => @issue, :file => a, :author => logged_in_user) unless a.size == 0 |
|
221 | @attachments << Attachment.new(:container => @issue, :file => a, :author => logged_in_user) unless a.size == 0 | |
222 | } if params[:attachments] and params[:attachments].is_a? Array |
|
222 | } if params[:attachments] and params[:attachments].is_a? Array | |
223 | @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue, :value => params["custom_fields"][x.id.to_s]) } |
|
223 | @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue, :value => params["custom_fields"][x.id.to_s]) } | |
224 | @issue.custom_values = @custom_values |
|
224 | @issue.custom_values = @custom_values | |
225 | if @issue.save |
|
225 | if @issue.save | |
226 | @attachments.each(&:save) |
|
226 | @attachments.each(&:save) | |
227 | flash[:notice] = l(:notice_successful_create) |
|
227 | flash[:notice] = l(:notice_successful_create) | |
228 | Mailer.deliver_issue_add(@issue) if Setting.notified_events.include?('issue_added') |
|
228 | Mailer.deliver_issue_add(@issue) if Setting.notified_events.include?('issue_added') | |
229 | redirect_to :action => 'list_issues', :id => @project |
|
229 | redirect_to :action => 'list_issues', :id => @project | |
230 | end |
|
230 | end | |
231 | end |
|
231 | end | |
232 | end |
|
232 | end | |
233 |
|
233 | |||
234 | # Show filtered/sorted issues list of @project |
|
234 | # Show filtered/sorted issues list of @project | |
235 | def list_issues |
|
235 | def list_issues | |
236 | sort_init "#{Issue.table_name}.id", "desc" |
|
236 | sort_init "#{Issue.table_name}.id", "desc" | |
237 | sort_update |
|
237 | sort_update | |
238 |
|
238 | |||
239 | retrieve_query |
|
239 | retrieve_query | |
240 |
|
240 | |||
241 | @results_per_page_options = [ 15, 25, 50, 100 ] |
|
241 | @results_per_page_options = [ 15, 25, 50, 100 ] | |
242 | if params[:per_page] and @results_per_page_options.include? params[:per_page].to_i |
|
242 | if params[:per_page] and @results_per_page_options.include? params[:per_page].to_i | |
243 | @results_per_page = params[:per_page].to_i |
|
243 | @results_per_page = params[:per_page].to_i | |
244 | session[:results_per_page] = @results_per_page |
|
244 | session[:results_per_page] = @results_per_page | |
245 | else |
|
245 | else | |
246 | @results_per_page = session[:results_per_page] || 25 |
|
246 | @results_per_page = session[:results_per_page] || 25 | |
247 | end |
|
247 | end | |
248 |
|
248 | |||
249 | if @query.valid? |
|
249 | if @query.valid? | |
250 | @issue_count = Issue.count(:include => [:status, :project], :conditions => @query.statement) |
|
250 | @issue_count = Issue.count(:include => [:status, :project], :conditions => @query.statement) | |
251 | @issue_pages = Paginator.new self, @issue_count, @results_per_page, params['page'] |
|
251 | @issue_pages = Paginator.new self, @issue_count, @results_per_page, params['page'] | |
252 | @issues = Issue.find :all, :order => sort_clause, |
|
252 | @issues = Issue.find :all, :order => sort_clause, | |
253 | :include => [ :assigned_to, :status, :tracker, :project, :priority ], |
|
253 | :include => [ :assigned_to, :status, :tracker, :project, :priority ], | |
254 | :conditions => @query.statement, |
|
254 | :conditions => @query.statement, | |
255 | :limit => @issue_pages.items_per_page, |
|
255 | :limit => @issue_pages.items_per_page, | |
256 | :offset => @issue_pages.current.offset |
|
256 | :offset => @issue_pages.current.offset | |
257 | end |
|
257 | end | |
258 |
|
258 | |||
259 | render :layout => false if request.xhr? |
|
259 | render :layout => false if request.xhr? | |
260 | end |
|
260 | end | |
261 |
|
261 | |||
262 | # Export filtered/sorted issues list to CSV |
|
262 | # Export filtered/sorted issues list to CSV | |
263 | def export_issues_csv |
|
263 | def export_issues_csv | |
264 | sort_init "#{Issue.table_name}.id", "desc" |
|
264 | sort_init "#{Issue.table_name}.id", "desc" | |
265 | sort_update |
|
265 | sort_update | |
266 |
|
266 | |||
267 | retrieve_query |
|
267 | retrieve_query | |
268 | render :action => 'list_issues' and return unless @query.valid? |
|
268 | render :action => 'list_issues' and return unless @query.valid? | |
269 |
|
269 | |||
270 | @issues = Issue.find :all, :order => sort_clause, |
|
270 | @issues = Issue.find :all, :order => sort_clause, | |
271 | :include => [ :assigned_to, :author, :status, :tracker, :priority, :project, {:custom_values => :custom_field} ], |
|
271 | :include => [ :assigned_to, :author, :status, :tracker, :priority, :project, {:custom_values => :custom_field} ], | |
272 | :conditions => @query.statement, |
|
272 | :conditions => @query.statement, | |
273 | :limit => Setting.issues_export_limit.to_i |
|
273 | :limit => Setting.issues_export_limit.to_i | |
274 |
|
274 | |||
275 | ic = Iconv.new(l(:general_csv_encoding), 'UTF-8') |
|
275 | ic = Iconv.new(l(:general_csv_encoding), 'UTF-8') | |
276 | export = StringIO.new |
|
276 | export = StringIO.new | |
277 | CSV::Writer.generate(export, l(:general_csv_separator)) do |csv| |
|
277 | CSV::Writer.generate(export, l(:general_csv_separator)) do |csv| | |
278 | # csv header fields |
|
278 | # csv header fields | |
279 | headers = [ "#", l(:field_status), |
|
279 | headers = [ "#", l(:field_status), | |
280 | l(:field_project), |
|
280 | l(:field_project), | |
281 | l(:field_tracker), |
|
281 | l(:field_tracker), | |
282 | l(:field_priority), |
|
282 | l(:field_priority), | |
283 | l(:field_subject), |
|
283 | l(:field_subject), | |
284 | l(:field_assigned_to), |
|
284 | l(:field_assigned_to), | |
285 | l(:field_author), |
|
285 | l(:field_author), | |
286 | l(:field_start_date), |
|
286 | l(:field_start_date), | |
287 | l(:field_due_date), |
|
287 | l(:field_due_date), | |
288 | l(:field_done_ratio), |
|
288 | l(:field_done_ratio), | |
289 | l(:field_created_on), |
|
289 | l(:field_created_on), | |
290 | l(:field_updated_on) |
|
290 | l(:field_updated_on) | |
291 | ] |
|
291 | ] | |
292 | for custom_field in @project.all_custom_fields |
|
292 | for custom_field in @project.all_custom_fields | |
293 | headers << custom_field.name |
|
293 | headers << custom_field.name | |
294 | end |
|
294 | end | |
295 | csv << headers.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end } |
|
295 | csv << headers.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end } | |
296 | # csv lines |
|
296 | # csv lines | |
297 | @issues.each do |issue| |
|
297 | @issues.each do |issue| | |
298 | fields = [issue.id, issue.status.name, |
|
298 | fields = [issue.id, issue.status.name, | |
299 | issue.project.name, |
|
299 | issue.project.name, | |
300 | issue.tracker.name, |
|
300 | issue.tracker.name, | |
301 | issue.priority.name, |
|
301 | issue.priority.name, | |
302 | issue.subject, |
|
302 | issue.subject, | |
303 | (issue.assigned_to ? issue.assigned_to.name : ""), |
|
303 | (issue.assigned_to ? issue.assigned_to.name : ""), | |
304 | issue.author.name, |
|
304 | issue.author.name, | |
305 | issue.start_date ? l_date(issue.start_date) : nil, |
|
305 | issue.start_date ? l_date(issue.start_date) : nil, | |
306 | issue.due_date ? l_date(issue.due_date) : nil, |
|
306 | issue.due_date ? l_date(issue.due_date) : nil, | |
307 | issue.done_ratio, |
|
307 | issue.done_ratio, | |
308 | l_datetime(issue.created_on), |
|
308 | l_datetime(issue.created_on), | |
309 | l_datetime(issue.updated_on) |
|
309 | l_datetime(issue.updated_on) | |
310 | ] |
|
310 | ] | |
311 | for custom_field in @project.all_custom_fields |
|
311 | for custom_field in @project.all_custom_fields | |
312 | fields << (show_value issue.custom_value_for(custom_field)) |
|
312 | fields << (show_value issue.custom_value_for(custom_field)) | |
313 | end |
|
313 | end | |
314 | csv << fields.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end } |
|
314 | csv << fields.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end } | |
315 | end |
|
315 | end | |
316 | end |
|
316 | end | |
317 | export.rewind |
|
317 | export.rewind | |
318 | send_data(export.read, :type => 'text/csv; header=present', :filename => 'export.csv') |
|
318 | send_data(export.read, :type => 'text/csv; header=present', :filename => 'export.csv') | |
319 | end |
|
319 | end | |
320 |
|
320 | |||
321 | # Export filtered/sorted issues to PDF |
|
321 | # Export filtered/sorted issues to PDF | |
322 | def export_issues_pdf |
|
322 | def export_issues_pdf | |
323 | sort_init "#{Issue.table_name}.id", "desc" |
|
323 | sort_init "#{Issue.table_name}.id", "desc" | |
324 | sort_update |
|
324 | sort_update | |
325 |
|
325 | |||
326 | retrieve_query |
|
326 | retrieve_query | |
327 | render :action => 'list_issues' and return unless @query.valid? |
|
327 | render :action => 'list_issues' and return unless @query.valid? | |
328 |
|
328 | |||
329 | @issues = Issue.find :all, :order => sort_clause, |
|
329 | @issues = Issue.find :all, :order => sort_clause, | |
330 | :include => [ :author, :status, :tracker, :priority, :project ], |
|
330 | :include => [ :author, :status, :tracker, :priority, :project ], | |
331 | :conditions => @query.statement, |
|
331 | :conditions => @query.statement, | |
332 | :limit => Setting.issues_export_limit.to_i |
|
332 | :limit => Setting.issues_export_limit.to_i | |
333 |
|
333 | |||
334 | @options_for_rfpdf ||= {} |
|
334 | @options_for_rfpdf ||= {} | |
335 | @options_for_rfpdf[:file_name] = "export.pdf" |
|
335 | @options_for_rfpdf[:file_name] = "export.pdf" | |
336 | render :layout => false |
|
336 | render :layout => false | |
337 | end |
|
337 | end | |
338 |
|
338 | |||
339 | def move_issues |
|
339 | def move_issues | |
340 | @issues = @project.issues.find(params[:issue_ids]) if params[:issue_ids] |
|
340 | @issues = @project.issues.find(params[:issue_ids]) if params[:issue_ids] | |
341 | redirect_to :action => 'list_issues', :id => @project and return unless @issues |
|
341 | redirect_to :action => 'list_issues', :id => @project and return unless @issues | |
342 | @projects = [] |
|
342 | @projects = [] | |
343 | # find projects to which the user is allowed to move the issue |
|
343 | # find projects to which the user is allowed to move the issue | |
344 | User.current.memberships.each {|m| @projects << m.project if m.role.allowed_to?(:controller => 'projects', :action => 'move_issues')} |
|
344 | User.current.memberships.each {|m| @projects << m.project if m.role.allowed_to?(:controller => 'projects', :action => 'move_issues')} | |
345 | # issue can be moved to any tracker |
|
345 | # issue can be moved to any tracker | |
346 | @trackers = Tracker.find(:all) |
|
346 | @trackers = Tracker.find(:all) | |
347 | if request.post? and params[:new_project_id] and params[:new_tracker_id] |
|
347 | if request.post? and params[:new_project_id] and params[:new_tracker_id] | |
348 | new_project = Project.find_by_id(params[:new_project_id]) |
|
348 | new_project = Project.find_by_id(params[:new_project_id]) | |
349 | new_tracker = Tracker.find_by_id(params[:new_tracker_id]) |
|
349 | new_tracker = Tracker.find_by_id(params[:new_tracker_id]) | |
350 | @issues.each do |i| |
|
350 | @issues.each do |i| | |
351 | if new_project && i.project_id != new_project.id |
|
351 | if new_project && i.project_id != new_project.id | |
352 | # issue is moved to another project |
|
352 | # issue is moved to another project | |
353 | i.category = nil |
|
353 | i.category = nil | |
354 | i.fixed_version = nil |
|
354 | i.fixed_version = nil | |
355 | # delete issue relations |
|
355 | # delete issue relations | |
356 | i.relations_from.clear |
|
356 | i.relations_from.clear | |
357 | i.relations_to.clear |
|
357 | i.relations_to.clear | |
358 | i.project = new_project |
|
358 | i.project = new_project | |
359 | end |
|
359 | end | |
360 | if new_tracker |
|
360 | if new_tracker | |
361 | i.tracker = new_tracker |
|
361 | i.tracker = new_tracker | |
362 | end |
|
362 | end | |
363 | i.save |
|
363 | i.save | |
364 | end |
|
364 | end | |
365 | flash[:notice] = l(:notice_successful_update) |
|
365 | flash[:notice] = l(:notice_successful_update) | |
366 | redirect_to :action => 'list_issues', :id => @project |
|
366 | redirect_to :action => 'list_issues', :id => @project | |
367 | end |
|
367 | end | |
368 | end |
|
368 | end | |
369 |
|
369 | |||
370 | # Add a news to @project |
|
370 | # Add a news to @project | |
371 | def add_news |
|
371 | def add_news | |
372 | @news = News.new(:project => @project) |
|
372 | @news = News.new(:project => @project) | |
373 | if request.post? |
|
373 | if request.post? | |
374 | @news.attributes = params[:news] |
|
374 | @news.attributes = params[:news] | |
375 | @news.author_id = self.logged_in_user.id if self.logged_in_user |
|
375 | @news.author_id = self.logged_in_user.id if self.logged_in_user | |
376 | if @news.save |
|
376 | if @news.save | |
377 | flash[:notice] = l(:notice_successful_create) |
|
377 | flash[:notice] = l(:notice_successful_create) | |
378 | Mailer.deliver_news_added(@news) if Setting.notified_events.include?('news_added') |
|
378 | Mailer.deliver_news_added(@news) if Setting.notified_events.include?('news_added') | |
379 | redirect_to :action => 'list_news', :id => @project |
|
379 | redirect_to :action => 'list_news', :id => @project | |
380 | end |
|
380 | end | |
381 | end |
|
381 | end | |
382 | end |
|
382 | end | |
383 |
|
383 | |||
384 | # Show news list of @project |
|
384 | # Show news list of @project | |
385 | def list_news |
|
385 | def list_news | |
386 | @news_pages, @newss = paginate :news, :per_page => 10, :conditions => ["project_id=?", @project.id], :include => :author, :order => "#{News.table_name}.created_on DESC" |
|
386 | @news_pages, @newss = paginate :news, :per_page => 10, :conditions => ["project_id=?", @project.id], :include => :author, :order => "#{News.table_name}.created_on DESC" | |
387 |
|
387 | |||
388 | respond_to do |format| |
|
388 | respond_to do |format| | |
389 | format.html { render :layout => false if request.xhr? } |
|
389 | format.html { render :layout => false if request.xhr? } | |
390 | format.atom { render_feed(@newss, :title => "#{@project.name}: #{l(:label_news_plural)}") } |
|
390 | format.atom { render_feed(@newss, :title => "#{@project.name}: #{l(:label_news_plural)}") } | |
391 | end |
|
391 | end | |
392 | end |
|
392 | end | |
393 |
|
393 | |||
394 | def add_file |
|
394 | def add_file | |
395 | if request.post? |
|
395 | if request.post? | |
396 | @version = @project.versions.find_by_id(params[:version_id]) |
|
396 | @version = @project.versions.find_by_id(params[:version_id]) | |
397 | # Save the attachments |
|
397 | # Save the attachments | |
398 | @attachments = [] |
|
398 | @attachments = [] | |
399 | params[:attachments].each { |file| |
|
399 | params[:attachments].each { |file| | |
400 | next unless file.size > 0 |
|
400 | next unless file.size > 0 | |
401 | a = Attachment.create(:container => @version, :file => file, :author => logged_in_user) |
|
401 | a = Attachment.create(:container => @version, :file => file, :author => logged_in_user) | |
402 | @attachments << a unless a.new_record? |
|
402 | @attachments << a unless a.new_record? | |
403 | } if params[:attachments] and params[:attachments].is_a? Array |
|
403 | } if params[:attachments] and params[:attachments].is_a? Array | |
404 | Mailer.deliver_attachments_add(@attachments) if !@attachments.empty? && Setting.notified_events.include?('file_added') |
|
404 | Mailer.deliver_attachments_add(@attachments) if !@attachments.empty? && Setting.notified_events.include?('file_added') | |
405 | redirect_to :controller => 'projects', :action => 'list_files', :id => @project |
|
405 | redirect_to :controller => 'projects', :action => 'list_files', :id => @project | |
406 | end |
|
406 | end | |
407 | @versions = @project.versions.sort |
|
407 | @versions = @project.versions.sort | |
408 | end |
|
408 | end | |
409 |
|
409 | |||
410 | def list_files |
|
410 | def list_files | |
411 | @versions = @project.versions.sort |
|
411 | @versions = @project.versions.sort | |
412 | end |
|
412 | end | |
413 |
|
413 | |||
414 | # Show changelog for @project |
|
414 | # Show changelog for @project | |
415 | def changelog |
|
415 | def changelog | |
416 | @trackers = Tracker.find(:all, :conditions => ["is_in_chlog=?", true], :order => 'position') |
|
416 | @trackers = Tracker.find(:all, :conditions => ["is_in_chlog=?", true], :order => 'position') | |
417 | retrieve_selected_tracker_ids(@trackers) |
|
417 | retrieve_selected_tracker_ids(@trackers) | |
418 | @versions = @project.versions.sort |
|
418 | @versions = @project.versions.sort | |
419 | end |
|
419 | end | |
420 |
|
420 | |||
421 | def roadmap |
|
421 | def roadmap | |
422 | @trackers = Tracker.find(:all, :conditions => ["is_in_roadmap=?", true], :order => 'position') |
|
422 | @trackers = Tracker.find(:all, :conditions => ["is_in_roadmap=?", true], :order => 'position') | |
423 | retrieve_selected_tracker_ids(@trackers) |
|
423 | retrieve_selected_tracker_ids(@trackers) | |
424 | @versions = @project.versions.sort |
|
424 | @versions = @project.versions.sort | |
425 | @versions = @versions.select {|v| !v.completed? } unless params[:completed] |
|
425 | @versions = @versions.select {|v| !v.completed? } unless params[:completed] | |
426 | end |
|
426 | end | |
427 |
|
427 | |||
428 | def activity |
|
428 | def activity | |
429 | if params[:year] and params[:year].to_i > 1900 |
|
429 | if params[:year] and params[:year].to_i > 1900 | |
430 | @year = params[:year].to_i |
|
430 | @year = params[:year].to_i | |
431 | if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13 |
|
431 | if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13 | |
432 | @month = params[:month].to_i |
|
432 | @month = params[:month].to_i | |
433 | end |
|
433 | end | |
434 | end |
|
434 | end | |
435 | @year ||= Date.today.year |
|
435 | @year ||= Date.today.year | |
436 | @month ||= Date.today.month |
|
436 | @month ||= Date.today.month | |
437 |
|
437 | |||
438 | case params[:format] |
|
438 | case params[:format] | |
439 | when 'rss' |
|
439 | when 'rss' | |
440 | # 30 last days |
|
440 | # 30 last days | |
441 | @date_from = Date.today - 30 |
|
441 | @date_from = Date.today - 30 | |
442 | @date_to = Date.today + 1 |
|
442 | @date_to = Date.today + 1 | |
443 | else |
|
443 | else | |
444 | # current month |
|
444 | # current month | |
445 | @date_from = Date.civil(@year, @month, 1) |
|
445 | @date_from = Date.civil(@year, @month, 1) | |
446 | @date_to = @date_from >> 1 |
|
446 | @date_to = @date_from >> 1 | |
447 | end |
|
447 | end | |
448 |
|
448 | |||
449 |
@event_types = %w(issues news |
|
449 | @event_types = %w(issues news files documents wiki_pages changesets) | |
450 |
@event_types.delete('wiki_e |
|
450 | @event_types.delete('wiki_pages') unless @project.wiki | |
451 | @event_types.delete('changesets') unless @project.repository |
|
451 | @event_types.delete('changesets') unless @project.repository | |
|
452 | # only show what the user is allowed to view | |||
|
453 | @event_types = @event_types.select {|o| User.current.allowed_to?("view_#{o}".to_sym, @project)} | |||
452 |
|
454 | |||
453 | @scope = @event_types.select {|t| params["show_#{t}"]} |
|
455 | @scope = @event_types.select {|t| params["show_#{t}"]} | |
454 | # default events if none is specified in parameters |
|
456 | # default events if none is specified in parameters | |
455 |
@scope = (@event_types - %w(wiki_e |
|
457 | @scope = (@event_types - %w(wiki_pages))if @scope.empty? | |
456 |
|
458 | |||
457 | @events = [] |
|
459 | @events = [] | |
458 |
|
460 | |||
459 | if @scope.include?('issues') |
|
461 | if @scope.include?('issues') | |
460 | @events += @project.issues.find(:all, :include => [:author, :tracker], :conditions => ["#{Issue.table_name}.created_on>=? and #{Issue.table_name}.created_on<=?", @date_from, @date_to] ) |
|
462 | @events += @project.issues.find(:all, :include => [:author, :tracker], :conditions => ["#{Issue.table_name}.created_on>=? and #{Issue.table_name}.created_on<=?", @date_from, @date_to] ) | |
461 | end |
|
463 | end | |
462 |
|
464 | |||
463 | if @scope.include?('news') |
|
465 | if @scope.include?('news') | |
464 | @events += @project.news.find(:all, :conditions => ["#{News.table_name}.created_on>=? and #{News.table_name}.created_on<=?", @date_from, @date_to], :include => :author ) |
|
466 | @events += @project.news.find(:all, :conditions => ["#{News.table_name}.created_on>=? and #{News.table_name}.created_on<=?", @date_from, @date_to], :include => :author ) | |
465 | end |
|
467 | end | |
466 |
|
468 | |||
467 |
if @scope.include?(' |
|
469 | if @scope.include?('files') | |
468 | @events += Attachment.find(:all, :select => "#{Attachment.table_name}.*", :joins => "LEFT JOIN #{Version.table_name} ON #{Version.table_name}.id = #{Attachment.table_name}.container_id", :conditions => ["#{Attachment.table_name}.container_type='Version' and #{Version.table_name}.project_id=? and #{Attachment.table_name}.created_on>=? and #{Attachment.table_name}.created_on<=?", @project.id, @date_from, @date_to], :include => :author ) |
|
470 | @events += Attachment.find(:all, :select => "#{Attachment.table_name}.*", :joins => "LEFT JOIN #{Version.table_name} ON #{Version.table_name}.id = #{Attachment.table_name}.container_id", :conditions => ["#{Attachment.table_name}.container_type='Version' and #{Version.table_name}.project_id=? and #{Attachment.table_name}.created_on>=? and #{Attachment.table_name}.created_on<=?", @project.id, @date_from, @date_to], :include => :author ) | |
469 | end |
|
471 | end | |
470 |
|
472 | |||
471 | if @scope.include?('documents') |
|
473 | if @scope.include?('documents') | |
472 | @events += @project.documents.find(:all, :conditions => ["#{Document.table_name}.created_on>=? and #{Document.table_name}.created_on<=?", @date_from, @date_to] ) |
|
474 | @events += @project.documents.find(:all, :conditions => ["#{Document.table_name}.created_on>=? and #{Document.table_name}.created_on<=?", @date_from, @date_to] ) | |
473 | @events += Attachment.find(:all, :select => "attachments.*", :joins => "LEFT JOIN #{Document.table_name} ON #{Document.table_name}.id = #{Attachment.table_name}.container_id", :conditions => ["#{Attachment.table_name}.container_type='Document' and #{Document.table_name}.project_id=? and #{Attachment.table_name}.created_on>=? and #{Attachment.table_name}.created_on<=?", @project.id, @date_from, @date_to], :include => :author ) |
|
475 | @events += Attachment.find(:all, :select => "attachments.*", :joins => "LEFT JOIN #{Document.table_name} ON #{Document.table_name}.id = #{Attachment.table_name}.container_id", :conditions => ["#{Attachment.table_name}.container_type='Document' and #{Document.table_name}.project_id=? and #{Attachment.table_name}.created_on>=? and #{Attachment.table_name}.created_on<=?", @project.id, @date_from, @date_to], :include => :author ) | |
474 | end |
|
476 | end | |
475 |
|
477 | |||
476 |
if @scope.include?('wiki_e |
|
478 | if @scope.include?('wiki_pages') | |
477 | select = "#{WikiContent.versioned_table_name}.updated_on, #{WikiContent.versioned_table_name}.comments, " + |
|
479 | select = "#{WikiContent.versioned_table_name}.updated_on, #{WikiContent.versioned_table_name}.comments, " + | |
478 | "#{WikiContent.versioned_table_name}.#{WikiContent.version_column}, #{WikiPage.table_name}.title, " + |
|
480 | "#{WikiContent.versioned_table_name}.#{WikiContent.version_column}, #{WikiPage.table_name}.title, " + | |
479 | "#{WikiContent.versioned_table_name}.page_id, #{WikiContent.versioned_table_name}.author_id, " + |
|
481 | "#{WikiContent.versioned_table_name}.page_id, #{WikiContent.versioned_table_name}.author_id, " + | |
480 | "#{WikiContent.versioned_table_name}.id" |
|
482 | "#{WikiContent.versioned_table_name}.id" | |
481 | joins = "LEFT JOIN #{WikiPage.table_name} ON #{WikiPage.table_name}.id = #{WikiContent.versioned_table_name}.page_id " + |
|
483 | joins = "LEFT JOIN #{WikiPage.table_name} ON #{WikiPage.table_name}.id = #{WikiContent.versioned_table_name}.page_id " + | |
482 | "LEFT JOIN #{Wiki.table_name} ON #{Wiki.table_name}.id = #{WikiPage.table_name}.wiki_id " |
|
484 | "LEFT JOIN #{Wiki.table_name} ON #{Wiki.table_name}.id = #{WikiPage.table_name}.wiki_id " | |
483 | conditions = ["#{Wiki.table_name}.project_id = ? AND #{WikiContent.versioned_table_name}.updated_on BETWEEN ? AND ?", |
|
485 | conditions = ["#{Wiki.table_name}.project_id = ? AND #{WikiContent.versioned_table_name}.updated_on BETWEEN ? AND ?", | |
484 | @project.id, @date_from, @date_to] |
|
486 | @project.id, @date_from, @date_to] | |
485 |
|
487 | |||
486 | @events += WikiContent.versioned_class.find(:all, :select => select, :joins => joins, :conditions => conditions) |
|
488 | @events += WikiContent.versioned_class.find(:all, :select => select, :joins => joins, :conditions => conditions) | |
487 | end |
|
489 | end | |
488 |
|
490 | |||
489 |
if @scope.include?(' |
|
491 | if @scope.include?('changesets') | |
490 | @events += @project.repository.changesets.find(:all, :conditions => ["#{Changeset.table_name}.committed_on BETWEEN ? AND ?", @date_from, @date_to]) |
|
492 | @events += @project.repository.changesets.find(:all, :conditions => ["#{Changeset.table_name}.committed_on BETWEEN ? AND ?", @date_from, @date_to]) | |
491 | end |
|
493 | end | |
492 |
|
494 | |||
493 | @events_by_day = @events.group_by(&:event_date) |
|
495 | @events_by_day = @events.group_by(&:event_date) | |
494 |
|
496 | |||
495 | respond_to do |format| |
|
497 | respond_to do |format| | |
496 | format.html { render :layout => false if request.xhr? } |
|
498 | format.html { render :layout => false if request.xhr? } | |
497 | format.atom { render_feed(@events, :title => "#{@project.name}: #{l(:label_activity)}") } |
|
499 | format.atom { render_feed(@events, :title => "#{@project.name}: #{l(:label_activity)}") } | |
498 | end |
|
500 | end | |
499 | end |
|
501 | end | |
500 |
|
502 | |||
501 | def calendar |
|
503 | def calendar | |
502 | @trackers = Tracker.find(:all, :order => 'position') |
|
504 | @trackers = Tracker.find(:all, :order => 'position') | |
503 | retrieve_selected_tracker_ids(@trackers) |
|
505 | retrieve_selected_tracker_ids(@trackers) | |
504 |
|
506 | |||
505 | if params[:year] and params[:year].to_i > 1900 |
|
507 | if params[:year] and params[:year].to_i > 1900 | |
506 | @year = params[:year].to_i |
|
508 | @year = params[:year].to_i | |
507 | if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13 |
|
509 | if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13 | |
508 | @month = params[:month].to_i |
|
510 | @month = params[:month].to_i | |
509 | end |
|
511 | end | |
510 | end |
|
512 | end | |
511 | @year ||= Date.today.year |
|
513 | @year ||= Date.today.year | |
512 | @month ||= Date.today.month |
|
514 | @month ||= Date.today.month | |
513 |
|
515 | |||
514 | @date_from = Date.civil(@year, @month, 1) |
|
516 | @date_from = Date.civil(@year, @month, 1) | |
515 | @date_to = (@date_from >> 1)-1 |
|
517 | @date_to = (@date_from >> 1)-1 | |
516 | # start on monday |
|
518 | # start on monday | |
517 | @date_from = @date_from - (@date_from.cwday-1) |
|
519 | @date_from = @date_from - (@date_from.cwday-1) | |
518 | # finish on sunday |
|
520 | # finish on sunday | |
519 | @date_to = @date_to + (7-@date_to.cwday) |
|
521 | @date_to = @date_to + (7-@date_to.cwday) | |
520 |
|
522 | |||
521 | @events = [] |
|
523 | @events = [] | |
522 | @project.issues_with_subprojects(params[:with_subprojects]) do |
|
524 | @project.issues_with_subprojects(params[:with_subprojects]) do | |
523 | @events += Issue.find(:all, |
|
525 | @events += Issue.find(:all, | |
524 | :include => [:tracker, :status, :assigned_to, :priority, :project], |
|
526 | :include => [:tracker, :status, :assigned_to, :priority, :project], | |
525 | :conditions => ["((start_date>=? and start_date<=?) or (due_date>=? and due_date<=?)) and #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')})", @date_from, @date_to, @date_from, @date_to] |
|
527 | :conditions => ["((start_date>=? and start_date<=?) or (due_date>=? and due_date<=?)) and #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')})", @date_from, @date_to, @date_from, @date_to] | |
526 | ) unless @selected_tracker_ids.empty? |
|
528 | ) unless @selected_tracker_ids.empty? | |
527 | end |
|
529 | end | |
528 | @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to]) |
|
530 | @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to]) | |
529 |
|
531 | |||
530 | @ending_events_by_days = @events.group_by {|event| event.due_date} |
|
532 | @ending_events_by_days = @events.group_by {|event| event.due_date} | |
531 | @starting_events_by_days = @events.group_by {|event| event.start_date} |
|
533 | @starting_events_by_days = @events.group_by {|event| event.start_date} | |
532 |
|
534 | |||
533 | render :layout => false if request.xhr? |
|
535 | render :layout => false if request.xhr? | |
534 | end |
|
536 | end | |
535 |
|
537 | |||
536 | def gantt |
|
538 | def gantt | |
537 | @trackers = Tracker.find(:all, :order => 'position') |
|
539 | @trackers = Tracker.find(:all, :order => 'position') | |
538 | retrieve_selected_tracker_ids(@trackers) |
|
540 | retrieve_selected_tracker_ids(@trackers) | |
539 |
|
541 | |||
540 | if params[:year] and params[:year].to_i >0 |
|
542 | if params[:year] and params[:year].to_i >0 | |
541 | @year_from = params[:year].to_i |
|
543 | @year_from = params[:year].to_i | |
542 | if params[:month] and params[:month].to_i >=1 and params[:month].to_i <= 12 |
|
544 | if params[:month] and params[:month].to_i >=1 and params[:month].to_i <= 12 | |
543 | @month_from = params[:month].to_i |
|
545 | @month_from = params[:month].to_i | |
544 | else |
|
546 | else | |
545 | @month_from = 1 |
|
547 | @month_from = 1 | |
546 | end |
|
548 | end | |
547 | else |
|
549 | else | |
548 | @month_from ||= (Date.today << 1).month |
|
550 | @month_from ||= (Date.today << 1).month | |
549 | @year_from ||= (Date.today << 1).year |
|
551 | @year_from ||= (Date.today << 1).year | |
550 | end |
|
552 | end | |
551 |
|
553 | |||
552 | @zoom = (params[:zoom].to_i > 0 and params[:zoom].to_i < 5) ? params[:zoom].to_i : 2 |
|
554 | @zoom = (params[:zoom].to_i > 0 and params[:zoom].to_i < 5) ? params[:zoom].to_i : 2 | |
553 | @months = (params[:months].to_i > 0 and params[:months].to_i < 25) ? params[:months].to_i : 6 |
|
555 | @months = (params[:months].to_i > 0 and params[:months].to_i < 25) ? params[:months].to_i : 6 | |
554 |
|
556 | |||
555 | @date_from = Date.civil(@year_from, @month_from, 1) |
|
557 | @date_from = Date.civil(@year_from, @month_from, 1) | |
556 | @date_to = (@date_from >> @months) - 1 |
|
558 | @date_to = (@date_from >> @months) - 1 | |
557 |
|
559 | |||
558 | @events = [] |
|
560 | @events = [] | |
559 | @project.issues_with_subprojects(params[:with_subprojects]) do |
|
561 | @project.issues_with_subprojects(params[:with_subprojects]) do | |
560 | @events += Issue.find(:all, |
|
562 | @events += Issue.find(:all, | |
561 | :order => "start_date, due_date", |
|
563 | :order => "start_date, due_date", | |
562 | :include => [:tracker, :status, :assigned_to, :priority, :project], |
|
564 | :include => [:tracker, :status, :assigned_to, :priority, :project], | |
563 | :conditions => ["(((start_date>=? and start_date<=?) or (due_date>=? and due_date<=?) or (start_date<? and due_date>?)) and start_date is not null and due_date is not null and #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')}))", @date_from, @date_to, @date_from, @date_to, @date_from, @date_to] |
|
565 | :conditions => ["(((start_date>=? and start_date<=?) or (due_date>=? and due_date<=?) or (start_date<? and due_date>?)) and start_date is not null and due_date is not null and #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')}))", @date_from, @date_to, @date_from, @date_to, @date_from, @date_to] | |
564 | ) unless @selected_tracker_ids.empty? |
|
566 | ) unless @selected_tracker_ids.empty? | |
565 | end |
|
567 | end | |
566 | @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to]) |
|
568 | @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to]) | |
567 | @events.sort! {|x,y| x.start_date <=> y.start_date } |
|
569 | @events.sort! {|x,y| x.start_date <=> y.start_date } | |
568 |
|
570 | |||
569 | if params[:format]=='pdf' |
|
571 | if params[:format]=='pdf' | |
570 | @options_for_rfpdf ||= {} |
|
572 | @options_for_rfpdf ||= {} | |
571 | @options_for_rfpdf[:file_name] = "#{@project.identifier}-gantt.pdf" |
|
573 | @options_for_rfpdf[:file_name] = "#{@project.identifier}-gantt.pdf" | |
572 | render :template => "projects/gantt.rfpdf", :layout => false |
|
574 | render :template => "projects/gantt.rfpdf", :layout => false | |
573 | elsif params[:format]=='png' && respond_to?('gantt_image') |
|
575 | elsif params[:format]=='png' && respond_to?('gantt_image') | |
574 | image = gantt_image(@events, @date_from, @months, @zoom) |
|
576 | image = gantt_image(@events, @date_from, @months, @zoom) | |
575 | image.format = 'PNG' |
|
577 | image.format = 'PNG' | |
576 | send_data(image.to_blob, :disposition => 'inline', :type => 'image/png', :filename => "#{@project.identifier}-gantt.png") |
|
578 | send_data(image.to_blob, :disposition => 'inline', :type => 'image/png', :filename => "#{@project.identifier}-gantt.png") | |
577 | else |
|
579 | else | |
578 | render :template => "projects/gantt.rhtml" |
|
580 | render :template => "projects/gantt.rhtml" | |
579 | end |
|
581 | end | |
580 | end |
|
582 | end | |
581 |
|
583 | |||
582 | def feeds |
|
584 | def feeds | |
583 | @queries = @project.queries.find :all, :conditions => ["is_public=? or user_id=?", true, (logged_in_user ? logged_in_user.id : 0)] |
|
585 | @queries = @project.queries.find :all, :conditions => ["is_public=? or user_id=?", true, (logged_in_user ? logged_in_user.id : 0)] | |
584 | @key = User.current.rss_key |
|
586 | @key = User.current.rss_key | |
585 | end |
|
587 | end | |
586 |
|
588 | |||
587 | private |
|
589 | private | |
588 | # Find project of id params[:id] |
|
590 | # Find project of id params[:id] | |
589 | # if not found, redirect to project list |
|
591 | # if not found, redirect to project list | |
590 | # Used as a before_filter |
|
592 | # Used as a before_filter | |
591 | def find_project |
|
593 | def find_project | |
592 | @project = Project.find(params[:id]) |
|
594 | @project = Project.find(params[:id]) | |
593 | rescue ActiveRecord::RecordNotFound |
|
595 | rescue ActiveRecord::RecordNotFound | |
594 | render_404 |
|
596 | render_404 | |
595 | end |
|
597 | end | |
596 |
|
598 | |||
597 | def retrieve_selected_tracker_ids(selectable_trackers) |
|
599 | def retrieve_selected_tracker_ids(selectable_trackers) | |
598 | if ids = params[:tracker_ids] |
|
600 | if ids = params[:tracker_ids] | |
599 | @selected_tracker_ids = (ids.is_a? Array) ? ids.collect { |id| id.to_i.to_s } : ids.split('/').collect { |id| id.to_i.to_s } |
|
601 | @selected_tracker_ids = (ids.is_a? Array) ? ids.collect { |id| id.to_i.to_s } : ids.split('/').collect { |id| id.to_i.to_s } | |
600 | else |
|
602 | else | |
601 | @selected_tracker_ids = selectable_trackers.collect {|t| t.id.to_s } |
|
603 | @selected_tracker_ids = selectable_trackers.collect {|t| t.id.to_s } | |
602 | end |
|
604 | end | |
603 | end |
|
605 | end | |
604 |
|
606 | |||
605 | # Retrieve query from session or build a new query |
|
607 | # Retrieve query from session or build a new query | |
606 | def retrieve_query |
|
608 | def retrieve_query | |
607 | if params[:query_id] |
|
609 | if params[:query_id] | |
608 | @query = @project.queries.find(params[:query_id]) |
|
610 | @query = @project.queries.find(params[:query_id]) | |
609 | @query.executed_by = logged_in_user |
|
611 | @query.executed_by = logged_in_user | |
610 | session[:query] = @query |
|
612 | session[:query] = @query | |
611 | else |
|
613 | else | |
612 | if params[:set_filter] or !session[:query] or session[:query].project_id != @project.id |
|
614 | if params[:set_filter] or !session[:query] or session[:query].project_id != @project.id | |
613 | # Give it a name, required to be valid |
|
615 | # Give it a name, required to be valid | |
614 | @query = Query.new(:name => "_", :executed_by => logged_in_user) |
|
616 | @query = Query.new(:name => "_", :executed_by => logged_in_user) | |
615 | @query.project = @project |
|
617 | @query.project = @project | |
616 | if params[:fields] and params[:fields].is_a? Array |
|
618 | if params[:fields] and params[:fields].is_a? Array | |
617 | params[:fields].each do |field| |
|
619 | params[:fields].each do |field| | |
618 | @query.add_filter(field, params[:operators][field], params[:values][field]) |
|
620 | @query.add_filter(field, params[:operators][field], params[:values][field]) | |
619 | end |
|
621 | end | |
620 | else |
|
622 | else | |
621 | @query.available_filters.keys.each do |field| |
|
623 | @query.available_filters.keys.each do |field| | |
622 | @query.add_short_filter(field, params[field]) if params[field] |
|
624 | @query.add_short_filter(field, params[field]) if params[field] | |
623 | end |
|
625 | end | |
624 | end |
|
626 | end | |
625 | session[:query] = @query |
|
627 | session[:query] = @query | |
626 | else |
|
628 | else | |
627 | @query = session[:query] |
|
629 | @query = session[:query] | |
628 | end |
|
630 | end | |
629 | end |
|
631 | end | |
630 | end |
|
632 | end | |
631 | end |
|
633 | end |
@@ -1,511 +1,513 | |||||
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: 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 %%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: 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: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя |
|
53 | general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя | |
54 |
|
54 | |||
55 | notice_account_updated: Профилът е обновен успешно. |
|
55 | notice_account_updated: Профилът е обновен успешно. | |
56 | notice_account_invalid_creditentials: Невалиден потребител или парола. |
|
56 | notice_account_invalid_creditentials: Невалиден потребител или парола. | |
57 | notice_account_password_updated: Паролата е успешно променена. |
|
57 | notice_account_password_updated: Паролата е успешно променена. | |
58 | notice_account_wrong_password: Грешна парола |
|
58 | notice_account_wrong_password: Грешна парола | |
59 | notice_account_register_done: Акаунтът е създаден успешно. |
|
59 | notice_account_register_done: Акаунтът е създаден успешно. | |
60 | notice_account_unknown_email: Непознат потребител. |
|
60 | notice_account_unknown_email: Непознат потребител. | |
61 | notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата. |
|
61 | notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата. | |
62 | notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола. |
|
62 | notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола. | |
63 | notice_account_activated: Акаунтът ви е активиран. Вече може да влезете. |
|
63 | notice_account_activated: Акаунтът ви е активиран. Вече може да влезете. | |
64 | notice_successful_create: Успешно създаване. |
|
64 | notice_successful_create: Успешно създаване. | |
65 | notice_successful_update: Успешно обновяване. |
|
65 | notice_successful_update: Успешно обновяване. | |
66 | notice_successful_delete: Успешно изтриване. |
|
66 | notice_successful_delete: Успешно изтриване. | |
67 | notice_successful_connection: Успешно свързване. |
|
67 | notice_successful_connection: Успешно свързване. | |
68 | notice_file_not_found: Несъществуваща или преместена страница. |
|
68 | notice_file_not_found: Несъществуваща или преместена страница. | |
69 | notice_locking_conflict: Друг потребител променя тези данни в момента. |
|
69 | notice_locking_conflict: Друг потребител променя тези данни в момента. | |
70 | notice_scm_error: Несъществуващ обект в склада. |
|
70 | notice_scm_error: Несъществуващ обект в склада. | |
71 | notice_not_authorized: Нямате право на достъп до тази страница. |
|
71 | notice_not_authorized: Нямате право на достъп до тази страница. | |
72 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
73 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
75 |
|
75 | |||
76 | mail_subject_lost_password: Вашата парола |
|
76 | mail_subject_lost_password: Вашата парола | |
77 | mail_subject_register: Активация на акаунт |
|
77 | mail_subject_register: Активация на акаунт | |
78 |
|
78 | |||
79 | gui_validation_error: 1 грешка |
|
79 | gui_validation_error: 1 грешка | |
80 | gui_validation_error_plural: %d грешки |
|
80 | gui_validation_error_plural: %d грешки | |
81 |
|
81 | |||
82 | field_name: Име |
|
82 | field_name: Име | |
83 | field_description: Описание |
|
83 | field_description: Описание | |
84 | field_summary: Тема |
|
84 | field_summary: Тема | |
85 | field_is_required: Задължително |
|
85 | field_is_required: Задължително | |
86 | field_firstname: Име |
|
86 | field_firstname: Име | |
87 | field_lastname: Фамилия |
|
87 | field_lastname: Фамилия | |
88 | field_mail: Email |
|
88 | field_mail: Email | |
89 | field_filename: Файл |
|
89 | field_filename: Файл | |
90 | field_filesize: Големина |
|
90 | field_filesize: Големина | |
91 | field_downloads: Downloads |
|
91 | field_downloads: Downloads | |
92 | field_author: Автор |
|
92 | field_author: Автор | |
93 | field_created_on: Създадена |
|
93 | field_created_on: Създадена | |
94 | field_updated_on: Обновена |
|
94 | field_updated_on: Обновена | |
95 | field_field_format: Формат |
|
95 | field_field_format: Формат | |
96 | field_is_for_all: За всички проекти |
|
96 | field_is_for_all: За всички проекти | |
97 | field_possible_values: Възможни стойности |
|
97 | field_possible_values: Възможни стойности | |
98 | field_regexp: Регулярен израз |
|
98 | field_regexp: Регулярен израз | |
99 | field_min_length: Мин. дължина |
|
99 | field_min_length: Мин. дължина | |
100 | field_max_length: Макс. дължина |
|
100 | field_max_length: Макс. дължина | |
101 | field_value: Стойност |
|
101 | field_value: Стойност | |
102 | field_category: Категория |
|
102 | field_category: Категория | |
103 | field_title: Заглавие |
|
103 | field_title: Заглавие | |
104 | field_project: Проект |
|
104 | field_project: Проект | |
105 | field_issue: Задача |
|
105 | field_issue: Задача | |
106 | field_status: Статус |
|
106 | field_status: Статус | |
107 | field_notes: Бележка |
|
107 | field_notes: Бележка | |
108 | field_is_closed: Затворена задача |
|
108 | field_is_closed: Затворена задача | |
109 | field_is_default: Статус по подразбиране |
|
109 | field_is_default: Статус по подразбиране | |
110 | field_html_color: Цвят |
|
110 | field_html_color: Цвят | |
111 | field_tracker: Тракер |
|
111 | field_tracker: Тракер | |
112 | field_subject: Тема |
|
112 | field_subject: Тема | |
113 | field_due_date: Крайна дата |
|
113 | field_due_date: Крайна дата | |
114 | field_assigned_to: Възложена на |
|
114 | field_assigned_to: Възложена на | |
115 | field_priority: Приоритет |
|
115 | field_priority: Приоритет | |
116 | field_fixed_version: Версия |
|
116 | field_fixed_version: Версия | |
117 | field_user: Потребител |
|
117 | field_user: Потребител | |
118 | field_role: Роля |
|
118 | field_role: Роля | |
119 | field_homepage: Начална страница |
|
119 | field_homepage: Начална страница | |
120 | field_is_public: Публичен |
|
120 | field_is_public: Публичен | |
121 | field_parent: Подпроект на |
|
121 | field_parent: Подпроект на | |
122 | field_is_in_chlog: Да се вижда ли в Изменения |
|
122 | field_is_in_chlog: Да се вижда ли в Изменения | |
123 | field_is_in_roadmap: Да се вижда ли в Пътна карта |
|
123 | field_is_in_roadmap: Да се вижда ли в Пътна карта | |
124 | field_login: Потребител |
|
124 | field_login: Потребител | |
125 | field_mail_notification: Известия по пощата |
|
125 | field_mail_notification: Известия по пощата | |
126 | field_admin: Администратор |
|
126 | field_admin: Администратор | |
127 | field_last_login_on: Последно свързване |
|
127 | field_last_login_on: Последно свързване | |
128 | field_language: Език |
|
128 | field_language: Език | |
129 | field_effective_date: Дата |
|
129 | field_effective_date: Дата | |
130 | field_password: Парола |
|
130 | field_password: Парола | |
131 | field_new_password: Нова парола |
|
131 | field_new_password: Нова парола | |
132 | field_password_confirmation: Потвърждение |
|
132 | field_password_confirmation: Потвърждение | |
133 | field_version: Версия |
|
133 | field_version: Версия | |
134 | field_type: Type |
|
134 | field_type: Type | |
135 | field_host: Хост |
|
135 | field_host: Хост | |
136 | field_port: Порт |
|
136 | field_port: Порт | |
137 | field_account: Акаунт |
|
137 | field_account: Акаунт | |
138 | field_base_dn: Base DN |
|
138 | field_base_dn: Base DN | |
139 | field_attr_login: Login attribute |
|
139 | field_attr_login: Login attribute | |
140 | field_attr_firstname: Firstname attribute |
|
140 | field_attr_firstname: Firstname attribute | |
141 | field_attr_lastname: Lastname attribute |
|
141 | field_attr_lastname: Lastname attribute | |
142 | field_attr_mail: Email attribute |
|
142 | field_attr_mail: Email attribute | |
143 | field_onthefly: Динамично създаване на потребител |
|
143 | field_onthefly: Динамично създаване на потребител | |
144 | field_start_date: Начална дата |
|
144 | field_start_date: Начална дата | |
145 | field_done_ratio: %% Прогрес |
|
145 | field_done_ratio: %% Прогрес | |
146 | field_auth_source: Начин на оторизация |
|
146 | field_auth_source: Начин на оторизация | |
147 | field_hide_mail: Скрий e-mail адреса ми |
|
147 | field_hide_mail: Скрий e-mail адреса ми | |
148 | field_comments: Коментар |
|
148 | field_comments: Коментар | |
149 | field_url: Адрес |
|
149 | field_url: Адрес | |
150 | field_start_page: Начална страница |
|
150 | field_start_page: Начална страница | |
151 | field_subproject: Подпроект |
|
151 | field_subproject: Подпроект | |
152 | field_hours: Часове |
|
152 | field_hours: Часове | |
153 | field_activity: Дейност |
|
153 | field_activity: Дейност | |
154 | field_spent_on: Дата |
|
154 | field_spent_on: Дата | |
155 | field_identifier: Идентификатор |
|
155 | field_identifier: Идентификатор | |
156 | field_is_filter: Използва се за филтър |
|
156 | field_is_filter: Използва се за филтър | |
157 | field_issue_to_id: Related issue |
|
157 | field_issue_to_id: Related issue | |
158 | field_delay: Delay |
|
158 | field_delay: Delay | |
159 | field_assignable: Issues can be assigned to this role |
|
159 | field_assignable: Issues can be assigned to this role | |
160 | field_redirect_existing_links: Redirect existing links |
|
160 | field_redirect_existing_links: Redirect existing links | |
161 | field_estimated_hours: Estimated time |
|
161 | field_estimated_hours: Estimated time | |
162 |
|
162 | |||
163 | setting_app_title: Заглавие |
|
163 | setting_app_title: Заглавие | |
164 | setting_app_subtitle: Описание |
|
164 | setting_app_subtitle: Описание | |
165 | setting_welcome_text: Допълнителен текст |
|
165 | setting_welcome_text: Допълнителен текст | |
166 | setting_default_language: Език по подразбиране |
|
166 | setting_default_language: Език по подразбиране | |
167 | setting_login_required: Изискване за вход |
|
167 | setting_login_required: Изискване за вход | |
168 | setting_self_registration: Регистрация от потребители |
|
168 | setting_self_registration: Регистрация от потребители | |
169 | setting_attachment_max_size: Максимално голям приложен файл |
|
169 | setting_attachment_max_size: Максимално голям приложен файл | |
170 | setting_issues_export_limit: Лимит за експорт на задачи |
|
170 | setting_issues_export_limit: Лимит за експорт на задачи | |
171 | setting_mail_from: E-mail адрес за емисии |
|
171 | setting_mail_from: E-mail адрес за емисии | |
172 | setting_host_name: Хост |
|
172 | setting_host_name: Хост | |
173 | setting_text_formatting: Форматиране на текста |
|
173 | setting_text_formatting: Форматиране на текста | |
174 | setting_wiki_compression: Wiki компресиране на историята |
|
174 | setting_wiki_compression: Wiki компресиране на историята | |
175 | setting_feeds_limit: Лимит на Feeds |
|
175 | setting_feeds_limit: Лимит на Feeds | |
176 | setting_autofetch_changesets: Автоматично обработване на commits в склада |
|
176 | setting_autofetch_changesets: Автоматично обработване на commits в склада | |
177 | setting_sys_api_enabled: Разрешаване на WS за управление на склада |
|
177 | setting_sys_api_enabled: Разрешаване на WS за управление на склада | |
178 | setting_commit_ref_keywords: Отбелязващи ключови думи |
|
178 | setting_commit_ref_keywords: Отбелязващи ключови думи | |
179 | setting_commit_fix_keywords: Приключващи ключови думи |
|
179 | setting_commit_fix_keywords: Приключващи ключови думи | |
180 | setting_autologin: Autologin |
|
180 | setting_autologin: Autologin | |
181 | setting_date_format: Date format |
|
181 | setting_date_format: Date format | |
182 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
182 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
183 |
|
183 | |||
184 | label_user: Потребител |
|
184 | label_user: Потребител | |
185 | label_user_plural: Потребители |
|
185 | label_user_plural: Потребители | |
186 | label_user_new: Нов потребител |
|
186 | label_user_new: Нов потребител | |
187 | label_project: Проект |
|
187 | label_project: Проект | |
188 | label_project_new: Нов проект |
|
188 | label_project_new: Нов проект | |
189 | label_project_plural: Проекти |
|
189 | label_project_plural: Проекти | |
190 | label_project_all: All Projects |
|
190 | label_project_all: All Projects | |
191 | label_project_latest: Последни проекти |
|
191 | label_project_latest: Последни проекти | |
192 | label_issue: Задача |
|
192 | label_issue: Задача | |
193 | label_issue_new: Нова задача |
|
193 | label_issue_new: Нова задача | |
194 | label_issue_plural: Задачи |
|
194 | label_issue_plural: Задачи | |
195 | label_issue_view_all: Всички задачи |
|
195 | label_issue_view_all: Всички задачи | |
196 | label_document: Документ |
|
196 | label_document: Документ | |
197 | label_document_new: Нов документ |
|
197 | label_document_new: Нов документ | |
198 | label_document_plural: Документи |
|
198 | label_document_plural: Документи | |
199 | label_role: Роля |
|
199 | label_role: Роля | |
200 | label_role_plural: Роли |
|
200 | label_role_plural: Роли | |
201 | label_role_new: Нова роля |
|
201 | label_role_new: Нова роля | |
202 | label_role_and_permissions: Роли и права |
|
202 | label_role_and_permissions: Роли и права | |
203 | label_member: Член |
|
203 | label_member: Член | |
204 | label_member_new: Нов член |
|
204 | label_member_new: Нов член | |
205 | label_member_plural: Членове |
|
205 | label_member_plural: Членове | |
206 | label_tracker: Тракер |
|
206 | label_tracker: Тракер | |
207 | label_tracker_plural: Тракери |
|
207 | label_tracker_plural: Тракери | |
208 | label_tracker_new: Нов тракер |
|
208 | label_tracker_new: Нов тракер | |
209 | label_workflow: Workflow |
|
209 | label_workflow: Workflow | |
210 | label_issue_status: Статус на задача |
|
210 | label_issue_status: Статус на задача | |
211 | label_issue_status_plural: Статуси на задачи |
|
211 | label_issue_status_plural: Статуси на задачи | |
212 | label_issue_status_new: Нов статус |
|
212 | label_issue_status_new: Нов статус | |
213 | label_issue_category: Категория задача |
|
213 | label_issue_category: Категория задача | |
214 | label_issue_category_plural: Категории задачи |
|
214 | label_issue_category_plural: Категории задачи | |
215 | label_issue_category_new: Нова категория |
|
215 | label_issue_category_new: Нова категория | |
216 | label_custom_field: Измислено поле |
|
216 | label_custom_field: Измислено поле | |
217 | label_custom_field_plural: Измислени полета |
|
217 | label_custom_field_plural: Измислени полета | |
218 | label_custom_field_new: Ново измислено поле |
|
218 | label_custom_field_new: Ново измислено поле | |
219 | label_enumerations: Списъци |
|
219 | label_enumerations: Списъци | |
220 | label_enumeration_new: Нова стойност |
|
220 | label_enumeration_new: Нова стойност | |
221 | label_information: Информация |
|
221 | label_information: Информация | |
222 | label_information_plural: Информация |
|
222 | label_information_plural: Информация | |
223 | label_please_login: Вход |
|
223 | label_please_login: Вход | |
224 | label_register: Регистрация |
|
224 | label_register: Регистрация | |
225 | label_password_lost: Забравена парола |
|
225 | label_password_lost: Забравена парола | |
226 | label_home: Начало |
|
226 | label_home: Начало | |
227 | label_my_page: Моята страница |
|
227 | label_my_page: Моята страница | |
228 | label_my_account: Моят профил |
|
228 | label_my_account: Моят профил | |
229 | label_my_projects: Моите проекти |
|
229 | label_my_projects: Моите проекти | |
230 | label_administration: Администрация |
|
230 | label_administration: Администрация | |
231 | label_login: Вход |
|
231 | label_login: Вход | |
232 | label_logout: Изход |
|
232 | label_logout: Изход | |
233 | label_help: Помощ |
|
233 | label_help: Помощ | |
234 | label_reported_issues: Публикувани задачи |
|
234 | label_reported_issues: Публикувани задачи | |
235 | label_assigned_to_me_issues: Назначени на мен |
|
235 | label_assigned_to_me_issues: Назначени на мен | |
236 | label_last_login: Последно свързване |
|
236 | label_last_login: Последно свързване | |
237 | label_last_updates: Последно обновена |
|
237 | label_last_updates: Последно обновена | |
238 | label_last_updates_plural: %d последно обновени |
|
238 | label_last_updates_plural: %d последно обновени | |
239 | label_registered_on: Регистрация |
|
239 | label_registered_on: Регистрация | |
240 | label_activity: Дейност |
|
240 | label_activity: Дейност | |
241 | label_new: Нов |
|
241 | label_new: Нов | |
242 | label_logged_as: Логнат като |
|
242 | label_logged_as: Логнат като | |
243 | label_environment: Среда |
|
243 | label_environment: Среда | |
244 | label_authentication: Оторизация |
|
244 | label_authentication: Оторизация | |
245 | label_auth_source: Начин на оторозация |
|
245 | label_auth_source: Начин на оторозация | |
246 | label_auth_source_new: Нов начин на оторизация |
|
246 | label_auth_source_new: Нов начин на оторизация | |
247 | label_auth_source_plural: Начини на оторизация |
|
247 | label_auth_source_plural: Начини на оторизация | |
248 | label_subproject_plural: Подпроекти |
|
248 | label_subproject_plural: Подпроекти | |
249 | label_min_max_length: Мин. - Макс. дължина |
|
249 | label_min_max_length: Мин. - Макс. дължина | |
250 | label_list: Списък |
|
250 | label_list: Списък | |
251 | label_date: Дата |
|
251 | label_date: Дата | |
252 | label_integer: Число |
|
252 | label_integer: Число | |
253 | label_boolean: Чекбокс |
|
253 | label_boolean: Чекбокс | |
254 | label_string: Текст |
|
254 | label_string: Текст | |
255 | label_text: Дълъг текст |
|
255 | label_text: Дълъг текст | |
256 | label_attribute: Атрибут |
|
256 | label_attribute: Атрибут | |
257 | label_attribute_plural: Атрибути |
|
257 | label_attribute_plural: Атрибути | |
258 | label_download: %d Download |
|
258 | label_download: %d Download | |
259 | label_download_plural: %d Downloads |
|
259 | label_download_plural: %d Downloads | |
260 | label_no_data: Няма изходни данни |
|
260 | label_no_data: Няма изходни данни | |
261 | label_change_status: Промяна на статуса |
|
261 | label_change_status: Промяна на статуса | |
262 | label_history: История |
|
262 | label_history: История | |
263 | label_attachment: Файл |
|
263 | label_attachment: Файл | |
264 | label_attachment_new: Нов файл |
|
264 | label_attachment_new: Нов файл | |
265 | label_attachment_delete: Изтриване |
|
265 | label_attachment_delete: Изтриване | |
266 | label_attachment_plural: Файлове |
|
266 | label_attachment_plural: Файлове | |
267 | label_report: Доклад |
|
267 | label_report: Доклад | |
268 | label_report_plural: Доклади |
|
268 | label_report_plural: Доклади | |
269 | label_news: Новини |
|
269 | label_news: Новини | |
270 | label_news_new: Добави |
|
270 | label_news_new: Добави | |
271 | label_news_plural: Новини |
|
271 | label_news_plural: Новини | |
272 | label_news_latest: Последни новини |
|
272 | label_news_latest: Последни новини | |
273 | label_news_view_all: Виж всички |
|
273 | label_news_view_all: Виж всички | |
274 | label_change_log: Изменения |
|
274 | label_change_log: Изменения | |
275 | label_settings: Настройки |
|
275 | label_settings: Настройки | |
276 | label_overview: Общ изглед |
|
276 | label_overview: Общ изглед | |
277 | label_version: Версия |
|
277 | label_version: Версия | |
278 | label_version_new: Нова версия |
|
278 | label_version_new: Нова версия | |
279 | label_version_plural: Версии |
|
279 | label_version_plural: Версии | |
280 | label_confirmation: Одобрение |
|
280 | label_confirmation: Одобрение | |
281 | label_export_to: Експорт към |
|
281 | label_export_to: Експорт към | |
282 | label_read: Read... |
|
282 | label_read: Read... | |
283 | label_public_projects: Публични проекти |
|
283 | label_public_projects: Публични проекти | |
284 | label_open_issues: отворена |
|
284 | label_open_issues: отворена | |
285 | label_open_issues_plural: отворени |
|
285 | label_open_issues_plural: отворени | |
286 | label_closed_issues: затворена |
|
286 | label_closed_issues: затворена | |
287 | label_closed_issues_plural: затворени |
|
287 | label_closed_issues_plural: затворени | |
288 | label_total: Общо |
|
288 | label_total: Общо | |
289 | label_permissions: Права |
|
289 | label_permissions: Права | |
290 | label_current_status: Текущ статус |
|
290 | label_current_status: Текущ статус | |
291 | label_new_statuses_allowed: Позволени статуси |
|
291 | label_new_statuses_allowed: Позволени статуси | |
292 | label_all: всички |
|
292 | label_all: всички | |
293 | label_none: никакви |
|
293 | label_none: никакви | |
294 | label_next: Следващ |
|
294 | label_next: Следващ | |
295 | label_previous: Предишен |
|
295 | label_previous: Предишен | |
296 | label_used_by: Използва се от |
|
296 | label_used_by: Използва се от | |
297 | label_details: Детайли |
|
297 | label_details: Детайли | |
298 | label_add_note: Добавяне на бележка |
|
298 | label_add_note: Добавяне на бележка | |
299 | label_per_page: На страница |
|
299 | label_per_page: На страница | |
300 | label_calendar: Календар |
|
300 | label_calendar: Календар | |
301 | label_months_from: месеци от |
|
301 | label_months_from: месеци от | |
302 | label_gantt: Gantt |
|
302 | label_gantt: Gantt | |
303 | label_internal: Вътрешен |
|
303 | label_internal: Вътрешен | |
304 | label_last_changes: последни %d промени |
|
304 | label_last_changes: последни %d промени | |
305 | label_change_view_all: Виж всички промени |
|
305 | label_change_view_all: Виж всички промени | |
306 | label_personalize_page: Персонализиране |
|
306 | label_personalize_page: Персонализиране | |
307 | label_comment: Коментар |
|
307 | label_comment: Коментар | |
308 | label_comment_plural: Коментари |
|
308 | label_comment_plural: Коментари | |
309 | label_comment_add: Добавяне на коментар |
|
309 | label_comment_add: Добавяне на коментар | |
310 | label_comment_added: Добавен коментар |
|
310 | label_comment_added: Добавен коментар | |
311 | label_comment_delete: Изтриване на коментари |
|
311 | label_comment_delete: Изтриване на коментари | |
312 | label_query: Измислена заявка |
|
312 | label_query: Измислена заявка | |
313 | label_query_plural: Измислени заявки |
|
313 | label_query_plural: Измислени заявки | |
314 | label_query_new: Нова заявка |
|
314 | label_query_new: Нова заявка | |
315 | label_filter_add: Добави филтър |
|
315 | label_filter_add: Добави филтър | |
316 | label_filter_plural: Филтри |
|
316 | label_filter_plural: Филтри | |
317 | label_equals: е |
|
317 | label_equals: е | |
318 | label_not_equals: не е |
|
318 | label_not_equals: не е | |
319 | label_in_less_than: по-малко от |
|
319 | label_in_less_than: по-малко от | |
320 | label_in_more_than: повече от |
|
320 | label_in_more_than: повече от | |
321 | label_in: в следващите |
|
321 | label_in: в следващите | |
322 | label_today: днес |
|
322 | label_today: днес | |
323 | label_this_week: this week |
|
323 | label_this_week: this week | |
324 | label_less_than_ago: преди по-малко от |
|
324 | label_less_than_ago: преди по-малко от | |
325 | label_more_than_ago: преди повече от |
|
325 | label_more_than_ago: преди повече от | |
326 | label_ago: преди дни |
|
326 | label_ago: преди дни | |
327 | label_contains: съдържа |
|
327 | label_contains: съдържа | |
328 | label_not_contains: не съдържа |
|
328 | label_not_contains: не съдържа | |
329 | label_day_plural: дни |
|
329 | label_day_plural: дни | |
330 | label_repository: Склад |
|
330 | label_repository: Склад | |
331 | label_browse: Разглеждане |
|
331 | label_browse: Разглеждане | |
332 | label_modification: %d промяна |
|
332 | label_modification: %d промяна | |
333 | label_modification_plural: %d промени |
|
333 | label_modification_plural: %d промени | |
334 | label_revision: Ревизия |
|
334 | label_revision: Ревизия | |
335 | label_revision_plural: Ревизии |
|
335 | label_revision_plural: Ревизии | |
336 | label_added: добавено |
|
336 | label_added: добавено | |
337 | label_modified: променено |
|
337 | label_modified: променено | |
338 | label_deleted: изтрито |
|
338 | label_deleted: изтрито | |
339 | label_latest_revision: Последна ревизия |
|
339 | label_latest_revision: Последна ревизия | |
340 | label_latest_revision_plural: Последни ревизии |
|
340 | label_latest_revision_plural: Последни ревизии | |
341 | label_view_revisions: Виж ревизиите |
|
341 | label_view_revisions: Виж ревизиите | |
342 | label_max_size: Максимална големина |
|
342 | label_max_size: Максимална големина | |
343 | label_on: 'от' |
|
343 | label_on: 'от' | |
344 | label_sort_highest: Премести най-горе |
|
344 | label_sort_highest: Премести най-горе | |
345 | label_sort_higher: Премести по-горе |
|
345 | label_sort_higher: Премести по-горе | |
346 | label_sort_lower: Премести по-долу |
|
346 | label_sort_lower: Премести по-долу | |
347 | label_sort_lowest: Премести най-долу |
|
347 | label_sort_lowest: Премести най-долу | |
348 | label_roadmap: Пътна карта |
|
348 | label_roadmap: Пътна карта | |
349 | label_roadmap_due_in: Излиза след |
|
349 | label_roadmap_due_in: Излиза след | |
350 | label_roadmap_overdue: %s late |
|
350 | label_roadmap_overdue: %s late | |
351 | label_roadmap_no_issues: Няма задачи за тази версия |
|
351 | label_roadmap_no_issues: Няма задачи за тази версия | |
352 | label_search: Търсене |
|
352 | label_search: Търсене | |
353 | label_result: %d резултат |
|
353 | label_result: %d резултат | |
354 | label_result_plural: %d резултати |
|
354 | label_result_plural: %d резултати | |
355 | label_all_words: Всички думи |
|
355 | label_all_words: Всички думи | |
356 | label_wiki: Wiki |
|
356 | label_wiki: Wiki | |
357 | label_wiki_edit: Wiki редакция |
|
357 | label_wiki_edit: Wiki редакция | |
358 | label_wiki_edit_plural: Wiki редакции |
|
358 | label_wiki_edit_plural: Wiki редакции | |
359 | label_wiki_page: Wiki page |
|
359 | label_wiki_page: Wiki page | |
360 | label_wiki_page_plural: Wiki pages |
|
360 | label_wiki_page_plural: Wiki pages | |
361 | label_page_index: Индекс |
|
361 | label_page_index: Индекс | |
362 | label_current_version: Текуща версия |
|
362 | label_current_version: Текуща версия | |
363 | label_preview: Преглед |
|
363 | label_preview: Преглед | |
364 | label_feed_plural: Feeds |
|
364 | label_feed_plural: Feeds | |
365 | label_changes_details: Подробни промени |
|
365 | label_changes_details: Подробни промени | |
366 | label_issue_tracking: Тракинг |
|
366 | label_issue_tracking: Тракинг | |
367 | label_spent_time: Отделено време |
|
367 | label_spent_time: Отделено време | |
368 | label_f_hour: %.2f час |
|
368 | label_f_hour: %.2f час | |
369 | label_f_hour_plural: %.2f часа |
|
369 | label_f_hour_plural: %.2f часа | |
370 | label_time_tracking: Отделяне на време |
|
370 | label_time_tracking: Отделяне на време | |
371 | label_change_plural: Промени |
|
371 | label_change_plural: Промени | |
372 | label_statistics: Статистики |
|
372 | label_statistics: Статистики | |
373 | label_commits_per_month: Commits за месец |
|
373 | label_commits_per_month: Commits за месец | |
374 | label_commits_per_author: Commits за автор |
|
374 | label_commits_per_author: Commits за автор | |
375 | label_view_diff: Виж разликите |
|
375 | label_view_diff: Виж разликите | |
376 | label_diff_inline: хоризонтално |
|
376 | label_diff_inline: хоризонтално | |
377 | label_diff_side_by_side: вертикално |
|
377 | label_diff_side_by_side: вертикално | |
378 | label_options: Опции |
|
378 | label_options: Опции | |
379 | label_copy_workflow_from: Копирай workflow от |
|
379 | label_copy_workflow_from: Копирай workflow от | |
380 | label_permissions_report: Справка за права |
|
380 | label_permissions_report: Справка за права | |
381 | label_watched_issues: Наблюдавани задачи |
|
381 | label_watched_issues: Наблюдавани задачи | |
382 | label_related_issues: Свързани задачи |
|
382 | label_related_issues: Свързани задачи | |
383 | label_applied_status: Промени статуса на |
|
383 | label_applied_status: Промени статуса на | |
384 | label_loading: Зареждане... |
|
384 | label_loading: Зареждане... | |
385 | label_relation_new: New relation |
|
385 | label_relation_new: New relation | |
386 | label_relation_delete: Delete relation |
|
386 | label_relation_delete: Delete relation | |
387 | label_relates_to: related to |
|
387 | label_relates_to: related to | |
388 | label_duplicates: duplicates |
|
388 | label_duplicates: duplicates | |
389 | label_blocks: blocks |
|
389 | label_blocks: blocks | |
390 | label_blocked_by: blocked by |
|
390 | label_blocked_by: blocked by | |
391 | label_precedes: precedes |
|
391 | label_precedes: precedes | |
392 | label_follows: follows |
|
392 | label_follows: follows | |
393 | label_end_to_start: end to start |
|
393 | label_end_to_start: end to start | |
394 | label_end_to_end: end to end |
|
394 | label_end_to_end: end to end | |
395 | label_start_to_start: start to start |
|
395 | label_start_to_start: start to start | |
396 | label_start_to_end: start to end |
|
396 | label_start_to_end: start to end | |
397 | label_stay_logged_in: Stay logged in |
|
397 | label_stay_logged_in: Stay logged in | |
398 | label_disabled: disabled |
|
398 | label_disabled: disabled | |
399 | label_show_completed_versions: Show completed versions |
|
399 | label_show_completed_versions: Show completed versions | |
400 | label_me: me |
|
400 | label_me: me | |
401 | label_board: Forum |
|
401 | label_board: Forum | |
402 | label_board_new: New forum |
|
402 | label_board_new: New forum | |
403 | label_board_plural: Forums |
|
403 | label_board_plural: Forums | |
404 | label_topic_plural: Topics |
|
404 | label_topic_plural: Topics | |
405 | label_message_plural: Messages |
|
405 | label_message_plural: Messages | |
406 | label_message_last: Last message |
|
406 | label_message_last: Last message | |
407 | label_message_new: New message |
|
407 | label_message_new: New message | |
408 | label_reply_plural: Replies |
|
408 | label_reply_plural: Replies | |
409 | label_send_information: Send account information to the user |
|
409 | label_send_information: Send account information to the user | |
410 | label_year: Year |
|
410 | label_year: Year | |
411 | label_month: Month |
|
411 | label_month: Month | |
412 | label_week: Week |
|
412 | label_week: Week | |
413 | label_date_from: From |
|
413 | label_date_from: From | |
414 | label_date_to: To |
|
414 | label_date_to: To | |
415 | label_language_based: Language based |
|
415 | label_language_based: Language based | |
416 | label_sort_by: Sort by "%s" |
|
416 | label_sort_by: Sort by "%s" | |
417 | label_send_test_email: Send a test email |
|
417 | label_send_test_email: Send a test email | |
418 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
418 | label_feeds_access_key_created_on: RSS access key created %s ago | |
419 | label_module_plural: Modules |
|
419 | label_module_plural: Modules | |
420 | label_added_time_by: Added by %s %s ago |
|
420 | label_added_time_by: Added by %s %s ago | |
421 | label_updated_time: Updated %s ago |
|
421 | label_updated_time: Updated %s ago | |
422 | label_jump_to_a_project: Jump to a project... |
|
422 | label_jump_to_a_project: Jump to a project... | |
423 |
|
423 | |||
424 | button_login: Вход |
|
424 | button_login: Вход | |
425 | button_submit: Изпращане |
|
425 | button_submit: Изпращане | |
426 | button_save: Запис |
|
426 | button_save: Запис | |
427 | button_check_all: Маркирай всички |
|
427 | button_check_all: Маркирай всички | |
428 | button_uncheck_all: Изчисти всички |
|
428 | button_uncheck_all: Изчисти всички | |
429 | button_delete: Изтриване |
|
429 | button_delete: Изтриване | |
430 | button_create: Създаване |
|
430 | button_create: Създаване | |
431 | button_test: Тест |
|
431 | button_test: Тест | |
432 | button_edit: Редакция |
|
432 | button_edit: Редакция | |
433 | button_add: Добавяне |
|
433 | button_add: Добавяне | |
434 | button_change: Промяна |
|
434 | button_change: Промяна | |
435 | button_apply: Приложи |
|
435 | button_apply: Приложи | |
436 | button_clear: Изчисти |
|
436 | button_clear: Изчисти | |
437 | button_lock: Заключване |
|
437 | button_lock: Заключване | |
438 | button_unlock: Отключване |
|
438 | button_unlock: Отключване | |
439 | button_download: Download |
|
439 | button_download: Download | |
440 | button_list: Списък |
|
440 | button_list: Списък | |
441 | button_view: Преглед |
|
441 | button_view: Преглед | |
442 | button_move: Преместване |
|
442 | button_move: Преместване | |
443 | button_back: Назад |
|
443 | button_back: Назад | |
444 | button_cancel: Отказ |
|
444 | button_cancel: Отказ | |
445 | button_activate: Активация |
|
445 | button_activate: Активация | |
446 | button_sort: Сортиране |
|
446 | button_sort: Сортиране | |
447 | button_log_time: Отделяне на време |
|
447 | button_log_time: Отделяне на време | |
448 | button_rollback: Върни се към тази ревизия |
|
448 | button_rollback: Върни се към тази ревизия | |
449 | button_watch: Наблюдавай |
|
449 | button_watch: Наблюдавай | |
450 | button_unwatch: Спри наблюдението |
|
450 | button_unwatch: Спри наблюдението | |
451 | button_reply: Reply |
|
451 | button_reply: Reply | |
452 | button_archive: Archive |
|
452 | button_archive: Archive | |
453 | button_unarchive: Unarchive |
|
453 | button_unarchive: Unarchive | |
454 | button_reset: Reset |
|
454 | button_reset: Reset | |
455 | button_rename: Rename |
|
455 | button_rename: Rename | |
456 |
|
456 | |||
457 | status_active: активен |
|
457 | status_active: активен | |
458 | status_registered: регистриран |
|
458 | status_registered: регистриран | |
459 | status_locked: заключен |
|
459 | status_locked: заключен | |
460 |
|
460 | |||
461 | text_select_mail_notifications: Изберете събития за изпращане на e-mail. |
|
461 | text_select_mail_notifications: Изберете събития за изпращане на e-mail. | |
462 | text_regexp_info: пр. ^[A-Z0-9]+$ |
|
462 | text_regexp_info: пр. ^[A-Z0-9]+$ | |
463 | text_min_max_length_info: 0 - без ограничения |
|
463 | text_min_max_length_info: 0 - без ограничения | |
464 | text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него? |
|
464 | text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него? | |
465 | text_workflow_edit: Изберете роля и тракер за да редактирате workflow |
|
465 | text_workflow_edit: Изберете роля и тракер за да редактирате workflow | |
466 | text_are_you_sure: Сигурни ли сте? |
|
466 | text_are_you_sure: Сигурни ли сте? | |
467 | text_journal_changed: промяна от %s на %s |
|
467 | text_journal_changed: промяна от %s на %s | |
468 | text_journal_set_to: установено на %s |
|
468 | text_journal_set_to: установено на %s | |
469 | text_journal_deleted: изтрито |
|
469 | text_journal_deleted: изтрито | |
470 | text_tip_task_begin_day: задача започваща този ден |
|
470 | text_tip_task_begin_day: задача започваща този ден | |
471 | text_tip_task_end_day: задача завършваща този ден |
|
471 | text_tip_task_end_day: задача завършваща този ден | |
472 | text_tip_task_begin_end_day: задача започваща и завършваща този ден |
|
472 | text_tip_task_begin_end_day: задача започваща и завършваща този ден | |
473 | text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.' |
|
473 | text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.' | |
474 | text_caracters_maximum: До %d символа. |
|
474 | text_caracters_maximum: До %d символа. | |
475 | text_length_between: От %d до %d символа. |
|
475 | text_length_between: От %d до %d символа. | |
476 | text_tracker_no_workflow: Няма дефиниран workflow за този тракер |
|
476 | text_tracker_no_workflow: Няма дефиниран workflow за този тракер | |
477 | text_unallowed_characters: Непозволени символи |
|
477 | text_unallowed_characters: Непозволени символи | |
478 | text_comma_separated: Позволено е изброяване (с разделител запетая). |
|
478 | text_comma_separated: Позволено е изброяване (с разделител запетая). | |
479 | text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения |
|
479 | text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения | |
480 | text_issue_added: Публикувана е нова задача с номер %s. |
|
480 | text_issue_added: Публикувана е нова задача с номер %s. | |
481 | text_issue_updated: Задача %s е обновена. |
|
481 | text_issue_updated: Задача %s е обновена. | |
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
484 | text_issue_category_destroy_assignments: Remove category assignments |
|
484 | text_issue_category_destroy_assignments: Remove category assignments | |
485 | text_issue_category_reassign_to: Reassing issues to this category |
|
485 | text_issue_category_reassign_to: Reassing issues to this category | |
486 |
|
486 | |||
487 | default_role_manager: Мениджър |
|
487 | default_role_manager: Мениджър | |
488 | default_role_developper: Разработчик |
|
488 | default_role_developper: Разработчик | |
489 | default_role_reporter: Публикуващ |
|
489 | default_role_reporter: Публикуващ | |
490 | default_tracker_bug: Бъг |
|
490 | default_tracker_bug: Бъг | |
491 | default_tracker_feature: Функционалност |
|
491 | default_tracker_feature: Функционалност | |
492 | default_tracker_support: Поддръжка |
|
492 | default_tracker_support: Поддръжка | |
493 | default_issue_status_new: Нова |
|
493 | default_issue_status_new: Нова | |
494 | default_issue_status_assigned: Възложена |
|
494 | default_issue_status_assigned: Възложена | |
495 | default_issue_status_resolved: Приключена |
|
495 | default_issue_status_resolved: Приключена | |
496 | default_issue_status_feedback: Обратна връзка |
|
496 | default_issue_status_feedback: Обратна връзка | |
497 | default_issue_status_closed: Затворена |
|
497 | default_issue_status_closed: Затворена | |
498 | default_issue_status_rejected: Отхвърлена |
|
498 | default_issue_status_rejected: Отхвърлена | |
499 | default_doc_category_user: Документация за потребителя |
|
499 | default_doc_category_user: Документация за потребителя | |
500 | default_doc_category_tech: Техническа документация |
|
500 | default_doc_category_tech: Техническа документация | |
501 | default_priority_low: Нисък |
|
501 | default_priority_low: Нисък | |
502 | default_priority_normal: Нормален |
|
502 | default_priority_normal: Нормален | |
503 | default_priority_high: Висок |
|
503 | default_priority_high: Висок | |
504 | default_priority_urgent: Спешен |
|
504 | default_priority_urgent: Спешен | |
505 | default_priority_immediate: Веднага |
|
505 | default_priority_immediate: Веднага | |
506 | default_activity_design: Дизайн |
|
506 | default_activity_design: Дизайн | |
507 | default_activity_development: Разработка |
|
507 | default_activity_development: Разработка | |
508 |
|
508 | |||
509 | enumeration_issue_priorities: Приоритети на задачи |
|
509 | enumeration_issue_priorities: Приоритети на задачи | |
510 | enumeration_doc_categories: Категории документи |
|
510 | enumeration_doc_categories: Категории документи | |
511 | enumeration_activities: Дейности (time tracking) |
|
511 | enumeration_activities: Дейности (time tracking) | |
|
512 | label_file_plural: Files | |||
|
513 | label_changeset_plural: Changesets |
@@ -1,511 +1,513 | |||||
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 Tage |
|
9 | actionview_datehelper_time_in_words_day_plural: %d Tage | |
10 | actionview_datehelper_time_in_words_hour_about: ungefähr eine Stunde |
|
10 | actionview_datehelper_time_in_words_hour_about: ungefähr eine 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 eine Stunde |
|
12 | actionview_datehelper_time_in_words_hour_about_single: ungefähr eine 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: halbe Minute |
|
14 | actionview_datehelper_time_in_words_minute_half: halbe Minute | |
15 | actionview_datehelper_time_in_words_minute_less_than: weniger als eine Minute |
|
15 | actionview_datehelper_time_in_words_minute_less_than: weniger als eine 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 eine Sekunde |
|
18 | actionview_datehelper_time_in_words_second_less_than: Weniger als eine 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 |
|
54 | |||
55 | notice_account_updated: Konto wurde erfolgreich aktualisiert. |
|
55 | notice_account_updated: Konto wurde erfolgreich aktualisiert. | |
56 | notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig |
|
56 | notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig | |
57 | notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert. |
|
57 | notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert. | |
58 | notice_account_wrong_password: Falsches Kennwort |
|
58 | notice_account_wrong_password: Falsches Kennwort | |
59 | notice_account_register_done: Konto wurde erfolgreich angelegt. |
|
59 | notice_account_register_done: Konto wurde erfolgreich angelegt. | |
60 | notice_account_unknown_email: Unbekannter Benutzer. |
|
60 | notice_account_unknown_email: Unbekannter Benutzer. | |
61 | notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern. |
|
61 | notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern. | |
62 | notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt. |
|
62 | notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt. | |
63 | notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden. |
|
63 | notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden. | |
64 | notice_successful_create: Erfolgreich angelegt |
|
64 | notice_successful_create: Erfolgreich angelegt | |
65 | notice_successful_update: Erfolgreich aktualisiert. |
|
65 | notice_successful_update: Erfolgreich aktualisiert. | |
66 | notice_successful_delete: Erfolgreich gelöscht. |
|
66 | notice_successful_delete: Erfolgreich gelöscht. | |
67 | notice_successful_connection: Verbindung erfolgreich. |
|
67 | notice_successful_connection: Verbindung erfolgreich. | |
68 | notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden. |
|
68 | notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden. | |
69 | notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert. |
|
69 | notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert. | |
70 | notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv. |
|
70 | notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv. | |
71 | notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen. |
|
71 | notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen. | |
72 | notice_email_sent: Eine E-Mail wurde an %s gesendet. |
|
72 | notice_email_sent: Eine E-Mail wurde an %s gesendet. | |
73 | notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s). |
|
73 | notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s). | |
74 | notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt. |
|
74 | notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt. | |
75 |
|
75 | |||
76 | mail_subject_lost_password: Ihr Redmine Kennwort |
|
76 | mail_subject_lost_password: Ihr Redmine Kennwort | |
77 | mail_subject_register: Redmine Kontoaktivierung |
|
77 | mail_subject_register: Redmine Kontoaktivierung | |
78 |
|
78 | |||
79 | gui_validation_error: 1 Fehler |
|
79 | gui_validation_error: 1 Fehler | |
80 | gui_validation_error_plural: %d Fehler |
|
80 | gui_validation_error_plural: %d Fehler | |
81 |
|
81 | |||
82 | field_name: Name |
|
82 | field_name: Name | |
83 | field_description: Beschreibung |
|
83 | field_description: Beschreibung | |
84 | field_summary: Zusammenfassung |
|
84 | field_summary: Zusammenfassung | |
85 | field_is_required: Erforderlich |
|
85 | field_is_required: Erforderlich | |
86 | field_firstname: Vorname |
|
86 | field_firstname: Vorname | |
87 | field_lastname: Nachname |
|
87 | field_lastname: Nachname | |
88 | field_mail: Email |
|
88 | field_mail: Email | |
89 | field_filename: Datei |
|
89 | field_filename: Datei | |
90 | field_filesize: Größe |
|
90 | field_filesize: Größe | |
91 | field_downloads: Downloads |
|
91 | field_downloads: Downloads | |
92 | field_author: Autor |
|
92 | field_author: Autor | |
93 | field_created_on: Angelegt |
|
93 | field_created_on: Angelegt | |
94 | field_updated_on: Aktualisiert |
|
94 | field_updated_on: Aktualisiert | |
95 | field_field_format: Format |
|
95 | field_field_format: Format | |
96 | field_is_for_all: Für alle Projekte |
|
96 | field_is_for_all: Für alle Projekte | |
97 | field_possible_values: Mögliche Werte |
|
97 | field_possible_values: Mögliche Werte | |
98 | field_regexp: Regulärer Ausdruck |
|
98 | field_regexp: Regulärer Ausdruck | |
99 | field_min_length: Minimale Länge |
|
99 | field_min_length: Minimale Länge | |
100 | field_max_length: Maximale Länge |
|
100 | field_max_length: Maximale Länge | |
101 | field_value: Wert |
|
101 | field_value: Wert | |
102 | field_category: Kategorie |
|
102 | field_category: Kategorie | |
103 | field_title: Titel |
|
103 | field_title: Titel | |
104 | field_project: Projekt |
|
104 | field_project: Projekt | |
105 | field_issue: Ticket |
|
105 | field_issue: Ticket | |
106 | field_status: Status |
|
106 | field_status: Status | |
107 | field_notes: Kommentare |
|
107 | field_notes: Kommentare | |
108 | field_is_closed: Problem erledigt |
|
108 | field_is_closed: Problem erledigt | |
109 | field_is_default: Default |
|
109 | field_is_default: Default | |
110 | field_html_color: Farbe |
|
110 | field_html_color: Farbe | |
111 | field_tracker: Tracker |
|
111 | field_tracker: Tracker | |
112 | field_subject: Thema |
|
112 | field_subject: Thema | |
113 | field_due_date: Abgabedatum |
|
113 | field_due_date: Abgabedatum | |
114 | field_assigned_to: Zugewiesen an |
|
114 | field_assigned_to: Zugewiesen an | |
115 | field_priority: Priorität |
|
115 | field_priority: Priorität | |
116 | field_fixed_version: Erledigt in Version |
|
116 | field_fixed_version: Erledigt in Version | |
117 | field_user: Benutzer |
|
117 | field_user: Benutzer | |
118 | field_role: Rolle |
|
118 | field_role: Rolle | |
119 | field_homepage: Startseite |
|
119 | field_homepage: Startseite | |
120 | field_is_public: Öffentlich |
|
120 | field_is_public: Öffentlich | |
121 | field_parent: Unterprojekt von |
|
121 | field_parent: Unterprojekt von | |
122 | field_is_in_chlog: Ansicht im Change-Log |
|
122 | field_is_in_chlog: Ansicht im Change-Log | |
123 | field_is_in_roadmap: Ansicht in der Roadmap |
|
123 | field_is_in_roadmap: Ansicht in der Roadmap | |
124 | field_login: Mitgliedsname |
|
124 | field_login: Mitgliedsname | |
125 | field_mail_notification: Mailbenachrichtigung |
|
125 | field_mail_notification: Mailbenachrichtigung | |
126 | field_admin: Administrator |
|
126 | field_admin: Administrator | |
127 | field_last_login_on: Letzte Anmeldung |
|
127 | field_last_login_on: Letzte Anmeldung | |
128 | field_language: Sprache |
|
128 | field_language: Sprache | |
129 | field_effective_date: Datum |
|
129 | field_effective_date: Datum | |
130 | field_password: Kennwort |
|
130 | field_password: Kennwort | |
131 | field_new_password: Neues Kennwort |
|
131 | field_new_password: Neues Kennwort | |
132 | field_password_confirmation: Bestätigung |
|
132 | field_password_confirmation: Bestätigung | |
133 | field_version: Version |
|
133 | field_version: Version | |
134 | field_type: Typ |
|
134 | field_type: Typ | |
135 | field_host: Host |
|
135 | field_host: Host | |
136 | field_port: Port |
|
136 | field_port: Port | |
137 | field_account: Konto |
|
137 | field_account: Konto | |
138 | field_base_dn: Base DN |
|
138 | field_base_dn: Base DN | |
139 | field_attr_login: Mitgliedsname-Attribut |
|
139 | field_attr_login: Mitgliedsname-Attribut | |
140 | field_attr_firstname: Vorname-Attribut |
|
140 | field_attr_firstname: Vorname-Attribut | |
141 | field_attr_lastname: Name-Attribut |
|
141 | field_attr_lastname: Name-Attribut | |
142 | field_attr_mail: E-Mail-Attribut |
|
142 | field_attr_mail: E-Mail-Attribut | |
143 | field_onthefly: On-the-fly-Benutzererstellung |
|
143 | field_onthefly: On-the-fly-Benutzererstellung | |
144 | field_start_date: Beginn |
|
144 | field_start_date: Beginn | |
145 | field_done_ratio: %% erledigt |
|
145 | field_done_ratio: %% erledigt | |
146 | field_auth_source: Authentifizierungs-Modus |
|
146 | field_auth_source: Authentifizierungs-Modus | |
147 | field_hide_mail: Email-Adresse nicht anzeigen |
|
147 | field_hide_mail: Email-Adresse nicht anzeigen | |
148 | field_comments: Kommentar |
|
148 | field_comments: Kommentar | |
149 | field_url: URL |
|
149 | field_url: URL | |
150 | field_start_page: Hauptseite |
|
150 | field_start_page: Hauptseite | |
151 | field_subproject: Subprojekt von |
|
151 | field_subproject: Subprojekt von | |
152 | field_hours: Stunden |
|
152 | field_hours: Stunden | |
153 | field_activity: Aktivität |
|
153 | field_activity: Aktivität | |
154 | field_spent_on: Datum |
|
154 | field_spent_on: Datum | |
155 | field_identifier: Kennung |
|
155 | field_identifier: Kennung | |
156 | field_is_filter: Als Fiter benutzen |
|
156 | field_is_filter: Als Fiter benutzen | |
157 | field_issue_to_id: Zugehöriges Ticket |
|
157 | field_issue_to_id: Zugehöriges Ticket | |
158 | field_delay: Pufferzeit |
|
158 | field_delay: Pufferzeit | |
159 | field_assignable: Tickets können dieser Rolle zugewiesen werden |
|
159 | field_assignable: Tickets können dieser Rolle zugewiesen werden | |
160 | field_redirect_existing_links: Existierende Links umleiten |
|
160 | field_redirect_existing_links: Existierende Links umleiten | |
161 | field_estimated_hours: Geschätzter Aufwand |
|
161 | field_estimated_hours: Geschätzter Aufwand | |
162 |
|
162 | |||
163 | setting_app_title: Applikations-Titel |
|
163 | setting_app_title: Applikations-Titel | |
164 | setting_app_subtitle: Applikations-Untertitel |
|
164 | setting_app_subtitle: Applikations-Untertitel | |
165 | setting_welcome_text: Willkommenstext |
|
165 | setting_welcome_text: Willkommenstext | |
166 | setting_default_language: Default-Sprache |
|
166 | setting_default_language: Default-Sprache | |
167 | setting_login_required: Authentisierung erforderlich |
|
167 | setting_login_required: Authentisierung erforderlich | |
168 | setting_self_registration: Anmeldung ermöglicht |
|
168 | setting_self_registration: Anmeldung ermöglicht | |
169 | setting_attachment_max_size: Max. Dateigröße |
|
169 | setting_attachment_max_size: Max. Dateigröße | |
170 | setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export |
|
170 | setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export | |
171 | setting_mail_from: E-Mail-Absender |
|
171 | setting_mail_from: E-Mail-Absender | |
172 | setting_host_name: Hostname |
|
172 | setting_host_name: Hostname | |
173 | setting_text_formatting: Textformatierung |
|
173 | setting_text_formatting: Textformatierung | |
174 | setting_wiki_compression: Wiki-Historie komprimieren |
|
174 | setting_wiki_compression: Wiki-Historie komprimieren | |
175 | setting_feeds_limit: Feed-Inhalt begrenzen |
|
175 | setting_feeds_limit: Feed-Inhalt begrenzen | |
176 | setting_autofetch_changesets: Commits automatisch abrufen |
|
176 | setting_autofetch_changesets: Commits automatisch abrufen | |
177 | setting_sys_api_enabled: Webservice für Repository-Verwaltung benutzen |
|
177 | setting_sys_api_enabled: Webservice für Repository-Verwaltung benutzen | |
178 | setting_commit_ref_keywords: Schlüsselwörter (Beziehungen) |
|
178 | setting_commit_ref_keywords: Schlüsselwörter (Beziehungen) | |
179 | setting_commit_fix_keywords: Schlüsselwörter (Status) |
|
179 | setting_commit_fix_keywords: Schlüsselwörter (Status) | |
180 | setting_autologin: Automatische Anmeldung |
|
180 | setting_autologin: Automatische Anmeldung | |
181 | setting_date_format: Datumsformat |
|
181 | setting_date_format: Datumsformat | |
182 | setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben |
|
182 | setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben | |
183 |
|
183 | |||
184 | label_user: Benutzer |
|
184 | label_user: Benutzer | |
185 | label_user_plural: Benutzer |
|
185 | label_user_plural: Benutzer | |
186 | label_user_new: Neuer Benutzer |
|
186 | label_user_new: Neuer Benutzer | |
187 | label_project: Projekt |
|
187 | label_project: Projekt | |
188 | label_project_new: Neues Projekt |
|
188 | label_project_new: Neues Projekt | |
189 | label_project_plural: Projekte |
|
189 | label_project_plural: Projekte | |
190 | label_project_all: Alle Projekte |
|
190 | label_project_all: Alle Projekte | |
191 | label_project_latest: Neueste Projekte |
|
191 | label_project_latest: Neueste Projekte | |
192 | label_issue: Ticket |
|
192 | label_issue: Ticket | |
193 | label_issue_new: Neues Ticket |
|
193 | label_issue_new: Neues Ticket | |
194 | label_issue_plural: Tickets |
|
194 | label_issue_plural: Tickets | |
195 | label_issue_view_all: Alle Tickets ansehen |
|
195 | label_issue_view_all: Alle Tickets ansehen | |
196 | label_document: Dokument |
|
196 | label_document: Dokument | |
197 | label_document_new: Neues Dokument |
|
197 | label_document_new: Neues Dokument | |
198 | label_document_plural: Dokumente |
|
198 | label_document_plural: Dokumente | |
199 | label_role: Rolle |
|
199 | label_role: Rolle | |
200 | label_role_plural: Rollen |
|
200 | label_role_plural: Rollen | |
201 | label_role_new: Neue Rolle |
|
201 | label_role_new: Neue Rolle | |
202 | label_role_and_permissions: Rollen und Rechte |
|
202 | label_role_and_permissions: Rollen und Rechte | |
203 | label_member: Mitglied |
|
203 | label_member: Mitglied | |
204 | label_member_new: Neues Mitglied |
|
204 | label_member_new: Neues Mitglied | |
205 | label_member_plural: Mitglieder |
|
205 | label_member_plural: Mitglieder | |
206 | label_tracker: Tracker |
|
206 | label_tracker: Tracker | |
207 | label_tracker_plural: Tracker |
|
207 | label_tracker_plural: Tracker | |
208 | label_tracker_new: Neuer Tracker |
|
208 | label_tracker_new: Neuer Tracker | |
209 | label_workflow: Workflow |
|
209 | label_workflow: Workflow | |
210 | label_issue_status: Ticket-Status |
|
210 | label_issue_status: Ticket-Status | |
211 | label_issue_status_plural: Ticket-Status |
|
211 | label_issue_status_plural: Ticket-Status | |
212 | label_issue_status_new: Neuer Status |
|
212 | label_issue_status_new: Neuer Status | |
213 | label_issue_category: Ticket-Kategorie |
|
213 | label_issue_category: Ticket-Kategorie | |
214 | label_issue_category_plural: Ticket-Kategorien |
|
214 | label_issue_category_plural: Ticket-Kategorien | |
215 | label_issue_category_new: Neue Kategorie |
|
215 | label_issue_category_new: Neue Kategorie | |
216 | label_custom_field: Benutzerdefiniertes Feld |
|
216 | label_custom_field: Benutzerdefiniertes Feld | |
217 | label_custom_field_plural: Benutzerdefinierte Felder |
|
217 | label_custom_field_plural: Benutzerdefinierte Felder | |
218 | label_custom_field_new: Neues Feld |
|
218 | label_custom_field_new: Neues Feld | |
219 | label_enumerations: Aufzählungen |
|
219 | label_enumerations: Aufzählungen | |
220 | label_enumeration_new: Neuer Wert |
|
220 | label_enumeration_new: Neuer Wert | |
221 | label_information: Information |
|
221 | label_information: Information | |
222 | label_information_plural: Informationen |
|
222 | label_information_plural: Informationen | |
223 | label_please_login: Anmelden |
|
223 | label_please_login: Anmelden | |
224 | label_register: Registrieren |
|
224 | label_register: Registrieren | |
225 | label_password_lost: Kennwort vergessen |
|
225 | label_password_lost: Kennwort vergessen | |
226 | label_home: Hauptseite |
|
226 | label_home: Hauptseite | |
227 | label_my_page: Meine Seite |
|
227 | label_my_page: Meine Seite | |
228 | label_my_account: Mein Konto |
|
228 | label_my_account: Mein Konto | |
229 | label_my_projects: Meine Projekte |
|
229 | label_my_projects: Meine Projekte | |
230 | label_administration: Administration |
|
230 | label_administration: Administration | |
231 | label_login: Anmelden |
|
231 | label_login: Anmelden | |
232 | label_logout: Abmelden |
|
232 | label_logout: Abmelden | |
233 | label_help: Hilfe |
|
233 | label_help: Hilfe | |
234 | label_reported_issues: Gemeldete Tickets |
|
234 | label_reported_issues: Gemeldete Tickets | |
235 | label_assigned_to_me_issues: Mir zugewiesen |
|
235 | label_assigned_to_me_issues: Mir zugewiesen | |
236 | label_last_login: Letzte Anmeldung |
|
236 | label_last_login: Letzte Anmeldung | |
237 | label_last_updates: zuletzt aktualisiert |
|
237 | label_last_updates: zuletzt aktualisiert | |
238 | label_last_updates_plural: %d zuletzt aktualisierten |
|
238 | label_last_updates_plural: %d zuletzt aktualisierten | |
239 | label_registered_on: Angemeldet am |
|
239 | label_registered_on: Angemeldet am | |
240 | label_activity: Aktivität |
|
240 | label_activity: Aktivität | |
241 | label_new: Neu |
|
241 | label_new: Neu | |
242 | label_logged_as: Angemeldet als |
|
242 | label_logged_as: Angemeldet als | |
243 | label_environment: Environment |
|
243 | label_environment: Environment | |
244 | label_authentication: Authentifizierung |
|
244 | label_authentication: Authentifizierung | |
245 | label_auth_source: Authentifizierungs-Modus |
|
245 | label_auth_source: Authentifizierungs-Modus | |
246 | label_auth_source_new: Neuer Authentifizierungs-Modus |
|
246 | label_auth_source_new: Neuer Authentifizierungs-Modus | |
247 | label_auth_source_plural: Authentifizierungs-Arten |
|
247 | label_auth_source_plural: Authentifizierungs-Arten | |
248 | label_subproject_plural: Unterprojekte |
|
248 | label_subproject_plural: Unterprojekte | |
249 | label_min_max_length: Länge (Min. - Max.) |
|
249 | label_min_max_length: Länge (Min. - Max.) | |
250 | label_list: Liste |
|
250 | label_list: Liste | |
251 | label_date: Datum |
|
251 | label_date: Datum | |
252 | label_integer: Zahl |
|
252 | label_integer: Zahl | |
253 | label_boolean: Boolean |
|
253 | label_boolean: Boolean | |
254 | label_string: Text |
|
254 | label_string: Text | |
255 | label_text: Langer Text |
|
255 | label_text: Langer Text | |
256 | label_attribute: Attribut |
|
256 | label_attribute: Attribut | |
257 | label_attribute_plural: Attribute |
|
257 | label_attribute_plural: Attribute | |
258 | label_download: %d Download |
|
258 | label_download: %d Download | |
259 | label_download_plural: %d Downloads |
|
259 | label_download_plural: %d Downloads | |
260 | label_no_data: Nichts anzuzeigen |
|
260 | label_no_data: Nichts anzuzeigen | |
261 | label_change_status: Statuswechsel |
|
261 | label_change_status: Statuswechsel | |
262 | label_history: Historie |
|
262 | label_history: Historie | |
263 | label_attachment: Datei |
|
263 | label_attachment: Datei | |
264 | label_attachment_new: Neue Datei |
|
264 | label_attachment_new: Neue Datei | |
265 | label_attachment_delete: Anhang löschen |
|
265 | label_attachment_delete: Anhang löschen | |
266 | label_attachment_plural: Dateien |
|
266 | label_attachment_plural: Dateien | |
267 | label_report: Bericht |
|
267 | label_report: Bericht | |
268 | label_report_plural: Berichte |
|
268 | label_report_plural: Berichte | |
269 | label_news: News |
|
269 | label_news: News | |
270 | label_news_new: News hinzufügen |
|
270 | label_news_new: News hinzufügen | |
271 | label_news_plural: News |
|
271 | label_news_plural: News | |
272 | label_news_latest: Letzte News |
|
272 | label_news_latest: Letzte News | |
273 | label_news_view_all: Alle News anzeigen |
|
273 | label_news_view_all: Alle News anzeigen | |
274 | label_change_log: Change-Log |
|
274 | label_change_log: Change-Log | |
275 | label_settings: Konfiguration |
|
275 | label_settings: Konfiguration | |
276 | label_overview: Übersicht |
|
276 | label_overview: Übersicht | |
277 | label_version: Version |
|
277 | label_version: Version | |
278 | label_version_new: Neue Version |
|
278 | label_version_new: Neue Version | |
279 | label_version_plural: Versionen |
|
279 | label_version_plural: Versionen | |
280 | label_confirmation: Bestätigung |
|
280 | label_confirmation: Bestätigung | |
281 | label_export_to: Export zu |
|
281 | label_export_to: Export zu | |
282 | label_read: Lesen... |
|
282 | label_read: Lesen... | |
283 | label_public_projects: Öffentliche Projekte |
|
283 | label_public_projects: Öffentliche Projekte | |
284 | label_open_issues: offen |
|
284 | label_open_issues: offen | |
285 | label_open_issues_plural: offen |
|
285 | label_open_issues_plural: offen | |
286 | label_closed_issues: geschlossen |
|
286 | label_closed_issues: geschlossen | |
287 | label_closed_issues_plural: geschlossen |
|
287 | label_closed_issues_plural: geschlossen | |
288 | label_total: Gesamtzahl |
|
288 | label_total: Gesamtzahl | |
289 | label_permissions: Berechtigungen |
|
289 | label_permissions: Berechtigungen | |
290 | label_current_status: Gegenwärtiger Status |
|
290 | label_current_status: Gegenwärtiger Status | |
291 | label_new_statuses_allowed: Neue Berechtigungen |
|
291 | label_new_statuses_allowed: Neue Berechtigungen | |
292 | label_all: alle |
|
292 | label_all: alle | |
293 | label_none: kein |
|
293 | label_none: kein | |
294 | label_next: Weiter |
|
294 | label_next: Weiter | |
295 | label_previous: Zurück |
|
295 | label_previous: Zurück | |
296 | label_used_by: Benutzt von |
|
296 | label_used_by: Benutzt von | |
297 | label_details: Details |
|
297 | label_details: Details | |
298 | label_add_note: Kommentar hinzufügen |
|
298 | label_add_note: Kommentar hinzufügen | |
299 | label_per_page: Pro Seite |
|
299 | label_per_page: Pro Seite | |
300 | label_calendar: Kalender |
|
300 | label_calendar: Kalender | |
301 | label_months_from: Monate ab |
|
301 | label_months_from: Monate ab | |
302 | label_gantt: Gantt |
|
302 | label_gantt: Gantt | |
303 | label_internal: Intern |
|
303 | label_internal: Intern | |
304 | label_last_changes: %d letzte Änderungen |
|
304 | label_last_changes: %d letzte Änderungen | |
305 | label_change_view_all: Alle Änderungen ansehen |
|
305 | label_change_view_all: Alle Änderungen ansehen | |
306 | label_personalize_page: Diese Seite anpassen |
|
306 | label_personalize_page: Diese Seite anpassen | |
307 | label_comment: Kommentar |
|
307 | label_comment: Kommentar | |
308 | label_comment_plural: Kommentare |
|
308 | label_comment_plural: Kommentare | |
309 | label_comment_add: Kommentar hinzufügen |
|
309 | label_comment_add: Kommentar hinzufügen | |
310 | label_comment_added: Kommentar hinzugefügt |
|
310 | label_comment_added: Kommentar hinzugefügt | |
311 | label_comment_delete: Kommentar löschen |
|
311 | label_comment_delete: Kommentar löschen | |
312 | label_query: Benutzerdefinierte Abfrage |
|
312 | label_query: Benutzerdefinierte Abfrage | |
313 | label_query_plural: Benutzerdefinierte Berichte |
|
313 | label_query_plural: Benutzerdefinierte Berichte | |
314 | label_query_new: Neuer Bericht |
|
314 | label_query_new: Neuer Bericht | |
315 | label_filter_add: Filter hinzufügen |
|
315 | label_filter_add: Filter hinzufügen | |
316 | label_filter_plural: Filter |
|
316 | label_filter_plural: Filter | |
317 | label_equals: ist |
|
317 | label_equals: ist | |
318 | label_not_equals: ist nicht |
|
318 | label_not_equals: ist nicht | |
319 | label_in_less_than: in weniger als |
|
319 | label_in_less_than: in weniger als | |
320 | label_in_more_than: in mehr als |
|
320 | label_in_more_than: in mehr als | |
321 | label_in: an |
|
321 | label_in: an | |
322 | label_today: heute |
|
322 | label_today: heute | |
323 | label_this_week: diese Woche |
|
323 | label_this_week: diese Woche | |
324 | label_less_than_ago: vor weniger als |
|
324 | label_less_than_ago: vor weniger als | |
325 | label_more_than_ago: vor mehr als |
|
325 | label_more_than_ago: vor mehr als | |
326 | label_ago: vor |
|
326 | label_ago: vor | |
327 | label_contains: enthält |
|
327 | label_contains: enthält | |
328 | label_not_contains: enthält nicht |
|
328 | label_not_contains: enthält nicht | |
329 | label_day_plural: Tage |
|
329 | label_day_plural: Tage | |
330 | label_repository: Projektarchiv |
|
330 | label_repository: Projektarchiv | |
331 | label_browse: Codebrowser |
|
331 | label_browse: Codebrowser | |
332 | label_modification: %d Änderung |
|
332 | label_modification: %d Änderung | |
333 | label_modification_plural: %d Änderungen |
|
333 | label_modification_plural: %d Änderungen | |
334 | label_revision: Revision |
|
334 | label_revision: Revision | |
335 | label_revision_plural: Revisionen |
|
335 | label_revision_plural: Revisionen | |
336 | label_added: hinzugefügt |
|
336 | label_added: hinzugefügt | |
337 | label_modified: geändert |
|
337 | label_modified: geändert | |
338 | label_deleted: gelöscht |
|
338 | label_deleted: gelöscht | |
339 | label_latest_revision: Aktuellste Revision |
|
339 | label_latest_revision: Aktuellste Revision | |
340 | label_latest_revision_plural: Aktuellste Revisionen |
|
340 | label_latest_revision_plural: Aktuellste Revisionen | |
341 | label_view_revisions: Revisionen anzeigen |
|
341 | label_view_revisions: Revisionen anzeigen | |
342 | label_max_size: Maximale Größe |
|
342 | label_max_size: Maximale Größe | |
343 | label_on: von |
|
343 | label_on: von | |
344 | label_sort_highest: Anfang |
|
344 | label_sort_highest: Anfang | |
345 | label_sort_higher: eins höher |
|
345 | label_sort_higher: eins höher | |
346 | label_sort_lower: eins tiefer |
|
346 | label_sort_lower: eins tiefer | |
347 | label_sort_lowest: Ende |
|
347 | label_sort_lowest: Ende | |
348 | label_roadmap: Roadmap |
|
348 | label_roadmap: Roadmap | |
349 | label_roadmap_due_in: Fällig in |
|
349 | label_roadmap_due_in: Fällig in | |
350 | label_roadmap_overdue: %s verspätet |
|
350 | label_roadmap_overdue: %s verspätet | |
351 | label_roadmap_no_issues: Keine Tickets für diese Version |
|
351 | label_roadmap_no_issues: Keine Tickets für diese Version | |
352 | label_search: Suche |
|
352 | label_search: Suche | |
353 | label_result: %d Resultat |
|
353 | label_result: %d Resultat | |
354 | label_result_plural: %d Resultate |
|
354 | label_result_plural: %d Resultate | |
355 | label_all_words: Alle Wörter |
|
355 | label_all_words: Alle Wörter | |
356 | label_wiki: Wiki |
|
356 | label_wiki: Wiki | |
357 | label_wiki_edit: Wiki-Bearbeitung |
|
357 | label_wiki_edit: Wiki-Bearbeitung | |
358 | label_wiki_edit_plural: Wiki-Bearbeitungen |
|
358 | label_wiki_edit_plural: Wiki-Bearbeitungen | |
359 | label_wiki_page: Wiki-Seite |
|
359 | label_wiki_page: Wiki-Seite | |
360 | label_wiki_page_plural: Wiki-Seiten |
|
360 | label_wiki_page_plural: Wiki-Seiten | |
361 | label_page_index: Index |
|
361 | label_page_index: Index | |
362 | label_current_version: Gegenwärtige Version |
|
362 | label_current_version: Gegenwärtige Version | |
363 | label_preview: Vorschau |
|
363 | label_preview: Vorschau | |
364 | label_feed_plural: Feeds |
|
364 | label_feed_plural: Feeds | |
365 | label_changes_details: Details aller Änderungen |
|
365 | label_changes_details: Details aller Änderungen | |
366 | label_issue_tracking: Tickets |
|
366 | label_issue_tracking: Tickets | |
367 | label_spent_time: Aufgewendete Zeit |
|
367 | label_spent_time: Aufgewendete Zeit | |
368 | label_f_hour: %.2f Stunde |
|
368 | label_f_hour: %.2f Stunde | |
369 | label_f_hour_plural: %.2f Stunden |
|
369 | label_f_hour_plural: %.2f Stunden | |
370 | label_time_tracking: Zeiterfassung |
|
370 | label_time_tracking: Zeiterfassung | |
371 | label_change_plural: Änderungen |
|
371 | label_change_plural: Änderungen | |
372 | label_statistics: Statistiken |
|
372 | label_statistics: Statistiken | |
373 | label_commits_per_month: Übertragungen pro Monat |
|
373 | label_commits_per_month: Übertragungen pro Monat | |
374 | label_commits_per_author: Übertragungen pro Autor |
|
374 | label_commits_per_author: Übertragungen pro Autor | |
375 | label_view_diff: Unterschiede anzeigen |
|
375 | label_view_diff: Unterschiede anzeigen | |
376 | label_diff_inline: inline |
|
376 | label_diff_inline: inline | |
377 | label_diff_side_by_side: nebeneinander |
|
377 | label_diff_side_by_side: nebeneinander | |
378 | label_options: Optionen |
|
378 | label_options: Optionen | |
379 | label_copy_workflow_from: Workflow kopieren von |
|
379 | label_copy_workflow_from: Workflow kopieren von | |
380 | label_permissions_report: Berechtigungsübersicht |
|
380 | label_permissions_report: Berechtigungsübersicht | |
381 | label_watched_issues: Beobachtete Tickets |
|
381 | label_watched_issues: Beobachtete Tickets | |
382 | label_related_issues: Zugehörige Tickets |
|
382 | label_related_issues: Zugehörige Tickets | |
383 | label_applied_status: Zugewiesener Status |
|
383 | label_applied_status: Zugewiesener Status | |
384 | label_loading: Lade... |
|
384 | label_loading: Lade... | |
385 | label_relation_new: Neue Beziehung |
|
385 | label_relation_new: Neue Beziehung | |
386 | label_relation_delete: Beziehung löschen |
|
386 | label_relation_delete: Beziehung löschen | |
387 | label_relates_to: Beziehung mit |
|
387 | label_relates_to: Beziehung mit | |
388 | label_duplicates: Duplikat von |
|
388 | label_duplicates: Duplikat von | |
389 | label_blocks: Blockiert |
|
389 | label_blocks: Blockiert | |
390 | label_blocked_by: Blockiert durch |
|
390 | label_blocked_by: Blockiert durch | |
391 | label_precedes: Vorgänger von |
|
391 | label_precedes: Vorgänger von | |
392 | label_follows: folgt |
|
392 | label_follows: folgt | |
393 | label_end_to_start: Ende - Anfang |
|
393 | label_end_to_start: Ende - Anfang | |
394 | label_end_to_end: Ende - Ende |
|
394 | label_end_to_end: Ende - Ende | |
395 | label_start_to_start: Anfang - Anfang |
|
395 | label_start_to_start: Anfang - Anfang | |
396 | label_start_to_end: Anfang - Ende |
|
396 | label_start_to_end: Anfang - Ende | |
397 | label_stay_logged_in: Angemeldet bleiben |
|
397 | label_stay_logged_in: Angemeldet bleiben | |
398 | label_disabled: gesperrt |
|
398 | label_disabled: gesperrt | |
399 | label_show_completed_versions: Abgeschlossene Versionen anzeigen |
|
399 | label_show_completed_versions: Abgeschlossene Versionen anzeigen | |
400 | label_me: ich |
|
400 | label_me: ich | |
401 | label_board: Forum |
|
401 | label_board: Forum | |
402 | label_board_new: Neues Forum |
|
402 | label_board_new: Neues Forum | |
403 | label_board_plural: Foren |
|
403 | label_board_plural: Foren | |
404 | label_topic_plural: Themen |
|
404 | label_topic_plural: Themen | |
405 | label_message_plural: Nachrichten |
|
405 | label_message_plural: Nachrichten | |
406 | label_message_last: Letzte Nachricht |
|
406 | label_message_last: Letzte Nachricht | |
407 | label_message_new: Neue Nachricht |
|
407 | label_message_new: Neue Nachricht | |
408 | label_reply_plural: Antworten |
|
408 | label_reply_plural: Antworten | |
409 | label_send_information: Sende Kontoinformationen zum Benutzer |
|
409 | label_send_information: Sende Kontoinformationen zum Benutzer | |
410 | label_year: Jahr |
|
410 | label_year: Jahr | |
411 | label_month: Monat |
|
411 | label_month: Monat | |
412 | label_week: Woche |
|
412 | label_week: Woche | |
413 | label_date_from: Von |
|
413 | label_date_from: Von | |
414 | label_date_to: Bis |
|
414 | label_date_to: Bis | |
415 | label_language_based: Sprachabhängig |
|
415 | label_language_based: Sprachabhängig | |
416 | label_sort_by: Sortiert nach "%s" |
|
416 | label_sort_by: Sortiert nach "%s" | |
417 | label_send_test_email: Test-E-Mail senden |
|
417 | label_send_test_email: Test-E-Mail senden | |
418 | label_feeds_access_key_created_on: RSS-Zugriffsschlüssel vor %s erstellt |
|
418 | label_feeds_access_key_created_on: RSS-Zugriffsschlüssel vor %s erstellt | |
419 | label_module_plural: Module |
|
419 | label_module_plural: Module | |
420 | label_added_time_by: Von %s vor %s hinzugefügt |
|
420 | label_added_time_by: Von %s vor %s hinzugefügt | |
421 | label_updated_time: Vor %s aktualisiert |
|
421 | label_updated_time: Vor %s aktualisiert | |
422 | label_jump_to_a_project: Jump to a project... |
|
422 | label_jump_to_a_project: Jump to a project... | |
423 |
|
423 | |||
424 | button_login: Anmelden |
|
424 | button_login: Anmelden | |
425 | button_submit: OK |
|
425 | button_submit: OK | |
426 | button_save: Speichern |
|
426 | button_save: Speichern | |
427 | button_check_all: Alles auswählen |
|
427 | button_check_all: Alles auswählen | |
428 | button_uncheck_all: Alles abwählen |
|
428 | button_uncheck_all: Alles abwählen | |
429 | button_delete: Löschen |
|
429 | button_delete: Löschen | |
430 | button_create: Anlegen |
|
430 | button_create: Anlegen | |
431 | button_test: Testen |
|
431 | button_test: Testen | |
432 | button_edit: Bearbeiten |
|
432 | button_edit: Bearbeiten | |
433 | button_add: Hinzufügen |
|
433 | button_add: Hinzufügen | |
434 | button_change: Wechseln |
|
434 | button_change: Wechseln | |
435 | button_apply: Anwenden |
|
435 | button_apply: Anwenden | |
436 | button_clear: Zurücksetzen |
|
436 | button_clear: Zurücksetzen | |
437 | button_lock: Sperren |
|
437 | button_lock: Sperren | |
438 | button_unlock: Entsperren |
|
438 | button_unlock: Entsperren | |
439 | button_download: Download |
|
439 | button_download: Download | |
440 | button_list: Liste |
|
440 | button_list: Liste | |
441 | button_view: Siehe |
|
441 | button_view: Siehe | |
442 | button_move: Verschieben |
|
442 | button_move: Verschieben | |
443 | button_back: Zurück |
|
443 | button_back: Zurück | |
444 | button_cancel: Abbrechen |
|
444 | button_cancel: Abbrechen | |
445 | button_activate: Aktivieren |
|
445 | button_activate: Aktivieren | |
446 | button_sort: Sortieren |
|
446 | button_sort: Sortieren | |
447 | button_log_time: Aufwand buchen |
|
447 | button_log_time: Aufwand buchen | |
448 | button_rollback: Auf diese Version zurücksetzen |
|
448 | button_rollback: Auf diese Version zurücksetzen | |
449 | button_watch: Beobachten |
|
449 | button_watch: Beobachten | |
450 | button_unwatch: Nicht beobachten |
|
450 | button_unwatch: Nicht beobachten | |
451 | button_reply: Antworten |
|
451 | button_reply: Antworten | |
452 | button_archive: Archivieren |
|
452 | button_archive: Archivieren | |
453 | button_unarchive: Entarchivieren |
|
453 | button_unarchive: Entarchivieren | |
454 | button_reset: Zurücksetzen |
|
454 | button_reset: Zurücksetzen | |
455 | button_rename: Umbenennen |
|
455 | button_rename: Umbenennen | |
456 |
|
456 | |||
457 | status_active: aktiv |
|
457 | status_active: aktiv | |
458 | status_registered: angemeldet |
|
458 | status_registered: angemeldet | |
459 | status_locked: gesperrt |
|
459 | status_locked: gesperrt | |
460 |
|
460 | |||
461 | text_select_mail_notifications: Aktionen, für die Mailbenachrichtigung aktiviert werden soll. |
|
461 | text_select_mail_notifications: Aktionen, für die Mailbenachrichtigung aktiviert werden soll. | |
462 | text_regexp_info: z. B. ^[A-Z0-9]+$ |
|
462 | text_regexp_info: z. B. ^[A-Z0-9]+$ | |
463 | text_min_max_length_info: 0 heißt keine Beschränkung |
|
463 | text_min_max_length_info: 0 heißt keine Beschränkung | |
464 | text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen? |
|
464 | text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen? | |
465 | text_workflow_edit: Workflow zum Bearbeiten auswählen |
|
465 | text_workflow_edit: Workflow zum Bearbeiten auswählen | |
466 | text_are_you_sure: Sind Sie sicher? |
|
466 | text_are_you_sure: Sind Sie sicher? | |
467 | text_journal_changed: geändert von %s zu %s |
|
467 | text_journal_changed: geändert von %s zu %s | |
468 | text_journal_set_to: gestellt zu %s |
|
468 | text_journal_set_to: gestellt zu %s | |
469 | text_journal_deleted: gelöscht |
|
469 | text_journal_deleted: gelöscht | |
470 | text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt |
|
470 | text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt | |
471 | text_tip_task_end_day: Aufgabe, die an diesem Tag beendet |
|
471 | text_tip_task_end_day: Aufgabe, die an diesem Tag beendet | |
472 | text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet |
|
472 | text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet | |
473 | text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.' |
|
473 | text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.' | |
474 | text_caracters_maximum: Max. %d Zeichen. |
|
474 | text_caracters_maximum: Max. %d Zeichen. | |
475 | text_length_between: Länge zwischen %d und %d Zeichen. |
|
475 | text_length_between: Länge zwischen %d und %d Zeichen. | |
476 | text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert. |
|
476 | text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert. | |
477 | text_unallowed_characters: Nicht erlaubte Zeichen |
|
477 | text_unallowed_characters: Nicht erlaubte Zeichen | |
478 | text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt). |
|
478 | text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt). | |
479 | text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen |
|
479 | text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen | |
480 | text_issue_added: Ticket %s wurde erstellt. |
|
480 | text_issue_added: Ticket %s wurde erstellt. | |
481 | text_issue_updated: Ticket %s wurde aktualisiert. |
|
481 | text_issue_updated: Ticket %s wurde aktualisiert. | |
482 | text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten? |
|
482 | text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten? | |
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
484 | text_issue_category_destroy_assignments: Remove category assignments |
|
484 | text_issue_category_destroy_assignments: Remove category assignments | |
485 | text_issue_category_reassign_to: Reassing issues to this category |
|
485 | text_issue_category_reassign_to: Reassing issues to this category | |
486 |
|
486 | |||
487 | default_role_manager: Manager |
|
487 | default_role_manager: Manager | |
488 | default_role_developper: Developer |
|
488 | default_role_developper: Developer | |
489 | default_role_reporter: Reporter |
|
489 | default_role_reporter: Reporter | |
490 | default_tracker_bug: Fehler |
|
490 | default_tracker_bug: Fehler | |
491 | default_tracker_feature: Feature |
|
491 | default_tracker_feature: Feature | |
492 | default_tracker_support: Support |
|
492 | default_tracker_support: Support | |
493 | default_issue_status_new: Neu |
|
493 | default_issue_status_new: Neu | |
494 | default_issue_status_assigned: Zugewiesen |
|
494 | default_issue_status_assigned: Zugewiesen | |
495 | default_issue_status_resolved: Gelöst |
|
495 | default_issue_status_resolved: Gelöst | |
496 | default_issue_status_feedback: Feedback |
|
496 | default_issue_status_feedback: Feedback | |
497 | default_issue_status_closed: Erledigt |
|
497 | default_issue_status_closed: Erledigt | |
498 | default_issue_status_rejected: Abgewiesen |
|
498 | default_issue_status_rejected: Abgewiesen | |
499 | default_doc_category_user: Benutzerdokumentation |
|
499 | default_doc_category_user: Benutzerdokumentation | |
500 | default_doc_category_tech: Technische Dokumentation |
|
500 | default_doc_category_tech: Technische Dokumentation | |
501 | default_priority_low: Niedrig |
|
501 | default_priority_low: Niedrig | |
502 | default_priority_normal: Normal |
|
502 | default_priority_normal: Normal | |
503 | default_priority_high: Hoch |
|
503 | default_priority_high: Hoch | |
504 | default_priority_urgent: Dringend |
|
504 | default_priority_urgent: Dringend | |
505 | default_priority_immediate: Sofort |
|
505 | default_priority_immediate: Sofort | |
506 | default_activity_design: Design |
|
506 | default_activity_design: Design | |
507 | default_activity_development: Development |
|
507 | default_activity_development: Development | |
508 |
|
508 | |||
509 | enumeration_issue_priorities: Ticket-Prioritäten |
|
509 | enumeration_issue_priorities: Ticket-Prioritäten | |
510 | enumeration_doc_categories: Dokumentenkategorien |
|
510 | enumeration_doc_categories: Dokumentenkategorien | |
511 | enumeration_activities: Aktivitäten (Zeiterfassung) |
|
511 | enumeration_activities: Aktivitäten (Zeiterfassung) | |
|
512 | label_file_plural: Files | |||
|
513 | label_changeset_plural: Changesets |
@@ -1,511 +1,513 | |||||
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 |
|
54 | |||
55 | notice_account_updated: Account was successfully updated. |
|
55 | notice_account_updated: Account was successfully updated. | |
56 | notice_account_invalid_creditentials: Invalid user or password |
|
56 | notice_account_invalid_creditentials: Invalid user or password | |
57 | notice_account_password_updated: Password was successfully updated. |
|
57 | notice_account_password_updated: Password was successfully updated. | |
58 | notice_account_wrong_password: Wrong password |
|
58 | notice_account_wrong_password: Wrong password | |
59 | notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. |
|
59 | notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. | |
60 | notice_account_unknown_email: Unknown user. |
|
60 | notice_account_unknown_email: Unknown user. | |
61 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
61 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. | |
62 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
62 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. | |
63 | notice_account_activated: Your account has been activated. You can now log in. |
|
63 | notice_account_activated: Your account has been activated. You can now log in. | |
64 | notice_successful_create: Successful creation. |
|
64 | notice_successful_create: Successful creation. | |
65 | notice_successful_update: Successful update. |
|
65 | notice_successful_update: Successful update. | |
66 | notice_successful_delete: Successful deletion. |
|
66 | notice_successful_delete: Successful deletion. | |
67 | notice_successful_connection: Successful connection. |
|
67 | notice_successful_connection: Successful connection. | |
68 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. |
|
68 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. | |
69 | notice_locking_conflict: Data have been updated by another user. |
|
69 | notice_locking_conflict: Data have been updated by another user. | |
70 | notice_scm_error: Entry and/or revision doesn't exist in the repository. |
|
70 | notice_scm_error: Entry and/or revision doesn't exist in the repository. | |
71 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
72 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
73 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
75 |
|
75 | |||
76 | mail_subject_lost_password: Your redMine password |
|
76 | mail_subject_lost_password: Your redMine password | |
77 | mail_subject_register: redMine account activation |
|
77 | mail_subject_register: redMine account activation | |
78 |
|
78 | |||
79 | gui_validation_error: 1 error |
|
79 | gui_validation_error: 1 error | |
80 | gui_validation_error_plural: %d errors |
|
80 | gui_validation_error_plural: %d errors | |
81 |
|
81 | |||
82 | field_name: Name |
|
82 | field_name: Name | |
83 | field_description: Description |
|
83 | field_description: Description | |
84 | field_summary: Summary |
|
84 | field_summary: Summary | |
85 | field_is_required: Required |
|
85 | field_is_required: Required | |
86 | field_firstname: Firstname |
|
86 | field_firstname: Firstname | |
87 | field_lastname: Lastname |
|
87 | field_lastname: Lastname | |
88 | field_mail: Email |
|
88 | field_mail: Email | |
89 | field_filename: File |
|
89 | field_filename: File | |
90 | field_filesize: Size |
|
90 | field_filesize: Size | |
91 | field_downloads: Downloads |
|
91 | field_downloads: Downloads | |
92 | field_author: Author |
|
92 | field_author: Author | |
93 | field_created_on: Created |
|
93 | field_created_on: Created | |
94 | field_updated_on: Updated |
|
94 | field_updated_on: Updated | |
95 | field_field_format: Format |
|
95 | field_field_format: Format | |
96 | field_is_for_all: For all projects |
|
96 | field_is_for_all: For all projects | |
97 | field_possible_values: Possible values |
|
97 | field_possible_values: Possible values | |
98 | field_regexp: Regular expression |
|
98 | field_regexp: Regular expression | |
99 | field_min_length: Minimum length |
|
99 | field_min_length: Minimum length | |
100 | field_max_length: Maximum length |
|
100 | field_max_length: Maximum length | |
101 | field_value: Value |
|
101 | field_value: Value | |
102 | field_category: Category |
|
102 | field_category: Category | |
103 | field_title: Title |
|
103 | field_title: Title | |
104 | field_project: Project |
|
104 | field_project: Project | |
105 | field_issue: Issue |
|
105 | field_issue: Issue | |
106 | field_status: Status |
|
106 | field_status: Status | |
107 | field_notes: Notes |
|
107 | field_notes: Notes | |
108 | field_is_closed: Issue closed |
|
108 | field_is_closed: Issue closed | |
109 | field_is_default: Default status |
|
109 | field_is_default: Default status | |
110 | field_html_color: Color |
|
110 | field_html_color: Color | |
111 | field_tracker: Tracker |
|
111 | field_tracker: Tracker | |
112 | field_subject: Subject |
|
112 | field_subject: Subject | |
113 | field_due_date: Due date |
|
113 | field_due_date: Due date | |
114 | field_assigned_to: Assigned to |
|
114 | field_assigned_to: Assigned to | |
115 | field_priority: Priority |
|
115 | field_priority: Priority | |
116 | field_fixed_version: Fixed version |
|
116 | field_fixed_version: Fixed version | |
117 | field_user: User |
|
117 | field_user: User | |
118 | field_role: Role |
|
118 | field_role: Role | |
119 | field_homepage: Homepage |
|
119 | field_homepage: Homepage | |
120 | field_is_public: Public |
|
120 | field_is_public: Public | |
121 | field_parent: Subproject of |
|
121 | field_parent: Subproject of | |
122 | field_is_in_chlog: Issues displayed in changelog |
|
122 | field_is_in_chlog: Issues displayed in changelog | |
123 | field_is_in_roadmap: Issues displayed in roadmap |
|
123 | field_is_in_roadmap: Issues displayed in roadmap | |
124 | field_login: Login |
|
124 | field_login: Login | |
125 | field_mail_notification: Mail notifications |
|
125 | field_mail_notification: Mail notifications | |
126 | field_admin: Administrator |
|
126 | field_admin: Administrator | |
127 | field_last_login_on: Last connection |
|
127 | field_last_login_on: Last connection | |
128 | field_language: Language |
|
128 | field_language: Language | |
129 | field_effective_date: Date |
|
129 | field_effective_date: Date | |
130 | field_password: Password |
|
130 | field_password: Password | |
131 | field_new_password: New password |
|
131 | field_new_password: New password | |
132 | field_password_confirmation: Confirmation |
|
132 | field_password_confirmation: Confirmation | |
133 | field_version: Version |
|
133 | field_version: Version | |
134 | field_type: Type |
|
134 | field_type: Type | |
135 | field_host: Host |
|
135 | field_host: Host | |
136 | field_port: Port |
|
136 | field_port: Port | |
137 | field_account: Account |
|
137 | field_account: Account | |
138 | field_base_dn: Base DN |
|
138 | field_base_dn: Base DN | |
139 | field_attr_login: Login attribute |
|
139 | field_attr_login: Login attribute | |
140 | field_attr_firstname: Firstname attribute |
|
140 | field_attr_firstname: Firstname attribute | |
141 | field_attr_lastname: Lastname attribute |
|
141 | field_attr_lastname: Lastname attribute | |
142 | field_attr_mail: Email attribute |
|
142 | field_attr_mail: Email attribute | |
143 | field_onthefly: On-the-fly user creation |
|
143 | field_onthefly: On-the-fly user creation | |
144 | field_start_date: Start |
|
144 | field_start_date: Start | |
145 | field_done_ratio: %% Done |
|
145 | field_done_ratio: %% Done | |
146 | field_auth_source: Authentication mode |
|
146 | field_auth_source: Authentication mode | |
147 | field_hide_mail: Hide my email address |
|
147 | field_hide_mail: Hide my email address | |
148 | field_comments: Comment |
|
148 | field_comments: Comment | |
149 | field_url: URL |
|
149 | field_url: URL | |
150 | field_start_page: Start page |
|
150 | field_start_page: Start page | |
151 | field_subproject: Subproject |
|
151 | field_subproject: Subproject | |
152 | field_hours: Hours |
|
152 | field_hours: Hours | |
153 | field_activity: Activity |
|
153 | field_activity: Activity | |
154 | field_spent_on: Date |
|
154 | field_spent_on: Date | |
155 | field_identifier: Identifier |
|
155 | field_identifier: Identifier | |
156 | field_is_filter: Used as a filter |
|
156 | field_is_filter: Used as a filter | |
157 | field_issue_to_id: Related issue |
|
157 | field_issue_to_id: Related issue | |
158 | field_delay: Delay |
|
158 | field_delay: Delay | |
159 | field_assignable: Issues can be assigned to this role |
|
159 | field_assignable: Issues can be assigned to this role | |
160 | field_redirect_existing_links: Redirect existing links |
|
160 | field_redirect_existing_links: Redirect existing links | |
161 | field_estimated_hours: Estimated time |
|
161 | field_estimated_hours: Estimated time | |
162 |
|
162 | |||
163 | setting_app_title: Application title |
|
163 | setting_app_title: Application title | |
164 | setting_app_subtitle: Application subtitle |
|
164 | setting_app_subtitle: Application subtitle | |
165 | setting_welcome_text: Welcome text |
|
165 | setting_welcome_text: Welcome text | |
166 | setting_default_language: Default language |
|
166 | setting_default_language: Default language | |
167 | setting_login_required: Authent. required |
|
167 | setting_login_required: Authent. required | |
168 | setting_self_registration: Self-registration enabled |
|
168 | setting_self_registration: Self-registration enabled | |
169 | setting_attachment_max_size: Attachment max. size |
|
169 | setting_attachment_max_size: Attachment max. size | |
170 | setting_issues_export_limit: Issues export limit |
|
170 | setting_issues_export_limit: Issues export limit | |
171 | setting_mail_from: Emission mail address |
|
171 | setting_mail_from: Emission mail address | |
172 | setting_host_name: Host name |
|
172 | setting_host_name: Host name | |
173 | setting_text_formatting: Text formatting |
|
173 | setting_text_formatting: Text formatting | |
174 | setting_wiki_compression: Wiki history compression |
|
174 | setting_wiki_compression: Wiki history compression | |
175 | setting_feeds_limit: Feed content limit |
|
175 | setting_feeds_limit: Feed content limit | |
176 | setting_autofetch_changesets: Autofetch commits |
|
176 | setting_autofetch_changesets: Autofetch commits | |
177 | setting_sys_api_enabled: Enable WS for repository management |
|
177 | setting_sys_api_enabled: Enable WS for repository management | |
178 | setting_commit_ref_keywords: Referencing keywords |
|
178 | setting_commit_ref_keywords: Referencing keywords | |
179 | setting_commit_fix_keywords: Fixing keywords |
|
179 | setting_commit_fix_keywords: Fixing keywords | |
180 | setting_autologin: Autologin |
|
180 | setting_autologin: Autologin | |
181 | setting_date_format: Date format |
|
181 | setting_date_format: Date format | |
182 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
182 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
183 |
|
183 | |||
184 | label_user: User |
|
184 | label_user: User | |
185 | label_user_plural: Users |
|
185 | label_user_plural: Users | |
186 | label_user_new: New user |
|
186 | label_user_new: New user | |
187 | label_project: Project |
|
187 | label_project: Project | |
188 | label_project_new: New project |
|
188 | label_project_new: New project | |
189 | label_project_plural: Projects |
|
189 | label_project_plural: Projects | |
190 | label_project_all: All Projects |
|
190 | label_project_all: All Projects | |
191 | label_project_latest: Latest projects |
|
191 | label_project_latest: Latest projects | |
192 | label_issue: Issue |
|
192 | label_issue: Issue | |
193 | label_issue_new: New issue |
|
193 | label_issue_new: New issue | |
194 | label_issue_plural: Issues |
|
194 | label_issue_plural: Issues | |
195 | label_issue_view_all: View all issues |
|
195 | label_issue_view_all: View all issues | |
196 | label_document: Document |
|
196 | label_document: Document | |
197 | label_document_new: New document |
|
197 | label_document_new: New document | |
198 | label_document_plural: Documents |
|
198 | label_document_plural: Documents | |
199 | label_role: Role |
|
199 | label_role: Role | |
200 | label_role_plural: Roles |
|
200 | label_role_plural: Roles | |
201 | label_role_new: New role |
|
201 | label_role_new: New role | |
202 | label_role_and_permissions: Roles and permissions |
|
202 | label_role_and_permissions: Roles and permissions | |
203 | label_member: Member |
|
203 | label_member: Member | |
204 | label_member_new: New member |
|
204 | label_member_new: New member | |
205 | label_member_plural: Members |
|
205 | label_member_plural: Members | |
206 | label_tracker: Tracker |
|
206 | label_tracker: Tracker | |
207 | label_tracker_plural: Trackers |
|
207 | label_tracker_plural: Trackers | |
208 | label_tracker_new: New tracker |
|
208 | label_tracker_new: New tracker | |
209 | label_workflow: Workflow |
|
209 | label_workflow: Workflow | |
210 | label_issue_status: Issue status |
|
210 | label_issue_status: Issue status | |
211 | label_issue_status_plural: Issue statuses |
|
211 | label_issue_status_plural: Issue statuses | |
212 | label_issue_status_new: New status |
|
212 | label_issue_status_new: New status | |
213 | label_issue_category: Issue category |
|
213 | label_issue_category: Issue category | |
214 | label_issue_category_plural: Issue categories |
|
214 | label_issue_category_plural: Issue categories | |
215 | label_issue_category_new: New category |
|
215 | label_issue_category_new: New category | |
216 | label_custom_field: Custom field |
|
216 | label_custom_field: Custom field | |
217 | label_custom_field_plural: Custom fields |
|
217 | label_custom_field_plural: Custom fields | |
218 | label_custom_field_new: New custom field |
|
218 | label_custom_field_new: New custom field | |
219 | label_enumerations: Enumerations |
|
219 | label_enumerations: Enumerations | |
220 | label_enumeration_new: New value |
|
220 | label_enumeration_new: New value | |
221 | label_information: Information |
|
221 | label_information: Information | |
222 | label_information_plural: Information |
|
222 | label_information_plural: Information | |
223 | label_please_login: Please login |
|
223 | label_please_login: Please login | |
224 | label_register: Register |
|
224 | label_register: Register | |
225 | label_password_lost: Lost password |
|
225 | label_password_lost: Lost password | |
226 | label_home: Home |
|
226 | label_home: Home | |
227 | label_my_page: My page |
|
227 | label_my_page: My page | |
228 | label_my_account: My account |
|
228 | label_my_account: My account | |
229 | label_my_projects: My projects |
|
229 | label_my_projects: My projects | |
230 | label_administration: Administration |
|
230 | label_administration: Administration | |
231 | label_login: Sign in |
|
231 | label_login: Sign in | |
232 | label_logout: Sign out |
|
232 | label_logout: Sign out | |
233 | label_help: Help |
|
233 | label_help: Help | |
234 | label_reported_issues: Reported issues |
|
234 | label_reported_issues: Reported issues | |
235 | label_assigned_to_me_issues: Issues assigned to me |
|
235 | label_assigned_to_me_issues: Issues assigned to me | |
236 | label_last_login: Last connection |
|
236 | label_last_login: Last connection | |
237 | label_last_updates: Last updated |
|
237 | label_last_updates: Last updated | |
238 | label_last_updates_plural: %d last updated |
|
238 | label_last_updates_plural: %d last updated | |
239 | label_registered_on: Registered on |
|
239 | label_registered_on: Registered on | |
240 | label_activity: Activity |
|
240 | label_activity: Activity | |
241 | label_new: New |
|
241 | label_new: New | |
242 | label_logged_as: Logged as |
|
242 | label_logged_as: Logged as | |
243 | label_environment: Environment |
|
243 | label_environment: Environment | |
244 | label_authentication: Authentication |
|
244 | label_authentication: Authentication | |
245 | label_auth_source: Authentication mode |
|
245 | label_auth_source: Authentication mode | |
246 | label_auth_source_new: New authentication mode |
|
246 | label_auth_source_new: New authentication mode | |
247 | label_auth_source_plural: Authentication modes |
|
247 | label_auth_source_plural: Authentication modes | |
248 | label_subproject_plural: Subprojects |
|
248 | label_subproject_plural: Subprojects | |
249 | label_min_max_length: Min - Max length |
|
249 | label_min_max_length: Min - Max length | |
250 | label_list: List |
|
250 | label_list: List | |
251 | label_date: Date |
|
251 | label_date: Date | |
252 | label_integer: Integer |
|
252 | label_integer: Integer | |
253 | label_boolean: Boolean |
|
253 | label_boolean: Boolean | |
254 | label_string: Text |
|
254 | label_string: Text | |
255 | label_text: Long text |
|
255 | label_text: Long text | |
256 | label_attribute: Attribute |
|
256 | label_attribute: Attribute | |
257 | label_attribute_plural: Attributes |
|
257 | label_attribute_plural: Attributes | |
258 | label_download: %d Download |
|
258 | label_download: %d Download | |
259 | label_download_plural: %d Downloads |
|
259 | label_download_plural: %d Downloads | |
260 | label_no_data: No data to display |
|
260 | label_no_data: No data to display | |
261 | label_change_status: Change status |
|
261 | label_change_status: Change status | |
262 | label_history: History |
|
262 | label_history: History | |
263 | label_attachment: File |
|
263 | label_attachment: File | |
264 | label_attachment_new: New file |
|
264 | label_attachment_new: New file | |
265 | label_attachment_delete: Delete file |
|
265 | label_attachment_delete: Delete file | |
266 | label_attachment_plural: Files |
|
266 | label_attachment_plural: Files | |
267 | label_report: Report |
|
267 | label_report: Report | |
268 | label_report_plural: Reports |
|
268 | label_report_plural: Reports | |
269 | label_news: News |
|
269 | label_news: News | |
270 | label_news_new: Add news |
|
270 | label_news_new: Add news | |
271 | label_news_plural: News |
|
271 | label_news_plural: News | |
272 | label_news_latest: Latest news |
|
272 | label_news_latest: Latest news | |
273 | label_news_view_all: View all news |
|
273 | label_news_view_all: View all news | |
274 | label_change_log: Change log |
|
274 | label_change_log: Change log | |
275 | label_settings: Settings |
|
275 | label_settings: Settings | |
276 | label_overview: Overview |
|
276 | label_overview: Overview | |
277 | label_version: Version |
|
277 | label_version: Version | |
278 | label_version_new: New version |
|
278 | label_version_new: New version | |
279 | label_version_plural: Versions |
|
279 | label_version_plural: Versions | |
280 | label_confirmation: Confirmation |
|
280 | label_confirmation: Confirmation | |
281 | label_export_to: Export to |
|
281 | label_export_to: Export to | |
282 | label_read: Read... |
|
282 | label_read: Read... | |
283 | label_public_projects: Public projects |
|
283 | label_public_projects: Public projects | |
284 | label_open_issues: open |
|
284 | label_open_issues: open | |
285 | label_open_issues_plural: open |
|
285 | label_open_issues_plural: open | |
286 | label_closed_issues: closed |
|
286 | label_closed_issues: closed | |
287 | label_closed_issues_plural: closed |
|
287 | label_closed_issues_plural: closed | |
288 | label_total: Total |
|
288 | label_total: Total | |
289 | label_permissions: Permissions |
|
289 | label_permissions: Permissions | |
290 | label_current_status: Current status |
|
290 | label_current_status: Current status | |
291 | label_new_statuses_allowed: New statuses allowed |
|
291 | label_new_statuses_allowed: New statuses allowed | |
292 | label_all: all |
|
292 | label_all: all | |
293 | label_none: none |
|
293 | label_none: none | |
294 | label_next: Next |
|
294 | label_next: Next | |
295 | label_previous: Previous |
|
295 | label_previous: Previous | |
296 | label_used_by: Used by |
|
296 | label_used_by: Used by | |
297 | label_details: Details |
|
297 | label_details: Details | |
298 | label_add_note: Add a note |
|
298 | label_add_note: Add a note | |
299 | label_per_page: Per page |
|
299 | label_per_page: Per page | |
300 | label_calendar: Calendar |
|
300 | label_calendar: Calendar | |
301 | label_months_from: months from |
|
301 | label_months_from: months from | |
302 | label_gantt: Gantt |
|
302 | label_gantt: Gantt | |
303 | label_internal: Internal |
|
303 | label_internal: Internal | |
304 | label_last_changes: last %d changes |
|
304 | label_last_changes: last %d changes | |
305 | label_change_view_all: View all changes |
|
305 | label_change_view_all: View all changes | |
306 | label_personalize_page: Personalize this page |
|
306 | label_personalize_page: Personalize this page | |
307 | label_comment: Comment |
|
307 | label_comment: Comment | |
308 | label_comment_plural: Comments |
|
308 | label_comment_plural: Comments | |
309 | label_comment_add: Add a comment |
|
309 | label_comment_add: Add a comment | |
310 | label_comment_added: Comment added |
|
310 | label_comment_added: Comment added | |
311 | label_comment_delete: Delete comments |
|
311 | label_comment_delete: Delete comments | |
312 | label_query: Custom query |
|
312 | label_query: Custom query | |
313 | label_query_plural: Custom queries |
|
313 | label_query_plural: Custom queries | |
314 | label_query_new: New query |
|
314 | label_query_new: New query | |
315 | label_filter_add: Add filter |
|
315 | label_filter_add: Add filter | |
316 | label_filter_plural: Filters |
|
316 | label_filter_plural: Filters | |
317 | label_equals: is |
|
317 | label_equals: is | |
318 | label_not_equals: is not |
|
318 | label_not_equals: is not | |
319 | label_in_less_than: in less than |
|
319 | label_in_less_than: in less than | |
320 | label_in_more_than: in more than |
|
320 | label_in_more_than: in more than | |
321 | label_in: in |
|
321 | label_in: in | |
322 | label_today: today |
|
322 | label_today: today | |
323 | label_this_week: this week |
|
323 | label_this_week: this week | |
324 | label_less_than_ago: less than days ago |
|
324 | label_less_than_ago: less than days ago | |
325 | label_more_than_ago: more than days ago |
|
325 | label_more_than_ago: more than days ago | |
326 | label_ago: days ago |
|
326 | label_ago: days ago | |
327 | label_contains: contains |
|
327 | label_contains: contains | |
328 | label_not_contains: doesn't contain |
|
328 | label_not_contains: doesn't contain | |
329 | label_day_plural: days |
|
329 | label_day_plural: days | |
330 | label_repository: Repository |
|
330 | label_repository: Repository | |
331 | label_browse: Browse |
|
331 | label_browse: Browse | |
332 | label_modification: %d change |
|
332 | label_modification: %d change | |
333 | label_modification_plural: %d changes |
|
333 | label_modification_plural: %d changes | |
334 | label_revision: Revision |
|
334 | label_revision: Revision | |
335 | label_revision_plural: Revisions |
|
335 | label_revision_plural: Revisions | |
336 | label_added: added |
|
336 | label_added: added | |
337 | label_modified: modified |
|
337 | label_modified: modified | |
338 | label_deleted: deleted |
|
338 | label_deleted: deleted | |
339 | label_latest_revision: Latest revision |
|
339 | label_latest_revision: Latest revision | |
340 | label_latest_revision_plural: Latest revisions |
|
340 | label_latest_revision_plural: Latest revisions | |
341 | label_view_revisions: View revisions |
|
341 | label_view_revisions: View revisions | |
342 | label_max_size: Maximum size |
|
342 | label_max_size: Maximum size | |
343 | label_on: 'on' |
|
343 | label_on: 'on' | |
344 | label_sort_highest: Move to top |
|
344 | label_sort_highest: Move to top | |
345 | label_sort_higher: Move up |
|
345 | label_sort_higher: Move up | |
346 | label_sort_lower: Move down |
|
346 | label_sort_lower: Move down | |
347 | label_sort_lowest: Move to bottom |
|
347 | label_sort_lowest: Move to bottom | |
348 | label_roadmap: Roadmap |
|
348 | label_roadmap: Roadmap | |
349 | label_roadmap_due_in: Due in |
|
349 | label_roadmap_due_in: Due in | |
350 | label_roadmap_overdue: %s late |
|
350 | label_roadmap_overdue: %s late | |
351 | label_roadmap_no_issues: No issues for this version |
|
351 | label_roadmap_no_issues: No issues for this version | |
352 | label_search: Search |
|
352 | label_search: Search | |
353 | label_result: %d result |
|
353 | label_result: %d result | |
354 | label_result_plural: %d results |
|
354 | label_result_plural: %d results | |
355 | label_all_words: All words |
|
355 | label_all_words: All words | |
356 | label_wiki: Wiki |
|
356 | label_wiki: Wiki | |
357 | label_wiki_edit: Wiki edit |
|
357 | label_wiki_edit: Wiki edit | |
358 | label_wiki_edit_plural: Wiki edits |
|
358 | label_wiki_edit_plural: Wiki edits | |
359 | label_wiki_page: Wiki page |
|
359 | label_wiki_page: Wiki page | |
360 | label_wiki_page_plural: Wiki pages |
|
360 | label_wiki_page_plural: Wiki pages | |
361 | label_page_index: Index |
|
361 | label_page_index: Index | |
362 | label_current_version: Current version |
|
362 | label_current_version: Current version | |
363 | label_preview: Preview |
|
363 | label_preview: Preview | |
364 | label_feed_plural: Feeds |
|
364 | label_feed_plural: Feeds | |
365 | label_changes_details: Details of all changes |
|
365 | label_changes_details: Details of all changes | |
366 | label_issue_tracking: Issue tracking |
|
366 | label_issue_tracking: Issue tracking | |
367 | label_spent_time: Spent time |
|
367 | label_spent_time: Spent time | |
368 | label_f_hour: %.2f hour |
|
368 | label_f_hour: %.2f hour | |
369 | label_f_hour_plural: %.2f hours |
|
369 | label_f_hour_plural: %.2f hours | |
370 | label_time_tracking: Time tracking |
|
370 | label_time_tracking: Time tracking | |
371 | label_change_plural: Changes |
|
371 | label_change_plural: Changes | |
372 | label_statistics: Statistics |
|
372 | label_statistics: Statistics | |
373 | label_commits_per_month: Commits per month |
|
373 | label_commits_per_month: Commits per month | |
374 | label_commits_per_author: Commits per author |
|
374 | label_commits_per_author: Commits per author | |
375 | label_view_diff: View differences |
|
375 | label_view_diff: View differences | |
376 | label_diff_inline: inline |
|
376 | label_diff_inline: inline | |
377 | label_diff_side_by_side: side by side |
|
377 | label_diff_side_by_side: side by side | |
378 | label_options: Options |
|
378 | label_options: Options | |
379 | label_copy_workflow_from: Copy workflow from |
|
379 | label_copy_workflow_from: Copy workflow from | |
380 | label_permissions_report: Permissions report |
|
380 | label_permissions_report: Permissions report | |
381 | label_watched_issues: Watched issues |
|
381 | label_watched_issues: Watched issues | |
382 | label_related_issues: Related issues |
|
382 | label_related_issues: Related issues | |
383 | label_applied_status: Applied status |
|
383 | label_applied_status: Applied status | |
384 | label_loading: Loading... |
|
384 | label_loading: Loading... | |
385 | label_relation_new: New relation |
|
385 | label_relation_new: New relation | |
386 | label_relation_delete: Delete relation |
|
386 | label_relation_delete: Delete relation | |
387 | label_relates_to: related to |
|
387 | label_relates_to: related to | |
388 | label_duplicates: duplicates |
|
388 | label_duplicates: duplicates | |
389 | label_blocks: blocks |
|
389 | label_blocks: blocks | |
390 | label_blocked_by: blocked by |
|
390 | label_blocked_by: blocked by | |
391 | label_precedes: precedes |
|
391 | label_precedes: precedes | |
392 | label_follows: follows |
|
392 | label_follows: follows | |
393 | label_end_to_start: end to start |
|
393 | label_end_to_start: end to start | |
394 | label_end_to_end: end to end |
|
394 | label_end_to_end: end to end | |
395 | label_start_to_start: start to start |
|
395 | label_start_to_start: start to start | |
396 | label_start_to_end: start to end |
|
396 | label_start_to_end: start to end | |
397 | label_stay_logged_in: Stay logged in |
|
397 | label_stay_logged_in: Stay logged in | |
398 | label_disabled: disabled |
|
398 | label_disabled: disabled | |
399 | label_show_completed_versions: Show completed versions |
|
399 | label_show_completed_versions: Show completed versions | |
400 | label_me: me |
|
400 | label_me: me | |
401 | label_board: Forum |
|
401 | label_board: Forum | |
402 | label_board_new: New forum |
|
402 | label_board_new: New forum | |
403 | label_board_plural: Forums |
|
403 | label_board_plural: Forums | |
404 | label_topic_plural: Topics |
|
404 | label_topic_plural: Topics | |
405 | label_message_plural: Messages |
|
405 | label_message_plural: Messages | |
406 | label_message_last: Last message |
|
406 | label_message_last: Last message | |
407 | label_message_new: New message |
|
407 | label_message_new: New message | |
408 | label_reply_plural: Replies |
|
408 | label_reply_plural: Replies | |
409 | label_send_information: Send account information to the user |
|
409 | label_send_information: Send account information to the user | |
410 | label_year: Year |
|
410 | label_year: Year | |
411 | label_month: Month |
|
411 | label_month: Month | |
412 | label_week: Week |
|
412 | label_week: Week | |
413 | label_date_from: From |
|
413 | label_date_from: From | |
414 | label_date_to: To |
|
414 | label_date_to: To | |
415 | label_language_based: Language based |
|
415 | label_language_based: Language based | |
416 | label_sort_by: Sort by "%s" |
|
416 | label_sort_by: Sort by "%s" | |
417 | label_send_test_email: Send a test email |
|
417 | label_send_test_email: Send a test email | |
418 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
418 | label_feeds_access_key_created_on: RSS access key created %s ago | |
419 | label_module_plural: Modules |
|
419 | label_module_plural: Modules | |
420 | label_added_time_by: Added by %s %s ago |
|
420 | label_added_time_by: Added by %s %s ago | |
421 | label_updated_time: Updated %s ago |
|
421 | label_updated_time: Updated %s ago | |
422 | label_jump_to_a_project: Jump to a project... |
|
422 | label_jump_to_a_project: Jump to a project... | |
|
423 | label_file_plural: Files | |||
|
424 | label_changeset_plural: Changesets | |||
423 |
|
425 | |||
424 | button_login: Login |
|
426 | button_login: Login | |
425 | button_submit: Submit |
|
427 | button_submit: Submit | |
426 | button_save: Save |
|
428 | button_save: Save | |
427 | button_check_all: Check all |
|
429 | button_check_all: Check all | |
428 | button_uncheck_all: Uncheck all |
|
430 | button_uncheck_all: Uncheck all | |
429 | button_delete: Delete |
|
431 | button_delete: Delete | |
430 | button_create: Create |
|
432 | button_create: Create | |
431 | button_test: Test |
|
433 | button_test: Test | |
432 | button_edit: Edit |
|
434 | button_edit: Edit | |
433 | button_add: Add |
|
435 | button_add: Add | |
434 | button_change: Change |
|
436 | button_change: Change | |
435 | button_apply: Apply |
|
437 | button_apply: Apply | |
436 | button_clear: Clear |
|
438 | button_clear: Clear | |
437 | button_lock: Lock |
|
439 | button_lock: Lock | |
438 | button_unlock: Unlock |
|
440 | button_unlock: Unlock | |
439 | button_download: Download |
|
441 | button_download: Download | |
440 | button_list: List |
|
442 | button_list: List | |
441 | button_view: View |
|
443 | button_view: View | |
442 | button_move: Move |
|
444 | button_move: Move | |
443 | button_back: Back |
|
445 | button_back: Back | |
444 | button_cancel: Cancel |
|
446 | button_cancel: Cancel | |
445 | button_activate: Activate |
|
447 | button_activate: Activate | |
446 | button_sort: Sort |
|
448 | button_sort: Sort | |
447 | button_log_time: Log time |
|
449 | button_log_time: Log time | |
448 | button_rollback: Rollback to this version |
|
450 | button_rollback: Rollback to this version | |
449 | button_watch: Watch |
|
451 | button_watch: Watch | |
450 | button_unwatch: Unwatch |
|
452 | button_unwatch: Unwatch | |
451 | button_reply: Reply |
|
453 | button_reply: Reply | |
452 | button_archive: Archive |
|
454 | button_archive: Archive | |
453 | button_unarchive: Unarchive |
|
455 | button_unarchive: Unarchive | |
454 | button_reset: Reset |
|
456 | button_reset: Reset | |
455 | button_rename: Rename |
|
457 | button_rename: Rename | |
456 |
|
458 | |||
457 | status_active: active |
|
459 | status_active: active | |
458 | status_registered: registered |
|
460 | status_registered: registered | |
459 | status_locked: locked |
|
461 | status_locked: locked | |
460 |
|
462 | |||
461 | text_select_mail_notifications: Select actions for which mail notifications should be sent. |
|
463 | text_select_mail_notifications: Select actions for which mail notifications should be sent. | |
462 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
464 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
463 | text_min_max_length_info: 0 means no restriction |
|
465 | text_min_max_length_info: 0 means no restriction | |
464 | text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ? |
|
466 | text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ? | |
465 | text_workflow_edit: Select a role and a tracker to edit the workflow |
|
467 | text_workflow_edit: Select a role and a tracker to edit the workflow | |
466 | text_are_you_sure: Are you sure ? |
|
468 | text_are_you_sure: Are you sure ? | |
467 | text_journal_changed: changed from %s to %s |
|
469 | text_journal_changed: changed from %s to %s | |
468 | text_journal_set_to: set to %s |
|
470 | text_journal_set_to: set to %s | |
469 | text_journal_deleted: deleted |
|
471 | text_journal_deleted: deleted | |
470 | text_tip_task_begin_day: task beginning this day |
|
472 | text_tip_task_begin_day: task beginning this day | |
471 | text_tip_task_end_day: task ending this day |
|
473 | text_tip_task_end_day: task ending this day | |
472 | text_tip_task_begin_end_day: task beginning and ending this day |
|
474 | text_tip_task_begin_end_day: task beginning and ending this day | |
473 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
475 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' | |
474 | text_caracters_maximum: %d characters maximum. |
|
476 | text_caracters_maximum: %d characters maximum. | |
475 | text_length_between: Length between %d and %d characters. |
|
477 | text_length_between: Length between %d and %d characters. | |
476 | text_tracker_no_workflow: No workflow defined for this tracker |
|
478 | text_tracker_no_workflow: No workflow defined for this tracker | |
477 | text_unallowed_characters: Unallowed characters |
|
479 | text_unallowed_characters: Unallowed characters | |
478 | text_comma_separated: Multiple values allowed (comma separated). |
|
480 | text_comma_separated: Multiple values allowed (comma separated). | |
479 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
481 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
480 | text_issue_added: Issue %s has been reported. |
|
482 | text_issue_added: Issue %s has been reported. | |
481 | text_issue_updated: Issue %s has been updated. |
|
483 | text_issue_updated: Issue %s has been updated. | |
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
484 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
485 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
484 | text_issue_category_destroy_assignments: Remove category assignments |
|
486 | text_issue_category_destroy_assignments: Remove category assignments | |
485 | text_issue_category_reassign_to: Reassing issues to this category |
|
487 | text_issue_category_reassign_to: Reassing issues to this category | |
486 |
|
488 | |||
487 | default_role_manager: Manager |
|
489 | default_role_manager: Manager | |
488 | default_role_developper: Developer |
|
490 | default_role_developper: Developer | |
489 | default_role_reporter: Reporter |
|
491 | default_role_reporter: Reporter | |
490 | default_tracker_bug: Bug |
|
492 | default_tracker_bug: Bug | |
491 | default_tracker_feature: Feature |
|
493 | default_tracker_feature: Feature | |
492 | default_tracker_support: Support |
|
494 | default_tracker_support: Support | |
493 | default_issue_status_new: New |
|
495 | default_issue_status_new: New | |
494 | default_issue_status_assigned: Assigned |
|
496 | default_issue_status_assigned: Assigned | |
495 | default_issue_status_resolved: Resolved |
|
497 | default_issue_status_resolved: Resolved | |
496 | default_issue_status_feedback: Feedback |
|
498 | default_issue_status_feedback: Feedback | |
497 | default_issue_status_closed: Closed |
|
499 | default_issue_status_closed: Closed | |
498 | default_issue_status_rejected: Rejected |
|
500 | default_issue_status_rejected: Rejected | |
499 | default_doc_category_user: User documentation |
|
501 | default_doc_category_user: User documentation | |
500 | default_doc_category_tech: Technical documentation |
|
502 | default_doc_category_tech: Technical documentation | |
501 | default_priority_low: Low |
|
503 | default_priority_low: Low | |
502 | default_priority_normal: Normal |
|
504 | default_priority_normal: Normal | |
503 | default_priority_high: High |
|
505 | default_priority_high: High | |
504 | default_priority_urgent: Urgent |
|
506 | default_priority_urgent: Urgent | |
505 | default_priority_immediate: Immediate |
|
507 | default_priority_immediate: Immediate | |
506 | default_activity_design: Design |
|
508 | default_activity_design: Design | |
507 | default_activity_development: Development |
|
509 | default_activity_development: Development | |
508 |
|
510 | |||
509 | enumeration_issue_priorities: Issue priorities |
|
511 | enumeration_issue_priorities: Issue priorities | |
510 | enumeration_doc_categories: Document categories |
|
512 | enumeration_doc_categories: Document categories | |
511 | enumeration_activities: Activities (time tracking) |
|
513 | enumeration_activities: Activities (time tracking) |
@@ -1,511 +1,513 | |||||
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 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: 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: 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 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-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: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo |
|
53 | general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo | |
54 |
|
54 | |||
55 | notice_account_updated: Account was successfully updated. |
|
55 | notice_account_updated: Account was successfully updated. | |
56 | notice_account_invalid_creditentials: Invalid user or password |
|
56 | notice_account_invalid_creditentials: Invalid user or password | |
57 | notice_account_password_updated: Password was successfully updated. |
|
57 | notice_account_password_updated: Password was successfully updated. | |
58 | notice_account_wrong_password: Wrong password |
|
58 | notice_account_wrong_password: Wrong password | |
59 | notice_account_register_done: Account was successfully created. |
|
59 | notice_account_register_done: Account was successfully created. | |
60 | notice_account_unknown_email: Unknown user. |
|
60 | notice_account_unknown_email: Unknown user. | |
61 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
61 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. | |
62 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
62 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. | |
63 | notice_account_activated: Your account has been activated. You can now log in. |
|
63 | notice_account_activated: Your account has been activated. You can now log in. | |
64 | notice_successful_create: Successful creation. |
|
64 | notice_successful_create: Successful creation. | |
65 | notice_successful_update: Successful update. |
|
65 | notice_successful_update: Successful update. | |
66 | notice_successful_delete: Successful deletion. |
|
66 | notice_successful_delete: Successful deletion. | |
67 | notice_successful_connection: Successful connection. |
|
67 | notice_successful_connection: Successful connection. | |
68 | notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado. |
|
68 | notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado. | |
69 | notice_locking_conflict: Data have been updated by another user. |
|
69 | notice_locking_conflict: Data have been updated by another user. | |
70 | notice_scm_error: La entrada y/o la revisión no existe en el depósito. |
|
70 | notice_scm_error: La entrada y/o la revisión no existe en el depósito. | |
71 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
72 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
73 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
75 |
|
75 | |||
76 | mail_subject_lost_password: Tu contraseña del redMine |
|
76 | mail_subject_lost_password: Tu contraseña del redMine | |
77 | mail_subject_register: Activación de la cuenta del redMine |
|
77 | mail_subject_register: Activación de la cuenta del redMine | |
78 |
|
78 | |||
79 | gui_validation_error: 1 error |
|
79 | gui_validation_error: 1 error | |
80 | gui_validation_error_plural: %d errores |
|
80 | gui_validation_error_plural: %d errores | |
81 |
|
81 | |||
82 | field_name: Nombre |
|
82 | field_name: Nombre | |
83 | field_description: Descripción |
|
83 | field_description: Descripción | |
84 | field_summary: Resumen |
|
84 | field_summary: Resumen | |
85 | field_is_required: Obligatorio |
|
85 | field_is_required: Obligatorio | |
86 | field_firstname: Nombre |
|
86 | field_firstname: Nombre | |
87 | field_lastname: Apellido |
|
87 | field_lastname: Apellido | |
88 | field_mail: Email |
|
88 | field_mail: Email | |
89 | field_filename: Fichero |
|
89 | field_filename: Fichero | |
90 | field_filesize: Tamaño |
|
90 | field_filesize: Tamaño | |
91 | field_downloads: Telecargas |
|
91 | field_downloads: Telecargas | |
92 | field_author: Autor |
|
92 | field_author: Autor | |
93 | field_created_on: Creado |
|
93 | field_created_on: Creado | |
94 | field_updated_on: Actualizado |
|
94 | field_updated_on: Actualizado | |
95 | field_field_format: Formato |
|
95 | field_field_format: Formato | |
96 | field_is_for_all: Para todos los proyectos |
|
96 | field_is_for_all: Para todos los proyectos | |
97 | field_possible_values: Valores posibles |
|
97 | field_possible_values: Valores posibles | |
98 | field_regexp: Expresión regular |
|
98 | field_regexp: Expresión regular | |
99 | field_min_length: Longitud mínima |
|
99 | field_min_length: Longitud mínima | |
100 | field_max_length: Longitud máxima |
|
100 | field_max_length: Longitud máxima | |
101 | field_value: Valor |
|
101 | field_value: Valor | |
102 | field_category: Categoría |
|
102 | field_category: Categoría | |
103 | field_title: Título |
|
103 | field_title: Título | |
104 | field_project: Proyecto |
|
104 | field_project: Proyecto | |
105 | field_issue: Petición |
|
105 | field_issue: Petición | |
106 | field_status: Estatuto |
|
106 | field_status: Estatuto | |
107 | field_notes: Notas |
|
107 | field_notes: Notas | |
108 | field_is_closed: Petición resuelta |
|
108 | field_is_closed: Petición resuelta | |
109 | field_is_default: Estatuto por defecto |
|
109 | field_is_default: Estatuto por defecto | |
110 | field_html_color: Color |
|
110 | field_html_color: Color | |
111 | field_tracker: Tracker |
|
111 | field_tracker: Tracker | |
112 | field_subject: Tema |
|
112 | field_subject: Tema | |
113 | field_due_date: Fecha debida |
|
113 | field_due_date: Fecha debida | |
114 | field_assigned_to: Asignado a |
|
114 | field_assigned_to: Asignado a | |
115 | field_priority: Prioridad |
|
115 | field_priority: Prioridad | |
116 | field_fixed_version: Versión corregida |
|
116 | field_fixed_version: Versión corregida | |
117 | field_user: Usuario |
|
117 | field_user: Usuario | |
118 | field_role: Papel |
|
118 | field_role: Papel | |
119 | field_homepage: Sitio web |
|
119 | field_homepage: Sitio web | |
120 | field_is_public: Público |
|
120 | field_is_public: Público | |
121 | field_parent: Proyecto secundario de |
|
121 | field_parent: Proyecto secundario de | |
122 | field_is_in_chlog: Consultar las peticiones en el histórico |
|
122 | field_is_in_chlog: Consultar las peticiones en el histórico | |
123 | field_is_in_roadmap: Consultar las peticiones en el roadmap |
|
123 | field_is_in_roadmap: Consultar las peticiones en el roadmap | |
124 | field_login: Identificador |
|
124 | field_login: Identificador | |
125 | field_mail_notification: Notificación por mail |
|
125 | field_mail_notification: Notificación por mail | |
126 | field_admin: Administrador |
|
126 | field_admin: Administrador | |
127 | field_last_login_on: Última conexión |
|
127 | field_last_login_on: Última conexión | |
128 | field_language: Lengua |
|
128 | field_language: Lengua | |
129 | field_effective_date: Fecha |
|
129 | field_effective_date: Fecha | |
130 | field_password: Contraseña |
|
130 | field_password: Contraseña | |
131 | field_new_password: Nueva contraseña |
|
131 | field_new_password: Nueva contraseña | |
132 | field_password_confirmation: Confirmación |
|
132 | field_password_confirmation: Confirmación | |
133 | field_version: Versión |
|
133 | field_version: Versión | |
134 | field_type: Tipo |
|
134 | field_type: Tipo | |
135 | field_host: Anfitrión |
|
135 | field_host: Anfitrión | |
136 | field_port: Puerto |
|
136 | field_port: Puerto | |
137 | field_account: Cuenta |
|
137 | field_account: Cuenta | |
138 | field_base_dn: Base DN |
|
138 | field_base_dn: Base DN | |
139 | field_attr_login: Cualidad del identificador |
|
139 | field_attr_login: Cualidad del identificador | |
140 | field_attr_firstname: Cualidad del nombre |
|
140 | field_attr_firstname: Cualidad del nombre | |
141 | field_attr_lastname: Cualidad del apellido |
|
141 | field_attr_lastname: Cualidad del apellido | |
142 | field_attr_mail: Cualidad del Email |
|
142 | field_attr_mail: Cualidad del Email | |
143 | field_onthefly: Creación del usuario On-the-fly |
|
143 | field_onthefly: Creación del usuario On-the-fly | |
144 | field_start_date: Comienzo |
|
144 | field_start_date: Comienzo | |
145 | field_done_ratio: %% Realizado |
|
145 | field_done_ratio: %% Realizado | |
146 | field_auth_source: Modo de la autentificación |
|
146 | field_auth_source: Modo de la autentificación | |
147 | field_hide_mail: Ocultar mi email address |
|
147 | field_hide_mail: Ocultar mi email address | |
148 | field_comments: Comentario |
|
148 | field_comments: Comentario | |
149 | field_url: URL |
|
149 | field_url: URL | |
150 | field_start_page: Página principal |
|
150 | field_start_page: Página principal | |
151 | field_subproject: Proyecto secundario |
|
151 | field_subproject: Proyecto secundario | |
152 | field_hours: Hours |
|
152 | field_hours: Hours | |
153 | field_activity: Activity |
|
153 | field_activity: Activity | |
154 | field_spent_on: Fecha |
|
154 | field_spent_on: Fecha | |
155 | field_identifier: Identifier |
|
155 | field_identifier: Identifier | |
156 | field_is_filter: Used as a filter |
|
156 | field_is_filter: Used as a filter | |
157 | field_issue_to_id: Related issue |
|
157 | field_issue_to_id: Related issue | |
158 | field_delay: Delay |
|
158 | field_delay: Delay | |
159 | field_assignable: Issues can be assigned to this role |
|
159 | field_assignable: Issues can be assigned to this role | |
160 | field_redirect_existing_links: Redirect existing links |
|
160 | field_redirect_existing_links: Redirect existing links | |
161 | field_estimated_hours: Estimated time |
|
161 | field_estimated_hours: Estimated time | |
162 |
|
162 | |||
163 | setting_app_title: Título del aplicación |
|
163 | setting_app_title: Título del aplicación | |
164 | setting_app_subtitle: Subtítulo del aplicación |
|
164 | setting_app_subtitle: Subtítulo del aplicación | |
165 | setting_welcome_text: Texto acogida |
|
165 | setting_welcome_text: Texto acogida | |
166 | setting_default_language: Lengua del defecto |
|
166 | setting_default_language: Lengua del defecto | |
167 | setting_login_required: Autentif. requerida |
|
167 | setting_login_required: Autentif. requerida | |
168 | setting_self_registration: Registro permitido |
|
168 | setting_self_registration: Registro permitido | |
169 | setting_attachment_max_size: Tamaño máximo del fichero |
|
169 | setting_attachment_max_size: Tamaño máximo del fichero | |
170 | setting_issues_export_limit: Issues export limit |
|
170 | setting_issues_export_limit: Issues export limit | |
171 | setting_mail_from: Email de la emisión |
|
171 | setting_mail_from: Email de la emisión | |
172 | setting_host_name: Nombre de anfitrión |
|
172 | setting_host_name: Nombre de anfitrión | |
173 | setting_text_formatting: Formato de texto |
|
173 | setting_text_formatting: Formato de texto | |
174 | setting_wiki_compression: Compresión de la historia de Wiki |
|
174 | setting_wiki_compression: Compresión de la historia de Wiki | |
175 | setting_feeds_limit: Feed content limit |
|
175 | setting_feeds_limit: Feed content limit | |
176 | setting_autofetch_changesets: Autofetch commits |
|
176 | setting_autofetch_changesets: Autofetch commits | |
177 | setting_sys_api_enabled: Enable WS for repository management |
|
177 | setting_sys_api_enabled: Enable WS for repository management | |
178 | setting_commit_ref_keywords: Referencing keywords |
|
178 | setting_commit_ref_keywords: Referencing keywords | |
179 | setting_commit_fix_keywords: Fixing keywords |
|
179 | setting_commit_fix_keywords: Fixing keywords | |
180 | setting_autologin: Autologin |
|
180 | setting_autologin: Autologin | |
181 | setting_date_format: Date format |
|
181 | setting_date_format: Date format | |
182 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
182 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
183 |
|
183 | |||
184 | label_user: Usuario |
|
184 | label_user: Usuario | |
185 | label_user_plural: Usuarios |
|
185 | label_user_plural: Usuarios | |
186 | label_user_new: Nuevo usuario |
|
186 | label_user_new: Nuevo usuario | |
187 | label_project: Proyecto |
|
187 | label_project: Proyecto | |
188 | label_project_new: Nuevo proyecto |
|
188 | label_project_new: Nuevo proyecto | |
189 | label_project_plural: Proyectos |
|
189 | label_project_plural: Proyectos | |
190 | label_project_all: All Projects |
|
190 | label_project_all: All Projects | |
191 | label_project_latest: Los proyectos más últimos |
|
191 | label_project_latest: Los proyectos más últimos | |
192 | label_issue: Petición |
|
192 | label_issue: Petición | |
193 | label_issue_new: Nueva petición |
|
193 | label_issue_new: Nueva petición | |
194 | label_issue_plural: Peticiones |
|
194 | label_issue_plural: Peticiones | |
195 | label_issue_view_all: Ver todas las peticiones |
|
195 | label_issue_view_all: Ver todas las peticiones | |
196 | label_document: Documento |
|
196 | label_document: Documento | |
197 | label_document_new: Nuevo documento |
|
197 | label_document_new: Nuevo documento | |
198 | label_document_plural: Documentos |
|
198 | label_document_plural: Documentos | |
199 | label_role: Papel |
|
199 | label_role: Papel | |
200 | label_role_plural: Papeles |
|
200 | label_role_plural: Papeles | |
201 | label_role_new: Nuevo papel |
|
201 | label_role_new: Nuevo papel | |
202 | label_role_and_permissions: Papeles y permisos |
|
202 | label_role_and_permissions: Papeles y permisos | |
203 | label_member: Miembro |
|
203 | label_member: Miembro | |
204 | label_member_new: Nuevo miembro |
|
204 | label_member_new: Nuevo miembro | |
205 | label_member_plural: Miembros |
|
205 | label_member_plural: Miembros | |
206 | label_tracker: Tracker |
|
206 | label_tracker: Tracker | |
207 | label_tracker_plural: Trackers |
|
207 | label_tracker_plural: Trackers | |
208 | label_tracker_new: Nuevo tracker |
|
208 | label_tracker_new: Nuevo tracker | |
209 | label_workflow: Workflow |
|
209 | label_workflow: Workflow | |
210 | label_issue_status: Estatuto de petición |
|
210 | label_issue_status: Estatuto de petición | |
211 | label_issue_status_plural: Estatutos de las peticiones |
|
211 | label_issue_status_plural: Estatutos de las peticiones | |
212 | label_issue_status_new: Nuevo estatuto |
|
212 | label_issue_status_new: Nuevo estatuto | |
213 | label_issue_category: Categoría de las peticiones |
|
213 | label_issue_category: Categoría de las peticiones | |
214 | label_issue_category_plural: Categorías de las peticiones |
|
214 | label_issue_category_plural: Categorías de las peticiones | |
215 | label_issue_category_new: Nueva categoría |
|
215 | label_issue_category_new: Nueva categoría | |
216 | label_custom_field: Campo personalizado |
|
216 | label_custom_field: Campo personalizado | |
217 | label_custom_field_plural: Campos personalizados |
|
217 | label_custom_field_plural: Campos personalizados | |
218 | label_custom_field_new: Nuevo campo personalizado |
|
218 | label_custom_field_new: Nuevo campo personalizado | |
219 | label_enumerations: Listas de valores |
|
219 | label_enumerations: Listas de valores | |
220 | label_enumeration_new: Nuevo valor |
|
220 | label_enumeration_new: Nuevo valor | |
221 | label_information: Informacion |
|
221 | label_information: Informacion | |
222 | label_information_plural: Informaciones |
|
222 | label_information_plural: Informaciones | |
223 | label_please_login: Conexión |
|
223 | label_please_login: Conexión | |
224 | label_register: Registrar |
|
224 | label_register: Registrar | |
225 | label_password_lost: ¿Olvidaste la contraseña? |
|
225 | label_password_lost: ¿Olvidaste la contraseña? | |
226 | label_home: Acogida |
|
226 | label_home: Acogida | |
227 | label_my_page: Mi página |
|
227 | label_my_page: Mi página | |
228 | label_my_account: Mi cuenta |
|
228 | label_my_account: Mi cuenta | |
229 | label_my_projects: Mis proyectos |
|
229 | label_my_projects: Mis proyectos | |
230 | label_administration: Administración |
|
230 | label_administration: Administración | |
231 | label_login: Conexión |
|
231 | label_login: Conexión | |
232 | label_logout: Desconexión |
|
232 | label_logout: Desconexión | |
233 | label_help: Ayuda |
|
233 | label_help: Ayuda | |
234 | label_reported_issues: Peticiones registradas |
|
234 | label_reported_issues: Peticiones registradas | |
235 | label_assigned_to_me_issues: Peticiones que me están asignadas |
|
235 | label_assigned_to_me_issues: Peticiones que me están asignadas | |
236 | label_last_login: Última conexión |
|
236 | label_last_login: Última conexión | |
237 | label_last_updates: Actualizado |
|
237 | label_last_updates: Actualizado | |
238 | label_last_updates_plural: %d Actualizados |
|
238 | label_last_updates_plural: %d Actualizados | |
239 | label_registered_on: Inscrito el |
|
239 | label_registered_on: Inscrito el | |
240 | label_activity: Actividad |
|
240 | label_activity: Actividad | |
241 | label_new: Nuevo |
|
241 | label_new: Nuevo | |
242 | label_logged_as: Conectado como |
|
242 | label_logged_as: Conectado como | |
243 | label_environment: Environment |
|
243 | label_environment: Environment | |
244 | label_authentication: Autentificación |
|
244 | label_authentication: Autentificación | |
245 | label_auth_source: Modo de la autentificación |
|
245 | label_auth_source: Modo de la autentificación | |
246 | label_auth_source_new: Nuevo modo de la autentificación |
|
246 | label_auth_source_new: Nuevo modo de la autentificación | |
247 | label_auth_source_plural: Modos de la autentificación |
|
247 | label_auth_source_plural: Modos de la autentificación | |
248 | label_subproject_plural: Proyectos secundarios |
|
248 | label_subproject_plural: Proyectos secundarios | |
249 | label_min_max_length: Longitud mín - máx |
|
249 | label_min_max_length: Longitud mín - máx | |
250 | label_list: Lista |
|
250 | label_list: Lista | |
251 | label_date: Fecha |
|
251 | label_date: Fecha | |
252 | label_integer: Número |
|
252 | label_integer: Número | |
253 | label_boolean: Boleano |
|
253 | label_boolean: Boleano | |
254 | label_string: Texto |
|
254 | label_string: Texto | |
255 | label_text: Texto largo |
|
255 | label_text: Texto largo | |
256 | label_attribute: Cualidad |
|
256 | label_attribute: Cualidad | |
257 | label_attribute_plural: Cualidades |
|
257 | label_attribute_plural: Cualidades | |
258 | label_download: %d Telecarga |
|
258 | label_download: %d Telecarga | |
259 | label_download_plural: %d Telecargas |
|
259 | label_download_plural: %d Telecargas | |
260 | label_no_data: Ningunos datos a exhibir |
|
260 | label_no_data: Ningunos datos a exhibir | |
261 | label_change_status: Cambiar el estatuto |
|
261 | label_change_status: Cambiar el estatuto | |
262 | label_history: Histórico |
|
262 | label_history: Histórico | |
263 | label_attachment: Fichero |
|
263 | label_attachment: Fichero | |
264 | label_attachment_new: Nuevo fichero |
|
264 | label_attachment_new: Nuevo fichero | |
265 | label_attachment_delete: Suprimir el fichero |
|
265 | label_attachment_delete: Suprimir el fichero | |
266 | label_attachment_plural: Ficheros |
|
266 | label_attachment_plural: Ficheros | |
267 | label_report: Informe |
|
267 | label_report: Informe | |
268 | label_report_plural: Informes |
|
268 | label_report_plural: Informes | |
269 | label_news: Noticia |
|
269 | label_news: Noticia | |
270 | label_news_new: Nueva noticia |
|
270 | label_news_new: Nueva noticia | |
271 | label_news_plural: Noticias |
|
271 | label_news_plural: Noticias | |
272 | label_news_latest: Últimas noticias |
|
272 | label_news_latest: Últimas noticias | |
273 | label_news_view_all: Ver todas las noticias |
|
273 | label_news_view_all: Ver todas las noticias | |
274 | label_change_log: Cambios |
|
274 | label_change_log: Cambios | |
275 | label_settings: Configuración |
|
275 | label_settings: Configuración | |
276 | label_overview: Vistazo |
|
276 | label_overview: Vistazo | |
277 | label_version: Versión |
|
277 | label_version: Versión | |
278 | label_version_new: Nueva versión |
|
278 | label_version_new: Nueva versión | |
279 | label_version_plural: Versiónes |
|
279 | label_version_plural: Versiónes | |
280 | label_confirmation: Confirmación |
|
280 | label_confirmation: Confirmación | |
281 | label_export_to: Exportar a |
|
281 | label_export_to: Exportar a | |
282 | label_read: Leer... |
|
282 | label_read: Leer... | |
283 | label_public_projects: Proyectos publicos |
|
283 | label_public_projects: Proyectos publicos | |
284 | label_open_issues: abierta |
|
284 | label_open_issues: abierta | |
285 | label_open_issues_plural: abiertas |
|
285 | label_open_issues_plural: abiertas | |
286 | label_closed_issues: cerrada |
|
286 | label_closed_issues: cerrada | |
287 | label_closed_issues_plural: cerradas |
|
287 | label_closed_issues_plural: cerradas | |
288 | label_total: Total |
|
288 | label_total: Total | |
289 | label_permissions: Permisos |
|
289 | label_permissions: Permisos | |
290 | label_current_status: Estado actual |
|
290 | label_current_status: Estado actual | |
291 | label_new_statuses_allowed: Nuevos estatutos autorizados |
|
291 | label_new_statuses_allowed: Nuevos estatutos autorizados | |
292 | label_all: todos |
|
292 | label_all: todos | |
293 | label_none: ninguno |
|
293 | label_none: ninguno | |
294 | label_next: Próximo |
|
294 | label_next: Próximo | |
295 | label_previous: Precedente |
|
295 | label_previous: Precedente | |
296 | label_used_by: Utilizado por |
|
296 | label_used_by: Utilizado por | |
297 | label_details: Detalles |
|
297 | label_details: Detalles | |
298 | label_add_note: Agregar una nota |
|
298 | label_add_note: Agregar una nota | |
299 | label_per_page: Por la página |
|
299 | label_per_page: Por la página | |
300 | label_calendar: Calendario |
|
300 | label_calendar: Calendario | |
301 | label_months_from: meses de |
|
301 | label_months_from: meses de | |
302 | label_gantt: Gantt |
|
302 | label_gantt: Gantt | |
303 | label_internal: Interno |
|
303 | label_internal: Interno | |
304 | label_last_changes: %d cambios del último |
|
304 | label_last_changes: %d cambios del último | |
305 | label_change_view_all: Ver todos los cambios |
|
305 | label_change_view_all: Ver todos los cambios | |
306 | label_personalize_page: Personalizar esta página |
|
306 | label_personalize_page: Personalizar esta página | |
307 | label_comment: Comentario |
|
307 | label_comment: Comentario | |
308 | label_comment_plural: Comentarios |
|
308 | label_comment_plural: Comentarios | |
309 | label_comment_add: Agregar un comentario |
|
309 | label_comment_add: Agregar un comentario | |
310 | label_comment_added: Comentario agregó |
|
310 | label_comment_added: Comentario agregó | |
311 | label_comment_delete: Suprimir comentarios |
|
311 | label_comment_delete: Suprimir comentarios | |
312 | label_query: Pregunta personalizada |
|
312 | label_query: Pregunta personalizada | |
313 | label_query_plural: Preguntas personalizadas |
|
313 | label_query_plural: Preguntas personalizadas | |
314 | label_query_new: Nueva preguntas |
|
314 | label_query_new: Nueva preguntas | |
315 | label_filter_add: Agregar el filtro |
|
315 | label_filter_add: Agregar el filtro | |
316 | label_filter_plural: Filtros |
|
316 | label_filter_plural: Filtros | |
317 | label_equals: igual |
|
317 | label_equals: igual | |
318 | label_not_equals: no igual |
|
318 | label_not_equals: no igual | |
319 | label_in_less_than: en menos que |
|
319 | label_in_less_than: en menos que | |
320 | label_in_more_than: en más que |
|
320 | label_in_more_than: en más que | |
321 | label_in: en |
|
321 | label_in: en | |
322 | label_today: hoy |
|
322 | label_today: hoy | |
323 | label_this_week: this week |
|
323 | label_this_week: this week | |
324 | label_less_than_ago: hace menos de |
|
324 | label_less_than_ago: hace menos de | |
325 | label_more_than_ago: hace más de |
|
325 | label_more_than_ago: hace más de | |
326 | label_ago: hace |
|
326 | label_ago: hace | |
327 | label_contains: contiene |
|
327 | label_contains: contiene | |
328 | label_not_contains: no contiene |
|
328 | label_not_contains: no contiene | |
329 | label_day_plural: días |
|
329 | label_day_plural: días | |
330 | label_repository: Depósito |
|
330 | label_repository: Depósito | |
331 | label_browse: Hojear |
|
331 | label_browse: Hojear | |
332 | label_modification: %d modificación |
|
332 | label_modification: %d modificación | |
333 | label_modification_plural: %d modificaciones |
|
333 | label_modification_plural: %d modificaciones | |
334 | label_revision: Revisión |
|
334 | label_revision: Revisión | |
335 | label_revision_plural: Revisiones |
|
335 | label_revision_plural: Revisiones | |
336 | label_added: agregado |
|
336 | label_added: agregado | |
337 | label_modified: modificado |
|
337 | label_modified: modificado | |
338 | label_deleted: suprimido |
|
338 | label_deleted: suprimido | |
339 | label_latest_revision: La revisión más última |
|
339 | label_latest_revision: La revisión más última | |
340 | label_latest_revision_plural: Latest revisions |
|
340 | label_latest_revision_plural: Latest revisions | |
341 | label_view_revisions: Ver las revisiones |
|
341 | label_view_revisions: Ver las revisiones | |
342 | label_max_size: Tamaño máximo |
|
342 | label_max_size: Tamaño máximo | |
343 | label_on: en |
|
343 | label_on: en | |
344 | label_sort_highest: Primero |
|
344 | label_sort_highest: Primero | |
345 | label_sort_higher: Subir |
|
345 | label_sort_higher: Subir | |
346 | label_sort_lower: Bajar |
|
346 | label_sort_lower: Bajar | |
347 | label_sort_lowest: Último |
|
347 | label_sort_lowest: Último | |
348 | label_roadmap: Roadmap |
|
348 | label_roadmap: Roadmap | |
349 | label_roadmap_due_in: Due in |
|
349 | label_roadmap_due_in: Due in | |
350 | label_roadmap_overdue: %s late |
|
350 | label_roadmap_overdue: %s late | |
351 | label_roadmap_no_issues: No issues for this version |
|
351 | label_roadmap_no_issues: No issues for this version | |
352 | label_search: Búsqueda |
|
352 | label_search: Búsqueda | |
353 | label_result: %d resultado |
|
353 | label_result: %d resultado | |
354 | label_result_plural: %d resultados |
|
354 | label_result_plural: %d resultados | |
355 | label_all_words: Todas las palabras |
|
355 | label_all_words: Todas las palabras | |
356 | label_wiki: Wiki |
|
356 | label_wiki: Wiki | |
357 | label_wiki_edit: Wiki edit |
|
357 | label_wiki_edit: Wiki edit | |
358 | label_wiki_edit_plural: Wiki edits |
|
358 | label_wiki_edit_plural: Wiki edits | |
359 | label_wiki_page: Wiki page |
|
359 | label_wiki_page: Wiki page | |
360 | label_wiki_page_plural: Wiki pages |
|
360 | label_wiki_page_plural: Wiki pages | |
361 | label_page_index: Índice |
|
361 | label_page_index: Índice | |
362 | label_current_version: Versión actual |
|
362 | label_current_version: Versión actual | |
363 | label_preview: Previo |
|
363 | label_preview: Previo | |
364 | label_feed_plural: Feeds |
|
364 | label_feed_plural: Feeds | |
365 | label_changes_details: Detalles de todos los cambios |
|
365 | label_changes_details: Detalles de todos los cambios | |
366 | label_issue_tracking: Issue tracking |
|
366 | label_issue_tracking: Issue tracking | |
367 | label_spent_time: Spent time |
|
367 | label_spent_time: Spent time | |
368 | label_f_hour: %.2f hour |
|
368 | label_f_hour: %.2f hour | |
369 | label_f_hour_plural: %.2f hours |
|
369 | label_f_hour_plural: %.2f hours | |
370 | label_time_tracking: Time tracking |
|
370 | label_time_tracking: Time tracking | |
371 | label_change_plural: Changes |
|
371 | label_change_plural: Changes | |
372 | label_statistics: Statistics |
|
372 | label_statistics: Statistics | |
373 | label_commits_per_month: Commits per month |
|
373 | label_commits_per_month: Commits per month | |
374 | label_commits_per_author: Commits per author |
|
374 | label_commits_per_author: Commits per author | |
375 | label_view_diff: View differences |
|
375 | label_view_diff: View differences | |
376 | label_diff_inline: inline |
|
376 | label_diff_inline: inline | |
377 | label_diff_side_by_side: side by side |
|
377 | label_diff_side_by_side: side by side | |
378 | label_options: Options |
|
378 | label_options: Options | |
379 | label_copy_workflow_from: Copy workflow from |
|
379 | label_copy_workflow_from: Copy workflow from | |
380 | label_permissions_report: Permissions report |
|
380 | label_permissions_report: Permissions report | |
381 | label_watched_issues: Watched issues |
|
381 | label_watched_issues: Watched issues | |
382 | label_related_issues: Related issues |
|
382 | label_related_issues: Related issues | |
383 | label_applied_status: Applied status |
|
383 | label_applied_status: Applied status | |
384 | label_loading: Loading... |
|
384 | label_loading: Loading... | |
385 | label_relation_new: New relation |
|
385 | label_relation_new: New relation | |
386 | label_relation_delete: Delete relation |
|
386 | label_relation_delete: Delete relation | |
387 | label_relates_to: related to |
|
387 | label_relates_to: related to | |
388 | label_duplicates: duplicates |
|
388 | label_duplicates: duplicates | |
389 | label_blocks: blocks |
|
389 | label_blocks: blocks | |
390 | label_blocked_by: blocked by |
|
390 | label_blocked_by: blocked by | |
391 | label_precedes: precedes |
|
391 | label_precedes: precedes | |
392 | label_follows: follows |
|
392 | label_follows: follows | |
393 | label_end_to_start: end to start |
|
393 | label_end_to_start: end to start | |
394 | label_end_to_end: end to end |
|
394 | label_end_to_end: end to end | |
395 | label_start_to_start: start to start |
|
395 | label_start_to_start: start to start | |
396 | label_start_to_end: start to end |
|
396 | label_start_to_end: start to end | |
397 | label_stay_logged_in: Stay logged in |
|
397 | label_stay_logged_in: Stay logged in | |
398 | label_disabled: disabled |
|
398 | label_disabled: disabled | |
399 | label_show_completed_versions: Show completed versions |
|
399 | label_show_completed_versions: Show completed versions | |
400 | label_me: me |
|
400 | label_me: me | |
401 | label_board: Forum |
|
401 | label_board: Forum | |
402 | label_board_new: New forum |
|
402 | label_board_new: New forum | |
403 | label_board_plural: Forums |
|
403 | label_board_plural: Forums | |
404 | label_topic_plural: Topics |
|
404 | label_topic_plural: Topics | |
405 | label_message_plural: Messages |
|
405 | label_message_plural: Messages | |
406 | label_message_last: Last message |
|
406 | label_message_last: Last message | |
407 | label_message_new: New message |
|
407 | label_message_new: New message | |
408 | label_reply_plural: Replies |
|
408 | label_reply_plural: Replies | |
409 | label_send_information: Send account information to the user |
|
409 | label_send_information: Send account information to the user | |
410 | label_year: Year |
|
410 | label_year: Year | |
411 | label_month: Month |
|
411 | label_month: Month | |
412 | label_week: Week |
|
412 | label_week: Week | |
413 | label_date_from: From |
|
413 | label_date_from: From | |
414 | label_date_to: To |
|
414 | label_date_to: To | |
415 | label_language_based: Language based |
|
415 | label_language_based: Language based | |
416 | label_sort_by: Sort by "%s" |
|
416 | label_sort_by: Sort by "%s" | |
417 | label_send_test_email: Send a test email |
|
417 | label_send_test_email: Send a test email | |
418 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
418 | label_feeds_access_key_created_on: RSS access key created %s ago | |
419 | label_module_plural: Modules |
|
419 | label_module_plural: Modules | |
420 | label_added_time_by: Added by %s %s ago |
|
420 | label_added_time_by: Added by %s %s ago | |
421 | label_updated_time: Updated %s ago |
|
421 | label_updated_time: Updated %s ago | |
422 | label_jump_to_a_project: Jump to a project... |
|
422 | label_jump_to_a_project: Jump to a project... | |
423 |
|
423 | |||
424 | button_login: Conexión |
|
424 | button_login: Conexión | |
425 | button_submit: Someter |
|
425 | button_submit: Someter | |
426 | button_save: Validar |
|
426 | button_save: Validar | |
427 | button_check_all: Seleccionar todo |
|
427 | button_check_all: Seleccionar todo | |
428 | button_uncheck_all: No seleccionar nada |
|
428 | button_uncheck_all: No seleccionar nada | |
429 | button_delete: Suprimir |
|
429 | button_delete: Suprimir | |
430 | button_create: Crear |
|
430 | button_create: Crear | |
431 | button_test: Testar |
|
431 | button_test: Testar | |
432 | button_edit: Modificar |
|
432 | button_edit: Modificar | |
433 | button_add: Añadir |
|
433 | button_add: Añadir | |
434 | button_change: Cambiar |
|
434 | button_change: Cambiar | |
435 | button_apply: Aplicar |
|
435 | button_apply: Aplicar | |
436 | button_clear: Anular |
|
436 | button_clear: Anular | |
437 | button_lock: Bloquear |
|
437 | button_lock: Bloquear | |
438 | button_unlock: Desbloquear |
|
438 | button_unlock: Desbloquear | |
439 | button_download: Telecargar |
|
439 | button_download: Telecargar | |
440 | button_list: Listar |
|
440 | button_list: Listar | |
441 | button_view: Ver |
|
441 | button_view: Ver | |
442 | button_move: Mover |
|
442 | button_move: Mover | |
443 | button_back: Atrás |
|
443 | button_back: Atrás | |
444 | button_cancel: Cancelar |
|
444 | button_cancel: Cancelar | |
445 | button_activate: Activar |
|
445 | button_activate: Activar | |
446 | button_sort: Clasificar |
|
446 | button_sort: Clasificar | |
447 | button_log_time: Log time |
|
447 | button_log_time: Log time | |
448 | button_rollback: Rollback to this version |
|
448 | button_rollback: Rollback to this version | |
449 | button_watch: Watch |
|
449 | button_watch: Watch | |
450 | button_unwatch: Unwatch |
|
450 | button_unwatch: Unwatch | |
451 | button_reply: Reply |
|
451 | button_reply: Reply | |
452 | button_archive: Archive |
|
452 | button_archive: Archive | |
453 | button_unarchive: Unarchive |
|
453 | button_unarchive: Unarchive | |
454 | button_reset: Reset |
|
454 | button_reset: Reset | |
455 | button_rename: Rename |
|
455 | button_rename: Rename | |
456 |
|
456 | |||
457 | status_active: active |
|
457 | status_active: active | |
458 | status_registered: registered |
|
458 | status_registered: registered | |
459 | status_locked: locked |
|
459 | status_locked: locked | |
460 |
|
460 | |||
461 | text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail. |
|
461 | text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail. | |
462 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
462 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
463 | text_min_max_length_info: 0 para ninguna restricción |
|
463 | text_min_max_length_info: 0 para ninguna restricción | |
464 | text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ? |
|
464 | text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ? | |
465 | text_workflow_edit: Seleccionar un workflow para actualizar |
|
465 | text_workflow_edit: Seleccionar un workflow para actualizar | |
466 | text_are_you_sure: ¿ Estás seguro ? |
|
466 | text_are_you_sure: ¿ Estás seguro ? | |
467 | text_journal_changed: cambiado de %s a %s |
|
467 | text_journal_changed: cambiado de %s a %s | |
468 | text_journal_set_to: fijado a %s |
|
468 | text_journal_set_to: fijado a %s | |
469 | text_journal_deleted: suprimido |
|
469 | text_journal_deleted: suprimido | |
470 | text_tip_task_begin_day: tarea que comienza este día |
|
470 | text_tip_task_begin_day: tarea que comienza este día | |
471 | text_tip_task_end_day: tarea que termina este día |
|
471 | text_tip_task_end_day: tarea que termina este día | |
472 | text_tip_task_begin_end_day: tarea que comienza y termina este día |
|
472 | text_tip_task_begin_end_day: tarea que comienza y termina este día | |
473 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
473 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' | |
474 | text_caracters_maximum: %d characters maximum. |
|
474 | text_caracters_maximum: %d characters maximum. | |
475 | text_length_between: Length between %d and %d characters. |
|
475 | text_length_between: Length between %d and %d characters. | |
476 | text_tracker_no_workflow: No workflow defined for this tracker |
|
476 | text_tracker_no_workflow: No workflow defined for this tracker | |
477 | text_unallowed_characters: Unallowed characters |
|
477 | text_unallowed_characters: Unallowed characters | |
478 | text_comma_separated: Multiple values allowed (comma separated). |
|
478 | text_comma_separated: Multiple values allowed (comma separated). | |
479 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
479 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
480 | text_issue_added: Issue %s has been reported. |
|
480 | text_issue_added: Issue %s has been reported. | |
481 | text_issue_updated: Issue %s has been updated. |
|
481 | text_issue_updated: Issue %s has been updated. | |
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
484 | text_issue_category_destroy_assignments: Remove category assignments |
|
484 | text_issue_category_destroy_assignments: Remove category assignments | |
485 | text_issue_category_reassign_to: Reassing issues to this category |
|
485 | text_issue_category_reassign_to: Reassing issues to this category | |
486 |
|
486 | |||
487 | default_role_manager: Manager |
|
487 | default_role_manager: Manager | |
488 | default_role_developper: Desarrollador |
|
488 | default_role_developper: Desarrollador | |
489 | default_role_reporter: Informador |
|
489 | default_role_reporter: Informador | |
490 | default_tracker_bug: Anomalía |
|
490 | default_tracker_bug: Anomalía | |
491 | default_tracker_feature: Evolución |
|
491 | default_tracker_feature: Evolución | |
492 | default_tracker_support: Asistencia |
|
492 | default_tracker_support: Asistencia | |
493 | default_issue_status_new: Nuevo |
|
493 | default_issue_status_new: Nuevo | |
494 | default_issue_status_assigned: Asignada |
|
494 | default_issue_status_assigned: Asignada | |
495 | default_issue_status_resolved: Resuelta |
|
495 | default_issue_status_resolved: Resuelta | |
496 | default_issue_status_feedback: Comentario |
|
496 | default_issue_status_feedback: Comentario | |
497 | default_issue_status_closed: Cerrada |
|
497 | default_issue_status_closed: Cerrada | |
498 | default_issue_status_rejected: Rechazada |
|
498 | default_issue_status_rejected: Rechazada | |
499 | default_doc_category_user: Documentación del usuario |
|
499 | default_doc_category_user: Documentación del usuario | |
500 | default_doc_category_tech: Documentación tecnica |
|
500 | default_doc_category_tech: Documentación tecnica | |
501 | default_priority_low: Bajo |
|
501 | default_priority_low: Bajo | |
502 | default_priority_normal: Normal |
|
502 | default_priority_normal: Normal | |
503 | default_priority_high: Alto |
|
503 | default_priority_high: Alto | |
504 | default_priority_urgent: Urgente |
|
504 | default_priority_urgent: Urgente | |
505 | default_priority_immediate: Ahora |
|
505 | default_priority_immediate: Ahora | |
506 | default_activity_design: Design |
|
506 | default_activity_design: Design | |
507 | default_activity_development: Development |
|
507 | default_activity_development: Development | |
508 |
|
508 | |||
509 | enumeration_issue_priorities: Prioridad de las peticiones |
|
509 | enumeration_issue_priorities: Prioridad de las peticiones | |
510 | enumeration_doc_categories: Categorías del documento |
|
510 | enumeration_doc_categories: Categorías del documento | |
511 | enumeration_activities: Activities (time tracking) |
|
511 | enumeration_activities: Activities (time tracking) | |
|
512 | label_file_plural: Files | |||
|
513 | label_changeset_plural: Changesets |
@@ -1,511 +1,513 | |||||
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 |
|
54 | |||
55 | notice_account_updated: Le compte a été mis à jour avec succès. |
|
55 | notice_account_updated: Le compte a été mis à jour avec succès. | |
56 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. |
|
56 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. | |
57 | notice_account_password_updated: Mot de passe mis à jour avec succès. |
|
57 | notice_account_password_updated: Mot de passe mis à jour avec succès. | |
58 | notice_account_wrong_password: Mot de passe incorrect |
|
58 | notice_account_wrong_password: Mot de passe incorrect | |
59 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé. |
|
59 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé. | |
60 | notice_account_unknown_email: Aucun compte ne correspond à cette adresse. |
|
60 | notice_account_unknown_email: Aucun compte ne correspond à cette adresse. | |
61 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. |
|
61 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. | |
62 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé. |
|
62 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé. | |
63 | notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter. |
|
63 | notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter. | |
64 | notice_successful_create: Création effectuée avec succès. |
|
64 | notice_successful_create: Création effectuée avec succès. | |
65 | notice_successful_update: Mise à jour effectuée avec succès. |
|
65 | notice_successful_update: Mise à jour effectuée avec succès. | |
66 | notice_successful_delete: Suppression effectuée avec succès. |
|
66 | notice_successful_delete: Suppression effectuée avec succès. | |
67 | notice_successful_connection: Connection réussie. |
|
67 | notice_successful_connection: Connection réussie. | |
68 | notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée." |
|
68 | notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée." | |
69 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. |
|
69 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. | |
70 | notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt." |
|
70 | notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt." | |
71 | notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page." |
|
71 | notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page." | |
72 | notice_email_sent: "Un email a été envoyé à %s" |
|
72 | notice_email_sent: "Un email a été envoyé à %s" | |
73 | notice_email_error: "Erreur lors de l'envoi de l'email (%s)" |
|
73 | notice_email_error: "Erreur lors de l'envoi de l'email (%s)" | |
74 | notice_feeds_access_key_reseted: Votre clé d'accès aux flux RSS a été réinitialisée. |
|
74 | notice_feeds_access_key_reseted: Votre clé d'accès aux flux RSS a été réinitialisée. | |
75 |
|
75 | |||
76 | mail_subject_lost_password: Votre mot de passe redMine |
|
76 | mail_subject_lost_password: Votre mot de passe redMine | |
77 | mail_subject_register: Activation de votre compte redMine |
|
77 | mail_subject_register: Activation de votre compte redMine | |
78 |
|
78 | |||
79 | gui_validation_error: 1 erreur |
|
79 | gui_validation_error: 1 erreur | |
80 | gui_validation_error_plural: %d erreurs |
|
80 | gui_validation_error_plural: %d erreurs | |
81 |
|
81 | |||
82 | field_name: Nom |
|
82 | field_name: Nom | |
83 | field_description: Description |
|
83 | field_description: Description | |
84 | field_summary: Résumé |
|
84 | field_summary: Résumé | |
85 | field_is_required: Obligatoire |
|
85 | field_is_required: Obligatoire | |
86 | field_firstname: Prénom |
|
86 | field_firstname: Prénom | |
87 | field_lastname: Nom |
|
87 | field_lastname: Nom | |
88 | field_mail: Email |
|
88 | field_mail: Email | |
89 | field_filename: Fichier |
|
89 | field_filename: Fichier | |
90 | field_filesize: Taille |
|
90 | field_filesize: Taille | |
91 | field_downloads: Téléchargements |
|
91 | field_downloads: Téléchargements | |
92 | field_author: Auteur |
|
92 | field_author: Auteur | |
93 | field_created_on: Créé |
|
93 | field_created_on: Créé | |
94 | field_updated_on: Mis à jour |
|
94 | field_updated_on: Mis à jour | |
95 | field_field_format: Format |
|
95 | field_field_format: Format | |
96 | field_is_for_all: Pour tous les projets |
|
96 | field_is_for_all: Pour tous les projets | |
97 | field_possible_values: Valeurs possibles |
|
97 | field_possible_values: Valeurs possibles | |
98 | field_regexp: Expression régulière |
|
98 | field_regexp: Expression régulière | |
99 | field_min_length: Longueur minimum |
|
99 | field_min_length: Longueur minimum | |
100 | field_max_length: Longueur maximum |
|
100 | field_max_length: Longueur maximum | |
101 | field_value: Valeur |
|
101 | field_value: Valeur | |
102 | field_category: Catégorie |
|
102 | field_category: Catégorie | |
103 | field_title: Titre |
|
103 | field_title: Titre | |
104 | field_project: Projet |
|
104 | field_project: Projet | |
105 | field_issue: Demande |
|
105 | field_issue: Demande | |
106 | field_status: Statut |
|
106 | field_status: Statut | |
107 | field_notes: Notes |
|
107 | field_notes: Notes | |
108 | field_is_closed: Demande fermée |
|
108 | field_is_closed: Demande fermée | |
109 | field_is_default: Statut par défaut |
|
109 | field_is_default: Statut par défaut | |
110 | field_html_color: Couleur |
|
110 | field_html_color: Couleur | |
111 | field_tracker: Tracker |
|
111 | field_tracker: Tracker | |
112 | field_subject: Sujet |
|
112 | field_subject: Sujet | |
113 | field_due_date: Date d'échéance |
|
113 | field_due_date: Date d'échéance | |
114 | field_assigned_to: Assigné à |
|
114 | field_assigned_to: Assigné à | |
115 | field_priority: Priorité |
|
115 | field_priority: Priorité | |
116 | field_fixed_version: Version corrigée |
|
116 | field_fixed_version: Version corrigée | |
117 | field_user: Utilisateur |
|
117 | field_user: Utilisateur | |
118 | field_role: Rôle |
|
118 | field_role: Rôle | |
119 | field_homepage: Site web |
|
119 | field_homepage: Site web | |
120 | field_is_public: Public |
|
120 | field_is_public: Public | |
121 | field_parent: Sous-projet de |
|
121 | field_parent: Sous-projet de | |
122 | field_is_in_chlog: Demandes affichées dans l'historique |
|
122 | field_is_in_chlog: Demandes affichées dans l'historique | |
123 | field_is_in_roadmap: Demandes affichées dans la roadmap |
|
123 | field_is_in_roadmap: Demandes affichées dans la roadmap | |
124 | field_login: Identifiant |
|
124 | field_login: Identifiant | |
125 | field_mail_notification: Notifications par mail |
|
125 | field_mail_notification: Notifications par mail | |
126 | field_admin: Administrateur |
|
126 | field_admin: Administrateur | |
127 | field_last_login_on: Dernière connexion |
|
127 | field_last_login_on: Dernière connexion | |
128 | field_language: Langue |
|
128 | field_language: Langue | |
129 | field_effective_date: Date |
|
129 | field_effective_date: Date | |
130 | field_password: Mot de passe |
|
130 | field_password: Mot de passe | |
131 | field_new_password: Nouveau mot de passe |
|
131 | field_new_password: Nouveau mot de passe | |
132 | field_password_confirmation: Confirmation |
|
132 | field_password_confirmation: Confirmation | |
133 | field_version: Version |
|
133 | field_version: Version | |
134 | field_type: Type |
|
134 | field_type: Type | |
135 | field_host: Hôte |
|
135 | field_host: Hôte | |
136 | field_port: Port |
|
136 | field_port: Port | |
137 | field_account: Compte |
|
137 | field_account: Compte | |
138 | field_base_dn: Base DN |
|
138 | field_base_dn: Base DN | |
139 | field_attr_login: Attribut Identifiant |
|
139 | field_attr_login: Attribut Identifiant | |
140 | field_attr_firstname: Attribut Prénom |
|
140 | field_attr_firstname: Attribut Prénom | |
141 | field_attr_lastname: Attribut Nom |
|
141 | field_attr_lastname: Attribut Nom | |
142 | field_attr_mail: Attribut Email |
|
142 | field_attr_mail: Attribut Email | |
143 | field_onthefly: Création des utilisateurs à la volée |
|
143 | field_onthefly: Création des utilisateurs à la volée | |
144 | field_start_date: Début |
|
144 | field_start_date: Début | |
145 | field_done_ratio: %% Réalisé |
|
145 | field_done_ratio: %% Réalisé | |
146 | field_auth_source: Mode d'authentification |
|
146 | field_auth_source: Mode d'authentification | |
147 | field_hide_mail: Cacher mon adresse mail |
|
147 | field_hide_mail: Cacher mon adresse mail | |
148 | field_comments: Commentaire |
|
148 | field_comments: Commentaire | |
149 | field_url: URL |
|
149 | field_url: URL | |
150 | field_start_page: Page de démarrage |
|
150 | field_start_page: Page de démarrage | |
151 | field_subproject: Sous-projet |
|
151 | field_subproject: Sous-projet | |
152 | field_hours: Heures |
|
152 | field_hours: Heures | |
153 | field_activity: Activité |
|
153 | field_activity: Activité | |
154 | field_spent_on: Date |
|
154 | field_spent_on: Date | |
155 | field_identifier: Identifiant |
|
155 | field_identifier: Identifiant | |
156 | field_is_filter: Utilisé comme filtre |
|
156 | field_is_filter: Utilisé comme filtre | |
157 | field_issue_to_id: Demande liée |
|
157 | field_issue_to_id: Demande liée | |
158 | field_delay: Retard |
|
158 | field_delay: Retard | |
159 | field_assignable: Demandes assignables à ce rôle |
|
159 | field_assignable: Demandes assignables à ce rôle | |
160 | field_redirect_existing_links: Rediriger les liens existants |
|
160 | field_redirect_existing_links: Rediriger les liens existants | |
161 | field_estimated_hours: Temps estimé |
|
161 | field_estimated_hours: Temps estimé | |
162 |
|
162 | |||
163 | setting_app_title: Titre de l'application |
|
163 | setting_app_title: Titre de l'application | |
164 | setting_app_subtitle: Sous-titre de l'application |
|
164 | setting_app_subtitle: Sous-titre de l'application | |
165 | setting_welcome_text: Texte d'accueil |
|
165 | setting_welcome_text: Texte d'accueil | |
166 | setting_default_language: Langue par défaut |
|
166 | setting_default_language: Langue par défaut | |
167 | setting_login_required: Authentif. obligatoire |
|
167 | setting_login_required: Authentif. obligatoire | |
168 | setting_self_registration: Enregistrement autorisé |
|
168 | setting_self_registration: Enregistrement autorisé | |
169 | setting_attachment_max_size: Taille max des fichiers |
|
169 | setting_attachment_max_size: Taille max des fichiers | |
170 | setting_issues_export_limit: Limite export demandes |
|
170 | setting_issues_export_limit: Limite export demandes | |
171 | setting_mail_from: Adresse d'émission |
|
171 | setting_mail_from: Adresse d'émission | |
172 | setting_host_name: Nom d'hôte |
|
172 | setting_host_name: Nom d'hôte | |
173 | setting_text_formatting: Formatage du texte |
|
173 | setting_text_formatting: Formatage du texte | |
174 | setting_wiki_compression: Compression historique wiki |
|
174 | setting_wiki_compression: Compression historique wiki | |
175 | setting_feeds_limit: Limite du contenu des flux RSS |
|
175 | setting_feeds_limit: Limite du contenu des flux RSS | |
176 | setting_autofetch_changesets: Récupération auto. des commits |
|
176 | setting_autofetch_changesets: Récupération auto. des commits | |
177 | setting_sys_api_enabled: Activer les WS pour la gestion des dépôts |
|
177 | setting_sys_api_enabled: Activer les WS pour la gestion des dépôts | |
178 | setting_commit_ref_keywords: Mot-clés de référencement |
|
178 | setting_commit_ref_keywords: Mot-clés de référencement | |
179 | setting_commit_fix_keywords: Mot-clés de résolution |
|
179 | setting_commit_fix_keywords: Mot-clés de résolution | |
180 | setting_autologin: Autologin |
|
180 | setting_autologin: Autologin | |
181 | setting_date_format: Format de date |
|
181 | setting_date_format: Format de date | |
182 | setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets |
|
182 | setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets | |
183 |
|
183 | |||
184 | label_user: Utilisateur |
|
184 | label_user: Utilisateur | |
185 | label_user_plural: Utilisateurs |
|
185 | label_user_plural: Utilisateurs | |
186 | label_user_new: Nouvel utilisateur |
|
186 | label_user_new: Nouvel utilisateur | |
187 | label_project: Projet |
|
187 | label_project: Projet | |
188 | label_project_new: Nouveau projet |
|
188 | label_project_new: Nouveau projet | |
189 | label_project_plural: Projets |
|
189 | label_project_plural: Projets | |
190 | label_project_all: Tous les projets |
|
190 | label_project_all: Tous les projets | |
191 | label_project_latest: Derniers projets |
|
191 | label_project_latest: Derniers projets | |
192 | label_issue: Demande |
|
192 | label_issue: Demande | |
193 | label_issue_new: Nouvelle demande |
|
193 | label_issue_new: Nouvelle demande | |
194 | label_issue_plural: Demandes |
|
194 | label_issue_plural: Demandes | |
195 | label_issue_view_all: Voir toutes les demandes |
|
195 | label_issue_view_all: Voir toutes les demandes | |
196 | label_document: Document |
|
196 | label_document: Document | |
197 | label_document_new: Nouveau document |
|
197 | label_document_new: Nouveau document | |
198 | label_document_plural: Documents |
|
198 | label_document_plural: Documents | |
199 | label_role: Rôle |
|
199 | label_role: Rôle | |
200 | label_role_plural: Rôles |
|
200 | label_role_plural: Rôles | |
201 | label_role_new: Nouveau rôle |
|
201 | label_role_new: Nouveau rôle | |
202 | label_role_and_permissions: Rôles et permissions |
|
202 | label_role_and_permissions: Rôles et permissions | |
203 | label_member: Membre |
|
203 | label_member: Membre | |
204 | label_member_new: Nouveau membre |
|
204 | label_member_new: Nouveau membre | |
205 | label_member_plural: Membres |
|
205 | label_member_plural: Membres | |
206 | label_tracker: Tracker |
|
206 | label_tracker: Tracker | |
207 | label_tracker_plural: Trackers |
|
207 | label_tracker_plural: Trackers | |
208 | label_tracker_new: Nouveau tracker |
|
208 | label_tracker_new: Nouveau tracker | |
209 | label_workflow: Workflow |
|
209 | label_workflow: Workflow | |
210 | label_issue_status: Statut de demandes |
|
210 | label_issue_status: Statut de demandes | |
211 | label_issue_status_plural: Statuts de demandes |
|
211 | label_issue_status_plural: Statuts de demandes | |
212 | label_issue_status_new: Nouveau statut |
|
212 | label_issue_status_new: Nouveau statut | |
213 | label_issue_category: Catégorie de demandes |
|
213 | label_issue_category: Catégorie de demandes | |
214 | label_issue_category_plural: Catégories de demandes |
|
214 | label_issue_category_plural: Catégories de demandes | |
215 | label_issue_category_new: Nouvelle catégorie |
|
215 | label_issue_category_new: Nouvelle catégorie | |
216 | label_custom_field: Champ personnalisé |
|
216 | label_custom_field: Champ personnalisé | |
217 | label_custom_field_plural: Champs personnalisés |
|
217 | label_custom_field_plural: Champs personnalisés | |
218 | label_custom_field_new: Nouveau champ personnalisé |
|
218 | label_custom_field_new: Nouveau champ personnalisé | |
219 | label_enumerations: Listes de valeurs |
|
219 | label_enumerations: Listes de valeurs | |
220 | label_enumeration_new: Nouvelle valeur |
|
220 | label_enumeration_new: Nouvelle valeur | |
221 | label_information: Information |
|
221 | label_information: Information | |
222 | label_information_plural: Informations |
|
222 | label_information_plural: Informations | |
223 | label_please_login: Identification |
|
223 | label_please_login: Identification | |
224 | label_register: S'enregistrer |
|
224 | label_register: S'enregistrer | |
225 | label_password_lost: Mot de passe perdu |
|
225 | label_password_lost: Mot de passe perdu | |
226 | label_home: Accueil |
|
226 | label_home: Accueil | |
227 | label_my_page: Ma page |
|
227 | label_my_page: Ma page | |
228 | label_my_account: Mon compte |
|
228 | label_my_account: Mon compte | |
229 | label_my_projects: Mes projets |
|
229 | label_my_projects: Mes projets | |
230 | label_administration: Administration |
|
230 | label_administration: Administration | |
231 | label_login: Connexion |
|
231 | label_login: Connexion | |
232 | label_logout: Déconnexion |
|
232 | label_logout: Déconnexion | |
233 | label_help: Aide |
|
233 | label_help: Aide | |
234 | label_reported_issues: Demandes soumises |
|
234 | label_reported_issues: Demandes soumises | |
235 | label_assigned_to_me_issues: Demandes qui me sont assignées |
|
235 | label_assigned_to_me_issues: Demandes qui me sont assignées | |
236 | label_last_login: Dernière connexion |
|
236 | label_last_login: Dernière connexion | |
237 | label_last_updates: Dernière mise à jour |
|
237 | label_last_updates: Dernière mise à jour | |
238 | label_last_updates_plural: %d dernières mises à jour |
|
238 | label_last_updates_plural: %d dernières mises à jour | |
239 | label_registered_on: Inscrit le |
|
239 | label_registered_on: Inscrit le | |
240 | label_activity: Activité |
|
240 | label_activity: Activité | |
241 | label_new: Nouveau |
|
241 | label_new: Nouveau | |
242 | label_logged_as: Connecté en tant que |
|
242 | label_logged_as: Connecté en tant que | |
243 | label_environment: Environnement |
|
243 | label_environment: Environnement | |
244 | label_authentication: Authentification |
|
244 | label_authentication: Authentification | |
245 | label_auth_source: Mode d'authentification |
|
245 | label_auth_source: Mode d'authentification | |
246 | label_auth_source_new: Nouveau mode d'authentification |
|
246 | label_auth_source_new: Nouveau mode d'authentification | |
247 | label_auth_source_plural: Modes d'authentification |
|
247 | label_auth_source_plural: Modes d'authentification | |
248 | label_subproject_plural: Sous-projets |
|
248 | label_subproject_plural: Sous-projets | |
249 | label_min_max_length: Longueurs mini - maxi |
|
249 | label_min_max_length: Longueurs mini - maxi | |
250 | label_list: Liste |
|
250 | label_list: Liste | |
251 | label_date: Date |
|
251 | label_date: Date | |
252 | label_integer: Entier |
|
252 | label_integer: Entier | |
253 | label_boolean: Booléen |
|
253 | label_boolean: Booléen | |
254 | label_string: Texte |
|
254 | label_string: Texte | |
255 | label_text: Texte long |
|
255 | label_text: Texte long | |
256 | label_attribute: Attribut |
|
256 | label_attribute: Attribut | |
257 | label_attribute_plural: Attributs |
|
257 | label_attribute_plural: Attributs | |
258 | label_download: %d Téléchargement |
|
258 | label_download: %d Téléchargement | |
259 | label_download_plural: %d Téléchargements |
|
259 | label_download_plural: %d Téléchargements | |
260 | label_no_data: Aucune donnée à afficher |
|
260 | label_no_data: Aucune donnée à afficher | |
261 | label_change_status: Changer le statut |
|
261 | label_change_status: Changer le statut | |
262 | label_history: Historique |
|
262 | label_history: Historique | |
263 | label_attachment: Fichier |
|
263 | label_attachment: Fichier | |
264 | label_attachment_new: Nouveau fichier |
|
264 | label_attachment_new: Nouveau fichier | |
265 | label_attachment_delete: Supprimer le fichier |
|
265 | label_attachment_delete: Supprimer le fichier | |
266 | label_attachment_plural: Fichiers |
|
266 | label_attachment_plural: Fichiers | |
267 | label_report: Rapport |
|
267 | label_report: Rapport | |
268 | label_report_plural: Rapports |
|
268 | label_report_plural: Rapports | |
269 | label_news: Annonce |
|
269 | label_news: Annonce | |
270 | label_news_new: Nouvelle annonce |
|
270 | label_news_new: Nouvelle annonce | |
271 | label_news_plural: Annonces |
|
271 | label_news_plural: Annonces | |
272 | label_news_latest: Dernières annonces |
|
272 | label_news_latest: Dernières annonces | |
273 | label_news_view_all: Voir toutes les annonces |
|
273 | label_news_view_all: Voir toutes les annonces | |
274 | label_change_log: Historique |
|
274 | label_change_log: Historique | |
275 | label_settings: Configuration |
|
275 | label_settings: Configuration | |
276 | label_overview: Aperçu |
|
276 | label_overview: Aperçu | |
277 | label_version: Version |
|
277 | label_version: Version | |
278 | label_version_new: Nouvelle version |
|
278 | label_version_new: Nouvelle version | |
279 | label_version_plural: Versions |
|
279 | label_version_plural: Versions | |
280 | label_confirmation: Confirmation |
|
280 | label_confirmation: Confirmation | |
281 | label_export_to: Exporter en |
|
281 | label_export_to: Exporter en | |
282 | label_read: Lire... |
|
282 | label_read: Lire... | |
283 | label_public_projects: Projets publics |
|
283 | label_public_projects: Projets publics | |
284 | label_open_issues: ouvert |
|
284 | label_open_issues: ouvert | |
285 | label_open_issues_plural: ouverts |
|
285 | label_open_issues_plural: ouverts | |
286 | label_closed_issues: fermé |
|
286 | label_closed_issues: fermé | |
287 | label_closed_issues_plural: fermés |
|
287 | label_closed_issues_plural: fermés | |
288 | label_total: Total |
|
288 | label_total: Total | |
289 | label_permissions: Permissions |
|
289 | label_permissions: Permissions | |
290 | label_current_status: Statut actuel |
|
290 | label_current_status: Statut actuel | |
291 | label_new_statuses_allowed: Nouveaux statuts autorisés |
|
291 | label_new_statuses_allowed: Nouveaux statuts autorisés | |
292 | label_all: tous |
|
292 | label_all: tous | |
293 | label_none: aucun |
|
293 | label_none: aucun | |
294 | label_next: Suivant |
|
294 | label_next: Suivant | |
295 | label_previous: Précédent |
|
295 | label_previous: Précédent | |
296 | label_used_by: Utilisé par |
|
296 | label_used_by: Utilisé par | |
297 | label_details: Détails |
|
297 | label_details: Détails | |
298 | label_add_note: Ajouter une note |
|
298 | label_add_note: Ajouter une note | |
299 | label_per_page: Par page |
|
299 | label_per_page: Par page | |
300 | label_calendar: Calendrier |
|
300 | label_calendar: Calendrier | |
301 | label_months_from: mois depuis |
|
301 | label_months_from: mois depuis | |
302 | label_gantt: Gantt |
|
302 | label_gantt: Gantt | |
303 | label_internal: Interne |
|
303 | label_internal: Interne | |
304 | label_last_changes: %d derniers changements |
|
304 | label_last_changes: %d derniers changements | |
305 | label_change_view_all: Voir tous les changements |
|
305 | label_change_view_all: Voir tous les changements | |
306 | label_personalize_page: Personnaliser cette page |
|
306 | label_personalize_page: Personnaliser cette page | |
307 | label_comment: Commentaire |
|
307 | label_comment: Commentaire | |
308 | label_comment_plural: Commentaires |
|
308 | label_comment_plural: Commentaires | |
309 | label_comment_add: Ajouter un commentaire |
|
309 | label_comment_add: Ajouter un commentaire | |
310 | label_comment_added: Commentaire ajouté |
|
310 | label_comment_added: Commentaire ajouté | |
311 | label_comment_delete: Supprimer les commentaires |
|
311 | label_comment_delete: Supprimer les commentaires | |
312 | label_query: Rapport personnalisé |
|
312 | label_query: Rapport personnalisé | |
313 | label_query_plural: Rapports personnalisés |
|
313 | label_query_plural: Rapports personnalisés | |
314 | label_query_new: Nouveau rapport |
|
314 | label_query_new: Nouveau rapport | |
315 | label_filter_add: Ajouter le filtre |
|
315 | label_filter_add: Ajouter le filtre | |
316 | label_filter_plural: Filtres |
|
316 | label_filter_plural: Filtres | |
317 | label_equals: égal |
|
317 | label_equals: égal | |
318 | label_not_equals: différent |
|
318 | label_not_equals: différent | |
319 | label_in_less_than: dans moins de |
|
319 | label_in_less_than: dans moins de | |
320 | label_in_more_than: dans plus de |
|
320 | label_in_more_than: dans plus de | |
321 | label_in: dans |
|
321 | label_in: dans | |
322 | label_today: aujourd'hui |
|
322 | label_today: aujourd'hui | |
323 | label_this_week: cette semaine |
|
323 | label_this_week: cette semaine | |
324 | label_less_than_ago: il y a moins de |
|
324 | label_less_than_ago: il y a moins de | |
325 | label_more_than_ago: il y a plus de |
|
325 | label_more_than_ago: il y a plus de | |
326 | label_ago: il y a |
|
326 | label_ago: il y a | |
327 | label_contains: contient |
|
327 | label_contains: contient | |
328 | label_not_contains: ne contient pas |
|
328 | label_not_contains: ne contient pas | |
329 | label_day_plural: jours |
|
329 | label_day_plural: jours | |
330 | label_repository: Dépôt |
|
330 | label_repository: Dépôt | |
331 | label_browse: Parcourir |
|
331 | label_browse: Parcourir | |
332 | label_modification: %d modification |
|
332 | label_modification: %d modification | |
333 | label_modification_plural: %d modifications |
|
333 | label_modification_plural: %d modifications | |
334 | label_revision: Révision |
|
334 | label_revision: Révision | |
335 | label_revision_plural: Révisions |
|
335 | label_revision_plural: Révisions | |
336 | label_added: ajouté |
|
336 | label_added: ajouté | |
337 | label_modified: modifié |
|
337 | label_modified: modifié | |
338 | label_deleted: supprimé |
|
338 | label_deleted: supprimé | |
339 | label_latest_revision: Dernière révision |
|
339 | label_latest_revision: Dernière révision | |
340 | label_latest_revision_plural: Dernières révisions |
|
340 | label_latest_revision_plural: Dernières révisions | |
341 | label_view_revisions: Voir les révisions |
|
341 | label_view_revisions: Voir les révisions | |
342 | label_max_size: Taille maximale |
|
342 | label_max_size: Taille maximale | |
343 | label_on: sur |
|
343 | label_on: sur | |
344 | label_sort_highest: Remonter en premier |
|
344 | label_sort_highest: Remonter en premier | |
345 | label_sort_higher: Remonter |
|
345 | label_sort_higher: Remonter | |
346 | label_sort_lower: Descendre |
|
346 | label_sort_lower: Descendre | |
347 | label_sort_lowest: Descendre en dernier |
|
347 | label_sort_lowest: Descendre en dernier | |
348 | label_roadmap: Roadmap |
|
348 | label_roadmap: Roadmap | |
349 | label_roadmap_due_in: Echéance dans |
|
349 | label_roadmap_due_in: Echéance dans | |
350 | label_roadmap_overdue: En retard de %s |
|
350 | label_roadmap_overdue: En retard de %s | |
351 | label_roadmap_no_issues: Aucune demande pour cette version |
|
351 | label_roadmap_no_issues: Aucune demande pour cette version | |
352 | label_search: Recherche |
|
352 | label_search: Recherche | |
353 | label_result: %d résultat |
|
353 | label_result: %d résultat | |
354 | label_result_plural: %d résultats |
|
354 | label_result_plural: %d résultats | |
355 | label_all_words: Tous les mots |
|
355 | label_all_words: Tous les mots | |
356 | label_wiki: Wiki |
|
356 | label_wiki: Wiki | |
357 | label_wiki_edit: Révision wiki |
|
357 | label_wiki_edit: Révision wiki | |
358 | label_wiki_edit_plural: Révisions wiki |
|
358 | label_wiki_edit_plural: Révisions wiki | |
359 | label_wiki_page: Page wiki |
|
359 | label_wiki_page: Page wiki | |
360 | label_wiki_page_plural: Pages wiki |
|
360 | label_wiki_page_plural: Pages wiki | |
361 | label_page_index: Index |
|
361 | label_page_index: Index | |
362 | label_current_version: Version actuelle |
|
362 | label_current_version: Version actuelle | |
363 | label_preview: Prévisualisation |
|
363 | label_preview: Prévisualisation | |
364 | label_feed_plural: Flux RSS |
|
364 | label_feed_plural: Flux RSS | |
365 | label_changes_details: Détails de tous les changements |
|
365 | label_changes_details: Détails de tous les changements | |
366 | label_issue_tracking: Suivi des demandes |
|
366 | label_issue_tracking: Suivi des demandes | |
367 | label_spent_time: Temps passé |
|
367 | label_spent_time: Temps passé | |
368 | label_f_hour: %.2f heure |
|
368 | label_f_hour: %.2f heure | |
369 | label_f_hour_plural: %.2f heures |
|
369 | label_f_hour_plural: %.2f heures | |
370 | label_time_tracking: Suivi du temps |
|
370 | label_time_tracking: Suivi du temps | |
371 | label_change_plural: Changements |
|
371 | label_change_plural: Changements | |
372 | label_statistics: Statistiques |
|
372 | label_statistics: Statistiques | |
373 | label_commits_per_month: Commits par mois |
|
373 | label_commits_per_month: Commits par mois | |
374 | label_commits_per_author: Commits par auteur |
|
374 | label_commits_per_author: Commits par auteur | |
375 | label_view_diff: Voir les différences |
|
375 | label_view_diff: Voir les différences | |
376 | label_diff_inline: en ligne |
|
376 | label_diff_inline: en ligne | |
377 | label_diff_side_by_side: côte à côte |
|
377 | label_diff_side_by_side: côte à côte | |
378 | label_options: Options |
|
378 | label_options: Options | |
379 | label_copy_workflow_from: Copier le workflow de |
|
379 | label_copy_workflow_from: Copier le workflow de | |
380 | label_permissions_report: Synthèse des permissions |
|
380 | label_permissions_report: Synthèse des permissions | |
381 | label_watched_issues: Demandes surveillées |
|
381 | label_watched_issues: Demandes surveillées | |
382 | label_related_issues: Demandes liées |
|
382 | label_related_issues: Demandes liées | |
383 | label_applied_status: Statut appliqué |
|
383 | label_applied_status: Statut appliqué | |
384 | label_loading: Chargement... |
|
384 | label_loading: Chargement... | |
385 | label_relation_new: Nouvelle relation |
|
385 | label_relation_new: Nouvelle relation | |
386 | label_relation_delete: Supprimer la relation |
|
386 | label_relation_delete: Supprimer la relation | |
387 | label_relates_to: lié à |
|
387 | label_relates_to: lié à | |
388 | label_duplicates: doublon de |
|
388 | label_duplicates: doublon de | |
389 | label_blocks: bloque |
|
389 | label_blocks: bloque | |
390 | label_blocked_by: bloqué par |
|
390 | label_blocked_by: bloqué par | |
391 | label_precedes: précède |
|
391 | label_precedes: précède | |
392 | label_follows: suit |
|
392 | label_follows: suit | |
393 | label_end_to_start: fin à début |
|
393 | label_end_to_start: fin à début | |
394 | label_end_to_end: fin à fin |
|
394 | label_end_to_end: fin à fin | |
395 | label_start_to_start: début à début |
|
395 | label_start_to_start: début à début | |
396 | label_start_to_end: début à fin |
|
396 | label_start_to_end: début à fin | |
397 | label_stay_logged_in: Rester connecté |
|
397 | label_stay_logged_in: Rester connecté | |
398 | label_disabled: désactivé |
|
398 | label_disabled: désactivé | |
399 | label_show_completed_versions: Voire les versions passées |
|
399 | label_show_completed_versions: Voire les versions passées | |
400 | label_me: moi |
|
400 | label_me: moi | |
401 | label_board: Forum |
|
401 | label_board: Forum | |
402 | label_board_new: Nouveau forum |
|
402 | label_board_new: Nouveau forum | |
403 | label_board_plural: Forums |
|
403 | label_board_plural: Forums | |
404 | label_topic_plural: Discussions |
|
404 | label_topic_plural: Discussions | |
405 | label_message_plural: Messages |
|
405 | label_message_plural: Messages | |
406 | label_message_last: Dernier message |
|
406 | label_message_last: Dernier message | |
407 | label_message_new: Nouveau message |
|
407 | label_message_new: Nouveau message | |
408 | label_reply_plural: Réponses |
|
408 | label_reply_plural: Réponses | |
409 | label_send_information: Envoyer les informations à l'utilisateur |
|
409 | label_send_information: Envoyer les informations à l'utilisateur | |
410 | label_year: Année |
|
410 | label_year: Année | |
411 | label_month: Mois |
|
411 | label_month: Mois | |
412 | label_week: Semaine |
|
412 | label_week: Semaine | |
413 | label_date_from: Du |
|
413 | label_date_from: Du | |
414 | label_date_to: Au |
|
414 | label_date_to: Au | |
415 | label_language_based: Basé sur la langue |
|
415 | label_language_based: Basé sur la langue | |
416 | label_sort_by: Trier par "%s" |
|
416 | label_sort_by: Trier par "%s" | |
417 | label_send_test_email: Envoyer un email de test |
|
417 | label_send_test_email: Envoyer un email de test | |
418 | label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s |
|
418 | label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s | |
419 | label_module_plural: Modules |
|
419 | label_module_plural: Modules | |
420 | label_added_time_by: Ajouté par %s il y a %s |
|
420 | label_added_time_by: Ajouté par %s il y a %s | |
421 | label_updated_time: Mis à jour il y a %s |
|
421 | label_updated_time: Mis à jour il y a %s | |
422 | label_jump_to_a_project: Aller à un projet... |
|
422 | label_jump_to_a_project: Aller à un projet... | |
|
423 | label_file_plural: Fichiers | |||
|
424 | label_changeset_plural: Révisions | |||
423 |
|
425 | |||
424 | button_login: Connexion |
|
426 | button_login: Connexion | |
425 | button_submit: Soumettre |
|
427 | button_submit: Soumettre | |
426 | button_save: Sauvegarder |
|
428 | button_save: Sauvegarder | |
427 | button_check_all: Tout cocher |
|
429 | button_check_all: Tout cocher | |
428 | button_uncheck_all: Tout décocher |
|
430 | button_uncheck_all: Tout décocher | |
429 | button_delete: Supprimer |
|
431 | button_delete: Supprimer | |
430 | button_create: Créer |
|
432 | button_create: Créer | |
431 | button_test: Tester |
|
433 | button_test: Tester | |
432 | button_edit: Modifier |
|
434 | button_edit: Modifier | |
433 | button_add: Ajouter |
|
435 | button_add: Ajouter | |
434 | button_change: Changer |
|
436 | button_change: Changer | |
435 | button_apply: Appliquer |
|
437 | button_apply: Appliquer | |
436 | button_clear: Effacer |
|
438 | button_clear: Effacer | |
437 | button_lock: Verrouiller |
|
439 | button_lock: Verrouiller | |
438 | button_unlock: Déverrouiller |
|
440 | button_unlock: Déverrouiller | |
439 | button_download: Télécharger |
|
441 | button_download: Télécharger | |
440 | button_list: Lister |
|
442 | button_list: Lister | |
441 | button_view: Voir |
|
443 | button_view: Voir | |
442 | button_move: Déplacer |
|
444 | button_move: Déplacer | |
443 | button_back: Retour |
|
445 | button_back: Retour | |
444 | button_cancel: Annuler |
|
446 | button_cancel: Annuler | |
445 | button_activate: Activer |
|
447 | button_activate: Activer | |
446 | button_sort: Trier |
|
448 | button_sort: Trier | |
447 | button_log_time: Saisir temps |
|
449 | button_log_time: Saisir temps | |
448 | button_rollback: Revenir à cette version |
|
450 | button_rollback: Revenir à cette version | |
449 | button_watch: Surveiller |
|
451 | button_watch: Surveiller | |
450 | button_unwatch: Ne plus surveiller |
|
452 | button_unwatch: Ne plus surveiller | |
451 | button_reply: Répondre |
|
453 | button_reply: Répondre | |
452 | button_archive: Archiver |
|
454 | button_archive: Archiver | |
453 | button_unarchive: Désarchiver |
|
455 | button_unarchive: Désarchiver | |
454 | button_reset: Réinitialiser |
|
456 | button_reset: Réinitialiser | |
455 | button_rename: Renommer |
|
457 | button_rename: Renommer | |
456 |
|
458 | |||
457 | status_active: actif |
|
459 | status_active: actif | |
458 | status_registered: enregistré |
|
460 | status_registered: enregistré | |
459 | status_locked: vérouillé |
|
461 | status_locked: vérouillé | |
460 |
|
462 | |||
461 | text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée. |
|
463 | text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée. | |
462 | text_regexp_info: ex. ^[A-Z0-9]+$ |
|
464 | text_regexp_info: ex. ^[A-Z0-9]+$ | |
463 | text_min_max_length_info: 0 pour aucune restriction |
|
465 | text_min_max_length_info: 0 pour aucune restriction | |
464 | text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ? |
|
466 | text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ? | |
465 | text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow |
|
467 | text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow | |
466 | text_are_you_sure: Etes-vous sûr ? |
|
468 | text_are_you_sure: Etes-vous sûr ? | |
467 | text_journal_changed: changé de %s à %s |
|
469 | text_journal_changed: changé de %s à %s | |
468 | text_journal_set_to: mis à %s |
|
470 | text_journal_set_to: mis à %s | |
469 | text_journal_deleted: supprimé |
|
471 | text_journal_deleted: supprimé | |
470 | text_tip_task_begin_day: tâche commençant ce jour |
|
472 | text_tip_task_begin_day: tâche commençant ce jour | |
471 | text_tip_task_end_day: tâche finissant ce jour |
|
473 | text_tip_task_end_day: tâche finissant ce jour | |
472 | text_tip_task_begin_end_day: tâche commençant et finissant ce jour |
|
474 | text_tip_task_begin_end_day: tâche commençant et finissant ce jour | |
473 | text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' |
|
475 | text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' | |
474 | text_caracters_maximum: %d caractères maximum. |
|
476 | text_caracters_maximum: %d caractères maximum. | |
475 | text_length_between: Longueur comprise entre %d et %d caractères. |
|
477 | text_length_between: Longueur comprise entre %d et %d caractères. | |
476 | text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker |
|
478 | text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker | |
477 | text_unallowed_characters: Caractères non autorisés |
|
479 | text_unallowed_characters: Caractères non autorisés | |
478 | text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules). |
|
480 | text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules). | |
479 | text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits |
|
481 | text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits | |
480 | text_issue_added: La demande %s a été soumise. |
|
482 | text_issue_added: La demande %s a été soumise. | |
481 | text_issue_updated: La demande %s a été mise à jour. |
|
483 | text_issue_updated: La demande %s a été mise à jour. | |
482 | text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ? |
|
484 | text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ? | |
483 | text_issue_category_destroy_question: Des demandes (%d) sont affectées à cette catégories. Que voulez-vous faire ? |
|
485 | text_issue_category_destroy_question: Des demandes (%d) sont affectées à cette catégories. Que voulez-vous faire ? | |
484 | text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie |
|
486 | text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie | |
485 | text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie |
|
487 | text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie | |
486 |
|
488 | |||
487 | default_role_manager: Manager |
|
489 | default_role_manager: Manager | |
488 | default_role_developper: Développeur |
|
490 | default_role_developper: Développeur | |
489 | default_role_reporter: Rapporteur |
|
491 | default_role_reporter: Rapporteur | |
490 | default_tracker_bug: Anomalie |
|
492 | default_tracker_bug: Anomalie | |
491 | default_tracker_feature: Evolution |
|
493 | default_tracker_feature: Evolution | |
492 | default_tracker_support: Assistance |
|
494 | default_tracker_support: Assistance | |
493 | default_issue_status_new: Nouveau |
|
495 | default_issue_status_new: Nouveau | |
494 | default_issue_status_assigned: Assigné |
|
496 | default_issue_status_assigned: Assigné | |
495 | default_issue_status_resolved: Résolu |
|
497 | default_issue_status_resolved: Résolu | |
496 | default_issue_status_feedback: Commentaire |
|
498 | default_issue_status_feedback: Commentaire | |
497 | default_issue_status_closed: Fermé |
|
499 | default_issue_status_closed: Fermé | |
498 | default_issue_status_rejected: Rejeté |
|
500 | default_issue_status_rejected: Rejeté | |
499 | default_doc_category_user: Documentation utilisateur |
|
501 | default_doc_category_user: Documentation utilisateur | |
500 | default_doc_category_tech: Documentation technique |
|
502 | default_doc_category_tech: Documentation technique | |
501 | default_priority_low: Bas |
|
503 | default_priority_low: Bas | |
502 | default_priority_normal: Normal |
|
504 | default_priority_normal: Normal | |
503 | default_priority_high: Haut |
|
505 | default_priority_high: Haut | |
504 | default_priority_urgent: Urgent |
|
506 | default_priority_urgent: Urgent | |
505 | default_priority_immediate: Immédiat |
|
507 | default_priority_immediate: Immédiat | |
506 | default_activity_design: Conception |
|
508 | default_activity_design: Conception | |
507 | default_activity_development: Développement |
|
509 | default_activity_development: Développement | |
508 |
|
510 | |||
509 | enumeration_issue_priorities: Priorités des demandes |
|
511 | enumeration_issue_priorities: Priorités des demandes | |
510 | enumeration_doc_categories: Catégories des documents |
|
512 | enumeration_doc_categories: Catégories des documents | |
511 | enumeration_activities: Activités (suivi du temps) |
|
513 | enumeration_activities: Activités (suivi du temps) |
@@ -1,511 +1,513 | |||||
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 |
|
54 | |||
55 | notice_account_updated: L'utenza è stata aggiornata. |
|
55 | notice_account_updated: L'utenza è stata aggiornata. | |
56 | notice_account_invalid_creditentials: Nome utente o password non validi. |
|
56 | notice_account_invalid_creditentials: Nome utente o password non validi. | |
57 | notice_account_password_updated: La password è stata aggiornata. |
|
57 | notice_account_password_updated: La password è stata aggiornata. | |
58 | notice_account_wrong_password: Password errata |
|
58 | notice_account_wrong_password: Password errata | |
59 | notice_account_register_done: L'utenza è stata creata. |
|
59 | notice_account_register_done: L'utenza è stata creata. | |
60 | notice_account_unknown_email: Utente sconosciuto. |
|
60 | notice_account_unknown_email: Utente sconosciuto. | |
61 | notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password. |
|
61 | notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password. | |
62 | notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password. |
|
62 | notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password. | |
63 | notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso. |
|
63 | notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso. | |
64 | notice_successful_create: Creazione effettuata. |
|
64 | notice_successful_create: Creazione effettuata. | |
65 | notice_successful_update: Modifica effettuata. |
|
65 | notice_successful_update: Modifica effettuata. | |
66 | notice_successful_delete: Eliminazione effettuata. |
|
66 | notice_successful_delete: Eliminazione effettuata. | |
67 | notice_successful_connection: Connessione effettuata. |
|
67 | notice_successful_connection: Connessione effettuata. | |
68 | notice_file_not_found: La pagina desiderata non esiste o è stata rimossa. |
|
68 | notice_file_not_found: La pagina desiderata non esiste o è stata rimossa. | |
69 | notice_locking_conflict: Le informazioni sono state modificate da un altro utente. |
|
69 | notice_locking_conflict: Le informazioni sono state modificate da un altro utente. | |
70 | notice_scm_error: La risorsa e/o la versione non esistono nel repository. |
|
70 | notice_scm_error: La risorsa e/o la versione non esistono nel repository. | |
71 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
72 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
73 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
75 |
|
75 | |||
76 | mail_subject_lost_password: Password redMine |
|
76 | mail_subject_lost_password: Password redMine | |
77 | mail_subject_register: Attivazione utenza redMine |
|
77 | mail_subject_register: Attivazione utenza redMine | |
78 |
|
78 | |||
79 | gui_validation_error: 1 errore |
|
79 | gui_validation_error: 1 errore | |
80 | gui_validation_error_plural: %d errori |
|
80 | gui_validation_error_plural: %d errori | |
81 |
|
81 | |||
82 | field_name: Nome |
|
82 | field_name: Nome | |
83 | field_description: Descrizione |
|
83 | field_description: Descrizione | |
84 | field_summary: Sommario |
|
84 | field_summary: Sommario | |
85 | field_is_required: Richiesto |
|
85 | field_is_required: Richiesto | |
86 | field_firstname: Nome |
|
86 | field_firstname: Nome | |
87 | field_lastname: Cognome |
|
87 | field_lastname: Cognome | |
88 | field_mail: Email |
|
88 | field_mail: Email | |
89 | field_filename: File |
|
89 | field_filename: File | |
90 | field_filesize: Dimensione |
|
90 | field_filesize: Dimensione | |
91 | field_downloads: Download |
|
91 | field_downloads: Download | |
92 | field_author: Autore |
|
92 | field_author: Autore | |
93 | field_created_on: Creato |
|
93 | field_created_on: Creato | |
94 | field_updated_on: Aggiornato |
|
94 | field_updated_on: Aggiornato | |
95 | field_field_format: Formato |
|
95 | field_field_format: Formato | |
96 | field_is_for_all: Per tutti i progetti |
|
96 | field_is_for_all: Per tutti i progetti | |
97 | field_possible_values: Valori possibili |
|
97 | field_possible_values: Valori possibili | |
98 | field_regexp: Espressione regolare |
|
98 | field_regexp: Espressione regolare | |
99 | field_min_length: Lunghezza minima |
|
99 | field_min_length: Lunghezza minima | |
100 | field_max_length: Lunghezza massima |
|
100 | field_max_length: Lunghezza massima | |
101 | field_value: Valore |
|
101 | field_value: Valore | |
102 | field_category: Categoria |
|
102 | field_category: Categoria | |
103 | field_title: Titolo |
|
103 | field_title: Titolo | |
104 | field_project: Progetto |
|
104 | field_project: Progetto | |
105 | field_issue: Issue |
|
105 | field_issue: Issue | |
106 | field_status: Stato |
|
106 | field_status: Stato | |
107 | field_notes: Note |
|
107 | field_notes: Note | |
108 | field_is_closed: Chiude il contesto |
|
108 | field_is_closed: Chiude il contesto | |
109 | field_is_default: Stato predefinito |
|
109 | field_is_default: Stato predefinito | |
110 | field_html_color: Colore |
|
110 | field_html_color: Colore | |
111 | field_tracker: Tracker |
|
111 | field_tracker: Tracker | |
112 | field_subject: Oggetto |
|
112 | field_subject: Oggetto | |
113 | field_due_date: Data ultima |
|
113 | field_due_date: Data ultima | |
114 | field_assigned_to: Assegnato a |
|
114 | field_assigned_to: Assegnato a | |
115 | field_priority: Priorita' |
|
115 | field_priority: Priorita' | |
116 | field_fixed_version: Versione di fix |
|
116 | field_fixed_version: Versione di fix | |
117 | field_user: Utente |
|
117 | field_user: Utente | |
118 | field_role: Ruolo |
|
118 | field_role: Ruolo | |
119 | field_homepage: Homepage |
|
119 | field_homepage: Homepage | |
120 | field_is_public: Pubblico |
|
120 | field_is_public: Pubblico | |
121 | field_parent: Sottoprogetto di |
|
121 | field_parent: Sottoprogetto di | |
122 | field_is_in_chlog: Contesti mostrati nel changelog |
|
122 | field_is_in_chlog: Contesti mostrati nel changelog | |
123 | field_is_in_roadmap: Contesti mostrati nel roadmap |
|
123 | field_is_in_roadmap: Contesti mostrati nel roadmap | |
124 | field_login: Login |
|
124 | field_login: Login | |
125 | field_mail_notification: Notifiche via e-mail |
|
125 | field_mail_notification: Notifiche via e-mail | |
126 | field_admin: Amministratore |
|
126 | field_admin: Amministratore | |
127 | field_last_login_on: Ultima connessione |
|
127 | field_last_login_on: Ultima connessione | |
128 | field_language: Lingua |
|
128 | field_language: Lingua | |
129 | field_effective_date: Data |
|
129 | field_effective_date: Data | |
130 | field_password: Password |
|
130 | field_password: Password | |
131 | field_new_password: Nuova password |
|
131 | field_new_password: Nuova password | |
132 | field_password_confirmation: Conferma |
|
132 | field_password_confirmation: Conferma | |
133 | field_version: Versione |
|
133 | field_version: Versione | |
134 | field_type: Tipo |
|
134 | field_type: Tipo | |
135 | field_host: Host |
|
135 | field_host: Host | |
136 | field_port: Porta |
|
136 | field_port: Porta | |
137 | field_account: Utenza |
|
137 | field_account: Utenza | |
138 | field_base_dn: DN base |
|
138 | field_base_dn: DN base | |
139 | field_attr_login: Attributo login |
|
139 | field_attr_login: Attributo login | |
140 | field_attr_firstname: Attributo nome |
|
140 | field_attr_firstname: Attributo nome | |
141 | field_attr_lastname: Attributo cognome |
|
141 | field_attr_lastname: Attributo cognome | |
142 | field_attr_mail: Attributo e-mail |
|
142 | field_attr_mail: Attributo e-mail | |
143 | field_onthefly: Creazione utenza "al volo" |
|
143 | field_onthefly: Creazione utenza "al volo" | |
144 | field_start_date: Inizio |
|
144 | field_start_date: Inizio | |
145 | field_done_ratio: %% completo |
|
145 | field_done_ratio: %% completo | |
146 | field_auth_source: Modalità di autenticazione |
|
146 | field_auth_source: Modalità di autenticazione | |
147 | field_hide_mail: Nascondi il mio indirizzo di e-mail |
|
147 | field_hide_mail: Nascondi il mio indirizzo di e-mail | |
148 | field_comments: Commento |
|
148 | field_comments: Commento | |
149 | field_url: URL |
|
149 | field_url: URL | |
150 | field_start_page: Pagina principale |
|
150 | field_start_page: Pagina principale | |
151 | field_subproject: Sottoprogetto |
|
151 | field_subproject: Sottoprogetto | |
152 | field_hours: Hours |
|
152 | field_hours: Hours | |
153 | field_activity: Activity |
|
153 | field_activity: Activity | |
154 | field_spent_on: Data |
|
154 | field_spent_on: Data | |
155 | field_identifier: Identifier |
|
155 | field_identifier: Identifier | |
156 | field_is_filter: Used as a filter |
|
156 | field_is_filter: Used as a filter | |
157 | field_issue_to_id: Related issue |
|
157 | field_issue_to_id: Related issue | |
158 | field_delay: Delay |
|
158 | field_delay: Delay | |
159 | field_assignable: Issues can be assigned to this role |
|
159 | field_assignable: Issues can be assigned to this role | |
160 | field_redirect_existing_links: Redirect existing links |
|
160 | field_redirect_existing_links: Redirect existing links | |
161 | field_estimated_hours: Estimated time |
|
161 | field_estimated_hours: Estimated time | |
162 |
|
162 | |||
163 | setting_app_title: Titolo applicazione |
|
163 | setting_app_title: Titolo applicazione | |
164 | setting_app_subtitle: Sottotitolo applicazione |
|
164 | setting_app_subtitle: Sottotitolo applicazione | |
165 | setting_welcome_text: Testo di benvenuto |
|
165 | setting_welcome_text: Testo di benvenuto | |
166 | setting_default_language: Lingua di default |
|
166 | setting_default_language: Lingua di default | |
167 | setting_login_required: Autenticazione richiesta |
|
167 | setting_login_required: Autenticazione richiesta | |
168 | setting_self_registration: Auto-registrazione abilitata |
|
168 | setting_self_registration: Auto-registrazione abilitata | |
169 | setting_attachment_max_size: Massima dimensione allegati |
|
169 | setting_attachment_max_size: Massima dimensione allegati | |
170 | setting_issues_export_limit: Limite esportazione contesti |
|
170 | setting_issues_export_limit: Limite esportazione contesti | |
171 | setting_mail_from: Indirizzo sorgente e-mail |
|
171 | setting_mail_from: Indirizzo sorgente e-mail | |
172 | setting_host_name: Nome host |
|
172 | setting_host_name: Nome host | |
173 | setting_text_formatting: Formattazione testo |
|
173 | setting_text_formatting: Formattazione testo | |
174 | setting_wiki_compression: Compressione di storia di Wiki |
|
174 | setting_wiki_compression: Compressione di storia di Wiki | |
175 | setting_feeds_limit: Limite contenuti del feed |
|
175 | setting_feeds_limit: Limite contenuti del feed | |
176 | setting_autofetch_changesets: Acquisisci automaticamente le commit |
|
176 | setting_autofetch_changesets: Acquisisci automaticamente le commit | |
177 | setting_sys_api_enabled: Abilita WS per la gestione del repository |
|
177 | setting_sys_api_enabled: Abilita WS per la gestione del repository | |
178 | setting_commit_ref_keywords: Referencing keywords |
|
178 | setting_commit_ref_keywords: Referencing keywords | |
179 | setting_commit_fix_keywords: Fixing keywords |
|
179 | setting_commit_fix_keywords: Fixing keywords | |
180 | setting_autologin: Autologin |
|
180 | setting_autologin: Autologin | |
181 | setting_date_format: Date format |
|
181 | setting_date_format: Date format | |
182 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
182 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
183 |
|
183 | |||
184 | label_user: Utente |
|
184 | label_user: Utente | |
185 | label_user_plural: Utenti |
|
185 | label_user_plural: Utenti | |
186 | label_user_new: Nuovo utente |
|
186 | label_user_new: Nuovo utente | |
187 | label_project: Progetto |
|
187 | label_project: Progetto | |
188 | label_project_new: Nuovo progetto |
|
188 | label_project_new: Nuovo progetto | |
189 | label_project_plural: Progetti |
|
189 | label_project_plural: Progetti | |
190 | label_project_all: All Projects |
|
190 | label_project_all: All Projects | |
191 | label_project_latest: Ultimi progetti registrati |
|
191 | label_project_latest: Ultimi progetti registrati | |
192 | label_issue: Contesto |
|
192 | label_issue: Contesto | |
193 | label_issue_new: Nuovo contesto |
|
193 | label_issue_new: Nuovo contesto | |
194 | label_issue_plural: Contesti |
|
194 | label_issue_plural: Contesti | |
195 | label_issue_view_all: Mostra tutti i contesti |
|
195 | label_issue_view_all: Mostra tutti i contesti | |
196 | label_document: Documento |
|
196 | label_document: Documento | |
197 | label_document_new: Nuovo documento |
|
197 | label_document_new: Nuovo documento | |
198 | label_document_plural: Documenti |
|
198 | label_document_plural: Documenti | |
199 | label_role: Ruolo |
|
199 | label_role: Ruolo | |
200 | label_role_plural: Ruoli |
|
200 | label_role_plural: Ruoli | |
201 | label_role_new: Nuovo ruolo |
|
201 | label_role_new: Nuovo ruolo | |
202 | label_role_and_permissions: Ruoli e permessi |
|
202 | label_role_and_permissions: Ruoli e permessi | |
203 | label_member: Membro |
|
203 | label_member: Membro | |
204 | label_member_new: Nuovo membro |
|
204 | label_member_new: Nuovo membro | |
205 | label_member_plural: Membri |
|
205 | label_member_plural: Membri | |
206 | label_tracker: Tracker |
|
206 | label_tracker: Tracker | |
207 | label_tracker_plural: Tracker |
|
207 | label_tracker_plural: Tracker | |
208 | label_tracker_new: Nuovo tracker |
|
208 | label_tracker_new: Nuovo tracker | |
209 | label_workflow: Workflow |
|
209 | label_workflow: Workflow | |
210 | label_issue_status: Stato contesti |
|
210 | label_issue_status: Stato contesti | |
211 | label_issue_status_plural: Stati contesto |
|
211 | label_issue_status_plural: Stati contesto | |
212 | label_issue_status_new: Nuovo stato |
|
212 | label_issue_status_new: Nuovo stato | |
213 | label_issue_category: Categorie contesti |
|
213 | label_issue_category: Categorie contesti | |
214 | label_issue_category_plural: Categorie contesto |
|
214 | label_issue_category_plural: Categorie contesto | |
215 | label_issue_category_new: Nuova categoria |
|
215 | label_issue_category_new: Nuova categoria | |
216 | label_custom_field: Campo personalizzato |
|
216 | label_custom_field: Campo personalizzato | |
217 | label_custom_field_plural: Campi personalizzati |
|
217 | label_custom_field_plural: Campi personalizzati | |
218 | label_custom_field_new: Nuovo campo personalizzato |
|
218 | label_custom_field_new: Nuovo campo personalizzato | |
219 | label_enumerations: Enumerazioni |
|
219 | label_enumerations: Enumerazioni | |
220 | label_enumeration_new: Nuovo valore |
|
220 | label_enumeration_new: Nuovo valore | |
221 | label_information: Informazione |
|
221 | label_information: Informazione | |
222 | label_information_plural: Informazioni |
|
222 | label_information_plural: Informazioni | |
223 | label_please_login: Autenticarsi |
|
223 | label_please_login: Autenticarsi | |
224 | label_register: Registrati |
|
224 | label_register: Registrati | |
225 | label_password_lost: Password dimenticata |
|
225 | label_password_lost: Password dimenticata | |
226 | label_home: Home |
|
226 | label_home: Home | |
227 | label_my_page: Pagina personale |
|
227 | label_my_page: Pagina personale | |
228 | label_my_account: La mia utenza |
|
228 | label_my_account: La mia utenza | |
229 | label_my_projects: I miei progetti |
|
229 | label_my_projects: I miei progetti | |
230 | label_administration: Amministrazione |
|
230 | label_administration: Amministrazione | |
231 | label_login: Login |
|
231 | label_login: Login | |
232 | label_logout: Logout |
|
232 | label_logout: Logout | |
233 | label_help: Aiuto |
|
233 | label_help: Aiuto | |
234 | label_reported_issues: Contesti segnalati |
|
234 | label_reported_issues: Contesti segnalati | |
235 | label_assigned_to_me_issues: I miei contesti |
|
235 | label_assigned_to_me_issues: I miei contesti | |
236 | label_last_login: Ultimo collegamento |
|
236 | label_last_login: Ultimo collegamento | |
237 | label_last_updates: Ultimo aggiornamento |
|
237 | label_last_updates: Ultimo aggiornamento | |
238 | label_last_updates_plural: %d ultimo aggiornamento |
|
238 | label_last_updates_plural: %d ultimo aggiornamento | |
239 | label_registered_on: Registrato il |
|
239 | label_registered_on: Registrato il | |
240 | label_activity: Attività |
|
240 | label_activity: Attività | |
241 | label_new: Nuovo |
|
241 | label_new: Nuovo | |
242 | label_logged_as: Autenticato come |
|
242 | label_logged_as: Autenticato come | |
243 | label_environment: Ambiente |
|
243 | label_environment: Ambiente | |
244 | label_authentication: Autenticazione |
|
244 | label_authentication: Autenticazione | |
245 | label_auth_source: Modalità di autenticazione |
|
245 | label_auth_source: Modalità di autenticazione | |
246 | label_auth_source_new: Nuova modalità di autenticazione |
|
246 | label_auth_source_new: Nuova modalità di autenticazione | |
247 | label_auth_source_plural: Modalità di autenticazione |
|
247 | label_auth_source_plural: Modalità di autenticazione | |
248 | label_subproject_plural: Sottoprogetti |
|
248 | label_subproject_plural: Sottoprogetti | |
249 | label_min_max_length: Lunghezza minima - massima |
|
249 | label_min_max_length: Lunghezza minima - massima | |
250 | label_list: Elenco |
|
250 | label_list: Elenco | |
251 | label_date: Data |
|
251 | label_date: Data | |
252 | label_integer: Intero |
|
252 | label_integer: Intero | |
253 | label_boolean: Booleano |
|
253 | label_boolean: Booleano | |
254 | label_string: Testo |
|
254 | label_string: Testo | |
255 | label_text: Testo esteso |
|
255 | label_text: Testo esteso | |
256 | label_attribute: Attributo |
|
256 | label_attribute: Attributo | |
257 | label_attribute_plural: Attributi |
|
257 | label_attribute_plural: Attributi | |
258 | label_download: %d Download |
|
258 | label_download: %d Download | |
259 | label_download_plural: %d Download |
|
259 | label_download_plural: %d Download | |
260 | label_no_data: Nessun dato disponibile |
|
260 | label_no_data: Nessun dato disponibile | |
261 | label_change_status: Cambia stato |
|
261 | label_change_status: Cambia stato | |
262 | label_history: Cronologia |
|
262 | label_history: Cronologia | |
263 | label_attachment: File |
|
263 | label_attachment: File | |
264 | label_attachment_new: Nuovo file |
|
264 | label_attachment_new: Nuovo file | |
265 | label_attachment_delete: Elimina file |
|
265 | label_attachment_delete: Elimina file | |
266 | label_attachment_plural: File |
|
266 | label_attachment_plural: File | |
267 | label_report: Report |
|
267 | label_report: Report | |
268 | label_report_plural: Report |
|
268 | label_report_plural: Report | |
269 | label_news: Notizia |
|
269 | label_news: Notizia | |
270 | label_news_new: Aggiungi notizia |
|
270 | label_news_new: Aggiungi notizia | |
271 | label_news_plural: Notizie |
|
271 | label_news_plural: Notizie | |
272 | label_news_latest: Utime notizie |
|
272 | label_news_latest: Utime notizie | |
273 | label_news_view_all: Tutte le notizie |
|
273 | label_news_view_all: Tutte le notizie | |
274 | label_change_log: Change log |
|
274 | label_change_log: Change log | |
275 | label_settings: Impostazioni |
|
275 | label_settings: Impostazioni | |
276 | label_overview: Panoramica |
|
276 | label_overview: Panoramica | |
277 | label_version: Versione |
|
277 | label_version: Versione | |
278 | label_version_new: Nuova versione |
|
278 | label_version_new: Nuova versione | |
279 | label_version_plural: Versioni |
|
279 | label_version_plural: Versioni | |
280 | label_confirmation: Conferma |
|
280 | label_confirmation: Conferma | |
281 | label_export_to: Esporta su |
|
281 | label_export_to: Esporta su | |
282 | label_read: Leggi... |
|
282 | label_read: Leggi... | |
283 | label_public_projects: Progetti pubblici |
|
283 | label_public_projects: Progetti pubblici | |
284 | label_open_issues: aperta |
|
284 | label_open_issues: aperta | |
285 | label_open_issues_plural: aperte |
|
285 | label_open_issues_plural: aperte | |
286 | label_closed_issues: chiusa |
|
286 | label_closed_issues: chiusa | |
287 | label_closed_issues_plural: chiuse |
|
287 | label_closed_issues_plural: chiuse | |
288 | label_total: Totale |
|
288 | label_total: Totale | |
289 | label_permissions: Permessi |
|
289 | label_permissions: Permessi | |
290 | label_current_status: Stato attuale |
|
290 | label_current_status: Stato attuale | |
291 | label_new_statuses_allowed: Nuovi stati possibili |
|
291 | label_new_statuses_allowed: Nuovi stati possibili | |
292 | label_all: tutti |
|
292 | label_all: tutti | |
293 | label_none: nessuno |
|
293 | label_none: nessuno | |
294 | label_next: Successivo |
|
294 | label_next: Successivo | |
295 | label_previous: Precedente |
|
295 | label_previous: Precedente | |
296 | label_used_by: Usato da |
|
296 | label_used_by: Usato da | |
297 | label_details: Dettagli |
|
297 | label_details: Dettagli | |
298 | label_add_note: Aggiungi una nota |
|
298 | label_add_note: Aggiungi una nota | |
299 | label_per_page: Per pagina |
|
299 | label_per_page: Per pagina | |
300 | label_calendar: Calendario |
|
300 | label_calendar: Calendario | |
301 | label_months_from: mesi da |
|
301 | label_months_from: mesi da | |
302 | label_gantt: Gantt |
|
302 | label_gantt: Gantt | |
303 | label_internal: Interno |
|
303 | label_internal: Interno | |
304 | label_last_changes: ultime %d modifiche |
|
304 | label_last_changes: ultime %d modifiche | |
305 | label_change_view_all: Tutte le modifiche |
|
305 | label_change_view_all: Tutte le modifiche | |
306 | label_personalize_page: Personalizza la pagina |
|
306 | label_personalize_page: Personalizza la pagina | |
307 | label_comment: Commento |
|
307 | label_comment: Commento | |
308 | label_comment_plural: Commenti |
|
308 | label_comment_plural: Commenti | |
309 | label_comment_add: Aggiungi un commento |
|
309 | label_comment_add: Aggiungi un commento | |
310 | label_comment_added: Commento aggiunto |
|
310 | label_comment_added: Commento aggiunto | |
311 | label_comment_delete: Elimina commenti |
|
311 | label_comment_delete: Elimina commenti | |
312 | label_query: Custom query |
|
312 | label_query: Custom query | |
313 | label_query_plural: Query personalizzate |
|
313 | label_query_plural: Query personalizzate | |
314 | label_query_new: Nuova query |
|
314 | label_query_new: Nuova query | |
315 | label_filter_add: Aggiungi filtro |
|
315 | label_filter_add: Aggiungi filtro | |
316 | label_filter_plural: Filtri |
|
316 | label_filter_plural: Filtri | |
317 | label_equals: è |
|
317 | label_equals: è | |
318 | label_not_equals: non è |
|
318 | label_not_equals: non è | |
319 | label_in_less_than: è minore di |
|
319 | label_in_less_than: è minore di | |
320 | label_in_more_than: è maggiore di |
|
320 | label_in_more_than: è maggiore di | |
321 | label_in: in |
|
321 | label_in: in | |
322 | label_today: oggi |
|
322 | label_today: oggi | |
323 | label_this_week: this week |
|
323 | label_this_week: this week | |
324 | label_less_than_ago: meno di giorni fa |
|
324 | label_less_than_ago: meno di giorni fa | |
325 | label_more_than_ago: più di giorni fa |
|
325 | label_more_than_ago: più di giorni fa | |
326 | label_ago: giorni fa |
|
326 | label_ago: giorni fa | |
327 | label_contains: contiene |
|
327 | label_contains: contiene | |
328 | label_not_contains: non contiene |
|
328 | label_not_contains: non contiene | |
329 | label_day_plural: giorni |
|
329 | label_day_plural: giorni | |
330 | label_repository: Repository |
|
330 | label_repository: Repository | |
331 | label_browse: Browse |
|
331 | label_browse: Browse | |
332 | label_modification: %d modifica |
|
332 | label_modification: %d modifica | |
333 | label_modification_plural: %d modifiche |
|
333 | label_modification_plural: %d modifiche | |
334 | label_revision: Versione |
|
334 | label_revision: Versione | |
335 | label_revision_plural: Versioni |
|
335 | label_revision_plural: Versioni | |
336 | label_added: aggiunto |
|
336 | label_added: aggiunto | |
337 | label_modified: modificato |
|
337 | label_modified: modificato | |
338 | label_deleted: eliminato |
|
338 | label_deleted: eliminato | |
339 | label_latest_revision: Ultima versione |
|
339 | label_latest_revision: Ultima versione | |
340 | label_latest_revision_plural: Ultime versioni |
|
340 | label_latest_revision_plural: Ultime versioni | |
341 | label_view_revisions: Mostra versioni |
|
341 | label_view_revisions: Mostra versioni | |
342 | label_max_size: Dimensione massima |
|
342 | label_max_size: Dimensione massima | |
343 | label_on: 'on' |
|
343 | label_on: 'on' | |
344 | label_sort_highest: Sposta in cima |
|
344 | label_sort_highest: Sposta in cima | |
345 | label_sort_higher: Su |
|
345 | label_sort_higher: Su | |
346 | label_sort_lower: Giù |
|
346 | label_sort_lower: Giù | |
347 | label_sort_lowest: Sposta in fondo |
|
347 | label_sort_lowest: Sposta in fondo | |
348 | label_roadmap: Roadmap |
|
348 | label_roadmap: Roadmap | |
349 | label_roadmap_due_in: Da ultimare in |
|
349 | label_roadmap_due_in: Da ultimare in | |
350 | label_roadmap_overdue: %s late |
|
350 | label_roadmap_overdue: %s late | |
351 | label_roadmap_no_issues: Nessun contesto per questa versione |
|
351 | label_roadmap_no_issues: Nessun contesto per questa versione | |
352 | label_search: Ricerca |
|
352 | label_search: Ricerca | |
353 | label_result: %d risultato |
|
353 | label_result: %d risultato | |
354 | label_result_plural: %d risultati |
|
354 | label_result_plural: %d risultati | |
355 | label_all_words: Tutte le parole |
|
355 | label_all_words: Tutte le parole | |
356 | label_wiki: Wiki |
|
356 | label_wiki: Wiki | |
357 | label_wiki_edit: Modifica Wiki |
|
357 | label_wiki_edit: Modifica Wiki | |
358 | label_wiki_edit_plural: Modfiche wiki |
|
358 | label_wiki_edit_plural: Modfiche wiki | |
359 | label_wiki_page: Wiki page |
|
359 | label_wiki_page: Wiki page | |
360 | label_wiki_page_plural: Wiki pages |
|
360 | label_wiki_page_plural: Wiki pages | |
361 | label_page_index: Indice |
|
361 | label_page_index: Indice | |
362 | label_current_version: Versione corrente |
|
362 | label_current_version: Versione corrente | |
363 | label_preview: Anteprima |
|
363 | label_preview: Anteprima | |
364 | label_feed_plural: Feed |
|
364 | label_feed_plural: Feed | |
365 | label_changes_details: Particolari di tutti i cambiamenti |
|
365 | label_changes_details: Particolari di tutti i cambiamenti | |
366 | label_issue_tracking: tracking dei contesti |
|
366 | label_issue_tracking: tracking dei contesti | |
367 | label_spent_time: Tempo impiegato |
|
367 | label_spent_time: Tempo impiegato | |
368 | label_f_hour: %.2f ora |
|
368 | label_f_hour: %.2f ora | |
369 | label_f_hour_plural: %.2f ore |
|
369 | label_f_hour_plural: %.2f ore | |
370 | label_time_tracking: Tracking del tempo |
|
370 | label_time_tracking: Tracking del tempo | |
371 | label_change_plural: Modifiche |
|
371 | label_change_plural: Modifiche | |
372 | label_statistics: Statistiche |
|
372 | label_statistics: Statistiche | |
373 | label_commits_per_month: Commit per mese |
|
373 | label_commits_per_month: Commit per mese | |
374 | label_commits_per_author: Commit per autore |
|
374 | label_commits_per_author: Commit per autore | |
375 | label_view_diff: mostra differenze |
|
375 | label_view_diff: mostra differenze | |
376 | label_diff_inline: inline |
|
376 | label_diff_inline: inline | |
377 | label_diff_side_by_side: side by side |
|
377 | label_diff_side_by_side: side by side | |
378 | label_options: Opzioni |
|
378 | label_options: Opzioni | |
379 | label_copy_workflow_from: Copia workflow da |
|
379 | label_copy_workflow_from: Copia workflow da | |
380 | label_permissions_report: Report permessi |
|
380 | label_permissions_report: Report permessi | |
381 | label_watched_issues: Watched issues |
|
381 | label_watched_issues: Watched issues | |
382 | label_related_issues: Related issues |
|
382 | label_related_issues: Related issues | |
383 | label_applied_status: Applied status |
|
383 | label_applied_status: Applied status | |
384 | label_loading: Loading... |
|
384 | label_loading: Loading... | |
385 | label_relation_new: New relation |
|
385 | label_relation_new: New relation | |
386 | label_relation_delete: Delete relation |
|
386 | label_relation_delete: Delete relation | |
387 | label_relates_to: related to |
|
387 | label_relates_to: related to | |
388 | label_duplicates: duplicates |
|
388 | label_duplicates: duplicates | |
389 | label_blocks: blocks |
|
389 | label_blocks: blocks | |
390 | label_blocked_by: blocked by |
|
390 | label_blocked_by: blocked by | |
391 | label_precedes: precedes |
|
391 | label_precedes: precedes | |
392 | label_follows: follows |
|
392 | label_follows: follows | |
393 | label_end_to_start: end to start |
|
393 | label_end_to_start: end to start | |
394 | label_end_to_end: end to end |
|
394 | label_end_to_end: end to end | |
395 | label_start_to_start: start to start |
|
395 | label_start_to_start: start to start | |
396 | label_start_to_end: start to end |
|
396 | label_start_to_end: start to end | |
397 | label_stay_logged_in: Stay logged in |
|
397 | label_stay_logged_in: Stay logged in | |
398 | label_disabled: disabled |
|
398 | label_disabled: disabled | |
399 | label_show_completed_versions: Show completed versions |
|
399 | label_show_completed_versions: Show completed versions | |
400 | label_me: me |
|
400 | label_me: me | |
401 | label_board: Forum |
|
401 | label_board: Forum | |
402 | label_board_new: New forum |
|
402 | label_board_new: New forum | |
403 | label_board_plural: Forums |
|
403 | label_board_plural: Forums | |
404 | label_topic_plural: Topics |
|
404 | label_topic_plural: Topics | |
405 | label_message_plural: Messages |
|
405 | label_message_plural: Messages | |
406 | label_message_last: Last message |
|
406 | label_message_last: Last message | |
407 | label_message_new: New message |
|
407 | label_message_new: New message | |
408 | label_reply_plural: Replies |
|
408 | label_reply_plural: Replies | |
409 | label_send_information: Send account information to the user |
|
409 | label_send_information: Send account information to the user | |
410 | label_year: Year |
|
410 | label_year: Year | |
411 | label_month: Month |
|
411 | label_month: Month | |
412 | label_week: Week |
|
412 | label_week: Week | |
413 | label_date_from: From |
|
413 | label_date_from: From | |
414 | label_date_to: To |
|
414 | label_date_to: To | |
415 | label_language_based: Language based |
|
415 | label_language_based: Language based | |
416 | label_sort_by: Sort by "%s" |
|
416 | label_sort_by: Sort by "%s" | |
417 | label_send_test_email: Send a test email |
|
417 | label_send_test_email: Send a test email | |
418 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
418 | label_feeds_access_key_created_on: RSS access key created %s ago | |
419 | label_module_plural: Modules |
|
419 | label_module_plural: Modules | |
420 | label_added_time_by: Added by %s %s ago |
|
420 | label_added_time_by: Added by %s %s ago | |
421 | label_updated_time: Updated %s ago |
|
421 | label_updated_time: Updated %s ago | |
422 | label_jump_to_a_project: Jump to a project... |
|
422 | label_jump_to_a_project: Jump to a project... | |
423 |
|
423 | |||
424 | button_login: Login |
|
424 | button_login: Login | |
425 | button_submit: Invia |
|
425 | button_submit: Invia | |
426 | button_save: Salva |
|
426 | button_save: Salva | |
427 | button_check_all: Seleziona tutti |
|
427 | button_check_all: Seleziona tutti | |
428 | button_uncheck_all: Deseleziona tutti |
|
428 | button_uncheck_all: Deseleziona tutti | |
429 | button_delete: Elimina |
|
429 | button_delete: Elimina | |
430 | button_create: Crea |
|
430 | button_create: Crea | |
431 | button_test: Test |
|
431 | button_test: Test | |
432 | button_edit: Modifica |
|
432 | button_edit: Modifica | |
433 | button_add: Aggiungi |
|
433 | button_add: Aggiungi | |
434 | button_change: Modifica |
|
434 | button_change: Modifica | |
435 | button_apply: Applica |
|
435 | button_apply: Applica | |
436 | button_clear: Pulisci |
|
436 | button_clear: Pulisci | |
437 | button_lock: Blocca |
|
437 | button_lock: Blocca | |
438 | button_unlock: Sblocca |
|
438 | button_unlock: Sblocca | |
439 | button_download: Scarica |
|
439 | button_download: Scarica | |
440 | button_list: Elenca |
|
440 | button_list: Elenca | |
441 | button_view: Mostra |
|
441 | button_view: Mostra | |
442 | button_move: Sposta |
|
442 | button_move: Sposta | |
443 | button_back: Indietro |
|
443 | button_back: Indietro | |
444 | button_cancel: Annulla |
|
444 | button_cancel: Annulla | |
445 | button_activate: Attiva |
|
445 | button_activate: Attiva | |
446 | button_sort: Ordina |
|
446 | button_sort: Ordina | |
447 | button_log_time: Registra tempo |
|
447 | button_log_time: Registra tempo | |
448 | button_rollback: Ripristina questa versione |
|
448 | button_rollback: Ripristina questa versione | |
449 | button_watch: Watch |
|
449 | button_watch: Watch | |
450 | button_unwatch: Unwatch |
|
450 | button_unwatch: Unwatch | |
451 | button_reply: Reply |
|
451 | button_reply: Reply | |
452 | button_archive: Archive |
|
452 | button_archive: Archive | |
453 | button_unarchive: Unarchive |
|
453 | button_unarchive: Unarchive | |
454 | button_reset: Reset |
|
454 | button_reset: Reset | |
455 | button_rename: Rename |
|
455 | button_rename: Rename | |
456 |
|
456 | |||
457 | status_active: attivo |
|
457 | status_active: attivo | |
458 | status_registered: registrato |
|
458 | status_registered: registrato | |
459 | status_locked: bloccato |
|
459 | status_locked: bloccato | |
460 |
|
460 | |||
461 | text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica. |
|
461 | text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica. | |
462 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
462 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
463 | text_min_max_length_info: 0 significa nessuna restrizione |
|
463 | text_min_max_length_info: 0 significa nessuna restrizione | |
464 | text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati? |
|
464 | text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati? | |
465 | text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow |
|
465 | text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow | |
466 | text_are_you_sure: Sei sicuro ? |
|
466 | text_are_you_sure: Sei sicuro ? | |
467 | text_journal_changed: cambiato da %s a %s |
|
467 | text_journal_changed: cambiato da %s a %s | |
468 | text_journal_set_to: impostato a %s |
|
468 | text_journal_set_to: impostato a %s | |
469 | text_journal_deleted: cancellato |
|
469 | text_journal_deleted: cancellato | |
470 | text_tip_task_begin_day: attività che iniziano in questa giornata |
|
470 | text_tip_task_begin_day: attività che iniziano in questa giornata | |
471 | text_tip_task_end_day: attività che terminano in questa giornata |
|
471 | text_tip_task_end_day: attività che terminano in questa giornata | |
472 | text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata |
|
472 | text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata | |
473 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
473 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' | |
474 | text_caracters_maximum: massimo %d caratteri. |
|
474 | text_caracters_maximum: massimo %d caratteri. | |
475 | text_length_between: Lunghezza compresa tra %d e %d caratteri. |
|
475 | text_length_between: Lunghezza compresa tra %d e %d caratteri. | |
476 | text_tracker_no_workflow: Nessun workflow definito per questo tracker |
|
476 | text_tracker_no_workflow: Nessun workflow definito per questo tracker | |
477 | text_unallowed_characters: Unallowed characters |
|
477 | text_unallowed_characters: Unallowed characters | |
478 | text_comma_separated: Multiple values allowed (comma separated). |
|
478 | text_comma_separated: Multiple values allowed (comma separated). | |
479 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
479 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
480 | text_issue_added: "E' stata segnalata l'anomalia %s." |
|
480 | text_issue_added: "E' stata segnalata l'anomalia %s." | |
481 | text_issue_updated: "L'anomalia %s e' stata aggiornata." |
|
481 | text_issue_updated: "L'anomalia %s e' stata aggiornata." | |
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
484 | text_issue_category_destroy_assignments: Remove category assignments |
|
484 | text_issue_category_destroy_assignments: Remove category assignments | |
485 | text_issue_category_reassign_to: Reassing issues to this category |
|
485 | text_issue_category_reassign_to: Reassing issues to this category | |
486 |
|
486 | |||
487 | default_role_manager: Manager |
|
487 | default_role_manager: Manager | |
488 | default_role_developper: Sviluppatore |
|
488 | default_role_developper: Sviluppatore | |
489 | default_role_reporter: Reporter |
|
489 | default_role_reporter: Reporter | |
490 | default_tracker_bug: Contesto |
|
490 | default_tracker_bug: Contesto | |
491 | default_tracker_feature: Funzione |
|
491 | default_tracker_feature: Funzione | |
492 | default_tracker_support: Supporto |
|
492 | default_tracker_support: Supporto | |
493 | default_issue_status_new: Nuovo/a |
|
493 | default_issue_status_new: Nuovo/a | |
494 | default_issue_status_assigned: Assegnato/a |
|
494 | default_issue_status_assigned: Assegnato/a | |
495 | default_issue_status_resolved: Risolto/a |
|
495 | default_issue_status_resolved: Risolto/a | |
496 | default_issue_status_feedback: Feedback |
|
496 | default_issue_status_feedback: Feedback | |
497 | default_issue_status_closed: Chiuso/a |
|
497 | default_issue_status_closed: Chiuso/a | |
498 | default_issue_status_rejected: Rifiutato/a |
|
498 | default_issue_status_rejected: Rifiutato/a | |
499 | default_doc_category_user: Documentazione utente |
|
499 | default_doc_category_user: Documentazione utente | |
500 | default_doc_category_tech: Documentazione tecnica |
|
500 | default_doc_category_tech: Documentazione tecnica | |
501 | default_priority_low: Bassa |
|
501 | default_priority_low: Bassa | |
502 | default_priority_normal: Normale |
|
502 | default_priority_normal: Normale | |
503 | default_priority_high: Alta |
|
503 | default_priority_high: Alta | |
504 | default_priority_urgent: Urgente |
|
504 | default_priority_urgent: Urgente | |
505 | default_priority_immediate: Immediata |
|
505 | default_priority_immediate: Immediata | |
506 | default_activity_design: Design |
|
506 | default_activity_design: Design | |
507 | default_activity_development: Development |
|
507 | default_activity_development: Development | |
508 |
|
508 | |||
509 | enumeration_issue_priorities: Priorità contesti |
|
509 | enumeration_issue_priorities: Priorità contesti | |
510 | enumeration_doc_categories: Categorie di documenti |
|
510 | enumeration_doc_categories: Categorie di documenti | |
511 | enumeration_activities: Attività (time tracking) |
|
511 | enumeration_activities: Attività (time tracking) | |
|
512 | label_file_plural: Files | |||
|
513 | label_changeset_plural: Changesets |
@@ -1,512 +1,514 | |||||
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 |
|
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: リポジトリに、エントリ/リビジョンが存在しません。 |
|
71 | notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。 | |
72 | notice_not_authorized: このページにアクセスするには認証が必要です。 |
|
72 | notice_not_authorized: このページにアクセスするには認証が必要です。 | |
73 | notice_email_sent: An email was sent to %s |
|
73 | notice_email_sent: An email was sent to %s | |
74 | notice_email_error: An error occurred while sending mail (%s) |
|
74 | notice_email_error: An error occurred while sending mail (%s) | |
75 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
75 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
76 |
|
76 | |||
77 | mail_subject_lost_password: redMineパスワード |
|
77 | mail_subject_lost_password: redMineパスワード | |
78 | mail_subject_register: redMineアカウントが有効になりました |
|
78 | mail_subject_register: redMineアカウントが有効になりました | |
79 |
|
79 | |||
80 | gui_validation_error: 1件のエラー |
|
80 | gui_validation_error: 1件のエラー | |
81 | gui_validation_error_plural: %d件のエラー |
|
81 | gui_validation_error_plural: %d件のエラー | |
82 |
|
82 | |||
83 | field_name: 名前 |
|
83 | field_name: 名前 | |
84 | field_description: 説明 |
|
84 | field_description: 説明 | |
85 | field_summary: サマリ |
|
85 | field_summary: サマリ | |
86 | field_is_required: 必須 |
|
86 | field_is_required: 必須 | |
87 | field_firstname: 名前 |
|
87 | field_firstname: 名前 | |
88 | field_lastname: 苗字 |
|
88 | field_lastname: 苗字 | |
89 | field_mail: メールアドレス |
|
89 | field_mail: メールアドレス | |
90 | field_filename: ファイル |
|
90 | field_filename: ファイル | |
91 | field_filesize: サイズ |
|
91 | field_filesize: サイズ | |
92 | field_downloads: ダウンロード |
|
92 | field_downloads: ダウンロード | |
93 | field_author: 起票者 |
|
93 | field_author: 起票者 | |
94 | field_created_on: 作成日 |
|
94 | field_created_on: 作成日 | |
95 | field_updated_on: 更新日 |
|
95 | field_updated_on: 更新日 | |
96 | field_field_format: 書式 |
|
96 | field_field_format: 書式 | |
97 | field_is_for_all: 全プロジェクト向け |
|
97 | field_is_for_all: 全プロジェクト向け | |
98 | field_possible_values: 選択肢 |
|
98 | field_possible_values: 選択肢 | |
99 | field_regexp: 正規表現 |
|
99 | field_regexp: 正規表現 | |
100 | field_min_length: 最小値 |
|
100 | field_min_length: 最小値 | |
101 | field_max_length: 最大値 |
|
101 | field_max_length: 最大値 | |
102 | field_value: 値 |
|
102 | field_value: 値 | |
103 | field_category: カテゴリ |
|
103 | field_category: カテゴリ | |
104 | field_title: タイトル |
|
104 | field_title: タイトル | |
105 | field_project: プロジェクト |
|
105 | field_project: プロジェクト | |
106 | field_issue: 問題 |
|
106 | field_issue: 問題 | |
107 | field_status: ステータス |
|
107 | field_status: ステータス | |
108 | field_notes: 注記 |
|
108 | field_notes: 注記 | |
109 | field_is_closed: 終了した問題 |
|
109 | field_is_closed: 終了した問題 | |
110 | field_is_default: デフォルトのステータス |
|
110 | field_is_default: デフォルトのステータス | |
111 | field_html_color: 色 |
|
111 | field_html_color: 色 | |
112 | field_tracker: トラッカー |
|
112 | field_tracker: トラッカー | |
113 | field_subject: 題名 |
|
113 | field_subject: 題名 | |
114 | field_due_date: 期限日 |
|
114 | field_due_date: 期限日 | |
115 | field_assigned_to: 担当者 |
|
115 | field_assigned_to: 担当者 | |
116 | field_priority: 優先度 |
|
116 | field_priority: 優先度 | |
117 | field_fixed_version: 修正されたバージョン |
|
117 | field_fixed_version: 修正されたバージョン | |
118 | field_user: ユーザ |
|
118 | field_user: ユーザ | |
119 | field_role: 役割 |
|
119 | field_role: 役割 | |
120 | field_homepage: ホームページ |
|
120 | field_homepage: ホームページ | |
121 | field_is_public: 公開 |
|
121 | field_is_public: 公開 | |
122 | field_parent: 親プロジェクト名 |
|
122 | field_parent: 親プロジェクト名 | |
123 | field_is_in_chlog: 変更記録に表示されている問題 |
|
123 | field_is_in_chlog: 変更記録に表示されている問題 | |
124 | field_is_in_roadmap: ロードマップに表示されている問題 |
|
124 | field_is_in_roadmap: ロードマップに表示されている問題 | |
125 | field_login: ログイン |
|
125 | field_login: ログイン | |
126 | field_mail_notification: メール通知 |
|
126 | field_mail_notification: メール通知 | |
127 | field_admin: 管理者 |
|
127 | field_admin: 管理者 | |
128 | field_last_login_on: 最終接続日 |
|
128 | field_last_login_on: 最終接続日 | |
129 | field_language: 言語 |
|
129 | field_language: 言語 | |
130 | field_effective_date: 日付 |
|
130 | field_effective_date: 日付 | |
131 | field_password: パスワード |
|
131 | field_password: パスワード | |
132 | field_new_password: 新しいパスワード |
|
132 | field_new_password: 新しいパスワード | |
133 | field_password_confirmation: パスワードの確認 |
|
133 | field_password_confirmation: パスワードの確認 | |
134 | field_version: バージョン |
|
134 | field_version: バージョン | |
135 | field_type: タイプ |
|
135 | field_type: タイプ | |
136 | field_host: ホスト |
|
136 | field_host: ホスト | |
137 | field_port: ポート |
|
137 | field_port: ポート | |
138 | field_account: アカウント |
|
138 | field_account: アカウント | |
139 | field_base_dn: Base DN |
|
139 | field_base_dn: Base DN | |
140 | field_attr_login: ログイン名属性 |
|
140 | field_attr_login: ログイン名属性 | |
141 | field_attr_firstname: 名前属性 |
|
141 | field_attr_firstname: 名前属性 | |
142 | field_attr_lastname: 苗字属性 |
|
142 | field_attr_lastname: 苗字属性 | |
143 | field_attr_mail: メール属性 |
|
143 | field_attr_mail: メール属性 | |
144 | field_onthefly: あわせてユーザを作成 |
|
144 | field_onthefly: あわせてユーザを作成 | |
145 | field_start_date: 開始日 |
|
145 | field_start_date: 開始日 | |
146 | field_done_ratio: 進捗 %% |
|
146 | field_done_ratio: 進捗 %% | |
147 | field_auth_source: 認証モード |
|
147 | field_auth_source: 認証モード | |
148 | field_hide_mail: メールアドレスを隠す |
|
148 | field_hide_mail: メールアドレスを隠す | |
149 | field_comments: コメント |
|
149 | field_comments: コメント | |
150 | field_url: URL |
|
150 | field_url: URL | |
151 | field_start_page: メインページ |
|
151 | field_start_page: メインページ | |
152 | field_subproject: サブプロジェクト |
|
152 | field_subproject: サブプロジェクト | |
153 | field_hours: 時間 |
|
153 | field_hours: 時間 | |
154 | field_activity: 活動 |
|
154 | field_activity: 活動 | |
155 | field_spent_on: 日付 |
|
155 | field_spent_on: 日付 | |
156 | field_identifier: 識別子 |
|
156 | field_identifier: 識別子 | |
157 | field_is_filter: フィルタとして使う |
|
157 | field_is_filter: フィルタとして使う | |
158 | field_issue_to_id: 関連する問題 |
|
158 | field_issue_to_id: 関連する問題 | |
159 | field_delay: 遅延 |
|
159 | field_delay: 遅延 | |
160 | field_assignable: Issues can be assigned to this role |
|
160 | field_assignable: Issues can be assigned to this role | |
161 | field_redirect_existing_links: Redirect existing links |
|
161 | field_redirect_existing_links: Redirect existing links | |
162 | field_estimated_hours: Estimated time |
|
162 | field_estimated_hours: Estimated time | |
163 |
|
163 | |||
164 | setting_app_title: アプリケーションのタイトル |
|
164 | setting_app_title: アプリケーションのタイトル | |
165 | setting_app_subtitle: アプリケーションのサブタイトル |
|
165 | setting_app_subtitle: アプリケーションのサブタイトル | |
166 | setting_welcome_text: ウェルカムメッセージ |
|
166 | setting_welcome_text: ウェルカムメッセージ | |
167 | setting_default_language: 既定の言語 |
|
167 | setting_default_language: 既定の言語 | |
168 | setting_login_required: 認証が必要 |
|
168 | setting_login_required: 認証が必要 | |
169 | setting_self_registration: ユーザは自分で登録できる |
|
169 | setting_self_registration: ユーザは自分で登録できる | |
170 | setting_attachment_max_size: 添付の最大サイズ |
|
170 | setting_attachment_max_size: 添付の最大サイズ | |
171 | setting_issues_export_limit: 出力する問題数の上限 |
|
171 | setting_issues_export_limit: 出力する問題数の上限 | |
172 | setting_mail_from: 送信元メールアドレス |
|
172 | setting_mail_from: 送信元メールアドレス | |
173 | setting_host_name: ホスト名 |
|
173 | setting_host_name: ホスト名 | |
174 | setting_text_formatting: テキストの書式 |
|
174 | setting_text_formatting: テキストの書式 | |
175 | setting_wiki_compression: Wiki履歴を圧縮する |
|
175 | setting_wiki_compression: Wiki履歴を圧縮する | |
176 | setting_feeds_limit: フィード内容の上限 |
|
176 | setting_feeds_limit: フィード内容の上限 | |
177 | setting_autofetch_changesets: コミットを自動取得する |
|
177 | setting_autofetch_changesets: コミットを自動取得する | |
178 | setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する |
|
178 | setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する | |
179 | setting_commit_ref_keywords: 参照用キーワード |
|
179 | setting_commit_ref_keywords: 参照用キーワード | |
180 | setting_commit_fix_keywords: 修正用キーワード |
|
180 | setting_commit_fix_keywords: 修正用キーワード | |
181 | setting_autologin: 自動ログイン |
|
181 | setting_autologin: 自動ログイン | |
182 | setting_date_format: Date format |
|
182 | setting_date_format: Date format | |
183 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
183 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
184 |
|
184 | |||
185 | label_user: ユーザ |
|
185 | label_user: ユーザ | |
186 | label_user_plural: ユーザ |
|
186 | label_user_plural: ユーザ | |
187 | label_user_new: 新しいユーザ |
|
187 | label_user_new: 新しいユーザ | |
188 | label_project: プロジェクト |
|
188 | label_project: プロジェクト | |
189 | label_project_new: 新しいプロジェクト |
|
189 | label_project_new: 新しいプロジェクト | |
190 | label_project_plural: プロジェクト |
|
190 | label_project_plural: プロジェクト | |
191 | label_project_all: 全プロジェクト |
|
191 | label_project_all: 全プロジェクト | |
192 | label_project_latest: 最近のプロジェクト |
|
192 | label_project_latest: 最近のプロジェクト | |
193 | label_issue: 問題 |
|
193 | label_issue: 問題 | |
194 | label_issue_new: 新しい問題 |
|
194 | label_issue_new: 新しい問題 | |
195 | label_issue_plural: 問題 |
|
195 | label_issue_plural: 問題 | |
196 | label_issue_view_all: 問題を全て見る |
|
196 | label_issue_view_all: 問題を全て見る | |
197 | label_document: 文書 |
|
197 | label_document: 文書 | |
198 | label_document_new: 新しい文書 |
|
198 | label_document_new: 新しい文書 | |
199 | label_document_plural: 文書 |
|
199 | label_document_plural: 文書 | |
200 | label_role: ロール |
|
200 | label_role: ロール | |
201 | label_role_plural: ロール |
|
201 | label_role_plural: ロール | |
202 | label_role_new: 新しいロール |
|
202 | label_role_new: 新しいロール | |
203 | label_role_and_permissions: ロールと権限 |
|
203 | label_role_and_permissions: ロールと権限 | |
204 | label_member: メンバー |
|
204 | label_member: メンバー | |
205 | label_member_new: 新しいメンバー |
|
205 | label_member_new: 新しいメンバー | |
206 | label_member_plural: メンバー |
|
206 | label_member_plural: メンバー | |
207 | label_tracker: トラッカー |
|
207 | label_tracker: トラッカー | |
208 | label_tracker_plural: トラッカー |
|
208 | label_tracker_plural: トラッカー | |
209 | label_tracker_new: 新しいトラッカーを作成 |
|
209 | label_tracker_new: 新しいトラッカーを作成 | |
210 | label_workflow: ワークフロー |
|
210 | label_workflow: ワークフロー | |
211 | label_issue_status: 問題のステータス |
|
211 | label_issue_status: 問題のステータス | |
212 | label_issue_status_plural: 問題のステータス |
|
212 | label_issue_status_plural: 問題のステータス | |
213 | label_issue_status_new: 新しいステータス |
|
213 | label_issue_status_new: 新しいステータス | |
214 | label_issue_category: 問題のカテゴリ |
|
214 | label_issue_category: 問題のカテゴリ | |
215 | label_issue_category_plural: 問題のカテゴリ |
|
215 | label_issue_category_plural: 問題のカテゴリ | |
216 | label_issue_category_new: 新しいカテゴリ |
|
216 | label_issue_category_new: 新しいカテゴリ | |
217 | label_custom_field: カスタムフィールド |
|
217 | label_custom_field: カスタムフィールド | |
218 | label_custom_field_plural: カスタムフィールド |
|
218 | label_custom_field_plural: カスタムフィールド | |
219 | label_custom_field_new: 新しいカスタムフィールドを作成 |
|
219 | label_custom_field_new: 新しいカスタムフィールドを作成 | |
220 | label_enumerations: 列挙項目 |
|
220 | label_enumerations: 列挙項目 | |
221 | label_enumeration_new: 新しい値 |
|
221 | label_enumeration_new: 新しい値 | |
222 | label_information: 情報 |
|
222 | label_information: 情報 | |
223 | label_information_plural: 情報 |
|
223 | label_information_plural: 情報 | |
224 | label_please_login: ログインしてください |
|
224 | label_please_login: ログインしてください | |
225 | label_register: 登録する |
|
225 | label_register: 登録する | |
226 | label_password_lost: パスワードの再発行 |
|
226 | label_password_lost: パスワードの再発行 | |
227 | label_home: ホーム |
|
227 | label_home: ホーム | |
228 | label_my_page: マイページ |
|
228 | label_my_page: マイページ | |
229 | label_my_account: マイアカウント |
|
229 | label_my_account: マイアカウント | |
230 | label_my_projects: マイプロジェクト |
|
230 | label_my_projects: マイプロジェクト | |
231 | label_administration: 管理 |
|
231 | label_administration: 管理 | |
232 | label_login: ログイン |
|
232 | label_login: ログイン | |
233 | label_logout: ログアウト |
|
233 | label_logout: ログアウト | |
234 | label_help: ヘルプ |
|
234 | label_help: ヘルプ | |
235 | label_reported_issues: 報告した問題 |
|
235 | label_reported_issues: 報告した問題 | |
236 | label_assigned_to_me_issues: 担当している問題 |
|
236 | label_assigned_to_me_issues: 担当している問題 | |
237 | label_last_login: 最近の接続 |
|
237 | label_last_login: 最近の接続 | |
238 | label_last_updates: 最近の更新1件 |
|
238 | label_last_updates: 最近の更新1件 | |
239 | label_last_updates_plural: 最近の更新%d件 |
|
239 | label_last_updates_plural: 最近の更新%d件 | |
240 | label_registered_on: 登録日 |
|
240 | label_registered_on: 登録日 | |
241 | label_activity: 活動 |
|
241 | label_activity: 活動 | |
242 | label_new: 新しく作成 |
|
242 | label_new: 新しく作成 | |
243 | label_logged_as: ログイン中: |
|
243 | label_logged_as: ログイン中: | |
244 | label_environment: 環境 |
|
244 | label_environment: 環境 | |
245 | label_authentication: 認証 |
|
245 | label_authentication: 認証 | |
246 | label_auth_source: 認証モード |
|
246 | label_auth_source: 認証モード | |
247 | label_auth_source_new: 新しい認証モード |
|
247 | label_auth_source_new: 新しい認証モード | |
248 | label_auth_source_plural: 認証モード |
|
248 | label_auth_source_plural: 認証モード | |
249 | label_subproject_plural: サブプロジェクト |
|
249 | label_subproject_plural: サブプロジェクト | |
250 | label_min_max_length: 最小値 - 最大値の長さ |
|
250 | label_min_max_length: 最小値 - 最大値の長さ | |
251 | label_list: リストから選択 |
|
251 | label_list: リストから選択 | |
252 | label_date: 日付 |
|
252 | label_date: 日付 | |
253 | label_integer: 整数 |
|
253 | label_integer: 整数 | |
254 | label_boolean: 真偽値 |
|
254 | label_boolean: 真偽値 | |
255 | label_string: テキスト |
|
255 | label_string: テキスト | |
256 | label_text: 長いテキスト |
|
256 | label_text: 長いテキスト | |
257 | label_attribute: 属性 |
|
257 | label_attribute: 属性 | |
258 | label_attribute_plural: 属性 |
|
258 | label_attribute_plural: 属性 | |
259 | label_download: %d ダウンロード |
|
259 | label_download: %d ダウンロード | |
260 | label_download_plural: %d ダウンロード |
|
260 | label_download_plural: %d ダウンロード | |
261 | label_no_data: 表示するデータがありません |
|
261 | label_no_data: 表示するデータがありません | |
262 | label_change_status: ステータスの変更 |
|
262 | label_change_status: ステータスの変更 | |
263 | label_history: 履歴 |
|
263 | label_history: 履歴 | |
264 | label_attachment: ファイル |
|
264 | label_attachment: ファイル | |
265 | label_attachment_new: 新しいファイル |
|
265 | label_attachment_new: 新しいファイル | |
266 | label_attachment_delete: ファイルを削除 |
|
266 | label_attachment_delete: ファイルを削除 | |
267 | label_attachment_plural: ファイル |
|
267 | label_attachment_plural: ファイル | |
268 | label_report: レポート |
|
268 | label_report: レポート | |
269 | label_report_plural: レポート |
|
269 | label_report_plural: レポート | |
270 | label_news: ニュース |
|
270 | label_news: ニュース | |
271 | label_news_new: ニュースを追加 |
|
271 | label_news_new: ニュースを追加 | |
272 | label_news_plural: ニュース |
|
272 | label_news_plural: ニュース | |
273 | label_news_latest: 最新ニュース |
|
273 | label_news_latest: 最新ニュース | |
274 | label_news_view_all: 全てのニュースを見る |
|
274 | label_news_view_all: 全てのニュースを見る | |
275 | label_change_log: 変更記録 |
|
275 | label_change_log: 変更記録 | |
276 | label_settings: 設定 |
|
276 | label_settings: 設定 | |
277 | label_overview: 概要 |
|
277 | label_overview: 概要 | |
278 | label_version: バージョン |
|
278 | label_version: バージョン | |
279 | label_version_new: 新しいバージョン |
|
279 | label_version_new: 新しいバージョン | |
280 | label_version_plural: バージョン |
|
280 | label_version_plural: バージョン | |
281 | label_confirmation: 確認 |
|
281 | label_confirmation: 確認 | |
282 | label_export_to: 他の形式に出力 |
|
282 | label_export_to: 他の形式に出力 | |
283 | label_read: 読む... |
|
283 | label_read: 読む... | |
284 | label_public_projects: 公開プロジェクト |
|
284 | label_public_projects: 公開プロジェクト | |
285 | label_open_issues: 未完了 |
|
285 | label_open_issues: 未完了 | |
286 | label_open_issues_plural: 未完了 |
|
286 | label_open_issues_plural: 未完了 | |
287 | label_closed_issues: 終了 |
|
287 | label_closed_issues: 終了 | |
288 | label_closed_issues_plural: 終了 |
|
288 | label_closed_issues_plural: 終了 | |
289 | label_total: 合計 |
|
289 | label_total: 合計 | |
290 | label_permissions: 権限 |
|
290 | label_permissions: 権限 | |
291 | label_current_status: 現在のステータス |
|
291 | label_current_status: 現在のステータス | |
292 | label_new_statuses_allowed: ステータスの移行先 |
|
292 | label_new_statuses_allowed: ステータスの移行先 | |
293 | label_all: 全て |
|
293 | label_all: 全て | |
294 | label_none: なし |
|
294 | label_none: なし | |
295 | label_next: 次 |
|
295 | label_next: 次 | |
296 | label_previous: 前 |
|
296 | label_previous: 前 | |
297 | label_used_by: 使用中 |
|
297 | label_used_by: 使用中 | |
298 | label_details: 詳細 |
|
298 | label_details: 詳細 | |
299 | label_add_note: 注記を追加 |
|
299 | label_add_note: 注記を追加 | |
300 | label_per_page: ページ毎 |
|
300 | label_per_page: ページ毎 | |
301 | label_calendar: カレンダー |
|
301 | label_calendar: カレンダー | |
302 | label_months_from: ヶ月 from |
|
302 | label_months_from: ヶ月 from | |
303 | label_gantt: ガントチャート |
|
303 | label_gantt: ガントチャート | |
304 | label_internal: Internal |
|
304 | label_internal: Internal | |
305 | label_last_changes: 最新の変更%d件 |
|
305 | label_last_changes: 最新の変更%d件 | |
306 | label_change_view_all: 全ての変更を見る |
|
306 | label_change_view_all: 全ての変更を見る | |
307 | label_personalize_page: このページをパーソナライズする |
|
307 | label_personalize_page: このページをパーソナライズする | |
308 | label_comment: コメント |
|
308 | label_comment: コメント | |
309 | label_comment_plural: コメント |
|
309 | label_comment_plural: コメント | |
310 | label_comment_add: コメント追加 |
|
310 | label_comment_add: コメント追加 | |
311 | label_comment_added: 追加されたコメント |
|
311 | label_comment_added: 追加されたコメント | |
312 | label_comment_delete: コメント削除 |
|
312 | label_comment_delete: コメント削除 | |
313 | label_query: カスタムクエリ |
|
313 | label_query: カスタムクエリ | |
314 | label_query_plural: カスタムクエリ |
|
314 | label_query_plural: カスタムクエリ | |
315 | label_query_new: 新しいクエリ |
|
315 | label_query_new: 新しいクエリ | |
316 | label_filter_add: フィルタ追加 |
|
316 | label_filter_add: フィルタ追加 | |
317 | label_filter_plural: フィルタ |
|
317 | label_filter_plural: フィルタ | |
318 | label_equals: 等しい |
|
318 | label_equals: 等しい | |
319 | label_not_equals: 等しくない |
|
319 | label_not_equals: 等しくない | |
320 | label_in_less_than: 残日数がこれより多い |
|
320 | label_in_less_than: 残日数がこれより多い | |
321 | label_in_more_than: 残日数がこれより少ない |
|
321 | label_in_more_than: 残日数がこれより少ない | |
322 | label_in: 残日数 |
|
322 | label_in: 残日数 | |
323 | label_today: 今日 |
|
323 | label_today: 今日 | |
324 | label_this_week: this week |
|
324 | label_this_week: this week | |
325 | label_less_than_ago: 経過日数がこれより少ない |
|
325 | label_less_than_ago: 経過日数がこれより少ない | |
326 | label_more_than_ago: 経過日数がこれより多い |
|
326 | label_more_than_ago: 経過日数がこれより多い | |
327 | label_ago: 日前 |
|
327 | label_ago: 日前 | |
328 | label_contains: 含む |
|
328 | label_contains: 含む | |
329 | label_not_contains: 含まない |
|
329 | label_not_contains: 含まない | |
330 | label_day_plural: 日 |
|
330 | label_day_plural: 日 | |
331 | label_repository: リポジトリ |
|
331 | label_repository: リポジトリ | |
332 | label_browse: ブラウズ |
|
332 | label_browse: ブラウズ | |
333 | label_modification: %d点の変更 |
|
333 | label_modification: %d点の変更 | |
334 | label_modification_plural: %d点の変更 |
|
334 | label_modification_plural: %d点の変更 | |
335 | label_revision: リビジョン |
|
335 | label_revision: リビジョン | |
336 | label_revision_plural: リビジョン |
|
336 | label_revision_plural: リビジョン | |
337 | label_added: 追加 |
|
337 | label_added: 追加 | |
338 | label_modified: 変更 |
|
338 | label_modified: 変更 | |
339 | label_deleted: 削除 |
|
339 | label_deleted: 削除 | |
340 | label_latest_revision: 最新リビジョン |
|
340 | label_latest_revision: 最新リビジョン | |
341 | label_latest_revision_plural: 最新リビジョン |
|
341 | label_latest_revision_plural: 最新リビジョン | |
342 | label_view_revisions: リビジョンを見る |
|
342 | label_view_revisions: リビジョンを見る | |
343 | label_max_size: 最大サイズ |
|
343 | label_max_size: 最大サイズ | |
344 | label_on: 合計 |
|
344 | label_on: 合計 | |
345 | label_sort_highest: 一番上へ |
|
345 | label_sort_highest: 一番上へ | |
346 | label_sort_higher: 上へ |
|
346 | label_sort_higher: 上へ | |
347 | label_sort_lower: 下へ |
|
347 | label_sort_lower: 下へ | |
348 | label_sort_lowest: 一番下へ |
|
348 | label_sort_lowest: 一番下へ | |
349 | label_roadmap: ロードマップ |
|
349 | label_roadmap: ロードマップ | |
350 | label_roadmap_due_in: 期日まで |
|
350 | label_roadmap_due_in: 期日まで | |
351 | label_roadmap_overdue: %s late |
|
351 | label_roadmap_overdue: %s late | |
352 | label_roadmap_no_issues: このバージョンに向けての問題はありません |
|
352 | label_roadmap_no_issues: このバージョンに向けての問題はありません | |
353 | label_search: 検索 |
|
353 | label_search: 検索 | |
354 | label_result: %d件の結果 |
|
354 | label_result: %d件の結果 | |
355 | label_result_plural: %d件の結果 |
|
355 | label_result_plural: %d件の結果 | |
356 | label_all_words: すべての単語 |
|
356 | label_all_words: すべての単語 | |
357 | label_wiki: Wiki |
|
357 | label_wiki: Wiki | |
358 | label_wiki_edit: Wiki編集 |
|
358 | label_wiki_edit: Wiki編集 | |
359 | label_wiki_edit_plural: Wiki編集 |
|
359 | label_wiki_edit_plural: Wiki編集 | |
360 | label_wiki_page: Wiki page |
|
360 | label_wiki_page: Wiki page | |
361 | label_wiki_page_plural: Wikiページ |
|
361 | label_wiki_page_plural: Wikiページ | |
362 | label_page_index: 索引 |
|
362 | label_page_index: 索引 | |
363 | label_current_version: 最新版 |
|
363 | label_current_version: 最新版 | |
364 | label_preview: プレビュー |
|
364 | label_preview: プレビュー | |
365 | label_feed_plural: フィード |
|
365 | label_feed_plural: フィード | |
366 | label_changes_details: 全変更の詳細 |
|
366 | label_changes_details: 全変更の詳細 | |
367 | label_issue_tracking: 問題トラッキング |
|
367 | label_issue_tracking: 問題トラッキング | |
368 | label_spent_time: 経過時間 |
|
368 | label_spent_time: 経過時間 | |
369 | label_f_hour: %.2f 時間 |
|
369 | label_f_hour: %.2f 時間 | |
370 | label_f_hour_plural: %.2f 時間 |
|
370 | label_f_hour_plural: %.2f 時間 | |
371 | label_time_tracking: 時間トラッキング |
|
371 | label_time_tracking: 時間トラッキング | |
372 | label_change_plural: 変更 |
|
372 | label_change_plural: 変更 | |
373 | label_statistics: 統計 |
|
373 | label_statistics: 統計 | |
374 | label_commits_per_month: 月別のコミット |
|
374 | label_commits_per_month: 月別のコミット | |
375 | label_commits_per_author: 起票者別のコミット |
|
375 | label_commits_per_author: 起票者別のコミット | |
376 | label_view_diff: 差分を見る |
|
376 | label_view_diff: 差分を見る | |
377 | label_diff_inline: インライン |
|
377 | label_diff_inline: インライン | |
378 | label_diff_side_by_side: 横に並べる |
|
378 | label_diff_side_by_side: 横に並べる | |
379 | label_options: オプション |
|
379 | label_options: オプション | |
380 | label_copy_workflow_from: ワークフローをここからコピー |
|
380 | label_copy_workflow_from: ワークフローをここからコピー | |
381 | label_permissions_report: 権限レポート |
|
381 | label_permissions_report: 権限レポート | |
382 | label_watched_issues: ウォッチ中の問題 |
|
382 | label_watched_issues: ウォッチ中の問題 | |
383 | label_related_issues: 関連する問題 |
|
383 | label_related_issues: 関連する問題 | |
384 | label_applied_status: 適用されたステータス |
|
384 | label_applied_status: 適用されたステータス | |
385 | label_loading: ロード中... |
|
385 | label_loading: ロード中... | |
386 | label_relation_new: 新しい関連 |
|
386 | label_relation_new: 新しい関連 | |
387 | label_relation_delete: 関連の削除 |
|
387 | label_relation_delete: 関連の削除 | |
388 | label_relates_to: 関係している |
|
388 | label_relates_to: 関係している | |
389 | label_duplicates: 重複している |
|
389 | label_duplicates: 重複している | |
390 | label_blocks: ブロックしている |
|
390 | label_blocks: ブロックしている | |
391 | label_blocked_by: ブロックされている |
|
391 | label_blocked_by: ブロックされている | |
392 | label_precedes: 先行する |
|
392 | label_precedes: 先行する | |
393 | label_follows: 後続する |
|
393 | label_follows: 後続する | |
394 | label_end_to_start: end to start |
|
394 | label_end_to_start: end to start | |
395 | label_end_to_end: end to end |
|
395 | label_end_to_end: end to end | |
396 | label_start_to_start: start to start |
|
396 | label_start_to_start: start to start | |
397 | label_start_to_end: start to end |
|
397 | label_start_to_end: start to end | |
398 | label_stay_logged_in: ログインを維持 |
|
398 | label_stay_logged_in: ログインを維持 | |
399 | label_disabled: 無効 |
|
399 | label_disabled: 無効 | |
400 | label_show_completed_versions: 完了したバージョンを表示 |
|
400 | label_show_completed_versions: 完了したバージョンを表示 | |
401 | label_me: 自分 |
|
401 | label_me: 自分 | |
402 | label_board: フォーラム |
|
402 | label_board: フォーラム | |
403 | label_board_new: 新しいフォーラム |
|
403 | label_board_new: 新しいフォーラム | |
404 | label_board_plural: フォーラム |
|
404 | label_board_plural: フォーラム | |
405 | label_topic_plural: トピック |
|
405 | label_topic_plural: トピック | |
406 | label_message_plural: メッセージ |
|
406 | label_message_plural: メッセージ | |
407 | label_message_last: 最新のメッセージ |
|
407 | label_message_last: 最新のメッセージ | |
408 | label_message_new: 新しいメッセージ |
|
408 | label_message_new: 新しいメッセージ | |
409 | label_reply_plural: 返答 |
|
409 | label_reply_plural: 返答 | |
410 | label_send_information: アカウント情報をユーザに送信 |
|
410 | label_send_information: アカウント情報をユーザに送信 | |
411 | label_year: Year |
|
411 | label_year: Year | |
412 | label_month: Month |
|
412 | label_month: Month | |
413 | label_week: Week |
|
413 | label_week: Week | |
414 | label_date_from: From |
|
414 | label_date_from: From | |
415 | label_date_to: To |
|
415 | label_date_to: To | |
416 | label_language_based: Language based |
|
416 | label_language_based: Language based | |
417 | label_sort_by: Sort by "%s" |
|
417 | label_sort_by: Sort by "%s" | |
418 | label_send_test_email: Send a test email |
|
418 | label_send_test_email: Send a test email | |
419 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
419 | label_feeds_access_key_created_on: RSS access key created %s ago | |
420 | label_module_plural: Modules |
|
420 | label_module_plural: Modules | |
421 | label_added_time_by: Added by %s %s ago |
|
421 | label_added_time_by: Added by %s %s ago | |
422 | label_updated_time: Updated %s ago |
|
422 | label_updated_time: Updated %s ago | |
423 | label_jump_to_a_project: Jump to a project... |
|
423 | label_jump_to_a_project: Jump to a project... | |
424 |
|
424 | |||
425 | button_login: ログイン |
|
425 | button_login: ログイン | |
426 | button_submit: 変更 |
|
426 | button_submit: 変更 | |
427 | button_save: 保存 |
|
427 | button_save: 保存 | |
428 | button_check_all: チェックを全部つける |
|
428 | button_check_all: チェックを全部つける | |
429 | button_uncheck_all: チェックを全部外す |
|
429 | button_uncheck_all: チェックを全部外す | |
430 | button_delete: 削除 |
|
430 | button_delete: 削除 | |
431 | button_create: 作成 |
|
431 | button_create: 作成 | |
432 | button_test: テスト |
|
432 | button_test: テスト | |
433 | button_edit: 編集 |
|
433 | button_edit: 編集 | |
434 | button_add: 追加 |
|
434 | button_add: 追加 | |
435 | button_change: 変更 |
|
435 | button_change: 変更 | |
436 | button_apply: 適用 |
|
436 | button_apply: 適用 | |
437 | button_clear: クリア |
|
437 | button_clear: クリア | |
438 | button_lock: ロック |
|
438 | button_lock: ロック | |
439 | button_unlock: アンロック |
|
439 | button_unlock: アンロック | |
440 | button_download: ダウンロード |
|
440 | button_download: ダウンロード | |
441 | button_list: 一覧 |
|
441 | button_list: 一覧 | |
442 | button_view: 見る |
|
442 | button_view: 見る | |
443 | button_move: 移動 |
|
443 | button_move: 移動 | |
444 | button_back: 戻る |
|
444 | button_back: 戻る | |
445 | button_cancel: キャンセル |
|
445 | button_cancel: キャンセル | |
446 | button_activate: 有効にする |
|
446 | button_activate: 有効にする | |
447 | button_sort: ソート |
|
447 | button_sort: ソート | |
448 | button_log_time: 時間を記録 |
|
448 | button_log_time: 時間を記録 | |
449 | button_rollback: このバージョンにロールバック |
|
449 | button_rollback: このバージョンにロールバック | |
450 | button_watch: ウォッチ |
|
450 | button_watch: ウォッチ | |
451 | button_unwatch: ウォッチをやめる |
|
451 | button_unwatch: ウォッチをやめる | |
452 | button_reply: 返答 |
|
452 | button_reply: 返答 | |
453 | button_archive: 書庫に保存 |
|
453 | button_archive: 書庫に保存 | |
454 | button_unarchive: 書庫から戻す |
|
454 | button_unarchive: 書庫から戻す | |
455 | button_reset: Reset |
|
455 | button_reset: Reset | |
456 | button_rename: Rename |
|
456 | button_rename: Rename | |
457 |
|
457 | |||
458 | status_active: 有効 |
|
458 | status_active: 有効 | |
459 | status_registered: 登録 |
|
459 | status_registered: 登録 | |
460 | status_locked: ロック |
|
460 | status_locked: ロック | |
461 |
|
461 | |||
462 | text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。 |
|
462 | text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。 | |
463 | text_regexp_info: 例) ^[A-Z0-9]+$ |
|
463 | text_regexp_info: 例) ^[A-Z0-9]+$ | |
464 | text_min_max_length_info: 0だと無制限になります |
|
464 | text_min_max_length_info: 0だと無制限になります | |
465 | text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか? |
|
465 | text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか? | |
466 | text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください |
|
466 | text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください | |
467 | text_are_you_sure: 本当に? |
|
467 | text_are_you_sure: 本当に? | |
468 | text_journal_changed: %sから%sに変更 |
|
468 | text_journal_changed: %sから%sに変更 | |
469 | text_journal_set_to: %sにセット |
|
469 | text_journal_set_to: %sにセット | |
470 | text_journal_deleted: 削除 |
|
470 | text_journal_deleted: 削除 | |
471 | text_tip_task_begin_day: この日に開始するタスク |
|
471 | text_tip_task_begin_day: この日に開始するタスク | |
472 | text_tip_task_end_day: この日に終了するタスク |
|
472 | text_tip_task_end_day: この日に終了するタスク | |
473 | text_tip_task_begin_end_day: この日のうちに開始して終了するタスク |
|
473 | text_tip_task_begin_end_day: この日のうちに開始して終了するタスク | |
474 | text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。' |
|
474 | text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。' | |
475 | text_caracters_maximum: 最大 %d 文字です。 |
|
475 | text_caracters_maximum: 最大 %d 文字です。 | |
476 | text_length_between: 長さは %d から %d 文字までです。 |
|
476 | text_length_between: 長さは %d から %d 文字までです。 | |
477 | text_tracker_no_workflow: このトラッカーにワークフローが定義されていません |
|
477 | text_tracker_no_workflow: このトラッカーにワークフローが定義されていません | |
478 | text_unallowed_characters: 使えない文字です |
|
478 | text_unallowed_characters: 使えない文字です | |
479 | text_comma_separated: (カンマで区切った)複数の値が使えます |
|
479 | text_comma_separated: (カンマで区切った)複数の値が使えます | |
480 | text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正 |
|
480 | text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正 | |
481 | text_issue_added: 問題 %s が報告されました。 |
|
481 | text_issue_added: 問題 %s が報告されました。 | |
482 | text_issue_updated: 問題 %s が更新されました。 |
|
482 | text_issue_updated: 問題 %s が更新されました。 | |
483 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
483 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
484 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
484 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
485 | text_issue_category_destroy_assignments: Remove category assignments |
|
485 | text_issue_category_destroy_assignments: Remove category assignments | |
486 | text_issue_category_reassign_to: Reassing issues to this category |
|
486 | text_issue_category_reassign_to: Reassing issues to this category | |
487 |
|
487 | |||
488 | default_role_manager: 管理者 |
|
488 | default_role_manager: 管理者 | |
489 | default_role_developper: 開発者 |
|
489 | default_role_developper: 開発者 | |
490 | default_role_reporter: 報告者 |
|
490 | default_role_reporter: 報告者 | |
491 | default_tracker_bug: バグ |
|
491 | default_tracker_bug: バグ | |
492 | default_tracker_feature: 機能 |
|
492 | default_tracker_feature: 機能 | |
493 | default_tracker_support: サポート |
|
493 | default_tracker_support: サポート | |
494 | default_issue_status_new: 新規 |
|
494 | default_issue_status_new: 新規 | |
495 | default_issue_status_assigned: 担当 |
|
495 | default_issue_status_assigned: 担当 | |
496 | default_issue_status_resolved: 解決 |
|
496 | default_issue_status_resolved: 解決 | |
497 | default_issue_status_feedback: フィードバック |
|
497 | default_issue_status_feedback: フィードバック | |
498 | default_issue_status_closed: 終了 |
|
498 | default_issue_status_closed: 終了 | |
499 | default_issue_status_rejected: 却下 |
|
499 | default_issue_status_rejected: 却下 | |
500 | default_doc_category_user: ユーザ文書 |
|
500 | default_doc_category_user: ユーザ文書 | |
501 | default_doc_category_tech: 技術文書 |
|
501 | default_doc_category_tech: 技術文書 | |
502 | default_priority_low: 低め |
|
502 | default_priority_low: 低め | |
503 | default_priority_normal: 通常 |
|
503 | default_priority_normal: 通常 | |
504 | default_priority_high: 高め |
|
504 | default_priority_high: 高め | |
505 | default_priority_urgent: 急いで |
|
505 | default_priority_urgent: 急いで | |
506 | default_priority_immediate: 今すぐ |
|
506 | default_priority_immediate: 今すぐ | |
507 | default_activity_design: デザイン作業 |
|
507 | default_activity_design: デザイン作業 | |
508 | default_activity_development: 開発作業 |
|
508 | default_activity_development: 開発作業 | |
509 |
|
509 | |||
510 | enumeration_issue_priorities: 問題の優先度 |
|
510 | enumeration_issue_priorities: 問題の優先度 | |
511 | enumeration_doc_categories: 文書カテゴリ |
|
511 | enumeration_doc_categories: 文書カテゴリ | |
512 | enumeration_activities: 作業分類 (時間トラッキング) |
|
512 | enumeration_activities: 作業分類 (時間トラッキング) | |
|
513 | label_file_plural: Files | |||
|
514 | label_changeset_plural: Changesets |
@@ -1,512 +1,514 | |||||
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 |
|
54 | |||
55 | notice_account_updated: Account is met succes gewijzigd |
|
55 | notice_account_updated: Account is met succes gewijzigd | |
56 | notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord |
|
56 | notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord | |
57 | notice_account_password_updated: Wachtwoord is met succes gewijzigd |
|
57 | notice_account_password_updated: Wachtwoord is met succes gewijzigd | |
58 | notice_account_wrong_password: Incorrect wachtwoord |
|
58 | notice_account_wrong_password: Incorrect wachtwoord | |
59 | notice_account_register_done: Account is met succes aangemaakt. |
|
59 | notice_account_register_done: Account is met succes aangemaakt. | |
60 | notice_account_unknown_email: Onbekende gebruiker. |
|
60 | notice_account_unknown_email: Onbekende gebruiker. | |
61 | notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen. |
|
61 | notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen. | |
62 | notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord. |
|
62 | notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord. | |
63 | notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen. |
|
63 | notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen. | |
64 | notice_successful_create: Maken succesvol. |
|
64 | notice_successful_create: Maken succesvol. | |
65 | notice_successful_update: Wijzigen succesvol. |
|
65 | notice_successful_update: Wijzigen succesvol. | |
66 | notice_successful_delete: Verwijderen succesvol. |
|
66 | notice_successful_delete: Verwijderen succesvol. | |
67 | notice_successful_connection: Verbinding succesvol. |
|
67 | notice_successful_connection: Verbinding succesvol. | |
68 | notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd. |
|
68 | notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd. | |
69 | notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker. |
|
69 | notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker. | |
70 | notice_scm_error: Deze ingang of revisie bestaat niet in de repository. |
|
70 | notice_scm_error: Deze ingang of revisie bestaat niet in de repository. | |
71 | notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen. |
|
71 | notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen. | |
72 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
73 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
75 |
|
75 | |||
76 | mail_subject_lost_password: Uw redMine wachtwoord |
|
76 | mail_subject_lost_password: Uw redMine wachtwoord | |
77 | mail_subject_register: redMine account activatie |
|
77 | mail_subject_register: redMine account activatie | |
78 |
|
78 | |||
79 | gui_validation_error: 1 fout |
|
79 | gui_validation_error: 1 fout | |
80 | gui_validation_error_plural: %d fouten |
|
80 | gui_validation_error_plural: %d fouten | |
81 |
|
81 | |||
82 | field_name: Naam |
|
82 | field_name: Naam | |
83 | field_description: Beschrijving |
|
83 | field_description: Beschrijving | |
84 | field_summary: Samenvatting |
|
84 | field_summary: Samenvatting | |
85 | field_is_required: Verplicht |
|
85 | field_is_required: Verplicht | |
86 | field_firstname: Voornaam |
|
86 | field_firstname: Voornaam | |
87 | field_lastname: Achternaam |
|
87 | field_lastname: Achternaam | |
88 | field_mail: Email |
|
88 | field_mail: Email | |
89 | field_filename: Bestand |
|
89 | field_filename: Bestand | |
90 | field_filesize: Grootte |
|
90 | field_filesize: Grootte | |
91 | field_downloads: Downloads |
|
91 | field_downloads: Downloads | |
92 | field_author: Auteur |
|
92 | field_author: Auteur | |
93 | field_created_on: Aangemaakt |
|
93 | field_created_on: Aangemaakt | |
94 | field_updated_on: Gewijzigd |
|
94 | field_updated_on: Gewijzigd | |
95 | field_field_format: Formaat |
|
95 | field_field_format: Formaat | |
96 | field_is_for_all: Voor alle projecten |
|
96 | field_is_for_all: Voor alle projecten | |
97 | field_possible_values: Mogelijke waarden |
|
97 | field_possible_values: Mogelijke waarden | |
98 | field_regexp: Reguliere expressie |
|
98 | field_regexp: Reguliere expressie | |
99 | field_min_length: Minimale lengte |
|
99 | field_min_length: Minimale lengte | |
100 | field_max_length: Maximale lengte |
|
100 | field_max_length: Maximale lengte | |
101 | field_value: Waarde |
|
101 | field_value: Waarde | |
102 | field_category: Categorie |
|
102 | field_category: Categorie | |
103 | field_title: Titel |
|
103 | field_title: Titel | |
104 | field_project: Project |
|
104 | field_project: Project | |
105 | field_issue: Issue |
|
105 | field_issue: Issue | |
106 | field_status: Status |
|
106 | field_status: Status | |
107 | field_notes: Notities |
|
107 | field_notes: Notities | |
108 | field_is_closed: Issue gesloten |
|
108 | field_is_closed: Issue gesloten | |
109 | field_is_default: Default status |
|
109 | field_is_default: Default status | |
110 | field_html_color: Kleur |
|
110 | field_html_color: Kleur | |
111 | field_tracker: Tracker |
|
111 | field_tracker: Tracker | |
112 | field_subject: Onderwerp |
|
112 | field_subject: Onderwerp | |
113 | field_due_date: Verwachte datum gereed |
|
113 | field_due_date: Verwachte datum gereed | |
114 | field_assigned_to: Toegewezen aan |
|
114 | field_assigned_to: Toegewezen aan | |
115 | field_priority: Prioriteit |
|
115 | field_priority: Prioriteit | |
116 | field_fixed_version: Opgeloste versie |
|
116 | field_fixed_version: Opgeloste versie | |
117 | field_user: Gebruiker |
|
117 | field_user: Gebruiker | |
118 | field_role: Rol |
|
118 | field_role: Rol | |
119 | field_homepage: Homepage |
|
119 | field_homepage: Homepage | |
120 | field_is_public: Publiek |
|
120 | field_is_public: Publiek | |
121 | field_parent: Subproject van |
|
121 | field_parent: Subproject van | |
122 | field_is_in_chlog: Issues weergegeven in wijzigingslog |
|
122 | field_is_in_chlog: Issues weergegeven in wijzigingslog | |
123 | field_is_in_roadmap: Issues weergegeven in roadmap |
|
123 | field_is_in_roadmap: Issues weergegeven in roadmap | |
124 | field_login: Inloggen |
|
124 | field_login: Inloggen | |
125 | field_mail_notification: Mail mededelingen |
|
125 | field_mail_notification: Mail mededelingen | |
126 | field_admin: Administrateur |
|
126 | field_admin: Administrateur | |
127 | field_last_login_on: Laatste bezoek |
|
127 | field_last_login_on: Laatste bezoek | |
128 | field_language: Taal |
|
128 | field_language: Taal | |
129 | field_effective_date: Datum |
|
129 | field_effective_date: Datum | |
130 | field_password: Wachtwoord |
|
130 | field_password: Wachtwoord | |
131 | field_new_password: Nieuw wachtwoord |
|
131 | field_new_password: Nieuw wachtwoord | |
132 | field_password_confirmation: Bevestigen |
|
132 | field_password_confirmation: Bevestigen | |
133 | field_version: Versie |
|
133 | field_version: Versie | |
134 | field_type: Type |
|
134 | field_type: Type | |
135 | field_host: Host |
|
135 | field_host: Host | |
136 | field_port: Port |
|
136 | field_port: Port | |
137 | field_account: Account |
|
137 | field_account: Account | |
138 | field_base_dn: Base DN |
|
138 | field_base_dn: Base DN | |
139 | field_attr_login: Login attribuut |
|
139 | field_attr_login: Login attribuut | |
140 | field_attr_firstname: Voornaam attribuut |
|
140 | field_attr_firstname: Voornaam attribuut | |
141 | field_attr_lastname: Achternaam attribuut |
|
141 | field_attr_lastname: Achternaam attribuut | |
142 | field_attr_mail: Email attribuut |
|
142 | field_attr_mail: Email attribuut | |
143 | field_onthefly: On-the-fly aanmaken van een gebruiker |
|
143 | field_onthefly: On-the-fly aanmaken van een gebruiker | |
144 | field_start_date: Start |
|
144 | field_start_date: Start | |
145 | field_done_ratio: %% Gereed |
|
145 | field_done_ratio: %% Gereed | |
146 | field_auth_source: Authenticatiemethode |
|
146 | field_auth_source: Authenticatiemethode | |
147 | field_hide_mail: Verberg mijn emailadres |
|
147 | field_hide_mail: Verberg mijn emailadres | |
148 | field_comments: Commentaar |
|
148 | field_comments: Commentaar | |
149 | field_url: URL |
|
149 | field_url: URL | |
150 | field_start_page: Startpagina |
|
150 | field_start_page: Startpagina | |
151 | field_subproject: Subproject |
|
151 | field_subproject: Subproject | |
152 | field_hours: Uren |
|
152 | field_hours: Uren | |
153 | field_activity: Activiteit |
|
153 | field_activity: Activiteit | |
154 | field_spent_on: Datum |
|
154 | field_spent_on: Datum | |
155 | field_identifier: Identificatiecode |
|
155 | field_identifier: Identificatiecode | |
156 | field_is_filter: Gebruikt als een filter |
|
156 | field_is_filter: Gebruikt als een filter | |
157 | field_issue_to_id: Gerelateerd issue |
|
157 | field_issue_to_id: Gerelateerd issue | |
158 | field_delay: Vertraging |
|
158 | field_delay: Vertraging | |
159 | field_assignable: Issues can be assigned to this role |
|
159 | field_assignable: Issues can be assigned to this role | |
160 | field_redirect_existing_links: Redirect existing links |
|
160 | field_redirect_existing_links: Redirect existing links | |
161 | field_estimated_hours: Estimated time |
|
161 | field_estimated_hours: Estimated time | |
162 |
|
162 | |||
163 | setting_app_title: Applicatie titel |
|
163 | setting_app_title: Applicatie titel | |
164 | setting_app_subtitle: Applicatie ondertitel |
|
164 | setting_app_subtitle: Applicatie ondertitel | |
165 | setting_welcome_text: Welkomsttekst |
|
165 | setting_welcome_text: Welkomsttekst | |
166 | setting_default_language: Default taal |
|
166 | setting_default_language: Default taal | |
167 | setting_login_required: Authent. nodig |
|
167 | setting_login_required: Authent. nodig | |
168 | setting_self_registration: Zelf-registratie toegestaan |
|
168 | setting_self_registration: Zelf-registratie toegestaan | |
169 | setting_attachment_max_size: Attachment max. grootte |
|
169 | setting_attachment_max_size: Attachment max. grootte | |
170 | setting_issues_export_limit: Limiet export issues |
|
170 | setting_issues_export_limit: Limiet export issues | |
171 | setting_mail_from: Afzender mail adres |
|
171 | setting_mail_from: Afzender mail adres | |
172 | setting_host_name: Host naam |
|
172 | setting_host_name: Host naam | |
173 | setting_text_formatting: Tekst formaat |
|
173 | setting_text_formatting: Tekst formaat | |
174 | setting_wiki_compression: Wiki geschiedenis comprimeren |
|
174 | setting_wiki_compression: Wiki geschiedenis comprimeren | |
175 | setting_feeds_limit: Feed inhoud limiet |
|
175 | setting_feeds_limit: Feed inhoud limiet | |
176 | setting_autofetch_changesets: Haal commits automatisch op |
|
176 | setting_autofetch_changesets: Haal commits automatisch op | |
177 | setting_sys_api_enabled: Gebruik WS voor repository beheer |
|
177 | setting_sys_api_enabled: Gebruik WS voor repository beheer | |
178 | setting_commit_ref_keywords: Referencing keywords |
|
178 | setting_commit_ref_keywords: Referencing keywords | |
179 | setting_commit_fix_keywords: Fixing keywords |
|
179 | setting_commit_fix_keywords: Fixing keywords | |
180 | setting_autologin: Autologin |
|
180 | setting_autologin: Autologin | |
181 | setting_date_format: Date format |
|
181 | setting_date_format: Date format | |
182 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
182 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
183 |
|
183 | |||
184 | label_user: Gebruiker |
|
184 | label_user: Gebruiker | |
185 | label_user_plural: Gebruikers |
|
185 | label_user_plural: Gebruikers | |
186 | label_user_new: Nieuwe gebruiker |
|
186 | label_user_new: Nieuwe gebruiker | |
187 | label_project: Project |
|
187 | label_project: Project | |
188 | label_project_new: Nieuw project |
|
188 | label_project_new: Nieuw project | |
189 | label_project_plural: Projecten |
|
189 | label_project_plural: Projecten | |
190 | label_project_all: Alle Projecten |
|
190 | label_project_all: Alle Projecten | |
191 | label_project_latest: Nieuwste projecten |
|
191 | label_project_latest: Nieuwste projecten | |
192 | label_issue: Issue |
|
192 | label_issue: Issue | |
193 | label_issue_new: Nieuw issue |
|
193 | label_issue_new: Nieuw issue | |
194 | label_issue_plural: Issues |
|
194 | label_issue_plural: Issues | |
195 | label_issue_view_all: Bekijk alle issues |
|
195 | label_issue_view_all: Bekijk alle issues | |
196 | label_document: Document |
|
196 | label_document: Document | |
197 | label_document_new: Nieuw document |
|
197 | label_document_new: Nieuw document | |
198 | label_document_plural: Documenten |
|
198 | label_document_plural: Documenten | |
199 | label_role: Rol |
|
199 | label_role: Rol | |
200 | label_role_plural: Rollen |
|
200 | label_role_plural: Rollen | |
201 | label_role_new: Nieuwe rol |
|
201 | label_role_new: Nieuwe rol | |
202 | label_role_and_permissions: Rollen en permissies |
|
202 | label_role_and_permissions: Rollen en permissies | |
203 | label_member: Lid |
|
203 | label_member: Lid | |
204 | label_member_new: Nieuw lid |
|
204 | label_member_new: Nieuw lid | |
205 | label_member_plural: Leden |
|
205 | label_member_plural: Leden | |
206 | label_tracker: Tracker |
|
206 | label_tracker: Tracker | |
207 | label_tracker_plural: Trackers |
|
207 | label_tracker_plural: Trackers | |
208 | label_tracker_new: Nieuwe tracker |
|
208 | label_tracker_new: Nieuwe tracker | |
209 | label_workflow: Workflow |
|
209 | label_workflow: Workflow | |
210 | label_issue_status: Issue status |
|
210 | label_issue_status: Issue status | |
211 | label_issue_status_plural: Issue statussen |
|
211 | label_issue_status_plural: Issue statussen | |
212 | label_issue_status_new: Nieuwe status |
|
212 | label_issue_status_new: Nieuwe status | |
213 | label_issue_category: Issue categorie |
|
213 | label_issue_category: Issue categorie | |
214 | label_issue_category_plural: Issue categorieën |
|
214 | label_issue_category_plural: Issue categorieën | |
215 | label_issue_category_new: Nieuwe categorie |
|
215 | label_issue_category_new: Nieuwe categorie | |
216 | label_custom_field: Custom veld |
|
216 | label_custom_field: Custom veld | |
217 | label_custom_field_plural: Custom velden |
|
217 | label_custom_field_plural: Custom velden | |
218 | label_custom_field_new: Nieuw custom veld |
|
218 | label_custom_field_new: Nieuw custom veld | |
219 | label_enumerations: Enumeraties |
|
219 | label_enumerations: Enumeraties | |
220 | label_enumeration_new: Nieuwe waarde |
|
220 | label_enumeration_new: Nieuwe waarde | |
221 | label_information: Informatie |
|
221 | label_information: Informatie | |
222 | label_information_plural: Informatie |
|
222 | label_information_plural: Informatie | |
223 | label_please_login: Gaarne inloggen |
|
223 | label_please_login: Gaarne inloggen | |
224 | label_register: Registreer |
|
224 | label_register: Registreer | |
225 | label_password_lost: Wachtwoord verloren |
|
225 | label_password_lost: Wachtwoord verloren | |
226 | label_home: Home |
|
226 | label_home: Home | |
227 | label_my_page: Mijn pagina |
|
227 | label_my_page: Mijn pagina | |
228 | label_my_account: Mijn account |
|
228 | label_my_account: Mijn account | |
229 | label_my_projects: Mijn projecten |
|
229 | label_my_projects: Mijn projecten | |
230 | label_administration: Administratie |
|
230 | label_administration: Administratie | |
231 | label_login: Inloggen |
|
231 | label_login: Inloggen | |
232 | label_logout: Uitloggen |
|
232 | label_logout: Uitloggen | |
233 | label_help: Help |
|
233 | label_help: Help | |
234 | label_reported_issues: Gemelde issues |
|
234 | label_reported_issues: Gemelde issues | |
235 | label_assigned_to_me_issues: Aan mij toegewezen issues |
|
235 | label_assigned_to_me_issues: Aan mij toegewezen issues | |
236 | label_last_login: Laatste bezoek |
|
236 | label_last_login: Laatste bezoek | |
237 | label_last_updates: Laatste wijziging |
|
237 | label_last_updates: Laatste wijziging | |
238 | label_last_updates_plural: %d laatste wijziging |
|
238 | label_last_updates_plural: %d laatste wijziging | |
239 | label_registered_on: Geregistreerd op |
|
239 | label_registered_on: Geregistreerd op | |
240 | label_activity: Activiteit |
|
240 | label_activity: Activiteit | |
241 | label_new: Nieuw |
|
241 | label_new: Nieuw | |
242 | label_logged_as: Ingelogd als |
|
242 | label_logged_as: Ingelogd als | |
243 | label_environment: Omgeving |
|
243 | label_environment: Omgeving | |
244 | label_authentication: Authenticatie |
|
244 | label_authentication: Authenticatie | |
245 | label_auth_source: Authenticatie modus |
|
245 | label_auth_source: Authenticatie modus | |
246 | label_auth_source_new: Nieuwe authenticatie modus |
|
246 | label_auth_source_new: Nieuwe authenticatie modus | |
247 | label_auth_source_plural: Authenticatie modi |
|
247 | label_auth_source_plural: Authenticatie modi | |
248 | label_subproject_plural: Subprojecten |
|
248 | label_subproject_plural: Subprojecten | |
249 | label_min_max_length: Min - Max lengte |
|
249 | label_min_max_length: Min - Max lengte | |
250 | label_list: Lijst |
|
250 | label_list: Lijst | |
251 | label_date: Datum |
|
251 | label_date: Datum | |
252 | label_integer: Integer |
|
252 | label_integer: Integer | |
253 | label_boolean: Boolean |
|
253 | label_boolean: Boolean | |
254 | label_string: Tekst |
|
254 | label_string: Tekst | |
255 | label_text: Lange tekst |
|
255 | label_text: Lange tekst | |
256 | label_attribute: Attribuut |
|
256 | label_attribute: Attribuut | |
257 | label_attribute_plural: Attributen |
|
257 | label_attribute_plural: Attributen | |
258 | label_download: %d Download |
|
258 | label_download: %d Download | |
259 | label_download_plural: %d Downloads |
|
259 | label_download_plural: %d Downloads | |
260 | label_no_data: Geen gegevens om te tonen |
|
260 | label_no_data: Geen gegevens om te tonen | |
261 | label_change_status: Wijzig status |
|
261 | label_change_status: Wijzig status | |
262 | label_history: Geschiedenis |
|
262 | label_history: Geschiedenis | |
263 | label_attachment: Bestand |
|
263 | label_attachment: Bestand | |
264 | label_attachment_new: Nieuw bestand |
|
264 | label_attachment_new: Nieuw bestand | |
265 | label_attachment_delete: Verwijder bestand |
|
265 | label_attachment_delete: Verwijder bestand | |
266 | label_attachment_plural: Bestanden |
|
266 | label_attachment_plural: Bestanden | |
267 | label_report: Rapport |
|
267 | label_report: Rapport | |
268 | label_report_plural: Rapporten |
|
268 | label_report_plural: Rapporten | |
269 | label_news: Nieuws |
|
269 | label_news: Nieuws | |
270 | label_news_new: Voeg nieuws toe |
|
270 | label_news_new: Voeg nieuws toe | |
271 | label_news_plural: Nieuws |
|
271 | label_news_plural: Nieuws | |
272 | label_news_latest: Laatste nieuws |
|
272 | label_news_latest: Laatste nieuws | |
273 | label_news_view_all: Bekijk al het nieuws |
|
273 | label_news_view_all: Bekijk al het nieuws | |
274 | label_change_log: Wijzigingslog |
|
274 | label_change_log: Wijzigingslog | |
275 | label_settings: Instellingen |
|
275 | label_settings: Instellingen | |
276 | label_overview: Overzicht |
|
276 | label_overview: Overzicht | |
277 | label_version: Versie |
|
277 | label_version: Versie | |
278 | label_version_new: Nieuwe versie |
|
278 | label_version_new: Nieuwe versie | |
279 | label_version_plural: Versies |
|
279 | label_version_plural: Versies | |
280 | label_confirmation: Bevestiging |
|
280 | label_confirmation: Bevestiging | |
281 | label_export_to: Exporteer naar |
|
281 | label_export_to: Exporteer naar | |
282 | label_read: Lees... |
|
282 | label_read: Lees... | |
283 | label_public_projects: Publieke projecten |
|
283 | label_public_projects: Publieke projecten | |
284 | label_open_issues: open |
|
284 | label_open_issues: open | |
285 | label_open_issues_plural: open |
|
285 | label_open_issues_plural: open | |
286 | label_closed_issues: gesloten |
|
286 | label_closed_issues: gesloten | |
287 | label_closed_issues_plural: gesloten |
|
287 | label_closed_issues_plural: gesloten | |
288 | label_total: Totaal |
|
288 | label_total: Totaal | |
289 | label_permissions: Permissies |
|
289 | label_permissions: Permissies | |
290 | label_current_status: Huidige status |
|
290 | label_current_status: Huidige status | |
291 | label_new_statuses_allowed: Nieuwe statuses toegestaan |
|
291 | label_new_statuses_allowed: Nieuwe statuses toegestaan | |
292 | label_all: alle |
|
292 | label_all: alle | |
293 | label_none: geen |
|
293 | label_none: geen | |
294 | label_next: Volgende |
|
294 | label_next: Volgende | |
295 | label_previous: Vorige |
|
295 | label_previous: Vorige | |
296 | label_used_by: Gebruikt door |
|
296 | label_used_by: Gebruikt door | |
297 | label_details: Details |
|
297 | label_details: Details | |
298 | label_add_note: Voeg een notitie toe |
|
298 | label_add_note: Voeg een notitie toe | |
299 | label_per_page: Per pagina |
|
299 | label_per_page: Per pagina | |
300 | label_calendar: Kalender |
|
300 | label_calendar: Kalender | |
301 | label_months_from: maanden vanaf |
|
301 | label_months_from: maanden vanaf | |
302 | label_gantt: Gantt |
|
302 | label_gantt: Gantt | |
303 | label_internal: Intern |
|
303 | label_internal: Intern | |
304 | label_last_changes: laatste %d wijzigingen |
|
304 | label_last_changes: laatste %d wijzigingen | |
305 | label_change_view_all: Bekijk alle wijzigingen |
|
305 | label_change_view_all: Bekijk alle wijzigingen | |
306 | label_personalize_page: Personaliseer deze pagina |
|
306 | label_personalize_page: Personaliseer deze pagina | |
307 | label_comment: Commentaar |
|
307 | label_comment: Commentaar | |
308 | label_comment_plural: Commentaar |
|
308 | label_comment_plural: Commentaar | |
309 | label_comment_add: Voeg commentaar toe |
|
309 | label_comment_add: Voeg commentaar toe | |
310 | label_comment_added: Commentaar toegevoegd |
|
310 | label_comment_added: Commentaar toegevoegd | |
311 | label_comment_delete: Verwijder commentaar |
|
311 | label_comment_delete: Verwijder commentaar | |
312 | label_query: Eigen zoekvraag |
|
312 | label_query: Eigen zoekvraag | |
313 | label_query_plural: Eigen zoekvragen |
|
313 | label_query_plural: Eigen zoekvragen | |
314 | label_query_new: Nieuwe zoekvraag |
|
314 | label_query_new: Nieuwe zoekvraag | |
315 | label_filter_add: Voeg filter toe |
|
315 | label_filter_add: Voeg filter toe | |
316 | label_filter_plural: Filters |
|
316 | label_filter_plural: Filters | |
317 | label_equals: is gelijk |
|
317 | label_equals: is gelijk | |
318 | label_not_equals: is niet gelijk |
|
318 | label_not_equals: is niet gelijk | |
319 | label_in_less_than: in minder dan |
|
319 | label_in_less_than: in minder dan | |
320 | label_in_more_than: in meer dan |
|
320 | label_in_more_than: in meer dan | |
321 | label_in: in |
|
321 | label_in: in | |
322 | label_today: vandaag |
|
322 | label_today: vandaag | |
323 | label_this_week: this week |
|
323 | label_this_week: this week | |
324 | label_less_than_ago: minder dan dagen geleden |
|
324 | label_less_than_ago: minder dan dagen geleden | |
325 | label_more_than_ago: meer dan dagen geleden |
|
325 | label_more_than_ago: meer dan dagen geleden | |
326 | label_ago: dagen geleden |
|
326 | label_ago: dagen geleden | |
327 | label_contains: bevat |
|
327 | label_contains: bevat | |
328 | label_not_contains: bevat niet |
|
328 | label_not_contains: bevat niet | |
329 | label_day_plural: dagen |
|
329 | label_day_plural: dagen | |
330 | label_repository: Repository |
|
330 | label_repository: Repository | |
331 | label_browse: Blader |
|
331 | label_browse: Blader | |
332 | label_modification: %d wijziging |
|
332 | label_modification: %d wijziging | |
333 | label_modification_plural: %d wijzigingen |
|
333 | label_modification_plural: %d wijzigingen | |
334 | label_revision: Revisie |
|
334 | label_revision: Revisie | |
335 | label_revision_plural: Revisies |
|
335 | label_revision_plural: Revisies | |
336 | label_added: toegevoegd |
|
336 | label_added: toegevoegd | |
337 | label_modified: gewijzigd |
|
337 | label_modified: gewijzigd | |
338 | label_deleted: verwijderd |
|
338 | label_deleted: verwijderd | |
339 | label_latest_revision: Meest recente revisie |
|
339 | label_latest_revision: Meest recente revisie | |
340 | label_latest_revision_plural: Meest recente revisies |
|
340 | label_latest_revision_plural: Meest recente revisies | |
341 | label_view_revisions: Bekijk revisies |
|
341 | label_view_revisions: Bekijk revisies | |
342 | label_max_size: Maximum grootte |
|
342 | label_max_size: Maximum grootte | |
343 | label_on: 'van' |
|
343 | label_on: 'van' | |
344 | label_sort_highest: Verplaats naar begin |
|
344 | label_sort_highest: Verplaats naar begin | |
345 | label_sort_higher: Verplaats naar boven |
|
345 | label_sort_higher: Verplaats naar boven | |
346 | label_sort_lower: Verplaats naar beneden |
|
346 | label_sort_lower: Verplaats naar beneden | |
347 | label_sort_lowest: Verplaats naar eind |
|
347 | label_sort_lowest: Verplaats naar eind | |
348 | label_roadmap: Roadmap |
|
348 | label_roadmap: Roadmap | |
349 | label_roadmap_due_in: Due in |
|
349 | label_roadmap_due_in: Due in | |
350 | label_roadmap_overdue: %s late |
|
350 | label_roadmap_overdue: %s late | |
351 | label_roadmap_no_issues: Geen issues voor deze versie |
|
351 | label_roadmap_no_issues: Geen issues voor deze versie | |
352 | label_search: Zoeken |
|
352 | label_search: Zoeken | |
353 | label_result: %d resultaat |
|
353 | label_result: %d resultaat | |
354 | label_result_plural: %d resultaten |
|
354 | label_result_plural: %d resultaten | |
355 | label_all_words: Alle woorden |
|
355 | label_all_words: Alle woorden | |
356 | label_wiki: Wiki |
|
356 | label_wiki: Wiki | |
357 | label_wiki_edit: Wiki edit |
|
357 | label_wiki_edit: Wiki edit | |
358 | label_wiki_edit_plural: Wiki edits |
|
358 | label_wiki_edit_plural: Wiki edits | |
359 | label_wiki_page: Wiki page |
|
359 | label_wiki_page: Wiki page | |
360 | label_wiki_page_plural: Wiki pages |
|
360 | label_wiki_page_plural: Wiki pages | |
361 | label_page_index: Index |
|
361 | label_page_index: Index | |
362 | label_current_version: Huidige versie |
|
362 | label_current_version: Huidige versie | |
363 | label_preview: Testweergave |
|
363 | label_preview: Testweergave | |
364 | label_feed_plural: Feeds |
|
364 | label_feed_plural: Feeds | |
365 | label_changes_details: Details van alle wijzigingen |
|
365 | label_changes_details: Details van alle wijzigingen | |
366 | label_issue_tracking: Issue tracking |
|
366 | label_issue_tracking: Issue tracking | |
367 | label_spent_time: Gespendeerde tijd |
|
367 | label_spent_time: Gespendeerde tijd | |
368 | label_f_hour: %.2f uur |
|
368 | label_f_hour: %.2f uur | |
369 | label_f_hour_plural: %.2f uren |
|
369 | label_f_hour_plural: %.2f uren | |
370 | label_time_tracking: Tijd tracking |
|
370 | label_time_tracking: Tijd tracking | |
371 | label_change_plural: Wijzigingen |
|
371 | label_change_plural: Wijzigingen | |
372 | label_statistics: Statistieken |
|
372 | label_statistics: Statistieken | |
373 | label_commits_per_month: Commits per maand |
|
373 | label_commits_per_month: Commits per maand | |
374 | label_commits_per_author: Commits per auteur |
|
374 | label_commits_per_author: Commits per auteur | |
375 | label_view_diff: Bekijk verschillen |
|
375 | label_view_diff: Bekijk verschillen | |
376 | label_diff_inline: inline |
|
376 | label_diff_inline: inline | |
377 | label_diff_side_by_side: naast elkaar |
|
377 | label_diff_side_by_side: naast elkaar | |
378 | label_options: Opties |
|
378 | label_options: Opties | |
379 | label_copy_workflow_from: Kopieer workflow van |
|
379 | label_copy_workflow_from: Kopieer workflow van | |
380 | label_permissions_report: Permissies rapport |
|
380 | label_permissions_report: Permissies rapport | |
381 | label_watched_issues: Gemonitorde issues |
|
381 | label_watched_issues: Gemonitorde issues | |
382 | label_related_issues: Gerelateerde issues |
|
382 | label_related_issues: Gerelateerde issues | |
383 | label_applied_status: Toegekende status |
|
383 | label_applied_status: Toegekende status | |
384 | label_loading: Laden... |
|
384 | label_loading: Laden... | |
385 | label_relation_new: Nieuwe relatie |
|
385 | label_relation_new: Nieuwe relatie | |
386 | label_relation_delete: Verwijder relatie |
|
386 | label_relation_delete: Verwijder relatie | |
387 | label_relates_to: gerelateerd aan |
|
387 | label_relates_to: gerelateerd aan | |
388 | label_duplicates: dupliceert |
|
388 | label_duplicates: dupliceert | |
389 | label_blocks: blokkeert |
|
389 | label_blocks: blokkeert | |
390 | label_blocked_by: geblokkeerd door |
|
390 | label_blocked_by: geblokkeerd door | |
391 | label_precedes: gaat vooraf aan |
|
391 | label_precedes: gaat vooraf aan | |
392 | label_follows: volgt op |
|
392 | label_follows: volgt op | |
393 | label_end_to_start: eind tot start |
|
393 | label_end_to_start: eind tot start | |
394 | label_end_to_end: eind tot eind |
|
394 | label_end_to_end: eind tot eind | |
395 | label_start_to_start: start tot start |
|
395 | label_start_to_start: start tot start | |
396 | label_start_to_end: start tot eind |
|
396 | label_start_to_end: start tot eind | |
397 | label_stay_logged_in: Blijf ingelogd |
|
397 | label_stay_logged_in: Blijf ingelogd | |
398 | label_disabled: uitgeschakeld |
|
398 | label_disabled: uitgeschakeld | |
399 | label_show_completed_versions: Toon afgeronde versies |
|
399 | label_show_completed_versions: Toon afgeronde versies | |
400 | label_me: ik |
|
400 | label_me: ik | |
401 | label_board: Forum |
|
401 | label_board: Forum | |
402 | label_board_new: Nieuw forum |
|
402 | label_board_new: Nieuw forum | |
403 | label_board_plural: Forums |
|
403 | label_board_plural: Forums | |
404 | label_topic_plural: Onderwerpen |
|
404 | label_topic_plural: Onderwerpen | |
405 | label_message_plural: Berichten |
|
405 | label_message_plural: Berichten | |
406 | label_message_last: Laatste bericht |
|
406 | label_message_last: Laatste bericht | |
407 | label_message_new: Nieuw bericht |
|
407 | label_message_new: Nieuw bericht | |
408 | label_reply_plural: Antwoorden |
|
408 | label_reply_plural: Antwoorden | |
409 | label_send_information: Send account information to the user |
|
409 | label_send_information: Send account information to the user | |
410 | label_year: Year |
|
410 | label_year: Year | |
411 | label_month: Month |
|
411 | label_month: Month | |
412 | label_week: Week |
|
412 | label_week: Week | |
413 | label_date_from: From |
|
413 | label_date_from: From | |
414 | label_date_to: To |
|
414 | label_date_to: To | |
415 | label_language_based: Language based |
|
415 | label_language_based: Language based | |
416 | label_sort_by: Sort by "%s" |
|
416 | label_sort_by: Sort by "%s" | |
417 | label_send_test_email: Send a test email |
|
417 | label_send_test_email: Send a test email | |
418 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
418 | label_feeds_access_key_created_on: RSS access key created %s ago | |
419 | label_module_plural: Modules |
|
419 | label_module_plural: Modules | |
420 | label_added_time_by: Added by %s %s ago |
|
420 | label_added_time_by: Added by %s %s ago | |
421 | label_updated_time: Updated %s ago |
|
421 | label_updated_time: Updated %s ago | |
422 | label_jump_to_a_project: Jump to a project... |
|
422 | label_jump_to_a_project: Jump to a project... | |
423 |
|
423 | |||
424 | button_login: Inloggen |
|
424 | button_login: Inloggen | |
425 | button_submit: Toevoegen |
|
425 | button_submit: Toevoegen | |
426 | button_save: Bewaren |
|
426 | button_save: Bewaren | |
427 | button_check_all: Selecteer alle |
|
427 | button_check_all: Selecteer alle | |
428 | button_uncheck_all: Deselecteer alle |
|
428 | button_uncheck_all: Deselecteer alle | |
429 | button_delete: Verwijder |
|
429 | button_delete: Verwijder | |
430 | button_create: Maak |
|
430 | button_create: Maak | |
431 | button_test: Test |
|
431 | button_test: Test | |
432 | button_edit: Bewerk |
|
432 | button_edit: Bewerk | |
433 | button_add: Voeg toe |
|
433 | button_add: Voeg toe | |
434 | button_change: Wijzig |
|
434 | button_change: Wijzig | |
435 | button_apply: Pas toe |
|
435 | button_apply: Pas toe | |
436 | button_clear: Leeg maken |
|
436 | button_clear: Leeg maken | |
437 | button_lock: Lock |
|
437 | button_lock: Lock | |
438 | button_unlock: Unlock |
|
438 | button_unlock: Unlock | |
439 | button_download: Download |
|
439 | button_download: Download | |
440 | button_list: Lijst |
|
440 | button_list: Lijst | |
441 | button_view: Bekijken |
|
441 | button_view: Bekijken | |
442 | button_move: Verplaatsen |
|
442 | button_move: Verplaatsen | |
443 | button_back: Terug |
|
443 | button_back: Terug | |
444 | button_cancel: Annuleer |
|
444 | button_cancel: Annuleer | |
445 | button_activate: Activeer |
|
445 | button_activate: Activeer | |
446 | button_sort: Sorteer |
|
446 | button_sort: Sorteer | |
447 | button_log_time: Log tijd |
|
447 | button_log_time: Log tijd | |
448 | button_rollback: Rollback naar deze versie |
|
448 | button_rollback: Rollback naar deze versie | |
449 | button_watch: Monitor |
|
449 | button_watch: Monitor | |
450 | button_unwatch: Niet meer monitoren |
|
450 | button_unwatch: Niet meer monitoren | |
451 | button_reply: Antwoord |
|
451 | button_reply: Antwoord | |
452 | button_archive: Archive |
|
452 | button_archive: Archive | |
453 | button_unarchive: Unarchive |
|
453 | button_unarchive: Unarchive | |
454 | button_reset: Reset |
|
454 | button_reset: Reset | |
455 | button_rename: Rename |
|
455 | button_rename: Rename | |
456 |
|
456 | |||
457 | status_active: Actief |
|
457 | status_active: Actief | |
458 | status_registered: geregistreerd |
|
458 | status_registered: geregistreerd | |
459 | status_locked: gelockt |
|
459 | status_locked: gelockt | |
460 |
|
460 | |||
461 | text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd. |
|
461 | text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd. | |
462 | text_regexp_info: bv. ^[A-Z0-9]+$ |
|
462 | text_regexp_info: bv. ^[A-Z0-9]+$ | |
463 | text_min_max_length_info: 0 betekent geen restrictie |
|
463 | text_min_max_length_info: 0 betekent geen restrictie | |
464 | text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ? |
|
464 | text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ? | |
465 | text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen |
|
465 | text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen | |
466 | text_are_you_sure: Weet U het zeker ? |
|
466 | text_are_you_sure: Weet U het zeker ? | |
467 | text_journal_changed: gewijzigd van %s naar %s |
|
467 | text_journal_changed: gewijzigd van %s naar %s | |
468 | text_journal_set_to: ingesteld op %s |
|
468 | text_journal_set_to: ingesteld op %s | |
469 | text_journal_deleted: verwijderd |
|
469 | text_journal_deleted: verwijderd | |
470 | text_tip_task_begin_day: taak die op deze dag begint |
|
470 | text_tip_task_begin_day: taak die op deze dag begint | |
471 | text_tip_task_end_day: taak die op deze dag eindigt |
|
471 | text_tip_task_end_day: taak die op deze dag eindigt | |
472 | text_tip_task_begin_end_day: taak die op deze dag begint en eindigt |
|
472 | text_tip_task_begin_end_day: taak die op deze dag begint en eindigt | |
473 | text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.' |
|
473 | text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.' | |
474 | text_caracters_maximum: %d van maximum aantal tekens. |
|
474 | text_caracters_maximum: %d van maximum aantal tekens. | |
475 | text_length_between: Lengte tussen %d en %d tekens. |
|
475 | text_length_between: Lengte tussen %d en %d tekens. | |
476 | text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker |
|
476 | text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker | |
477 | text_unallowed_characters: Niet toegestane tekens |
|
477 | text_unallowed_characters: Niet toegestane tekens | |
478 | text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden). |
|
478 | text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden). | |
479 | text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten |
|
479 | text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten | |
480 | text_issue_added: Issue %s is gerapporteerd. |
|
480 | text_issue_added: Issue %s is gerapporteerd. | |
481 | text_issue_updated: Issue %s is gewijzigd. |
|
481 | text_issue_updated: Issue %s is gewijzigd. | |
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
484 | text_issue_category_destroy_assignments: Remove category assignments |
|
484 | text_issue_category_destroy_assignments: Remove category assignments | |
485 | text_issue_category_reassign_to: Reassing issues to this category |
|
485 | text_issue_category_reassign_to: Reassing issues to this category | |
486 |
|
486 | |||
487 | default_role_manager: Manager |
|
487 | default_role_manager: Manager | |
488 | default_role_developper: Ontwikkelaar |
|
488 | default_role_developper: Ontwikkelaar | |
489 | default_role_reporter: Rapporteur |
|
489 | default_role_reporter: Rapporteur | |
490 | default_tracker_bug: Bug |
|
490 | default_tracker_bug: Bug | |
491 | default_tracker_feature: Feature |
|
491 | default_tracker_feature: Feature | |
492 | default_tracker_support: Support |
|
492 | default_tracker_support: Support | |
493 | default_issue_status_new: Nieuw |
|
493 | default_issue_status_new: Nieuw | |
494 | default_issue_status_assigned: Toegewezen |
|
494 | default_issue_status_assigned: Toegewezen | |
495 | default_issue_status_resolved: Opgelost |
|
495 | default_issue_status_resolved: Opgelost | |
496 | default_issue_status_feedback: Terugkoppeling |
|
496 | default_issue_status_feedback: Terugkoppeling | |
497 | default_issue_status_closed: Gesloten |
|
497 | default_issue_status_closed: Gesloten | |
498 | default_issue_status_rejected: Afgewezen |
|
498 | default_issue_status_rejected: Afgewezen | |
499 | default_doc_category_user: Gebruikersdocumentatie |
|
499 | default_doc_category_user: Gebruikersdocumentatie | |
500 | default_doc_category_tech: Technische documentatie |
|
500 | default_doc_category_tech: Technische documentatie | |
501 | default_priority_low: Laag |
|
501 | default_priority_low: Laag | |
502 | default_priority_normal: Normaal |
|
502 | default_priority_normal: Normaal | |
503 | default_priority_high: Hoog |
|
503 | default_priority_high: Hoog | |
504 | default_priority_urgent: Spoed |
|
504 | default_priority_urgent: Spoed | |
505 | default_priority_immediate: Onmiddellijk |
|
505 | default_priority_immediate: Onmiddellijk | |
506 | default_activity_design: Design |
|
506 | default_activity_design: Design | |
507 | default_activity_development: Development |
|
507 | default_activity_development: Development | |
508 |
|
508 | |||
509 | enumeration_issue_priorities: Issue prioriteiten |
|
509 | enumeration_issue_priorities: Issue prioriteiten | |
510 | enumeration_doc_categories: Document categorieën |
|
510 | enumeration_doc_categories: Document categorieën | |
511 | enumeration_activities: Activiteiten (tijd tracking) |
|
511 | enumeration_activities: Activiteiten (tijd tracking) | |
512 | text_comma_separated: Multiple values allowed (comma separated). |
|
512 | text_comma_separated: Multiple values allowed (comma separated). | |
|
513 | label_file_plural: Files | |||
|
514 | label_changeset_plural: Changesets |
@@ -1,511 +1,513 | |||||
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 |
|
54 | |||
55 | notice_account_updated: Konto prawidłowo zaktualizowane. |
|
55 | notice_account_updated: Konto prawidłowo zaktualizowane. | |
56 | notice_account_invalid_creditentials: Zły użytkownik lub hasło |
|
56 | notice_account_invalid_creditentials: Zły użytkownik lub hasło | |
57 | notice_account_password_updated: Hasło prawidłowo zmienione. |
|
57 | notice_account_password_updated: Hasło prawidłowo zmienione. | |
58 | notice_account_wrong_password: Złe hasło |
|
58 | notice_account_wrong_password: Złe hasło | |
59 | notice_account_register_done: Konto prawidłowo stworzone. |
|
59 | notice_account_register_done: Konto prawidłowo stworzone. | |
60 | notice_account_unknown_email: Nieznany użytkownik. |
|
60 | notice_account_unknown_email: Nieznany użytkownik. | |
61 | notice_can_t_change_password: To konto ma zewnętrzne źródło identyfikacji. Nie możesz zmienić hasła. |
|
61 | notice_can_t_change_password: To konto ma zewnętrzne źródło identyfikacji. Nie możesz zmienić hasła. | |
62 | notice_account_lost_email_sent: Email z instrukcjami zmiany hasła został wysłany do Ciebie. |
|
62 | notice_account_lost_email_sent: Email z instrukcjami zmiany hasła został wysłany do Ciebie. | |
63 | notice_account_activated: Twoje konto zostało aktywowane. Możesz się zalogować. |
|
63 | notice_account_activated: Twoje konto zostało aktywowane. Możesz się zalogować. | |
64 | notice_successful_create: Udane stworzenie. |
|
64 | notice_successful_create: Udane stworzenie. | |
65 | notice_successful_update: Udane poprawienie. |
|
65 | notice_successful_update: Udane poprawienie. | |
66 | notice_successful_delete: Udane usunięcie. |
|
66 | notice_successful_delete: Udane usunięcie. | |
67 | notice_successful_connection: Udane nawiązanie połączenia. |
|
67 | notice_successful_connection: Udane nawiązanie połączenia. | |
68 | notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta. |
|
68 | notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta. | |
69 | notice_locking_conflict: Dane poprawione przez innego użytkownika. |
|
69 | notice_locking_conflict: Dane poprawione przez innego użytkownika. | |
70 | notice_scm_error: Wejście i/lub zmiana nie istnieje w repozytorium. |
|
70 | notice_scm_error: Wejście i/lub zmiana nie istnieje w repozytorium. | |
71 | notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę. |
|
71 | notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Twoje hasło do redMine |
|
73 | mail_subject_lost_password: Twoje hasło do redMine | |
74 | mail_subject_register: Aktywacja konta w redMine |
|
74 | mail_subject_register: Aktywacja konta w redMine | |
75 |
|
75 | |||
76 | gui_validation_error: 1 błąd |
|
76 | gui_validation_error: 1 błąd | |
77 | gui_validation_error_plural: %d błędów |
|
77 | gui_validation_error_plural: %d błędów | |
78 |
|
78 | |||
79 | field_name: Nazwa |
|
79 | field_name: Nazwa | |
80 | field_description: Opis |
|
80 | field_description: Opis | |
81 | field_summary: Podsumowanie |
|
81 | field_summary: Podsumowanie | |
82 | field_is_required: Wymagane |
|
82 | field_is_required: Wymagane | |
83 | field_firstname: Imię |
|
83 | field_firstname: Imię | |
84 | field_lastname: Nazwisko |
|
84 | field_lastname: Nazwisko | |
85 | field_mail: Email |
|
85 | field_mail: Email | |
86 | field_filename: Plik |
|
86 | field_filename: Plik | |
87 | field_filesize: Rozmiar |
|
87 | field_filesize: Rozmiar | |
88 | field_downloads: Pobrań |
|
88 | field_downloads: Pobrań | |
89 | field_author: Autor |
|
89 | field_author: Autor | |
90 | field_created_on: Stworzone |
|
90 | field_created_on: Stworzone | |
91 | field_updated_on: Zmienione |
|
91 | field_updated_on: Zmienione | |
92 | field_field_format: Format |
|
92 | field_field_format: Format | |
93 | field_is_for_all: Dla wszystkich projektów |
|
93 | field_is_for_all: Dla wszystkich projektów | |
94 | field_possible_values: Możliwe wartości |
|
94 | field_possible_values: Możliwe wartości | |
95 | field_regexp: Wyrażenie regularne |
|
95 | field_regexp: Wyrażenie regularne | |
96 | field_min_length: Minimalna długość |
|
96 | field_min_length: Minimalna długość | |
97 | field_max_length: Maksymalna długość |
|
97 | field_max_length: Maksymalna długość | |
98 | field_value: Wartość |
|
98 | field_value: Wartość | |
99 | field_category: Kategoria |
|
99 | field_category: Kategoria | |
100 | field_title: Tytuł |
|
100 | field_title: Tytuł | |
101 | field_project: Projekt |
|
101 | field_project: Projekt | |
102 | field_issue: Zgłoszenie |
|
102 | field_issue: Zgłoszenie | |
103 | field_status: Status |
|
103 | field_status: Status | |
104 | field_notes: Notatki |
|
104 | field_notes: Notatki | |
105 | field_is_closed: Zgłoszenie zamknięte |
|
105 | field_is_closed: Zgłoszenie zamknięte | |
106 | field_is_default: Domyślny status |
|
106 | field_is_default: Domyślny status | |
107 | field_html_color: Kolor |
|
107 | field_html_color: Kolor | |
108 | field_tracker: Tracker |
|
108 | field_tracker: Tracker | |
109 | field_subject: Temat |
|
109 | field_subject: Temat | |
110 | field_due_date: Data oddania |
|
110 | field_due_date: Data oddania | |
111 | field_assigned_to: Przydzielony do |
|
111 | field_assigned_to: Przydzielony do | |
112 | field_priority: Priorytet |
|
112 | field_priority: Priorytet | |
113 | field_fixed_version: Stała wersja |
|
113 | field_fixed_version: Stała wersja | |
114 | field_user: Użytkownik |
|
114 | field_user: Użytkownik | |
115 | field_role: Rola |
|
115 | field_role: Rola | |
116 | field_homepage: Strona www |
|
116 | field_homepage: Strona www | |
117 | field_is_public: Publiczny |
|
117 | field_is_public: Publiczny | |
118 | field_parent: Subprojekt |
|
118 | field_parent: Subprojekt | |
119 | field_is_in_chlog: Zgłoszenia pokazane w zapisie zmian |
|
119 | field_is_in_chlog: Zgłoszenia pokazane w zapisie zmian | |
120 | field_is_in_roadmap: Zgłoszenia pokazane na mapie |
|
120 | field_is_in_roadmap: Zgłoszenia pokazane na mapie | |
121 | field_login: Login |
|
121 | field_login: Login | |
122 | field_mail_notification: Powiadomienia Email |
|
122 | field_mail_notification: Powiadomienia Email | |
123 | field_admin: Administrator |
|
123 | field_admin: Administrator | |
124 | field_last_login_on: Ostatnie połączenie |
|
124 | field_last_login_on: Ostatnie połączenie | |
125 | field_language: Język |
|
125 | field_language: Język | |
126 | field_effective_date: Data |
|
126 | field_effective_date: Data | |
127 | field_password: Hasło |
|
127 | field_password: Hasło | |
128 | field_new_password: Nowe hasło |
|
128 | field_new_password: Nowe hasło | |
129 | field_password_confirmation: Potwierdzenie |
|
129 | field_password_confirmation: Potwierdzenie | |
130 | field_version: Wersja |
|
130 | field_version: Wersja | |
131 | field_type: Typ |
|
131 | field_type: Typ | |
132 | field_host: Host |
|
132 | field_host: Host | |
133 | field_port: Port |
|
133 | field_port: Port | |
134 | field_account: Konto |
|
134 | field_account: Konto | |
135 | field_base_dn: Base DN |
|
135 | field_base_dn: Base DN | |
136 | field_attr_login: Login atrybut |
|
136 | field_attr_login: Login atrybut | |
137 | field_attr_firstname: Imię atrybut |
|
137 | field_attr_firstname: Imię atrybut | |
138 | field_attr_lastname: Nazwisko atrybut |
|
138 | field_attr_lastname: Nazwisko atrybut | |
139 | field_attr_mail: Email atrybut |
|
139 | field_attr_mail: Email atrybut | |
140 | field_onthefly: Tworzenie użytkownika w locie |
|
140 | field_onthefly: Tworzenie użytkownika w locie | |
141 | field_start_date: Start |
|
141 | field_start_date: Start | |
142 | field_done_ratio: %% Wykonane |
|
142 | field_done_ratio: %% Wykonane | |
143 | field_auth_source: Tryb identyfikacji |
|
143 | field_auth_source: Tryb identyfikacji | |
144 | field_hide_mail: Ukryj mój adres email |
|
144 | field_hide_mail: Ukryj mój adres email | |
145 | field_comments: Komentarz |
|
145 | field_comments: Komentarz | |
146 | field_url: URL |
|
146 | field_url: URL | |
147 | field_start_page: Strona startowa |
|
147 | field_start_page: Strona startowa | |
148 | field_subproject: Podprojekt |
|
148 | field_subproject: Podprojekt | |
149 | field_hours: Godzin |
|
149 | field_hours: Godzin | |
150 | field_activity: Aktywność |
|
150 | field_activity: Aktywność | |
151 | field_spent_on: Data |
|
151 | field_spent_on: Data | |
152 | field_identifier: Identifikator |
|
152 | field_identifier: Identifikator | |
153 | field_is_filter: Używane jako filter |
|
153 | field_is_filter: Używane jako filter | |
154 | field_issue_to_id: Powiązane zgłoszenie |
|
154 | field_issue_to_id: Powiązane zgłoszenie | |
155 | field_delay: Opóźnienie |
|
155 | field_delay: Opóźnienie | |
156 |
|
156 | |||
157 | setting_app_title: Tytuł aplikacji |
|
157 | setting_app_title: Tytuł aplikacji | |
158 | setting_app_subtitle: Podtytuł aplikacji |
|
158 | setting_app_subtitle: Podtytuł aplikacji | |
159 | setting_welcome_text: Tekst powitalny |
|
159 | setting_welcome_text: Tekst powitalny | |
160 | setting_default_language: Domyślny język |
|
160 | setting_default_language: Domyślny język | |
161 | setting_login_required: Identyfikacja wymagana |
|
161 | setting_login_required: Identyfikacja wymagana | |
162 | setting_self_registration: Własna rejestracja umożliwiona |
|
162 | setting_self_registration: Własna rejestracja umożliwiona | |
163 | setting_attachment_max_size: Maks. rozm. załącznika |
|
163 | setting_attachment_max_size: Maks. rozm. załącznika | |
164 | setting_issues_export_limit: Limit eksportu zgłoszeń |
|
164 | setting_issues_export_limit: Limit eksportu zgłoszeń | |
165 | setting_mail_from: Adres email wysyłki |
|
165 | setting_mail_from: Adres email wysyłki | |
166 | setting_host_name: Nazwa hosta |
|
166 | setting_host_name: Nazwa hosta | |
167 | setting_text_formatting: Formatowanie tekstu |
|
167 | setting_text_formatting: Formatowanie tekstu | |
168 | setting_wiki_compression: Kompresja historii Wiki |
|
168 | setting_wiki_compression: Kompresja historii Wiki | |
169 | setting_feeds_limit: Limit danych RSS |
|
169 | setting_feeds_limit: Limit danych RSS | |
170 | setting_autofetch_changesets: Auto-odświeżanie CVS |
|
170 | setting_autofetch_changesets: Auto-odświeżanie CVS | |
171 | setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium |
|
171 | setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium | |
172 | setting_commit_ref_keywords: Terminy odnoszące (CVS) |
|
172 | setting_commit_ref_keywords: Terminy odnoszące (CVS) | |
173 | setting_commit_fix_keywords: Terminy ustalające (CVS) |
|
173 | setting_commit_fix_keywords: Terminy ustalające (CVS) | |
174 | setting_autologin: Auto logowanie |
|
174 | setting_autologin: Auto logowanie | |
175 | setting_date_format: Format daty |
|
175 | setting_date_format: Format daty | |
176 |
|
176 | |||
177 | label_user: Użytkownik |
|
177 | label_user: Użytkownik | |
178 | label_user_plural: Użytkownicy |
|
178 | label_user_plural: Użytkownicy | |
179 | label_user_new: Nowy użytkownik |
|
179 | label_user_new: Nowy użytkownik | |
180 | label_project: Projekt |
|
180 | label_project: Projekt | |
181 | label_project_new: Nowy projekt |
|
181 | label_project_new: Nowy projekt | |
182 | label_project_plural: Projekty |
|
182 | label_project_plural: Projekty | |
183 | label_project_all: Wszystkie projekty |
|
183 | label_project_all: Wszystkie projekty | |
184 | label_project_latest: Ostatnie projekty |
|
184 | label_project_latest: Ostatnie projekty | |
185 | label_issue: Zgłoszenie |
|
185 | label_issue: Zgłoszenie | |
186 | label_issue_new: Nowe zgłoszenie |
|
186 | label_issue_new: Nowe zgłoszenie | |
187 | label_issue_plural: Zgłoszenia |
|
187 | label_issue_plural: Zgłoszenia | |
188 | label_issue_view_all: Zobacz wszystkie zgłoszenia |
|
188 | label_issue_view_all: Zobacz wszystkie zgłoszenia | |
189 | label_document: Dokument |
|
189 | label_document: Dokument | |
190 | label_document_new: Nowy dokument |
|
190 | label_document_new: Nowy dokument | |
191 | label_document_plural: Dokumenty |
|
191 | label_document_plural: Dokumenty | |
192 | label_role: Rola |
|
192 | label_role: Rola | |
193 | label_role_plural: Role |
|
193 | label_role_plural: Role | |
194 | label_role_new: Nowa rola |
|
194 | label_role_new: Nowa rola | |
195 | label_role_and_permissions: Role i Uprawnienia |
|
195 | label_role_and_permissions: Role i Uprawnienia | |
196 | label_member: Uczestnik |
|
196 | label_member: Uczestnik | |
197 | label_member_new: Nowy uczestnik |
|
197 | label_member_new: Nowy uczestnik | |
198 | label_member_plural: Uczestnicy |
|
198 | label_member_plural: Uczestnicy | |
199 | label_tracker: Ślad |
|
199 | label_tracker: Ślad | |
200 | label_tracker_plural: Ślady |
|
200 | label_tracker_plural: Ślady | |
201 | label_tracker_new: Nowy ślad |
|
201 | label_tracker_new: Nowy ślad | |
202 | label_workflow: Przepływ |
|
202 | label_workflow: Przepływ | |
203 | label_issue_status: Status zgłoszenia |
|
203 | label_issue_status: Status zgłoszenia | |
204 | label_issue_status_plural: Statusy zgłoszeń |
|
204 | label_issue_status_plural: Statusy zgłoszeń | |
205 | label_issue_status_new: Nowy status |
|
205 | label_issue_status_new: Nowy status | |
206 | label_issue_category: Kategoria zgłoszenia |
|
206 | label_issue_category: Kategoria zgłoszenia | |
207 | label_issue_category_plural: Kategorie zgłoszeń |
|
207 | label_issue_category_plural: Kategorie zgłoszeń | |
208 | label_issue_category_new: Nowa kategoria |
|
208 | label_issue_category_new: Nowa kategoria | |
209 | label_custom_field: Dowolne pole |
|
209 | label_custom_field: Dowolne pole | |
210 | label_custom_field_plural: Dowolne pola |
|
210 | label_custom_field_plural: Dowolne pola | |
211 | label_custom_field_new: Nowe dowolne pole |
|
211 | label_custom_field_new: Nowe dowolne pole | |
212 | label_enumerations: Wyliczenia |
|
212 | label_enumerations: Wyliczenia | |
213 | label_enumeration_new: Nowa wartość |
|
213 | label_enumeration_new: Nowa wartość | |
214 | label_information: Informacja |
|
214 | label_information: Informacja | |
215 | label_information_plural: Informacje |
|
215 | label_information_plural: Informacje | |
216 | label_please_login: Zaloguj się |
|
216 | label_please_login: Zaloguj się | |
217 | label_register: Rejestracja |
|
217 | label_register: Rejestracja | |
218 | label_password_lost: Zapomniane hasło |
|
218 | label_password_lost: Zapomniane hasło | |
219 | label_home: Główna |
|
219 | label_home: Główna | |
220 | label_my_page: Moja strona |
|
220 | label_my_page: Moja strona | |
221 | label_my_account: Moje konto |
|
221 | label_my_account: Moje konto | |
222 | label_my_projects: Moje projekty |
|
222 | label_my_projects: Moje projekty | |
223 | label_administration: Administracja |
|
223 | label_administration: Administracja | |
224 | label_login: Login |
|
224 | label_login: Login | |
225 | label_logout: Wylogowanie |
|
225 | label_logout: Wylogowanie | |
226 | label_help: Pomoc |
|
226 | label_help: Pomoc | |
227 | label_reported_issues: Zaraportowane zgłoszenia |
|
227 | label_reported_issues: Zaraportowane zgłoszenia | |
228 | label_assigned_to_me_issues: Zgłoszenia przypisane do mnie |
|
228 | label_assigned_to_me_issues: Zgłoszenia przypisane do mnie | |
229 | label_last_login: Ostatnie połączenie |
|
229 | label_last_login: Ostatnie połączenie | |
230 | label_last_updates: Ostatnia zmieniana |
|
230 | label_last_updates: Ostatnia zmieniana | |
231 | label_last_updates_plural: %d ostatnie zmiany |
|
231 | label_last_updates_plural: %d ostatnie zmiany | |
232 | label_registered_on: Zarejestrowany |
|
232 | label_registered_on: Zarejestrowany | |
233 | label_activity: Aktywność |
|
233 | label_activity: Aktywność | |
234 | label_new: Nowy |
|
234 | label_new: Nowy | |
235 | label_logged_as: Zalogowany jako |
|
235 | label_logged_as: Zalogowany jako | |
236 | label_environment: Środowisko |
|
236 | label_environment: Środowisko | |
237 | label_authentication: Identyfikacja |
|
237 | label_authentication: Identyfikacja | |
238 | label_auth_source: Tryb identyfikacji |
|
238 | label_auth_source: Tryb identyfikacji | |
239 | label_auth_source_new: Nowy tryb identyfikacji |
|
239 | label_auth_source_new: Nowy tryb identyfikacji | |
240 | label_auth_source_plural: Tryby identyfikacji |
|
240 | label_auth_source_plural: Tryby identyfikacji | |
241 | label_subproject_plural: Podprojekty |
|
241 | label_subproject_plural: Podprojekty | |
242 | label_min_max_length: Min - Maks długość |
|
242 | label_min_max_length: Min - Maks długość | |
243 | label_list: Lista |
|
243 | label_list: Lista | |
244 | label_date: Data |
|
244 | label_date: Data | |
245 | label_integer: L. pojedyńcza |
|
245 | label_integer: L. pojedyńcza | |
246 | label_boolean: Wart. logiczna |
|
246 | label_boolean: Wart. logiczna | |
247 | label_string: Tekst |
|
247 | label_string: Tekst | |
248 | label_text: Długi tekst |
|
248 | label_text: Długi tekst | |
249 | label_attribute: Atrybut |
|
249 | label_attribute: Atrybut | |
250 | label_attribute_plural: Atrybuty |
|
250 | label_attribute_plural: Atrybuty | |
251 | label_download: %d Pobranie |
|
251 | label_download: %d Pobranie | |
252 | label_download_plural: %d Pobrania |
|
252 | label_download_plural: %d Pobrania | |
253 | label_no_data: Brak danych do pokazania |
|
253 | label_no_data: Brak danych do pokazania | |
254 | label_change_status: Status zmian |
|
254 | label_change_status: Status zmian | |
255 | label_history: Historia |
|
255 | label_history: Historia | |
256 | label_attachment: Plik |
|
256 | label_attachment: Plik | |
257 | label_attachment_new: Nowy plik |
|
257 | label_attachment_new: Nowy plik | |
258 | label_attachment_delete: Skasuj plik |
|
258 | label_attachment_delete: Skasuj plik | |
259 | label_attachment_plural: Pliki |
|
259 | label_attachment_plural: Pliki | |
260 | label_report: Raport |
|
260 | label_report: Raport | |
261 | label_report_plural: Raporty |
|
261 | label_report_plural: Raporty | |
262 | label_news: Nowość |
|
262 | label_news: Nowość | |
263 | label_news_new: Dodaj nowość |
|
263 | label_news_new: Dodaj nowość | |
264 | label_news_plural: Nowości |
|
264 | label_news_plural: Nowości | |
265 | label_news_latest: Ostatnie nowości |
|
265 | label_news_latest: Ostatnie nowości | |
266 | label_news_view_all: Pokaż wszystkie nowości |
|
266 | label_news_view_all: Pokaż wszystkie nowości | |
267 | label_change_log: Lista zmian |
|
267 | label_change_log: Lista zmian | |
268 | label_settings: Ustawienia |
|
268 | label_settings: Ustawienia | |
269 | label_overview: Przegląd |
|
269 | label_overview: Przegląd | |
270 | label_version: Wersja |
|
270 | label_version: Wersja | |
271 | label_version_new: Nowa wersja |
|
271 | label_version_new: Nowa wersja | |
272 | label_version_plural: Wersje |
|
272 | label_version_plural: Wersje | |
273 | label_confirmation: Potwierdzenie |
|
273 | label_confirmation: Potwierdzenie | |
274 | label_export_to: Eksportuj do |
|
274 | label_export_to: Eksportuj do | |
275 | label_read: Czytanie... |
|
275 | label_read: Czytanie... | |
276 | label_public_projects: Projekty publiczne |
|
276 | label_public_projects: Projekty publiczne | |
277 | label_open_issues: otwarte |
|
277 | label_open_issues: otwarte | |
278 | label_open_issues_plural: otwarte |
|
278 | label_open_issues_plural: otwarte | |
279 | label_closed_issues: zamknięte |
|
279 | label_closed_issues: zamknięte | |
280 | label_closed_issues_plural: zamknięte |
|
280 | label_closed_issues_plural: zamknięte | |
281 | label_total: Ogółem |
|
281 | label_total: Ogółem | |
282 | label_permissions: Uprawnienia |
|
282 | label_permissions: Uprawnienia | |
283 | label_current_status: Obecny status |
|
283 | label_current_status: Obecny status | |
284 | label_new_statuses_allowed: Uprawnione nowe statusy |
|
284 | label_new_statuses_allowed: Uprawnione nowe statusy | |
285 | label_all: wszystko |
|
285 | label_all: wszystko | |
286 | label_none: brak |
|
286 | label_none: brak | |
287 | label_next: Następne |
|
287 | label_next: Następne | |
288 | label_previous: Poprzednie |
|
288 | label_previous: Poprzednie | |
289 | label_used_by: Używane przez |
|
289 | label_used_by: Używane przez | |
290 | label_details: Szczegóły |
|
290 | label_details: Szczegóły | |
291 | label_add_note: Dodaj notatkę |
|
291 | label_add_note: Dodaj notatkę | |
292 | label_per_page: Na stronę |
|
292 | label_per_page: Na stronę | |
293 | label_calendar: Kalendarz |
|
293 | label_calendar: Kalendarz | |
294 | label_months_from: miesiące od |
|
294 | label_months_from: miesiące od | |
295 | label_gantt: Gantt |
|
295 | label_gantt: Gantt | |
296 | label_internal: Wewnętrzny |
|
296 | label_internal: Wewnętrzny | |
297 | label_last_changes: ostatnie %d zmian |
|
297 | label_last_changes: ostatnie %d zmian | |
298 | label_change_view_all: Pokaż wszystkie zmiany |
|
298 | label_change_view_all: Pokaż wszystkie zmiany | |
299 | label_personalize_page: Personalizuj tą stronę |
|
299 | label_personalize_page: Personalizuj tą stronę | |
300 | label_comment: Komentarz |
|
300 | label_comment: Komentarz | |
301 | label_comment_plural: Komentarze |
|
301 | label_comment_plural: Komentarze | |
302 | label_comment_add: Dodaj komentarz |
|
302 | label_comment_add: Dodaj komentarz | |
303 | label_comment_added: Komentarz dodany |
|
303 | label_comment_added: Komentarz dodany | |
304 | label_comment_delete: Usuń komentarze |
|
304 | label_comment_delete: Usuń komentarze | |
305 | label_query: Dowolne zapytanie |
|
305 | label_query: Dowolne zapytanie | |
306 | label_query_plural: Dowolne zapytania |
|
306 | label_query_plural: Dowolne zapytania | |
307 | label_query_new: Nowe zapytanie |
|
307 | label_query_new: Nowe zapytanie | |
308 | label_filter_add: Dodaj filter |
|
308 | label_filter_add: Dodaj filter | |
309 | label_filter_plural: Filtry |
|
309 | label_filter_plural: Filtry | |
310 | label_equals: jest |
|
310 | label_equals: jest | |
311 | label_not_equals: nie jest |
|
311 | label_not_equals: nie jest | |
312 | label_in_less_than: w mniejszych od |
|
312 | label_in_less_than: w mniejszych od | |
313 | label_in_more_than: w większych niż |
|
313 | label_in_more_than: w większych niż | |
314 | label_in: w |
|
314 | label_in: w | |
315 | label_today: dzisiaj |
|
315 | label_today: dzisiaj | |
316 | label_less_than_ago: dni mniej |
|
316 | label_less_than_ago: dni mniej | |
317 | label_more_than_ago: dni więcej |
|
317 | label_more_than_ago: dni więcej | |
318 | label_ago: dni temu |
|
318 | label_ago: dni temu | |
319 | label_contains: zawiera |
|
319 | label_contains: zawiera | |
320 | label_not_contains: nie zawiera |
|
320 | label_not_contains: nie zawiera | |
321 | label_day_plural: dni |
|
321 | label_day_plural: dni | |
322 | label_repository: Repozytorium |
|
322 | label_repository: Repozytorium | |
323 | label_browse: Przegląd |
|
323 | label_browse: Przegląd | |
324 | label_modification: %d modyfikacja |
|
324 | label_modification: %d modyfikacja | |
325 | label_modification_plural: %d modyfikacja |
|
325 | label_modification_plural: %d modyfikacja | |
326 | label_revision: Zmiana |
|
326 | label_revision: Zmiana | |
327 | label_revision_plural: Zmiany |
|
327 | label_revision_plural: Zmiany | |
328 | label_added: dodane |
|
328 | label_added: dodane | |
329 | label_modified: zmodufikowane |
|
329 | label_modified: zmodufikowane | |
330 | label_deleted: usunięte |
|
330 | label_deleted: usunięte | |
331 | label_latest_revision: Ostatnia zmiana |
|
331 | label_latest_revision: Ostatnia zmiana | |
332 | label_latest_revision_plural: Ostatnie zmiany |
|
332 | label_latest_revision_plural: Ostatnie zmiany | |
333 | label_view_revisions: Pokaż zmiany |
|
333 | label_view_revisions: Pokaż zmiany | |
334 | label_max_size: Kamsymalny rozmiar |
|
334 | label_max_size: Kamsymalny rozmiar | |
335 | label_on: 'włączone' |
|
335 | label_on: 'włączone' | |
336 | label_sort_highest: Przesuń na górę |
|
336 | label_sort_highest: Przesuń na górę | |
337 | label_sort_higher: Do góry |
|
337 | label_sort_higher: Do góry | |
338 | label_sort_lower: Do dołu |
|
338 | label_sort_lower: Do dołu | |
339 | label_sort_lowest: Przesuń na dół |
|
339 | label_sort_lowest: Przesuń na dół | |
340 | label_roadmap: Mapa |
|
340 | label_roadmap: Mapa | |
341 | label_roadmap_due_in: W czasie |
|
341 | label_roadmap_due_in: W czasie | |
342 | label_roadmap_no_issues: Brak zgłoszeń do tej wersji |
|
342 | label_roadmap_no_issues: Brak zgłoszeń do tej wersji | |
343 | label_search: Szukaj |
|
343 | label_search: Szukaj | |
344 | label_result: %d rezultat |
|
344 | label_result: %d rezultat | |
345 | label_result_plural: %d rezultatów |
|
345 | label_result_plural: %d rezultatów | |
346 | label_all_words: Wszystkie słowa |
|
346 | label_all_words: Wszystkie słowa | |
347 | label_wiki: Wiki |
|
347 | label_wiki: Wiki | |
348 | label_wiki_edit: Edycja wiki |
|
348 | label_wiki_edit: Edycja wiki | |
349 | label_wiki_edit_plural: Edycje wiki |
|
349 | label_wiki_edit_plural: Edycje wiki | |
350 | label_wiki_page: Strona wiki |
|
350 | label_wiki_page: Strona wiki | |
351 | label_wiki_page_plural: Strony wiki |
|
351 | label_wiki_page_plural: Strony wiki | |
352 | label_page_index: Indeks |
|
352 | label_page_index: Indeks | |
353 | label_current_version: Obecna wersja |
|
353 | label_current_version: Obecna wersja | |
354 | label_preview: Podgląd |
|
354 | label_preview: Podgląd | |
355 | label_feed_plural: Ilość RSS |
|
355 | label_feed_plural: Ilość RSS | |
356 | label_changes_details: Szczegóły wszystkich zmian |
|
356 | label_changes_details: Szczegóły wszystkich zmian | |
357 | label_issue_tracking: Śledzenie zgłoszeń |
|
357 | label_issue_tracking: Śledzenie zgłoszeń | |
358 | label_spent_time: Spędzony czas |
|
358 | label_spent_time: Spędzony czas | |
359 | label_f_hour: %.2f godzina |
|
359 | label_f_hour: %.2f godzina | |
360 | label_f_hour_plural: %.2f godzin |
|
360 | label_f_hour_plural: %.2f godzin | |
361 | label_time_tracking: Śledzenie czasu |
|
361 | label_time_tracking: Śledzenie czasu | |
362 | label_change_plural: Zmiany |
|
362 | label_change_plural: Zmiany | |
363 | label_statistics: Statystyki |
|
363 | label_statistics: Statystyki | |
364 | label_commits_per_month: Wrzutek CVS w miesiącu |
|
364 | label_commits_per_month: Wrzutek CVS w miesiącu | |
365 | label_commits_per_author: Wrzutek CVS przez autora |
|
365 | label_commits_per_author: Wrzutek CVS przez autora | |
366 | label_view_diff: Pokaż różnice |
|
366 | label_view_diff: Pokaż różnice | |
367 | label_diff_inline: w linii |
|
367 | label_diff_inline: w linii | |
368 | label_diff_side_by_side: obok siebie |
|
368 | label_diff_side_by_side: obok siebie | |
369 | label_options: Opcje |
|
369 | label_options: Opcje | |
370 | label_copy_workflow_from: Kopiuj przepływ z |
|
370 | label_copy_workflow_from: Kopiuj przepływ z | |
371 | label_permissions_report: Raport uprawnień |
|
371 | label_permissions_report: Raport uprawnień | |
372 | label_watched_issues: Obserwowane zgłoszenia |
|
372 | label_watched_issues: Obserwowane zgłoszenia | |
373 | label_related_issues: Powiązane zgłoszenia |
|
373 | label_related_issues: Powiązane zgłoszenia | |
374 | label_applied_status: Stosowany status |
|
374 | label_applied_status: Stosowany status | |
375 | label_loading: Ładowanie... |
|
375 | label_loading: Ładowanie... | |
376 | label_relation_new: Nowe powiązanie |
|
376 | label_relation_new: Nowe powiązanie | |
377 | label_relation_delete: Usuń powiązanie |
|
377 | label_relation_delete: Usuń powiązanie | |
378 | label_relates_to: powiązane z |
|
378 | label_relates_to: powiązane z | |
379 | label_duplicates: duplikaty |
|
379 | label_duplicates: duplikaty | |
380 | label_blocks: blokady |
|
380 | label_blocks: blokady | |
381 | label_blocked_by: zablokowane przez |
|
381 | label_blocked_by: zablokowane przez | |
382 | label_precedes: poprzedza |
|
382 | label_precedes: poprzedza | |
383 | label_follows: podąża |
|
383 | label_follows: podąża | |
384 | label_end_to_start: koniec do początku |
|
384 | label_end_to_start: koniec do początku | |
385 | label_end_to_end: koniec do końca |
|
385 | label_end_to_end: koniec do końca | |
386 | label_start_to_start: początek do początku |
|
386 | label_start_to_start: początek do początku | |
387 | label_start_to_end: początek do końca |
|
387 | label_start_to_end: początek do końca | |
388 | label_stay_logged_in: Pozostań zalogowany |
|
388 | label_stay_logged_in: Pozostań zalogowany | |
389 | label_disabled: zablokowany |
|
389 | label_disabled: zablokowany | |
390 | label_show_completed_versions: Pokaż kompletne wersje |
|
390 | label_show_completed_versions: Pokaż kompletne wersje | |
391 | label_me: ja |
|
391 | label_me: ja | |
392 | label_board: Forum |
|
392 | label_board: Forum | |
393 | label_board_new: Nowe forum |
|
393 | label_board_new: Nowe forum | |
394 | label_board_plural: Fora |
|
394 | label_board_plural: Fora | |
395 | label_topic_plural: Tematy |
|
395 | label_topic_plural: Tematy | |
396 | label_message_plural: Wiadomości |
|
396 | label_message_plural: Wiadomości | |
397 | label_message_last: Ostatnia wiadomość |
|
397 | label_message_last: Ostatnia wiadomość | |
398 | label_message_new: Nowa wiadomość |
|
398 | label_message_new: Nowa wiadomość | |
399 | label_reply_plural: Odpowiedzi |
|
399 | label_reply_plural: Odpowiedzi | |
400 | label_send_information: Wyślij informację użytkownikowi |
|
400 | label_send_information: Wyślij informację użytkownikowi | |
401 | label_year: Rok |
|
401 | label_year: Rok | |
402 | label_month: Miesiąc |
|
402 | label_month: Miesiąc | |
403 | label_week: Tydzień |
|
403 | label_week: Tydzień | |
404 | label_date_from: Z |
|
404 | label_date_from: Z | |
405 | label_date_to: Do |
|
405 | label_date_to: Do | |
406 | label_language_based: Na podstawie języka |
|
406 | label_language_based: Na podstawie języka | |
407 |
|
407 | |||
408 | button_login: Login |
|
408 | button_login: Login | |
409 | button_submit: Wyślij |
|
409 | button_submit: Wyślij | |
410 | button_save: Nagraj |
|
410 | button_save: Nagraj | |
411 | button_check_all: Zaznacz wszystko |
|
411 | button_check_all: Zaznacz wszystko | |
412 | button_uncheck_all: Odznacz wszystko |
|
412 | button_uncheck_all: Odznacz wszystko | |
413 | button_delete: Usuń |
|
413 | button_delete: Usuń | |
414 | button_create: Stwórz |
|
414 | button_create: Stwórz | |
415 | button_test: Testuj |
|
415 | button_test: Testuj | |
416 | button_edit: Edytuj |
|
416 | button_edit: Edytuj | |
417 | button_add: Dodaj |
|
417 | button_add: Dodaj | |
418 | button_change: Zmień |
|
418 | button_change: Zmień | |
419 | button_apply: Ustaw |
|
419 | button_apply: Ustaw | |
420 | button_clear: Wyczyść |
|
420 | button_clear: Wyczyść | |
421 | button_lock: Zablokuj |
|
421 | button_lock: Zablokuj | |
422 | button_unlock: Odblokuj |
|
422 | button_unlock: Odblokuj | |
423 | button_download: Pobierz |
|
423 | button_download: Pobierz | |
424 | button_list: Lista |
|
424 | button_list: Lista | |
425 | button_view: Pokaż |
|
425 | button_view: Pokaż | |
426 | button_move: Przenieś |
|
426 | button_move: Przenieś | |
427 | button_back: Wstecz |
|
427 | button_back: Wstecz | |
428 | button_cancel: Anuluj |
|
428 | button_cancel: Anuluj | |
429 | button_activate: Aktywuj |
|
429 | button_activate: Aktywuj | |
430 | button_sort: Sortuj |
|
430 | button_sort: Sortuj | |
431 | button_log_time: Czas logowania |
|
431 | button_log_time: Czas logowania | |
432 | button_rollback: Przywróc do tej wersji |
|
432 | button_rollback: Przywróc do tej wersji | |
433 | button_watch: Obserwuj |
|
433 | button_watch: Obserwuj | |
434 | button_unwatch: Nie obserwuj |
|
434 | button_unwatch: Nie obserwuj | |
435 | button_reply: Odpowiedz |
|
435 | button_reply: Odpowiedz | |
436 | button_archive: Orchiwizuj |
|
436 | button_archive: Orchiwizuj | |
437 | button_unarchive: Przywróc z archiwum |
|
437 | button_unarchive: Przywróc z archiwum | |
438 |
|
438 | |||
439 | status_active: aktywny |
|
439 | status_active: aktywny | |
440 | status_registered: zarejestrowany |
|
440 | status_registered: zarejestrowany | |
441 | status_locked: zablokowany |
|
441 | status_locked: zablokowany | |
442 |
|
442 | |||
443 | text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony mailem. |
|
443 | text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony mailem. | |
444 | text_regexp_info: np. ^[A-Z0-9]+$ |
|
444 | text_regexp_info: np. ^[A-Z0-9]+$ | |
445 | text_min_max_length_info: 0 oznacza brak restrykcji |
|
445 | text_min_max_length_info: 0 oznacza brak restrykcji | |
446 | text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane? |
|
446 | text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane? | |
447 | text_workflow_edit: Zaznacz rolę i ślad do edycji przepływu |
|
447 | text_workflow_edit: Zaznacz rolę i ślad do edycji przepływu | |
448 | text_are_you_sure: Jesteś pewien ? |
|
448 | text_are_you_sure: Jesteś pewien ? | |
449 | text_journal_changed: zmienione %s do %s |
|
449 | text_journal_changed: zmienione %s do %s | |
450 | text_journal_set_to: ustawione na %s |
|
450 | text_journal_set_to: ustawione na %s | |
451 | text_journal_deleted: usunięte |
|
451 | text_journal_deleted: usunięte | |
452 | text_tip_task_begin_day: zadanie zaczynające się dzisiaj |
|
452 | text_tip_task_begin_day: zadanie zaczynające się dzisiaj | |
453 | text_tip_task_end_day: zadanie kończące się dzisiaj |
|
453 | text_tip_task_end_day: zadanie kończące się dzisiaj | |
454 | text_tip_task_begin_end_day: zadanie zaczynające i kończące się dzisiaj |
|
454 | text_tip_task_begin_end_day: zadanie zaczynające i kończące się dzisiaj | |
455 | text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.' |
|
455 | text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.' | |
456 | text_caracters_maximum: %d znaków maksymalnie. |
|
456 | text_caracters_maximum: %d znaków maksymalnie. | |
457 | text_length_between: Długość pomiędzy %d i %d znaków. |
|
457 | text_length_between: Długość pomiędzy %d i %d znaków. | |
458 | text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego śladu |
|
458 | text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego śladu | |
459 | text_unallowed_characters: Niedozwolone znaki |
|
459 | text_unallowed_characters: Niedozwolone znaki | |
460 | text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami). |
|
460 | text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami). | |
461 | text_issues_ref_in_commit_messages: Zgłoszenia odnoszące i ustalające we wrzutkach CVS |
|
461 | text_issues_ref_in_commit_messages: Zgłoszenia odnoszące i ustalające we wrzutkach CVS | |
462 |
|
462 | |||
463 | default_role_manager: Manager |
|
463 | default_role_manager: Manager | |
464 | default_role_developper: Developer |
|
464 | default_role_developper: Developer | |
465 | default_role_reporter: Reporter |
|
465 | default_role_reporter: Reporter | |
466 | default_tracker_bug: Błąd |
|
466 | default_tracker_bug: Błąd | |
467 | default_tracker_feature: Funkcjonalność |
|
467 | default_tracker_feature: Funkcjonalność | |
468 | default_tracker_support: Wsparcie |
|
468 | default_tracker_support: Wsparcie | |
469 | default_issue_status_new: Nowy |
|
469 | default_issue_status_new: Nowy | |
470 | default_issue_status_assigned: Przypisany |
|
470 | default_issue_status_assigned: Przypisany | |
471 | default_issue_status_resolved: Rozwiązany |
|
471 | default_issue_status_resolved: Rozwiązany | |
472 | default_issue_status_feedback: Odpowiedź |
|
472 | default_issue_status_feedback: Odpowiedź | |
473 | default_issue_status_closed: Zamknięty |
|
473 | default_issue_status_closed: Zamknięty | |
474 | default_issue_status_rejected: Odrzucony |
|
474 | default_issue_status_rejected: Odrzucony | |
475 | default_doc_category_user: Dokumentacja użytkownika |
|
475 | default_doc_category_user: Dokumentacja użytkownika | |
476 | default_doc_category_tech: Dokumentacja techniczna |
|
476 | default_doc_category_tech: Dokumentacja techniczna | |
477 | default_priority_low: Niski |
|
477 | default_priority_low: Niski | |
478 | default_priority_normal: Normalny |
|
478 | default_priority_normal: Normalny | |
479 | default_priority_high: Wysoki |
|
479 | default_priority_high: Wysoki | |
480 | default_priority_urgent: Pilny |
|
480 | default_priority_urgent: Pilny | |
481 | default_priority_immediate: Natyczmiastowy |
|
481 | default_priority_immediate: Natyczmiastowy | |
482 | default_activity_design: Projektowanie |
|
482 | default_activity_design: Projektowanie | |
483 | default_activity_development: Rozwój |
|
483 | default_activity_development: Rozwój | |
484 |
|
484 | |||
485 | enumeration_issue_priorities: Priorytety zgłoszeń |
|
485 | enumeration_issue_priorities: Priorytety zgłoszeń | |
486 | enumeration_doc_categories: Kategorie dokumentów |
|
486 | enumeration_doc_categories: Kategorie dokumentów | |
487 | enumeration_activities: Działania (śledzenie czasu) |
|
487 | enumeration_activities: Działania (śledzenie czasu) | |
488 | button_rename: Rename |
|
488 | button_rename: Rename | |
489 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
489 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
490 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
490 | label_feeds_access_key_created_on: RSS access key created %s ago | |
491 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
491 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
492 | label_roadmap_overdue: %s late |
|
492 | label_roadmap_overdue: %s late | |
493 | label_module_plural: Modules |
|
493 | label_module_plural: Modules | |
494 | label_this_week: this week |
|
494 | label_this_week: this week | |
495 | label_jump_to_a_project: Jump to a project... |
|
495 | label_jump_to_a_project: Jump to a project... | |
496 | field_assignable: Issues can be assigned to this role |
|
496 | field_assignable: Issues can be assigned to this role | |
497 | label_sort_by: Sort by "%s" |
|
497 | label_sort_by: Sort by "%s" | |
498 | text_issue_updated: Issue %s has been updated. |
|
498 | text_issue_updated: Issue %s has been updated. | |
499 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
499 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
500 | field_redirect_existing_links: Redirect existing links |
|
500 | field_redirect_existing_links: Redirect existing links | |
501 | text_issue_category_reassign_to: Reassing issues to this category |
|
501 | text_issue_category_reassign_to: Reassing issues to this category | |
502 | notice_email_sent: An email was sent to %s |
|
502 | notice_email_sent: An email was sent to %s | |
503 | text_issue_added: Issue %s has been reported. |
|
503 | text_issue_added: Issue %s has been reported. | |
504 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
504 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
505 | notice_email_error: An error occurred while sending mail (%s) |
|
505 | notice_email_error: An error occurred while sending mail (%s) | |
506 | label_updated_time: Updated %s ago |
|
506 | label_updated_time: Updated %s ago | |
507 | text_issue_category_destroy_assignments: Remove category assignments |
|
507 | text_issue_category_destroy_assignments: Remove category assignments | |
508 | label_send_test_email: Send a test email |
|
508 | label_send_test_email: Send a test email | |
509 | button_reset: Reset |
|
509 | button_reset: Reset | |
510 | label_added_time_by: Added by %s %s ago |
|
510 | label_added_time_by: Added by %s %s ago | |
511 | field_estimated_hours: Estimated time |
|
511 | field_estimated_hours: Estimated time | |
|
512 | label_file_plural: Files | |||
|
513 | label_changeset_plural: Changesets |
@@ -1,511 +1,513 | |||||
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 |
|
54 | |||
55 | notice_account_updated: Conta foi alterada com sucesso. |
|
55 | notice_account_updated: Conta foi alterada com sucesso. | |
56 | notice_account_invalid_creditentials: Usuario ou senha invalido. |
|
56 | notice_account_invalid_creditentials: Usuario ou senha invalido. | |
57 | notice_account_password_updated: Senha foi alterada com sucesso. |
|
57 | notice_account_password_updated: Senha foi alterada com sucesso. | |
58 | notice_account_wrong_password: Senha errada. |
|
58 | notice_account_wrong_password: Senha errada. | |
59 | notice_account_register_done: Conta foi criada com sucesso. |
|
59 | notice_account_register_done: Conta foi criada com sucesso. | |
60 | notice_account_unknown_email: Usuario desconhecido. |
|
60 | notice_account_unknown_email: Usuario desconhecido. | |
61 | notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha. |
|
61 | notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha. | |
62 | notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce. |
|
62 | notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce. | |
63 | notice_account_activated: Sua conta foi ativada. Voce pode logar agora |
|
63 | notice_account_activated: Sua conta foi ativada. Voce pode logar agora | |
64 | notice_successful_create: Criado com sucesso. |
|
64 | notice_successful_create: Criado com sucesso. | |
65 | notice_successful_update: Alterado com sucesso. |
|
65 | notice_successful_update: Alterado com sucesso. | |
66 | notice_successful_delete: Apagado com sucesso. |
|
66 | notice_successful_delete: Apagado com sucesso. | |
67 | notice_successful_connection: Conectado com sucesso. |
|
67 | notice_successful_connection: Conectado com sucesso. | |
68 | notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida. |
|
68 | notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida. | |
69 | notice_locking_conflict: Os dados foram atualizados por um outro usuario. |
|
69 | notice_locking_conflict: Os dados foram atualizados por um outro usuario. | |
70 | notice_scm_error: A entrada e/ou a revisao nao existem no repositorio. |
|
70 | notice_scm_error: A entrada e/ou a revisao nao existem no repositorio. | |
71 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
72 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
73 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
75 |
|
75 | |||
76 | mail_subject_lost_password: Sua senha do redMine. |
|
76 | mail_subject_lost_password: Sua senha do redMine. | |
77 | mail_subject_register: Ativacao de conta do redMine. |
|
77 | mail_subject_register: Ativacao de conta do redMine. | |
78 |
|
78 | |||
79 | gui_validation_error: 1 erro |
|
79 | gui_validation_error: 1 erro | |
80 | gui_validation_error_plural: %d erros |
|
80 | gui_validation_error_plural: %d erros | |
81 |
|
81 | |||
82 | field_name: Nome |
|
82 | field_name: Nome | |
83 | field_description: Descricao |
|
83 | field_description: Descricao | |
84 | field_summary: Sumario |
|
84 | field_summary: Sumario | |
85 | field_is_required: Obrigatorio |
|
85 | field_is_required: Obrigatorio | |
86 | field_firstname: Primeiro nome |
|
86 | field_firstname: Primeiro nome | |
87 | field_lastname: Ultimo nome |
|
87 | field_lastname: Ultimo nome | |
88 | field_mail: Email |
|
88 | field_mail: Email | |
89 | field_filename: Arquivo |
|
89 | field_filename: Arquivo | |
90 | field_filesize: Tamanho |
|
90 | field_filesize: Tamanho | |
91 | field_downloads: Downloads |
|
91 | field_downloads: Downloads | |
92 | field_author: Autor |
|
92 | field_author: Autor | |
93 | field_created_on: Criado |
|
93 | field_created_on: Criado | |
94 | field_updated_on: Alterado |
|
94 | field_updated_on: Alterado | |
95 | field_field_format: Formato |
|
95 | field_field_format: Formato | |
96 | field_is_for_all: Para todos os projetos |
|
96 | field_is_for_all: Para todos os projetos | |
97 | field_possible_values: Possiveis valores |
|
97 | field_possible_values: Possiveis valores | |
98 | field_regexp: Expressao regular |
|
98 | field_regexp: Expressao regular | |
99 | field_min_length: Tamanho minimo |
|
99 | field_min_length: Tamanho minimo | |
100 | field_max_length: Tamanho maximo |
|
100 | field_max_length: Tamanho maximo | |
101 | field_value: Valor |
|
101 | field_value: Valor | |
102 | field_category: Categoria |
|
102 | field_category: Categoria | |
103 | field_title: Titulo |
|
103 | field_title: Titulo | |
104 | field_project: Projeto |
|
104 | field_project: Projeto | |
105 | field_issue: Tarefa |
|
105 | field_issue: Tarefa | |
106 | field_status: Status |
|
106 | field_status: Status | |
107 | field_notes: Notas |
|
107 | field_notes: Notas | |
108 | field_is_closed: Tarefa fechada |
|
108 | field_is_closed: Tarefa fechada | |
109 | field_is_default: Status padrao |
|
109 | field_is_default: Status padrao | |
110 | field_html_color: Cor |
|
110 | field_html_color: Cor | |
111 | field_tracker: Tipo |
|
111 | field_tracker: Tipo | |
112 | field_subject: Titulo |
|
112 | field_subject: Titulo | |
113 | field_due_date: Data devida |
|
113 | field_due_date: Data devida | |
114 | field_assigned_to: Atribuido para |
|
114 | field_assigned_to: Atribuido para | |
115 | field_priority: Prioridade |
|
115 | field_priority: Prioridade | |
116 | field_fixed_version: Versao corrigida |
|
116 | field_fixed_version: Versao corrigida | |
117 | field_user: Usuario |
|
117 | field_user: Usuario | |
118 | field_role: Regra |
|
118 | field_role: Regra | |
119 | field_homepage: Pagina inicial |
|
119 | field_homepage: Pagina inicial | |
120 | field_is_public: Publico |
|
120 | field_is_public: Publico | |
121 | field_parent: Sub-projeto de |
|
121 | field_parent: Sub-projeto de | |
122 | field_is_in_chlog: Tarefas mostradas no changelog |
|
122 | field_is_in_chlog: Tarefas mostradas no changelog | |
123 | field_is_in_roadmap: Tarefas mostradas no roadmap |
|
123 | field_is_in_roadmap: Tarefas mostradas no roadmap | |
124 | field_login: Login |
|
124 | field_login: Login | |
125 | field_mail_notification: Notificacoes por email |
|
125 | field_mail_notification: Notificacoes por email | |
126 | field_admin: Administrador |
|
126 | field_admin: Administrador | |
127 | field_last_login_on: Ultima conexao |
|
127 | field_last_login_on: Ultima conexao | |
128 | field_language: Lingua |
|
128 | field_language: Lingua | |
129 | field_effective_date: Data |
|
129 | field_effective_date: Data | |
130 | field_password: Senha |
|
130 | field_password: Senha | |
131 | field_new_password: Nova senha |
|
131 | field_new_password: Nova senha | |
132 | field_password_confirmation: Confirmacao |
|
132 | field_password_confirmation: Confirmacao | |
133 | field_version: Versao |
|
133 | field_version: Versao | |
134 | field_type: Tipo |
|
134 | field_type: Tipo | |
135 | field_host: Servidor |
|
135 | field_host: Servidor | |
136 | field_port: Porta |
|
136 | field_port: Porta | |
137 | field_account: Conta |
|
137 | field_account: Conta | |
138 | field_base_dn: Base DN |
|
138 | field_base_dn: Base DN | |
139 | field_attr_login: Atributo login |
|
139 | field_attr_login: Atributo login | |
140 | field_attr_firstname: Atributo primeiro nome |
|
140 | field_attr_firstname: Atributo primeiro nome | |
141 | field_attr_lastname: Atributo ultimo nome |
|
141 | field_attr_lastname: Atributo ultimo nome | |
142 | field_attr_mail: Atributo email |
|
142 | field_attr_mail: Atributo email | |
143 | field_onthefly: Criacao de usuario on-the-fly |
|
143 | field_onthefly: Criacao de usuario on-the-fly | |
144 | field_start_date: Inicio |
|
144 | field_start_date: Inicio | |
145 | field_done_ratio: %% Terminado |
|
145 | field_done_ratio: %% Terminado | |
146 | field_auth_source: Modo de autenticacao |
|
146 | field_auth_source: Modo de autenticacao | |
147 | field_hide_mail: Esconder meu email |
|
147 | field_hide_mail: Esconder meu email | |
148 | field_comments: Comentario |
|
148 | field_comments: Comentario | |
149 | field_url: URL |
|
149 | field_url: URL | |
150 | field_start_page: Pagina inicial |
|
150 | field_start_page: Pagina inicial | |
151 | field_subproject: Sub-projeto |
|
151 | field_subproject: Sub-projeto | |
152 | field_hours: Horas |
|
152 | field_hours: Horas | |
153 | field_activity: Atividade |
|
153 | field_activity: Atividade | |
154 | field_spent_on: Data |
|
154 | field_spent_on: Data | |
155 | field_identifier: Identificador |
|
155 | field_identifier: Identificador | |
156 | field_is_filter: Used as a filter |
|
156 | field_is_filter: Used as a filter | |
157 | field_issue_to_id: Related issue |
|
157 | field_issue_to_id: Related issue | |
158 | field_delay: Delay |
|
158 | field_delay: Delay | |
159 | field_assignable: Issues can be assigned to this role |
|
159 | field_assignable: Issues can be assigned to this role | |
160 | field_redirect_existing_links: Redirect existing links |
|
160 | field_redirect_existing_links: Redirect existing links | |
161 | field_estimated_hours: Estimated time |
|
161 | field_estimated_hours: Estimated time | |
162 |
|
162 | |||
163 | setting_app_title: Titulo da aplicacao |
|
163 | setting_app_title: Titulo da aplicacao | |
164 | setting_app_subtitle: Sub-titulo da aplicacao |
|
164 | setting_app_subtitle: Sub-titulo da aplicacao | |
165 | setting_welcome_text: Texto de boa-vinda |
|
165 | setting_welcome_text: Texto de boa-vinda | |
166 | setting_default_language: Lingua padrao |
|
166 | setting_default_language: Lingua padrao | |
167 | setting_login_required: Autenticacao obrigatoria |
|
167 | setting_login_required: Autenticacao obrigatoria | |
168 | setting_self_registration: Registro de si mesmo permitido |
|
168 | setting_self_registration: Registro de si mesmo permitido | |
169 | setting_attachment_max_size: Tamanho maximo do anexo |
|
169 | setting_attachment_max_size: Tamanho maximo do anexo | |
170 | setting_issues_export_limit: Limite de exportacao das tarefas |
|
170 | setting_issues_export_limit: Limite de exportacao das tarefas | |
171 | setting_mail_from: Email enviado de |
|
171 | setting_mail_from: Email enviado de | |
172 | setting_host_name: Servidor |
|
172 | setting_host_name: Servidor | |
173 | setting_text_formatting: Formato do texto |
|
173 | setting_text_formatting: Formato do texto | |
174 | setting_wiki_compression: Compactacao do historio do Wiki |
|
174 | setting_wiki_compression: Compactacao do historio do Wiki | |
175 | setting_feeds_limit: Limite do Feed |
|
175 | setting_feeds_limit: Limite do Feed | |
176 | setting_autofetch_changesets: Autofetch commits |
|
176 | setting_autofetch_changesets: Autofetch commits | |
177 | setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio |
|
177 | setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio | |
178 | setting_commit_ref_keywords: Referencing keywords |
|
178 | setting_commit_ref_keywords: Referencing keywords | |
179 | setting_commit_fix_keywords: Fixing keywords |
|
179 | setting_commit_fix_keywords: Fixing keywords | |
180 | setting_autologin: Autologin |
|
180 | setting_autologin: Autologin | |
181 | setting_date_format: Date format |
|
181 | setting_date_format: Date format | |
182 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
182 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
183 |
|
183 | |||
184 | label_user: Usuario |
|
184 | label_user: Usuario | |
185 | label_user_plural: Usuarios |
|
185 | label_user_plural: Usuarios | |
186 | label_user_new: Novo usuario |
|
186 | label_user_new: Novo usuario | |
187 | label_project: Projeto |
|
187 | label_project: Projeto | |
188 | label_project_new: Novo projeto |
|
188 | label_project_new: Novo projeto | |
189 | label_project_plural: Projetos |
|
189 | label_project_plural: Projetos | |
190 | label_project_all: All Projects |
|
190 | label_project_all: All Projects | |
191 | label_project_latest: Ultimos projetos |
|
191 | label_project_latest: Ultimos projetos | |
192 | label_issue: Tarefa |
|
192 | label_issue: Tarefa | |
193 | label_issue_new: Nova tarefa |
|
193 | label_issue_new: Nova tarefa | |
194 | label_issue_plural: Tarefas |
|
194 | label_issue_plural: Tarefas | |
195 | label_issue_view_all: Ver todas as tarefas |
|
195 | label_issue_view_all: Ver todas as tarefas | |
196 | label_document: Documento |
|
196 | label_document: Documento | |
197 | label_document_new: Novo documento |
|
197 | label_document_new: Novo documento | |
198 | label_document_plural: Documentos |
|
198 | label_document_plural: Documentos | |
199 | label_role: Regra |
|
199 | label_role: Regra | |
200 | label_role_plural: Regras |
|
200 | label_role_plural: Regras | |
201 | label_role_new: Nova regra |
|
201 | label_role_new: Nova regra | |
202 | label_role_and_permissions: Regras e permissoes |
|
202 | label_role_and_permissions: Regras e permissoes | |
203 | label_member: Membro |
|
203 | label_member: Membro | |
204 | label_member_new: Novo membro |
|
204 | label_member_new: Novo membro | |
205 | label_member_plural: Membros |
|
205 | label_member_plural: Membros | |
206 | label_tracker: Tipo |
|
206 | label_tracker: Tipo | |
207 | label_tracker_plural: Tipos |
|
207 | label_tracker_plural: Tipos | |
208 | label_tracker_new: Novo tipo |
|
208 | label_tracker_new: Novo tipo | |
209 | label_workflow: Workflow |
|
209 | label_workflow: Workflow | |
210 | label_issue_status: Status da tarefa |
|
210 | label_issue_status: Status da tarefa | |
211 | label_issue_status_plural: Status das tarefas |
|
211 | label_issue_status_plural: Status das tarefas | |
212 | label_issue_status_new: Novo status |
|
212 | label_issue_status_new: Novo status | |
213 | label_issue_category: Categoria de tarefa |
|
213 | label_issue_category: Categoria de tarefa | |
214 | label_issue_category_plural: Categorias de tarefa |
|
214 | label_issue_category_plural: Categorias de tarefa | |
215 | label_issue_category_new: Nova categoria |
|
215 | label_issue_category_new: Nova categoria | |
216 | label_custom_field: Campo personalizado |
|
216 | label_custom_field: Campo personalizado | |
217 | label_custom_field_plural: Campos personalizado |
|
217 | label_custom_field_plural: Campos personalizado | |
218 | label_custom_field_new: Novo campo personalizado |
|
218 | label_custom_field_new: Novo campo personalizado | |
219 | label_enumerations: Enumeracao |
|
219 | label_enumerations: Enumeracao | |
220 | label_enumeration_new: Novo valor |
|
220 | label_enumeration_new: Novo valor | |
221 | label_information: Informacao |
|
221 | label_information: Informacao | |
222 | label_information_plural: Informacoes |
|
222 | label_information_plural: Informacoes | |
223 | label_please_login: Efetue login |
|
223 | label_please_login: Efetue login | |
224 | label_register: Registre-se |
|
224 | label_register: Registre-se | |
225 | label_password_lost: Perdi a senha |
|
225 | label_password_lost: Perdi a senha | |
226 | label_home: Pagina inicial |
|
226 | label_home: Pagina inicial | |
227 | label_my_page: Minha pagina |
|
227 | label_my_page: Minha pagina | |
228 | label_my_account: Minha conta |
|
228 | label_my_account: Minha conta | |
229 | label_my_projects: Meus projetos |
|
229 | label_my_projects: Meus projetos | |
230 | label_administration: Administracao |
|
230 | label_administration: Administracao | |
231 | label_login: Login |
|
231 | label_login: Login | |
232 | label_logout: Logout |
|
232 | label_logout: Logout | |
233 | label_help: Ajuda |
|
233 | label_help: Ajuda | |
234 | label_reported_issues: Tarefas reportadas |
|
234 | label_reported_issues: Tarefas reportadas | |
235 | label_assigned_to_me_issues: Tarefas atribuidas a mim |
|
235 | label_assigned_to_me_issues: Tarefas atribuidas a mim | |
236 | label_last_login: Utima conexao |
|
236 | label_last_login: Utima conexao | |
237 | label_last_updates: Ultima alteracao |
|
237 | label_last_updates: Ultima alteracao | |
238 | label_last_updates_plural: %d Ultimas alteracoes |
|
238 | label_last_updates_plural: %d Ultimas alteracoes | |
239 | label_registered_on: Registrado em |
|
239 | label_registered_on: Registrado em | |
240 | label_activity: Atividade |
|
240 | label_activity: Atividade | |
241 | label_new: Novo |
|
241 | label_new: Novo | |
242 | label_logged_as: Logado como |
|
242 | label_logged_as: Logado como | |
243 | label_environment: Ambiente |
|
243 | label_environment: Ambiente | |
244 | label_authentication: Autenticacao |
|
244 | label_authentication: Autenticacao | |
245 | label_auth_source: Modo de autenticacao |
|
245 | label_auth_source: Modo de autenticacao | |
246 | label_auth_source_new: Novo modo de autenticacao |
|
246 | label_auth_source_new: Novo modo de autenticacao | |
247 | label_auth_source_plural: Modos de autenticacao |
|
247 | label_auth_source_plural: Modos de autenticacao | |
248 | label_subproject_plural: Sub-projetos |
|
248 | label_subproject_plural: Sub-projetos | |
249 | label_min_max_length: Tamanho min-max |
|
249 | label_min_max_length: Tamanho min-max | |
250 | label_list: Lista |
|
250 | label_list: Lista | |
251 | label_date: Data |
|
251 | label_date: Data | |
252 | label_integer: Inteiro |
|
252 | label_integer: Inteiro | |
253 | label_boolean: Boleano |
|
253 | label_boolean: Boleano | |
254 | label_string: Texto |
|
254 | label_string: Texto | |
255 | label_text: Texto longo |
|
255 | label_text: Texto longo | |
256 | label_attribute: Atributo |
|
256 | label_attribute: Atributo | |
257 | label_attribute_plural: Atributos |
|
257 | label_attribute_plural: Atributos | |
258 | label_download: %d Download |
|
258 | label_download: %d Download | |
259 | label_download_plural: %d Downloads |
|
259 | label_download_plural: %d Downloads | |
260 | label_no_data: Sem dados para mostrar |
|
260 | label_no_data: Sem dados para mostrar | |
261 | label_change_status: Mudar status |
|
261 | label_change_status: Mudar status | |
262 | label_history: Historico |
|
262 | label_history: Historico | |
263 | label_attachment: Arquivo |
|
263 | label_attachment: Arquivo | |
264 | label_attachment_new: Novo arquivo |
|
264 | label_attachment_new: Novo arquivo | |
265 | label_attachment_delete: Apagar arquivo |
|
265 | label_attachment_delete: Apagar arquivo | |
266 | label_attachment_plural: Arquivos |
|
266 | label_attachment_plural: Arquivos | |
267 | label_report: Relatorio |
|
267 | label_report: Relatorio | |
268 | label_report_plural: Relatorio |
|
268 | label_report_plural: Relatorio | |
269 | label_news: Noticias |
|
269 | label_news: Noticias | |
270 | label_news_new: Adicionar noticias |
|
270 | label_news_new: Adicionar noticias | |
271 | label_news_plural: Noticias |
|
271 | label_news_plural: Noticias | |
272 | label_news_latest: Ultimas noticias |
|
272 | label_news_latest: Ultimas noticias | |
273 | label_news_view_all: Ver todas as noticias |
|
273 | label_news_view_all: Ver todas as noticias | |
274 | label_change_log: Change log |
|
274 | label_change_log: Change log | |
275 | label_settings: Ajustes |
|
275 | label_settings: Ajustes | |
276 | label_overview: Visao geral |
|
276 | label_overview: Visao geral | |
277 | label_version: Versao |
|
277 | label_version: Versao | |
278 | label_version_new: Nova versao |
|
278 | label_version_new: Nova versao | |
279 | label_version_plural: Versoes |
|
279 | label_version_plural: Versoes | |
280 | label_confirmation: Confirmacao |
|
280 | label_confirmation: Confirmacao | |
281 | label_export_to: Exportar para |
|
281 | label_export_to: Exportar para | |
282 | label_read: Ler... |
|
282 | label_read: Ler... | |
283 | label_public_projects: Projetos publicos |
|
283 | label_public_projects: Projetos publicos | |
284 | label_open_issues: Aberto |
|
284 | label_open_issues: Aberto | |
285 | label_open_issues_plural: Abertos |
|
285 | label_open_issues_plural: Abertos | |
286 | label_closed_issues: Fechado |
|
286 | label_closed_issues: Fechado | |
287 | label_closed_issues_plural: Fechados |
|
287 | label_closed_issues_plural: Fechados | |
288 | label_total: Total |
|
288 | label_total: Total | |
289 | label_permissions: Permissoes |
|
289 | label_permissions: Permissoes | |
290 | label_current_status: Status atual |
|
290 | label_current_status: Status atual | |
291 | label_new_statuses_allowed: Novo status permitido |
|
291 | label_new_statuses_allowed: Novo status permitido | |
292 | label_all: todos |
|
292 | label_all: todos | |
293 | label_none: nenhum |
|
293 | label_none: nenhum | |
294 | label_next: Proximo |
|
294 | label_next: Proximo | |
295 | label_previous: Anterior |
|
295 | label_previous: Anterior | |
296 | label_used_by: Usado por |
|
296 | label_used_by: Usado por | |
297 | label_details: Detalhes |
|
297 | label_details: Detalhes | |
298 | label_add_note: Adicionar nota |
|
298 | label_add_note: Adicionar nota | |
299 | label_per_page: Por pagina |
|
299 | label_per_page: Por pagina | |
300 | label_calendar: Calendario |
|
300 | label_calendar: Calendario | |
301 | label_months_from: Meses de |
|
301 | label_months_from: Meses de | |
302 | label_gantt: Gantt |
|
302 | label_gantt: Gantt | |
303 | label_internal: Interno |
|
303 | label_internal: Interno | |
304 | label_last_changes: utlimas %d mudancas |
|
304 | label_last_changes: utlimas %d mudancas | |
305 | label_change_view_all: Mostrar todas as mudancas |
|
305 | label_change_view_all: Mostrar todas as mudancas | |
306 | label_personalize_page: Personalizar esta pagina |
|
306 | label_personalize_page: Personalizar esta pagina | |
307 | label_comment: Comentario |
|
307 | label_comment: Comentario | |
308 | label_comment_plural: Comentarios |
|
308 | label_comment_plural: Comentarios | |
309 | label_comment_add: Adicionar comentario |
|
309 | label_comment_add: Adicionar comentario | |
310 | label_comment_added: Comentario adicionado |
|
310 | label_comment_added: Comentario adicionado | |
311 | label_comment_delete: Apagar comentario |
|
311 | label_comment_delete: Apagar comentario | |
312 | label_query: Consulta personalizada |
|
312 | label_query: Consulta personalizada | |
313 | label_query_plural: Consultas personalizadas |
|
313 | label_query_plural: Consultas personalizadas | |
314 | label_query_new: Nova consulta |
|
314 | label_query_new: Nova consulta | |
315 | label_filter_add: Adicionar filtro |
|
315 | label_filter_add: Adicionar filtro | |
316 | label_filter_plural: Filtros |
|
316 | label_filter_plural: Filtros | |
317 | label_equals: e |
|
317 | label_equals: e | |
318 | label_not_equals: nao e |
|
318 | label_not_equals: nao e | |
319 | label_in_less_than: e maior que |
|
319 | label_in_less_than: e maior que | |
320 | label_in_more_than: e menor que |
|
320 | label_in_more_than: e menor que | |
321 | label_in: em |
|
321 | label_in: em | |
322 | label_today: hoje |
|
322 | label_today: hoje | |
323 | label_this_week: this week |
|
323 | label_this_week: this week | |
324 | label_less_than_ago: faz menos de |
|
324 | label_less_than_ago: faz menos de | |
325 | label_more_than_ago: faz mais de |
|
325 | label_more_than_ago: faz mais de | |
326 | label_ago: dias atras |
|
326 | label_ago: dias atras | |
327 | label_contains: contem |
|
327 | label_contains: contem | |
328 | label_not_contains: nao contem |
|
328 | label_not_contains: nao contem | |
329 | label_day_plural: dias |
|
329 | label_day_plural: dias | |
330 | label_repository: Repository |
|
330 | label_repository: Repository | |
331 | label_browse: Browse |
|
331 | label_browse: Browse | |
332 | label_modification: %d change |
|
332 | label_modification: %d change | |
333 | label_modification_plural: %d changes |
|
333 | label_modification_plural: %d changes | |
334 | label_revision: Revision |
|
334 | label_revision: Revision | |
335 | label_revision_plural: Revisions |
|
335 | label_revision_plural: Revisions | |
336 | label_added: added |
|
336 | label_added: added | |
337 | label_modified: modified |
|
337 | label_modified: modified | |
338 | label_deleted: deleted |
|
338 | label_deleted: deleted | |
339 | label_latest_revision: Latest revision |
|
339 | label_latest_revision: Latest revision | |
340 | label_latest_revision_plural: Latest revisions |
|
340 | label_latest_revision_plural: Latest revisions | |
341 | label_view_revisions: View revisions |
|
341 | label_view_revisions: View revisions | |
342 | label_max_size: Maximum size |
|
342 | label_max_size: Maximum size | |
343 | label_on: 'em' |
|
343 | label_on: 'em' | |
344 | label_sort_highest: Mover para o inicio |
|
344 | label_sort_highest: Mover para o inicio | |
345 | label_sort_higher: Mover para cima |
|
345 | label_sort_higher: Mover para cima | |
346 | label_sort_lower: Mover para baixo |
|
346 | label_sort_lower: Mover para baixo | |
347 | label_sort_lowest: Mover para o fim |
|
347 | label_sort_lowest: Mover para o fim | |
348 | label_roadmap: Roadmap |
|
348 | label_roadmap: Roadmap | |
349 | label_roadmap_due_in: Due in |
|
349 | label_roadmap_due_in: Due in | |
350 | label_roadmap_overdue: %s late |
|
350 | label_roadmap_overdue: %s late | |
351 | label_roadmap_no_issues: Sem tarefas para essa versao |
|
351 | label_roadmap_no_issues: Sem tarefas para essa versao | |
352 | label_search: Busca |
|
352 | label_search: Busca | |
353 | label_result: %d resultado |
|
353 | label_result: %d resultado | |
354 | label_result_plural: %d resultados |
|
354 | label_result_plural: %d resultados | |
355 | label_all_words: Todas as palavras |
|
355 | label_all_words: Todas as palavras | |
356 | label_wiki: Wiki |
|
356 | label_wiki: Wiki | |
357 | label_wiki_edit: Wiki edit |
|
357 | label_wiki_edit: Wiki edit | |
358 | label_wiki_edit_plural: Wiki edits |
|
358 | label_wiki_edit_plural: Wiki edits | |
359 | label_wiki_page: Wiki page |
|
359 | label_wiki_page: Wiki page | |
360 | label_wiki_page_plural: Wiki pages |
|
360 | label_wiki_page_plural: Wiki pages | |
361 | label_page_index: Index |
|
361 | label_page_index: Index | |
362 | label_current_version: Versao atual |
|
362 | label_current_version: Versao atual | |
363 | label_preview: Previa |
|
363 | label_preview: Previa | |
364 | label_feed_plural: Feeds |
|
364 | label_feed_plural: Feeds | |
365 | label_changes_details: Detalhes de todas as mudancas |
|
365 | label_changes_details: Detalhes de todas as mudancas | |
366 | label_issue_tracking: Tarefas |
|
366 | label_issue_tracking: Tarefas | |
367 | label_spent_time: Tempo gasto |
|
367 | label_spent_time: Tempo gasto | |
368 | label_f_hour: %.2f hora |
|
368 | label_f_hour: %.2f hora | |
369 | label_f_hour_plural: %.2f horas |
|
369 | label_f_hour_plural: %.2f horas | |
370 | label_time_tracking: Tempo trabalhado |
|
370 | label_time_tracking: Tempo trabalhado | |
371 | label_change_plural: Mudancas |
|
371 | label_change_plural: Mudancas | |
372 | label_statistics: Estatisticas |
|
372 | label_statistics: Estatisticas | |
373 | label_commits_per_month: Commits por mes |
|
373 | label_commits_per_month: Commits por mes | |
374 | label_commits_per_author: Commits por autor |
|
374 | label_commits_per_author: Commits por autor | |
375 | label_view_diff: Ver diferencas |
|
375 | label_view_diff: Ver diferencas | |
376 | label_diff_inline: inline |
|
376 | label_diff_inline: inline | |
377 | label_diff_side_by_side: side by side |
|
377 | label_diff_side_by_side: side by side | |
378 | label_options: Opcoes |
|
378 | label_options: Opcoes | |
379 | label_copy_workflow_from: Copiar workflow de |
|
379 | label_copy_workflow_from: Copiar workflow de | |
380 | label_permissions_report: Relatorio de permissoes |
|
380 | label_permissions_report: Relatorio de permissoes | |
381 | label_watched_issues: Watched issues |
|
381 | label_watched_issues: Watched issues | |
382 | label_related_issues: Related issues |
|
382 | label_related_issues: Related issues | |
383 | label_applied_status: Applied status |
|
383 | label_applied_status: Applied status | |
384 | label_loading: Loading... |
|
384 | label_loading: Loading... | |
385 | label_relation_new: New relation |
|
385 | label_relation_new: New relation | |
386 | label_relation_delete: Delete relation |
|
386 | label_relation_delete: Delete relation | |
387 | label_relates_to: related to |
|
387 | label_relates_to: related to | |
388 | label_duplicates: duplicates |
|
388 | label_duplicates: duplicates | |
389 | label_blocks: blocks |
|
389 | label_blocks: blocks | |
390 | label_blocked_by: blocked by |
|
390 | label_blocked_by: blocked by | |
391 | label_precedes: precedes |
|
391 | label_precedes: precedes | |
392 | label_follows: follows |
|
392 | label_follows: follows | |
393 | label_end_to_start: end to start |
|
393 | label_end_to_start: end to start | |
394 | label_end_to_end: end to end |
|
394 | label_end_to_end: end to end | |
395 | label_start_to_start: start to start |
|
395 | label_start_to_start: start to start | |
396 | label_start_to_end: start to end |
|
396 | label_start_to_end: start to end | |
397 | label_stay_logged_in: Stay logged in |
|
397 | label_stay_logged_in: Stay logged in | |
398 | label_disabled: disabled |
|
398 | label_disabled: disabled | |
399 | label_show_completed_versions: Show completed versions |
|
399 | label_show_completed_versions: Show completed versions | |
400 | label_me: me |
|
400 | label_me: me | |
401 | label_board: Forum |
|
401 | label_board: Forum | |
402 | label_board_new: New forum |
|
402 | label_board_new: New forum | |
403 | label_board_plural: Forums |
|
403 | label_board_plural: Forums | |
404 | label_topic_plural: Topics |
|
404 | label_topic_plural: Topics | |
405 | label_message_plural: Messages |
|
405 | label_message_plural: Messages | |
406 | label_message_last: Last message |
|
406 | label_message_last: Last message | |
407 | label_message_new: New message |
|
407 | label_message_new: New message | |
408 | label_reply_plural: Replies |
|
408 | label_reply_plural: Replies | |
409 | label_send_information: Send account information to the user |
|
409 | label_send_information: Send account information to the user | |
410 | label_year: Year |
|
410 | label_year: Year | |
411 | label_month: Month |
|
411 | label_month: Month | |
412 | label_week: Week |
|
412 | label_week: Week | |
413 | label_date_from: From |
|
413 | label_date_from: From | |
414 | label_date_to: To |
|
414 | label_date_to: To | |
415 | label_language_based: Language based |
|
415 | label_language_based: Language based | |
416 | label_sort_by: Sort by "%s" |
|
416 | label_sort_by: Sort by "%s" | |
417 | label_send_test_email: Send a test email |
|
417 | label_send_test_email: Send a test email | |
418 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
418 | label_feeds_access_key_created_on: RSS access key created %s ago | |
419 | label_module_plural: Modules |
|
419 | label_module_plural: Modules | |
420 | label_added_time_by: Added by %s %s ago |
|
420 | label_added_time_by: Added by %s %s ago | |
421 | label_updated_time: Updated %s ago |
|
421 | label_updated_time: Updated %s ago | |
422 | label_jump_to_a_project: Jump to a project... |
|
422 | label_jump_to_a_project: Jump to a project... | |
423 |
|
423 | |||
424 | button_login: Login |
|
424 | button_login: Login | |
425 | button_submit: Enviar |
|
425 | button_submit: Enviar | |
426 | button_save: Salvar |
|
426 | button_save: Salvar | |
427 | button_check_all: Marcar todos |
|
427 | button_check_all: Marcar todos | |
428 | button_uncheck_all: Desmarcar todos |
|
428 | button_uncheck_all: Desmarcar todos | |
429 | button_delete: Apagar |
|
429 | button_delete: Apagar | |
430 | button_create: Criar |
|
430 | button_create: Criar | |
431 | button_test: Testar |
|
431 | button_test: Testar | |
432 | button_edit: Editar |
|
432 | button_edit: Editar | |
433 | button_add: Adicionar |
|
433 | button_add: Adicionar | |
434 | button_change: Mudar |
|
434 | button_change: Mudar | |
435 | button_apply: Aplicar |
|
435 | button_apply: Aplicar | |
436 | button_clear: Limpar |
|
436 | button_clear: Limpar | |
437 | button_lock: Bloquear |
|
437 | button_lock: Bloquear | |
438 | button_unlock: Desbloquear |
|
438 | button_unlock: Desbloquear | |
439 | button_download: Download |
|
439 | button_download: Download | |
440 | button_list: Listar |
|
440 | button_list: Listar | |
441 | button_view: Ver |
|
441 | button_view: Ver | |
442 | button_move: Mover |
|
442 | button_move: Mover | |
443 | button_back: Voltar |
|
443 | button_back: Voltar | |
444 | button_cancel: Cancelar |
|
444 | button_cancel: Cancelar | |
445 | button_activate: Ativar |
|
445 | button_activate: Ativar | |
446 | button_sort: Ordenar |
|
446 | button_sort: Ordenar | |
447 | button_log_time: Tempo de trabalho |
|
447 | button_log_time: Tempo de trabalho | |
448 | button_rollback: Voltar para esta versao |
|
448 | button_rollback: Voltar para esta versao | |
449 | button_watch: Watch |
|
449 | button_watch: Watch | |
450 | button_unwatch: Unwatch |
|
450 | button_unwatch: Unwatch | |
451 | button_reply: Reply |
|
451 | button_reply: Reply | |
452 | button_archive: Archive |
|
452 | button_archive: Archive | |
453 | button_unarchive: Unarchive |
|
453 | button_unarchive: Unarchive | |
454 | button_reset: Reset |
|
454 | button_reset: Reset | |
455 | button_rename: Rename |
|
455 | button_rename: Rename | |
456 |
|
456 | |||
457 | status_active: ativo |
|
457 | status_active: ativo | |
458 | status_registered: registrado |
|
458 | status_registered: registrado | |
459 | status_locked: bloqueado |
|
459 | status_locked: bloqueado | |
460 |
|
460 | |||
461 | text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email |
|
461 | text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email | |
462 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
462 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
463 | text_min_max_length_info: 0 siginifica sem restricao |
|
463 | text_min_max_length_info: 0 siginifica sem restricao | |
464 | text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados? |
|
464 | text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados? | |
465 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow |
|
465 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow | |
466 | text_are_you_sure: Voce tem certeza ? |
|
466 | text_are_you_sure: Voce tem certeza ? | |
467 | text_journal_changed: alterado de %s para %s |
|
467 | text_journal_changed: alterado de %s para %s | |
468 | text_journal_set_to: setar para %s |
|
468 | text_journal_set_to: setar para %s | |
469 | text_journal_deleted: apagado |
|
469 | text_journal_deleted: apagado | |
470 | text_tip_task_begin_day: tarefa comeca neste dia |
|
470 | text_tip_task_begin_day: tarefa comeca neste dia | |
471 | text_tip_task_end_day: tarefa termina neste dia |
|
471 | text_tip_task_end_day: tarefa termina neste dia | |
472 | text_tip_task_begin_end_day: tarefa comeca e termina neste dia |
|
472 | text_tip_task_begin_end_day: tarefa comeca e termina neste dia | |
473 | text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.' |
|
473 | text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.' | |
474 | text_caracters_maximum: %d maximo de caracteres |
|
474 | text_caracters_maximum: %d maximo de caracteres | |
475 | text_length_between: Tamanho entre %d e %d caracteres. |
|
475 | text_length_between: Tamanho entre %d e %d caracteres. | |
476 | text_tracker_no_workflow: Sem workflow definido para este tipo. |
|
476 | text_tracker_no_workflow: Sem workflow definido para este tipo. | |
477 | text_unallowed_characters: Unallowed characters |
|
477 | text_unallowed_characters: Unallowed characters | |
478 | text_comma_separated: Multiple values allowed (comma separated). |
|
478 | text_comma_separated: Multiple values allowed (comma separated). | |
479 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
479 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
480 | text_issue_added: Tarefa %s foi incluída. |
|
480 | text_issue_added: Tarefa %s foi incluída. | |
481 | text_issue_updated: Tarefa %s foi alterada. |
|
481 | text_issue_updated: Tarefa %s foi alterada. | |
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
484 | text_issue_category_destroy_assignments: Remove category assignments |
|
484 | text_issue_category_destroy_assignments: Remove category assignments | |
485 | text_issue_category_reassign_to: Reassing issues to this category |
|
485 | text_issue_category_reassign_to: Reassing issues to this category | |
486 |
|
486 | |||
487 | default_role_manager: Analista de Negocio ou Gerente de Projeto |
|
487 | default_role_manager: Analista de Negocio ou Gerente de Projeto | |
488 | default_role_developper: Desenvolvedor |
|
488 | default_role_developper: Desenvolvedor | |
489 | default_role_reporter: Analista de Suporte |
|
489 | default_role_reporter: Analista de Suporte | |
490 | default_tracker_bug: Bug |
|
490 | default_tracker_bug: Bug | |
491 | default_tracker_feature: Implementacao |
|
491 | default_tracker_feature: Implementacao | |
492 | default_tracker_support: Suporte |
|
492 | default_tracker_support: Suporte | |
493 | default_issue_status_new: Novo |
|
493 | default_issue_status_new: Novo | |
494 | default_issue_status_assigned: Atribuido |
|
494 | default_issue_status_assigned: Atribuido | |
495 | default_issue_status_resolved: Resolvido |
|
495 | default_issue_status_resolved: Resolvido | |
496 | default_issue_status_feedback: Feedback |
|
496 | default_issue_status_feedback: Feedback | |
497 | default_issue_status_closed: Fechado |
|
497 | default_issue_status_closed: Fechado | |
498 | default_issue_status_rejected: Rejeitado |
|
498 | default_issue_status_rejected: Rejeitado | |
499 | default_doc_category_user: Documentacao do usuario |
|
499 | default_doc_category_user: Documentacao do usuario | |
500 | default_doc_category_tech: Documentacao do tecnica |
|
500 | default_doc_category_tech: Documentacao do tecnica | |
501 | default_priority_low: Baixo |
|
501 | default_priority_low: Baixo | |
502 | default_priority_normal: Normal |
|
502 | default_priority_normal: Normal | |
503 | default_priority_high: Alto |
|
503 | default_priority_high: Alto | |
504 | default_priority_urgent: Urgente |
|
504 | default_priority_urgent: Urgente | |
505 | default_priority_immediate: Imediato |
|
505 | default_priority_immediate: Imediato | |
506 | default_activity_design: Design |
|
506 | default_activity_design: Design | |
507 | default_activity_development: Desenvolvimento |
|
507 | default_activity_development: Desenvolvimento | |
508 |
|
508 | |||
509 | enumeration_issue_priorities: Prioridade das tarefas |
|
509 | enumeration_issue_priorities: Prioridade das tarefas | |
510 | enumeration_doc_categories: Categorias de documento |
|
510 | enumeration_doc_categories: Categorias de documento | |
511 | enumeration_activities: Atividades (time tracking) |
|
511 | enumeration_activities: Atividades (time tracking) | |
|
512 | label_file_plural: Files | |||
|
513 | label_changeset_plural: Changesets |
@@ -1,511 +1,513 | |||||
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 |
|
54 | |||
55 | notice_account_updated: Conta foi atualizada com sucesso. |
|
55 | notice_account_updated: Conta foi atualizada com sucesso. | |
56 | notice_account_invalid_creditentials: Usuário ou senha inválidos. |
|
56 | notice_account_invalid_creditentials: Usuário ou senha inválidos. | |
57 | notice_account_password_updated: Senha foi alterada com sucesso. |
|
57 | notice_account_password_updated: Senha foi alterada com sucesso. | |
58 | notice_account_wrong_password: Senha errada. |
|
58 | notice_account_wrong_password: Senha errada. | |
59 | notice_account_register_done: Conta foi criada com sucesso. |
|
59 | notice_account_register_done: Conta foi criada com sucesso. | |
60 | notice_account_unknown_email: Usuário desconhecido. |
|
60 | notice_account_unknown_email: Usuário desconhecido. | |
61 | notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha. |
|
61 | notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha. | |
62 | notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você. |
|
62 | notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você. | |
63 | notice_account_activated: Sua conta foi ativada. Você pode logar agora |
|
63 | notice_account_activated: Sua conta foi ativada. Você pode logar agora | |
64 | notice_successful_create: Criado com sucesso. |
|
64 | notice_successful_create: Criado com sucesso. | |
65 | notice_successful_update: Alterado com sucesso. |
|
65 | notice_successful_update: Alterado com sucesso. | |
66 | notice_successful_delete: Apagado com sucesso. |
|
66 | notice_successful_delete: Apagado com sucesso. | |
67 | notice_successful_connection: Conectado com sucesso. |
|
67 | notice_successful_connection: Conectado com sucesso. | |
68 | notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída. |
|
68 | notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída. | |
69 | notice_locking_conflict: Os dados foram atualizados por um outro usuário. |
|
69 | notice_locking_conflict: Os dados foram atualizados por um outro usuário. | |
70 | notice_scm_error: A entrada e/ou a revisão não existem no repositório. |
|
70 | notice_scm_error: A entrada e/ou a revisão não existem no repositório. | |
71 | notice_not_authorized: Você não está autorizado a acessar esta página. |
|
71 | notice_not_authorized: Você não está autorizado a acessar esta página. | |
72 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
73 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
75 |
|
75 | |||
76 | mail_subject_lost_password: Sua senha do redMine. |
|
76 | mail_subject_lost_password: Sua senha do redMine. | |
77 | mail_subject_register: Ativação de conta do redMine. |
|
77 | mail_subject_register: Ativação de conta do redMine. | |
78 |
|
78 | |||
79 | gui_validation_error: 1 erro |
|
79 | gui_validation_error: 1 erro | |
80 | gui_validation_error_plural: %d erros |
|
80 | gui_validation_error_plural: %d erros | |
81 |
|
81 | |||
82 | field_name: Nome |
|
82 | field_name: Nome | |
83 | field_description: Descrição |
|
83 | field_description: Descrição | |
84 | field_summary: Sumário |
|
84 | field_summary: Sumário | |
85 | field_is_required: Obrigatório |
|
85 | field_is_required: Obrigatório | |
86 | field_firstname: Primeiro nome |
|
86 | field_firstname: Primeiro nome | |
87 | field_lastname: Último nome |
|
87 | field_lastname: Último nome | |
88 | field_mail: Email |
|
88 | field_mail: Email | |
89 | field_filename: Arquivo |
|
89 | field_filename: Arquivo | |
90 | field_filesize: Tamanho |
|
90 | field_filesize: Tamanho | |
91 | field_downloads: Downloads |
|
91 | field_downloads: Downloads | |
92 | field_author: Autor |
|
92 | field_author: Autor | |
93 | field_created_on: Criado |
|
93 | field_created_on: Criado | |
94 | field_updated_on: Alterado |
|
94 | field_updated_on: Alterado | |
95 | field_field_format: Formato |
|
95 | field_field_format: Formato | |
96 | field_is_for_all: Para todos os projetos |
|
96 | field_is_for_all: Para todos os projetos | |
97 | field_possible_values: Possíveis valores |
|
97 | field_possible_values: Possíveis valores | |
98 | field_regexp: Expressão regular |
|
98 | field_regexp: Expressão regular | |
99 | field_min_length: Tamanho mínimo |
|
99 | field_min_length: Tamanho mínimo | |
100 | field_max_length: Tamanho máximo |
|
100 | field_max_length: Tamanho máximo | |
101 | field_value: Valor |
|
101 | field_value: Valor | |
102 | field_category: Categoria |
|
102 | field_category: Categoria | |
103 | field_title: Título |
|
103 | field_title: Título | |
104 | field_project: Projeto |
|
104 | field_project: Projeto | |
105 | field_issue: Tarefa |
|
105 | field_issue: Tarefa | |
106 | field_status: Status |
|
106 | field_status: Status | |
107 | field_notes: Notas |
|
107 | field_notes: Notas | |
108 | field_is_closed: Tarefa fechada |
|
108 | field_is_closed: Tarefa fechada | |
109 | field_is_default: Status padrão |
|
109 | field_is_default: Status padrão | |
110 | field_html_color: Cor |
|
110 | field_html_color: Cor | |
111 | field_tracker: Tipo |
|
111 | field_tracker: Tipo | |
112 | field_subject: Assunto |
|
112 | field_subject: Assunto | |
113 | field_due_date: Data final |
|
113 | field_due_date: Data final | |
114 | field_assigned_to: Atribuído para |
|
114 | field_assigned_to: Atribuído para | |
115 | field_priority: Prioridade |
|
115 | field_priority: Prioridade | |
116 | field_fixed_version: Versão corrigida |
|
116 | field_fixed_version: Versão corrigida | |
117 | field_user: Usuário |
|
117 | field_user: Usuário | |
118 | field_role: Regra |
|
118 | field_role: Regra | |
119 | field_homepage: Página inicial |
|
119 | field_homepage: Página inicial | |
120 | field_is_public: Público |
|
120 | field_is_public: Público | |
121 | field_parent: Sub-projeto de |
|
121 | field_parent: Sub-projeto de | |
122 | field_is_in_chlog: Tarefas mostradas no changelog |
|
122 | field_is_in_chlog: Tarefas mostradas no changelog | |
123 | field_is_in_roadmap: Tarefas mostradas no roadmap |
|
123 | field_is_in_roadmap: Tarefas mostradas no roadmap | |
124 | field_login: Login |
|
124 | field_login: Login | |
125 | field_mail_notification: Notificações por email |
|
125 | field_mail_notification: Notificações por email | |
126 | field_admin: Administrador |
|
126 | field_admin: Administrador | |
127 | field_last_login_on: Última conexão |
|
127 | field_last_login_on: Última conexão | |
128 | field_language: Língua |
|
128 | field_language: Língua | |
129 | field_effective_date: Data |
|
129 | field_effective_date: Data | |
130 | field_password: Senha |
|
130 | field_password: Senha | |
131 | field_new_password: Nova senha |
|
131 | field_new_password: Nova senha | |
132 | field_password_confirmation: Confirmação |
|
132 | field_password_confirmation: Confirmação | |
133 | field_version: Versão |
|
133 | field_version: Versão | |
134 | field_type: Tipo |
|
134 | field_type: Tipo | |
135 | field_host: Servidor |
|
135 | field_host: Servidor | |
136 | field_port: Porta |
|
136 | field_port: Porta | |
137 | field_account: Conta |
|
137 | field_account: Conta | |
138 | field_base_dn: Base DN |
|
138 | field_base_dn: Base DN | |
139 | field_attr_login: Atributo login |
|
139 | field_attr_login: Atributo login | |
140 | field_attr_firstname: Atributo primeiro nome |
|
140 | field_attr_firstname: Atributo primeiro nome | |
141 | field_attr_lastname: Atributo último nome |
|
141 | field_attr_lastname: Atributo último nome | |
142 | field_attr_mail: Atributo email |
|
142 | field_attr_mail: Atributo email | |
143 | field_onthefly: Criação de usuário sob-demanda |
|
143 | field_onthefly: Criação de usuário sob-demanda | |
144 | field_start_date: Início |
|
144 | field_start_date: Início | |
145 | field_done_ratio: %% Terminado |
|
145 | field_done_ratio: %% Terminado | |
146 | field_auth_source: Modo de autenticação |
|
146 | field_auth_source: Modo de autenticação | |
147 | field_hide_mail: Esconda meu email |
|
147 | field_hide_mail: Esconda meu email | |
148 | field_comments: Comentário |
|
148 | field_comments: Comentário | |
149 | field_url: URL |
|
149 | field_url: URL | |
150 | field_start_page: Página inicial |
|
150 | field_start_page: Página inicial | |
151 | field_subproject: Sub-projeto |
|
151 | field_subproject: Sub-projeto | |
152 | field_hours: Horas |
|
152 | field_hours: Horas | |
153 | field_activity: Atividade |
|
153 | field_activity: Atividade | |
154 | field_spent_on: Data |
|
154 | field_spent_on: Data | |
155 | field_identifier: Identificador |
|
155 | field_identifier: Identificador | |
156 | field_is_filter: Usado como filtro |
|
156 | field_is_filter: Usado como filtro | |
157 | field_issue_to_id: Tarefa relacionada |
|
157 | field_issue_to_id: Tarefa relacionada | |
158 | field_delay: Atraso |
|
158 | field_delay: Atraso | |
159 | field_assignable: Issues can be assigned to this role |
|
159 | field_assignable: Issues can be assigned to this role | |
160 | field_redirect_existing_links: Redirect existing links |
|
160 | field_redirect_existing_links: Redirect existing links | |
161 | field_estimated_hours: Estimated time |
|
161 | field_estimated_hours: Estimated time | |
162 |
|
162 | |||
163 | setting_app_title: Título da aplicação |
|
163 | setting_app_title: Título da aplicação | |
164 | setting_app_subtitle: Sub-título da aplicação |
|
164 | setting_app_subtitle: Sub-título da aplicação | |
165 | setting_welcome_text: Texto de boas-vindas |
|
165 | setting_welcome_text: Texto de boas-vindas | |
166 | setting_default_language: Linguagem padrão |
|
166 | setting_default_language: Linguagem padrão | |
167 | setting_login_required: Autenticação obrigatória |
|
167 | setting_login_required: Autenticação obrigatória | |
168 | setting_self_registration: Registro permitido |
|
168 | setting_self_registration: Registro permitido | |
169 | setting_attachment_max_size: Tamanho máximo do anexo |
|
169 | setting_attachment_max_size: Tamanho máximo do anexo | |
170 | setting_issues_export_limit: Limite de exportação das tarefas |
|
170 | setting_issues_export_limit: Limite de exportação das tarefas | |
171 | setting_mail_from: Email enviado de |
|
171 | setting_mail_from: Email enviado de | |
172 | setting_host_name: Servidor |
|
172 | setting_host_name: Servidor | |
173 | setting_text_formatting: Formato do texto |
|
173 | setting_text_formatting: Formato do texto | |
174 | setting_wiki_compression: Compactação do histórico do Wiki |
|
174 | setting_wiki_compression: Compactação do histórico do Wiki | |
175 | setting_feeds_limit: Limite do Feed |
|
175 | setting_feeds_limit: Limite do Feed | |
176 | setting_autofetch_changesets: Buscar automaticamente commits |
|
176 | setting_autofetch_changesets: Buscar automaticamente commits | |
177 | setting_sys_api_enabled: Ativa WS para gerenciamento do repositório |
|
177 | setting_sys_api_enabled: Ativa WS para gerenciamento do repositório | |
178 | setting_commit_ref_keywords: Palavras-chave de referôncia |
|
178 | setting_commit_ref_keywords: Palavras-chave de referôncia | |
179 | setting_commit_fix_keywords: Palavras-chave fixas |
|
179 | setting_commit_fix_keywords: Palavras-chave fixas | |
180 | setting_autologin: Autologin |
|
180 | setting_autologin: Autologin | |
181 | setting_date_format: Date format |
|
181 | setting_date_format: Date format | |
182 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
182 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
183 |
|
183 | |||
184 | label_user: Usuário |
|
184 | label_user: Usuário | |
185 | label_user_plural: Usuários |
|
185 | label_user_plural: Usuários | |
186 | label_user_new: Novo usuário |
|
186 | label_user_new: Novo usuário | |
187 | label_project: Projeto |
|
187 | label_project: Projeto | |
188 | label_project_new: Novo projeto |
|
188 | label_project_new: Novo projeto | |
189 | label_project_plural: Projetos |
|
189 | label_project_plural: Projetos | |
190 | label_project_all: All Projects |
|
190 | label_project_all: All Projects | |
191 | label_project_latest: Últimos projetos |
|
191 | label_project_latest: Últimos projetos | |
192 | label_issue: Tarefa |
|
192 | label_issue: Tarefa | |
193 | label_issue_new: Nova tarefa |
|
193 | label_issue_new: Nova tarefa | |
194 | label_issue_plural: Tarefas |
|
194 | label_issue_plural: Tarefas | |
195 | label_issue_view_all: Ver todas as tarefas |
|
195 | label_issue_view_all: Ver todas as tarefas | |
196 | label_document: Documento |
|
196 | label_document: Documento | |
197 | label_document_new: Novo documento |
|
197 | label_document_new: Novo documento | |
198 | label_document_plural: Documentos |
|
198 | label_document_plural: Documentos | |
199 | label_role: Regra |
|
199 | label_role: Regra | |
200 | label_role_plural: Regras |
|
200 | label_role_plural: Regras | |
201 | label_role_new: Nova regra |
|
201 | label_role_new: Nova regra | |
202 | label_role_and_permissions: Regras e permissões |
|
202 | label_role_and_permissions: Regras e permissões | |
203 | label_member: Membro |
|
203 | label_member: Membro | |
204 | label_member_new: Novo membro |
|
204 | label_member_new: Novo membro | |
205 | label_member_plural: Membros |
|
205 | label_member_plural: Membros | |
206 | label_tracker: Tipo |
|
206 | label_tracker: Tipo | |
207 | label_tracker_plural: Tipos |
|
207 | label_tracker_plural: Tipos | |
208 | label_tracker_new: Novo tipo |
|
208 | label_tracker_new: Novo tipo | |
209 | label_workflow: Workflow |
|
209 | label_workflow: Workflow | |
210 | label_issue_status: Status da tarefa |
|
210 | label_issue_status: Status da tarefa | |
211 | label_issue_status_plural: Status das tarefas |
|
211 | label_issue_status_plural: Status das tarefas | |
212 | label_issue_status_new: Novo status |
|
212 | label_issue_status_new: Novo status | |
213 | label_issue_category: Categoria da tarefa |
|
213 | label_issue_category: Categoria da tarefa | |
214 | label_issue_category_plural: Categorias das tarefas |
|
214 | label_issue_category_plural: Categorias das tarefas | |
215 | label_issue_category_new: Nova categoria |
|
215 | label_issue_category_new: Nova categoria | |
216 | label_custom_field: Campo personalizado |
|
216 | label_custom_field: Campo personalizado | |
217 | label_custom_field_plural: Campos personalizados |
|
217 | label_custom_field_plural: Campos personalizados | |
218 | label_custom_field_new: Novo campo personalizado |
|
218 | label_custom_field_new: Novo campo personalizado | |
219 | label_enumerations: Enumeração |
|
219 | label_enumerations: Enumeração | |
220 | label_enumeration_new: Novo valor |
|
220 | label_enumeration_new: Novo valor | |
221 | label_information: Informação |
|
221 | label_information: Informação | |
222 | label_information_plural: Informações |
|
222 | label_information_plural: Informações | |
223 | label_please_login: Efetue login |
|
223 | label_please_login: Efetue login | |
224 | label_register: Registre-se |
|
224 | label_register: Registre-se | |
225 | label_password_lost: Perdi a senha |
|
225 | label_password_lost: Perdi a senha | |
226 | label_home: Página inicial |
|
226 | label_home: Página inicial | |
227 | label_my_page: Minha página |
|
227 | label_my_page: Minha página | |
228 | label_my_account: Minha conta |
|
228 | label_my_account: Minha conta | |
229 | label_my_projects: Meus projetos |
|
229 | label_my_projects: Meus projetos | |
230 | label_administration: Administração |
|
230 | label_administration: Administração | |
231 | label_login: Login |
|
231 | label_login: Login | |
232 | label_logout: Logout |
|
232 | label_logout: Logout | |
233 | label_help: Ajuda |
|
233 | label_help: Ajuda | |
234 | label_reported_issues: Tarefas reportadas |
|
234 | label_reported_issues: Tarefas reportadas | |
235 | label_assigned_to_me_issues: Tarefas atribuídas à mim |
|
235 | label_assigned_to_me_issues: Tarefas atribuídas à mim | |
236 | label_last_login: Útima conexão |
|
236 | label_last_login: Útima conexão | |
237 | label_last_updates: Última alteração |
|
237 | label_last_updates: Última alteração | |
238 | label_last_updates_plural: %d Últimas alterações |
|
238 | label_last_updates_plural: %d Últimas alterações | |
239 | label_registered_on: Registrado em |
|
239 | label_registered_on: Registrado em | |
240 | label_activity: Atividade |
|
240 | label_activity: Atividade | |
241 | label_new: Novo |
|
241 | label_new: Novo | |
242 | label_logged_as: Logado como |
|
242 | label_logged_as: Logado como | |
243 | label_environment: Ambiente |
|
243 | label_environment: Ambiente | |
244 | label_authentication: Autenticação |
|
244 | label_authentication: Autenticação | |
245 | label_auth_source: Modo de autenticação |
|
245 | label_auth_source: Modo de autenticação | |
246 | label_auth_source_new: Novo modo de autenticação |
|
246 | label_auth_source_new: Novo modo de autenticação | |
247 | label_auth_source_plural: Modos de autenticação |
|
247 | label_auth_source_plural: Modos de autenticação | |
248 | label_subproject_plural: Sub-projetos |
|
248 | label_subproject_plural: Sub-projetos | |
249 | label_min_max_length: Tamanho min-max |
|
249 | label_min_max_length: Tamanho min-max | |
250 | label_list: Lista |
|
250 | label_list: Lista | |
251 | label_date: Data |
|
251 | label_date: Data | |
252 | label_integer: Inteiro |
|
252 | label_integer: Inteiro | |
253 | label_boolean: Booleano |
|
253 | label_boolean: Booleano | |
254 | label_string: Texto |
|
254 | label_string: Texto | |
255 | label_text: Texto longo |
|
255 | label_text: Texto longo | |
256 | label_attribute: Atributo |
|
256 | label_attribute: Atributo | |
257 | label_attribute_plural: Atributos |
|
257 | label_attribute_plural: Atributos | |
258 | label_download: %d Download |
|
258 | label_download: %d Download | |
259 | label_download_plural: %d Downloads |
|
259 | label_download_plural: %d Downloads | |
260 | label_no_data: Sem dados para mostrar |
|
260 | label_no_data: Sem dados para mostrar | |
261 | label_change_status: Mudar status |
|
261 | label_change_status: Mudar status | |
262 | label_history: Histórico |
|
262 | label_history: Histórico | |
263 | label_attachment: Arquivo |
|
263 | label_attachment: Arquivo | |
264 | label_attachment_new: Novo arquivo |
|
264 | label_attachment_new: Novo arquivo | |
265 | label_attachment_delete: Apagar arquivo |
|
265 | label_attachment_delete: Apagar arquivo | |
266 | label_attachment_plural: Arquivos |
|
266 | label_attachment_plural: Arquivos | |
267 | label_report: Relatório |
|
267 | label_report: Relatório | |
268 | label_report_plural: Relatório |
|
268 | label_report_plural: Relatório | |
269 | label_news: Notícias |
|
269 | label_news: Notícias | |
270 | label_news_new: Adicionar notícias |
|
270 | label_news_new: Adicionar notícias | |
271 | label_news_plural: Notícias |
|
271 | label_news_plural: Notícias | |
272 | label_news_latest: Últimas notícias |
|
272 | label_news_latest: Últimas notícias | |
273 | label_news_view_all: Ver todas as notícias |
|
273 | label_news_view_all: Ver todas as notícias | |
274 | label_change_log: Log de mudanças |
|
274 | label_change_log: Log de mudanças | |
275 | label_settings: Configurações |
|
275 | label_settings: Configurações | |
276 | label_overview: Visão geral |
|
276 | label_overview: Visão geral | |
277 | label_version: Versão |
|
277 | label_version: Versão | |
278 | label_version_new: Nova versão |
|
278 | label_version_new: Nova versão | |
279 | label_version_plural: Versões |
|
279 | label_version_plural: Versões | |
280 | label_confirmation: Confirmação |
|
280 | label_confirmation: Confirmação | |
281 | label_export_to: Exportar para |
|
281 | label_export_to: Exportar para | |
282 | label_read: Ler... |
|
282 | label_read: Ler... | |
283 | label_public_projects: Projetos públicos |
|
283 | label_public_projects: Projetos públicos | |
284 | label_open_issues: Aberto |
|
284 | label_open_issues: Aberto | |
285 | label_open_issues_plural: Abertos |
|
285 | label_open_issues_plural: Abertos | |
286 | label_closed_issues: Fechado |
|
286 | label_closed_issues: Fechado | |
287 | label_closed_issues_plural: Fechados |
|
287 | label_closed_issues_plural: Fechados | |
288 | label_total: Total |
|
288 | label_total: Total | |
289 | label_permissions: Permissões |
|
289 | label_permissions: Permissões | |
290 | label_current_status: Status atual |
|
290 | label_current_status: Status atual | |
291 | label_new_statuses_allowed: Novo status permitido |
|
291 | label_new_statuses_allowed: Novo status permitido | |
292 | label_all: todos |
|
292 | label_all: todos | |
293 | label_none: nenhum |
|
293 | label_none: nenhum | |
294 | label_next: Próximo |
|
294 | label_next: Próximo | |
295 | label_previous: Anterior |
|
295 | label_previous: Anterior | |
296 | label_used_by: Usado por |
|
296 | label_used_by: Usado por | |
297 | label_details: Detalhes |
|
297 | label_details: Detalhes | |
298 | label_add_note: Adicionar nota |
|
298 | label_add_note: Adicionar nota | |
299 | label_per_page: Por página |
|
299 | label_per_page: Por página | |
300 | label_calendar: Calendário |
|
300 | label_calendar: Calendário | |
301 | label_months_from: Meses de |
|
301 | label_months_from: Meses de | |
302 | label_gantt: Gantt |
|
302 | label_gantt: Gantt | |
303 | label_internal: Interno |
|
303 | label_internal: Interno | |
304 | label_last_changes: últimas %d mudanças |
|
304 | label_last_changes: últimas %d mudanças | |
305 | label_change_view_all: Mostrar todas as mudanças |
|
305 | label_change_view_all: Mostrar todas as mudanças | |
306 | label_personalize_page: Personalizar esta página |
|
306 | label_personalize_page: Personalizar esta página | |
307 | label_comment: Comentário |
|
307 | label_comment: Comentário | |
308 | label_comment_plural: Comentários |
|
308 | label_comment_plural: Comentários | |
309 | label_comment_add: Adicionar comentário |
|
309 | label_comment_add: Adicionar comentário | |
310 | label_comment_added: Comentário adicionado |
|
310 | label_comment_added: Comentário adicionado | |
311 | label_comment_delete: Apagar comentário |
|
311 | label_comment_delete: Apagar comentário | |
312 | label_query: Consulta personalizada |
|
312 | label_query: Consulta personalizada | |
313 | label_query_plural: Consultas personalizadas |
|
313 | label_query_plural: Consultas personalizadas | |
314 | label_query_new: Nova consulta |
|
314 | label_query_new: Nova consulta | |
315 | label_filter_add: Adicionar filtro |
|
315 | label_filter_add: Adicionar filtro | |
316 | label_filter_plural: Filtros |
|
316 | label_filter_plural: Filtros | |
317 | label_equals: é |
|
317 | label_equals: é | |
318 | label_not_equals: não e |
|
318 | label_not_equals: não e | |
319 | label_in_less_than: é maior que |
|
319 | label_in_less_than: é maior que | |
320 | label_in_more_than: é menor que |
|
320 | label_in_more_than: é menor que | |
321 | label_in: em |
|
321 | label_in: em | |
322 | label_today: hoje |
|
322 | label_today: hoje | |
323 | label_this_week: this week |
|
323 | label_this_week: this week | |
324 | label_less_than_ago: faz menos de |
|
324 | label_less_than_ago: faz menos de | |
325 | label_more_than_ago: faz mais de |
|
325 | label_more_than_ago: faz mais de | |
326 | label_ago: dias atrás |
|
326 | label_ago: dias atrás | |
327 | label_contains: contém |
|
327 | label_contains: contém | |
328 | label_not_contains: não contém |
|
328 | label_not_contains: não contém | |
329 | label_day_plural: dias |
|
329 | label_day_plural: dias | |
330 | label_repository: Repositório |
|
330 | label_repository: Repositório | |
331 | label_browse: Procurar |
|
331 | label_browse: Procurar | |
332 | label_modification: %d mudança |
|
332 | label_modification: %d mudança | |
333 | label_modification_plural: %d mudanças |
|
333 | label_modification_plural: %d mudanças | |
334 | label_revision: Revisão |
|
334 | label_revision: Revisão | |
335 | label_revision_plural: Revisões |
|
335 | label_revision_plural: Revisões | |
336 | label_added: adicionado |
|
336 | label_added: adicionado | |
337 | label_modified: modificado |
|
337 | label_modified: modificado | |
338 | label_deleted: deletado |
|
338 | label_deleted: deletado | |
339 | label_latest_revision: Última revisão |
|
339 | label_latest_revision: Última revisão | |
340 | label_latest_revision_plural: Últimas revisões |
|
340 | label_latest_revision_plural: Últimas revisões | |
341 | label_view_revisions: Ver revisões |
|
341 | label_view_revisions: Ver revisões | |
342 | label_max_size: Tamanho máximo |
|
342 | label_max_size: Tamanho máximo | |
343 | label_on: em |
|
343 | label_on: em | |
344 | label_sort_highest: Mover para o início |
|
344 | label_sort_highest: Mover para o início | |
345 | label_sort_higher: Mover para cima |
|
345 | label_sort_higher: Mover para cima | |
346 | label_sort_lower: Mover para baixo |
|
346 | label_sort_lower: Mover para baixo | |
347 | label_sort_lowest: Mover para o fim |
|
347 | label_sort_lowest: Mover para o fim | |
348 | label_roadmap: Roadmap |
|
348 | label_roadmap: Roadmap | |
349 | label_roadmap_due_in: Termina em |
|
349 | label_roadmap_due_in: Termina em | |
350 | label_roadmap_overdue: %s late |
|
350 | label_roadmap_overdue: %s late | |
351 | label_roadmap_no_issues: Sem tarefas para essa versão |
|
351 | label_roadmap_no_issues: Sem tarefas para essa versão | |
352 | label_search: Busca |
|
352 | label_search: Busca | |
353 | label_result: %d resultado |
|
353 | label_result: %d resultado | |
354 | label_result_plural: %d resultados |
|
354 | label_result_plural: %d resultados | |
355 | label_all_words: Todas as palavras |
|
355 | label_all_words: Todas as palavras | |
356 | label_wiki: Wiki |
|
356 | label_wiki: Wiki | |
357 | label_wiki_edit: Wiki edit |
|
357 | label_wiki_edit: Wiki edit | |
358 | label_wiki_edit_plural: Wiki edits |
|
358 | label_wiki_edit_plural: Wiki edits | |
359 | label_wiki_page: Wiki page |
|
359 | label_wiki_page: Wiki page | |
360 | label_wiki_page_plural: Wiki pages |
|
360 | label_wiki_page_plural: Wiki pages | |
361 | label_page_index: Index |
|
361 | label_page_index: Index | |
362 | label_current_version: Versão atual |
|
362 | label_current_version: Versão atual | |
363 | label_preview: Prévia |
|
363 | label_preview: Prévia | |
364 | label_feed_plural: Feeds |
|
364 | label_feed_plural: Feeds | |
365 | label_changes_details: Detalhes de todas as mudanças |
|
365 | label_changes_details: Detalhes de todas as mudanças | |
366 | label_issue_tracking: Tarefas |
|
366 | label_issue_tracking: Tarefas | |
367 | label_spent_time: Tempo gasto |
|
367 | label_spent_time: Tempo gasto | |
368 | label_f_hour: %.2f hora |
|
368 | label_f_hour: %.2f hora | |
369 | label_f_hour_plural: %.2f horas |
|
369 | label_f_hour_plural: %.2f horas | |
370 | label_time_tracking: Tempo trabalhado |
|
370 | label_time_tracking: Tempo trabalhado | |
371 | label_change_plural: Mudanças |
|
371 | label_change_plural: Mudanças | |
372 | label_statistics: Estatísticas |
|
372 | label_statistics: Estatísticas | |
373 | label_commits_per_month: Commits por mês |
|
373 | label_commits_per_month: Commits por mês | |
374 | label_commits_per_author: Commits por autor |
|
374 | label_commits_per_author: Commits por autor | |
375 | label_view_diff: Ver diferenças |
|
375 | label_view_diff: Ver diferenças | |
376 | label_diff_inline: inline |
|
376 | label_diff_inline: inline | |
377 | label_diff_side_by_side: lado a lado |
|
377 | label_diff_side_by_side: lado a lado | |
378 | label_options: Opções |
|
378 | label_options: Opções | |
379 | label_copy_workflow_from: Copiar workflow de |
|
379 | label_copy_workflow_from: Copiar workflow de | |
380 | label_permissions_report: Relatório de permissões |
|
380 | label_permissions_report: Relatório de permissões | |
381 | label_watched_issues: Tarefas observadas |
|
381 | label_watched_issues: Tarefas observadas | |
382 | label_related_issues: tarefas relacionadas |
|
382 | label_related_issues: tarefas relacionadas | |
383 | label_applied_status: Status aplicado |
|
383 | label_applied_status: Status aplicado | |
384 | label_loading: Carregando... |
|
384 | label_loading: Carregando... | |
385 | label_relation_new: Nova relação |
|
385 | label_relation_new: Nova relação | |
386 | label_relation_delete: Deletar relação |
|
386 | label_relation_delete: Deletar relação | |
387 | label_relates_to: relacionado à |
|
387 | label_relates_to: relacionado à | |
388 | label_duplicates: duplicadas |
|
388 | label_duplicates: duplicadas | |
389 | label_blocks: bloqueios |
|
389 | label_blocks: bloqueios | |
390 | label_blocked_by: bloqueado por |
|
390 | label_blocked_by: bloqueado por | |
391 | label_precedes: procede |
|
391 | label_precedes: procede | |
392 | label_follows: segue |
|
392 | label_follows: segue | |
393 | label_end_to_start: fim ao início |
|
393 | label_end_to_start: fim ao início | |
394 | label_end_to_end: fim ao fim |
|
394 | label_end_to_end: fim ao fim | |
395 | label_start_to_start: ínícia ao inícia |
|
395 | label_start_to_start: ínícia ao inícia | |
396 | label_start_to_end: inícia ao fim |
|
396 | label_start_to_end: inícia ao fim | |
397 | label_stay_logged_in: Rester connecté |
|
397 | label_stay_logged_in: Rester connecté | |
398 | label_disabled: désactivé |
|
398 | label_disabled: désactivé | |
399 | label_show_completed_versions: Voire les versions passées |
|
399 | label_show_completed_versions: Voire les versions passées | |
400 | label_me: me |
|
400 | label_me: me | |
401 | label_board: Forum |
|
401 | label_board: Forum | |
402 | label_board_new: New forum |
|
402 | label_board_new: New forum | |
403 | label_board_plural: Forums |
|
403 | label_board_plural: Forums | |
404 | label_topic_plural: Topics |
|
404 | label_topic_plural: Topics | |
405 | label_message_plural: Messages |
|
405 | label_message_plural: Messages | |
406 | label_message_last: Last message |
|
406 | label_message_last: Last message | |
407 | label_message_new: New message |
|
407 | label_message_new: New message | |
408 | label_reply_plural: Replies |
|
408 | label_reply_plural: Replies | |
409 | label_send_information: Send account information to the user |
|
409 | label_send_information: Send account information to the user | |
410 | label_year: Year |
|
410 | label_year: Year | |
411 | label_month: Month |
|
411 | label_month: Month | |
412 | label_week: Week |
|
412 | label_week: Week | |
413 | label_date_from: From |
|
413 | label_date_from: From | |
414 | label_date_to: To |
|
414 | label_date_to: To | |
415 | label_language_based: Language based |
|
415 | label_language_based: Language based | |
416 | label_sort_by: Sort by "%s" |
|
416 | label_sort_by: Sort by "%s" | |
417 | label_send_test_email: Send a test email |
|
417 | label_send_test_email: Send a test email | |
418 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
418 | label_feeds_access_key_created_on: RSS access key created %s ago | |
419 | label_module_plural: Modules |
|
419 | label_module_plural: Modules | |
420 | label_added_time_by: Added by %s %s ago |
|
420 | label_added_time_by: Added by %s %s ago | |
421 | label_updated_time: Updated %s ago |
|
421 | label_updated_time: Updated %s ago | |
422 | label_jump_to_a_project: Jump to a project... |
|
422 | label_jump_to_a_project: Jump to a project... | |
423 |
|
423 | |||
424 | button_login: Login |
|
424 | button_login: Login | |
425 | button_submit: Enviar |
|
425 | button_submit: Enviar | |
426 | button_save: Salvar |
|
426 | button_save: Salvar | |
427 | button_check_all: Marcar todos |
|
427 | button_check_all: Marcar todos | |
428 | button_uncheck_all: Desmarcar todos |
|
428 | button_uncheck_all: Desmarcar todos | |
429 | button_delete: Apagar |
|
429 | button_delete: Apagar | |
430 | button_create: Criar |
|
430 | button_create: Criar | |
431 | button_test: Testar |
|
431 | button_test: Testar | |
432 | button_edit: Editar |
|
432 | button_edit: Editar | |
433 | button_add: Adicionar |
|
433 | button_add: Adicionar | |
434 | button_change: Mudar |
|
434 | button_change: Mudar | |
435 | button_apply: Aplicar |
|
435 | button_apply: Aplicar | |
436 | button_clear: Limpar |
|
436 | button_clear: Limpar | |
437 | button_lock: Bloquear |
|
437 | button_lock: Bloquear | |
438 | button_unlock: Desbloquear |
|
438 | button_unlock: Desbloquear | |
439 | button_download: Download |
|
439 | button_download: Download | |
440 | button_list: Listar |
|
440 | button_list: Listar | |
441 | button_view: Ver |
|
441 | button_view: Ver | |
442 | button_move: Mover |
|
442 | button_move: Mover | |
443 | button_back: Voltar |
|
443 | button_back: Voltar | |
444 | button_cancel: Cancelar |
|
444 | button_cancel: Cancelar | |
445 | button_activate: Ativar |
|
445 | button_activate: Ativar | |
446 | button_sort: Ordenar |
|
446 | button_sort: Ordenar | |
447 | button_log_time: Tempo de trabalho |
|
447 | button_log_time: Tempo de trabalho | |
448 | button_rollback: Voltar para esta versão |
|
448 | button_rollback: Voltar para esta versão | |
449 | button_watch: Observar |
|
449 | button_watch: Observar | |
450 | button_unwatch: Não observar |
|
450 | button_unwatch: Não observar | |
451 | button_reply: Reply |
|
451 | button_reply: Reply | |
452 | button_archive: Archive |
|
452 | button_archive: Archive | |
453 | button_unarchive: Unarchive |
|
453 | button_unarchive: Unarchive | |
454 | button_reset: Reset |
|
454 | button_reset: Reset | |
455 | button_rename: Rename |
|
455 | button_rename: Rename | |
456 |
|
456 | |||
457 | status_active: ativo |
|
457 | status_active: ativo | |
458 | status_registered: registrado |
|
458 | status_registered: registrado | |
459 | status_locked: bloqueado |
|
459 | status_locked: bloqueado | |
460 |
|
460 | |||
461 | text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email |
|
461 | text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email | |
462 | text_regexp_info: ex. ^[A-Z0-9]+$ |
|
462 | text_regexp_info: ex. ^[A-Z0-9]+$ | |
463 | text_min_max_length_info: 0 siginifica sem restrição |
|
463 | text_min_max_length_info: 0 siginifica sem restrição | |
464 | text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados? |
|
464 | text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados? | |
465 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow |
|
465 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow | |
466 | text_are_you_sure: Você tem certeza ? |
|
466 | text_are_you_sure: Você tem certeza ? | |
467 | text_journal_changed: alterado de %s para %s |
|
467 | text_journal_changed: alterado de %s para %s | |
468 | text_journal_set_to: alterar para %s |
|
468 | text_journal_set_to: alterar para %s | |
469 | text_journal_deleted: apagado |
|
469 | text_journal_deleted: apagado | |
470 | text_tip_task_begin_day: tarefa começa neste dia |
|
470 | text_tip_task_begin_day: tarefa começa neste dia | |
471 | text_tip_task_end_day: tarefa termina neste dia |
|
471 | text_tip_task_end_day: tarefa termina neste dia | |
472 | text_tip_task_begin_end_day: tarefa começa e termina neste dia |
|
472 | text_tip_task_begin_end_day: tarefa começa e termina neste dia | |
473 | 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.' |
|
473 | 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.' | |
474 | text_caracters_maximum: %d móximo de caracteres |
|
474 | text_caracters_maximum: %d móximo de caracteres | |
475 | text_length_between: Tamanho entre %d e %d caracteres. |
|
475 | text_length_between: Tamanho entre %d e %d caracteres. | |
476 | text_tracker_no_workflow: Sem workflow definido para este tipo. |
|
476 | text_tracker_no_workflow: Sem workflow definido para este tipo. | |
477 | text_unallowed_characters: Caracteres não permitidos |
|
477 | text_unallowed_characters: Caracteres não permitidos | |
478 | text_comma_separated: Permitido múltiplos valores (separados por vírgula). |
|
478 | text_comma_separated: Permitido múltiplos valores (separados por vírgula). | |
479 | text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit |
|
479 | text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit | |
480 | text_issue_added: Tarefa %s foi incluída. |
|
480 | text_issue_added: Tarefa %s foi incluída. | |
481 | text_issue_updated: Tarefa %s foi alterada. |
|
481 | text_issue_updated: Tarefa %s foi alterada. | |
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
484 | text_issue_category_destroy_assignments: Remove category assignments |
|
484 | text_issue_category_destroy_assignments: Remove category assignments | |
485 | text_issue_category_reassign_to: Reassing issues to this category |
|
485 | text_issue_category_reassign_to: Reassing issues to this category | |
486 |
|
486 | |||
487 | default_role_manager: Analista de Negócio ou Gerente de Projeto |
|
487 | default_role_manager: Analista de Negócio ou Gerente de Projeto | |
488 | default_role_developper: Desenvolvedor |
|
488 | default_role_developper: Desenvolvedor | |
489 | default_role_reporter: Analista de Suporte |
|
489 | default_role_reporter: Analista de Suporte | |
490 | default_tracker_bug: Bug |
|
490 | default_tracker_bug: Bug | |
491 | default_tracker_feature: Implementaçõo |
|
491 | default_tracker_feature: Implementaçõo | |
492 | default_tracker_support: Suporte |
|
492 | default_tracker_support: Suporte | |
493 | default_issue_status_new: Novo |
|
493 | default_issue_status_new: Novo | |
494 | default_issue_status_assigned: Atribuído |
|
494 | default_issue_status_assigned: Atribuído | |
495 | default_issue_status_resolved: Resolvido |
|
495 | default_issue_status_resolved: Resolvido | |
496 | default_issue_status_feedback: Feedback |
|
496 | default_issue_status_feedback: Feedback | |
497 | default_issue_status_closed: Fechado |
|
497 | default_issue_status_closed: Fechado | |
498 | default_issue_status_rejected: Rejeitado |
|
498 | default_issue_status_rejected: Rejeitado | |
499 | default_doc_category_user: Documentação do usuário |
|
499 | default_doc_category_user: Documentação do usuário | |
500 | default_doc_category_tech: Documentação técnica |
|
500 | default_doc_category_tech: Documentação técnica | |
501 | default_priority_low: Baixo |
|
501 | default_priority_low: Baixo | |
502 | default_priority_normal: Normal |
|
502 | default_priority_normal: Normal | |
503 | default_priority_high: Alto |
|
503 | default_priority_high: Alto | |
504 | default_priority_urgent: Urgente |
|
504 | default_priority_urgent: Urgente | |
505 | default_priority_immediate: Imediato |
|
505 | default_priority_immediate: Imediato | |
506 | default_activity_design: Design |
|
506 | default_activity_design: Design | |
507 | default_activity_development: Desenvolvimento |
|
507 | default_activity_development: Desenvolvimento | |
508 |
|
508 | |||
509 | enumeration_issue_priorities: Prioridade das tarefas |
|
509 | enumeration_issue_priorities: Prioridade das tarefas | |
510 | enumeration_doc_categories: Categorias de documento |
|
510 | enumeration_doc_categories: Categorias de documento | |
511 | enumeration_activities: Atividades (time tracking) |
|
511 | enumeration_activities: Atividades (time tracking) | |
|
512 | label_file_plural: Files | |||
|
513 | label_changeset_plural: Changesets |
@@ -1,512 +1,514 | |||||
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 |
|
54 | |||
55 | notice_account_updated: Kontot har uppdaterats |
|
55 | notice_account_updated: Kontot har uppdaterats | |
56 | notice_account_invalid_creditentials: Fel användarnamn eller lösenord |
|
56 | notice_account_invalid_creditentials: Fel användarnamn eller lösenord | |
57 | notice_account_password_updated: Lösenordet har uppdaterats |
|
57 | notice_account_password_updated: Lösenordet har uppdaterats | |
58 | notice_account_wrong_password: Fel lösenord |
|
58 | notice_account_wrong_password: Fel lösenord | |
59 | notice_account_register_done: Kontot har skapats. |
|
59 | notice_account_register_done: Kontot har skapats. | |
60 | notice_account_unknown_email: Okäns användare. |
|
60 | notice_account_unknown_email: Okäns användare. | |
61 | notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord. |
|
61 | notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord. | |
62 | notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig. |
|
62 | 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_activated: Ditt konto har blivit aktiverat. Du kan nu logga in. |
|
63 | notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in. | |
64 | notice_successful_create: Lyckat skapande. |
|
64 | notice_successful_create: Lyckat skapande. | |
65 | notice_successful_update: Lyckad uppdatering. |
|
65 | notice_successful_update: Lyckad uppdatering. | |
66 | notice_successful_delete: Lyckad borttagning. |
|
66 | notice_successful_delete: Lyckad borttagning. | |
67 | notice_successful_connection: Lyckad uppkoppling. |
|
67 | notice_successful_connection: Lyckad uppkoppling. | |
68 | notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen. |
|
68 | notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen. | |
69 | notice_locking_conflict: Data har uppdaterats av en annan användare. |
|
69 | notice_locking_conflict: Data har uppdaterats av en annan användare. | |
70 | notice_scm_error: Inlägg och/eller revision finns inte i repositoriet. |
|
70 | notice_scm_error: Inlägg och/eller revision finns inte i repositoriet. | |
71 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
72 | notice_email_sent: An email was sent to %s |
|
72 | notice_email_sent: An email was sent to %s | |
73 | notice_email_error: An error occurred while sending mail (%s) |
|
73 | notice_email_error: An error occurred while sending mail (%s) | |
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
74 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
75 |
|
75 | |||
76 | mail_subject_lost_password: Ditt redMine lösenord |
|
76 | mail_subject_lost_password: Ditt redMine lösenord | |
77 | mail_subject_register: redMine kontoaktivering |
|
77 | mail_subject_register: redMine kontoaktivering | |
78 |
|
78 | |||
79 | gui_validation_error: 1 fel |
|
79 | gui_validation_error: 1 fel | |
80 | gui_validation_error_plural: %d fel |
|
80 | gui_validation_error_plural: %d fel | |
81 |
|
81 | |||
82 | field_name: Namn |
|
82 | field_name: Namn | |
83 | field_description: Beskrivning |
|
83 | field_description: Beskrivning | |
84 | field_summary: Sammanfattning |
|
84 | field_summary: Sammanfattning | |
85 | field_is_required: Obligatorisk |
|
85 | field_is_required: Obligatorisk | |
86 | field_firstname: Förnamn |
|
86 | field_firstname: Förnamn | |
87 | field_lastname: Efternamn |
|
87 | field_lastname: Efternamn | |
88 | field_mail: Email |
|
88 | field_mail: Email | |
89 | field_filename: Fil |
|
89 | field_filename: Fil | |
90 | field_filesize: Storlek |
|
90 | field_filesize: Storlek | |
91 | field_downloads: Nerladdningar |
|
91 | field_downloads: Nerladdningar | |
92 | field_author: Författare |
|
92 | field_author: Författare | |
93 | field_created_on: Skapad |
|
93 | field_created_on: Skapad | |
94 | field_updated_on: Uppdaterad |
|
94 | field_updated_on: Uppdaterad | |
95 | field_field_format: Format |
|
95 | field_field_format: Format | |
96 | field_is_for_all: För alla projekt |
|
96 | field_is_for_all: För alla projekt | |
97 | field_possible_values: Möjliga värden |
|
97 | field_possible_values: Möjliga värden | |
98 | field_regexp: Regular expression |
|
98 | field_regexp: Regular expression | |
99 | field_min_length: Minimilängd |
|
99 | field_min_length: Minimilängd | |
100 | field_max_length: Maximumlängd |
|
100 | field_max_length: Maximumlängd | |
101 | field_value: Värde |
|
101 | field_value: Värde | |
102 | field_category: Kategori |
|
102 | field_category: Kategori | |
103 | field_title: Titel |
|
103 | field_title: Titel | |
104 | field_project: Projekt |
|
104 | field_project: Projekt | |
105 | field_issue: Brist |
|
105 | field_issue: Brist | |
106 | field_status: Status |
|
106 | field_status: Status | |
107 | field_notes: Anteckningar |
|
107 | field_notes: Anteckningar | |
108 | field_is_closed: Brist stängd |
|
108 | field_is_closed: Brist stängd | |
109 | field_is_default: Defaultstatus |
|
109 | field_is_default: Defaultstatus | |
110 | field_html_color: Färg |
|
110 | field_html_color: Färg | |
111 | field_tracker: Tracker |
|
111 | field_tracker: Tracker | |
112 | field_subject: Rubrik |
|
112 | field_subject: Rubrik | |
113 | field_due_date: Färdigdatum |
|
113 | field_due_date: Färdigdatum | |
114 | field_assigned_to: Tilldelad |
|
114 | field_assigned_to: Tilldelad | |
115 | field_priority: Prioritet |
|
115 | field_priority: Prioritet | |
116 | field_fixed_version: Fixed version |
|
116 | field_fixed_version: Fixed version | |
117 | field_user: Användare |
|
117 | field_user: Användare | |
118 | field_role: Roll |
|
118 | field_role: Roll | |
119 | field_homepage: Hemsida |
|
119 | field_homepage: Hemsida | |
120 | field_is_public: Offentlig |
|
120 | field_is_public: Offentlig | |
121 | field_parent: Delprojekt av |
|
121 | field_parent: Delprojekt av | |
122 | field_is_in_chlog: Brister visade i ändringslogg |
|
122 | field_is_in_chlog: Brister visade i ändringslogg | |
123 | field_is_in_roadmap: Bsiter visade i roadmap |
|
123 | field_is_in_roadmap: Bsiter visade i roadmap | |
124 | field_login: Inloggning |
|
124 | field_login: Inloggning | |
125 | field_mail_notification: Emailnotifieringar |
|
125 | field_mail_notification: Emailnotifieringar | |
126 | field_admin: Administratör |
|
126 | field_admin: Administratör | |
127 | field_last_login_on: Senaste inloggning |
|
127 | field_last_login_on: Senaste inloggning | |
128 | field_language: Språk |
|
128 | field_language: Språk | |
129 | field_effective_date: Datum |
|
129 | field_effective_date: Datum | |
130 | field_password: Lösenord |
|
130 | field_password: Lösenord | |
131 | field_new_password: Nytt lösenord |
|
131 | field_new_password: Nytt lösenord | |
132 | field_password_confirmation: Bekräfta |
|
132 | field_password_confirmation: Bekräfta | |
133 | field_version: Version |
|
133 | field_version: Version | |
134 | field_type: Typ |
|
134 | field_type: Typ | |
135 | field_host: Värddator |
|
135 | field_host: Värddator | |
136 | field_port: Port |
|
136 | field_port: Port | |
137 | field_account: Konto |
|
137 | field_account: Konto | |
138 | field_base_dn: Bas DN |
|
138 | field_base_dn: Bas DN | |
139 | field_attr_login: Inloggningsattribut |
|
139 | field_attr_login: Inloggningsattribut | |
140 | field_attr_firstname: Förnamnattribut |
|
140 | field_attr_firstname: Förnamnattribut | |
141 | field_attr_lastname: Efternamnattribut |
|
141 | field_attr_lastname: Efternamnattribut | |
142 | field_attr_mail: Emailattribut |
|
142 | field_attr_mail: Emailattribut | |
143 | field_onthefly: On-the-fly användarskapning |
|
143 | field_onthefly: On-the-fly användarskapning | |
144 | field_start_date: Start |
|
144 | field_start_date: Start | |
145 | field_done_ratio: %% Done |
|
145 | field_done_ratio: %% Done | |
146 | field_auth_source: Authentikeringsläge |
|
146 | field_auth_source: Authentikeringsläge | |
147 | field_hide_mail: Dölj min emailadress |
|
147 | field_hide_mail: Dölj min emailadress | |
148 | field_comment: Kommentar |
|
148 | field_comment: Kommentar | |
149 | field_url: URL |
|
149 | field_url: URL | |
150 | field_start_page: Startsida |
|
150 | field_start_page: Startsida | |
151 | field_subproject: Delprojekt |
|
151 | field_subproject: Delprojekt | |
152 | field_hours: Timmar |
|
152 | field_hours: Timmar | |
153 | field_activity: Aktivitet |
|
153 | field_activity: Aktivitet | |
154 | field_spent_on: Datum |
|
154 | field_spent_on: Datum | |
155 | field_identifier: Identifierare |
|
155 | field_identifier: Identifierare | |
156 | field_is_filter: Used as a filter |
|
156 | field_is_filter: Used as a filter | |
157 | field_issue_to_id: Related issue |
|
157 | field_issue_to_id: Related issue | |
158 | field_delay: Delay |
|
158 | field_delay: Delay | |
159 | field_assignable: Issues can be assigned to this role |
|
159 | field_assignable: Issues can be assigned to this role | |
160 | field_redirect_existing_links: Redirect existing links |
|
160 | field_redirect_existing_links: Redirect existing links | |
161 | field_estimated_hours: Estimated time |
|
161 | field_estimated_hours: Estimated time | |
162 |
|
162 | |||
163 | setting_app_title: Applikationstitel |
|
163 | setting_app_title: Applikationstitel | |
164 | setting_app_subtitle: Applicationsunderrubrik |
|
164 | setting_app_subtitle: Applicationsunderrubrik | |
165 | setting_welcome_text: Välkommentext |
|
165 | setting_welcome_text: Välkommentext | |
166 | setting_default_language: Default språk |
|
166 | setting_default_language: Default språk | |
167 | setting_login_required: Authent. obligatoriskt |
|
167 | setting_login_required: Authent. obligatoriskt | |
168 | setting_self_registration: Självregistrering påslaget |
|
168 | setting_self_registration: Självregistrering påslaget | |
169 | setting_attachment_max_size: Bifogad maxstorlek |
|
169 | setting_attachment_max_size: Bifogad maxstorlek | |
170 | setting_issues_export_limit: Brist exportgräns |
|
170 | setting_issues_export_limit: Brist exportgräns | |
171 | setting_mail_from: Emailavsändare |
|
171 | setting_mail_from: Emailavsändare | |
172 | setting_host_name: Värddatornamn |
|
172 | setting_host_name: Värddatornamn | |
173 | setting_text_formatting: Textformattering |
|
173 | setting_text_formatting: Textformattering | |
174 | setting_wiki_compression: Wiki historiekomprimering |
|
174 | setting_wiki_compression: Wiki historiekomprimering | |
175 | setting_feeds_limit: Feed innehållsgräns |
|
175 | setting_feeds_limit: Feed innehållsgräns | |
176 | setting_autofetch_changesets: Automatisk hämtning av commits |
|
176 | setting_autofetch_changesets: Automatisk hämtning av commits | |
177 | setting_sys_api_enabled: Aktivera WS för repository management |
|
177 | setting_sys_api_enabled: Aktivera WS för repository management | |
178 | setting_commit_ref_keywords: Referencing keywords |
|
178 | setting_commit_ref_keywords: Referencing keywords | |
179 | setting_commit_fix_keywords: Fixing keywords |
|
179 | setting_commit_fix_keywords: Fixing keywords | |
180 | setting_autologin: Autologin |
|
180 | setting_autologin: Autologin | |
181 | setting_date_format: Date format |
|
181 | setting_date_format: Date format | |
182 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
182 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
183 |
|
183 | |||
184 | label_user: Användare |
|
184 | label_user: Användare | |
185 | label_user_plural: Användare |
|
185 | label_user_plural: Användare | |
186 | label_user_new: Ny användare |
|
186 | label_user_new: Ny användare | |
187 | label_project: Projekt |
|
187 | label_project: Projekt | |
188 | label_project_new: Nytt projekt |
|
188 | label_project_new: Nytt projekt | |
189 | label_project_plural: Projekt |
|
189 | label_project_plural: Projekt | |
190 | label_project_all: All Projects |
|
190 | label_project_all: All Projects | |
191 | label_project_latest: Senaste projekt |
|
191 | label_project_latest: Senaste projekt | |
192 | label_issue: Brist |
|
192 | label_issue: Brist | |
193 | label_issue_new: Ny brist |
|
193 | label_issue_new: Ny brist | |
194 | label_issue_plural: Brister |
|
194 | label_issue_plural: Brister | |
195 | label_issue_view_all: Visa alla brister |
|
195 | label_issue_view_all: Visa alla brister | |
196 | label_document: Dokument |
|
196 | label_document: Dokument | |
197 | label_document_new: Nytt dokument |
|
197 | label_document_new: Nytt dokument | |
198 | label_document_plural: Dokument |
|
198 | label_document_plural: Dokument | |
199 | label_role: Roll |
|
199 | label_role: Roll | |
200 | label_role_plural: Roller |
|
200 | label_role_plural: Roller | |
201 | label_role_new: Ny roll |
|
201 | label_role_new: Ny roll | |
202 | label_role_and_permissions: Roller och rättigheter |
|
202 | label_role_and_permissions: Roller och rättigheter | |
203 | label_member: Medlem |
|
203 | label_member: Medlem | |
204 | label_member_new: Ny medlem |
|
204 | label_member_new: Ny medlem | |
205 | label_member_plural: Medlemmar |
|
205 | label_member_plural: Medlemmar | |
206 | label_tracker: Tracker |
|
206 | label_tracker: Tracker | |
207 | label_tracker_plural: Trackers |
|
207 | label_tracker_plural: Trackers | |
208 | label_tracker_new: Ny tracker |
|
208 | label_tracker_new: Ny tracker | |
209 | label_workflow: Workflow |
|
209 | label_workflow: Workflow | |
210 | label_issue_status: Briststatus |
|
210 | label_issue_status: Briststatus | |
211 | label_issue_status_plural: Briststatusar |
|
211 | label_issue_status_plural: Briststatusar | |
212 | label_issue_status_new: Ny status |
|
212 | label_issue_status_new: Ny status | |
213 | label_issue_category: Bristkategori |
|
213 | label_issue_category: Bristkategori | |
214 | label_issue_category_plural: Bristkategorier |
|
214 | label_issue_category_plural: Bristkategorier | |
215 | label_issue_category_new: Ny kategori |
|
215 | label_issue_category_new: Ny kategori | |
216 | label_custom_field: Användardefinerat fält |
|
216 | label_custom_field: Användardefinerat fält | |
217 | label_custom_field_plural: Användardefinerade fält |
|
217 | label_custom_field_plural: Användardefinerade fält | |
218 | label_custom_field_new: Nytt Användardefinerat fält |
|
218 | label_custom_field_new: Nytt Användardefinerat fält | |
219 | label_enumerations: Uppräkningar |
|
219 | label_enumerations: Uppräkningar | |
220 | label_enumeration_new: Nytt värde |
|
220 | label_enumeration_new: Nytt värde | |
221 | label_information: Information |
|
221 | label_information: Information | |
222 | label_information_plural: Information |
|
222 | label_information_plural: Information | |
223 | label_please_login: Var god logga in |
|
223 | label_please_login: Var god logga in | |
224 | label_register: Registrera |
|
224 | label_register: Registrera | |
225 | label_password_lost: Glömt lösenord |
|
225 | label_password_lost: Glömt lösenord | |
226 | label_home: Hem |
|
226 | label_home: Hem | |
227 | label_my_page: Min sida |
|
227 | label_my_page: Min sida | |
228 | label_my_account: Mitt konto |
|
228 | label_my_account: Mitt konto | |
229 | label_my_projects: Mina projekt |
|
229 | label_my_projects: Mina projekt | |
230 | label_administration: Administration |
|
230 | label_administration: Administration | |
231 | label_login: Logga in |
|
231 | label_login: Logga in | |
232 | label_logout: Logga ut |
|
232 | label_logout: Logga ut | |
233 | label_help: Hjälp |
|
233 | label_help: Hjälp | |
234 | label_reported_issues: Rapporterade brister |
|
234 | label_reported_issues: Rapporterade brister | |
235 | label_assigned_to_me_issues: Brister tilldelade mig |
|
235 | label_assigned_to_me_issues: Brister tilldelade mig | |
236 | label_last_login: Senaste inloggning |
|
236 | label_last_login: Senaste inloggning | |
237 | label_last_updates: Senast uppdaterad |
|
237 | label_last_updates: Senast uppdaterad | |
238 | label_last_updates_plural: %d senaste uppdateringarna |
|
238 | label_last_updates_plural: %d senaste uppdateringarna | |
239 | label_registered_on: Registrerad |
|
239 | label_registered_on: Registrerad | |
240 | label_activity: Aktivitet |
|
240 | label_activity: Aktivitet | |
241 | label_new: Ny |
|
241 | label_new: Ny | |
242 | label_logged_as: Loggad som |
|
242 | label_logged_as: Loggad som | |
243 | label_environment: Miljö |
|
243 | label_environment: Miljö | |
244 | label_authentication: Authentikering |
|
244 | label_authentication: Authentikering | |
245 | label_auth_source: Authentikeringsläge |
|
245 | label_auth_source: Authentikeringsläge | |
246 | label_auth_source_new: Nytt authentikeringsläge |
|
246 | label_auth_source_new: Nytt authentikeringsläge | |
247 | label_auth_source_plural: Authentikeringslägen |
|
247 | label_auth_source_plural: Authentikeringslägen | |
248 | label_subproject_plural: Delprojekt |
|
248 | label_subproject_plural: Delprojekt | |
249 | label_min_max_length: Min - Max längd |
|
249 | label_min_max_length: Min - Max längd | |
250 | label_list: Lista |
|
250 | label_list: Lista | |
251 | label_date: Datum |
|
251 | label_date: Datum | |
252 | label_integer: Heltal |
|
252 | label_integer: Heltal | |
253 | label_boolean: Boolean |
|
253 | label_boolean: Boolean | |
254 | label_string: Text |
|
254 | label_string: Text | |
255 | label_text: Long text |
|
255 | label_text: Long text | |
256 | label_attribute: Attribut |
|
256 | label_attribute: Attribut | |
257 | label_attribute_plural: Attribut |
|
257 | label_attribute_plural: Attribut | |
258 | label_download: %d Nerladdning |
|
258 | label_download: %d Nerladdning | |
259 | label_download_plural: %d Nerladdningar |
|
259 | label_download_plural: %d Nerladdningar | |
260 | label_no_data: Ingen data att visa |
|
260 | label_no_data: Ingen data att visa | |
261 | label_change_status: Ändra status |
|
261 | label_change_status: Ändra status | |
262 | label_history: Historia |
|
262 | label_history: Historia | |
263 | label_attachment: Fil |
|
263 | label_attachment: Fil | |
264 | label_attachment_new: Ny fil |
|
264 | label_attachment_new: Ny fil | |
265 | label_attachment_delete: Ta bort fil |
|
265 | label_attachment_delete: Ta bort fil | |
266 | label_attachment_plural: Filer |
|
266 | label_attachment_plural: Filer | |
267 | label_report: Rapport |
|
267 | label_report: Rapport | |
268 | label_report_plural: Rapporter |
|
268 | label_report_plural: Rapporter | |
269 | label_news: Nyhet |
|
269 | label_news: Nyhet | |
270 | label_news_new: Lägg till nyhet |
|
270 | label_news_new: Lägg till nyhet | |
271 | label_news_plural: Nyheter |
|
271 | label_news_plural: Nyheter | |
272 | label_news_latest: Senaste neheten |
|
272 | label_news_latest: Senaste neheten | |
273 | label_news_view_all: Visa alla nyheter |
|
273 | label_news_view_all: Visa alla nyheter | |
274 | label_change_log: Ändringslogg |
|
274 | label_change_log: Ändringslogg | |
275 | label_settings: Inställningar |
|
275 | label_settings: Inställningar | |
276 | label_overview: Överblick |
|
276 | label_overview: Överblick | |
277 | label_version: Version |
|
277 | label_version: Version | |
278 | label_version_new: Ny version |
|
278 | label_version_new: Ny version | |
279 | label_version_plural: Versioner |
|
279 | label_version_plural: Versioner | |
280 | label_confirmation: Bekräftelse |
|
280 | label_confirmation: Bekräftelse | |
281 | label_export_to: Exportera till |
|
281 | label_export_to: Exportera till | |
282 | label_read: Läs... |
|
282 | label_read: Läs... | |
283 | label_public_projects: Offentligt projekt |
|
283 | label_public_projects: Offentligt projekt | |
284 | label_open_issues: öppen |
|
284 | label_open_issues: öppen | |
285 | label_open_issues_plural: öppna |
|
285 | label_open_issues_plural: öppna | |
286 | label_closed_issues: stängd |
|
286 | label_closed_issues: stängd | |
287 | label_closed_issues_plural: stängda |
|
287 | label_closed_issues_plural: stängda | |
288 | label_total: Total |
|
288 | label_total: Total | |
289 | label_permissions: Rättigheter |
|
289 | label_permissions: Rättigheter | |
290 | label_current_status: Nuvarande status |
|
290 | label_current_status: Nuvarande status | |
291 | label_new_statuses_allowed: Nya statusar tillåtna |
|
291 | label_new_statuses_allowed: Nya statusar tillåtna | |
292 | label_all: alla |
|
292 | label_all: alla | |
293 | label_none: inga |
|
293 | label_none: inga | |
294 | label_next: Nästa |
|
294 | label_next: Nästa | |
295 | label_previous: Föregående |
|
295 | label_previous: Föregående | |
296 | label_used_by: Använd av |
|
296 | label_used_by: Använd av | |
297 | label_details: Detaljer |
|
297 | label_details: Detaljer | |
298 | label_add_note: Lägg till anteckning |
|
298 | label_add_note: Lägg till anteckning | |
299 | label_per_page: Per sida |
|
299 | label_per_page: Per sida | |
300 | label_calendar: Kalender |
|
300 | label_calendar: Kalender | |
301 | label_months_from: månader från |
|
301 | label_months_from: månader från | |
302 | label_gantt: Gantt |
|
302 | label_gantt: Gantt | |
303 | label_internal: Intern |
|
303 | label_internal: Intern | |
304 | label_last_changes: senaste %d ändringar |
|
304 | label_last_changes: senaste %d ändringar | |
305 | label_change_view_all: Visa alla ändringar |
|
305 | label_change_view_all: Visa alla ändringar | |
306 | label_personalize_page: Anpassa denna sida |
|
306 | label_personalize_page: Anpassa denna sida | |
307 | label_comment: Kommentar |
|
307 | label_comment: Kommentar | |
308 | label_comment_plural: Kommentarer |
|
308 | label_comment_plural: Kommentarer | |
309 | label_comment_add: Lägg till kommentar |
|
309 | label_comment_add: Lägg till kommentar | |
310 | label_comment_added: Kommentar tillagd |
|
310 | label_comment_added: Kommentar tillagd | |
311 | label_comment_delete: Ta bort kommentar |
|
311 | label_comment_delete: Ta bort kommentar | |
312 | label_query: Användardefinerad fråga |
|
312 | label_query: Användardefinerad fråga | |
313 | label_query_plural: Användardefinerade frågor |
|
313 | label_query_plural: Användardefinerade frågor | |
314 | label_query_new: Ny fråga |
|
314 | label_query_new: Ny fråga | |
315 | label_filter_add: Lägg till filter |
|
315 | label_filter_add: Lägg till filter | |
316 | label_filter_plural: Filter |
|
316 | label_filter_plural: Filter | |
317 | label_equals: är |
|
317 | label_equals: är | |
318 | label_not_equals: är inte |
|
318 | label_not_equals: är inte | |
319 | label_in_less_than: i mindre än |
|
319 | label_in_less_than: i mindre än | |
320 | label_in_more_than: i mer än |
|
320 | label_in_more_than: i mer än | |
321 | label_in: i |
|
321 | label_in: i | |
322 | label_today: idag |
|
322 | label_today: idag | |
323 | label_this_week: this week |
|
323 | label_this_week: this week | |
324 | label_less_than_ago: mindre än dagar sedan |
|
324 | label_less_than_ago: mindre än dagar sedan | |
325 | label_more_than_ago: mer än dagar sedan |
|
325 | label_more_than_ago: mer än dagar sedan | |
326 | label_ago: dagar sedan |
|
326 | label_ago: dagar sedan | |
327 | label_contains: innehåller |
|
327 | label_contains: innehåller | |
328 | label_not_contains: innehåller inte |
|
328 | label_not_contains: innehåller inte | |
329 | label_day_plural: dagar |
|
329 | label_day_plural: dagar | |
330 | label_repository: Repositorie |
|
330 | label_repository: Repositorie | |
331 | label_browse: Bläddra |
|
331 | label_browse: Bläddra | |
332 | label_modification: %d ändring |
|
332 | label_modification: %d ändring | |
333 | label_modification_plural: %d ändringar |
|
333 | label_modification_plural: %d ändringar | |
334 | label_revision: Revision |
|
334 | label_revision: Revision | |
335 | label_revision_plural: Revisioner |
|
335 | label_revision_plural: Revisioner | |
336 | label_added: tillagd |
|
336 | label_added: tillagd | |
337 | label_modified: modifierad |
|
337 | label_modified: modifierad | |
338 | label_deleted: borttagen |
|
338 | label_deleted: borttagen | |
339 | label_latest_revision: Senaste revisionen |
|
339 | label_latest_revision: Senaste revisionen | |
340 | label_latest_revision_plural: Senaste revisionerna |
|
340 | label_latest_revision_plural: Senaste revisionerna | |
341 | label_view_revisions: Visa revisioner |
|
341 | label_view_revisions: Visa revisioner | |
342 | label_max_size: Maximumstorlek |
|
342 | label_max_size: Maximumstorlek | |
343 | label_on: 'på' |
|
343 | label_on: 'på' | |
344 | label_sort_highest: Flytta till top |
|
344 | label_sort_highest: Flytta till top | |
345 | label_sort_higher: Flytta up |
|
345 | label_sort_higher: Flytta up | |
346 | label_sort_lower: Flytta ner |
|
346 | label_sort_lower: Flytta ner | |
347 | label_sort_lowest: Flytta till botten |
|
347 | label_sort_lowest: Flytta till botten | |
348 | label_roadmap: Roadmap |
|
348 | label_roadmap: Roadmap | |
349 | label_roadmap_due_in: Färdig om |
|
349 | label_roadmap_due_in: Färdig om | |
350 | label_roadmap_overdue: %s late |
|
350 | label_roadmap_overdue: %s late | |
351 | label_roadmap_no_issues: Inga brister för denna version |
|
351 | label_roadmap_no_issues: Inga brister för denna version | |
352 | label_search: Sök |
|
352 | label_search: Sök | |
353 | label_result: %d resultat |
|
353 | label_result: %d resultat | |
354 | label_result_plural: %d resultat |
|
354 | label_result_plural: %d resultat | |
355 | label_all_words: Alla ord |
|
355 | label_all_words: Alla ord | |
356 | label_wiki: Wiki |
|
356 | label_wiki: Wiki | |
357 | label_wiki_edit: Wiki editera |
|
357 | label_wiki_edit: Wiki editera | |
358 | label_wiki_edit_plural: Wiki editeringar |
|
358 | label_wiki_edit_plural: Wiki editeringar | |
359 | label_wiki_page: Wiki page |
|
359 | label_wiki_page: Wiki page | |
360 | label_wiki_page_plural: Wiki pages |
|
360 | label_wiki_page_plural: Wiki pages | |
361 | label_page_index: Index |
|
361 | label_page_index: Index | |
362 | label_current_version: Nuvarande version |
|
362 | label_current_version: Nuvarande version | |
363 | label_preview: Preview |
|
363 | label_preview: Preview | |
364 | label_feed_plural: Feeder |
|
364 | label_feed_plural: Feeder | |
365 | label_changes_details: Detaljer om alla ändringar |
|
365 | label_changes_details: Detaljer om alla ändringar | |
366 | label_issue_tracking: Bristspårning |
|
366 | label_issue_tracking: Bristspårning | |
367 | label_spent_time: Spenderad tid |
|
367 | label_spent_time: Spenderad tid | |
368 | label_f_hour: %.2f timmar |
|
368 | label_f_hour: %.2f timmar | |
369 | label_f_hour_plural: %.2f timmar |
|
369 | label_f_hour_plural: %.2f timmar | |
370 | label_time_tracking: Tidsspårning |
|
370 | label_time_tracking: Tidsspårning | |
371 | label_change_plural: Ändringar |
|
371 | label_change_plural: Ändringar | |
372 | label_statistics: Statistik |
|
372 | label_statistics: Statistik | |
373 | label_commits_per_month: Commit per månad |
|
373 | label_commits_per_month: Commit per månad | |
374 | label_commits_per_author: Commit per författare |
|
374 | label_commits_per_author: Commit per författare | |
375 | label_view_diff: Visa skillnader |
|
375 | label_view_diff: Visa skillnader | |
376 | label_diff_inline: inline |
|
376 | label_diff_inline: inline | |
377 | label_diff_side_by_side: sida vid sida |
|
377 | label_diff_side_by_side: sida vid sida | |
378 | label_options: Inställningar |
|
378 | label_options: Inställningar | |
379 | label_copy_workflow_from: Kopiera workflow från |
|
379 | label_copy_workflow_from: Kopiera workflow från | |
380 | label_permissions_report: Rättighetsrapport |
|
380 | label_permissions_report: Rättighetsrapport | |
381 | label_watched_issues: Watched issues |
|
381 | label_watched_issues: Watched issues | |
382 | label_related_issues: Related issues |
|
382 | label_related_issues: Related issues | |
383 | label_applied_status: Applied status |
|
383 | label_applied_status: Applied status | |
384 | label_loading: Loading... |
|
384 | label_loading: Loading... | |
385 | label_relation_new: New relation |
|
385 | label_relation_new: New relation | |
386 | label_relation_delete: Delete relation |
|
386 | label_relation_delete: Delete relation | |
387 | label_relates_to: related to |
|
387 | label_relates_to: related to | |
388 | label_duplicates: duplicates |
|
388 | label_duplicates: duplicates | |
389 | label_blocks: blocks |
|
389 | label_blocks: blocks | |
390 | label_blocked_by: blocked by |
|
390 | label_blocked_by: blocked by | |
391 | label_precedes: precedes |
|
391 | label_precedes: precedes | |
392 | label_follows: follows |
|
392 | label_follows: follows | |
393 | label_end_to_start: end to start |
|
393 | label_end_to_start: end to start | |
394 | label_end_to_end: end to end |
|
394 | label_end_to_end: end to end | |
395 | label_start_to_start: start to start |
|
395 | label_start_to_start: start to start | |
396 | label_start_to_end: start to end |
|
396 | label_start_to_end: start to end | |
397 | label_stay_logged_in: Stay logged in |
|
397 | label_stay_logged_in: Stay logged in | |
398 | label_disabled: disabled |
|
398 | label_disabled: disabled | |
399 | label_show_completed_versions: Show completed versions |
|
399 | label_show_completed_versions: Show completed versions | |
400 | label_me: me |
|
400 | label_me: me | |
401 | label_board: Forum |
|
401 | label_board: Forum | |
402 | label_board_new: New forum |
|
402 | label_board_new: New forum | |
403 | label_board_plural: Forums |
|
403 | label_board_plural: Forums | |
404 | label_topic_plural: Topics |
|
404 | label_topic_plural: Topics | |
405 | label_message_plural: Messages |
|
405 | label_message_plural: Messages | |
406 | label_message_last: Last message |
|
406 | label_message_last: Last message | |
407 | label_message_new: New message |
|
407 | label_message_new: New message | |
408 | label_reply_plural: Replies |
|
408 | label_reply_plural: Replies | |
409 | label_send_information: Send account information to the user |
|
409 | label_send_information: Send account information to the user | |
410 | label_year: Year |
|
410 | label_year: Year | |
411 | label_month: Month |
|
411 | label_month: Month | |
412 | label_week: Week |
|
412 | label_week: Week | |
413 | label_date_from: From |
|
413 | label_date_from: From | |
414 | label_date_to: To |
|
414 | label_date_to: To | |
415 | label_language_based: Language based |
|
415 | label_language_based: Language based | |
416 | label_sort_by: Sort by "%s" |
|
416 | label_sort_by: Sort by "%s" | |
417 | label_send_test_email: Send a test email |
|
417 | label_send_test_email: Send a test email | |
418 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
418 | label_feeds_access_key_created_on: RSS access key created %s ago | |
419 | label_module_plural: Modules |
|
419 | label_module_plural: Modules | |
420 | label_added_time_by: Added by %s %s ago |
|
420 | label_added_time_by: Added by %s %s ago | |
421 | label_updated_time: Updated %s ago |
|
421 | label_updated_time: Updated %s ago | |
422 | label_jump_to_a_project: Jump to a project... |
|
422 | label_jump_to_a_project: Jump to a project... | |
423 |
|
423 | |||
424 | button_login: Logga in |
|
424 | button_login: Logga in | |
425 | button_submit: Skicka |
|
425 | button_submit: Skicka | |
426 | button_save: Spara |
|
426 | button_save: Spara | |
427 | button_check_all: Markera alla |
|
427 | button_check_all: Markera alla | |
428 | button_uncheck_all: Avmarkera alla |
|
428 | button_uncheck_all: Avmarkera alla | |
429 | button_delete: Ta bort |
|
429 | button_delete: Ta bort | |
430 | button_create: Skapa |
|
430 | button_create: Skapa | |
431 | button_test: Testa |
|
431 | button_test: Testa | |
432 | button_edit: Editera |
|
432 | button_edit: Editera | |
433 | button_add: Lägg till |
|
433 | button_add: Lägg till | |
434 | button_change: Ändra |
|
434 | button_change: Ändra | |
435 | button_apply: Värkställ |
|
435 | button_apply: Värkställ | |
436 | button_clear: Rensa |
|
436 | button_clear: Rensa | |
437 | button_lock: Lås |
|
437 | button_lock: Lås | |
438 | button_unlock: Lås upp |
|
438 | button_unlock: Lås upp | |
439 | button_download: Ladda ner |
|
439 | button_download: Ladda ner | |
440 | button_list: Lista |
|
440 | button_list: Lista | |
441 | button_view: Visa |
|
441 | button_view: Visa | |
442 | button_move: Flytta |
|
442 | button_move: Flytta | |
443 | button_back: Tillbaka |
|
443 | button_back: Tillbaka | |
444 | button_cancel: Avbryt |
|
444 | button_cancel: Avbryt | |
445 | button_activate: Aktivera |
|
445 | button_activate: Aktivera | |
446 | button_sort: Sortera |
|
446 | button_sort: Sortera | |
447 | button_log_time: Logga tid |
|
447 | button_log_time: Logga tid | |
448 | button_rollback: Rulla tillbaka till denna version |
|
448 | button_rollback: Rulla tillbaka till denna version | |
449 | button_watch: Watch |
|
449 | button_watch: Watch | |
450 | button_unwatch: Unwatch |
|
450 | button_unwatch: Unwatch | |
451 | button_reply: Reply |
|
451 | button_reply: Reply | |
452 | button_archive: Archive |
|
452 | button_archive: Archive | |
453 | button_unarchive: Unarchive |
|
453 | button_unarchive: Unarchive | |
454 | button_reset: Reset |
|
454 | button_reset: Reset | |
455 | button_rename: Rename |
|
455 | button_rename: Rename | |
456 |
|
456 | |||
457 | status_active: activ |
|
457 | status_active: activ | |
458 | status_registered: registrerad |
|
458 | status_registered: registrerad | |
459 | status_locked: låst |
|
459 | status_locked: låst | |
460 |
|
460 | |||
461 | text_select_mail_notifications: Väl action för vilka email ska skickas. |
|
461 | text_select_mail_notifications: Väl action för vilka email ska skickas. | |
462 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
462 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
463 | text_min_max_length_info: 0 betyder ingen gräns |
|
463 | text_min_max_length_info: 0 betyder ingen gräns | |
464 | text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data? |
|
464 | text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data? | |
465 | text_workflow_edit: Väl en roll och en tracker för att editera workflow. |
|
465 | text_workflow_edit: Väl en roll och en tracker för att editera workflow. | |
466 | text_are_you_sure: Är du säker? |
|
466 | text_are_you_sure: Är du säker? | |
467 | text_journal_changed: ändrad från %s till %s |
|
467 | text_journal_changed: ändrad från %s till %s | |
468 | text_journal_set_to: satt till %s |
|
468 | text_journal_set_to: satt till %s | |
469 | text_journal_deleted: borttagen |
|
469 | text_journal_deleted: borttagen | |
470 | text_tip_task_begin_day: arbetsuppgift börjar denna dag |
|
470 | text_tip_task_begin_day: arbetsuppgift börjar denna dag | |
471 | text_tip_task_end_day: arbetsuppgift slutar denna dag |
|
471 | text_tip_task_end_day: arbetsuppgift slutar denna dag | |
472 | text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag |
|
472 | text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag | |
473 | text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.' |
|
473 | text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.' | |
474 | text_caracters_maximum: %d tecken maximum. |
|
474 | text_caracters_maximum: %d tecken maximum. | |
475 | text_length_between: Längd mellan %d och %d tecken. |
|
475 | text_length_between: Längd mellan %d och %d tecken. | |
476 | text_tracker_no_workflow: Inget workflow definerat för denna tracker |
|
476 | text_tracker_no_workflow: Inget workflow definerat för denna tracker | |
477 | text_unallowed_characters: Unallowed characters |
|
477 | text_unallowed_characters: Unallowed characters | |
478 | text_comma_separated: Multiple values allowed (comma separated). |
|
478 | text_comma_separated: Multiple values allowed (comma separated). | |
479 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
479 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
480 | text_issue_added: Brist %s har rapporterats. |
|
480 | text_issue_added: Brist %s har rapporterats. | |
481 | text_issue_updated: Brist %s har uppdaterats. |
|
481 | text_issue_updated: Brist %s har uppdaterats. | |
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
482 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
483 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
484 | text_issue_category_destroy_assignments: Remove category assignments |
|
484 | text_issue_category_destroy_assignments: Remove category assignments | |
485 | text_issue_category_reassign_to: Reassing issues to this category |
|
485 | text_issue_category_reassign_to: Reassing issues to this category | |
486 |
|
486 | |||
487 | default_role_manager: Förvaltare |
|
487 | default_role_manager: Förvaltare | |
488 | default_role_developper: Utvecklare |
|
488 | default_role_developper: Utvecklare | |
489 | default_role_reporter: Rapporterare |
|
489 | default_role_reporter: Rapporterare | |
490 | default_tracker_bug: Bugg |
|
490 | default_tracker_bug: Bugg | |
491 | default_tracker_feature: Finess |
|
491 | default_tracker_feature: Finess | |
492 | default_tracker_support: Support |
|
492 | default_tracker_support: Support | |
493 | default_issue_status_new: Ny |
|
493 | default_issue_status_new: Ny | |
494 | default_issue_status_assigned: Tilldelad |
|
494 | default_issue_status_assigned: Tilldelad | |
495 | default_issue_status_resolved: Löst |
|
495 | default_issue_status_resolved: Löst | |
496 | default_issue_status_feedback: Feedback |
|
496 | default_issue_status_feedback: Feedback | |
497 | default_issue_status_closed: Stängd |
|
497 | default_issue_status_closed: Stängd | |
498 | default_issue_status_rejected: Avslagen |
|
498 | default_issue_status_rejected: Avslagen | |
499 | default_doc_category_user: Användardokumentation |
|
499 | default_doc_category_user: Användardokumentation | |
500 | default_doc_category_tech: Teknisk dokumentation |
|
500 | default_doc_category_tech: Teknisk dokumentation | |
501 | default_priority_low: Låg |
|
501 | default_priority_low: Låg | |
502 | default_priority_normal: Normal |
|
502 | default_priority_normal: Normal | |
503 | default_priority_high: Hög |
|
503 | default_priority_high: Hög | |
504 | default_priority_urgent: Bråttom |
|
504 | default_priority_urgent: Bråttom | |
505 | default_priority_immediate: Omedelbar |
|
505 | default_priority_immediate: Omedelbar | |
506 | default_activity_design: Design |
|
506 | default_activity_design: Design | |
507 | default_activity_development: Utveckling |
|
507 | default_activity_development: Utveckling | |
508 |
|
508 | |||
509 | enumeration_issue_priorities: Bristprioriteringar |
|
509 | enumeration_issue_priorities: Bristprioriteringar | |
510 | enumeration_doc_categories: Dokumentkategorier |
|
510 | enumeration_doc_categories: Dokumentkategorier | |
511 | enumeration_activities: Aktiviteter (tidsspårning) |
|
511 | enumeration_activities: Aktiviteter (tidsspårning) | |
512 | field_comments: Comment |
|
512 | field_comments: Comment | |
|
513 | label_file_plural: Files | |||
|
514 | label_changeset_plural: Changesets |
@@ -1,514 +1,516 | |||||
1 | # translated by andy wu |
|
1 | # translated by andy wu | |
2 | # email:andywu.zh@gmail.com |
|
2 | # email:andywu.zh@gmail.com | |
3 |
|
3 | |||
4 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
4 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
5 |
|
5 | |||
6 | actionview_datehelper_select_day_prefix: |
|
6 | actionview_datehelper_select_day_prefix: | |
7 | actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月 |
|
7 | actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月 | |
8 | actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二 |
|
8 | actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二 | |
9 | actionview_datehelper_select_month_prefix: |
|
9 | actionview_datehelper_select_month_prefix: | |
10 | actionview_datehelper_select_year_prefix: |
|
10 | actionview_datehelper_select_year_prefix: | |
11 | actionview_datehelper_time_in_words_day: 1 天 |
|
11 | actionview_datehelper_time_in_words_day: 1 天 | |
12 | actionview_datehelper_time_in_words_day_plural: %d 天 |
|
12 | actionview_datehelper_time_in_words_day_plural: %d 天 | |
13 | actionview_datehelper_time_in_words_hour_about: 约1小时 |
|
13 | actionview_datehelper_time_in_words_hour_about: 约1小时 | |
14 | actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时 |
|
14 | actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时 | |
15 | actionview_datehelper_time_in_words_hour_about_single: 约1小时 |
|
15 | actionview_datehelper_time_in_words_hour_about_single: 约1小时 | |
16 | actionview_datehelper_time_in_words_minute: 1分钟 |
|
16 | actionview_datehelper_time_in_words_minute: 1分钟 | |
17 | actionview_datehelper_time_in_words_minute_half: 半分钟 |
|
17 | actionview_datehelper_time_in_words_minute_half: 半分钟 | |
18 | actionview_datehelper_time_in_words_minute_less_than: 1分钟以内 |
|
18 | actionview_datehelper_time_in_words_minute_less_than: 1分钟以内 | |
19 | actionview_datehelper_time_in_words_minute_plural: %d 分钟 |
|
19 | actionview_datehelper_time_in_words_minute_plural: %d 分钟 | |
20 | actionview_datehelper_time_in_words_minute_single: 1分钟 |
|
20 | actionview_datehelper_time_in_words_minute_single: 1分钟 | |
21 | actionview_datehelper_time_in_words_second_less_than: 1秒以内 |
|
21 | actionview_datehelper_time_in_words_second_less_than: 1秒以内 | |
22 | actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内 |
|
22 | actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内 | |
23 | actionview_instancetag_blank_option: 请选择 |
|
23 | actionview_instancetag_blank_option: 请选择 | |
24 |
|
24 | |||
25 | activerecord_error_inclusion: 未包含在列表中 |
|
25 | activerecord_error_inclusion: 未包含在列表中 | |
26 | activerecord_error_exclusion: 保留的 |
|
26 | activerecord_error_exclusion: 保留的 | |
27 | activerecord_error_invalid: 无效的 |
|
27 | activerecord_error_invalid: 无效的 | |
28 | activerecord_error_confirmation: 和确认输入不匹配 |
|
28 | activerecord_error_confirmation: 和确认输入不匹配 | |
29 | activerecord_error_accepted: 必需被接受 |
|
29 | activerecord_error_accepted: 必需被接受 | |
30 | activerecord_error_empty: 不能为空 |
|
30 | activerecord_error_empty: 不能为空 | |
31 | activerecord_error_blank: 不能是空格 |
|
31 | activerecord_error_blank: 不能是空格 | |
32 | activerecord_error_too_long: 太长 |
|
32 | activerecord_error_too_long: 太长 | |
33 | activerecord_error_too_short: 太短 |
|
33 | activerecord_error_too_short: 太短 | |
34 | activerecord_error_wrong_length: 长度有问题 |
|
34 | activerecord_error_wrong_length: 长度有问题 | |
35 | activerecord_error_taken: has already been taken |
|
35 | activerecord_error_taken: has already been taken | |
36 | activerecord_error_not_a_number: 不是数字 |
|
36 | activerecord_error_not_a_number: 不是数字 | |
37 | activerecord_error_not_a_date: 不是有效的日期 |
|
37 | activerecord_error_not_a_date: 不是有效的日期 | |
38 | activerecord_error_greater_than_start_date: 必需大于开始日期 |
|
38 | activerecord_error_greater_than_start_date: 必需大于开始日期 | |
39 | activerecord_error_not_same_project: doesn't belong to the same project |
|
39 | activerecord_error_not_same_project: doesn't belong to the same project | |
40 | activerecord_error_circular_dependency: This relation would create a circular dependency |
|
40 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
41 |
|
41 | |||
42 | general_fmt_age: %d yr |
|
42 | general_fmt_age: %d yr | |
43 | general_fmt_age_plural: %d yrs |
|
43 | general_fmt_age_plural: %d yrs | |
44 | general_fmt_date: %%m/%%d/%%Y |
|
44 | general_fmt_date: %%m/%%d/%%Y | |
45 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p |
|
45 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p | |
46 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
46 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
47 | general_fmt_time: %%I:%%M %%p |
|
47 | general_fmt_time: %%I:%%M %%p | |
48 | general_text_No: '否' |
|
48 | general_text_No: '否' | |
49 | general_text_Yes: '是' |
|
49 | general_text_Yes: '是' | |
50 | general_text_no: '否' |
|
50 | general_text_no: '否' | |
51 | general_text_yes: '是' |
|
51 | general_text_yes: '是' | |
52 | general_lang_name: 'Chinese (简体中文)' |
|
52 | general_lang_name: 'Chinese (简体中文)' | |
53 | general_csv_separator: ',' |
|
53 | general_csv_separator: ',' | |
54 | general_csv_encoding: gb2312 |
|
54 | general_csv_encoding: gb2312 | |
55 | general_pdf_encoding: Big5 |
|
55 | general_pdf_encoding: Big5 | |
56 | general_day_names: 一,二,三,四,五,六,日 |
|
56 | general_day_names: 一,二,三,四,五,六,日 | |
57 |
|
57 | |||
58 | notice_account_updated: 帐户更新成功。 |
|
58 | notice_account_updated: 帐户更新成功。 | |
59 | notice_account_invalid_creditentials: 用户名或密码不正确 |
|
59 | notice_account_invalid_creditentials: 用户名或密码不正确 | |
60 | notice_account_password_updated: 成功更新口令 |
|
60 | notice_account_password_updated: 成功更新口令 | |
61 | notice_account_wrong_password: 错误的口令 |
|
61 | notice_account_wrong_password: 错误的口令 | |
62 | notice_account_register_done: 帐户已创建成功 |
|
62 | notice_account_register_done: 帐户已创建成功 | |
63 | notice_account_unknown_email: 未知用户 |
|
63 | notice_account_unknown_email: 未知用户 | |
64 | notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。 |
|
64 | notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。 | |
65 | notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导 |
|
65 | notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导 | |
66 | notice_account_activated: 您的帐号已被激活。您现在可以登录了。 |
|
66 | notice_account_activated: 您的帐号已被激活。您现在可以登录了。 | |
67 | notice_successful_create: 创建成功 |
|
67 | notice_successful_create: 创建成功 | |
68 | notice_successful_update: 更新成功 |
|
68 | notice_successful_update: 更新成功 | |
69 | notice_successful_delete: 删除成功 |
|
69 | notice_successful_delete: 删除成功 | |
70 | notice_successful_connection: 连接成功 |
|
70 | notice_successful_connection: 连接成功 | |
71 | notice_file_not_found: 您访问的页面不存在或已被删除。 |
|
71 | notice_file_not_found: 您访问的页面不存在或已被删除。 | |
72 | notice_locking_conflict: 数据已被另一个用户更新 |
|
72 | notice_locking_conflict: 数据已被另一个用户更新 | |
73 | notice_scm_error: 在版本库中不存在该条目或修订 |
|
73 | notice_scm_error: 在版本库中不存在该条目或修订 | |
74 | notice_not_authorized: You are not authorized to access this page. |
|
74 | notice_not_authorized: You are not authorized to access this page. | |
75 | notice_email_sent: An email was sent to %s |
|
75 | notice_email_sent: An email was sent to %s | |
76 | notice_email_error: An error occurred while sending mail (%s) |
|
76 | notice_email_error: An error occurred while sending mail (%s) | |
77 | notice_feeds_access_key_reseted: Your RSS access key was reseted. |
|
77 | notice_feeds_access_key_reseted: Your RSS access key was reseted. | |
78 |
|
78 | |||
79 | mail_subject_lost_password: 您的redMine口令 |
|
79 | mail_subject_lost_password: 您的redMine口令 | |
80 | mail_subject_register: redMine帐户激活 |
|
80 | mail_subject_register: redMine帐户激活 | |
81 |
|
81 | |||
82 | gui_validation_error: 1 个错误 |
|
82 | gui_validation_error: 1 个错误 | |
83 | gui_validation_error_plural: %d 个错误 |
|
83 | gui_validation_error_plural: %d 个错误 | |
84 |
|
84 | |||
85 | field_name: 名称 |
|
85 | field_name: 名称 | |
86 | field_description: 描述 |
|
86 | field_description: 描述 | |
87 | field_summary: 摘要 |
|
87 | field_summary: 摘要 | |
88 | field_is_required: 必填 |
|
88 | field_is_required: 必填 | |
89 | field_firstname: 名字 |
|
89 | field_firstname: 名字 | |
90 | field_lastname: 姓 |
|
90 | field_lastname: 姓 | |
91 | field_mail: 邮件地址 |
|
91 | field_mail: 邮件地址 | |
92 | field_filename: 文件 |
|
92 | field_filename: 文件 | |
93 | field_filesize: 大小 |
|
93 | field_filesize: 大小 | |
94 | field_downloads: 下载次数 |
|
94 | field_downloads: 下载次数 | |
95 | field_author: 作者 |
|
95 | field_author: 作者 | |
96 | field_created_on: 创建于 |
|
96 | field_created_on: 创建于 | |
97 | field_updated_on: 更新于 |
|
97 | field_updated_on: 更新于 | |
98 | field_field_format: 格式 |
|
98 | field_field_format: 格式 | |
99 | field_is_for_all: 应用于所有项目 |
|
99 | field_is_for_all: 应用于所有项目 | |
100 | field_possible_values: 可能的值 |
|
100 | field_possible_values: 可能的值 | |
101 | field_regexp: 正则表达式 |
|
101 | field_regexp: 正则表达式 | |
102 | field_min_length: 最小长度 |
|
102 | field_min_length: 最小长度 | |
103 | field_max_length: 最大长度 |
|
103 | field_max_length: 最大长度 | |
104 | field_value: 值 |
|
104 | field_value: 值 | |
105 | field_category: 分类 |
|
105 | field_category: 分类 | |
106 | field_title: 标题 |
|
106 | field_title: 标题 | |
107 | field_project: 项目 |
|
107 | field_project: 项目 | |
108 | field_issue: 任务 |
|
108 | field_issue: 任务 | |
109 | field_status: 状态 |
|
109 | field_status: 状态 | |
110 | field_notes: 说明 |
|
110 | field_notes: 说明 | |
111 | field_is_closed: 已关闭的任务 |
|
111 | field_is_closed: 已关闭的任务 | |
112 | field_is_default: 默认状态 |
|
112 | field_is_default: 默认状态 | |
113 | field_html_color: 颜色 |
|
113 | field_html_color: 颜色 | |
114 | field_tracker: 跟踪 |
|
114 | field_tracker: 跟踪 | |
115 | field_subject: 主题 |
|
115 | field_subject: 主题 | |
116 | field_due_date: 到期日 |
|
116 | field_due_date: 到期日 | |
117 | field_assigned_to: 指派 |
|
117 | field_assigned_to: 指派 | |
118 | field_priority: 优先级 |
|
118 | field_priority: 优先级 | |
119 | field_fixed_version: 修订版本 |
|
119 | field_fixed_version: 修订版本 | |
120 | field_user: 用户 |
|
120 | field_user: 用户 | |
121 | field_role: 角色 |
|
121 | field_role: 角色 | |
122 | field_homepage: 主页 |
|
122 | field_homepage: 主页 | |
123 | field_is_public: 公开 |
|
123 | field_is_public: 公开 | |
124 | field_parent: 上级项目 |
|
124 | field_parent: 上级项目 | |
125 | field_is_in_chlog: 在更新日志中显示任务 |
|
125 | field_is_in_chlog: 在更新日志中显示任务 | |
126 | field_is_in_roadmap: 在路线图中显示任务 |
|
126 | field_is_in_roadmap: 在路线图中显示任务 | |
127 | field_login: 登录名 |
|
127 | field_login: 登录名 | |
128 | field_mail_notification: 邮件通知 |
|
128 | field_mail_notification: 邮件通知 | |
129 | field_admin: 管理员 |
|
129 | field_admin: 管理员 | |
130 | field_last_login_on: 最后登录 |
|
130 | field_last_login_on: 最后登录 | |
131 | field_language: 语言 |
|
131 | field_language: 语言 | |
132 | field_effective_date: 日期 |
|
132 | field_effective_date: 日期 | |
133 | field_password: 口令 |
|
133 | field_password: 口令 | |
134 | field_new_password: 新口令 |
|
134 | field_new_password: 新口令 | |
135 | field_password_confirmation: 确认 |
|
135 | field_password_confirmation: 确认 | |
136 | field_version: 版本 |
|
136 | field_version: 版本 | |
137 | field_type: 类别 |
|
137 | field_type: 类别 | |
138 | field_host: 主机 |
|
138 | field_host: 主机 | |
139 | field_port: 端口 |
|
139 | field_port: 端口 | |
140 | field_account: 帐号 |
|
140 | field_account: 帐号 | |
141 | field_base_dn: Base DN |
|
141 | field_base_dn: Base DN | |
142 | field_attr_login: 登录名属性 |
|
142 | field_attr_login: 登录名属性 | |
143 | field_attr_firstname: 名字属性 |
|
143 | field_attr_firstname: 名字属性 | |
144 | field_attr_lastname: 姓属性 |
|
144 | field_attr_lastname: 姓属性 | |
145 | field_attr_mail: 邮件属性 |
|
145 | field_attr_mail: 邮件属性 | |
146 | field_onthefly: On-the-fly user creation |
|
146 | field_onthefly: On-the-fly user creation | |
147 | field_start_date: 开始 |
|
147 | field_start_date: 开始 | |
148 | field_done_ratio: %% 完成 |
|
148 | field_done_ratio: %% 完成 | |
149 | field_auth_source: 认证模式 |
|
149 | field_auth_source: 认证模式 | |
150 | field_hide_mail: 隐藏我的邮件 |
|
150 | field_hide_mail: 隐藏我的邮件 | |
151 | field_comments: 注释 |
|
151 | field_comments: 注释 | |
152 | field_url: URL |
|
152 | field_url: URL | |
153 | field_start_page: 起始页 |
|
153 | field_start_page: 起始页 | |
154 | field_subproject: 子项目 |
|
154 | field_subproject: 子项目 | |
155 | field_hours: Hours |
|
155 | field_hours: Hours | |
156 | field_activity: 活动 |
|
156 | field_activity: 活动 | |
157 | field_spent_on: 日期 |
|
157 | field_spent_on: 日期 | |
158 | field_identifier: Identifier |
|
158 | field_identifier: Identifier | |
159 | field_is_filter: Used as a filter |
|
159 | field_is_filter: Used as a filter | |
160 | field_issue_to_id: Related issue |
|
160 | field_issue_to_id: Related issue | |
161 | field_delay: Delay |
|
161 | field_delay: Delay | |
162 | field_assignable: Issues can be assigned to this role |
|
162 | field_assignable: Issues can be assigned to this role | |
163 | field_redirect_existing_links: Redirect existing links |
|
163 | field_redirect_existing_links: Redirect existing links | |
164 | field_estimated_hours: Estimated time |
|
164 | field_estimated_hours: Estimated time | |
165 |
|
165 | |||
166 | setting_app_title: 应用程序标题 |
|
166 | setting_app_title: 应用程序标题 | |
167 | setting_app_subtitle: 应用程序子标题 |
|
167 | setting_app_subtitle: 应用程序子标题 | |
168 | setting_welcome_text: 欢迎文字 |
|
168 | setting_welcome_text: 欢迎文字 | |
169 | setting_default_language: 默认语言 |
|
169 | setting_default_language: 默认语言 | |
170 | setting_login_required: 要求认证 |
|
170 | setting_login_required: 要求认证 | |
171 | setting_self_registration: 允许自注册 |
|
171 | setting_self_registration: 允许自注册 | |
172 | setting_attachment_max_size: 附件最大尺寸 |
|
172 | setting_attachment_max_size: 附件最大尺寸 | |
173 | setting_issues_export_limit: Issues export limit |
|
173 | setting_issues_export_limit: Issues export limit | |
174 | setting_mail_from: Emission mail address |
|
174 | setting_mail_from: Emission mail address | |
175 | setting_host_name: 主机名称 |
|
175 | setting_host_name: 主机名称 | |
176 | setting_text_formatting: 文本格式 |
|
176 | setting_text_formatting: 文本格式 | |
177 | setting_wiki_compression: Wiki history compression |
|
177 | setting_wiki_compression: Wiki history compression | |
178 | setting_feeds_limit: Feed content limit |
|
178 | setting_feeds_limit: Feed content limit | |
179 | setting_autofetch_changesets: Autofetch commits |
|
179 | setting_autofetch_changesets: Autofetch commits | |
180 | setting_sys_api_enabled: Enable WS for repository management |
|
180 | setting_sys_api_enabled: Enable WS for repository management | |
181 | setting_commit_ref_keywords: Referencing keywords |
|
181 | setting_commit_ref_keywords: Referencing keywords | |
182 | setting_commit_fix_keywords: Fixing keywords |
|
182 | setting_commit_fix_keywords: Fixing keywords | |
183 | setting_autologin: Autologin |
|
183 | setting_autologin: Autologin | |
184 | setting_date_format: Date format |
|
184 | setting_date_format: Date format | |
185 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
185 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
186 |
|
186 | |||
187 | label_user: 用户 |
|
187 | label_user: 用户 | |
188 | label_user_plural: 用户列表 |
|
188 | label_user_plural: 用户列表 | |
189 | label_user_new: 新建用户 |
|
189 | label_user_new: 新建用户 | |
190 | label_project: 项目 |
|
190 | label_project: 项目 | |
191 | label_project_new: 新建项目 |
|
191 | label_project_new: 新建项目 | |
192 | label_project_plural: 项目列表 |
|
192 | label_project_plural: 项目列表 | |
193 | label_project_all: All Projects |
|
193 | label_project_all: All Projects | |
194 | label_project_latest: 最近的项目列表 |
|
194 | label_project_latest: 最近的项目列表 | |
195 | label_issue: 任务 |
|
195 | label_issue: 任务 | |
196 | label_issue_new: 新建任务 |
|
196 | label_issue_new: 新建任务 | |
197 | label_issue_plural: 任务列表 |
|
197 | label_issue_plural: 任务列表 | |
198 | label_issue_view_all: 查看所有任务 |
|
198 | label_issue_view_all: 查看所有任务 | |
199 | label_document: 文档 |
|
199 | label_document: 文档 | |
200 | label_document_new: 新建文档 |
|
200 | label_document_new: 新建文档 | |
201 | label_document_plural: 文档列表 |
|
201 | label_document_plural: 文档列表 | |
202 | label_role: 角色 |
|
202 | label_role: 角色 | |
203 | label_role_plural: 角色列表 |
|
203 | label_role_plural: 角色列表 | |
204 | label_role_new: 新建角色 |
|
204 | label_role_new: 新建角色 | |
205 | label_role_and_permissions: 角色和权限 |
|
205 | label_role_and_permissions: 角色和权限 | |
206 | label_member: 成员 |
|
206 | label_member: 成员 | |
207 | label_member_new: 新建成员 |
|
207 | label_member_new: 新建成员 | |
208 | label_member_plural: 成员列表 |
|
208 | label_member_plural: 成员列表 | |
209 | label_tracker: 跟踪标签 |
|
209 | label_tracker: 跟踪标签 | |
210 | label_tracker_plural: 跟踪标签列表 |
|
210 | label_tracker_plural: 跟踪标签列表 | |
211 | label_tracker_new: 新建跟踪标签 |
|
211 | label_tracker_new: 新建跟踪标签 | |
212 | label_workflow: 工作流 |
|
212 | label_workflow: 工作流 | |
213 | label_issue_status: 任务状态列表 |
|
213 | label_issue_status: 任务状态列表 | |
214 | label_issue_status_plural: 任务状态列表 |
|
214 | label_issue_status_plural: 任务状态列表 | |
215 | label_issue_status_new: 新建任务状态列表 |
|
215 | label_issue_status_new: 新建任务状态列表 | |
216 | label_issue_category: 任务类别 |
|
216 | label_issue_category: 任务类别 | |
217 | label_issue_category_plural: 任务类别列表 |
|
217 | label_issue_category_plural: 任务类别列表 | |
218 | label_issue_category_new: 新建任务类别 |
|
218 | label_issue_category_new: 新建任务类别 | |
219 | label_custom_field: 自定义字段 |
|
219 | label_custom_field: 自定义字段 | |
220 | label_custom_field_plural: 自定义字段列表 |
|
220 | label_custom_field_plural: 自定义字段列表 | |
221 | label_custom_field_new: 新建自定义字段 |
|
221 | label_custom_field_new: 新建自定义字段 | |
222 | label_enumerations: 枚举列表 |
|
222 | label_enumerations: 枚举列表 | |
223 | label_enumeration_new: 新建枚举值 |
|
223 | label_enumeration_new: 新建枚举值 | |
224 | label_information: 信息 |
|
224 | label_information: 信息 | |
225 | label_information_plural: 信息 |
|
225 | label_information_plural: 信息 | |
226 | label_please_login: 请登录 |
|
226 | label_please_login: 请登录 | |
227 | label_register: 注册 |
|
227 | label_register: 注册 | |
228 | label_password_lost: 忘记口令 |
|
228 | label_password_lost: 忘记口令 | |
229 | label_home: 主页 |
|
229 | label_home: 主页 | |
230 | label_my_page: 我的工作台 |
|
230 | label_my_page: 我的工作台 | |
231 | label_my_account: 我的帐号 |
|
231 | label_my_account: 我的帐号 | |
232 | label_my_projects: 我的项目列表 |
|
232 | label_my_projects: 我的项目列表 | |
233 | label_administration: 管理 |
|
233 | label_administration: 管理 | |
234 | label_login: 登录 |
|
234 | label_login: 登录 | |
235 | label_logout: 退出 |
|
235 | label_logout: 退出 | |
236 | label_help: 帮助 |
|
236 | label_help: 帮助 | |
237 | label_reported_issues: 已报告的问题 |
|
237 | label_reported_issues: 已报告的问题 | |
238 | label_assigned_to_me_issues: 分配给我的任务 |
|
238 | label_assigned_to_me_issues: 分配给我的任务 | |
239 | label_last_login: 最后登录 |
|
239 | label_last_login: 最后登录 | |
240 | label_last_updates: 最后更新 |
|
240 | label_last_updates: 最后更新 | |
241 | label_last_updates_plural: %d 最后更新 |
|
241 | label_last_updates_plural: %d 最后更新 | |
242 | label_registered_on: 注册于 |
|
242 | label_registered_on: 注册于 | |
243 | label_activity: 活动 |
|
243 | label_activity: 活动 | |
244 | label_new: 新建 |
|
244 | label_new: 新建 | |
245 | label_logged_as: 登录为 |
|
245 | label_logged_as: 登录为 | |
246 | label_environment: 环境 |
|
246 | label_environment: 环境 | |
247 | label_authentication: 认证 |
|
247 | label_authentication: 认证 | |
248 | label_auth_source: 认证模式 |
|
248 | label_auth_source: 认证模式 | |
249 | label_auth_source_new: 新建认证模式 |
|
249 | label_auth_source_new: 新建认证模式 | |
250 | label_auth_source_plural: 认证模式列表 |
|
250 | label_auth_source_plural: 认证模式列表 | |
251 | label_subproject_plural: 子项目列表 |
|
251 | label_subproject_plural: 子项目列表 | |
252 | label_min_max_length: 最小 - 最大 长度 |
|
252 | label_min_max_length: 最小 - 最大 长度 | |
253 | label_list: list |
|
253 | label_list: list | |
254 | label_date: Date |
|
254 | label_date: Date | |
255 | label_integer: Integer |
|
255 | label_integer: Integer | |
256 | label_boolean: Boolean |
|
256 | label_boolean: Boolean | |
257 | label_string: Text |
|
257 | label_string: Text | |
258 | label_text: Long text |
|
258 | label_text: Long text | |
259 | label_attribute: 属性 |
|
259 | label_attribute: 属性 | |
260 | label_attribute_plural: 属性 |
|
260 | label_attribute_plural: 属性 | |
261 | label_download: %d 个下载次数 |
|
261 | label_download: %d 个下载次数 | |
262 | label_download_plural: %d 个下载次数 |
|
262 | label_download_plural: %d 个下载次数 | |
263 | label_no_data: 没有数据用于显示 |
|
263 | label_no_data: 没有数据用于显示 | |
264 | label_change_status: 改变状态 |
|
264 | label_change_status: 改变状态 | |
265 | label_history: 历史记录 |
|
265 | label_history: 历史记录 | |
266 | label_attachment: 文件 |
|
266 | label_attachment: 文件 | |
267 | label_attachment_new: 新建文件 |
|
267 | label_attachment_new: 新建文件 | |
268 | label_attachment_delete: 删除文件 |
|
268 | label_attachment_delete: 删除文件 | |
269 | label_attachment_plural: 文件列表 |
|
269 | label_attachment_plural: 文件列表 | |
270 | label_report: 报表 |
|
270 | label_report: 报表 | |
271 | label_report_plural: 报表列表 |
|
271 | label_report_plural: 报表列表 | |
272 | label_news: 新闻 |
|
272 | label_news: 新闻 | |
273 | label_news_new: 增加新闻 |
|
273 | label_news_new: 增加新闻 | |
274 | label_news_plural: 新闻列表 |
|
274 | label_news_plural: 新闻列表 | |
275 | label_news_latest: 最近的新闻 |
|
275 | label_news_latest: 最近的新闻 | |
276 | label_news_view_all: 查看所有新闻 |
|
276 | label_news_view_all: 查看所有新闻 | |
277 | label_change_log: 更新日志 |
|
277 | label_change_log: 更新日志 | |
278 | label_settings: 配置 |
|
278 | label_settings: 配置 | |
279 | label_overview: 概述 |
|
279 | label_overview: 概述 | |
280 | label_version: 版本 |
|
280 | label_version: 版本 | |
281 | label_version_new: 新建版本 |
|
281 | label_version_new: 新建版本 | |
282 | label_version_plural: 版本列表 |
|
282 | label_version_plural: 版本列表 | |
283 | label_confirmation: 确认 |
|
283 | label_confirmation: 确认 | |
284 | label_export_to: 导出 |
|
284 | label_export_to: 导出 | |
285 | label_read: 读取... |
|
285 | label_read: 读取... | |
286 | label_public_projects: 公开的项目列表 |
|
286 | label_public_projects: 公开的项目列表 | |
287 | label_open_issues: 打开 |
|
287 | label_open_issues: 打开 | |
288 | label_open_issues_plural: 打开 |
|
288 | label_open_issues_plural: 打开 | |
289 | label_closed_issues: 已关闭 |
|
289 | label_closed_issues: 已关闭 | |
290 | label_closed_issues_plural: 已关闭 |
|
290 | label_closed_issues_plural: 已关闭 | |
291 | label_total: 合计 |
|
291 | label_total: 合计 | |
292 | label_permissions: 权限列表 |
|
292 | label_permissions: 权限列表 | |
293 | label_current_status: 当前状态 |
|
293 | label_current_status: 当前状态 | |
294 | label_new_statuses_allowed: New statuses allowed |
|
294 | label_new_statuses_allowed: New statuses allowed | |
295 | label_all: 全部 |
|
295 | label_all: 全部 | |
296 | label_none: 无 |
|
296 | label_none: 无 | |
297 | label_next: 下一个 |
|
297 | label_next: 下一个 | |
298 | label_previous: 上一个 |
|
298 | label_previous: 上一个 | |
299 | label_used_by: 使用中 |
|
299 | label_used_by: 使用中 | |
300 | label_details: 详情 |
|
300 | label_details: 详情 | |
301 | label_add_note: 添加说明 |
|
301 | label_add_note: 添加说明 | |
302 | label_per_page: 每面 |
|
302 | label_per_page: 每面 | |
303 | label_calendar: 日历 |
|
303 | label_calendar: 日历 | |
304 | label_months_from: months from |
|
304 | label_months_from: months from | |
305 | label_gantt: 甘特图(Gantt) |
|
305 | label_gantt: 甘特图(Gantt) | |
306 | label_internal: 内部 |
|
306 | label_internal: 内部 | |
307 | label_last_changes: 最近的 %d 次更改 |
|
307 | label_last_changes: 最近的 %d 次更改 | |
308 | label_change_view_all: 查看所有更改 |
|
308 | label_change_view_all: 查看所有更改 | |
309 | label_personalize_page: 个性化定制本页 |
|
309 | label_personalize_page: 个性化定制本页 | |
310 | label_comment: 注释 |
|
310 | label_comment: 注释 | |
311 | label_comment_plural: 注释列表 |
|
311 | label_comment_plural: 注释列表 | |
312 | label_comment_add: 添加注释 |
|
312 | label_comment_add: 添加注释 | |
313 | label_comment_added: 已加入注释 |
|
313 | label_comment_added: 已加入注释 | |
314 | label_comment_delete: 删除注释 |
|
314 | label_comment_delete: 删除注释 | |
315 | label_query: 自定义查询 |
|
315 | label_query: 自定义查询 | |
316 | label_query_plural: 自定义查询列表 |
|
316 | label_query_plural: 自定义查询列表 | |
317 | label_query_new: 新建查询 |
|
317 | label_query_new: 新建查询 | |
318 | label_filter_add: 增加过滤器 |
|
318 | label_filter_add: 增加过滤器 | |
319 | label_filter_plural: 过滤器列表 |
|
319 | label_filter_plural: 过滤器列表 | |
320 | label_equals: 等于 |
|
320 | label_equals: 等于 | |
321 | label_not_equals: 不等于 |
|
321 | label_not_equals: 不等于 | |
322 | label_in_less_than: 剩余天数小于 |
|
322 | label_in_less_than: 剩余天数小于 | |
323 | label_in_more_than: 剩余天数大于 |
|
323 | label_in_more_than: 剩余天数大于 | |
324 | label_in: 剩余天数 |
|
324 | label_in: 剩余天数 | |
325 | label_today: 今天 |
|
325 | label_today: 今天 | |
326 | label_this_week: this week |
|
326 | label_this_week: this week | |
327 | label_less_than_ago: 之前天数少于 |
|
327 | label_less_than_ago: 之前天数少于 | |
328 | label_more_than_ago: 之前天数大于 |
|
328 | label_more_than_ago: 之前天数大于 | |
329 | label_ago: 之前天数 |
|
329 | label_ago: 之前天数 | |
330 | label_contains: 包含 |
|
330 | label_contains: 包含 | |
331 | label_not_contains: 不包含 |
|
331 | label_not_contains: 不包含 | |
332 | label_day_plural: 天数 |
|
332 | label_day_plural: 天数 | |
333 | label_repository: 版本库 |
|
333 | label_repository: 版本库 | |
334 | label_browse: 浏览 |
|
334 | label_browse: 浏览 | |
335 | label_modification: %d 个更新 |
|
335 | label_modification: %d 个更新 | |
336 | label_modification_plural: %d 个更新 |
|
336 | label_modification_plural: %d 个更新 | |
337 | label_revision: 修订 |
|
337 | label_revision: 修订 | |
338 | label_revision_plural: 修订 |
|
338 | label_revision_plural: 修订 | |
339 | label_added: 已增加 |
|
339 | label_added: 已增加 | |
340 | label_modified: 已修改 |
|
340 | label_modified: 已修改 | |
341 | label_deleted: 已删除 |
|
341 | label_deleted: 已删除 | |
342 | label_latest_revision: 最近的版本 |
|
342 | label_latest_revision: 最近的版本 | |
343 | label_latest_revision_plural: 最近的版本列表 |
|
343 | label_latest_revision_plural: 最近的版本列表 | |
344 | label_view_revisions: 查看修订列表 |
|
344 | label_view_revisions: 查看修订列表 | |
345 | label_max_size: 最大尺寸 |
|
345 | label_max_size: 最大尺寸 | |
346 | label_on: 'on' |
|
346 | label_on: 'on' | |
347 | label_sort_highest: 置顶 |
|
347 | label_sort_highest: 置顶 | |
348 | label_sort_higher: 上移 |
|
348 | label_sort_higher: 上移 | |
349 | label_sort_lower: 下移 |
|
349 | label_sort_lower: 下移 | |
350 | label_sort_lowest: 置底 |
|
350 | label_sort_lowest: 置底 | |
351 | label_roadmap: 路线图 |
|
351 | label_roadmap: 路线图 | |
352 | label_roadmap_due_in: Due in |
|
352 | label_roadmap_due_in: Due in | |
353 | label_roadmap_overdue: %s late |
|
353 | label_roadmap_overdue: %s late | |
354 | label_roadmap_no_issues: 该版本没有任务 |
|
354 | label_roadmap_no_issues: 该版本没有任务 | |
355 | label_search: 查找 |
|
355 | label_search: 查找 | |
356 | label_result: %d 个结果 |
|
356 | label_result: %d 个结果 | |
357 | label_result_plural: %d 个结果 |
|
357 | label_result_plural: %d 个结果 | |
358 | label_all_words: 所有单词 |
|
358 | label_all_words: 所有单词 | |
359 | label_wiki: Wiki |
|
359 | label_wiki: Wiki | |
360 | label_wiki_edit: Wiki edit |
|
360 | label_wiki_edit: Wiki edit | |
361 | label_wiki_edit_plural: Wiki edits |
|
361 | label_wiki_edit_plural: Wiki edits | |
362 | label_wiki_page_plural: Wiki pages |
|
362 | label_wiki_page_plural: Wiki pages | |
363 | label_page_index: 索引 |
|
363 | label_page_index: 索引 | |
364 | label_current_version: 当前版本 |
|
364 | label_current_version: 当前版本 | |
365 | label_preview: 预览 |
|
365 | label_preview: 预览 | |
366 | label_feed_plural: Feeds |
|
366 | label_feed_plural: Feeds | |
367 | label_changes_details: 所有更改的详情 |
|
367 | label_changes_details: 所有更改的详情 | |
368 | label_issue_tracking: 任务跟踪 |
|
368 | label_issue_tracking: 任务跟踪 | |
369 | label_spent_time: 耗时 |
|
369 | label_spent_time: 耗时 | |
370 | label_f_hour: %.2f 小时 |
|
370 | label_f_hour: %.2f 小时 | |
371 | label_f_hour_plural: %.2f 小时 |
|
371 | label_f_hour_plural: %.2f 小时 | |
372 | label_time_tracking: 时间跟踪 |
|
372 | label_time_tracking: 时间跟踪 | |
373 | label_change_plural: 更改列表 |
|
373 | label_change_plural: 更改列表 | |
374 | label_statistics: 统计 |
|
374 | label_statistics: 统计 | |
375 | label_commits_per_month: Commits per month |
|
375 | label_commits_per_month: Commits per month | |
376 | label_commits_per_author: Commits per author |
|
376 | label_commits_per_author: Commits per author | |
377 | label_view_diff: View differences |
|
377 | label_view_diff: View differences | |
378 | label_diff_inline: inline |
|
378 | label_diff_inline: inline | |
379 | label_diff_side_by_side: side by side |
|
379 | label_diff_side_by_side: side by side | |
380 | label_options: Options |
|
380 | label_options: Options | |
381 | label_copy_workflow_from: Copy workflow from |
|
381 | label_copy_workflow_from: Copy workflow from | |
382 | label_permissions_report: Permissions report |
|
382 | label_permissions_report: Permissions report | |
383 | label_watched_issues: Watched issues |
|
383 | label_watched_issues: Watched issues | |
384 | label_related_issues: Related issues |
|
384 | label_related_issues: Related issues | |
385 | label_applied_status: Applied status |
|
385 | label_applied_status: Applied status | |
386 | label_loading: Loading... |
|
386 | label_loading: Loading... | |
387 | label_relation_new: New relation |
|
387 | label_relation_new: New relation | |
388 | label_relation_delete: Delete relation |
|
388 | label_relation_delete: Delete relation | |
389 | label_relates_to: related to |
|
389 | label_relates_to: related to | |
390 | label_duplicates: duplicates |
|
390 | label_duplicates: duplicates | |
391 | label_blocks: blocks |
|
391 | label_blocks: blocks | |
392 | label_blocked_by: blocked by |
|
392 | label_blocked_by: blocked by | |
393 | label_precedes: precedes |
|
393 | label_precedes: precedes | |
394 | label_follows: follows |
|
394 | label_follows: follows | |
395 | label_end_to_start: end to start |
|
395 | label_end_to_start: end to start | |
396 | label_end_to_end: end to end |
|
396 | label_end_to_end: end to end | |
397 | label_start_to_start: start to start |
|
397 | label_start_to_start: start to start | |
398 | label_start_to_end: start to end |
|
398 | label_start_to_end: start to end | |
399 | label_stay_logged_in: Stay logged in |
|
399 | label_stay_logged_in: Stay logged in | |
400 | label_disabled: disabled |
|
400 | label_disabled: disabled | |
401 | label_show_completed_versions: Show completed versions |
|
401 | label_show_completed_versions: Show completed versions | |
402 | label_me: me |
|
402 | label_me: me | |
403 | label_board: Forum |
|
403 | label_board: Forum | |
404 | label_board_new: New forum |
|
404 | label_board_new: New forum | |
405 | label_board_plural: Forums |
|
405 | label_board_plural: Forums | |
406 | label_topic_plural: Topics |
|
406 | label_topic_plural: Topics | |
407 | label_message_plural: Messages |
|
407 | label_message_plural: Messages | |
408 | label_message_last: Last message |
|
408 | label_message_last: Last message | |
409 | label_message_new: New message |
|
409 | label_message_new: New message | |
410 | label_reply_plural: Replies |
|
410 | label_reply_plural: Replies | |
411 | label_send_information: Send account information to the user |
|
411 | label_send_information: Send account information to the user | |
412 | label_year: Year |
|
412 | label_year: Year | |
413 | label_month: Month |
|
413 | label_month: Month | |
414 | label_week: Week |
|
414 | label_week: Week | |
415 | label_date_from: From |
|
415 | label_date_from: From | |
416 | label_date_to: To |
|
416 | label_date_to: To | |
417 | label_language_based: Language based |
|
417 | label_language_based: Language based | |
418 | label_sort_by: Sort by "%s" |
|
418 | label_sort_by: Sort by "%s" | |
419 | label_send_test_email: Send a test email |
|
419 | label_send_test_email: Send a test email | |
420 | label_feeds_access_key_created_on: RSS access key created %s ago |
|
420 | label_feeds_access_key_created_on: RSS access key created %s ago | |
421 | label_module_plural: Modules |
|
421 | label_module_plural: Modules | |
422 | label_added_time_by: Added by %s %s ago |
|
422 | label_added_time_by: Added by %s %s ago | |
423 | label_updated_time: Updated %s ago |
|
423 | label_updated_time: Updated %s ago | |
424 | label_jump_to_a_project: Jump to a project... |
|
424 | label_jump_to_a_project: Jump to a project... | |
425 |
|
425 | |||
426 | button_login: 登录 |
|
426 | button_login: 登录 | |
427 | button_submit: 提交 |
|
427 | button_submit: 提交 | |
428 | button_save: 保存 |
|
428 | button_save: 保存 | |
429 | button_check_all: 全选 |
|
429 | button_check_all: 全选 | |
430 | button_uncheck_all: 清除 |
|
430 | button_uncheck_all: 清除 | |
431 | button_delete: 删除 |
|
431 | button_delete: 删除 | |
432 | button_create: 创建 |
|
432 | button_create: 创建 | |
433 | button_test: 测试 |
|
433 | button_test: 测试 | |
434 | button_edit: 编辑 |
|
434 | button_edit: 编辑 | |
435 | button_add: 新增 |
|
435 | button_add: 新增 | |
436 | button_change: 修改 |
|
436 | button_change: 修改 | |
437 | button_apply: 应用 |
|
437 | button_apply: 应用 | |
438 | button_clear: 清除 |
|
438 | button_clear: 清除 | |
439 | button_lock: 锁定 |
|
439 | button_lock: 锁定 | |
440 | button_unlock: 解锁 |
|
440 | button_unlock: 解锁 | |
441 | button_download: 下载 |
|
441 | button_download: 下载 | |
442 | button_list: 列表 |
|
442 | button_list: 列表 | |
443 | button_view: 查看 |
|
443 | button_view: 查看 | |
444 | button_move: 移动 |
|
444 | button_move: 移动 | |
445 | button_back: 返回 |
|
445 | button_back: 返回 | |
446 | button_cancel: 取消 |
|
446 | button_cancel: 取消 | |
447 | button_activate: 激活 |
|
447 | button_activate: 激活 | |
448 | button_sort: 排序 |
|
448 | button_sort: 排序 | |
449 | button_log_time: 登记工时 |
|
449 | button_log_time: 登记工时 | |
450 | button_rollback: Rollback to this version |
|
450 | button_rollback: Rollback to this version | |
451 | button_watch: Watch |
|
451 | button_watch: Watch | |
452 | button_unwatch: Unwatch |
|
452 | button_unwatch: Unwatch | |
453 | button_reply: Reply |
|
453 | button_reply: Reply | |
454 | button_archive: Archive |
|
454 | button_archive: Archive | |
455 | button_unarchive: Unarchive |
|
455 | button_unarchive: Unarchive | |
456 | button_reset: Reset |
|
456 | button_reset: Reset | |
457 | button_rename: Rename |
|
457 | button_rename: Rename | |
458 |
|
458 | |||
459 | status_active: 激活 |
|
459 | status_active: 激活 | |
460 | status_registered: 已注册 |
|
460 | status_registered: 已注册 | |
461 | status_locked: 已锁定 |
|
461 | status_locked: 已锁定 | |
462 |
|
462 | |||
463 | text_select_mail_notifications: 选择需要发送邮件通知的动作。 |
|
463 | text_select_mail_notifications: 选择需要发送邮件通知的动作。 | |
464 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
464 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
465 | text_min_max_length_info: 0 表示没有限制 |
|
465 | text_min_max_length_info: 0 表示没有限制 | |
466 | text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗? |
|
466 | text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗? | |
467 | text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流 |
|
467 | text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流 | |
468 | text_are_you_sure: 您确定? |
|
468 | text_are_you_sure: 您确定? | |
469 | text_journal_changed: 从 %s 更改为 %s |
|
469 | text_journal_changed: 从 %s 更改为 %s | |
470 | text_journal_set_to: 设置为 %s |
|
470 | text_journal_set_to: 设置为 %s | |
471 | text_journal_deleted: 已删除 |
|
471 | text_journal_deleted: 已删除 | |
472 | text_tip_task_begin_day: 开始于此 |
|
472 | text_tip_task_begin_day: 开始于此 | |
473 | text_tip_task_end_day: 在此结束 |
|
473 | text_tip_task_end_day: 在此结束 | |
474 | text_tip_task_begin_end_day: 开始并结束于此 |
|
474 | text_tip_task_begin_end_day: 开始并结束于此 | |
475 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
475 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' | |
476 | text_caracters_maximum: %d characters maximum. |
|
476 | text_caracters_maximum: %d characters maximum. | |
477 | text_length_between: Length between %d and %d characters. |
|
477 | text_length_between: Length between %d and %d characters. | |
478 | text_tracker_no_workflow: No workflow defined for this tracker |
|
478 | text_tracker_no_workflow: No workflow defined for this tracker | |
479 | text_unallowed_characters: Unallowed characters |
|
479 | text_unallowed_characters: Unallowed characters | |
480 | text_comma_separated: Multiple values allowed (comma separated). |
|
480 | text_comma_separated: Multiple values allowed (comma separated). | |
481 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
481 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
482 | text_issue_added: %s ѱ |
|
482 | text_issue_added: %s ѱ | |
483 | text_issue_updated: %s Ѹ |
|
483 | text_issue_updated: %s Ѹ | |
484 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
484 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? | |
485 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? |
|
485 | text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ? | |
486 | text_issue_category_destroy_assignments: Remove category assignments |
|
486 | text_issue_category_destroy_assignments: Remove category assignments | |
487 | text_issue_category_reassign_to: Reassing issues to this category |
|
487 | text_issue_category_reassign_to: Reassing issues to this category | |
488 |
|
488 | |||
489 | default_role_manager: 管理员 |
|
489 | default_role_manager: 管理员 | |
490 | default_role_developper: 开发人员 |
|
490 | default_role_developper: 开发人员 | |
491 | default_role_reporter: 报告人员 |
|
491 | default_role_reporter: 报告人员 | |
492 | default_tracker_bug: 问题 |
|
492 | default_tracker_bug: 问题 | |
493 | default_tracker_feature: 功能 |
|
493 | default_tracker_feature: 功能 | |
494 | default_tracker_support: 支持 |
|
494 | default_tracker_support: 支持 | |
495 | default_issue_status_new: 新建 |
|
495 | default_issue_status_new: 新建 | |
496 | default_issue_status_assigned: 已分配 |
|
496 | default_issue_status_assigned: 已分配 | |
497 | default_issue_status_resolved: 已解决 |
|
497 | default_issue_status_resolved: 已解决 | |
498 | default_issue_status_feedback: 回复 |
|
498 | default_issue_status_feedback: 回复 | |
499 | default_issue_status_closed: 已关闭 |
|
499 | default_issue_status_closed: 已关闭 | |
500 | default_issue_status_rejected: 已打回 |
|
500 | default_issue_status_rejected: 已打回 | |
501 | default_doc_category_user: 用户文档 |
|
501 | default_doc_category_user: 用户文档 | |
502 | default_doc_category_tech: 技术文档 |
|
502 | default_doc_category_tech: 技术文档 | |
503 | default_priority_low: 低 |
|
503 | default_priority_low: 低 | |
504 | default_priority_normal: 普通 |
|
504 | default_priority_normal: 普通 | |
505 | default_priority_high: 高 |
|
505 | default_priority_high: 高 | |
506 | default_priority_urgent: 紧急 |
|
506 | default_priority_urgent: 紧急 | |
507 | default_priority_immediate: 立刻 |
|
507 | default_priority_immediate: 立刻 | |
508 | default_activity_design: 设计 |
|
508 | default_activity_design: 设计 | |
509 | default_activity_development: 开发 |
|
509 | default_activity_development: 开发 | |
510 |
|
510 | |||
511 | enumeration_issue_priorities: 任务优先级 |
|
511 | enumeration_issue_priorities: 任务优先级 | |
512 | enumeration_doc_categories: 文档类别 |
|
512 | enumeration_doc_categories: 文档类别 | |
513 | enumeration_activities: Activities (time tracking) |
|
513 | enumeration_activities: Activities (time tracking) | |
514 | label_wiki_page: Wiki page |
|
514 | label_wiki_page: Wiki page | |
|
515 | label_file_plural: Files | |||
|
516 | label_changeset_plural: Changesets |
General Comments 0
You need to be logged in to leave comments.
Login now