##// END OF EJS Templates
Fixed: 10342 Creation of Schema in Oracle...
Jean-Philippe Lang -
r476:52547466f0f1
parent child
Show More
@@ -0,0 +1,13
1 class RenameCommentToComments < ActiveRecord::Migration
2 def self.up
3 rename_column(:comments, :comment, :comments) if ActiveRecord::Base.connection.columns("comments").detect{|c| c.name == "comment"}
4 rename_column(:wiki_contents, :comment, :comments) if ActiveRecord::Base.connection.columns("wiki_contents").detect{|c| c.name == "comment"}
5 rename_column(:wiki_content_versions, :comment, :comments) if ActiveRecord::Base.connection.columns("wiki_content_versions").detect{|c| c.name == "comment"}
6 rename_column(:time_entries, :comment, :comments) if ActiveRecord::Base.connection.columns("time_entries").detect{|c| c.name == "comment"}
7 rename_column(:changesets, :comment, :comments) if ActiveRecord::Base.connection.columns("changesets").detect{|c| c.name == "comment"}
8 end
9
10 def self.down
11 raise IrreversibleMigration
12 end
13 end
@@ -1,691 +1,691
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, :authorize, :except => [ :index, :list, :add ]
22 before_filter :find_project, :authorize, :except => [ :index, :list, :add ]
23 before_filter :require_admin, :only => [ :add, :destroy ]
23 before_filter :require_admin, :only => [ :add, :destroy ]
24
24
25 helper :sort
25 helper :sort
26 include SortHelper
26 include SortHelper
27 helper :custom_fields
27 helper :custom_fields
28 include CustomFieldsHelper
28 include CustomFieldsHelper
29 helper :ifpdf
29 helper :ifpdf
30 include IfpdfHelper
30 include IfpdfHelper
31 helper IssuesHelper
31 helper IssuesHelper
32 helper :queries
32 helper :queries
33 include QueriesHelper
33 include QueriesHelper
34
34
35 def index
35 def index
36 list
36 list
37 render :action => 'list' unless request.xhr?
37 render :action => 'list' unless request.xhr?
38 end
38 end
39
39
40 # Lists public projects
40 # Lists public projects
41 def list
41 def list
42 sort_init "#{Project.table_name}.name", "asc"
42 sort_init "#{Project.table_name}.name", "asc"
43 sort_update
43 sort_update
44 @project_count = Project.count(:all, :conditions => Project.visible_by(logged_in_user))
44 @project_count = Project.count(:all, :conditions => Project.visible_by(logged_in_user))
45 @project_pages = Paginator.new self, @project_count,
45 @project_pages = Paginator.new self, @project_count,
46 15,
46 15,
47 params['page']
47 params['page']
48 @projects = Project.find :all, :order => sort_clause,
48 @projects = Project.find :all, :order => sort_clause,
49 :conditions => Project.visible_by(logged_in_user),
49 :conditions => Project.visible_by(logged_in_user),
50 :include => :parent,
50 :include => :parent,
51 :limit => @project_pages.items_per_page,
51 :limit => @project_pages.items_per_page,
52 :offset => @project_pages.current.offset
52 :offset => @project_pages.current.offset
53
53
54 render :action => "list", :layout => false if request.xhr?
54 render :action => "list", :layout => false if request.xhr?
55 end
55 end
56
56
57 # Add a new project
57 # Add a new project
58 def add
58 def add
59 @custom_fields = IssueCustomField.find(:all)
59 @custom_fields = IssueCustomField.find(:all)
60 @root_projects = Project.find(:all, :conditions => "parent_id is null")
60 @root_projects = Project.find(:all, :conditions => "parent_id is null")
61 @project = Project.new(params[:project])
61 @project = Project.new(params[:project])
62 if request.get?
62 if request.get?
63 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project) }
63 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project) }
64 else
64 else
65 @project.custom_fields = CustomField.find(params[:custom_field_ids]) if params[:custom_field_ids]
65 @project.custom_fields = CustomField.find(params[:custom_field_ids]) if params[:custom_field_ids]
66 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) }
66 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) }
67 @project.custom_values = @custom_values
67 @project.custom_values = @custom_values
68 if params[:repository_enabled] && params[:repository_enabled] == "1"
68 if params[:repository_enabled] && params[:repository_enabled] == "1"
69 @project.repository = Repository.new
69 @project.repository = Repository.new
70 @project.repository.attributes = params[:repository]
70 @project.repository.attributes = params[:repository]
71 end
71 end
72 if "1" == params[:wiki_enabled]
72 if "1" == params[:wiki_enabled]
73 @project.wiki = Wiki.new
73 @project.wiki = Wiki.new
74 @project.wiki.attributes = params[:wiki]
74 @project.wiki.attributes = params[:wiki]
75 end
75 end
76 if @project.save
76 if @project.save
77 flash[:notice] = l(:notice_successful_create)
77 flash[:notice] = l(:notice_successful_create)
78 redirect_to :controller => 'admin', :action => 'projects'
78 redirect_to :controller => 'admin', :action => 'projects'
79 end
79 end
80 end
80 end
81 end
81 end
82
82
83 # Show @project
83 # Show @project
84 def show
84 def show
85 @custom_values = @project.custom_values.find(:all, :include => :custom_field)
85 @custom_values = @project.custom_values.find(:all, :include => :custom_field)
86 @members_by_role = @project.members.find(:all, :include => [:user, :role], :order => 'position').group_by {|m| m.role}
86 @members_by_role = @project.members.find(:all, :include => [:user, :role], :order => 'position').group_by {|m| m.role}
87 @subprojects = @project.children if @project.children.size > 0
87 @subprojects = @project.children if @project.children.size > 0
88 @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC")
88 @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC")
89 @trackers = Tracker.find(:all, :order => 'position')
89 @trackers = Tracker.find(:all, :order => 'position')
90 @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])
90 @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])
91 @total_issues_by_tracker = Issue.count(:group => :tracker, :conditions => ["project_id=?", @project.id])
91 @total_issues_by_tracker = Issue.count(:group => :tracker, :conditions => ["project_id=?", @project.id])
92 end
92 end
93
93
94 def settings
94 def settings
95 @root_projects = Project::find(:all, :conditions => ["parent_id is null and id <> ?", @project.id])
95 @root_projects = Project::find(:all, :conditions => ["parent_id is null and id <> ?", @project.id])
96 @custom_fields = IssueCustomField.find(:all)
96 @custom_fields = IssueCustomField.find(:all)
97 @issue_category ||= IssueCategory.new
97 @issue_category ||= IssueCategory.new
98 @member ||= @project.members.new
98 @member ||= @project.members.new
99 @roles = Role.find(:all, :order => 'position')
99 @roles = Role.find(:all, :order => 'position')
100 @users = User.find_active(:all) - @project.users
100 @users = User.find_active(:all) - @project.users
101 @custom_values ||= ProjectCustomField.find(:all).collect { |x| @project.custom_values.find_by_custom_field_id(x.id) || CustomValue.new(:custom_field => x) }
101 @custom_values ||= ProjectCustomField.find(:all).collect { |x| @project.custom_values.find_by_custom_field_id(x.id) || CustomValue.new(:custom_field => x) }
102 end
102 end
103
103
104 # Edit @project
104 # Edit @project
105 def edit
105 def edit
106 if request.post?
106 if request.post?
107 @project.custom_fields = IssueCustomField.find(params[:custom_field_ids]) if params[:custom_field_ids]
107 @project.custom_fields = IssueCustomField.find(params[:custom_field_ids]) if params[:custom_field_ids]
108 if params[:custom_fields]
108 if params[:custom_fields]
109 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) }
109 @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) }
110 @project.custom_values = @custom_values
110 @project.custom_values = @custom_values
111 end
111 end
112 if params[:repository_enabled]
112 if params[:repository_enabled]
113 case params[:repository_enabled]
113 case params[:repository_enabled]
114 when "0"
114 when "0"
115 @project.repository = nil
115 @project.repository = nil
116 when "1"
116 when "1"
117 @project.repository ||= Repository.new
117 @project.repository ||= Repository.new
118 @project.repository.update_attributes params[:repository]
118 @project.repository.update_attributes params[:repository]
119 end
119 end
120 end
120 end
121 if params[:wiki_enabled]
121 if params[:wiki_enabled]
122 case params[:wiki_enabled]
122 case params[:wiki_enabled]
123 when "0"
123 when "0"
124 @project.wiki.destroy if @project.wiki
124 @project.wiki.destroy if @project.wiki
125 when "1"
125 when "1"
126 @project.wiki ||= Wiki.new
126 @project.wiki ||= Wiki.new
127 @project.wiki.update_attributes params[:wiki]
127 @project.wiki.update_attributes params[:wiki]
128 end
128 end
129 end
129 end
130 @project.attributes = params[:project]
130 @project.attributes = params[:project]
131 if @project.save
131 if @project.save
132 flash[:notice] = l(:notice_successful_update)
132 flash[:notice] = l(:notice_successful_update)
133 redirect_to :action => 'settings', :id => @project
133 redirect_to :action => 'settings', :id => @project
134 else
134 else
135 settings
135 settings
136 render :action => 'settings'
136 render :action => 'settings'
137 end
137 end
138 end
138 end
139 end
139 end
140
140
141 # Delete @project
141 # Delete @project
142 def destroy
142 def destroy
143 if request.post? and params[:confirm]
143 if request.post? and params[:confirm]
144 @project.destroy
144 @project.destroy
145 redirect_to :controller => 'admin', :action => 'projects'
145 redirect_to :controller => 'admin', :action => 'projects'
146 end
146 end
147 end
147 end
148
148
149 # Add a new issue category to @project
149 # Add a new issue category to @project
150 def add_issue_category
150 def add_issue_category
151 if request.post?
151 if request.post?
152 @issue_category = @project.issue_categories.build(params[:issue_category])
152 @issue_category = @project.issue_categories.build(params[:issue_category])
153 if @issue_category.save
153 if @issue_category.save
154 flash[:notice] = l(:notice_successful_create)
154 flash[:notice] = l(:notice_successful_create)
155 redirect_to :action => 'settings', :tab => 'categories', :id => @project
155 redirect_to :action => 'settings', :tab => 'categories', :id => @project
156 else
156 else
157 settings
157 settings
158 render :action => 'settings'
158 render :action => 'settings'
159 end
159 end
160 end
160 end
161 end
161 end
162
162
163 # Add a new version to @project
163 # Add a new version to @project
164 def add_version
164 def add_version
165 @version = @project.versions.build(params[:version])
165 @version = @project.versions.build(params[:version])
166 if request.post? and @version.save
166 if request.post? and @version.save
167 flash[:notice] = l(:notice_successful_create)
167 flash[:notice] = l(:notice_successful_create)
168 redirect_to :action => 'settings', :tab => 'versions', :id => @project
168 redirect_to :action => 'settings', :tab => 'versions', :id => @project
169 end
169 end
170 end
170 end
171
171
172 # Add a new member to @project
172 # Add a new member to @project
173 def add_member
173 def add_member
174 @member = @project.members.build(params[:member])
174 @member = @project.members.build(params[:member])
175 if request.post?
175 if request.post?
176 if @member.save
176 if @member.save
177 flash[:notice] = l(:notice_successful_create)
177 flash[:notice] = l(:notice_successful_create)
178 redirect_to :action => 'settings', :tab => 'members', :id => @project
178 redirect_to :action => 'settings', :tab => 'members', :id => @project
179 else
179 else
180 settings
180 settings
181 render :action => 'settings'
181 render :action => 'settings'
182 end
182 end
183 end
183 end
184 end
184 end
185
185
186 # Show members list of @project
186 # Show members list of @project
187 def list_members
187 def list_members
188 @members = @project.members.find(:all)
188 @members = @project.members.find(:all)
189 end
189 end
190
190
191 # Add a new document to @project
191 # Add a new document to @project
192 def add_document
192 def add_document
193 @categories = Enumeration::get_values('DCAT')
193 @categories = Enumeration::get_values('DCAT')
194 @document = @project.documents.build(params[:document])
194 @document = @project.documents.build(params[:document])
195 if request.post? and @document.save
195 if request.post? and @document.save
196 # Save the attachments
196 # Save the attachments
197 params[:attachments].each { |a|
197 params[:attachments].each { |a|
198 Attachment.create(:container => @document, :file => a, :author => logged_in_user) unless a.size == 0
198 Attachment.create(:container => @document, :file => a, :author => logged_in_user) unless a.size == 0
199 } if params[:attachments] and params[:attachments].is_a? Array
199 } if params[:attachments] and params[:attachments].is_a? Array
200 flash[:notice] = l(:notice_successful_create)
200 flash[:notice] = l(:notice_successful_create)
201 Mailer.deliver_document_add(@document) if Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled?
201 Mailer.deliver_document_add(@document) if Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled?
202 redirect_to :action => 'list_documents', :id => @project
202 redirect_to :action => 'list_documents', :id => @project
203 end
203 end
204 end
204 end
205
205
206 # Show documents list of @project
206 # Show documents list of @project
207 def list_documents
207 def list_documents
208 @documents = @project.documents.find :all, :include => :category
208 @documents = @project.documents.find :all, :include => :category
209 end
209 end
210
210
211 # Add a new issue to @project
211 # Add a new issue to @project
212 def add_issue
212 def add_issue
213 @tracker = Tracker.find(params[:tracker_id])
213 @tracker = Tracker.find(params[:tracker_id])
214 @priorities = Enumeration::get_values('IPRI')
214 @priorities = Enumeration::get_values('IPRI')
215
215
216 default_status = IssueStatus.default
216 default_status = IssueStatus.default
217 @issue = Issue.new(:project => @project, :tracker => @tracker)
217 @issue = Issue.new(:project => @project, :tracker => @tracker)
218 @issue.status = default_status
218 @issue.status = default_status
219 @allowed_statuses = ([default_status] + default_status.find_new_statuses_allowed_to(logged_in_user.role_for_project(@project), @issue.tracker))if logged_in_user
219 @allowed_statuses = ([default_status] + default_status.find_new_statuses_allowed_to(logged_in_user.role_for_project(@project), @issue.tracker))if logged_in_user
220 if request.get?
220 if request.get?
221 @issue.start_date = Date.today
221 @issue.start_date = Date.today
222 @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue) }
222 @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue) }
223 else
223 else
224 @issue.attributes = params[:issue]
224 @issue.attributes = params[:issue]
225
225
226 requested_status = IssueStatus.find_by_id(params[:issue][:status_id])
226 requested_status = IssueStatus.find_by_id(params[:issue][:status_id])
227 @issue.status = (@allowed_statuses.include? requested_status) ? requested_status : default_status
227 @issue.status = (@allowed_statuses.include? requested_status) ? requested_status : default_status
228
228
229 @issue.author_id = self.logged_in_user.id if self.logged_in_user
229 @issue.author_id = self.logged_in_user.id if self.logged_in_user
230 # Multiple file upload
230 # Multiple file upload
231 @attachments = []
231 @attachments = []
232 params[:attachments].each { |a|
232 params[:attachments].each { |a|
233 @attachments << Attachment.new(:container => @issue, :file => a, :author => logged_in_user) unless a.size == 0
233 @attachments << Attachment.new(:container => @issue, :file => a, :author => logged_in_user) unless a.size == 0
234 } if params[:attachments] and params[:attachments].is_a? Array
234 } if params[:attachments] and params[:attachments].is_a? Array
235 @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]) }
235 @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]) }
236 @issue.custom_values = @custom_values
236 @issue.custom_values = @custom_values
237 if @issue.save
237 if @issue.save
238 @attachments.each(&:save)
238 @attachments.each(&:save)
239 flash[:notice] = l(:notice_successful_create)
239 flash[:notice] = l(:notice_successful_create)
240 Mailer.deliver_issue_add(@issue) if Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled?
240 Mailer.deliver_issue_add(@issue) if Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled?
241 redirect_to :action => 'list_issues', :id => @project
241 redirect_to :action => 'list_issues', :id => @project
242 end
242 end
243 end
243 end
244 end
244 end
245
245
246 # Show filtered/sorted issues list of @project
246 # Show filtered/sorted issues list of @project
247 def list_issues
247 def list_issues
248 sort_init "#{Issue.table_name}.id", "desc"
248 sort_init "#{Issue.table_name}.id", "desc"
249 sort_update
249 sort_update
250
250
251 retrieve_query
251 retrieve_query
252
252
253 @results_per_page_options = [ 15, 25, 50, 100 ]
253 @results_per_page_options = [ 15, 25, 50, 100 ]
254 if params[:per_page] and @results_per_page_options.include? params[:per_page].to_i
254 if params[:per_page] and @results_per_page_options.include? params[:per_page].to_i
255 @results_per_page = params[:per_page].to_i
255 @results_per_page = params[:per_page].to_i
256 session[:results_per_page] = @results_per_page
256 session[:results_per_page] = @results_per_page
257 else
257 else
258 @results_per_page = session[:results_per_page] || 25
258 @results_per_page = session[:results_per_page] || 25
259 end
259 end
260
260
261 if @query.valid?
261 if @query.valid?
262 @issue_count = Issue.count(:include => [:status, :project, :custom_values], :conditions => @query.statement)
262 @issue_count = Issue.count(:include => [:status, :project, :custom_values], :conditions => @query.statement)
263 @issue_pages = Paginator.new self, @issue_count, @results_per_page, params['page']
263 @issue_pages = Paginator.new self, @issue_count, @results_per_page, params['page']
264 @issues = Issue.find :all, :order => sort_clause,
264 @issues = Issue.find :all, :order => sort_clause,
265 :include => [ :assigned_to, :status, :tracker, :project, :priority, :custom_values ],
265 :include => [ :assigned_to, :status, :tracker, :project, :priority, :custom_values ],
266 :conditions => @query.statement,
266 :conditions => @query.statement,
267 :limit => @issue_pages.items_per_page,
267 :limit => @issue_pages.items_per_page,
268 :offset => @issue_pages.current.offset
268 :offset => @issue_pages.current.offset
269 end
269 end
270 @trackers = Tracker.find :all, :order => 'position'
270 @trackers = Tracker.find :all, :order => 'position'
271 render :layout => false if request.xhr?
271 render :layout => false if request.xhr?
272 end
272 end
273
273
274 # Export filtered/sorted issues list to CSV
274 # Export filtered/sorted issues list to CSV
275 def export_issues_csv
275 def export_issues_csv
276 sort_init "#{Issue.table_name}.id", "desc"
276 sort_init "#{Issue.table_name}.id", "desc"
277 sort_update
277 sort_update
278
278
279 retrieve_query
279 retrieve_query
280 render :action => 'list_issues' and return unless @query.valid?
280 render :action => 'list_issues' and return unless @query.valid?
281
281
282 @issues = Issue.find :all, :order => sort_clause,
282 @issues = Issue.find :all, :order => sort_clause,
283 :include => [ :assigned_to, :author, :status, :tracker, :priority, {:custom_values => :custom_field} ],
283 :include => [ :assigned_to, :author, :status, :tracker, :priority, {:custom_values => :custom_field} ],
284 :conditions => @query.statement,
284 :conditions => @query.statement,
285 :limit => Setting.issues_export_limit
285 :limit => Setting.issues_export_limit
286
286
287 ic = Iconv.new(l(:general_csv_encoding), 'UTF-8')
287 ic = Iconv.new(l(:general_csv_encoding), 'UTF-8')
288 export = StringIO.new
288 export = StringIO.new
289 CSV::Writer.generate(export, l(:general_csv_separator)) do |csv|
289 CSV::Writer.generate(export, l(:general_csv_separator)) do |csv|
290 # csv header fields
290 # csv header fields
291 headers = [ "#", l(:field_status),
291 headers = [ "#", l(:field_status),
292 l(:field_tracker),
292 l(:field_tracker),
293 l(:field_priority),
293 l(:field_priority),
294 l(:field_subject),
294 l(:field_subject),
295 l(:field_assigned_to),
295 l(:field_assigned_to),
296 l(:field_author),
296 l(:field_author),
297 l(:field_start_date),
297 l(:field_start_date),
298 l(:field_due_date),
298 l(:field_due_date),
299 l(:field_done_ratio),
299 l(:field_done_ratio),
300 l(:field_created_on),
300 l(:field_created_on),
301 l(:field_updated_on)
301 l(:field_updated_on)
302 ]
302 ]
303 for custom_field in @project.all_custom_fields
303 for custom_field in @project.all_custom_fields
304 headers << custom_field.name
304 headers << custom_field.name
305 end
305 end
306 csv << headers.collect {|c| ic.iconv(c) }
306 csv << headers.collect {|c| ic.iconv(c) }
307 # csv lines
307 # csv lines
308 @issues.each do |issue|
308 @issues.each do |issue|
309 fields = [issue.id, issue.status.name,
309 fields = [issue.id, issue.status.name,
310 issue.tracker.name,
310 issue.tracker.name,
311 issue.priority.name,
311 issue.priority.name,
312 issue.subject,
312 issue.subject,
313 (issue.assigned_to ? issue.assigned_to.name : ""),
313 (issue.assigned_to ? issue.assigned_to.name : ""),
314 issue.author.name,
314 issue.author.name,
315 issue.start_date ? l_date(issue.start_date) : nil,
315 issue.start_date ? l_date(issue.start_date) : nil,
316 issue.due_date ? l_date(issue.due_date) : nil,
316 issue.due_date ? l_date(issue.due_date) : nil,
317 issue.done_ratio,
317 issue.done_ratio,
318 l_datetime(issue.created_on),
318 l_datetime(issue.created_on),
319 l_datetime(issue.updated_on)
319 l_datetime(issue.updated_on)
320 ]
320 ]
321 for custom_field in @project.all_custom_fields
321 for custom_field in @project.all_custom_fields
322 fields << (show_value issue.custom_value_for(custom_field))
322 fields << (show_value issue.custom_value_for(custom_field))
323 end
323 end
324 csv << fields.collect {|c| ic.iconv(c.to_s) }
324 csv << fields.collect {|c| ic.iconv(c.to_s) }
325 end
325 end
326 end
326 end
327 export.rewind
327 export.rewind
328 send_data(export.read, :type => 'text/csv; header=present', :filename => 'export.csv')
328 send_data(export.read, :type => 'text/csv; header=present', :filename => 'export.csv')
329 end
329 end
330
330
331 # Export filtered/sorted issues to PDF
331 # Export filtered/sorted issues to PDF
332 def export_issues_pdf
332 def export_issues_pdf
333 sort_init "#{Issue.table_name}.id", "desc"
333 sort_init "#{Issue.table_name}.id", "desc"
334 sort_update
334 sort_update
335
335
336 retrieve_query
336 retrieve_query
337 render :action => 'list_issues' and return unless @query.valid?
337 render :action => 'list_issues' and return unless @query.valid?
338
338
339 @issues = Issue.find :all, :order => sort_clause,
339 @issues = Issue.find :all, :order => sort_clause,
340 :include => [ :author, :status, :tracker, :priority, :custom_values ],
340 :include => [ :author, :status, :tracker, :priority, :custom_values ],
341 :conditions => @query.statement,
341 :conditions => @query.statement,
342 :limit => Setting.issues_export_limit
342 :limit => Setting.issues_export_limit
343
343
344 @options_for_rfpdf ||= {}
344 @options_for_rfpdf ||= {}
345 @options_for_rfpdf[:file_name] = "export.pdf"
345 @options_for_rfpdf[:file_name] = "export.pdf"
346 render :layout => false
346 render :layout => false
347 end
347 end
348
348
349 def move_issues
349 def move_issues
350 @issues = @project.issues.find(params[:issue_ids]) if params[:issue_ids]
350 @issues = @project.issues.find(params[:issue_ids]) if params[:issue_ids]
351 redirect_to :action => 'list_issues', :id => @project and return unless @issues
351 redirect_to :action => 'list_issues', :id => @project and return unless @issues
352 @projects = []
352 @projects = []
353 # find projects to which the user is allowed to move the issue
353 # find projects to which the user is allowed to move the issue
354 @logged_in_user.memberships.each {|m| @projects << m.project if Permission.allowed_to_role("projects/move_issues", m.role)}
354 @logged_in_user.memberships.each {|m| @projects << m.project if Permission.allowed_to_role("projects/move_issues", m.role)}
355 # issue can be moved to any tracker
355 # issue can be moved to any tracker
356 @trackers = Tracker.find(:all)
356 @trackers = Tracker.find(:all)
357 if request.post? and params[:new_project_id] and params[:new_tracker_id]
357 if request.post? and params[:new_project_id] and params[:new_tracker_id]
358 new_project = Project.find(params[:new_project_id])
358 new_project = Project.find(params[:new_project_id])
359 new_tracker = Tracker.find(params[:new_tracker_id])
359 new_tracker = Tracker.find(params[:new_tracker_id])
360 @issues.each { |i|
360 @issues.each { |i|
361 # project dependent properties
361 # project dependent properties
362 unless i.project_id == new_project.id
362 unless i.project_id == new_project.id
363 i.category = nil
363 i.category = nil
364 i.fixed_version = nil
364 i.fixed_version = nil
365 end
365 end
366 # move the issue
366 # move the issue
367 i.project = new_project
367 i.project = new_project
368 i.tracker = new_tracker
368 i.tracker = new_tracker
369 i.save
369 i.save
370 }
370 }
371 flash[:notice] = l(:notice_successful_update)
371 flash[:notice] = l(:notice_successful_update)
372 redirect_to :action => 'list_issues', :id => @project
372 redirect_to :action => 'list_issues', :id => @project
373 end
373 end
374 end
374 end
375
375
376 def add_query
376 def add_query
377 @query = Query.new(params[:query])
377 @query = Query.new(params[:query])
378 @query.project = @project
378 @query.project = @project
379 @query.user = logged_in_user
379 @query.user = logged_in_user
380
380
381 params[:fields].each do |field|
381 params[:fields].each do |field|
382 @query.add_filter(field, params[:operators][field], params[:values][field])
382 @query.add_filter(field, params[:operators][field], params[:values][field])
383 end if params[:fields]
383 end if params[:fields]
384
384
385 if request.post? and @query.save
385 if request.post? and @query.save
386 flash[:notice] = l(:notice_successful_create)
386 flash[:notice] = l(:notice_successful_create)
387 redirect_to :controller => 'reports', :action => 'issue_report', :id => @project
387 redirect_to :controller => 'reports', :action => 'issue_report', :id => @project
388 end
388 end
389 render :layout => false if request.xhr?
389 render :layout => false if request.xhr?
390 end
390 end
391
391
392 # Add a news to @project
392 # Add a news to @project
393 def add_news
393 def add_news
394 @news = News.new(:project => @project)
394 @news = News.new(:project => @project)
395 if request.post?
395 if request.post?
396 @news.attributes = params[:news]
396 @news.attributes = params[:news]
397 @news.author_id = self.logged_in_user.id if self.logged_in_user
397 @news.author_id = self.logged_in_user.id if self.logged_in_user
398 if @news.save
398 if @news.save
399 flash[:notice] = l(:notice_successful_create)
399 flash[:notice] = l(:notice_successful_create)
400 redirect_to :action => 'list_news', :id => @project
400 redirect_to :action => 'list_news', :id => @project
401 end
401 end
402 end
402 end
403 end
403 end
404
404
405 # Show news list of @project
405 # Show news list of @project
406 def list_news
406 def list_news
407 @news_pages, @news = paginate :news, :per_page => 10, :conditions => ["project_id=?", @project.id], :include => :author, :order => "#{News.table_name}.created_on DESC"
407 @news_pages, @news = paginate :news, :per_page => 10, :conditions => ["project_id=?", @project.id], :include => :author, :order => "#{News.table_name}.created_on DESC"
408 render :action => "list_news", :layout => false if request.xhr?
408 render :action => "list_news", :layout => false if request.xhr?
409 end
409 end
410
410
411 def add_file
411 def add_file
412 if request.post?
412 if request.post?
413 @version = @project.versions.find_by_id(params[:version_id])
413 @version = @project.versions.find_by_id(params[:version_id])
414 # Save the attachments
414 # Save the attachments
415 @attachments = []
415 @attachments = []
416 params[:attachments].each { |file|
416 params[:attachments].each { |file|
417 next unless file.size > 0
417 next unless file.size > 0
418 a = Attachment.create(:container => @version, :file => file, :author => logged_in_user)
418 a = Attachment.create(:container => @version, :file => file, :author => logged_in_user)
419 @attachments << a unless a.new_record?
419 @attachments << a unless a.new_record?
420 } if params[:attachments] and params[:attachments].is_a? Array
420 } if params[:attachments] and params[:attachments].is_a? Array
421 Mailer.deliver_attachments_add(@attachments) if !@attachments.empty? and Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled?
421 Mailer.deliver_attachments_add(@attachments) if !@attachments.empty? and Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled?
422 redirect_to :controller => 'projects', :action => 'list_files', :id => @project
422 redirect_to :controller => 'projects', :action => 'list_files', :id => @project
423 end
423 end
424 @versions = @project.versions
424 @versions = @project.versions
425 end
425 end
426
426
427 def list_files
427 def list_files
428 @versions = @project.versions
428 @versions = @project.versions
429 end
429 end
430
430
431 # Show changelog for @project
431 # Show changelog for @project
432 def changelog
432 def changelog
433 @trackers = Tracker.find(:all, :conditions => ["is_in_chlog=?", true], :order => 'position')
433 @trackers = Tracker.find(:all, :conditions => ["is_in_chlog=?", true], :order => 'position')
434 retrieve_selected_tracker_ids(@trackers)
434 retrieve_selected_tracker_ids(@trackers)
435
435
436 @fixed_issues = @project.issues.find(:all,
436 @fixed_issues = @project.issues.find(:all,
437 :include => [ :fixed_version, :status, :tracker ],
437 :include => [ :fixed_version, :status, :tracker ],
438 :conditions => [ "#{IssueStatus.table_name}.is_closed=? and #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')}) and #{Issue.table_name}.fixed_version_id is not null", true],
438 :conditions => [ "#{IssueStatus.table_name}.is_closed=? and #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')}) and #{Issue.table_name}.fixed_version_id is not null", true],
439 :order => "#{Version.table_name}.effective_date DESC, #{Issue.table_name}.id DESC"
439 :order => "#{Version.table_name}.effective_date DESC, #{Issue.table_name}.id DESC"
440 ) unless @selected_tracker_ids.empty?
440 ) unless @selected_tracker_ids.empty?
441 @fixed_issues ||= []
441 @fixed_issues ||= []
442 end
442 end
443
443
444 def roadmap
444 def roadmap
445 @trackers = Tracker.find(:all, :conditions => ["is_in_roadmap=?", true], :order => 'position')
445 @trackers = Tracker.find(:all, :conditions => ["is_in_roadmap=?", true], :order => 'position')
446 retrieve_selected_tracker_ids(@trackers)
446 retrieve_selected_tracker_ids(@trackers)
447
447
448 @versions = @project.versions.find(:all,
448 @versions = @project.versions.find(:all,
449 :conditions => [ "#{Version.table_name}.effective_date>?", Date.today],
449 :conditions => [ "#{Version.table_name}.effective_date>?", Date.today],
450 :order => "#{Version.table_name}.effective_date ASC"
450 :order => "#{Version.table_name}.effective_date ASC"
451 )
451 )
452 end
452 end
453
453
454 def activity
454 def activity
455 if params[:year] and params[:year].to_i > 1900
455 if params[:year] and params[:year].to_i > 1900
456 @year = params[:year].to_i
456 @year = params[:year].to_i
457 if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13
457 if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13
458 @month = params[:month].to_i
458 @month = params[:month].to_i
459 end
459 end
460 end
460 end
461 @year ||= Date.today.year
461 @year ||= Date.today.year
462 @month ||= Date.today.month
462 @month ||= Date.today.month
463
463
464 @date_from = Date.civil(@year, @month, 1)
464 @date_from = Date.civil(@year, @month, 1)
465 @date_to = (@date_from >> 1)-1
465 @date_to = (@date_from >> 1)-1
466
466
467 @events_by_day = {}
467 @events_by_day = {}
468
468
469 unless params[:show_issues] == "0"
469 unless params[:show_issues] == "0"
470 @project.issues.find(:all, :include => [:author], :conditions => ["#{Issue.table_name}.created_on>=? and #{Issue.table_name}.created_on<=?", @date_from, @date_to] ).each { |i|
470 @project.issues.find(:all, :include => [:author], :conditions => ["#{Issue.table_name}.created_on>=? and #{Issue.table_name}.created_on<=?", @date_from, @date_to] ).each { |i|
471 @events_by_day[i.created_on.to_date] ||= []
471 @events_by_day[i.created_on.to_date] ||= []
472 @events_by_day[i.created_on.to_date] << i
472 @events_by_day[i.created_on.to_date] << i
473 }
473 }
474 @show_issues = 1
474 @show_issues = 1
475 end
475 end
476
476
477 unless params[:show_news] == "0"
477 unless params[:show_news] == "0"
478 @project.news.find(:all, :conditions => ["#{News.table_name}.created_on>=? and #{News.table_name}.created_on<=?", @date_from, @date_to], :include => :author ).each { |i|
478 @project.news.find(:all, :conditions => ["#{News.table_name}.created_on>=? and #{News.table_name}.created_on<=?", @date_from, @date_to], :include => :author ).each { |i|
479 @events_by_day[i.created_on.to_date] ||= []
479 @events_by_day[i.created_on.to_date] ||= []
480 @events_by_day[i.created_on.to_date] << i
480 @events_by_day[i.created_on.to_date] << i
481 }
481 }
482 @show_news = 1
482 @show_news = 1
483 end
483 end
484
484
485 unless params[:show_files] == "0"
485 unless params[:show_files] == "0"
486 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 ).each { |i|
486 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 ).each { |i|
487 @events_by_day[i.created_on.to_date] ||= []
487 @events_by_day[i.created_on.to_date] ||= []
488 @events_by_day[i.created_on.to_date] << i
488 @events_by_day[i.created_on.to_date] << i
489 }
489 }
490 @show_files = 1
490 @show_files = 1
491 end
491 end
492
492
493 unless params[:show_documents] == "0"
493 unless params[:show_documents] == "0"
494 @project.documents.find(:all, :conditions => ["#{Document.table_name}.created_on>=? and #{Document.table_name}.created_on<=?", @date_from, @date_to] ).each { |i|
494 @project.documents.find(:all, :conditions => ["#{Document.table_name}.created_on>=? and #{Document.table_name}.created_on<=?", @date_from, @date_to] ).each { |i|
495 @events_by_day[i.created_on.to_date] ||= []
495 @events_by_day[i.created_on.to_date] ||= []
496 @events_by_day[i.created_on.to_date] << i
496 @events_by_day[i.created_on.to_date] << i
497 }
497 }
498 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 ).each { |i|
498 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 ).each { |i|
499 @events_by_day[i.created_on.to_date] ||= []
499 @events_by_day[i.created_on.to_date] ||= []
500 @events_by_day[i.created_on.to_date] << i
500 @events_by_day[i.created_on.to_date] << i
501 }
501 }
502 @show_documents = 1
502 @show_documents = 1
503 end
503 end
504
504
505 unless params[:show_wiki_edits] == "0"
505 unless params[:show_wiki_edits] == "0"
506 select = "#{WikiContent.versioned_table_name}.updated_on, #{WikiContent.versioned_table_name}.comment, " +
506 select = "#{WikiContent.versioned_table_name}.updated_on, #{WikiContent.versioned_table_name}.comments, " +
507 "#{WikiContent.versioned_table_name}.#{WikiContent.version_column}, #{WikiPage.table_name}.title"
507 "#{WikiContent.versioned_table_name}.#{WikiContent.version_column}, #{WikiPage.table_name}.title"
508 joins = "LEFT JOIN #{WikiPage.table_name} ON #{WikiPage.table_name}.id = #{WikiContent.versioned_table_name}.page_id " +
508 joins = "LEFT JOIN #{WikiPage.table_name} ON #{WikiPage.table_name}.id = #{WikiContent.versioned_table_name}.page_id " +
509 "LEFT JOIN #{Wiki.table_name} ON #{Wiki.table_name}.id = #{WikiPage.table_name}.wiki_id "
509 "LEFT JOIN #{Wiki.table_name} ON #{Wiki.table_name}.id = #{WikiPage.table_name}.wiki_id "
510 conditions = ["#{Wiki.table_name}.project_id = ? AND #{WikiContent.versioned_table_name}.updated_on BETWEEN ? AND ?",
510 conditions = ["#{Wiki.table_name}.project_id = ? AND #{WikiContent.versioned_table_name}.updated_on BETWEEN ? AND ?",
511 @project.id, @date_from, @date_to]
511 @project.id, @date_from, @date_to]
512
512
513 WikiContent.versioned_class.find(:all, :select => select, :joins => joins, :conditions => conditions).each { |i|
513 WikiContent.versioned_class.find(:all, :select => select, :joins => joins, :conditions => conditions).each { |i|
514 # We provide this alias so all events can be treated in the same manner
514 # We provide this alias so all events can be treated in the same manner
515 def i.created_on
515 def i.created_on
516 self.updated_on
516 self.updated_on
517 end
517 end
518
518
519 @events_by_day[i.created_on.to_date] ||= []
519 @events_by_day[i.created_on.to_date] ||= []
520 @events_by_day[i.created_on.to_date] << i
520 @events_by_day[i.created_on.to_date] << i
521 }
521 }
522 @show_wiki_edits = 1
522 @show_wiki_edits = 1
523 end
523 end
524
524
525 unless @project.repository.nil? || params[:show_changesets] == "0"
525 unless @project.repository.nil? || params[:show_changesets] == "0"
526 @project.repository.changesets.find(:all, :conditions => ["#{Changeset.table_name}.committed_on BETWEEN ? AND ?", @date_from, @date_to]).each { |i|
526 @project.repository.changesets.find(:all, :conditions => ["#{Changeset.table_name}.committed_on BETWEEN ? AND ?", @date_from, @date_to]).each { |i|
527 def i.created_on
527 def i.created_on
528 self.committed_on
528 self.committed_on
529 end
529 end
530 @events_by_day[i.created_on.to_date] ||= []
530 @events_by_day[i.created_on.to_date] ||= []
531 @events_by_day[i.created_on.to_date] << i
531 @events_by_day[i.created_on.to_date] << i
532 }
532 }
533 @show_changesets = 1
533 @show_changesets = 1
534 end
534 end
535
535
536 render :layout => false if request.xhr?
536 render :layout => false if request.xhr?
537 end
537 end
538
538
539 def calendar
539 def calendar
540 @trackers = Tracker.find(:all, :order => 'position')
540 @trackers = Tracker.find(:all, :order => 'position')
541 retrieve_selected_tracker_ids(@trackers)
541 retrieve_selected_tracker_ids(@trackers)
542
542
543 if params[:year] and params[:year].to_i > 1900
543 if params[:year] and params[:year].to_i > 1900
544 @year = params[:year].to_i
544 @year = params[:year].to_i
545 if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13
545 if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13
546 @month = params[:month].to_i
546 @month = params[:month].to_i
547 end
547 end
548 end
548 end
549 @year ||= Date.today.year
549 @year ||= Date.today.year
550 @month ||= Date.today.month
550 @month ||= Date.today.month
551
551
552 @date_from = Date.civil(@year, @month, 1)
552 @date_from = Date.civil(@year, @month, 1)
553 @date_to = (@date_from >> 1)-1
553 @date_to = (@date_from >> 1)-1
554 # start on monday
554 # start on monday
555 @date_from = @date_from - (@date_from.cwday-1)
555 @date_from = @date_from - (@date_from.cwday-1)
556 # finish on sunday
556 # finish on sunday
557 @date_to = @date_to + (7-@date_to.cwday)
557 @date_to = @date_to + (7-@date_to.cwday)
558
558
559 @events = []
559 @events = []
560 @project.issues_with_subprojects(params[:with_subprojects]) do
560 @project.issues_with_subprojects(params[:with_subprojects]) do
561 @events += Issue.find(:all,
561 @events += Issue.find(:all,
562 :include => [:tracker, :status, :assigned_to, :priority],
562 :include => [:tracker, :status, :assigned_to, :priority],
563 :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]
563 :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]
564 ) unless @selected_tracker_ids.empty?
564 ) unless @selected_tracker_ids.empty?
565 end
565 end
566 @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to])
566 @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to])
567
567
568 @ending_events_by_days = @events.group_by {|event| event.due_date}
568 @ending_events_by_days = @events.group_by {|event| event.due_date}
569 @starting_events_by_days = @events.group_by {|event| event.start_date}
569 @starting_events_by_days = @events.group_by {|event| event.start_date}
570
570
571 render :layout => false if request.xhr?
571 render :layout => false if request.xhr?
572 end
572 end
573
573
574 def gantt
574 def gantt
575 @trackers = Tracker.find(:all, :order => 'position')
575 @trackers = Tracker.find(:all, :order => 'position')
576 retrieve_selected_tracker_ids(@trackers)
576 retrieve_selected_tracker_ids(@trackers)
577
577
578 if params[:year] and params[:year].to_i >0
578 if params[:year] and params[:year].to_i >0
579 @year_from = params[:year].to_i
579 @year_from = params[:year].to_i
580 if params[:month] and params[:month].to_i >=1 and params[:month].to_i <= 12
580 if params[:month] and params[:month].to_i >=1 and params[:month].to_i <= 12
581 @month_from = params[:month].to_i
581 @month_from = params[:month].to_i
582 else
582 else
583 @month_from = 1
583 @month_from = 1
584 end
584 end
585 else
585 else
586 @month_from ||= (Date.today << 1).month
586 @month_from ||= (Date.today << 1).month
587 @year_from ||= (Date.today << 1).year
587 @year_from ||= (Date.today << 1).year
588 end
588 end
589
589
590 @zoom = (params[:zoom].to_i > 0 and params[:zoom].to_i < 5) ? params[:zoom].to_i : 2
590 @zoom = (params[:zoom].to_i > 0 and params[:zoom].to_i < 5) ? params[:zoom].to_i : 2
591 @months = (params[:months].to_i > 0 and params[:months].to_i < 25) ? params[:months].to_i : 6
591 @months = (params[:months].to_i > 0 and params[:months].to_i < 25) ? params[:months].to_i : 6
592
592
593 @date_from = Date.civil(@year_from, @month_from, 1)
593 @date_from = Date.civil(@year_from, @month_from, 1)
594 @date_to = (@date_from >> @months) - 1
594 @date_to = (@date_from >> @months) - 1
595
595
596 @events = []
596 @events = []
597 @project.issues_with_subprojects(params[:with_subprojects]) do
597 @project.issues_with_subprojects(params[:with_subprojects]) do
598 @events += Issue.find(:all,
598 @events += Issue.find(:all,
599 :order => "start_date, due_date",
599 :order => "start_date, due_date",
600 :include => [:tracker, :status, :assigned_to, :priority],
600 :include => [:tracker, :status, :assigned_to, :priority],
601 :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]
601 :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]
602 ) unless @selected_tracker_ids.empty?
602 ) unless @selected_tracker_ids.empty?
603 end
603 end
604 @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to])
604 @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to])
605 @events.sort! {|x,y| x.start_date <=> y.start_date }
605 @events.sort! {|x,y| x.start_date <=> y.start_date }
606
606
607 if params[:output]=='pdf'
607 if params[:output]=='pdf'
608 @options_for_rfpdf ||= {}
608 @options_for_rfpdf ||= {}
609 @options_for_rfpdf[:file_name] = "gantt.pdf"
609 @options_for_rfpdf[:file_name] = "gantt.pdf"
610 render :template => "projects/gantt.rfpdf", :layout => false
610 render :template => "projects/gantt.rfpdf", :layout => false
611 else
611 else
612 render :template => "projects/gantt.rhtml"
612 render :template => "projects/gantt.rhtml"
613 end
613 end
614 end
614 end
615
615
616 def search
616 def search
617 @question = params[:q] || ""
617 @question = params[:q] || ""
618 @question.strip!
618 @question.strip!
619 @all_words = params[:all_words] || (params[:submit] ? false : true)
619 @all_words = params[:all_words] || (params[:submit] ? false : true)
620 @scope = params[:scope] || (params[:submit] ? [] : %w(issues changesets news documents wiki) )
620 @scope = params[:scope] || (params[:submit] ? [] : %w(issues changesets news documents wiki) )
621 # tokens must be at least 3 character long
621 # tokens must be at least 3 character long
622 @tokens = @question.split.uniq.select {|w| w.length > 2 }
622 @tokens = @question.split.uniq.select {|w| w.length > 2 }
623 if !@tokens.empty?
623 if !@tokens.empty?
624 # no more than 5 tokens to search for
624 # no more than 5 tokens to search for
625 @tokens.slice! 5..-1 if @tokens.size > 5
625 @tokens.slice! 5..-1 if @tokens.size > 5
626 # strings used in sql like statement
626 # strings used in sql like statement
627 like_tokens = @tokens.collect {|w| "%#{w}%"}
627 like_tokens = @tokens.collect {|w| "%#{w.downcase}%"}
628 operator = @all_words ? " AND " : " OR "
628 operator = @all_words ? " AND " : " OR "
629 limit = 10
629 limit = 10
630 @results = []
630 @results = []
631 @results += @project.issues.find(:all, :limit => limit, :include => :author, :conditions => [ (["(LOWER(subject) like ? OR LOWER(description) like ?)"] * like_tokens.size).join(operator), * (like_tokens * 2).sort] ) if @scope.include? 'issues'
631 @results += @project.issues.find(:all, :limit => limit, :include => :author, :conditions => [ (["(LOWER(subject) like ? OR LOWER(description) like ?)"] * like_tokens.size).join(operator), * (like_tokens * 2).sort] ) if @scope.include? 'issues'
632 @results += @project.news.find(:all, :limit => limit, :conditions => [ (["(LOWER(title) like ? OR LOWER(description) like ?)"] * like_tokens.size).join(operator), * (like_tokens * 2).sort], :include => :author ) if @scope.include? 'news'
632 @results += @project.news.find(:all, :limit => limit, :conditions => [ (["(LOWER(title) like ? OR LOWER(description) like ?)"] * like_tokens.size).join(operator), * (like_tokens * 2).sort], :include => :author ) if @scope.include? 'news'
633 @results += @project.documents.find(:all, :limit => limit, :conditions => [ (["(LOWER(title) like ? OR LOWER(description) like ?)"] * like_tokens.size).join(operator), * (like_tokens * 2).sort] ) if @scope.include? 'documents'
633 @results += @project.documents.find(:all, :limit => limit, :conditions => [ (["(LOWER(title) like ? OR LOWER(description) like ?)"] * like_tokens.size).join(operator), * (like_tokens * 2).sort] ) if @scope.include? 'documents'
634 @results += @project.wiki.pages.find(:all, :limit => limit, :include => :content, :conditions => [ (["(LOWER(title) like ? OR LOWER(text) like ?)"] * like_tokens.size).join(operator), * (like_tokens * 2).sort] ) if @project.wiki && @scope.include?('wiki')
634 @results += @project.wiki.pages.find(:all, :limit => limit, :include => :content, :conditions => [ (["(LOWER(title) like ? OR LOWER(text) like ?)"] * like_tokens.size).join(operator), * (like_tokens * 2).sort] ) if @project.wiki && @scope.include?('wiki')
635 @results += @project.repository.changesets.find(:all, :limit => limit, :conditions => [ (["(LOWER(comment) like ?)"] * like_tokens.size).join(operator), * (like_tokens).sort] ) if @project.repository && @scope.include?('changesets')
635 @results += @project.repository.changesets.find(:all, :limit => limit, :conditions => [ (["(LOWER(comments) like ?)"] * like_tokens.size).join(operator), * (like_tokens).sort] ) if @project.repository && @scope.include?('changesets')
636 @question = @tokens.join(" ")
636 @question = @tokens.join(" ")
637 else
637 else
638 @question = ""
638 @question = ""
639 end
639 end
640 end
640 end
641
641
642 def feeds
642 def feeds
643 @queries = @project.queries.find :all, :conditions => ["is_public=? or user_id=?", true, (logged_in_user ? logged_in_user.id : 0)]
643 @queries = @project.queries.find :all, :conditions => ["is_public=? or user_id=?", true, (logged_in_user ? logged_in_user.id : 0)]
644 @key = logged_in_user.get_or_create_rss_key.value if logged_in_user
644 @key = logged_in_user.get_or_create_rss_key.value if logged_in_user
645 end
645 end
646
646
647 private
647 private
648 # Find project of id params[:id]
648 # Find project of id params[:id]
649 # if not found, redirect to project list
649 # if not found, redirect to project list
650 # Used as a before_filter
650 # Used as a before_filter
651 def find_project
651 def find_project
652 @project = Project.find(params[:id])
652 @project = Project.find(params[:id])
653 @html_title = @project.name
653 @html_title = @project.name
654 rescue ActiveRecord::RecordNotFound
654 rescue ActiveRecord::RecordNotFound
655 render_404
655 render_404
656 end
656 end
657
657
658 def retrieve_selected_tracker_ids(selectable_trackers)
658 def retrieve_selected_tracker_ids(selectable_trackers)
659 if ids = params[:tracker_ids]
659 if ids = params[:tracker_ids]
660 @selected_tracker_ids = (ids.is_a? Array) ? ids.collect { |id| id.to_i.to_s } : ids.split('/').collect { |id| id.to_i.to_s }
660 @selected_tracker_ids = (ids.is_a? Array) ? ids.collect { |id| id.to_i.to_s } : ids.split('/').collect { |id| id.to_i.to_s }
661 else
661 else
662 @selected_tracker_ids = selectable_trackers.collect {|t| t.id.to_s }
662 @selected_tracker_ids = selectable_trackers.collect {|t| t.id.to_s }
663 end
663 end
664 end
664 end
665
665
666 # Retrieve query from session or build a new query
666 # Retrieve query from session or build a new query
667 def retrieve_query
667 def retrieve_query
668 if params[:query_id]
668 if params[:query_id]
669 @query = @project.queries.find(params[:query_id])
669 @query = @project.queries.find(params[:query_id])
670 session[:query] = @query
670 session[:query] = @query
671 else
671 else
672 if params[:set_filter] or !session[:query] or session[:query].project_id != @project.id
672 if params[:set_filter] or !session[:query] or session[:query].project_id != @project.id
673 # Give it a name, required to be valid
673 # Give it a name, required to be valid
674 @query = Query.new(:name => "_")
674 @query = Query.new(:name => "_")
675 @query.project = @project
675 @query.project = @project
676 if params[:fields] and params[:fields].is_a? Array
676 if params[:fields] and params[:fields].is_a? Array
677 params[:fields].each do |field|
677 params[:fields].each do |field|
678 @query.add_filter(field, params[:operators][field], params[:values][field])
678 @query.add_filter(field, params[:operators][field], params[:values][field])
679 end
679 end
680 else
680 else
681 @query.available_filters.keys.each do |field|
681 @query.available_filters.keys.each do |field|
682 @query.add_short_filter(field, params[field]) if params[field]
682 @query.add_short_filter(field, params[field]) if params[field]
683 end
683 end
684 end
684 end
685 session[:query] = @query
685 session[:query] = @query
686 else
686 else
687 @query = session[:query]
687 @query = session[:query]
688 end
688 end
689 end
689 end
690 end
690 end
691 end
691 end
@@ -1,80 +1,80
1 class TimelogController < ApplicationController
1 class TimelogController < ApplicationController
2 layout 'base'
2 layout 'base'
3
3
4 before_filter :find_project
4 before_filter :find_project
5 before_filter :authorize, :only => :edit
5 before_filter :authorize, :only => :edit
6 before_filter :check_project_privacy, :only => :details
6 before_filter :check_project_privacy, :only => :details
7
7
8 helper :sort
8 helper :sort
9 include SortHelper
9 include SortHelper
10
10
11 def details
11 def details
12 sort_init 'spent_on', 'desc'
12 sort_init 'spent_on', 'desc'
13 sort_update
13 sort_update
14
14
15 @entries = (@issue ? @issue : @project).time_entries.find(:all, :include => [:activity, :user, {:issue => [:tracker, :assigned_to, :priority]}], :order => sort_clause)
15 @entries = (@issue ? @issue : @project).time_entries.find(:all, :include => [:activity, :user, {:issue => [:tracker, :assigned_to, :priority]}], :order => sort_clause)
16
16
17 @total_hours = @entries.inject(0) { |sum,entry| sum + entry.hours }
17 @total_hours = @entries.inject(0) { |sum,entry| sum + entry.hours }
18 @owner_id = logged_in_user ? logged_in_user.id : 0
18 @owner_id = logged_in_user ? logged_in_user.id : 0
19
19
20 send_csv and return if 'csv' == params[:export]
20 send_csv and return if 'csv' == params[:export]
21 render :action => 'details', :layout => false if request.xhr?
21 render :action => 'details', :layout => false if request.xhr?
22 end
22 end
23
23
24 def edit
24 def edit
25 render_404 and return if @time_entry && @time_entry.user != logged_in_user
25 render_404 and return if @time_entry && @time_entry.user != logged_in_user
26 @time_entry ||= TimeEntry.new(:project => @project, :issue => @issue, :user => logged_in_user, :spent_on => Date.today)
26 @time_entry ||= TimeEntry.new(:project => @project, :issue => @issue, :user => logged_in_user, :spent_on => Date.today)
27 @time_entry.attributes = params[:time_entry]
27 @time_entry.attributes = params[:time_entry]
28 if request.post? and @time_entry.save
28 if request.post? and @time_entry.save
29 flash[:notice] = l(:notice_successful_update)
29 flash[:notice] = l(:notice_successful_update)
30 redirect_to :action => 'details', :project_id => @time_entry.project, :issue_id => @time_entry.issue
30 redirect_to :action => 'details', :project_id => @time_entry.project, :issue_id => @time_entry.issue
31 return
31 return
32 end
32 end
33 @activities = Enumeration::get_values('ACTI')
33 @activities = Enumeration::get_values('ACTI')
34 end
34 end
35
35
36 private
36 private
37 def find_project
37 def find_project
38 if params[:id]
38 if params[:id]
39 @time_entry = TimeEntry.find(params[:id])
39 @time_entry = TimeEntry.find(params[:id])
40 @project = @time_entry.project
40 @project = @time_entry.project
41 elsif params[:issue_id]
41 elsif params[:issue_id]
42 @issue = Issue.find(params[:issue_id])
42 @issue = Issue.find(params[:issue_id])
43 @project = @issue.project
43 @project = @issue.project
44 elsif params[:project_id]
44 elsif params[:project_id]
45 @project = Project.find(params[:project_id])
45 @project = Project.find(params[:project_id])
46 else
46 else
47 render_404
47 render_404
48 return false
48 return false
49 end
49 end
50 end
50 end
51
51
52 def send_csv
52 def send_csv
53 ic = Iconv.new(l(:general_csv_encoding), 'UTF-8')
53 ic = Iconv.new(l(:general_csv_encoding), 'UTF-8')
54 export = StringIO.new
54 export = StringIO.new
55 CSV::Writer.generate(export, l(:general_csv_separator)) do |csv|
55 CSV::Writer.generate(export, l(:general_csv_separator)) do |csv|
56 # csv header fields
56 # csv header fields
57 headers = [l(:field_spent_on),
57 headers = [l(:field_spent_on),
58 l(:field_user),
58 l(:field_user),
59 l(:field_activity),
59 l(:field_activity),
60 l(:field_issue),
60 l(:field_issue),
61 l(:field_hours),
61 l(:field_hours),
62 l(:field_comment)
62 l(:field_comments)
63 ]
63 ]
64 csv << headers.collect {|c| ic.iconv(c) }
64 csv << headers.collect {|c| ic.iconv(c) }
65 # csv lines
65 # csv lines
66 @entries.each do |entry|
66 @entries.each do |entry|
67 fields = [l_date(entry.spent_on),
67 fields = [l_date(entry.spent_on),
68 entry.user.name,
68 entry.user.name,
69 entry.activity.name,
69 entry.activity.name,
70 (entry.issue ? entry.issue.id : nil),
70 (entry.issue ? entry.issue.id : nil),
71 entry.hours,
71 entry.hours,
72 entry.comment
72 entry.comments
73 ]
73 ]
74 csv << fields.collect {|c| ic.iconv(c.to_s) }
74 csv << fields.collect {|c| ic.iconv(c.to_s) }
75 end
75 end
76 end
76 end
77 export.rewind
77 export.rewind
78 send_data(export.read, :type => 'text/csv; header=present', :filename => 'export.csv')
78 send_data(export.read, :type => 'text/csv; header=present', :filename => 'export.csv')
79 end
79 end
80 end
80 end
@@ -1,112 +1,112
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class WikiController < ApplicationController
18 class WikiController < ApplicationController
19 layout 'base'
19 layout 'base'
20 before_filter :find_wiki, :check_project_privacy, :except => [:preview]
20 before_filter :find_wiki, :check_project_privacy, :except => [:preview]
21
21
22 # display a page (in editing mode if it doesn't exist)
22 # display a page (in editing mode if it doesn't exist)
23 def index
23 def index
24 page_title = params[:page]
24 page_title = params[:page]
25 @page = @wiki.find_or_new_page(page_title)
25 @page = @wiki.find_or_new_page(page_title)
26 if @page.new_record?
26 if @page.new_record?
27 edit
27 edit
28 render :action => 'edit' and return
28 render :action => 'edit' and return
29 end
29 end
30 @content = @page.content_for_version(params[:version])
30 @content = @page.content_for_version(params[:version])
31 if params[:export] == 'html'
31 if params[:export] == 'html'
32 export = render_to_string :action => 'export', :layout => false
32 export = render_to_string :action => 'export', :layout => false
33 send_data(export, :type => 'text/html', :filename => "#{@page.title}.html")
33 send_data(export, :type => 'text/html', :filename => "#{@page.title}.html")
34 return
34 return
35 elsif params[:export] == 'txt'
35 elsif params[:export] == 'txt'
36 send_data(@content.text, :type => 'text/plain', :filename => "#{@page.title}.txt")
36 send_data(@content.text, :type => 'text/plain', :filename => "#{@page.title}.txt")
37 return
37 return
38 end
38 end
39 render :action => 'show'
39 render :action => 'show'
40 end
40 end
41
41
42 # edit an existing page or a new one
42 # edit an existing page or a new one
43 def edit
43 def edit
44 @page = @wiki.find_or_new_page(params[:page])
44 @page = @wiki.find_or_new_page(params[:page])
45 @page.content = WikiContent.new(:page => @page) if @page.new_record?
45 @page.content = WikiContent.new(:page => @page) if @page.new_record?
46
46
47 @content = @page.content_for_version(params[:version])
47 @content = @page.content_for_version(params[:version])
48 @content.text = "h1. #{@page.pretty_title}" if @content.text.blank?
48 @content.text = "h1. #{@page.pretty_title}" if @content.text.blank?
49 # don't keep previous comment
49 # don't keep previous comment
50 @content.comment = nil
50 @content.comments = nil
51 if request.post?
51 if request.post?
52 if @content.text == params[:content][:text]
52 if @content.text == params[:content][:text]
53 # don't save if text wasn't changed
53 # don't save if text wasn't changed
54 redirect_to :action => 'index', :id => @project, :page => @page.title
54 redirect_to :action => 'index', :id => @project, :page => @page.title
55 return
55 return
56 end
56 end
57 @content.text = params[:content][:text]
57 @content.text = params[:content][:text]
58 @content.comment = params[:content][:comment]
58 @content.comments = params[:content][:comments]
59 @content.author = logged_in_user
59 @content.author = logged_in_user
60 # if page is new @page.save will also save content, but not if page isn't a new record
60 # if page is new @page.save will also save content, but not if page isn't a new record
61 if (@page.new_record? ? @page.save : @content.save)
61 if (@page.new_record? ? @page.save : @content.save)
62 redirect_to :action => 'index', :id => @project, :page => @page.title
62 redirect_to :action => 'index', :id => @project, :page => @page.title
63 end
63 end
64 end
64 end
65 end
65 end
66
66
67 # show page history
67 # show page history
68 def history
68 def history
69 @page = @wiki.find_page(params[:page])
69 @page = @wiki.find_page(params[:page])
70 # don't load text
70 # don't load text
71 @versions = @page.content.versions.find :all,
71 @versions = @page.content.versions.find :all,
72 :select => "id, author_id, comment, updated_on, version",
72 :select => "id, author_id, comments, updated_on, version",
73 :order => 'version DESC'
73 :order => 'version DESC'
74 end
74 end
75
75
76 # display special pages
76 # display special pages
77 def special
77 def special
78 page_title = params[:page].downcase
78 page_title = params[:page].downcase
79 case page_title
79 case page_title
80 # show pages index, sorted by title
80 # show pages index, sorted by title
81 when 'page_index'
81 when 'page_index'
82 # eager load information about last updates, without loading text
82 # eager load information about last updates, without loading text
83 @pages = @wiki.pages.find :all, :select => "#{WikiPage.table_name}.*, #{WikiContent.table_name}.updated_on",
83 @pages = @wiki.pages.find :all, :select => "#{WikiPage.table_name}.*, #{WikiContent.table_name}.updated_on",
84 :joins => "LEFT JOIN #{WikiContent.table_name} ON #{WikiContent.table_name}.page_id = #{WikiPage.table_name}.id",
84 :joins => "LEFT JOIN #{WikiContent.table_name} ON #{WikiContent.table_name}.page_id = #{WikiPage.table_name}.id",
85 :order => 'title'
85 :order => 'title'
86 # export wiki to a single html file
86 # export wiki to a single html file
87 when 'export'
87 when 'export'
88 @pages = @wiki.pages.find :all, :order => 'title'
88 @pages = @wiki.pages.find :all, :order => 'title'
89 export = render_to_string :action => 'export_multiple', :layout => false
89 export = render_to_string :action => 'export_multiple', :layout => false
90 send_data(export, :type => 'text/html', :filename => "wiki.html")
90 send_data(export, :type => 'text/html', :filename => "wiki.html")
91 return
91 return
92 else
92 else
93 # requested special page doesn't exist, redirect to default page
93 # requested special page doesn't exist, redirect to default page
94 redirect_to :action => 'index', :id => @project, :page => nil and return
94 redirect_to :action => 'index', :id => @project, :page => nil and return
95 end
95 end
96 render :action => "special_#{page_title}"
96 render :action => "special_#{page_title}"
97 end
97 end
98
98
99 def preview
99 def preview
100 @text = params[:content][:text]
100 @text = params[:content][:text]
101 render :partial => 'preview'
101 render :partial => 'preview'
102 end
102 end
103
103
104 private
104 private
105
105
106 def find_wiki
106 def find_wiki
107 @project = Project.find(params[:id])
107 @project = Project.find(params[:id])
108 @wiki = @project.wiki
108 @wiki = @project.wiki
109 rescue ActiveRecord::RecordNotFound
109 rescue ActiveRecord::RecordNotFound
110 render_404
110 render_404
111 end
111 end
112 end
112 end
@@ -1,249 +1,251
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class RedCloth
18 class RedCloth
19 # Patch for RedCloth. Fixed in RedCloth r128 but _why hasn't released it yet.
19 # Patch for RedCloth. Fixed in RedCloth r128 but _why hasn't released it yet.
20 # <a href="http://code.whytheluckystiff.net/redcloth/changeset/128">http://code.whytheluckystiff.net/redcloth/changeset/128</a>
20 # <a href="http://code.whytheluckystiff.net/redcloth/changeset/128">http://code.whytheluckystiff.net/redcloth/changeset/128</a>
21 def hard_break( text )
21 def hard_break( text )
22 text.gsub!( /(.)\n(?!\n|\Z| *([#*=]+(\s|$)|[{|]))/, "\\1<br />" ) if hard_breaks
22 text.gsub!( /(.)\n(?!\n|\Z| *([#*=]+(\s|$)|[{|]))/, "\\1<br />" ) if hard_breaks
23 end
23 end
24 end
24 end
25
25
26 module ApplicationHelper
26 module ApplicationHelper
27
27
28 # Return current logged in user or nil
28 # Return current logged in user or nil
29 def loggedin?
29 def loggedin?
30 @logged_in_user
30 @logged_in_user
31 end
31 end
32
32
33 # Return true if user is logged in and is admin, otherwise false
33 # Return true if user is logged in and is admin, otherwise false
34 def admin_loggedin?
34 def admin_loggedin?
35 @logged_in_user and @logged_in_user.admin?
35 @logged_in_user and @logged_in_user.admin?
36 end
36 end
37
37
38 # Return true if user is authorized for controller/action, otherwise false
38 # Return true if user is authorized for controller/action, otherwise false
39 def authorize_for(controller, action)
39 def authorize_for(controller, action)
40 # check if action is allowed on public projects
40 # check if action is allowed on public projects
41 if @project.is_public? and Permission.allowed_to_public "%s/%s" % [ controller, action ]
41 if @project.is_public? and Permission.allowed_to_public "%s/%s" % [ controller, action ]
42 return true
42 return true
43 end
43 end
44 # check if user is authorized
44 # check if user is authorized
45 if @logged_in_user and (@logged_in_user.admin? or Permission.allowed_to_role( "%s/%s" % [ controller, action ], @logged_in_user.role_for_project(@project) ) )
45 if @logged_in_user and (@logged_in_user.admin? or Permission.allowed_to_role( "%s/%s" % [ controller, action ], @logged_in_user.role_for_project(@project) ) )
46 return true
46 return true
47 end
47 end
48 return false
48 return false
49 end
49 end
50
50
51 # Display a link if user is authorized
51 # Display a link if user is authorized
52 def link_to_if_authorized(name, options = {}, html_options = nil, *parameters_for_method_reference)
52 def link_to_if_authorized(name, options = {}, html_options = nil, *parameters_for_method_reference)
53 link_to(name, options, html_options, *parameters_for_method_reference) if authorize_for(options[:controller], options[:action])
53 link_to(name, options, html_options, *parameters_for_method_reference) if authorize_for(options[:controller], options[:action])
54 end
54 end
55
55
56 # Display a link to user's account page
56 # Display a link to user's account page
57 def link_to_user(user)
57 def link_to_user(user)
58 link_to user.display_name, :controller => 'account', :action => 'show', :id => user
58 link_to user.display_name, :controller => 'account', :action => 'show', :id => user
59 end
59 end
60
60
61 def link_to_issue(issue)
61 def link_to_issue(issue)
62 link_to "#{issue.tracker.name} ##{issue.id}", :controller => "issues", :action => "show", :id => issue
62 link_to "#{issue.tracker.name} ##{issue.id}", :controller => "issues", :action => "show", :id => issue
63 end
63 end
64
64
65 def toggle_link(name, id, options={})
65 def toggle_link(name, id, options={})
66 onclick = "Element.toggle('#{id}'); "
66 onclick = "Element.toggle('#{id}'); "
67 onclick << (options[:focus] ? "Form.Element.focus('#{options[:focus]}'); " : "this.blur(); ")
67 onclick << (options[:focus] ? "Form.Element.focus('#{options[:focus]}'); " : "this.blur(); ")
68 onclick << "return false;"
68 onclick << "return false;"
69 link_to(name, "#", :onclick => onclick)
69 link_to(name, "#", :onclick => onclick)
70 end
70 end
71
71
72 def image_to_function(name, function, html_options = {})
72 def image_to_function(name, function, html_options = {})
73 html_options.symbolize_keys!
73 html_options.symbolize_keys!
74 tag(:input, html_options.merge({
74 tag(:input, html_options.merge({
75 :type => "image", :src => image_path(name),
75 :type => "image", :src => image_path(name),
76 :onclick => (html_options[:onclick] ? "#{html_options[:onclick]}; " : "") + "#{function};"
76 :onclick => (html_options[:onclick] ? "#{html_options[:onclick]}; " : "") + "#{function};"
77 }))
77 }))
78 end
78 end
79
79
80 def format_date(date)
80 def format_date(date)
81 l_date(date) if date
81 l_date(date) if date
82 end
82 end
83
83
84 def format_time(time)
84 def format_time(time)
85 l_datetime((time.is_a? String) ? time.to_time : time) if time
85 l_datetime((time.is_a? String) ? time.to_time : time) if time
86 end
86 end
87
87
88 def day_name(day)
88 def day_name(day)
89 l(:general_day_names).split(',')[day-1]
89 l(:general_day_names).split(',')[day-1]
90 end
90 end
91
91
92 def month_name(month)
92 def month_name(month)
93 l(:actionview_datehelper_select_month_names).split(',')[month-1]
93 l(:actionview_datehelper_select_month_names).split(',')[month-1]
94 end
94 end
95
95
96 def pagination_links_full(paginator, options={}, html_options={})
96 def pagination_links_full(paginator, options={}, html_options={})
97 html = ''
97 html = ''
98 html << link_to_remote(('&#171; ' + l(:label_previous)),
98 html << link_to_remote(('&#171; ' + l(:label_previous)),
99 {:update => "content", :url => options.merge(:page => paginator.current.previous)},
99 {:update => "content", :url => options.merge(:page => paginator.current.previous)},
100 {:href => url_for(:params => options.merge(:page => paginator.current.previous))}) + ' ' if paginator.current.previous
100 {:href => url_for(:params => options.merge(:page => paginator.current.previous))}) + ' ' if paginator.current.previous
101
101
102 html << (pagination_links_each(paginator, options) do |n|
102 html << (pagination_links_each(paginator, options) do |n|
103 link_to_remote(n.to_s,
103 link_to_remote(n.to_s,
104 {:url => {:params => options.merge(:page => n)}, :update => 'content'},
104 {:url => {:params => options.merge(:page => n)}, :update => 'content'},
105 {:href => url_for(:params => options.merge(:page => n))})
105 {:href => url_for(:params => options.merge(:page => n))})
106 end || '')
106 end || '')
107
107
108 html << ' ' + link_to_remote((l(:label_next) + ' &#187;'),
108 html << ' ' + link_to_remote((l(:label_next) + ' &#187;'),
109 {:update => "content", :url => options.merge(:page => paginator.current.next)},
109 {:update => "content", :url => options.merge(:page => paginator.current.next)},
110 {:href => url_for(:params => options.merge(:page => paginator.current.next))}) if paginator.current.next
110 {:href => url_for(:params => options.merge(:page => paginator.current.next))}) if paginator.current.next
111 html
111 html
112 end
112 end
113
113
114 # textilize text according to system settings and RedCloth availability
114 # textilize text according to system settings and RedCloth availability
115 def textilizable(text, options = {})
115 def textilizable(text, options = {})
116 return "" if text.blank?
117
116 # different methods for formatting wiki links
118 # different methods for formatting wiki links
117 case options[:wiki_links]
119 case options[:wiki_links]
118 when :local
120 when :local
119 # used for local links to html files
121 # used for local links to html files
120 format_wiki_link = Proc.new {|title| "#{title}.html" }
122 format_wiki_link = Proc.new {|title| "#{title}.html" }
121 when :anchor
123 when :anchor
122 # used for single-file wiki export
124 # used for single-file wiki export
123 format_wiki_link = Proc.new {|title| "##{title}" }
125 format_wiki_link = Proc.new {|title| "##{title}" }
124 else
126 else
125 if @project
127 if @project
126 format_wiki_link = Proc.new {|title| url_for :controller => 'wiki', :action => 'index', :id => @project, :page => title }
128 format_wiki_link = Proc.new {|title| url_for :controller => 'wiki', :action => 'index', :id => @project, :page => title }
127 else
129 else
128 format_wiki_link = Proc.new {|title| title }
130 format_wiki_link = Proc.new {|title| title }
129 end
131 end
130 end
132 end
131
133
132 # turn wiki links into textile links:
134 # turn wiki links into textile links:
133 # example:
135 # example:
134 # [[link]] -> "link":link
136 # [[link]] -> "link":link
135 # [[link|title]] -> "title":link
137 # [[link|title]] -> "title":link
136 text = text.gsub(/\[\[([^\]\|]+)(\|([^\]\|]+))?\]\]/) {|m| "\"#{$3 || $1}\":" + format_wiki_link.call(Wiki.titleize($1)) }
138 text = text.gsub(/\[\[([^\]\|]+)(\|([^\]\|]+))?\]\]/) {|m| "\"#{$3 || $1}\":" + format_wiki_link.call(Wiki.titleize($1)) }
137
139
138 # turn issue ids into links
140 # turn issue ids into links
139 # example:
141 # example:
140 # #52 -> <a href="/issues/show/52">#52</a>
142 # #52 -> <a href="/issues/show/52">#52</a>
141 text = text.gsub(/#(\d+)(?=\b)/) {|m| link_to "##{$1}", :controller => 'issues', :action => 'show', :id => $1}
143 text = text.gsub(/#(\d+)(?=\b)/) {|m| link_to "##{$1}", :controller => 'issues', :action => 'show', :id => $1}
142
144
143 # turn revision ids into links (@project needed)
145 # turn revision ids into links (@project needed)
144 # example:
146 # example:
145 # r52 -> <a href="/repositories/revision/6?rev=52">r52</a> (@project.id is 6)
147 # r52 -> <a href="/repositories/revision/6?rev=52">r52</a> (@project.id is 6)
146 text = text.gsub(/(?=\b)r(\d+)(?=\b)/) {|m| link_to "r#{$1}", :controller => 'repositories', :action => 'revision', :id => @project.id, :rev => $1} if @project
148 text = text.gsub(/(?=\b)r(\d+)(?=\b)/) {|m| link_to "r#{$1}", :controller => 'repositories', :action => 'revision', :id => @project.id, :rev => $1} if @project
147
149
148 # finally textilize text
150 # finally textilize text
149 @do_textilize ||= (Setting.text_formatting == 'textile') && (ActionView::Helpers::TextHelper.method_defined? "textilize")
151 @do_textilize ||= (Setting.text_formatting == 'textile') && (ActionView::Helpers::TextHelper.method_defined? "textilize")
150 text = @do_textilize ? auto_link(RedCloth.new(text, [:hard_breaks]).to_html) : simple_format(auto_link(h(text)))
152 text = @do_textilize ? auto_link(RedCloth.new(text, [:hard_breaks]).to_html) : simple_format(auto_link(h(text)))
151 end
153 end
152
154
153 def error_messages_for(object_name, options = {})
155 def error_messages_for(object_name, options = {})
154 options = options.symbolize_keys
156 options = options.symbolize_keys
155 object = instance_variable_get("@#{object_name}")
157 object = instance_variable_get("@#{object_name}")
156 if object && !object.errors.empty?
158 if object && !object.errors.empty?
157 # build full_messages here with controller current language
159 # build full_messages here with controller current language
158 full_messages = []
160 full_messages = []
159 object.errors.each do |attr, msg|
161 object.errors.each do |attr, msg|
160 next if msg.nil?
162 next if msg.nil?
161 msg = msg.first if msg.is_a? Array
163 msg = msg.first if msg.is_a? Array
162 if attr == "base"
164 if attr == "base"
163 full_messages << l(msg)
165 full_messages << l(msg)
164 else
166 else
165 full_messages << "&#171; " + (l_has_string?("field_" + attr) ? l("field_" + attr) : object.class.human_attribute_name(attr)) + " &#187; " + l(msg) unless attr == "custom_values"
167 full_messages << "&#171; " + (l_has_string?("field_" + attr) ? l("field_" + attr) : object.class.human_attribute_name(attr)) + " &#187; " + l(msg) unless attr == "custom_values"
166 end
168 end
167 end
169 end
168 # retrieve custom values error messages
170 # retrieve custom values error messages
169 if object.errors[:custom_values]
171 if object.errors[:custom_values]
170 object.custom_values.each do |v|
172 object.custom_values.each do |v|
171 v.errors.each do |attr, msg|
173 v.errors.each do |attr, msg|
172 next if msg.nil?
174 next if msg.nil?
173 msg = msg.first if msg.is_a? Array
175 msg = msg.first if msg.is_a? Array
174 full_messages << "&#171; " + v.custom_field.name + " &#187; " + l(msg)
176 full_messages << "&#171; " + v.custom_field.name + " &#187; " + l(msg)
175 end
177 end
176 end
178 end
177 end
179 end
178 content_tag("div",
180 content_tag("div",
179 content_tag(
181 content_tag(
180 options[:header_tag] || "h2", lwr(:gui_validation_error, full_messages.length) + " :"
182 options[:header_tag] || "h2", lwr(:gui_validation_error, full_messages.length) + " :"
181 ) +
183 ) +
182 content_tag("ul", full_messages.collect { |msg| content_tag("li", msg) }),
184 content_tag("ul", full_messages.collect { |msg| content_tag("li", msg) }),
183 "id" => options[:id] || "errorExplanation", "class" => options[:class] || "errorExplanation"
185 "id" => options[:id] || "errorExplanation", "class" => options[:class] || "errorExplanation"
184 )
186 )
185 else
187 else
186 ""
188 ""
187 end
189 end
188 end
190 end
189
191
190 def lang_options_for_select(blank=true)
192 def lang_options_for_select(blank=true)
191 (blank ? [["(auto)", ""]] : []) +
193 (blank ? [["(auto)", ""]] : []) +
192 (GLoc.valid_languages.sort {|x,y| x.to_s <=> y.to_s }).collect {|lang| [ l_lang_name(lang.to_s, lang), lang.to_s]}
194 (GLoc.valid_languages.sort {|x,y| x.to_s <=> y.to_s }).collect {|lang| [ l_lang_name(lang.to_s, lang), lang.to_s]}
193 end
195 end
194
196
195 def label_tag_for(name, option_tags = nil, options = {})
197 def label_tag_for(name, option_tags = nil, options = {})
196 label_text = l(("field_"+field.to_s.gsub(/\_id$/, "")).to_sym) + (options.delete(:required) ? @template.content_tag("span", " *", :class => "required"): "")
198 label_text = l(("field_"+field.to_s.gsub(/\_id$/, "")).to_sym) + (options.delete(:required) ? @template.content_tag("span", " *", :class => "required"): "")
197 content_tag("label", label_text)
199 content_tag("label", label_text)
198 end
200 end
199
201
200 def labelled_tabular_form_for(name, object, options, &proc)
202 def labelled_tabular_form_for(name, object, options, &proc)
201 options[:html] ||= {}
203 options[:html] ||= {}
202 options[:html].store :class, "tabular"
204 options[:html].store :class, "tabular"
203 form_for(name, object, options.merge({ :builder => TabularFormBuilder, :lang => current_language}), &proc)
205 form_for(name, object, options.merge({ :builder => TabularFormBuilder, :lang => current_language}), &proc)
204 end
206 end
205
207
206 def check_all_links(form_name)
208 def check_all_links(form_name)
207 link_to_function(l(:button_check_all), "checkAll('#{form_name}', true)") +
209 link_to_function(l(:button_check_all), "checkAll('#{form_name}', true)") +
208 " | " +
210 " | " +
209 link_to_function(l(:button_uncheck_all), "checkAll('#{form_name}', false)")
211 link_to_function(l(:button_uncheck_all), "checkAll('#{form_name}', false)")
210 end
212 end
211
213
212 def calendar_for(field_id)
214 def calendar_for(field_id)
213 image_tag("calendar.png", {:id => "#{field_id}_trigger",:class => "calendar-trigger"}) +
215 image_tag("calendar.png", {:id => "#{field_id}_trigger",:class => "calendar-trigger"}) +
214 javascript_tag("Calendar.setup({inputField : '#{field_id}', ifFormat : '%Y-%m-%d', button : '#{field_id}_trigger' });")
216 javascript_tag("Calendar.setup({inputField : '#{field_id}', ifFormat : '%Y-%m-%d', button : '#{field_id}_trigger' });")
215 end
217 end
216 end
218 end
217
219
218 class TabularFormBuilder < ActionView::Helpers::FormBuilder
220 class TabularFormBuilder < ActionView::Helpers::FormBuilder
219 include GLoc
221 include GLoc
220
222
221 def initialize(object_name, object, template, options, proc)
223 def initialize(object_name, object, template, options, proc)
222 set_language_if_valid options.delete(:lang)
224 set_language_if_valid options.delete(:lang)
223 @object_name, @object, @template, @options, @proc = object_name, object, template, options, proc
225 @object_name, @object, @template, @options, @proc = object_name, object, template, options, proc
224 end
226 end
225
227
226 (field_helpers - %w(radio_button hidden_field) + %w(date_select)).each do |selector|
228 (field_helpers - %w(radio_button hidden_field) + %w(date_select)).each do |selector|
227 src = <<-END_SRC
229 src = <<-END_SRC
228 def #{selector}(field, options = {})
230 def #{selector}(field, options = {})
229 return super if options.delete :no_label
231 return super if options.delete :no_label
230 label_text = l(("field_"+field.to_s.gsub(/\_id$/, "")).to_sym) + (options.delete(:required) ? @template.content_tag("span", " *", :class => "required"): "")
232 label_text = l(("field_"+field.to_s.gsub(/\_id$/, "")).to_sym) + (options.delete(:required) ? @template.content_tag("span", " *", :class => "required"): "")
231 label = @template.content_tag("label", label_text,
233 label = @template.content_tag("label", label_text,
232 :class => (@object && @object.errors[field] ? "error" : nil),
234 :class => (@object && @object.errors[field] ? "error" : nil),
233 :for => (@object_name.to_s + "_" + field.to_s))
235 :for => (@object_name.to_s + "_" + field.to_s))
234 label + super
236 label + super
235 end
237 end
236 END_SRC
238 END_SRC
237 class_eval src, __FILE__, __LINE__
239 class_eval src, __FILE__, __LINE__
238 end
240 end
239
241
240 def select(field, choices, options = {}, html_options = {})
242 def select(field, choices, options = {}, html_options = {})
241 label_text = l(("field_"+field.to_s.gsub(/\_id$/, "")).to_sym) + (options.delete(:required) ? @template.content_tag("span", " *", :class => "required"): "")
243 label_text = l(("field_"+field.to_s.gsub(/\_id$/, "")).to_sym) + (options.delete(:required) ? @template.content_tag("span", " *", :class => "required"): "")
242 label = @template.content_tag("label", label_text,
244 label = @template.content_tag("label", label_text,
243 :class => (@object && @object.errors[field] ? "error" : nil),
245 :class => (@object && @object.errors[field] ? "error" : nil),
244 :for => (@object_name.to_s + "_" + field.to_s))
246 :for => (@object_name.to_s + "_" + field.to_s))
245 label + super
247 label + super
246 end
248 end
247
249
248 end
250 end
249
251
@@ -1,68 +1,68
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class Changeset < ActiveRecord::Base
18 class Changeset < ActiveRecord::Base
19 belongs_to :repository
19 belongs_to :repository
20 has_many :changes, :dependent => :delete_all
20 has_many :changes, :dependent => :delete_all
21 has_and_belongs_to_many :issues
21 has_and_belongs_to_many :issues
22
22
23 validates_presence_of :repository_id, :revision, :committed_on, :commit_date
23 validates_presence_of :repository_id, :revision, :committed_on, :commit_date
24 validates_numericality_of :revision, :only_integer => true
24 validates_numericality_of :revision, :only_integer => true
25 validates_uniqueness_of :revision, :scope => :repository_id
25 validates_uniqueness_of :revision, :scope => :repository_id
26
26
27 def committed_on=(date)
27 def committed_on=(date)
28 self.commit_date = date
28 self.commit_date = date
29 super
29 super
30 end
30 end
31
31
32 def after_create
32 def after_create
33 scan_comment_for_issue_ids
33 scan_comment_for_issue_ids
34 end
34 end
35
35
36 def scan_comment_for_issue_ids
36 def scan_comment_for_issue_ids
37 return if comment.blank?
37 return if comments.blank?
38 # keywords used to reference issues
38 # keywords used to reference issues
39 ref_keywords = Setting.commit_ref_keywords.downcase.split(",")
39 ref_keywords = Setting.commit_ref_keywords.downcase.split(",")
40 # keywords used to fix issues
40 # keywords used to fix issues
41 fix_keywords = Setting.commit_fix_keywords.downcase.split(",")
41 fix_keywords = Setting.commit_fix_keywords.downcase.split(",")
42 # status applied
42 # status applied
43 fix_status = IssueStatus.find_by_id(Setting.commit_fix_status_id)
43 fix_status = IssueStatus.find_by_id(Setting.commit_fix_status_id)
44
44
45 kw_regexp = (ref_keywords + fix_keywords).collect{|kw| Regexp.escape(kw.strip)}.join("|")
45 kw_regexp = (ref_keywords + fix_keywords).collect{|kw| Regexp.escape(kw.strip)}.join("|")
46 return if kw_regexp.blank?
46 return if kw_regexp.blank?
47
47
48 # remove any associated issues
48 # remove any associated issues
49 self.issues.clear
49 self.issues.clear
50
50
51 comment.scan(Regexp.new("(#{kw_regexp})[\s:]+(([\s,;&]*#?\\d+)+)", Regexp::IGNORECASE)).each do |match|
51 comments.scan(Regexp.new("(#{kw_regexp})[\s:]+(([\s,;&]*#?\\d+)+)", Regexp::IGNORECASE)).each do |match|
52 action = match[0]
52 action = match[0]
53 target_issue_ids = match[1].scan(/\d+/)
53 target_issue_ids = match[1].scan(/\d+/)
54 target_issues = repository.project.issues.find_all_by_id(target_issue_ids)
54 target_issues = repository.project.issues.find_all_by_id(target_issue_ids)
55 if fix_status && fix_keywords.include?(action.downcase)
55 if fix_status && fix_keywords.include?(action.downcase)
56 # update status of issues
56 # update status of issues
57 logger.debug "Issues fixed by changeset #{self.revision}: #{issue_ids.join(', ')}." if logger && logger.debug?
57 logger.debug "Issues fixed by changeset #{self.revision}: #{issue_ids.join(', ')}." if logger && logger.debug?
58 target_issues.each do |issue|
58 target_issues.each do |issue|
59 # don't change the status is the issue is already closed
59 # don't change the status is the issue is already closed
60 next if issue.status.is_closed?
60 next if issue.status.is_closed?
61 issue.status = fix_status
61 issue.status = fix_status
62 issue.save
62 issue.save
63 end
63 end
64 end
64 end
65 self.issues << target_issues
65 self.issues << target_issues
66 end
66 end
67 end
67 end
68 end
68 end
@@ -1,23 +1,23
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
2 # Copyright (C) 2006 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class Comment < ActiveRecord::Base
18 class Comment < ActiveRecord::Base
19 belongs_to :commented, :polymorphic => true, :counter_cache => true
19 belongs_to :commented, :polymorphic => true, :counter_cache => true
20 belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'
20 belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'
21
21
22 validates_presence_of :commented, :author, :comment
22 validates_presence_of :commented, :author, :comments
23 end
23 end
@@ -1,38 +1,38
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
2 # Copyright (C) 2006 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class CustomValue < ActiveRecord::Base
18 class CustomValue < ActiveRecord::Base
19 belongs_to :custom_field
19 belongs_to :custom_field
20 belongs_to :customized, :polymorphic => true
20 belongs_to :customized, :polymorphic => true
21
21
22 protected
22 protected
23 def validate
23 def validate
24 errors.add(:value, :activerecord_error_blank) and return if custom_field.is_required? and value.empty?
24 errors.add(:value, :activerecord_error_blank) and return if custom_field.is_required? and value.empty?
25 errors.add(:value, :activerecord_error_invalid) unless custom_field.regexp.empty? or value =~ Regexp.new(custom_field.regexp)
25 errors.add(:value, :activerecord_error_invalid) unless custom_field.regexp.blank? or value =~ Regexp.new(custom_field.regexp)
26 errors.add(:value, :activerecord_error_too_short) if custom_field.min_length > 0 and value.length < custom_field.min_length and value.length > 0
26 errors.add(:value, :activerecord_error_too_short) if custom_field.min_length > 0 and value.length < custom_field.min_length and value.length > 0
27 errors.add(:value, :activerecord_error_too_long) if custom_field.max_length > 0 and value.length > custom_field.max_length
27 errors.add(:value, :activerecord_error_too_long) if custom_field.max_length > 0 and value.length > custom_field.max_length
28 case custom_field.field_format
28 case custom_field.field_format
29 when "int"
29 when "int"
30 errors.add(:value, :activerecord_error_not_a_number) unless value =~ /^[0-9]*$/
30 errors.add(:value, :activerecord_error_not_a_number) unless value =~ /^[0-9]*$/
31 when "date"
31 when "date"
32 errors.add(:value, :activerecord_error_not_a_date) unless value =~ /^\d{4}-\d{2}-\d{2}$/ or value.empty?
32 errors.add(:value, :activerecord_error_not_a_date) unless value =~ /^\d{4}-\d{2}-\d{2}$/ or value.empty?
33 when "list"
33 when "list"
34 errors.add(:value, :activerecord_error_inclusion) unless custom_field.possible_values.include? value or value.empty?
34 errors.add(:value, :activerecord_error_inclusion) unless custom_field.possible_values.include? value or value.empty?
35 end
35 end
36 end
36 end
37 end
37 end
38
38
@@ -1,97 +1,97
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class Repository < ActiveRecord::Base
18 class Repository < ActiveRecord::Base
19 belongs_to :project
19 belongs_to :project
20 has_many :changesets, :dependent => :destroy, :order => 'revision DESC'
20 has_many :changesets, :dependent => :destroy, :order => 'revision DESC'
21 has_many :changes, :through => :changesets
21 has_many :changes, :through => :changesets
22 has_one :latest_changeset, :class_name => 'Changeset', :foreign_key => :repository_id, :order => 'revision DESC'
22 has_one :latest_changeset, :class_name => 'Changeset', :foreign_key => :repository_id, :order => 'revision DESC'
23
23
24 attr_protected :root_url
24 attr_protected :root_url
25
25
26 validates_presence_of :url
26 validates_presence_of :url
27 validates_format_of :url, :with => /^(http|https|svn|file):\/\/.+/i
27 validates_format_of :url, :with => /^(http|https|svn|file):\/\/.+/i
28
28
29 def scm
29 def scm
30 @scm ||= SvnRepos::Base.new url, root_url, login, password
30 @scm ||= SvnRepos::Base.new url, root_url, login, password
31 update_attribute(:root_url, @scm.root_url) if root_url.blank?
31 update_attribute(:root_url, @scm.root_url) if root_url.blank?
32 @scm
32 @scm
33 end
33 end
34
34
35 def url=(str)
35 def url=(str)
36 super if root_url.blank?
36 super if root_url.blank?
37 end
37 end
38
38
39 def changesets_with_path(path="")
39 def changesets_with_path(path="")
40 path = "/#{path}%"
40 path = "/#{path}%"
41 path = url.gsub(/^#{root_url}/, '') + path if root_url && root_url != url
41 path = url.gsub(/^#{root_url}/, '') + path if root_url && root_url != url
42 path.squeeze!("/")
42 path.squeeze!("/")
43 Changeset.with_scope(:find => { :include => :changes, :conditions => ["#{Change.table_name}.path LIKE ?", path] }) do
43 Changeset.with_scope(:find => { :include => :changes, :conditions => ["#{Change.table_name}.path LIKE ?", path] }) do
44 yield
44 yield
45 end
45 end
46 end
46 end
47
47
48 def fetch_changesets
48 def fetch_changesets
49 scm_info = scm.info
49 scm_info = scm.info
50 if scm_info
50 if scm_info
51 lastrev_identifier = scm_info.lastrev.identifier.to_i
51 lastrev_identifier = scm_info.lastrev.identifier.to_i
52 if latest_changeset.nil? || latest_changeset.revision < lastrev_identifier
52 if latest_changeset.nil? || latest_changeset.revision < lastrev_identifier
53 logger.debug "Fetching changesets for repository #{url}" if logger && logger.debug?
53 logger.debug "Fetching changesets for repository #{url}" if logger && logger.debug?
54 identifier_from = latest_changeset ? latest_changeset.revision + 1 : 1
54 identifier_from = latest_changeset ? latest_changeset.revision + 1 : 1
55 while (identifier_from <= lastrev_identifier)
55 while (identifier_from <= lastrev_identifier)
56 # loads changesets by batches of 200
56 # loads changesets by batches of 200
57 identifier_to = [identifier_from + 199, lastrev_identifier].min
57 identifier_to = [identifier_from + 199, lastrev_identifier].min
58 revisions = scm.revisions('', identifier_to, identifier_from, :with_paths => true)
58 revisions = scm.revisions('', identifier_to, identifier_from, :with_paths => true)
59 transaction do
59 transaction do
60 revisions.reverse_each do |revision|
60 revisions.reverse_each do |revision|
61 changeset = Changeset.create(:repository => self,
61 changeset = Changeset.create(:repository => self,
62 :revision => revision.identifier,
62 :revision => revision.identifier,
63 :committer => revision.author,
63 :committer => revision.author,
64 :committed_on => revision.time,
64 :committed_on => revision.time,
65 :comment => revision.message)
65 :comments => revision.message)
66
66
67 revision.paths.each do |change|
67 revision.paths.each do |change|
68 Change.create(:changeset => changeset,
68 Change.create(:changeset => changeset,
69 :action => change[:action],
69 :action => change[:action],
70 :path => change[:path],
70 :path => change[:path],
71 :from_path => change[:from_path],
71 :from_path => change[:from_path],
72 :from_revision => change[:from_revision])
72 :from_revision => change[:from_revision])
73 end
73 end
74 end
74 end
75 end unless revisions.nil?
75 end unless revisions.nil?
76 identifier_from = identifier_to + 1
76 identifier_from = identifier_to + 1
77 end
77 end
78 end
78 end
79 end
79 end
80 end
80 end
81
81
82 def scan_changesets_for_issue_ids
82 def scan_changesets_for_issue_ids
83 self.changesets.each(&:scan_comment_for_issue_ids)
83 self.changesets.each(&:scan_comment_for_issue_ids)
84 end
84 end
85
85
86 # fetch new changesets for all repositories
86 # fetch new changesets for all repositories
87 # can be called periodically by an external script
87 # can be called periodically by an external script
88 # eg. ruby script/runner "Repository.fetch_changesets"
88 # eg. ruby script/runner "Repository.fetch_changesets"
89 def self.fetch_changesets
89 def self.fetch_changesets
90 find(:all).each(&:fetch_changesets)
90 find(:all).each(&:fetch_changesets)
91 end
91 end
92
92
93 # scan changeset comments to find related and fixed issues for all repositories
93 # scan changeset comments to find related and fixed issues for all repositories
94 def self.scan_changesets_for_issue_ids
94 def self.scan_changesets_for_issue_ids
95 find(:all).each(&:scan_changesets_for_issue_ids)
95 find(:all).each(&:scan_changesets_for_issue_ids)
96 end
96 end
97 end
97 end
@@ -1,33 +1,33
1 class TimeEntry < ActiveRecord::Base
1 class TimeEntry < ActiveRecord::Base
2 # could have used polymorphic association
2 # could have used polymorphic association
3 # project association here allows easy loading of time entries at project level with one database trip
3 # project association here allows easy loading of time entries at project level with one database trip
4 belongs_to :project
4 belongs_to :project
5 belongs_to :issue
5 belongs_to :issue
6 belongs_to :user
6 belongs_to :user
7 belongs_to :activity, :class_name => 'Enumeration', :foreign_key => :activity_id
7 belongs_to :activity, :class_name => 'Enumeration', :foreign_key => :activity_id
8
8
9 attr_protected :project_id, :user_id, :tyear, :tmonth, :tweek
9 attr_protected :project_id, :user_id, :tyear, :tmonth, :tweek
10
10
11 validates_presence_of :user_id, :activity_id, :project_id, :hours, :spent_on
11 validates_presence_of :user_id, :activity_id, :project_id, :hours, :spent_on
12 validates_numericality_of :hours, :allow_nil => true
12 validates_numericality_of :hours, :allow_nil => true
13 validates_length_of :comment, :maximum => 255
13 validates_length_of :comments, :maximum => 255
14
14
15 def before_validation
15 def before_validation
16 self.project = issue.project if issue && project.nil?
16 self.project = issue.project if issue && project.nil?
17 end
17 end
18
18
19 def validate
19 def validate
20 errors.add :hours, :activerecord_error_invalid if hours && (hours < 0 || hours >= 1000)
20 errors.add :hours, :activerecord_error_invalid if hours && (hours < 0 || hours >= 1000)
21 errors.add :project_id, :activerecord_error_invalid if project.nil?
21 errors.add :project_id, :activerecord_error_invalid if project.nil?
22 errors.add :issue_id, :activerecord_error_invalid if (issue_id && !issue) || (issue && project!=issue.project)
22 errors.add :issue_id, :activerecord_error_invalid if (issue_id && !issue) || (issue && project!=issue.project)
23 end
23 end
24
24
25 # tyear, tmonth, tweek assigned where setting spent_on attributes
25 # tyear, tmonth, tweek assigned where setting spent_on attributes
26 # these attributes make time aggregations easier
26 # these attributes make time aggregations easier
27 def spent_on=(date)
27 def spent_on=(date)
28 super
28 super
29 self.tyear = spent_on ? spent_on.year : nil
29 self.tyear = spent_on ? spent_on.year : nil
30 self.tmonth = spent_on ? spent_on.month : nil
30 self.tmonth = spent_on ? spent_on.month : nil
31 self.tweek = spent_on ? spent_on.cweek : nil
31 self.tweek = spent_on ? Date.civil(spent_on.year, spent_on.month, spent_on.day).cweek : nil
32 end
32 end
33 end
33 end
@@ -1,44 +1,49
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
2 # Copyright (C) 2006 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class UserPreference < ActiveRecord::Base
18 class UserPreference < ActiveRecord::Base
19 belongs_to :user
19 belongs_to :user
20 serialize :others
20 serialize :others
21
21
22 attr_protected :others
22 attr_protected :others
23
23
24 def initialize(attributes = nil)
24 def initialize(attributes = nil)
25 super
25 super
26 self.others ||= {}
26 self.others ||= {}
27 end
27 end
28
28
29 def before_save
30 self.others ||= {}
31 end
32
29 def [](attr_name)
33 def [](attr_name)
30 if attribute_present? attr_name
34 if attribute_present? attr_name
31 super
35 super
32 else
36 else
33 others[attr_name]
37 others ? others[attr_name] : nil
34 end
38 end
35 end
39 end
36
40
37 def []=(attr_name, value)
41 def []=(attr_name, value)
38 if attribute_present? attr_name
42 if attribute_present? attr_name
39 super
43 super
40 else
44 else
41 others.store attr_name, value
45 self.others ||= {}
46 self.others.store attr_name, value
42 end
47 end
43 end
48 end
44 end
49 end
@@ -1,32 +1,32
1 <div class="contextual">
1 <div class="contextual">
2 <%= link_to_if_authorized l(:button_edit), {:controller => 'news', :action => 'edit', :id => @news}, :class => 'icon icon-edit' %>
2 <%= link_to_if_authorized l(:button_edit), {:controller => 'news', :action => 'edit', :id => @news}, :class => 'icon icon-edit' %>
3 <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy', :id => @news}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
3 <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy', :id => @news}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
4 </div>
4 </div>
5
5
6 <h2><%=h @news.title %></h2>
6 <h2><%=h @news.title %></h2>
7
7
8 <p><em><% unless @news.summary.empty? %><%=h @news.summary %><br /><% end %>
8 <p><em><% unless @news.summary.empty? %><%=h @news.summary %><br /><% end %>
9 <%= @news.author.display_name %>, <%= format_time(@news.created_on) %></em></p>
9 <%= @news.author.display_name %>, <%= format_time(@news.created_on) %></em></p>
10 <br />
10 <br />
11 <%= textilizable(@news.description) %>
11 <%= textilizable(@news.description) %>
12 <br />
12 <br />
13
13
14 <div id="comments" style="margin-bottom:16px;">
14 <div id="comments" style="margin-bottom:16px;">
15 <h3 class="icon22 icon22-comment"><%= l(:label_comment_plural) %></h3>
15 <h3 class="icon22 icon22-comment"><%= l(:label_comment_plural) %></h3>
16 <% @news.comments.each do |comment| %>
16 <% @news.comments.each do |comment| %>
17 <% next if comment.new_record? %>
17 <% next if comment.new_record? %>
18 <h4><%= format_time(comment.created_on) %> - <%= comment.author.name %></h4>
18 <h4><%= format_time(comment.created_on) %> - <%= comment.author.name %></h4>
19 <div class="contextual">
19 <div class="contextual">
20 <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy_comment', :id => @news, :comment_id => comment}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
20 <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy_comment', :id => @news, :comment_id => comment}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
21 </div>
21 </div>
22 <%= simple_format(auto_link(h comment.comment))%>
22 <%= simple_format(auto_link(h comment.comments))%>
23 <% end if @news.comments_count > 0 %>
23 <% end if @news.comments_count > 0 %>
24 </div>
24 </div>
25
25
26 <% if authorize_for 'news', 'add_comment' %>
26 <% if authorize_for 'news', 'add_comment' %>
27 <p><%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comment" %></p>
27 <p><%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %></p>
28 <% form_tag({:action => 'add_comment', :id => @news}, :id => "add_comment_form", :style => "display:none;") do %>
28 <% form_tag({:action => 'add_comment', :id => @news}, :id => "add_comment_form", :style => "display:none;") do %>
29 <%= text_area 'comment', 'comment', :cols => 60, :rows => 6 %>
29 <%= text_area 'comment', 'comments', :cols => 60, :rows => 6 %>
30 <p><%= submit_tag l(:button_add) %></p>
30 <p><%= submit_tag l(:button_add) %></p>
31 <% end %>
31 <% end %>
32 <% end %> No newline at end of file
32 <% end %>
@@ -1,67 +1,67
1 <h2><%=l(:label_activity)%>: <%= "#{month_name(@month).downcase} #{@year}" %></h2>
1 <h2><%=l(:label_activity)%>: <%= "#{month_name(@month).downcase} #{@year}" %></h2>
2
2
3 <div>
3 <div>
4 <div class="rightbox">
4 <div class="rightbox">
5 <% form_tag do %>
5 <% form_tag do %>
6 <p><%= select_month(@month, :prefix => "month", :discard_type => true) %>
6 <p><%= select_month(@month, :prefix => "month", :discard_type => true) %>
7 <%= select_year(@year, :prefix => "year", :discard_type => true) %></p>
7 <%= select_year(@year, :prefix => "year", :discard_type => true) %></p>
8 <p>
8 <p>
9 <%= check_box_tag 'show_issues', 1, @show_issues %><%= hidden_field_tag 'show_issues', 0, :id => nil %> <%=l(:label_issue_plural)%><br />
9 <%= check_box_tag 'show_issues', 1, @show_issues %><%= hidden_field_tag 'show_issues', 0, :id => nil %> <%=l(:label_issue_plural)%><br />
10 <% if @project.repository %><%= check_box_tag 'show_changesets', 1, @show_changesets %><%= hidden_field_tag 'show_changesets', 0, :id => nil %> <%=l(:label_revision_plural)%><br /><% end %>
10 <% if @project.repository %><%= check_box_tag 'show_changesets', 1, @show_changesets %><%= hidden_field_tag 'show_changesets', 0, :id => nil %> <%=l(:label_revision_plural)%><br /><% end %>
11 <%= check_box_tag 'show_news', 1, @show_news %><%= hidden_field_tag 'show_news', 0, :id => nil %> <%=l(:label_news_plural)%><br />
11 <%= check_box_tag 'show_news', 1, @show_news %><%= hidden_field_tag 'show_news', 0, :id => nil %> <%=l(:label_news_plural)%><br />
12 <%= check_box_tag 'show_files', 1, @show_files %><%= hidden_field_tag 'show_files', 0, :id => nil %> <%=l(:label_attachment_plural)%><br />
12 <%= check_box_tag 'show_files', 1, @show_files %><%= hidden_field_tag 'show_files', 0, :id => nil %> <%=l(:label_attachment_plural)%><br />
13 <%= check_box_tag 'show_documents', 1, @show_documents %><%= hidden_field_tag 'show_documents', 0, :id => nil %> <%=l(:label_document_plural)%><br />
13 <%= check_box_tag 'show_documents', 1, @show_documents %><%= hidden_field_tag 'show_documents', 0, :id => nil %> <%=l(:label_document_plural)%><br />
14 <%= check_box_tag 'show_wiki_edits', 1, @show_wiki_edits %><%= hidden_field_tag 'show_wiki_edits', 0, :id => nil %> <%=l(:label_wiki_edit_plural)%>
14 <%= check_box_tag 'show_wiki_edits', 1, @show_wiki_edits %><%= hidden_field_tag 'show_wiki_edits', 0, :id => nil %> <%=l(:label_wiki_edit_plural)%>
15 </p>
15 </p>
16 <p class="textcenter"><%= submit_tag l(:button_apply), :class => 'button-small' %></p>
16 <p class="textcenter"><%= submit_tag l(:button_apply), :class => 'button-small' %></p>
17 <% end %>
17 <% end %>
18 </div>
18 </div>
19
19
20 <% @events_by_day.keys.sort {|x,y| y <=> x }.each do |day| %>
20 <% @events_by_day.keys.sort {|x,y| y <=> x }.each do |day| %>
21 <h3><%= day_name(day.cwday) %> <%= day.day %></h3>
21 <h3><%= day_name(day.cwday) %> <%= day.day %></h3>
22 <ul>
22 <ul>
23 <% @events_by_day[day].sort {|x,y| y.created_on <=> x.created_on }.each do |e| %>
23 <% @events_by_day[day].sort {|x,y| y.created_on <=> x.created_on }.each do |e| %>
24 <li><p>
24 <li><p>
25 <% if e.is_a? Issue %>
25 <% if e.is_a? Issue %>
26 <%= e.created_on.strftime("%H:%M") %> <%= link_to_issue e %>: <%=h e.subject %><br />
26 <%= e.created_on.strftime("%H:%M") %> <%= link_to_issue e %>: <%=h e.subject %><br />
27 <i><%= e.author.name %></i>
27 <i><%= e.author.name %></i>
28 <% elsif e.is_a? News %>
28 <% elsif e.is_a? News %>
29 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_news)%>: <%= link_to h(e.title), :controller => 'news', :action => 'show', :id => e %><br />
29 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_news)%>: <%= link_to h(e.title), :controller => 'news', :action => 'show', :id => e %><br />
30 <% unless e.summary.empty? %><%=h e.summary %><br /><% end %>
30 <% unless e.summary.empty? %><%=h e.summary %><br /><% end %>
31 <i><%= e.author.name %></i>
31 <i><%= e.author.name %></i>
32 <% elsif (e.is_a? Attachment) and (e.container.is_a? Version) %>
32 <% elsif (e.is_a? Attachment) and (e.container.is_a? Version) %>
33 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_attachment)%> (<%=h e.container.name %>): <%= link_to e.filename, :controller => 'projects', :action => 'list_files', :id => @project %><br />
33 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_attachment)%> (<%=h e.container.name %>): <%= link_to e.filename, :controller => 'projects', :action => 'list_files', :id => @project %><br />
34 <i><%= e.author.name %></i>
34 <i><%= e.author.name %></i>
35 <% elsif (e.is_a? Attachment) and (e.container.is_a? Document) %>
35 <% elsif (e.is_a? Attachment) and (e.container.is_a? Document) %>
36 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_attachment)%>: <%= e.filename %> (<%= link_to h(e.container.title), :controller => 'documents', :action => 'show', :id => e.container %>)<br />
36 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_attachment)%>: <%= e.filename %> (<%= link_to h(e.container.title), :controller => 'documents', :action => 'show', :id => e.container %>)<br />
37 <i><%= e.author.name %></i>
37 <i><%= e.author.name %></i>
38 <% elsif e.is_a? Document %>
38 <% elsif e.is_a? Document %>
39 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_document)%>: <%= link_to h(e.title), :controller => 'documents', :action => 'show', :id => e %><br />
39 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_document)%>: <%= link_to h(e.title), :controller => 'documents', :action => 'show', :id => e %><br />
40 <% elsif e.is_a? WikiContent.versioned_class %>
40 <% elsif e.is_a? WikiContent.versioned_class %>
41 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_wiki_edit)%>: <%= link_to h(WikiPage.pretty_title(e.title)), :controller => 'wiki', :page => e.title %> (<%= link_to '#' + e.version.to_s, :controller => 'wiki', :page => e.title, :version => e.version %>)<br />
41 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_wiki_edit)%>: <%= link_to h(WikiPage.pretty_title(e.title)), :controller => 'wiki', :page => e.title %> (<%= link_to '#' + e.version.to_s, :controller => 'wiki', :page => e.title, :version => e.version %>)<br />
42 <% unless e.comment.blank? %><em><%=h e.comment %></em><% end %>
42 <% unless e.comments.blank? %><em><%=h e.comments %></em><% end %>
43 <% elsif e.is_a? Changeset %>
43 <% elsif e.is_a? Changeset %>
44 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_revision)%> <%= link_to h(e.revision), :controller => 'repositories', :action => 'revision', :id => @project, :rev => e.revision %><br />
44 <%= e.created_on.strftime("%H:%M") %> <%=l(:label_revision)%> <%= link_to h(e.revision), :controller => 'repositories', :action => 'revision', :id => @project, :rev => e.revision %><br />
45 <em><%=h e.committer.blank? ? "anonymous" : e.committer %><%= h(": #{truncate(e.comment, 500)}") unless e.comment.blank? %></em>
45 <em><%=h e.committer.blank? ? "anonymous" : e.committer %><%= h(": #{truncate(e.comments, 500)}") unless e.comments.blank? %></em>
46 <% end %>
46 <% end %>
47 </p></li>
47 </p></li>
48
48
49 <% end %>
49 <% end %>
50 </ul>
50 </ul>
51 <% end %>
51 <% end %>
52 <% if @events_by_day.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
52 <% if @events_by_day.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
53
53
54 <div style="float:left;">
54 <div style="float:left;">
55 <%= link_to_remote ('&#171; ' + (@month==1 ? "#{month_name(12)} #{@year-1}" : "#{month_name(@month-1)}")),
55 <%= link_to_remote ('&#171; ' + (@month==1 ? "#{month_name(12)} #{@year-1}" : "#{month_name(@month-1)}")),
56 {:update => "content", :url => { :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1) }},
56 {:update => "content", :url => { :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1) }},
57 {:href => url_for(:action => 'activity', :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1))}
57 {:href => url_for(:action => 'activity', :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1))}
58 %>
58 %>
59 </div>
59 </div>
60 <div style="float:right;">
60 <div style="float:right;">
61 <%= link_to_remote ((@month==12 ? "#{month_name(1)} #{@year+1}" : "#{month_name(@month+1)}") + ' &#187;'),
61 <%= link_to_remote ((@month==12 ? "#{month_name(1)} #{@year+1}" : "#{month_name(@month+1)}") + ' &#187;'),
62 {:update => "content", :url => { :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1) }},
62 {:update => "content", :url => { :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1) }},
63 {:href => url_for(:action => 'activity', :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1))}
63 {:href => url_for(:action => 'activity', :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1))}
64 %>&nbsp;
64 %>&nbsp;
65 </div>
65 </div>
66 <br />
66 <br />
67 </div>
67 </div>
@@ -1,50 +1,50
1 <h2><%= l(:label_search) %></h2>
1 <h2><%= l(:label_search) %></h2>
2
2
3 <div class="box">
3 <div class="box">
4 <% form_tag({:action => 'search', :id => @project}, :method => :get) do %>
4 <% form_tag({:action => 'search', :id => @project}, :method => :get) do %>
5 <p><%= text_field_tag 'q', @question, :size => 30 %>
5 <p><%= text_field_tag 'q', @question, :size => 30 %>
6 <%= check_box_tag 'scope[]', 'issues', (@scope.include? 'issues') %> <label><%= l(:label_issue_plural) %></label>
6 <%= check_box_tag 'scope[]', 'issues', (@scope.include? 'issues') %> <label><%= l(:label_issue_plural) %></label>
7 <% if @project.repository %>
7 <% if @project.repository %>
8 <%= check_box_tag 'scope[]', 'changesets', (@scope.include? 'changesets') %> <label><%= l(:label_revision_plural) %></label>
8 <%= check_box_tag 'scope[]', 'changesets', (@scope.include? 'changesets') %> <label><%= l(:label_revision_plural) %></label>
9 <% end %>
9 <% end %>
10 <%= check_box_tag 'scope[]', 'news', (@scope.include? 'news') %> <label><%= l(:label_news_plural) %></label>
10 <%= check_box_tag 'scope[]', 'news', (@scope.include? 'news') %> <label><%= l(:label_news_plural) %></label>
11 <%= check_box_tag 'scope[]', 'documents', (@scope.include? 'documents') %> <label><%= l(:label_document_plural) %></label>
11 <%= check_box_tag 'scope[]', 'documents', (@scope.include? 'documents') %> <label><%= l(:label_document_plural) %></label>
12 <% if @project.wiki %>
12 <% if @project.wiki %>
13 <%= check_box_tag 'scope[]', 'wiki', (@scope.include? 'wiki') %> <label><%= l(:label_wiki) %></label>
13 <%= check_box_tag 'scope[]', 'wiki', (@scope.include? 'wiki') %> <label><%= l(:label_wiki) %></label>
14 <% end %>
14 <% end %>
15 <br />
15 <br />
16 <%= check_box_tag 'all_words', 1, @all_words %> <%= l(:label_all_words) %></p>
16 <%= check_box_tag 'all_words', 1, @all_words %> <%= l(:label_all_words) %></p>
17 <%= submit_tag l(:button_submit), :name => 'submit' %>
17 <%= submit_tag l(:button_submit), :name => 'submit' %>
18 <% end %>
18 <% end %>
19 </div>
19 </div>
20
20
21 <% if @results %>
21 <% if @results %>
22 <h3><%= lwr(:label_result, @results.length) %></h3>
22 <h3><%= lwr(:label_result, @results.length) %></h3>
23 <ul>
23 <ul>
24 <% @results.each do |e| %>
24 <% @results.each do |e| %>
25 <li><p>
25 <li><p>
26 <% if e.is_a? Issue %>
26 <% if e.is_a? Issue %>
27 <%= link_to_issue e %>: <%= highlight_tokens(h(e.subject), @tokens) %><br />
27 <%= link_to_issue e %>: <%= highlight_tokens(h(e.subject), @tokens) %><br />
28 <%= highlight_tokens(e.description, @tokens) %><br />
28 <%= highlight_tokens(e.description, @tokens) %><br />
29 <i><%= e.author.name %>, <%= format_time(e.created_on) %></i>
29 <i><%= e.author.name %>, <%= format_time(e.created_on) %></i>
30 <% elsif e.is_a? News %>
30 <% elsif e.is_a? News %>
31 <%=l(:label_news)%>: <%= link_to highlight_tokens(h(e.title), @tokens), :controller => 'news', :action => 'show', :id => e %><br />
31 <%=l(:label_news)%>: <%= link_to highlight_tokens(h(e.title), @tokens), :controller => 'news', :action => 'show', :id => e %><br />
32 <%= highlight_tokens(e.description, @tokens) %><br />
32 <%= highlight_tokens(e.description, @tokens) %><br />
33 <i><%= e.author.name %>, <%= format_time(e.created_on) %></i>
33 <i><%= e.author.name %>, <%= format_time(e.created_on) %></i>
34 <% elsif e.is_a? Document %>
34 <% elsif e.is_a? Document %>
35 <%=l(:label_document)%>: <%= link_to highlight_tokens(h(e.title), @tokens), :controller => 'documents', :action => 'show', :id => e %><br />
35 <%=l(:label_document)%>: <%= link_to highlight_tokens(h(e.title), @tokens), :controller => 'documents', :action => 'show', :id => e %><br />
36 <%= highlight_tokens(e.description, @tokens) %><br />
36 <%= highlight_tokens(e.description, @tokens) %><br />
37 <i><%= format_time(e.created_on) %></i>
37 <i><%= format_time(e.created_on) %></i>
38 <% elsif e.is_a? WikiPage %>
38 <% elsif e.is_a? WikiPage %>
39 <%=l(:label_wiki)%>: <%= link_to highlight_tokens(h(e.pretty_title), @tokens), :controller => 'wiki', :action => 'index', :id => @project, :page => e.title %><br />
39 <%=l(:label_wiki)%>: <%= link_to highlight_tokens(h(e.pretty_title), @tokens), :controller => 'wiki', :action => 'index', :id => @project, :page => e.title %><br />
40 <%= highlight_tokens(e.content.text, @tokens) %><br />
40 <%= highlight_tokens(e.content.text, @tokens) %><br />
41 <i><%= e.content.author ? e.content.author.name : "Anonymous" %>, <%= format_time(e.content.updated_on) %></i>
41 <i><%= e.content.author ? e.content.author.name : "Anonymous" %>, <%= format_time(e.content.updated_on) %></i>
42 <% elsif e.is_a? Changeset %>
42 <% elsif e.is_a? Changeset %>
43 <%=l(:label_revision)%> <%= link_to h(e.revision), :controller => 'repositories', :action => 'revision', :id => @project, :rev => e.revision %><br />
43 <%=l(:label_revision)%> <%= link_to h(e.revision), :controller => 'repositories', :action => 'revision', :id => @project, :rev => e.revision %><br />
44 <%= highlight_tokens(e.comment, @tokens) %><br />
44 <%= highlight_tokens(e.comments, @tokens) %><br />
45 <em><%= e.committer.blank? ? e.committer : "Anonymous" %>, <%= format_time(e.committed_on) %></em>
45 <em><%= e.committer.blank? ? e.committer : "Anonymous" %>, <%= format_time(e.committed_on) %></em>
46 <% end %>
46 <% end %>
47 </p></li>
47 </p></li>
48 <% end %>
48 <% end %>
49 </ul>
49 </ul>
50 <% end %> No newline at end of file
50 <% end %>
@@ -1,62 +1,62
1 <div class="contextual">
1 <div class="contextual">
2 <%= link_to l(:label_feed_plural), {:action => 'feeds', :id => @project}, :class => 'icon icon-feed' %>
2 <%= link_to l(:label_feed_plural), {:action => 'feeds', :id => @project}, :class => 'icon icon-feed' %>
3 </div>
3 </div>
4
4
5 <h2><%=l(:label_overview)%></h2>
5 <h2><%=l(:label_overview)%></h2>
6
6
7 <div class="splitcontentleft">
7 <div class="splitcontentleft">
8 <%= textilizable @project.description %>
8 <%= textilizable @project.description %>
9 <ul>
9 <ul>
10 <% unless @project.homepage.empty? %><li><%=l(:field_homepage)%>: <%= auto_link @project.homepage %></li><% end %>
10 <% unless @project.homepage.blank? %><li><%=l(:field_homepage)%>: <%= auto_link @project.homepage %></li><% end %>
11 <li><%=l(:field_created_on)%>: <%= format_date(@project.created_on) %></li>
11 <li><%=l(:field_created_on)%>: <%= format_date(@project.created_on) %></li>
12 <% unless @project.parent.nil? %>
12 <% unless @project.parent.nil? %>
13 <li><%=l(:field_parent)%>: <%= link_to @project.parent.name, :controller => 'projects', :action => 'show', :id => @project.parent %></li>
13 <li><%=l(:field_parent)%>: <%= link_to @project.parent.name, :controller => 'projects', :action => 'show', :id => @project.parent %></li>
14 <% end %>
14 <% end %>
15 <% for custom_value in @custom_values %>
15 <% for custom_value in @custom_values %>
16 <% if !custom_value.value.empty? %>
16 <% if !custom_value.value.empty? %>
17 <li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
17 <li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
18 <% end %>
18 <% end %>
19 <% end %>
19 <% end %>
20 </ul>
20 </ul>
21
21
22 <div class="box">
22 <div class="box">
23 <div class="contextual">
23 <div class="contextual">
24 <%= render :partial => 'issues/add_shortcut', :locals => {:trackers => @trackers } %>
24 <%= render :partial => 'issues/add_shortcut', :locals => {:trackers => @trackers } %>
25 </div>
25 </div>
26 <h3 class="icon22 icon22-tracker"><%=l(:label_issue_tracking)%></h3>
26 <h3 class="icon22 icon22-tracker"><%=l(:label_issue_tracking)%></h3>
27 <ul>
27 <ul>
28 <% for tracker in @trackers %>
28 <% for tracker in @trackers %>
29 <li><%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project,
29 <li><%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project,
30 :set_filter => 1,
30 :set_filter => 1,
31 "tracker_id" => tracker.id %>:
31 "tracker_id" => tracker.id %>:
32 <%= @open_issues_by_tracker[tracker] || 0 %> <%= lwr(:label_open_issues, @open_issues_by_tracker[tracker] || 0) %>
32 <%= @open_issues_by_tracker[tracker] || 0 %> <%= lwr(:label_open_issues, @open_issues_by_tracker[tracker] || 0) %>
33 <%= l(:label_on) %> <%= @total_issues_by_tracker[tracker] || 0 %></li>
33 <%= l(:label_on) %> <%= @total_issues_by_tracker[tracker] || 0 %></li>
34 <% end %>
34 <% end %>
35 </ul>
35 </ul>
36 <p class="textcenter"><small><%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %></small></p>
36 <p class="textcenter"><small><%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %></small></p>
37 </div>
37 </div>
38 </div>
38 </div>
39
39
40 <div class="splitcontentright">
40 <div class="splitcontentright">
41 <div class="box">
41 <div class="box">
42 <h3 class="icon22 icon22-users"><%=l(:label_member_plural)%></h3>
42 <h3 class="icon22 icon22-users"><%=l(:label_member_plural)%></h3>
43 <% @members_by_role.keys.sort.each do |role| %>
43 <% @members_by_role.keys.sort.each do |role| %>
44 <%= role.name %>: <%= @members_by_role[role].collect(&:user).sort.collect{|u| link_to_user u}.join(", ") %><br />
44 <%= role.name %>: <%= @members_by_role[role].collect(&:user).sort.collect{|u| link_to_user u}.join(", ") %><br />
45 <% end %>
45 <% end %>
46 </div>
46 </div>
47
47
48 <% if @subprojects %>
48 <% if @subprojects %>
49 <div class="box">
49 <div class="box">
50 <h3 class="icon22 icon22-projects"><%=l(:label_subproject_plural)%></h3>
50 <h3 class="icon22 icon22-projects"><%=l(:label_subproject_plural)%></h3>
51 <%= @subprojects.collect{|p| link_to(p.name, :action => 'show', :id => p)}.join(", ") %>
51 <%= @subprojects.collect{|p| link_to(p.name, :action => 'show', :id => p)}.join(", ") %>
52 </div>
52 </div>
53 <% end %>
53 <% end %>
54
54
55 <% if @news.any? %>
55 <% if @news.any? %>
56 <div class="box">
56 <div class="box">
57 <h3><%=l(:label_news_latest)%></h3>
57 <h3><%=l(:label_news_latest)%></h3>
58 <%= render :partial => 'news/news', :collection => @news %>
58 <%= render :partial => 'news/news', :collection => @news %>
59 <p class="textcenter"><small><%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %></small></p>
59 <p class="textcenter"><small><%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %></small></p>
60 </div>
60 </div>
61 <% end %>
61 <% end %>
62 </div> No newline at end of file
62 </div>
@@ -1,20 +1,20
1 <table class="list">
1 <table class="list">
2 <thead><tr>
2 <thead><tr>
3 <th>#</th>
3 <th>#</th>
4 <th><%= l(:label_date) %></th>
4 <th><%= l(:label_date) %></th>
5 <th><%= l(:field_author) %></th>
5 <th><%= l(:field_author) %></th>
6 <th><%= l(:field_comment) %></th>
6 <th><%= l(:field_comments) %></th>
7 <th></th>
7 <th></th>
8 </tr></thead>
8 </tr></thead>
9 <tbody>
9 <tbody>
10 <% changesets.each do |changeset| %>
10 <% changesets.each do |changeset| %>
11 <tr class="<%= cycle 'odd', 'even' %>">
11 <tr class="<%= cycle 'odd', 'even' %>">
12 <th align="center" style="width:5%"><%= link_to changeset.revision, :action => 'revision', :id => project, :rev => changeset.revision %></th>
12 <th align="center" style="width:5%"><%= link_to changeset.revision, :action => 'revision', :id => project, :rev => changeset.revision %></th>
13 <td align="center" style="width:15%"><%= format_time(changeset.committed_on) %></td>
13 <td align="center" style="width:15%"><%= format_time(changeset.committed_on) %></td>
14 <td align="center" style="width:15%"><em><%=h changeset.committer %></em></td>
14 <td align="center" style="width:15%"><em><%=h changeset.committer %></em></td>
15 <td align="left"><%= textilizable(changeset.comment) %></td>
15 <td align="left"><%= textilizable(changeset.comments) %></td>
16 <td align="center"><%= link_to l(:label_view_diff), :action => 'diff', :id => project, :path => path, :rev => changeset.revision if entry && entry.is_file? && changeset != changesets.last %></td>
16 <td align="center"><%= link_to l(:label_view_diff), :action => 'diff', :id => project, :path => path, :rev => changeset.revision if entry && entry.is_file? && changeset != changesets.last %></td>
17 </tr>
17 </tr>
18 <% end %>
18 <% end %>
19 </tbody>
19 </tbody>
20 </table> No newline at end of file
20 </table>
@@ -1,47 +1,47
1 <div class="contextual">
1 <div class="contextual">
2 <% form_tag do %>
2 <% form_tag do %>
3 <p><%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %>
3 <p><%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %>
4 <%= submit_tag 'OK' %></p>
4 <%= submit_tag 'OK' %></p>
5 <% end %>
5 <% end %>
6 </div>
6 </div>
7
7
8 <h2><%= l(:label_revision) %> <%= @changeset.revision %></h2>
8 <h2><%= l(:label_revision) %> <%= @changeset.revision %></h2>
9
9
10 <p><em><%= @changeset.committer %>, <%= format_time(@changeset.committed_on) %></em></p>
10 <p><em><%= @changeset.committer %>, <%= format_time(@changeset.committed_on) %></em></p>
11 <%= textilizable @changeset.comment %>
11 <%= textilizable @changeset.comments %>
12
12
13 <% if @changeset.issues.any? %>
13 <% if @changeset.issues.any? %>
14 <h3><%= l(:label_related_issues) %></h3>
14 <h3><%= l(:label_related_issues) %></h3>
15 <ul>
15 <ul>
16 <% @changeset.issues.each do |issue| %>
16 <% @changeset.issues.each do |issue| %>
17 <li><%= link_to_issue issue %>: <%=h issue.subject %></li>
17 <li><%= link_to_issue issue %>: <%=h issue.subject %></li>
18 <% end %>
18 <% end %>
19 </ul>
19 </ul>
20 <% end %>
20 <% end %>
21
21
22 <div style="float:right;">
22 <div style="float:right;">
23 <div class="square action_A"></div> <div style="float:left;"><%= l(:label_added) %>&nbsp;</div>
23 <div class="square action_A"></div> <div style="float:left;"><%= l(:label_added) %>&nbsp;</div>
24 <div class="square action_M"></div> <div style="float:left;"><%= l(:label_modified) %>&nbsp;</div>
24 <div class="square action_M"></div> <div style="float:left;"><%= l(:label_modified) %>&nbsp;</div>
25 <div class="square action_D"></div> <div style="float:left;"><%= l(:label_deleted) %>&nbsp;</div>
25 <div class="square action_D"></div> <div style="float:left;"><%= l(:label_deleted) %>&nbsp;</div>
26 </div>
26 </div>
27
27
28 <h3><%= l(:label_attachment_plural) %></h3>
28 <h3><%= l(:label_attachment_plural) %></h3>
29 <table class="list">
29 <table class="list">
30 <tbody>
30 <tbody>
31 <% @changeset.changes.each do |change| %>
31 <% @changeset.changes.each do |change| %>
32 <tr class="<%= cycle 'odd', 'even' %>">
32 <tr class="<%= cycle 'odd', 'even' %>">
33 <td><div class="square action_<%= change.action %>"></div> <%= change.path %></td>
33 <td><div class="square action_<%= change.action %>"></div> <%= change.path %></td>
34 <td align="right">
34 <td align="right">
35 <% if change.action == "M" %>
35 <% if change.action == "M" %>
36 <%= link_to l(:label_view_diff), :action => 'diff', :id => @project, :path => change.path, :rev => @changeset.revision %>
36 <%= link_to l(:label_view_diff), :action => 'diff', :id => @project, :path => change.path, :rev => @changeset.revision %>
37 <% end %>
37 <% end %>
38 </td>
38 </td>
39 </tr>
39 </tr>
40 <% end %>
40 <% end %>
41 </tbody>
41 </tbody>
42 </table>
42 </table>
43 <p><%= lwr(:label_modification, @changeset.changes.length) %></p>
43 <p><%= lwr(:label_modification, @changeset.changes.length) %></p>
44
44
45 <% content_for :header_tags do %>
45 <% content_for :header_tags do %>
46 <%= stylesheet_link_tag "scm" %>
46 <%= stylesheet_link_tag "scm" %>
47 <% end %> No newline at end of file
47 <% end %>
@@ -1,51 +1,51
1 <div class="contextual">
1 <div class="contextual">
2 <%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :project_id => @project, :issue_id => @issue}, :class => 'icon icon-time' %>
2 <%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :project_id => @project, :issue_id => @issue}, :class => 'icon icon-time' %>
3 </div>
3 </div>
4
4
5 <h2><%= l(:label_spent_time) %></h2>
5 <h2><%= l(:label_spent_time) %></h2>
6
6
7 <h3><%= link_to(@project.name, {:action => 'details', :project_id => @project}) if @project %>
7 <h3><%= link_to(@project.name, {:action => 'details', :project_id => @project}) if @project %>
8 <%= "/ " + link_to("#{@issue.tracker.name} ##{@issue.id}", {:action => 'details', :issue_id => @issue }) + ": #{h(@issue.subject)}" if @issue %></h3>
8 <%= "/ " + link_to("#{@issue.tracker.name} ##{@issue.id}", {:action => 'details', :issue_id => @issue }) + ": #{h(@issue.subject)}" if @issue %></h3>
9
9
10 <h3 class="textright"><%= l(:label_total) %>: <%= lwr(:label_f_hour, @total_hours) %></h3>
10 <h3 class="textright"><%= l(:label_total) %>: <%= lwr(:label_f_hour, @total_hours) %></h3>
11
11
12 <% unless @entries.empty? %>
12 <% unless @entries.empty? %>
13 <table class="list">
13 <table class="list">
14 <thead>
14 <thead>
15 <%= sort_header_tag('spent_on', :caption => l(:label_date)) %>
15 <%= sort_header_tag('spent_on', :caption => l(:label_date)) %>
16 <%= sort_header_tag('user_id', :caption => l(:label_member)) %>
16 <%= sort_header_tag('user_id', :caption => l(:label_member)) %>
17 <%= sort_header_tag('activity_id', :caption => l(:label_activity)) %>
17 <%= sort_header_tag('activity_id', :caption => l(:label_activity)) %>
18 <%= sort_header_tag('issue_id', :caption => l(:label_issue)) %>
18 <%= sort_header_tag('issue_id', :caption => l(:label_issue)) %>
19 <th><%= l(:label_comment) %></th>
19 <th><%= l(:label_comments) %></th>
20 <%= sort_header_tag('hours', :caption => l(:field_hours)) %>
20 <%= sort_header_tag('hours', :caption => l(:field_hours)) %>
21 <th></th>
21 <th></th>
22 </thead>
22 </thead>
23 <tbody>
23 <tbody>
24 <% @entries.each do |entry| %>
24 <% @entries.each do |entry| %>
25 <tr class="<%= cycle("odd", "even") %>">
25 <tr class="<%= cycle("odd", "even") %>">
26 <td align="center"><%= format_date(entry.spent_on) %></td>
26 <td align="center"><%= format_date(entry.spent_on) %></td>
27 <td align="center"><%= entry.user.name %></td>
27 <td align="center"><%= entry.user.name %></td>
28 <td align="center"><%= entry.activity.name %></td>
28 <td align="center"><%= entry.activity.name %></td>
29 <td align="center">
29 <td align="center">
30 <% if entry.issue %>
30 <% if entry.issue %>
31 <div class="tooltip">
31 <div class="tooltip">
32 <%= link_to "#{entry.issue.tracker.name} ##{entry.issue.id}", {:action => 'details', :issue_id => entry.issue } %>
32 <%= link_to "#{entry.issue.tracker.name} ##{entry.issue.id}", {:action => 'details', :issue_id => entry.issue } %>
33 <span class="tip">
33 <span class="tip">
34 <%= render :partial => "issues/tooltip", :locals => { :issue => entry.issue }%>
34 <%= render :partial => "issues/tooltip", :locals => { :issue => entry.issue }%>
35 </span>
35 </span>
36 </div>
36 </div>
37 <% end %>
37 <% end %>
38 </td>
38 </td>
39 <td><%=h entry.comment %></td>
39 <td><%=h entry.comments %></td>
40 <td align="center"><strong><%= entry.hours %></strong></td>
40 <td align="center"><strong><%= entry.hours %></strong></td>
41 <td align="center"><%= link_to_if_authorized(l(:button_edit), {:controller => 'timelog', :action => 'edit', :id => entry}, :class => "icon icon-edit") if entry.user_id == @owner_id %></td>
41 <td align="center"><%= link_to_if_authorized(l(:button_edit), {:controller => 'timelog', :action => 'edit', :id => entry}, :class => "icon icon-edit") if entry.user_id == @owner_id %></td>
42 </tr>
42 </tr>
43 <% end %>
43 <% end %>
44 </tbdoy>
44 </tbdoy>
45 </table>
45 </table>
46
46
47 <div class="contextual">
47 <div class="contextual">
48 <%= l(:label_export_to) %>
48 <%= l(:label_export_to) %>
49 <%= link_to 'CSV', params.update(:export => 'csv'), :class => 'icon icon-csv' %>
49 <%= link_to 'CSV', params.update(:export => 'csv'), :class => 'icon icon-csv' %>
50 </div>
50 </div>
51 <% end %> No newline at end of file
51 <% end %>
@@ -1,23 +1,23
1 <h2><%= l(:label_spent_time) %></h2>
1 <h2><%= l(:label_spent_time) %></h2>
2
2
3 <% labelled_tabular_form_for :time_entry, @time_entry, :url => {:action => 'edit', :project_id => @time_entry.project} do |f| %>
3 <% labelled_tabular_form_for :time_entry, @time_entry, :url => {:action => 'edit', :project_id => @time_entry.project} do |f| %>
4 <%= error_messages_for 'time_entry' %>
4 <%= error_messages_for 'time_entry' %>
5
5
6 <div class="box">
6 <div class="box">
7 <p><%= f.text_field :issue_id, :size => 6 %> <em><%= h("#{@time_entry.issue.tracker.name} ##{@time_entry.issue.id}: #{@time_entry.issue.subject}") if @time_entry.issue %></em></p>
7 <p><%= f.text_field :issue_id, :size => 6 %> <em><%= h("#{@time_entry.issue.tracker.name} ##{@time_entry.issue.id}: #{@time_entry.issue.subject}") if @time_entry.issue %></em></p>
8 <p><%= f.text_field :spent_on, :size => 10, :required => true %><%= calendar_for('time_entry_spent_on') %></p>
8 <p><%= f.text_field :spent_on, :size => 10, :required => true %><%= calendar_for('time_entry_spent_on') %></p>
9 <p><%= f.text_field :hours, :size => 6, :required => true %></p>
9 <p><%= f.text_field :hours, :size => 6, :required => true %></p>
10 <p><%= f.text_field :comment, :size => 100 %></p>
10 <p><%= f.text_field :comments, :size => 100 %></p>
11 <p><%= f.select :activity_id, (@activities.collect {|p| [p.name, p.id]}), :required => true %></p>
11 <p><%= f.select :activity_id, (@activities.collect {|p| [p.name, p.id]}), :required => true %></p>
12 </div>
12 </div>
13
13
14 <%= submit_tag l(:button_save) %>
14 <%= submit_tag l(:button_save) %>
15
15
16 <% end %>
16 <% end %>
17
17
18 <% content_for :header_tags do %>
18 <% content_for :header_tags do %>
19 <%= javascript_include_tag 'calendar/calendar' %>
19 <%= javascript_include_tag 'calendar/calendar' %>
20 <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
20 <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
21 <%= javascript_include_tag 'calendar/calendar-setup' %>
21 <%= javascript_include_tag 'calendar/calendar-setup' %>
22 <%= stylesheet_link_tag 'calendar' %>
22 <%= stylesheet_link_tag 'calendar' %>
23 <% end %> No newline at end of file
23 <% end %>
@@ -1,44 +1,44
1 <div class="contextual">
1 <div class="contextual">
2 <%= link_to(l(:label_page_index), {:action => 'special', :page => 'Page_index'}, :class => 'icon icon-index') %>
2 <%= link_to(l(:label_page_index), {:action => 'special', :page => 'Page_index'}, :class => 'icon icon-index') %>
3 </div>
3 </div>
4
4
5 <h2><%= @page.pretty_title %></h2>
5 <h2><%= @page.pretty_title %></h2>
6
6
7 <% form_for :content, @content, :url => {:action => 'edit', :page => @page.title}, :html => {:id => 'wiki_form'} do |f| %>
7 <% form_for :content, @content, :url => {:action => 'edit', :page => @page.title}, :html => {:id => 'wiki_form'} do |f| %>
8 <%= error_messages_for 'content' %>
8 <%= error_messages_for 'content' %>
9 <div class="contextual">
9 <div class="contextual">
10 <%= l(:setting_text_formatting) %>:
10 <%= l(:setting_text_formatting) %>:
11 <%= link_to l(:label_help), {:controller => 'help', :ctrl => 'wiki', :page => 'syntax' },
11 <%= link_to l(:label_help), {:controller => 'help', :ctrl => 'wiki', :page => 'syntax' },
12 :onclick => "window.open('#{ url_for :controller => 'help', :ctrl => 'wiki', :page => 'syntax' }', '', 'resizable=yes, location=no, width=300, height=500, menubar=no, status=no, scrollbars=yes'); return false;" %>
12 :onclick => "window.open('#{ url_for :controller => 'help', :ctrl => 'wiki', :page => 'syntax' }', '', 'resizable=yes, location=no, width=300, height=500, menubar=no, status=no, scrollbars=yes'); return false;" %>
13 </div>
13 </div>
14 <p><%= f.text_area :text, :cols => 100, :rows => 25, :class => 'wiki-edit' %></p>
14 <p><%= f.text_area :text, :cols => 100, :rows => 25, :class => 'wiki-edit' %></p>
15 <p><label><%= l(:field_comment) %></label><br /><%= f.text_field :comment, :size => 120 %></p>
15 <p><label><%= l(:field_comments) %></label><br /><%= f.text_field :comments, :size => 120 %></p>
16 <p><%= submit_tag l(:button_save) %>
16 <p><%= submit_tag l(:button_save) %>
17 <%= link_to_remote l(:label_preview),
17 <%= link_to_remote l(:label_preview),
18 { :url => { :controller => 'wiki', :action => 'preview', :id => @project, :page => @page.title },
18 { :url => { :controller => 'wiki', :action => 'preview', :id => @project, :page => @page.title },
19 :method => 'get',
19 :method => 'get',
20 :update => 'preview',
20 :update => 'preview',
21 :with => "Form.serialize('wiki_form')",
21 :with => "Form.serialize('wiki_form')",
22 :loading => "Element.show('indicator')",
22 :loading => "Element.show('indicator')",
23 :loaded => "Element.hide('indicator')"
23 :loaded => "Element.hide('indicator')"
24 } %>
24 } %>
25 <span id="indicator" style="display:none"><%= image_tag "loading.gif", :align => "absmiddle" %></span>
25 <span id="indicator" style="display:none"><%= image_tag "loading.gif", :align => "absmiddle" %></span>
26 </p>
26 </p>
27
27
28 <% end %>
28 <% end %>
29
29
30 <% if Setting.text_formatting == 'textile' %>
30 <% if Setting.text_formatting == 'textile' %>
31 <%= javascript_include_tag 'jstoolbar' %>
31 <%= javascript_include_tag 'jstoolbar' %>
32 <script type="text/javascript">
32 <script type="text/javascript">
33 //<![CDATA[
33 //<![CDATA[
34 if (document.getElementById) {
34 if (document.getElementById) {
35 if (document.getElementById('content_text')) {
35 if (document.getElementById('content_text')) {
36 var commentTb = new jsToolBar(document.getElementById('content_text'));
36 var commentTb = new jsToolBar(document.getElementById('content_text'));
37 commentTb.draw();
37 commentTb.draw();
38 }
38 }
39 }
39 }
40 //]]>
40 //]]>
41 </script>
41 </script>
42 <% end %>
42 <% end %>
43
43
44 <div id="preview" class="wiki"></div> No newline at end of file
44 <div id="preview" class="wiki"></div>
@@ -1,28 +1,28
1 <div class="contextual">
1 <div class="contextual">
2 <%= link_to(l(:label_page_index), {:action => 'special', :page => 'Page_index'}, :class => 'icon icon-index') %>
2 <%= link_to(l(:label_page_index), {:action => 'special', :page => 'Page_index'}, :class => 'icon icon-index') %>
3 </div>
3 </div>
4
4
5 <h2><%= @page.pretty_title %></h2>
5 <h2><%= @page.pretty_title %></h2>
6
6
7 <h3><%= l(:label_history) %></h3>
7 <h3><%= l(:label_history) %></h3>
8
8
9 <table class="list">
9 <table class="list">
10 <thead><tr>
10 <thead><tr>
11 <th>#</th>
11 <th>#</th>
12 <th><%= l(:field_updated_on) %></th>
12 <th><%= l(:field_updated_on) %></th>
13 <th><%= l(:field_author) %></th>
13 <th><%= l(:field_author) %></th>
14 <th><%= l(:field_comment) %></th>
14 <th><%= l(:field_comments) %></th>
15 </tr></thead>
15 </tr></thead>
16 <tbody>
16 <tbody>
17 <% @versions.each do |ver| %>
17 <% @versions.each do |ver| %>
18 <tr class="<%= cycle("odd", "even") %>">
18 <tr class="<%= cycle("odd", "even") %>">
19 <th align="center"><%= link_to ver.version, :action => 'index', :page => @page.title, :version => ver.version %></th>
19 <th align="center"><%= link_to ver.version, :action => 'index', :page => @page.title, :version => ver.version %></th>
20 <td align="center"><%= format_time(ver.updated_on) %></td>
20 <td align="center"><%= format_time(ver.updated_on) %></td>
21 <td><em><%= ver.author ? ver.author.name : "anonyme" %></em></td>
21 <td><em><%= ver.author ? ver.author.name : "anonyme" %></em></td>
22 <td><%=h ver.comment %></td>
22 <td><%=h ver.comments %></td>
23 </tr>
23 </tr>
24 <% end %>
24 <% end %>
25 </tbody>
25 </tbody>
26 </table>
26 </table>
27
27
28 <p><%= link_to l(:button_back), :action => 'index', :page => @page.title %></p> No newline at end of file
28 <p><%= link_to l(:button_back), :action => 'index', :page => @page.title %></p>
@@ -1,31 +1,31
1 <div class="contextual">
1 <div class="contextual">
2 <%= link_to(l(:button_edit), {:action => 'edit', :page => @page.title}, :class => 'icon icon-edit') if @content.version == @page.content.version %>
2 <%= link_to(l(:button_edit), {:action => 'edit', :page => @page.title}, :class => 'icon icon-edit') if @content.version == @page.content.version %>
3 <%= link_to(l(:button_rollback), {:action => 'edit', :page => @page.title, :version => @content.version }, :class => 'icon icon-cancel') if @content.version < @page.content.version %>
3 <%= link_to(l(:button_rollback), {:action => 'edit', :page => @page.title, :version => @content.version }, :class => 'icon icon-cancel') if @content.version < @page.content.version %>
4 <%= link_to(l(:label_history), {:action => 'history', :page => @page.title}, :class => 'icon icon-history') %>
4 <%= link_to(l(:label_history), {:action => 'history', :page => @page.title}, :class => 'icon icon-history') %>
5 <%= link_to(l(:label_page_index), {:action => 'special', :page => 'Page_index'}, :class => 'icon icon-index') %>
5 <%= link_to(l(:label_page_index), {:action => 'special', :page => 'Page_index'}, :class => 'icon icon-index') %>
6 </div>
6 </div>
7
7
8 <% if @content.version != @page.content.version %>
8 <% if @content.version != @page.content.version %>
9 <p>
9 <p>
10 <%= link_to(('&#171; ' + l(:label_previous)), :action => 'index', :page => @page.title, :version => (@content.version - 1)) + " - " if @content.version > 1 %>
10 <%= link_to(('&#171; ' + l(:label_previous)), :action => 'index', :page => @page.title, :version => (@content.version - 1)) + " - " if @content.version > 1 %>
11 <%= "#{l(:label_version)} #{@content.version}/#{@page.content.version}" %> -
11 <%= "#{l(:label_version)} #{@content.version}/#{@page.content.version}" %> -
12 <%= link_to((l(:label_next) + ' &#187;'), :action => 'index', :page => @page.title, :version => (@content.version + 1)) + " - " if @content.version < @page.content.version %>
12 <%= link_to((l(:label_next) + ' &#187;'), :action => 'index', :page => @page.title, :version => (@content.version + 1)) + " - " if @content.version < @page.content.version %>
13 <%= link_to(l(:label_current_version), :action => 'index', :page => @page.title) %>
13 <%= link_to(l(:label_current_version), :action => 'index', :page => @page.title) %>
14 <br />
14 <br />
15 <em><%= @content.author ? @content.author.name : "anonyme" %>, <%= format_time(@content.updated_on) %> </em><br />
15 <em><%= @content.author ? @content.author.name : "anonyme" %>, <%= format_time(@content.updated_on) %> </em><br />
16 <%=h @content.comment %>
16 <%=h @content.comments %>
17 </p>
17 </p>
18 <hr />
18 <hr />
19 <% end %>
19 <% end %>
20
20
21 <div class="wiki">
21 <div class="wiki">
22 <% cache "wiki/show/#{@page.id}/#{@content.version}" do %>
22 <% cache "wiki/show/#{@page.id}/#{@content.version}" do %>
23 <%= textilizable @content.text %>
23 <%= textilizable @content.text %>
24 <% end %>
24 <% end %>
25 </div>
25 </div>
26
26
27 <div class="contextual">
27 <div class="contextual">
28 <%= l(:label_export_to) %>
28 <%= l(:label_export_to) %>
29 <%= link_to 'HTML', {:export => 'html', :version => @content.version}, :class => 'icon icon-html' %>,
29 <%= link_to 'HTML', {:export => 'html', :version => @content.version}, :class => 'icon icon-html' %>,
30 <%= link_to 'TXT', {:export => 'txt', :version => @content.version}, :class => 'icon icon-txt' %>
30 <%= link_to 'TXT', {:export => 'txt', :version => @content.version}, :class => 'icon icon-txt' %>
31 </div> No newline at end of file
31 </div>
@@ -1,16 +1,16
1 # Settings specified here will take precedence over those in config/environment.rb
1 # Settings specified here will take precedence over those in config/environment.rb
2
2
3 # The test environment is used exclusively to run your application's
3 # The test environment is used exclusively to run your application's
4 # test suite. You never need to work with it otherwise. Remember that
4 # test suite. You never need to work with it otherwise. Remember that
5 # your test database is "scratch space" for the test suite and is wiped
5 # your test database is "scratch space" for the test suite and is wiped
6 # and recreated between test runs. Don't rely on the data there!
6 # and recreated between test runs. Don't rely on the data there!
7 config.cache_classes = true
7 config.cache_classes = false
8
8
9 # Log error messages when you accidentally call methods on nil.
9 # Log error messages when you accidentally call methods on nil.
10 config.whiny_nils = true
10 config.whiny_nils = true
11
11
12 # Show full error reports and disable caching
12 # Show full error reports and disable caching
13 config.action_controller.consider_all_requests_local = true
13 config.action_controller.consider_all_requests_local = true
14 config.action_controller.perform_caching = false
14 config.action_controller.perform_caching = false
15
15
16 config.action_mailer.delivery_method = :test No newline at end of file
16 config.action_mailer.delivery_method = :test
@@ -1,16 +1,16
1 class CreateComments < ActiveRecord::Migration
1 class CreateComments < ActiveRecord::Migration
2 def self.up
2 def self.up
3 create_table :comments do |t|
3 create_table :comments do |t|
4 t.column :commented_type, :string, :limit => 30, :default => "", :null => false
4 t.column :commented_type, :string, :limit => 30, :default => "", :null => false
5 t.column :commented_id, :integer, :default => 0, :null => false
5 t.column :commented_id, :integer, :default => 0, :null => false
6 t.column :author_id, :integer, :default => 0, :null => false
6 t.column :author_id, :integer, :default => 0, :null => false
7 t.column :comment, :text
7 t.column :comments, :text
8 t.column :created_on, :datetime, :null => false
8 t.column :created_on, :datetime, :null => false
9 t.column :updated_on, :datetime, :null => false
9 t.column :updated_on, :datetime, :null => false
10 end
10 end
11 end
11 end
12
12
13 def self.down
13 def self.down
14 drop_table :comments
14 drop_table :comments
15 end
15 end
16 end
16 end
@@ -1,30 +1,30
1 class CreateWikiContents < ActiveRecord::Migration
1 class CreateWikiContents < ActiveRecord::Migration
2 def self.up
2 def self.up
3 create_table :wiki_contents do |t|
3 create_table :wiki_contents do |t|
4 t.column :page_id, :integer, :null => false
4 t.column :page_id, :integer, :null => false
5 t.column :author_id, :integer
5 t.column :author_id, :integer
6 t.column :text, :text
6 t.column :text, :text
7 t.column :comment, :string, :limit => 255, :default => ""
7 t.column :comments, :string, :limit => 255, :default => ""
8 t.column :updated_on, :datetime, :null => false
8 t.column :updated_on, :datetime, :null => false
9 t.column :version, :integer, :null => false
9 t.column :version, :integer, :null => false
10 end
10 end
11 add_index :wiki_contents, :page_id, :name => :wiki_contents_page_id
11 add_index :wiki_contents, :page_id, :name => :wiki_contents_page_id
12
12
13 create_table :wiki_content_versions do |t|
13 create_table :wiki_content_versions do |t|
14 t.column :wiki_content_id, :integer, :null => false
14 t.column :wiki_content_id, :integer, :null => false
15 t.column :page_id, :integer, :null => false
15 t.column :page_id, :integer, :null => false
16 t.column :author_id, :integer
16 t.column :author_id, :integer
17 t.column :data, :binary
17 t.column :data, :binary
18 t.column :compression, :string, :limit => 6, :default => ""
18 t.column :compression, :string, :limit => 6, :default => ""
19 t.column :comment, :string, :limit => 255, :default => ""
19 t.column :comments, :string, :limit => 255, :default => ""
20 t.column :updated_on, :datetime, :null => false
20 t.column :updated_on, :datetime, :null => false
21 t.column :version, :integer, :null => false
21 t.column :version, :integer, :null => false
22 end
22 end
23 add_index :wiki_content_versions, :wiki_content_id, :name => :wiki_content_versions_wcid
23 add_index :wiki_content_versions, :wiki_content_id, :name => :wiki_content_versions_wcid
24 end
24 end
25
25
26 def self.down
26 def self.down
27 drop_table :wiki_contents
27 drop_table :wiki_contents
28 drop_table :wiki_content_versions
28 drop_table :wiki_content_versions
29 end
29 end
30 end
30 end
@@ -1,24 +1,24
1 class CreateTimeEntries < ActiveRecord::Migration
1 class CreateTimeEntries < ActiveRecord::Migration
2 def self.up
2 def self.up
3 create_table :time_entries do |t|
3 create_table :time_entries do |t|
4 t.column :project_id, :integer, :null => false
4 t.column :project_id, :integer, :null => false
5 t.column :user_id, :integer, :null => false
5 t.column :user_id, :integer, :null => false
6 t.column :issue_id, :integer
6 t.column :issue_id, :integer
7 t.column :hours, :float, :null => false
7 t.column :hours, :float, :null => false
8 t.column :comment, :string, :limit => 255
8 t.column :comments, :string, :limit => 255
9 t.column :activity_id, :integer, :null => false
9 t.column :activity_id, :integer, :null => false
10 t.column :spent_on, :date, :null => false
10 t.column :spent_on, :date, :null => false
11 t.column :tyear, :integer, :null => false
11 t.column :tyear, :integer, :null => false
12 t.column :tmonth, :integer, :null => false
12 t.column :tmonth, :integer, :null => false
13 t.column :tweek, :integer, :null => false
13 t.column :tweek, :integer, :null => false
14 t.column :created_on, :datetime, :null => false
14 t.column :created_on, :datetime, :null => false
15 t.column :updated_on, :datetime, :null => false
15 t.column :updated_on, :datetime, :null => false
16 end
16 end
17 add_index :time_entries, [:project_id], :name => :time_entries_project_id
17 add_index :time_entries, [:project_id], :name => :time_entries_project_id
18 add_index :time_entries, [:issue_id], :name => :time_entries_issue_id
18 add_index :time_entries, [:issue_id], :name => :time_entries_issue_id
19 end
19 end
20
20
21 def self.down
21 def self.down
22 drop_table :time_entries
22 drop_table :time_entries
23 end
23 end
24 end
24 end
@@ -1,16 +1,16
1 class CreateChangesets < ActiveRecord::Migration
1 class CreateChangesets < ActiveRecord::Migration
2 def self.up
2 def self.up
3 create_table :changesets do |t|
3 create_table :changesets do |t|
4 t.column :repository_id, :integer, :null => false
4 t.column :repository_id, :integer, :null => false
5 t.column :revision, :integer, :null => false
5 t.column :revision, :integer, :null => false
6 t.column :committer, :string, :limit => 30
6 t.column :committer, :string, :limit => 30
7 t.column :committed_on, :datetime, :null => false
7 t.column :committed_on, :datetime, :null => false
8 t.column :comment, :text
8 t.column :comments, :text
9 end
9 end
10 add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev
10 add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev
11 end
11 end
12
12
13 def self.down
13 def self.down
14 drop_table :changesets
14 drop_table :changesets
15 end
15 end
16 end
16 end
@@ -1,442 +1,442
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
36
37 general_fmt_age: %d Jahr
37 general_fmt_age: %d Jahr
38 general_fmt_age_plural: %d Jahre
38 general_fmt_age_plural: %d Jahre
39 general_fmt_date: %%d.%%m.%%y
39 general_fmt_date: %%d.%%m.%%y
40 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
40 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
41 general_fmt_datetime_short: %%d.%%m, %%H:%%M
41 general_fmt_datetime_short: %%d.%%m, %%H:%%M
42 general_fmt_time: %%H:%%M
42 general_fmt_time: %%H:%%M
43 general_text_No: 'Nein'
43 general_text_No: 'Nein'
44 general_text_Yes: 'Ja'
44 general_text_Yes: 'Ja'
45 general_text_no: 'nein'
45 general_text_no: 'nein'
46 general_text_yes: 'ja'
46 general_text_yes: 'ja'
47 general_lang_de: 'Deutsch'
47 general_lang_de: 'Deutsch'
48 general_csv_separator: ';'
48 general_csv_separator: ';'
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
51 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
52
52
53 notice_account_updated: Konto wurde erfolgreich aktualisiert.
53 notice_account_updated: Konto wurde erfolgreich aktualisiert.
54 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
54 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
55 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
55 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
56 notice_account_wrong_password: Falsches Kennwort
56 notice_account_wrong_password: Falsches Kennwort
57 notice_account_register_done: Konto wurde erfolgreich angelegt.
57 notice_account_register_done: Konto wurde erfolgreich angelegt.
58 notice_account_unknown_email: Unbekannter Benutzer.
58 notice_account_unknown_email: Unbekannter Benutzer.
59 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
59 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
60 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
60 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
61 notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen.
61 notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen.
62 notice_successful_create: Erfolgreich angelegt
62 notice_successful_create: Erfolgreich angelegt
63 notice_successful_update: Erfolgreiche Aktualisierung.
63 notice_successful_update: Erfolgreiche Aktualisierung.
64 notice_successful_delete: Erfolgreiche Löschung.
64 notice_successful_delete: Erfolgreiche Löschung.
65 notice_successful_connection: Verbindung erfolgreich.
65 notice_successful_connection: Verbindung erfolgreich.
66 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
66 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
67 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
67 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
68 notice_scm_error: Eintrag und/oder Revision besteht nicht im SVN.
68 notice_scm_error: Eintrag und/oder Revision besteht nicht im SVN.
69
69
70 mail_subject_lost_password: Ihr redMine Kennwort
70 mail_subject_lost_password: Ihr redMine Kennwort
71 mail_subject_register: redMine Kontoaktivierung
71 mail_subject_register: redMine Kontoaktivierung
72
72
73 gui_validation_error: 1 Fehler
73 gui_validation_error: 1 Fehler
74 gui_validation_error_plural: %d Fehler
74 gui_validation_error_plural: %d Fehler
75
75
76 field_name: Name
76 field_name: Name
77 field_description: Beschreibung
77 field_description: Beschreibung
78 field_summary: Zusammenfassung
78 field_summary: Zusammenfassung
79 field_is_required: Erforderlich
79 field_is_required: Erforderlich
80 field_firstname: Vorname
80 field_firstname: Vorname
81 field_lastname: Nachname
81 field_lastname: Nachname
82 field_mail: Email
82 field_mail: Email
83 field_filename: Datei
83 field_filename: Datei
84 field_filesize: Größe
84 field_filesize: Größe
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Autor
86 field_author: Autor
87 field_created_on: Angelegt
87 field_created_on: Angelegt
88 field_updated_on: Aktualisiert
88 field_updated_on: Aktualisiert
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: Für alle Projekte
90 field_is_for_all: Für alle Projekte
91 field_possible_values: Mögliche Werte
91 field_possible_values: Mögliche Werte
92 field_regexp: Regulärer Ausdruck
92 field_regexp: Regulärer Ausdruck
93 field_min_length: Minimale Länge
93 field_min_length: Minimale Länge
94 field_max_length: Maximale Länge
94 field_max_length: Maximale Länge
95 field_value: Wert
95 field_value: Wert
96 field_category: Kategorie
96 field_category: Kategorie
97 field_title: Titel
97 field_title: Titel
98 field_project: Projekt
98 field_project: Projekt
99 field_issue: Ticket
99 field_issue: Ticket
100 field_status: Status
100 field_status: Status
101 field_notes: Kommentare
101 field_notes: Kommentare
102 field_is_closed: Problem erledigt
102 field_is_closed: Problem erledigt
103 field_is_default: Default
103 field_is_default: Default
104 field_html_color: Farbe
104 field_html_color: Farbe
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Thema
106 field_subject: Thema
107 field_due_date: Abgabedatum
107 field_due_date: Abgabedatum
108 field_assigned_to: Zugewiesen an
108 field_assigned_to: Zugewiesen an
109 field_priority: Priorität
109 field_priority: Priorität
110 field_fixed_version: Erledigt in Version
110 field_fixed_version: Erledigt in Version
111 field_user: Benutzer
111 field_user: Benutzer
112 field_role: Rolle
112 field_role: Rolle
113 field_homepage: Startseite
113 field_homepage: Startseite
114 field_is_public: Öffentlich
114 field_is_public: Öffentlich
115 field_parent: Unterprojekt von
115 field_parent: Unterprojekt von
116 field_is_in_chlog: Ansicht im Change-Log
116 field_is_in_chlog: Ansicht im Change-Log
117 field_is_in_roadmap: Ansicht in der Roadmap
117 field_is_in_roadmap: Ansicht in der Roadmap
118 field_login: Mitgliedsname
118 field_login: Mitgliedsname
119 field_mail_notification: Mailbenachrichtigung
119 field_mail_notification: Mailbenachrichtigung
120 field_admin: Administrator
120 field_admin: Administrator
121 field_last_login_on: Letzte Anmeldung
121 field_last_login_on: Letzte Anmeldung
122 field_language: Sprache
122 field_language: Sprache
123 field_effective_date: Datum
123 field_effective_date: Datum
124 field_password: Kennwort
124 field_password: Kennwort
125 field_new_password: Neues Kennwort
125 field_new_password: Neues Kennwort
126 field_password_confirmation: Bestätigung
126 field_password_confirmation: Bestätigung
127 field_version: Version
127 field_version: Version
128 field_type: Typ
128 field_type: Typ
129 field_host: Host
129 field_host: Host
130 field_port: Port
130 field_port: Port
131 field_account: Konto
131 field_account: Konto
132 field_base_dn: Base DN
132 field_base_dn: Base DN
133 field_attr_login: Mitgliedsnameattribut
133 field_attr_login: Mitgliedsnameattribut
134 field_attr_firstname: Vornamensattribut
134 field_attr_firstname: Vornamensattribut
135 field_attr_lastname: Namenattribut
135 field_attr_lastname: Namenattribut
136 field_attr_mail: Emailattribut
136 field_attr_mail: Emailattribut
137 field_onthefly: On-the-fly Benutzerkreation
137 field_onthefly: On-the-fly Benutzerkreation
138 field_start_date: Beginn
138 field_start_date: Beginn
139 field_done_ratio: %% erledigt
139 field_done_ratio: %% erledigt
140 field_auth_source: Authentifizierungs-Modus
140 field_auth_source: Authentifizierungs-Modus
141 field_hide_mail: Email Adresse nicht anzeigen
141 field_hide_mail: Email Adresse nicht anzeigen
142 field_comment: Kommentar
142 field_comments: Kommentar
143 field_url: URL
143 field_url: URL
144 field_start_page: Hauptseite
144 field_start_page: Hauptseite
145 field_subproject: Subprojekt von
145 field_subproject: Subprojekt von
146 field_hours: Stunden
146 field_hours: Stunden
147 field_activity: Aktivität
147 field_activity: Aktivität
148 field_spent_on: Datum
148 field_spent_on: Datum
149 field_identifier: Identifier
149 field_identifier: Identifier
150 field_is_filter: Used as a filter
150 field_is_filter: Used as a filter
151
151
152 setting_app_title: Applikation Titel
152 setting_app_title: Applikation Titel
153 setting_app_subtitle: Applikation Untertitel
153 setting_app_subtitle: Applikation Untertitel
154 setting_welcome_text: Willkommenstext
154 setting_welcome_text: Willkommenstext
155 setting_default_language: Default Sprache
155 setting_default_language: Default Sprache
156 setting_login_required: Authent. erfordert
156 setting_login_required: Authent. erfordert
157 setting_self_registration: Anmeldung ermöglicht
157 setting_self_registration: Anmeldung ermöglicht
158 setting_attachment_max_size: max. Dateigröße
158 setting_attachment_max_size: max. Dateigröße
159 setting_issues_export_limit: Limit Export Tickets
159 setting_issues_export_limit: Limit Export Tickets
160 setting_mail_from: Mail Absender
160 setting_mail_from: Mail Absender
161 setting_host_name: Host Name
161 setting_host_name: Host Name
162 setting_text_formatting: Textformatierung
162 setting_text_formatting: Textformatierung
163 setting_wiki_compression: Wiki-Historie komprimieren
163 setting_wiki_compression: Wiki-Historie komprimieren
164 setting_feeds_limit: Limit Feed Inhalt
164 setting_feeds_limit: Limit Feed Inhalt
165 setting_autofetch_changesets: Autofetch SVN commits
165 setting_autofetch_changesets: Autofetch SVN commits
166 setting_sys_api_enabled: Enable WS for repository management
166 setting_sys_api_enabled: Enable WS for repository management
167 setting_commit_ref_keywords: Referencing keywords
167 setting_commit_ref_keywords: Referencing keywords
168 setting_commit_fix_keywords: Fixing keywords
168 setting_commit_fix_keywords: Fixing keywords
169
169
170 label_user: Benutzer
170 label_user: Benutzer
171 label_user_plural: Benutzer
171 label_user_plural: Benutzer
172 label_user_new: Neuer Benutzer
172 label_user_new: Neuer Benutzer
173 label_project: Projekt
173 label_project: Projekt
174 label_project_new: Neues Projekt
174 label_project_new: Neues Projekt
175 label_project_plural: Projekte
175 label_project_plural: Projekte
176 label_project_latest: Neueste Projekte
176 label_project_latest: Neueste Projekte
177 label_issue: Ticket
177 label_issue: Ticket
178 label_issue_new: Neues Ticket
178 label_issue_new: Neues Ticket
179 label_issue_plural: Tickets
179 label_issue_plural: Tickets
180 label_issue_view_all: Alle Tickets ansehen
180 label_issue_view_all: Alle Tickets ansehen
181 label_document: Dokument
181 label_document: Dokument
182 label_document_new: Neues Dokument
182 label_document_new: Neues Dokument
183 label_document_plural: Dokumente
183 label_document_plural: Dokumente
184 label_role: Rolle
184 label_role: Rolle
185 label_role_plural: Rollen
185 label_role_plural: Rollen
186 label_role_new: Neue Rolle
186 label_role_new: Neue Rolle
187 label_role_and_permissions: Rollen und Rechte
187 label_role_and_permissions: Rollen und Rechte
188 label_member: Mitglied
188 label_member: Mitglied
189 label_member_new: Neues Mitglied
189 label_member_new: Neues Mitglied
190 label_member_plural: Mitglieder
190 label_member_plural: Mitglieder
191 label_tracker: Tracker
191 label_tracker: Tracker
192 label_tracker_plural: Tracker
192 label_tracker_plural: Tracker
193 label_tracker_new: Neuer Tracker
193 label_tracker_new: Neuer Tracker
194 label_workflow: Workflow
194 label_workflow: Workflow
195 label_issue_status: Ticket-Status
195 label_issue_status: Ticket-Status
196 label_issue_status_plural: Ticket-Status
196 label_issue_status_plural: Ticket-Status
197 label_issue_status_new: Neuer Status
197 label_issue_status_new: Neuer Status
198 label_issue_category: Ticket-Kategorie
198 label_issue_category: Ticket-Kategorie
199 label_issue_category_plural: Ticket-Kategorien
199 label_issue_category_plural: Ticket-Kategorien
200 label_issue_category_new: Neue Kategorie
200 label_issue_category_new: Neue Kategorie
201 label_custom_field: Benutzerdefiniertes Feld
201 label_custom_field: Benutzerdefiniertes Feld
202 label_custom_field_plural: Benutzerdefinierte Felder
202 label_custom_field_plural: Benutzerdefinierte Felder
203 label_custom_field_new: Neues Feld
203 label_custom_field_new: Neues Feld
204 label_enumerations: Aufzählungen
204 label_enumerations: Aufzählungen
205 label_enumeration_new: Neuer Wert
205 label_enumeration_new: Neuer Wert
206 label_information: Information
206 label_information: Information
207 label_information_plural: Informationen
207 label_information_plural: Informationen
208 label_please_login: Anmelden
208 label_please_login: Anmelden
209 label_register: Anmelden
209 label_register: Anmelden
210 label_password_lost: Kennwort vergessen
210 label_password_lost: Kennwort vergessen
211 label_home: Hauptseite
211 label_home: Hauptseite
212 label_my_page: Meine Seite
212 label_my_page: Meine Seite
213 label_my_account: Mein Konto
213 label_my_account: Mein Konto
214 label_my_projects: Meine Projekte
214 label_my_projects: Meine Projekte
215 label_administration: Administration
215 label_administration: Administration
216 label_login: Einloggen
216 label_login: Einloggen
217 label_logout: Abmelden
217 label_logout: Abmelden
218 label_help: Hilfe
218 label_help: Hilfe
219 label_reported_issues: Gemeldete Tickets
219 label_reported_issues: Gemeldete Tickets
220 label_assigned_to_me_issues: Mir zugewiesen
220 label_assigned_to_me_issues: Mir zugewiesen
221 label_last_login: Letzte Anmeldung
221 label_last_login: Letzte Anmeldung
222 label_last_updates: zuletzt aktualisiert
222 label_last_updates: zuletzt aktualisiert
223 label_last_updates_plural: %d zuletzt aktualisierten
223 label_last_updates_plural: %d zuletzt aktualisierten
224 label_registered_on: Angemeldet am
224 label_registered_on: Angemeldet am
225 label_activity: Aktivität
225 label_activity: Aktivität
226 label_new: Neu
226 label_new: Neu
227 label_logged_as: Angemeldet als
227 label_logged_as: Angemeldet als
228 label_environment: Environment
228 label_environment: Environment
229 label_authentication: Authentifizierung
229 label_authentication: Authentifizierung
230 label_auth_source: Authentifizierungs-Modus
230 label_auth_source: Authentifizierungs-Modus
231 label_auth_source_new: Neuer Authentifizierungs-Modus
231 label_auth_source_new: Neuer Authentifizierungs-Modus
232 label_auth_source_plural: Authentifizierungs-Arten
232 label_auth_source_plural: Authentifizierungs-Arten
233 label_subproject_plural: Sub Projekte
233 label_subproject_plural: Sub Projekte
234 label_min_max_length: Min - Max Länge
234 label_min_max_length: Min - Max Länge
235 label_list: Liste
235 label_list: Liste
236 label_date: Datum
236 label_date: Datum
237 label_integer: Zahl
237 label_integer: Zahl
238 label_boolean: Boolean
238 label_boolean: Boolean
239 label_string: Text
239 label_string: Text
240 label_text: Langer Text
240 label_text: Langer Text
241 label_attribute: Attribut
241 label_attribute: Attribut
242 label_attribute_plural: Attribute
242 label_attribute_plural: Attribute
243 label_download: %d Download
243 label_download: %d Download
244 label_download_plural: %d Downloads
244 label_download_plural: %d Downloads
245 label_no_data: Nichts anzuzeigen
245 label_no_data: Nichts anzuzeigen
246 label_change_status: Statuswechsel
246 label_change_status: Statuswechsel
247 label_history: Historie
247 label_history: Historie
248 label_attachment: Datei
248 label_attachment: Datei
249 label_attachment_new: Neue Datei
249 label_attachment_new: Neue Datei
250 label_attachment_delete: Anhang löschen
250 label_attachment_delete: Anhang löschen
251 label_attachment_plural: Dateien
251 label_attachment_plural: Dateien
252 label_report: Bericht
252 label_report: Bericht
253 label_report_plural: Berichte
253 label_report_plural: Berichte
254 label_news: News
254 label_news: News
255 label_news_new: News hinzufügen
255 label_news_new: News hinzufügen
256 label_news_plural: News
256 label_news_plural: News
257 label_news_latest: Letzte News
257 label_news_latest: Letzte News
258 label_news_view_all: Alle News anzeigen
258 label_news_view_all: Alle News anzeigen
259 label_change_log: Change-Log
259 label_change_log: Change-Log
260 label_settings: Konfiguration
260 label_settings: Konfiguration
261 label_overview: Übersicht
261 label_overview: Übersicht
262 label_version: Version
262 label_version: Version
263 label_version_new: Neue Version
263 label_version_new: Neue Version
264 label_version_plural: Versionen
264 label_version_plural: Versionen
265 label_confirmation: Bestätigung
265 label_confirmation: Bestätigung
266 label_export_to: Export zu
266 label_export_to: Export zu
267 label_read: Lesen...
267 label_read: Lesen...
268 label_public_projects: Öffentliche Projekte
268 label_public_projects: Öffentliche Projekte
269 label_open_issues: offen
269 label_open_issues: offen
270 label_open_issues_plural: offen
270 label_open_issues_plural: offen
271 label_closed_issues: geschlossen
271 label_closed_issues: geschlossen
272 label_closed_issues_plural: geschlossen
272 label_closed_issues_plural: geschlossen
273 label_total: Gesamtzahl
273 label_total: Gesamtzahl
274 label_permissions: Berechtigungen
274 label_permissions: Berechtigungen
275 label_current_status: Gegenwärtiger Status
275 label_current_status: Gegenwärtiger Status
276 label_new_statuses_allowed: Neue Berechtigungen
276 label_new_statuses_allowed: Neue Berechtigungen
277 label_all: alle
277 label_all: alle
278 label_none: kein
278 label_none: kein
279 label_next: Weiter
279 label_next: Weiter
280 label_previous: Zurück
280 label_previous: Zurück
281 label_used_by: Benutzt von
281 label_used_by: Benutzt von
282 label_details: Details...
282 label_details: Details...
283 label_add_note: Kommentar hinzufügen
283 label_add_note: Kommentar hinzufügen
284 label_per_page: Pro Seite
284 label_per_page: Pro Seite
285 label_calendar: Kalender
285 label_calendar: Kalender
286 label_months_from: Monate ab
286 label_months_from: Monate ab
287 label_gantt: Gantt
287 label_gantt: Gantt
288 label_internal: Intern
288 label_internal: Intern
289 label_last_changes: %d letzte Änderungen
289 label_last_changes: %d letzte Änderungen
290 label_change_view_all: Alle Änderungen ansehen
290 label_change_view_all: Alle Änderungen ansehen
291 label_personalize_page: Diese Seite anpassen
291 label_personalize_page: Diese Seite anpassen
292 label_comment: Kommentar
292 label_comment: Kommentar
293 label_comment_plural: Kommentare
293 label_comment_plural: Kommentare
294 label_comment_add: Kommentar hinzufügen
294 label_comment_add: Kommentar hinzufügen
295 label_comment_added: Kommentar hinzugefügt
295 label_comment_added: Kommentar hinzugefügt
296 label_comment_delete: Kommentar löschen
296 label_comment_delete: Kommentar löschen
297 label_query: Benutzerdefinierte Abfrage
297 label_query: Benutzerdefinierte Abfrage
298 label_query_plural: Benutzerdefinierte Berichte
298 label_query_plural: Benutzerdefinierte Berichte
299 label_query_new: Neuer Bericht
299 label_query_new: Neuer Bericht
300 label_filter_add: Filter hinzufügen
300 label_filter_add: Filter hinzufügen
301 label_filter_plural: Filter
301 label_filter_plural: Filter
302 label_equals: ist
302 label_equals: ist
303 label_not_equals: ist nicht
303 label_not_equals: ist nicht
304 label_in_less_than: in weniger als
304 label_in_less_than: in weniger als
305 label_in_more_than: in mehr als
305 label_in_more_than: in mehr als
306 label_in: an
306 label_in: an
307 label_today: heute
307 label_today: heute
308 label_less_than_ago: vor weniger als
308 label_less_than_ago: vor weniger als
309 label_more_than_ago: vor mehr als
309 label_more_than_ago: vor mehr als
310 label_ago: vor
310 label_ago: vor
311 label_contains: enthält
311 label_contains: enthält
312 label_not_contains: enthält nicht
312 label_not_contains: enthält nicht
313 label_day_plural: Tage
313 label_day_plural: Tage
314 label_repository: SVN Projektarchiv
314 label_repository: SVN Projektarchiv
315 label_browse: Codebrowser
315 label_browse: Codebrowser
316 label_modification: %d Änderung
316 label_modification: %d Änderung
317 label_modification_plural: %d Änderungen
317 label_modification_plural: %d Änderungen
318 label_revision: Revision
318 label_revision: Revision
319 label_revision_plural: Revisionen
319 label_revision_plural: Revisionen
320 label_added: hinzugefügt
320 label_added: hinzugefügt
321 label_modified: geändert
321 label_modified: geändert
322 label_deleted: gelöscht
322 label_deleted: gelöscht
323 label_latest_revision: Aktuellste Revision
323 label_latest_revision: Aktuellste Revision
324 label_latest_revision_plural: Aktuellste Revisionen
324 label_latest_revision_plural: Aktuellste Revisionen
325 label_view_revisions: Revisionen anzeigen
325 label_view_revisions: Revisionen anzeigen
326 label_max_size: Maximale Größe
326 label_max_size: Maximale Größe
327 label_on: von
327 label_on: von
328 label_sort_highest: Anfang
328 label_sort_highest: Anfang
329 label_sort_higher: eins höher
329 label_sort_higher: eins höher
330 label_sort_lower: eins tiefer
330 label_sort_lower: eins tiefer
331 label_sort_lowest: Ende
331 label_sort_lowest: Ende
332 label_roadmap: Roadmap
332 label_roadmap: Roadmap
333 label_roadmap_due_in: Fällig in
333 label_roadmap_due_in: Fällig in
334 label_roadmap_no_issues: Keine Tickets für diese Version
334 label_roadmap_no_issues: Keine Tickets für diese Version
335 label_search: Suche
335 label_search: Suche
336 label_result: %d Resultat
336 label_result: %d Resultat
337 label_result_plural: %d Resultate
337 label_result_plural: %d Resultate
338 label_all_words: Alle Wörter
338 label_all_words: Alle Wörter
339 label_wiki: Wiki
339 label_wiki: Wiki
340 label_wiki_edit: Wiki Bearbeitung
340 label_wiki_edit: Wiki Bearbeitung
341 label_wiki_edit_plural: Wiki Bearbeitungen
341 label_wiki_edit_plural: Wiki Bearbeitungen
342 label_page_index: Index
342 label_page_index: Index
343 label_current_version: Gegenwärtige Version
343 label_current_version: Gegenwärtige Version
344 label_preview: Vorschau
344 label_preview: Vorschau
345 label_feed_plural: Feeds
345 label_feed_plural: Feeds
346 label_changes_details: Details aller Änderungen
346 label_changes_details: Details aller Änderungen
347 label_issue_tracking: Tickets
347 label_issue_tracking: Tickets
348 label_spent_time: Aufgewendete Zeit
348 label_spent_time: Aufgewendete Zeit
349 label_f_hour: %.2f Stunde
349 label_f_hour: %.2f Stunde
350 label_f_hour_plural: %.2f Stunden
350 label_f_hour_plural: %.2f Stunden
351 label_time_tracking: Zeiterfassung
351 label_time_tracking: Zeiterfassung
352 label_change_plural: Änderungen
352 label_change_plural: Änderungen
353 label_statistics: Statistiken
353 label_statistics: Statistiken
354 label_commits_per_month: Übertragungen pro Monat
354 label_commits_per_month: Übertragungen pro Monat
355 label_commits_per_author: Übertragungen pro Autor
355 label_commits_per_author: Übertragungen pro Autor
356 label_view_diff: View differences
356 label_view_diff: View differences
357 label_diff_inline: inline
357 label_diff_inline: inline
358 label_diff_side_by_side: side by side
358 label_diff_side_by_side: side by side
359 label_options: Options
359 label_options: Options
360 label_copy_workflow_from: Copy workflow from
360 label_copy_workflow_from: Copy workflow from
361 label_permissions_report: Permissions report
361 label_permissions_report: Permissions report
362 label_watched_issues: Watched issues
362 label_watched_issues: Watched issues
363 label_related_issues: Related issues
363 label_related_issues: Related issues
364 label_applied_status: Applied status
364 label_applied_status: Applied status
365
365
366 button_login: Einloggen
366 button_login: Einloggen
367 button_submit: OK
367 button_submit: OK
368 button_save: Speichern
368 button_save: Speichern
369 button_check_all: Alles auswählen
369 button_check_all: Alles auswählen
370 button_uncheck_all: Alles abwählen
370 button_uncheck_all: Alles abwählen
371 button_delete: Löschen
371 button_delete: Löschen
372 button_create: Anlegen
372 button_create: Anlegen
373 button_test: Testen
373 button_test: Testen
374 button_edit: Bearbeiten
374 button_edit: Bearbeiten
375 button_add: Hinzufügen
375 button_add: Hinzufügen
376 button_change: Wechseln
376 button_change: Wechseln
377 button_apply: Anwenden
377 button_apply: Anwenden
378 button_clear: Zurücksetzen
378 button_clear: Zurücksetzen
379 button_lock: Sperren
379 button_lock: Sperren
380 button_unlock: Entsperren
380 button_unlock: Entsperren
381 button_download: Download
381 button_download: Download
382 button_list: Liste
382 button_list: Liste
383 button_view: Siehe
383 button_view: Siehe
384 button_move: Verschieben
384 button_move: Verschieben
385 button_back: Zurück
385 button_back: Zurück
386 button_cancel: Abbrechen
386 button_cancel: Abbrechen
387 button_activate: Aktivieren
387 button_activate: Aktivieren
388 button_sort: Sortieren
388 button_sort: Sortieren
389 button_log_time: Log time
389 button_log_time: Log time
390 button_rollback: Rollback to this version
390 button_rollback: Rollback to this version
391 button_watch: Watch
391 button_watch: Watch
392 button_unwatch: Unwatch
392 button_unwatch: Unwatch
393
393
394 status_active: aktiv
394 status_active: aktiv
395 status_registered: angemeldet
395 status_registered: angemeldet
396 status_locked: gesperrt
396 status_locked: gesperrt
397
397
398 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
398 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
399 text_regexp_info: eg. ^[A-Z0-9]+$
399 text_regexp_info: eg. ^[A-Z0-9]+$
400 text_min_max_length_info: 0 heißt keine Beschränkung
400 text_min_max_length_info: 0 heißt keine Beschränkung
401 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
401 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
402 text_workflow_edit: Workflow zum Bearbeiten auswählen
402 text_workflow_edit: Workflow zum Bearbeiten auswählen
403 text_are_you_sure: Sind Sie sicher?
403 text_are_you_sure: Sind Sie sicher?
404 text_journal_changed: geändert von %s zu %s
404 text_journal_changed: geändert von %s zu %s
405 text_journal_set_to: gestellt zu %s
405 text_journal_set_to: gestellt zu %s
406 text_journal_deleted: gelöscht
406 text_journal_deleted: gelöscht
407 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
407 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
408 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
408 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
409 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
409 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
410 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
410 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
411 text_caracters_maximum: %d characters maximum.
411 text_caracters_maximum: %d characters maximum.
412 text_length_between: Length between %d and %d characters.
412 text_length_between: Length between %d and %d characters.
413 text_tracker_no_workflow: No workflow defined for this tracker
413 text_tracker_no_workflow: No workflow defined for this tracker
414 text_unallowed_characters: Unallowed characters
414 text_unallowed_characters: Unallowed characters
415 text_coma_separated: Multiple values allowed (coma separated).
415 text_coma_separated: Multiple values allowed (coma separated).
416 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
416 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
417
417
418 default_role_manager: Manager
418 default_role_manager: Manager
419 default_role_developper: Developer
419 default_role_developper: Developer
420 default_role_reporter: Reporter
420 default_role_reporter: Reporter
421 default_tracker_bug: Fehler
421 default_tracker_bug: Fehler
422 default_tracker_feature: Feature
422 default_tracker_feature: Feature
423 default_tracker_support: Support
423 default_tracker_support: Support
424 default_issue_status_new: Neu
424 default_issue_status_new: Neu
425 default_issue_status_assigned: Zugewiesen
425 default_issue_status_assigned: Zugewiesen
426 default_issue_status_resolved: Gelöst
426 default_issue_status_resolved: Gelöst
427 default_issue_status_feedback: Feedback
427 default_issue_status_feedback: Feedback
428 default_issue_status_closed: Erledigt
428 default_issue_status_closed: Erledigt
429 default_issue_status_rejected: Abgewiesen
429 default_issue_status_rejected: Abgewiesen
430 default_doc_category_user: Benutzerdokumentation
430 default_doc_category_user: Benutzerdokumentation
431 default_doc_category_tech: Technische Dokumentation
431 default_doc_category_tech: Technische Dokumentation
432 default_priority_low: Niedrig
432 default_priority_low: Niedrig
433 default_priority_normal: Normal
433 default_priority_normal: Normal
434 default_priority_high: Hoch
434 default_priority_high: Hoch
435 default_priority_urgent: Dringend
435 default_priority_urgent: Dringend
436 default_priority_immediate: Sofort
436 default_priority_immediate: Sofort
437 default_activity_design: Design
437 default_activity_design: Design
438 default_activity_development: Development
438 default_activity_development: Development
439
439
440 enumeration_issue_priorities: Ticket-Prioritäten
440 enumeration_issue_priorities: Ticket-Prioritäten
441 enumeration_doc_categories: Dokumentenkategorien
441 enumeration_doc_categories: Dokumentenkategorien
442 enumeration_activities: Aktivitäten (Zeiterfassung)
442 enumeration_activities: Aktivitäten (Zeiterfassung)
@@ -1,442 +1,442
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
36
37 general_fmt_age: %d yr
37 general_fmt_age: %d yr
38 general_fmt_age_plural: %d yrs
38 general_fmt_age_plural: %d yrs
39 general_fmt_date: %%m/%%d/%%Y
39 general_fmt_date: %%m/%%d/%%Y
40 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
40 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
43 general_text_No: 'No'
43 general_text_No: 'No'
44 general_text_Yes: 'Yes'
44 general_text_Yes: 'Yes'
45 general_text_no: 'no'
45 general_text_no: 'no'
46 general_text_yes: 'yes'
46 general_text_yes: 'yes'
47 general_lang_en: 'English'
47 general_lang_en: 'English'
48 general_csv_separator: ','
48 general_csv_separator: ','
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
51 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
52
52
53 notice_account_updated: Account was successfully updated.
53 notice_account_updated: Account was successfully updated.
54 notice_account_invalid_creditentials: Invalid user or password
54 notice_account_invalid_creditentials: Invalid user or password
55 notice_account_password_updated: Password was successfully updated.
55 notice_account_password_updated: Password was successfully updated.
56 notice_account_wrong_password: Wrong password
56 notice_account_wrong_password: Wrong password
57 notice_account_register_done: Account was successfully created.
57 notice_account_register_done: Account was successfully created.
58 notice_account_unknown_email: Unknown user.
58 notice_account_unknown_email: Unknown user.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
61 notice_account_activated: Your account has been activated. You can now log in.
61 notice_account_activated: Your account has been activated. You can now log in.
62 notice_successful_create: Successful creation.
62 notice_successful_create: Successful creation.
63 notice_successful_update: Successful update.
63 notice_successful_update: Successful update.
64 notice_successful_delete: Successful deletion.
64 notice_successful_delete: Successful deletion.
65 notice_successful_connection: Successful connection.
65 notice_successful_connection: Successful connection.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
69
69
70 mail_subject_lost_password: Your redMine password
70 mail_subject_lost_password: Your redMine password
71 mail_subject_register: redMine account activation
71 mail_subject_register: redMine account activation
72
72
73 gui_validation_error: 1 error
73 gui_validation_error: 1 error
74 gui_validation_error_plural: %d errors
74 gui_validation_error_plural: %d errors
75
75
76 field_name: Name
76 field_name: Name
77 field_description: Description
77 field_description: Description
78 field_summary: Summary
78 field_summary: Summary
79 field_is_required: Required
79 field_is_required: Required
80 field_firstname: Firstname
80 field_firstname: Firstname
81 field_lastname: Lastname
81 field_lastname: Lastname
82 field_mail: Email
82 field_mail: Email
83 field_filename: File
83 field_filename: File
84 field_filesize: Size
84 field_filesize: Size
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Author
86 field_author: Author
87 field_created_on: Created
87 field_created_on: Created
88 field_updated_on: Updated
88 field_updated_on: Updated
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: For all projects
90 field_is_for_all: For all projects
91 field_possible_values: Possible values
91 field_possible_values: Possible values
92 field_regexp: Regular expression
92 field_regexp: Regular expression
93 field_min_length: Minimum length
93 field_min_length: Minimum length
94 field_max_length: Maximum length
94 field_max_length: Maximum length
95 field_value: Value
95 field_value: Value
96 field_category: Category
96 field_category: Category
97 field_title: Title
97 field_title: Title
98 field_project: Project
98 field_project: Project
99 field_issue: Issue
99 field_issue: Issue
100 field_status: Status
100 field_status: Status
101 field_notes: Notes
101 field_notes: Notes
102 field_is_closed: Issue closed
102 field_is_closed: Issue closed
103 field_is_default: Default status
103 field_is_default: Default status
104 field_html_color: Color
104 field_html_color: Color
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Subject
106 field_subject: Subject
107 field_due_date: Due date
107 field_due_date: Due date
108 field_assigned_to: Assigned to
108 field_assigned_to: Assigned to
109 field_priority: Priority
109 field_priority: Priority
110 field_fixed_version: Fixed version
110 field_fixed_version: Fixed version
111 field_user: User
111 field_user: User
112 field_role: Role
112 field_role: Role
113 field_homepage: Homepage
113 field_homepage: Homepage
114 field_is_public: Public
114 field_is_public: Public
115 field_parent: Subproject of
115 field_parent: Subproject of
116 field_is_in_chlog: Issues displayed in changelog
116 field_is_in_chlog: Issues displayed in changelog
117 field_is_in_roadmap: Issues displayed in roadmap
117 field_is_in_roadmap: Issues displayed in roadmap
118 field_login: Login
118 field_login: Login
119 field_mail_notification: Mail notifications
119 field_mail_notification: Mail notifications
120 field_admin: Administrator
120 field_admin: Administrator
121 field_last_login_on: Last connection
121 field_last_login_on: Last connection
122 field_language: Language
122 field_language: Language
123 field_effective_date: Date
123 field_effective_date: Date
124 field_password: Password
124 field_password: Password
125 field_new_password: New password
125 field_new_password: New password
126 field_password_confirmation: Confirmation
126 field_password_confirmation: Confirmation
127 field_version: Version
127 field_version: Version
128 field_type: Type
128 field_type: Type
129 field_host: Host
129 field_host: Host
130 field_port: Port
130 field_port: Port
131 field_account: Account
131 field_account: Account
132 field_base_dn: Base DN
132 field_base_dn: Base DN
133 field_attr_login: Login attribute
133 field_attr_login: Login attribute
134 field_attr_firstname: Firstname attribute
134 field_attr_firstname: Firstname attribute
135 field_attr_lastname: Lastname attribute
135 field_attr_lastname: Lastname attribute
136 field_attr_mail: Email attribute
136 field_attr_mail: Email attribute
137 field_onthefly: On-the-fly user creation
137 field_onthefly: On-the-fly user creation
138 field_start_date: Start
138 field_start_date: Start
139 field_done_ratio: %% Done
139 field_done_ratio: %% Done
140 field_auth_source: Authentication mode
140 field_auth_source: Authentication mode
141 field_hide_mail: Hide my email address
141 field_hide_mail: Hide my email address
142 field_comment: Comment
142 field_comments: Comment
143 field_url: URL
143 field_url: URL
144 field_start_page: Start page
144 field_start_page: Start page
145 field_subproject: Subproject
145 field_subproject: Subproject
146 field_hours: Hours
146 field_hours: Hours
147 field_activity: Activity
147 field_activity: Activity
148 field_spent_on: Date
148 field_spent_on: Date
149 field_identifier: Identifier
149 field_identifier: Identifier
150 field_is_filter: Used as a filter
150 field_is_filter: Used as a filter
151
151
152 setting_app_title: Application title
152 setting_app_title: Application title
153 setting_app_subtitle: Application subtitle
153 setting_app_subtitle: Application subtitle
154 setting_welcome_text: Welcome text
154 setting_welcome_text: Welcome text
155 setting_default_language: Default language
155 setting_default_language: Default language
156 setting_login_required: Authent. required
156 setting_login_required: Authent. required
157 setting_self_registration: Self-registration enabled
157 setting_self_registration: Self-registration enabled
158 setting_attachment_max_size: Attachment max. size
158 setting_attachment_max_size: Attachment max. size
159 setting_issues_export_limit: Issues export limit
159 setting_issues_export_limit: Issues export limit
160 setting_mail_from: Emission mail address
160 setting_mail_from: Emission mail address
161 setting_host_name: Host name
161 setting_host_name: Host name
162 setting_text_formatting: Text formatting
162 setting_text_formatting: Text formatting
163 setting_wiki_compression: Wiki history compression
163 setting_wiki_compression: Wiki history compression
164 setting_feeds_limit: Feed content limit
164 setting_feeds_limit: Feed content limit
165 setting_autofetch_changesets: Autofetch SVN commits
165 setting_autofetch_changesets: Autofetch SVN commits
166 setting_sys_api_enabled: Enable WS for repository management
166 setting_sys_api_enabled: Enable WS for repository management
167 setting_commit_ref_keywords: Referencing keywords
167 setting_commit_ref_keywords: Referencing keywords
168 setting_commit_fix_keywords: Fixing keywords
168 setting_commit_fix_keywords: Fixing keywords
169
169
170 label_user: User
170 label_user: User
171 label_user_plural: Users
171 label_user_plural: Users
172 label_user_new: New user
172 label_user_new: New user
173 label_project: Project
173 label_project: Project
174 label_project_new: New project
174 label_project_new: New project
175 label_project_plural: Projects
175 label_project_plural: Projects
176 label_project_latest: Latest projects
176 label_project_latest: Latest projects
177 label_issue: Issue
177 label_issue: Issue
178 label_issue_new: New issue
178 label_issue_new: New issue
179 label_issue_plural: Issues
179 label_issue_plural: Issues
180 label_issue_view_all: View all issues
180 label_issue_view_all: View all issues
181 label_document: Document
181 label_document: Document
182 label_document_new: New document
182 label_document_new: New document
183 label_document_plural: Documents
183 label_document_plural: Documents
184 label_role: Role
184 label_role: Role
185 label_role_plural: Roles
185 label_role_plural: Roles
186 label_role_new: New role
186 label_role_new: New role
187 label_role_and_permissions: Roles and permissions
187 label_role_and_permissions: Roles and permissions
188 label_member: Member
188 label_member: Member
189 label_member_new: New member
189 label_member_new: New member
190 label_member_plural: Members
190 label_member_plural: Members
191 label_tracker: Tracker
191 label_tracker: Tracker
192 label_tracker_plural: Trackers
192 label_tracker_plural: Trackers
193 label_tracker_new: New tracker
193 label_tracker_new: New tracker
194 label_workflow: Workflow
194 label_workflow: Workflow
195 label_issue_status: Issue status
195 label_issue_status: Issue status
196 label_issue_status_plural: Issue statuses
196 label_issue_status_plural: Issue statuses
197 label_issue_status_new: New status
197 label_issue_status_new: New status
198 label_issue_category: Issue category
198 label_issue_category: Issue category
199 label_issue_category_plural: Issue categories
199 label_issue_category_plural: Issue categories
200 label_issue_category_new: New category
200 label_issue_category_new: New category
201 label_custom_field: Custom field
201 label_custom_field: Custom field
202 label_custom_field_plural: Custom fields
202 label_custom_field_plural: Custom fields
203 label_custom_field_new: New custom field
203 label_custom_field_new: New custom field
204 label_enumerations: Enumerations
204 label_enumerations: Enumerations
205 label_enumeration_new: New value
205 label_enumeration_new: New value
206 label_information: Information
206 label_information: Information
207 label_information_plural: Information
207 label_information_plural: Information
208 label_please_login: Please login
208 label_please_login: Please login
209 label_register: Register
209 label_register: Register
210 label_password_lost: Lost password
210 label_password_lost: Lost password
211 label_home: Home
211 label_home: Home
212 label_my_page: My page
212 label_my_page: My page
213 label_my_account: My account
213 label_my_account: My account
214 label_my_projects: My projects
214 label_my_projects: My projects
215 label_administration: Administration
215 label_administration: Administration
216 label_login: Login
216 label_login: Login
217 label_logout: Logout
217 label_logout: Logout
218 label_help: Help
218 label_help: Help
219 label_reported_issues: Reported issues
219 label_reported_issues: Reported issues
220 label_assigned_to_me_issues: Issues assigned to me
220 label_assigned_to_me_issues: Issues assigned to me
221 label_last_login: Last connection
221 label_last_login: Last connection
222 label_last_updates: Last updated
222 label_last_updates: Last updated
223 label_last_updates_plural: %d last updated
223 label_last_updates_plural: %d last updated
224 label_registered_on: Registered on
224 label_registered_on: Registered on
225 label_activity: Activity
225 label_activity: Activity
226 label_new: New
226 label_new: New
227 label_logged_as: Logged as
227 label_logged_as: Logged as
228 label_environment: Environment
228 label_environment: Environment
229 label_authentication: Authentication
229 label_authentication: Authentication
230 label_auth_source: Authentication mode
230 label_auth_source: Authentication mode
231 label_auth_source_new: New authentication mode
231 label_auth_source_new: New authentication mode
232 label_auth_source_plural: Authentication modes
232 label_auth_source_plural: Authentication modes
233 label_subproject_plural: Subprojects
233 label_subproject_plural: Subprojects
234 label_min_max_length: Min - Max length
234 label_min_max_length: Min - Max length
235 label_list: List
235 label_list: List
236 label_date: Date
236 label_date: Date
237 label_integer: Integer
237 label_integer: Integer
238 label_boolean: Boolean
238 label_boolean: Boolean
239 label_string: Text
239 label_string: Text
240 label_text: Long text
240 label_text: Long text
241 label_attribute: Attribute
241 label_attribute: Attribute
242 label_attribute_plural: Attributes
242 label_attribute_plural: Attributes
243 label_download: %d Download
243 label_download: %d Download
244 label_download_plural: %d Downloads
244 label_download_plural: %d Downloads
245 label_no_data: No data to display
245 label_no_data: No data to display
246 label_change_status: Change status
246 label_change_status: Change status
247 label_history: History
247 label_history: History
248 label_attachment: File
248 label_attachment: File
249 label_attachment_new: New file
249 label_attachment_new: New file
250 label_attachment_delete: Delete file
250 label_attachment_delete: Delete file
251 label_attachment_plural: Files
251 label_attachment_plural: Files
252 label_report: Report
252 label_report: Report
253 label_report_plural: Reports
253 label_report_plural: Reports
254 label_news: News
254 label_news: News
255 label_news_new: Add news
255 label_news_new: Add news
256 label_news_plural: News
256 label_news_plural: News
257 label_news_latest: Latest news
257 label_news_latest: Latest news
258 label_news_view_all: View all news
258 label_news_view_all: View all news
259 label_change_log: Change log
259 label_change_log: Change log
260 label_settings: Settings
260 label_settings: Settings
261 label_overview: Overview
261 label_overview: Overview
262 label_version: Version
262 label_version: Version
263 label_version_new: New version
263 label_version_new: New version
264 label_version_plural: Versions
264 label_version_plural: Versions
265 label_confirmation: Confirmation
265 label_confirmation: Confirmation
266 label_export_to: Export to
266 label_export_to: Export to
267 label_read: Read...
267 label_read: Read...
268 label_public_projects: Public projects
268 label_public_projects: Public projects
269 label_open_issues: open
269 label_open_issues: open
270 label_open_issues_plural: open
270 label_open_issues_plural: open
271 label_closed_issues: closed
271 label_closed_issues: closed
272 label_closed_issues_plural: closed
272 label_closed_issues_plural: closed
273 label_total: Total
273 label_total: Total
274 label_permissions: Permissions
274 label_permissions: Permissions
275 label_current_status: Current status
275 label_current_status: Current status
276 label_new_statuses_allowed: New statuses allowed
276 label_new_statuses_allowed: New statuses allowed
277 label_all: all
277 label_all: all
278 label_none: none
278 label_none: none
279 label_next: Next
279 label_next: Next
280 label_previous: Previous
280 label_previous: Previous
281 label_used_by: Used by
281 label_used_by: Used by
282 label_details: Details...
282 label_details: Details...
283 label_add_note: Add a note
283 label_add_note: Add a note
284 label_per_page: Per page
284 label_per_page: Per page
285 label_calendar: Calendar
285 label_calendar: Calendar
286 label_months_from: months from
286 label_months_from: months from
287 label_gantt: Gantt
287 label_gantt: Gantt
288 label_internal: Internal
288 label_internal: Internal
289 label_last_changes: last %d changes
289 label_last_changes: last %d changes
290 label_change_view_all: View all changes
290 label_change_view_all: View all changes
291 label_personalize_page: Personalize this page
291 label_personalize_page: Personalize this page
292 label_comment: Comment
292 label_comment: Comment
293 label_comment_plural: Comments
293 label_comment_plural: Comments
294 label_comment_add: Add a comment
294 label_comment_add: Add a comment
295 label_comment_added: Comment added
295 label_comment_added: Comment added
296 label_comment_delete: Delete comments
296 label_comment_delete: Delete comments
297 label_query: Custom query
297 label_query: Custom query
298 label_query_plural: Custom queries
298 label_query_plural: Custom queries
299 label_query_new: New query
299 label_query_new: New query
300 label_filter_add: Add filter
300 label_filter_add: Add filter
301 label_filter_plural: Filters
301 label_filter_plural: Filters
302 label_equals: is
302 label_equals: is
303 label_not_equals: is not
303 label_not_equals: is not
304 label_in_less_than: in less than
304 label_in_less_than: in less than
305 label_in_more_than: in more than
305 label_in_more_than: in more than
306 label_in: in
306 label_in: in
307 label_today: today
307 label_today: today
308 label_less_than_ago: less than days ago
308 label_less_than_ago: less than days ago
309 label_more_than_ago: more than days ago
309 label_more_than_ago: more than days ago
310 label_ago: days ago
310 label_ago: days ago
311 label_contains: contains
311 label_contains: contains
312 label_not_contains: doesn't contain
312 label_not_contains: doesn't contain
313 label_day_plural: days
313 label_day_plural: days
314 label_repository: SVN Repository
314 label_repository: SVN Repository
315 label_browse: Browse
315 label_browse: Browse
316 label_modification: %d change
316 label_modification: %d change
317 label_modification_plural: %d changes
317 label_modification_plural: %d changes
318 label_revision: Revision
318 label_revision: Revision
319 label_revision_plural: Revisions
319 label_revision_plural: Revisions
320 label_added: added
320 label_added: added
321 label_modified: modified
321 label_modified: modified
322 label_deleted: deleted
322 label_deleted: deleted
323 label_latest_revision: Latest revision
323 label_latest_revision: Latest revision
324 label_latest_revision_plural: Latest revisions
324 label_latest_revision_plural: Latest revisions
325 label_view_revisions: View revisions
325 label_view_revisions: View revisions
326 label_max_size: Maximum size
326 label_max_size: Maximum size
327 label_on: 'on'
327 label_on: 'on'
328 label_sort_highest: Move to top
328 label_sort_highest: Move to top
329 label_sort_higher: Move up
329 label_sort_higher: Move up
330 label_sort_lower: Move down
330 label_sort_lower: Move down
331 label_sort_lowest: Move to bottom
331 label_sort_lowest: Move to bottom
332 label_roadmap: Roadmap
332 label_roadmap: Roadmap
333 label_roadmap_due_in: Due in
333 label_roadmap_due_in: Due in
334 label_roadmap_no_issues: No issues for this version
334 label_roadmap_no_issues: No issues for this version
335 label_search: Search
335 label_search: Search
336 label_result: %d result
336 label_result: %d result
337 label_result_plural: %d results
337 label_result_plural: %d results
338 label_all_words: All words
338 label_all_words: All words
339 label_wiki: Wiki
339 label_wiki: Wiki
340 label_wiki_edit: Wiki edit
340 label_wiki_edit: Wiki edit
341 label_wiki_edit_plural: Wiki edits
341 label_wiki_edit_plural: Wiki edits
342 label_page_index: Index
342 label_page_index: Index
343 label_current_version: Current version
343 label_current_version: Current version
344 label_preview: Preview
344 label_preview: Preview
345 label_feed_plural: Feeds
345 label_feed_plural: Feeds
346 label_changes_details: Details of all changes
346 label_changes_details: Details of all changes
347 label_issue_tracking: Issue tracking
347 label_issue_tracking: Issue tracking
348 label_spent_time: Spent time
348 label_spent_time: Spent time
349 label_f_hour: %.2f hour
349 label_f_hour: %.2f hour
350 label_f_hour_plural: %.2f hours
350 label_f_hour_plural: %.2f hours
351 label_time_tracking: Time tracking
351 label_time_tracking: Time tracking
352 label_change_plural: Changes
352 label_change_plural: Changes
353 label_statistics: Statistics
353 label_statistics: Statistics
354 label_commits_per_month: Commits per month
354 label_commits_per_month: Commits per month
355 label_commits_per_author: Commits per author
355 label_commits_per_author: Commits per author
356 label_view_diff: View differences
356 label_view_diff: View differences
357 label_diff_inline: inline
357 label_diff_inline: inline
358 label_diff_side_by_side: side by side
358 label_diff_side_by_side: side by side
359 label_options: Options
359 label_options: Options
360 label_copy_workflow_from: Copy workflow from
360 label_copy_workflow_from: Copy workflow from
361 label_permissions_report: Permissions report
361 label_permissions_report: Permissions report
362 label_watched_issues: Watched issues
362 label_watched_issues: Watched issues
363 label_related_issues: Related issues
363 label_related_issues: Related issues
364 label_applied_status: Applied status
364 label_applied_status: Applied status
365
365
366 button_login: Login
366 button_login: Login
367 button_submit: Submit
367 button_submit: Submit
368 button_save: Save
368 button_save: Save
369 button_check_all: Check all
369 button_check_all: Check all
370 button_uncheck_all: Uncheck all
370 button_uncheck_all: Uncheck all
371 button_delete: Delete
371 button_delete: Delete
372 button_create: Create
372 button_create: Create
373 button_test: Test
373 button_test: Test
374 button_edit: Edit
374 button_edit: Edit
375 button_add: Add
375 button_add: Add
376 button_change: Change
376 button_change: Change
377 button_apply: Apply
377 button_apply: Apply
378 button_clear: Clear
378 button_clear: Clear
379 button_lock: Lock
379 button_lock: Lock
380 button_unlock: Unlock
380 button_unlock: Unlock
381 button_download: Download
381 button_download: Download
382 button_list: List
382 button_list: List
383 button_view: View
383 button_view: View
384 button_move: Move
384 button_move: Move
385 button_back: Back
385 button_back: Back
386 button_cancel: Cancel
386 button_cancel: Cancel
387 button_activate: Activate
387 button_activate: Activate
388 button_sort: Sort
388 button_sort: Sort
389 button_log_time: Log time
389 button_log_time: Log time
390 button_rollback: Rollback to this version
390 button_rollback: Rollback to this version
391 button_watch: Watch
391 button_watch: Watch
392 button_unwatch: Unwatch
392 button_unwatch: Unwatch
393
393
394 status_active: active
394 status_active: active
395 status_registered: registered
395 status_registered: registered
396 status_locked: locked
396 status_locked: locked
397
397
398 text_select_mail_notifications: Select actions for which mail notifications should be sent.
398 text_select_mail_notifications: Select actions for which mail notifications should be sent.
399 text_regexp_info: eg. ^[A-Z0-9]+$
399 text_regexp_info: eg. ^[A-Z0-9]+$
400 text_min_max_length_info: 0 means no restriction
400 text_min_max_length_info: 0 means no restriction
401 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
401 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
402 text_workflow_edit: Select a role and a tracker to edit the workflow
402 text_workflow_edit: Select a role and a tracker to edit the workflow
403 text_are_you_sure: Are you sure ?
403 text_are_you_sure: Are you sure ?
404 text_journal_changed: changed from %s to %s
404 text_journal_changed: changed from %s to %s
405 text_journal_set_to: set to %s
405 text_journal_set_to: set to %s
406 text_journal_deleted: deleted
406 text_journal_deleted: deleted
407 text_tip_task_begin_day: task beginning this day
407 text_tip_task_begin_day: task beginning this day
408 text_tip_task_end_day: task ending this day
408 text_tip_task_end_day: task ending this day
409 text_tip_task_begin_end_day: task beginning and ending this day
409 text_tip_task_begin_end_day: task beginning and ending this day
410 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
410 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
411 text_caracters_maximum: %d characters maximum.
411 text_caracters_maximum: %d characters maximum.
412 text_length_between: Length between %d and %d characters.
412 text_length_between: Length between %d and %d characters.
413 text_tracker_no_workflow: No workflow defined for this tracker
413 text_tracker_no_workflow: No workflow defined for this tracker
414 text_unallowed_characters: Unallowed characters
414 text_unallowed_characters: Unallowed characters
415 text_coma_separated: Multiple values allowed (coma separated).
415 text_coma_separated: Multiple values allowed (coma separated).
416 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
416 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
417
417
418 default_role_manager: Manager
418 default_role_manager: Manager
419 default_role_developper: Developer
419 default_role_developper: Developer
420 default_role_reporter: Reporter
420 default_role_reporter: Reporter
421 default_tracker_bug: Bug
421 default_tracker_bug: Bug
422 default_tracker_feature: Feature
422 default_tracker_feature: Feature
423 default_tracker_support: Support
423 default_tracker_support: Support
424 default_issue_status_new: New
424 default_issue_status_new: New
425 default_issue_status_assigned: Assigned
425 default_issue_status_assigned: Assigned
426 default_issue_status_resolved: Resolved
426 default_issue_status_resolved: Resolved
427 default_issue_status_feedback: Feedback
427 default_issue_status_feedback: Feedback
428 default_issue_status_closed: Closed
428 default_issue_status_closed: Closed
429 default_issue_status_rejected: Rejected
429 default_issue_status_rejected: Rejected
430 default_doc_category_user: User documentation
430 default_doc_category_user: User documentation
431 default_doc_category_tech: Technical documentation
431 default_doc_category_tech: Technical documentation
432 default_priority_low: Low
432 default_priority_low: Low
433 default_priority_normal: Normal
433 default_priority_normal: Normal
434 default_priority_high: High
434 default_priority_high: High
435 default_priority_urgent: Urgent
435 default_priority_urgent: Urgent
436 default_priority_immediate: Immediate
436 default_priority_immediate: Immediate
437 default_activity_design: Design
437 default_activity_design: Design
438 default_activity_development: Development
438 default_activity_development: Development
439
439
440 enumeration_issue_priorities: Issue priorities
440 enumeration_issue_priorities: Issue priorities
441 enumeration_doc_categories: Document categories
441 enumeration_doc_categories: Document categories
442 enumeration_activities: Activities (time tracking)
442 enumeration_activities: Activities (time tracking)
@@ -1,442 +1,442
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
36
37 general_fmt_age: %d año
37 general_fmt_age: %d año
38 general_fmt_age_plural: %d años
38 general_fmt_age_plural: %d años
39 general_fmt_date: %%d/%%m/%%Y
39 general_fmt_date: %%d/%%m/%%Y
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
42 general_fmt_time: %%H:%%M
42 general_fmt_time: %%H:%%M
43 general_text_No: 'No'
43 general_text_No: 'No'
44 general_text_Yes: 'Sí'
44 general_text_Yes: 'Sí'
45 general_text_no: 'no'
45 general_text_no: 'no'
46 general_text_yes: 'sí'
46 general_text_yes: 'sí'
47 general_lang_es: 'Español'
47 general_lang_es: 'Español'
48 general_csv_separator: ';'
48 general_csv_separator: ';'
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
51 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
52
52
53 notice_account_updated: Account was successfully updated.
53 notice_account_updated: Account was successfully updated.
54 notice_account_invalid_creditentials: Invalid user or password
54 notice_account_invalid_creditentials: Invalid user or password
55 notice_account_password_updated: Password was successfully updated.
55 notice_account_password_updated: Password was successfully updated.
56 notice_account_wrong_password: Wrong password
56 notice_account_wrong_password: Wrong password
57 notice_account_register_done: Account was successfully created.
57 notice_account_register_done: Account was successfully created.
58 notice_account_unknown_email: Unknown user.
58 notice_account_unknown_email: Unknown user.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
61 notice_account_activated: Your account has been activated. You can now log in.
61 notice_account_activated: Your account has been activated. You can now log in.
62 notice_successful_create: Successful creation.
62 notice_successful_create: Successful creation.
63 notice_successful_update: Successful update.
63 notice_successful_update: Successful update.
64 notice_successful_delete: Successful deletion.
64 notice_successful_delete: Successful deletion.
65 notice_successful_connection: Successful connection.
65 notice_successful_connection: Successful connection.
66 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
66 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
68 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
69
69
70 mail_subject_lost_password: Tu contraseña del redMine
70 mail_subject_lost_password: Tu contraseña del redMine
71 mail_subject_register: Activación de la cuenta del redMine
71 mail_subject_register: Activación de la cuenta del redMine
72
72
73 gui_validation_error: 1 error
73 gui_validation_error: 1 error
74 gui_validation_error_plural: %d errores
74 gui_validation_error_plural: %d errores
75
75
76 field_name: Nombre
76 field_name: Nombre
77 field_description: Descripción
77 field_description: Descripción
78 field_summary: Resumen
78 field_summary: Resumen
79 field_is_required: Obligatorio
79 field_is_required: Obligatorio
80 field_firstname: Nombre
80 field_firstname: Nombre
81 field_lastname: Apellido
81 field_lastname: Apellido
82 field_mail: Email
82 field_mail: Email
83 field_filename: Fichero
83 field_filename: Fichero
84 field_filesize: Tamaño
84 field_filesize: Tamaño
85 field_downloads: Telecargas
85 field_downloads: Telecargas
86 field_author: Autor
86 field_author: Autor
87 field_created_on: Creado
87 field_created_on: Creado
88 field_updated_on: Actualizado
88 field_updated_on: Actualizado
89 field_field_format: Formato
89 field_field_format: Formato
90 field_is_for_all: Para todos los proyectos
90 field_is_for_all: Para todos los proyectos
91 field_possible_values: Valores posibles
91 field_possible_values: Valores posibles
92 field_regexp: Expresión regular
92 field_regexp: Expresión regular
93 field_min_length: Longitud mínima
93 field_min_length: Longitud mínima
94 field_max_length: Longitud máxima
94 field_max_length: Longitud máxima
95 field_value: Valor
95 field_value: Valor
96 field_category: Categoría
96 field_category: Categoría
97 field_title: Título
97 field_title: Título
98 field_project: Proyecto
98 field_project: Proyecto
99 field_issue: Petición
99 field_issue: Petición
100 field_status: Estatuto
100 field_status: Estatuto
101 field_notes: Notas
101 field_notes: Notas
102 field_is_closed: Petición resuelta
102 field_is_closed: Petición resuelta
103 field_is_default: Estatuto por defecto
103 field_is_default: Estatuto por defecto
104 field_html_color: Color
104 field_html_color: Color
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Tema
106 field_subject: Tema
107 field_due_date: Fecha debida
107 field_due_date: Fecha debida
108 field_assigned_to: Asignado a
108 field_assigned_to: Asignado a
109 field_priority: Prioridad
109 field_priority: Prioridad
110 field_fixed_version: Versión corregida
110 field_fixed_version: Versión corregida
111 field_user: Usuario
111 field_user: Usuario
112 field_role: Papel
112 field_role: Papel
113 field_homepage: Sitio web
113 field_homepage: Sitio web
114 field_is_public: Público
114 field_is_public: Público
115 field_parent: Proyecto secundario de
115 field_parent: Proyecto secundario de
116 field_is_in_chlog: Consultar las peticiones en el histórico
116 field_is_in_chlog: Consultar las peticiones en el histórico
117 field_is_in_roadmap: Consultar las peticiones en el roadmap
117 field_is_in_roadmap: Consultar las peticiones en el roadmap
118 field_login: Identificador
118 field_login: Identificador
119 field_mail_notification: Notificación por mail
119 field_mail_notification: Notificación por mail
120 field_admin: Administrador
120 field_admin: Administrador
121 field_last_login_on: Última conexión
121 field_last_login_on: Última conexión
122 field_language: Lengua
122 field_language: Lengua
123 field_effective_date: Fecha
123 field_effective_date: Fecha
124 field_password: Contraseña
124 field_password: Contraseña
125 field_new_password: Nueva contraseña
125 field_new_password: Nueva contraseña
126 field_password_confirmation: Confirmación
126 field_password_confirmation: Confirmación
127 field_version: Versión
127 field_version: Versión
128 field_type: Tipo
128 field_type: Tipo
129 field_host: Anfitrión
129 field_host: Anfitrión
130 field_port: Puerto
130 field_port: Puerto
131 field_account: Cuenta
131 field_account: Cuenta
132 field_base_dn: Base DN
132 field_base_dn: Base DN
133 field_attr_login: Cualidad del identificador
133 field_attr_login: Cualidad del identificador
134 field_attr_firstname: Cualidad del nombre
134 field_attr_firstname: Cualidad del nombre
135 field_attr_lastname: Cualidad del apellido
135 field_attr_lastname: Cualidad del apellido
136 field_attr_mail: Cualidad del Email
136 field_attr_mail: Cualidad del Email
137 field_onthefly: Creación del usuario On-the-fly
137 field_onthefly: Creación del usuario On-the-fly
138 field_start_date: Comienzo
138 field_start_date: Comienzo
139 field_done_ratio: %% Realizado
139 field_done_ratio: %% Realizado
140 field_auth_source: Modo de la autentificación
140 field_auth_source: Modo de la autentificación
141 field_hide_mail: Ocultar mi email address
141 field_hide_mail: Ocultar mi email address
142 field_comment: Comentario
142 field_comments: Comentario
143 field_url: URL
143 field_url: URL
144 field_start_page: Página principal
144 field_start_page: Página principal
145 field_subproject: Proyecto secundario
145 field_subproject: Proyecto secundario
146 field_hours: Hours
146 field_hours: Hours
147 field_activity: Activity
147 field_activity: Activity
148 field_spent_on: Fecha
148 field_spent_on: Fecha
149 field_identifier: Identifier
149 field_identifier: Identifier
150 field_is_filter: Used as a filter
150 field_is_filter: Used as a filter
151
151
152 setting_app_title: Título del aplicación
152 setting_app_title: Título del aplicación
153 setting_app_subtitle: Subtítulo del aplicación
153 setting_app_subtitle: Subtítulo del aplicación
154 setting_welcome_text: Texto acogida
154 setting_welcome_text: Texto acogida
155 setting_default_language: Lengua del defecto
155 setting_default_language: Lengua del defecto
156 setting_login_required: Autentif. requerida
156 setting_login_required: Autentif. requerida
157 setting_self_registration: Registro permitido
157 setting_self_registration: Registro permitido
158 setting_attachment_max_size: Tamaño máximo del fichero
158 setting_attachment_max_size: Tamaño máximo del fichero
159 setting_issues_export_limit: Issues export limit
159 setting_issues_export_limit: Issues export limit
160 setting_mail_from: Email de la emisión
160 setting_mail_from: Email de la emisión
161 setting_host_name: Nombre de anfitrión
161 setting_host_name: Nombre de anfitrión
162 setting_text_formatting: Formato de texto
162 setting_text_formatting: Formato de texto
163 setting_wiki_compression: Compresión de la historia de Wiki
163 setting_wiki_compression: Compresión de la historia de Wiki
164 setting_feeds_limit: Feed content limit
164 setting_feeds_limit: Feed content limit
165 setting_autofetch_changesets: Autofetch SVN commits
165 setting_autofetch_changesets: Autofetch SVN commits
166 setting_sys_api_enabled: Enable WS for repository management
166 setting_sys_api_enabled: Enable WS for repository management
167 setting_commit_ref_keywords: Referencing keywords
167 setting_commit_ref_keywords: Referencing keywords
168 setting_commit_fix_keywords: Fixing keywords
168 setting_commit_fix_keywords: Fixing keywords
169
169
170 label_user: Usuario
170 label_user: Usuario
171 label_user_plural: Usuarios
171 label_user_plural: Usuarios
172 label_user_new: Nuevo usuario
172 label_user_new: Nuevo usuario
173 label_project: Proyecto
173 label_project: Proyecto
174 label_project_new: Nuevo proyecto
174 label_project_new: Nuevo proyecto
175 label_project_plural: Proyectos
175 label_project_plural: Proyectos
176 label_project_latest: Los proyectos más últimos
176 label_project_latest: Los proyectos más últimos
177 label_issue: Petición
177 label_issue: Petición
178 label_issue_new: Nueva petición
178 label_issue_new: Nueva petición
179 label_issue_plural: Peticiones
179 label_issue_plural: Peticiones
180 label_issue_view_all: Ver todas las peticiones
180 label_issue_view_all: Ver todas las peticiones
181 label_document: Documento
181 label_document: Documento
182 label_document_new: Nuevo documento
182 label_document_new: Nuevo documento
183 label_document_plural: Documentos
183 label_document_plural: Documentos
184 label_role: Papel
184 label_role: Papel
185 label_role_plural: Papeles
185 label_role_plural: Papeles
186 label_role_new: Nuevo papel
186 label_role_new: Nuevo papel
187 label_role_and_permissions: Papeles y permisos
187 label_role_and_permissions: Papeles y permisos
188 label_member: Miembro
188 label_member: Miembro
189 label_member_new: Nuevo miembro
189 label_member_new: Nuevo miembro
190 label_member_plural: Miembros
190 label_member_plural: Miembros
191 label_tracker: Tracker
191 label_tracker: Tracker
192 label_tracker_plural: Trackers
192 label_tracker_plural: Trackers
193 label_tracker_new: Nuevo tracker
193 label_tracker_new: Nuevo tracker
194 label_workflow: Workflow
194 label_workflow: Workflow
195 label_issue_status: Estatuto de petición
195 label_issue_status: Estatuto de petición
196 label_issue_status_plural: Estatutos de las peticiones
196 label_issue_status_plural: Estatutos de las peticiones
197 label_issue_status_new: Nuevo estatuto
197 label_issue_status_new: Nuevo estatuto
198 label_issue_category: Categoría de las peticiones
198 label_issue_category: Categoría de las peticiones
199 label_issue_category_plural: Categorías de las peticiones
199 label_issue_category_plural: Categorías de las peticiones
200 label_issue_category_new: Nueva categoría
200 label_issue_category_new: Nueva categoría
201 label_custom_field: Campo personalizado
201 label_custom_field: Campo personalizado
202 label_custom_field_plural: Campos personalizados
202 label_custom_field_plural: Campos personalizados
203 label_custom_field_new: Nuevo campo personalizado
203 label_custom_field_new: Nuevo campo personalizado
204 label_enumerations: Listas de valores
204 label_enumerations: Listas de valores
205 label_enumeration_new: Nuevo valor
205 label_enumeration_new: Nuevo valor
206 label_information: Informacion
206 label_information: Informacion
207 label_information_plural: Informaciones
207 label_information_plural: Informaciones
208 label_please_login: Conexión
208 label_please_login: Conexión
209 label_register: Registrar
209 label_register: Registrar
210 label_password_lost: ¿Olvidaste la contraseña?
210 label_password_lost: ¿Olvidaste la contraseña?
211 label_home: Acogida
211 label_home: Acogida
212 label_my_page: Mi página
212 label_my_page: Mi página
213 label_my_account: Mi cuenta
213 label_my_account: Mi cuenta
214 label_my_projects: Mis proyectos
214 label_my_projects: Mis proyectos
215 label_administration: Administración
215 label_administration: Administración
216 label_login: Conexión
216 label_login: Conexión
217 label_logout: Desconexión
217 label_logout: Desconexión
218 label_help: Ayuda
218 label_help: Ayuda
219 label_reported_issues: Peticiones registradas
219 label_reported_issues: Peticiones registradas
220 label_assigned_to_me_issues: Peticiones que me están asignadas
220 label_assigned_to_me_issues: Peticiones que me están asignadas
221 label_last_login: Última conexión
221 label_last_login: Última conexión
222 label_last_updates: Actualizado
222 label_last_updates: Actualizado
223 label_last_updates_plural: %d Actualizados
223 label_last_updates_plural: %d Actualizados
224 label_registered_on: Inscrito el
224 label_registered_on: Inscrito el
225 label_activity: Actividad
225 label_activity: Actividad
226 label_new: Nuevo
226 label_new: Nuevo
227 label_logged_as: Conectado como
227 label_logged_as: Conectado como
228 label_environment: Environment
228 label_environment: Environment
229 label_authentication: Autentificación
229 label_authentication: Autentificación
230 label_auth_source: Modo de la autentificación
230 label_auth_source: Modo de la autentificación
231 label_auth_source_new: Nuevo modo de la autentificación
231 label_auth_source_new: Nuevo modo de la autentificación
232 label_auth_source_plural: Modos de la autentificación
232 label_auth_source_plural: Modos de la autentificación
233 label_subproject_plural: Proyectos secundarios
233 label_subproject_plural: Proyectos secundarios
234 label_min_max_length: Longitud mín - máx
234 label_min_max_length: Longitud mín - máx
235 label_list: Lista
235 label_list: Lista
236 label_date: Fecha
236 label_date: Fecha
237 label_integer: Número
237 label_integer: Número
238 label_boolean: Boleano
238 label_boolean: Boleano
239 label_string: Texto
239 label_string: Texto
240 label_text: Texto largo
240 label_text: Texto largo
241 label_attribute: Cualidad
241 label_attribute: Cualidad
242 label_attribute_plural: Cualidades
242 label_attribute_plural: Cualidades
243 label_download: %d Telecarga
243 label_download: %d Telecarga
244 label_download_plural: %d Telecargas
244 label_download_plural: %d Telecargas
245 label_no_data: Ningunos datos a exhibir
245 label_no_data: Ningunos datos a exhibir
246 label_change_status: Cambiar el estatuto
246 label_change_status: Cambiar el estatuto
247 label_history: Histórico
247 label_history: Histórico
248 label_attachment: Fichero
248 label_attachment: Fichero
249 label_attachment_new: Nuevo fichero
249 label_attachment_new: Nuevo fichero
250 label_attachment_delete: Suprimir el fichero
250 label_attachment_delete: Suprimir el fichero
251 label_attachment_plural: Ficheros
251 label_attachment_plural: Ficheros
252 label_report: Informe
252 label_report: Informe
253 label_report_plural: Informes
253 label_report_plural: Informes
254 label_news: Noticia
254 label_news: Noticia
255 label_news_new: Nueva noticia
255 label_news_new: Nueva noticia
256 label_news_plural: Noticias
256 label_news_plural: Noticias
257 label_news_latest: Últimas noticias
257 label_news_latest: Últimas noticias
258 label_news_view_all: Ver todas las noticias
258 label_news_view_all: Ver todas las noticias
259 label_change_log: Cambios
259 label_change_log: Cambios
260 label_settings: Configuración
260 label_settings: Configuración
261 label_overview: Vistazo
261 label_overview: Vistazo
262 label_version: Versión
262 label_version: Versión
263 label_version_new: Nueva versión
263 label_version_new: Nueva versión
264 label_version_plural: Versiónes
264 label_version_plural: Versiónes
265 label_confirmation: Confirmación
265 label_confirmation: Confirmación
266 label_export_to: Exportar a
266 label_export_to: Exportar a
267 label_read: Leer...
267 label_read: Leer...
268 label_public_projects: Proyectos publicos
268 label_public_projects: Proyectos publicos
269 label_open_issues: abierta
269 label_open_issues: abierta
270 label_open_issues_plural: abiertas
270 label_open_issues_plural: abiertas
271 label_closed_issues: cerrada
271 label_closed_issues: cerrada
272 label_closed_issues_plural: cerradas
272 label_closed_issues_plural: cerradas
273 label_total: Total
273 label_total: Total
274 label_permissions: Permisos
274 label_permissions: Permisos
275 label_current_status: Estado actual
275 label_current_status: Estado actual
276 label_new_statuses_allowed: Nuevos estatutos autorizados
276 label_new_statuses_allowed: Nuevos estatutos autorizados
277 label_all: todos
277 label_all: todos
278 label_none: ninguno
278 label_none: ninguno
279 label_next: Próximo
279 label_next: Próximo
280 label_previous: Precedente
280 label_previous: Precedente
281 label_used_by: Utilizado por
281 label_used_by: Utilizado por
282 label_details: Detalles...
282 label_details: Detalles...
283 label_add_note: Agregar una nota
283 label_add_note: Agregar una nota
284 label_per_page: Por la página
284 label_per_page: Por la página
285 label_calendar: Calendario
285 label_calendar: Calendario
286 label_months_from: meses de
286 label_months_from: meses de
287 label_gantt: Gantt
287 label_gantt: Gantt
288 label_internal: Interno
288 label_internal: Interno
289 label_last_changes: %d cambios del último
289 label_last_changes: %d cambios del último
290 label_change_view_all: Ver todos los cambios
290 label_change_view_all: Ver todos los cambios
291 label_personalize_page: Personalizar esta página
291 label_personalize_page: Personalizar esta página
292 label_comment: Comentario
292 label_comment: Comentario
293 label_comment_plural: Comentarios
293 label_comment_plural: Comentarios
294 label_comment_add: Agregar un comentario
294 label_comment_add: Agregar un comentario
295 label_comment_added: Comentario agregó
295 label_comment_added: Comentario agregó
296 label_comment_delete: Suprimir comentarios
296 label_comment_delete: Suprimir comentarios
297 label_query: Pregunta personalizada
297 label_query: Pregunta personalizada
298 label_query_plural: Preguntas personalizadas
298 label_query_plural: Preguntas personalizadas
299 label_query_new: Nueva preguntas
299 label_query_new: Nueva preguntas
300 label_filter_add: Agregar el filtro
300 label_filter_add: Agregar el filtro
301 label_filter_plural: Filtros
301 label_filter_plural: Filtros
302 label_equals: igual
302 label_equals: igual
303 label_not_equals: no igual
303 label_not_equals: no igual
304 label_in_less_than: en menos que
304 label_in_less_than: en menos que
305 label_in_more_than: en más que
305 label_in_more_than: en más que
306 label_in: en
306 label_in: en
307 label_today: hoy
307 label_today: hoy
308 label_less_than_ago: hace menos de
308 label_less_than_ago: hace menos de
309 label_more_than_ago: hace más de
309 label_more_than_ago: hace más de
310 label_ago: hace
310 label_ago: hace
311 label_contains: contiene
311 label_contains: contiene
312 label_not_contains: no contiene
312 label_not_contains: no contiene
313 label_day_plural: días
313 label_day_plural: días
314 label_repository: Depósito SVN
314 label_repository: Depósito SVN
315 label_browse: Hojear
315 label_browse: Hojear
316 label_modification: %d modificación
316 label_modification: %d modificación
317 label_modification_plural: %d modificaciones
317 label_modification_plural: %d modificaciones
318 label_revision: Revisión
318 label_revision: Revisión
319 label_revision_plural: Revisiones
319 label_revision_plural: Revisiones
320 label_added: agregado
320 label_added: agregado
321 label_modified: modificado
321 label_modified: modificado
322 label_deleted: suprimido
322 label_deleted: suprimido
323 label_latest_revision: La revisión más última
323 label_latest_revision: La revisión más última
324 label_latest_revision_plural: Latest revisions
324 label_latest_revision_plural: Latest revisions
325 label_view_revisions: Ver las revisiones
325 label_view_revisions: Ver las revisiones
326 label_max_size: Tamaño máximo
326 label_max_size: Tamaño máximo
327 label_on: en
327 label_on: en
328 label_sort_highest: Primero
328 label_sort_highest: Primero
329 label_sort_higher: Subir
329 label_sort_higher: Subir
330 label_sort_lower: Bajar
330 label_sort_lower: Bajar
331 label_sort_lowest: Último
331 label_sort_lowest: Último
332 label_roadmap: Roadmap
332 label_roadmap: Roadmap
333 label_roadmap_due_in: Due in
333 label_roadmap_due_in: Due in
334 label_roadmap_no_issues: No issues for this version
334 label_roadmap_no_issues: No issues for this version
335 label_search: Búsqueda
335 label_search: Búsqueda
336 label_result: %d resultado
336 label_result: %d resultado
337 label_result_plural: %d resultados
337 label_result_plural: %d resultados
338 label_all_words: Todas las palabras
338 label_all_words: Todas las palabras
339 label_wiki: Wiki
339 label_wiki: Wiki
340 label_wiki_edit: Wiki edit
340 label_wiki_edit: Wiki edit
341 label_wiki_edit_plural: Wiki edits
341 label_wiki_edit_plural: Wiki edits
342 label_page_index: Índice
342 label_page_index: Índice
343 label_current_version: Versión actual
343 label_current_version: Versión actual
344 label_preview: Previo
344 label_preview: Previo
345 label_feed_plural: Feeds
345 label_feed_plural: Feeds
346 label_changes_details: Detalles de todos los cambios
346 label_changes_details: Detalles de todos los cambios
347 label_issue_tracking: Issue tracking
347 label_issue_tracking: Issue tracking
348 label_spent_time: Spent time
348 label_spent_time: Spent time
349 label_f_hour: %.2f hour
349 label_f_hour: %.2f hour
350 label_f_hour_plural: %.2f hours
350 label_f_hour_plural: %.2f hours
351 label_time_tracking: Time tracking
351 label_time_tracking: Time tracking
352 label_change_plural: Changes
352 label_change_plural: Changes
353 label_statistics: Statistics
353 label_statistics: Statistics
354 label_commits_per_month: Commits per month
354 label_commits_per_month: Commits per month
355 label_commits_per_author: Commits per author
355 label_commits_per_author: Commits per author
356 label_view_diff: View differences
356 label_view_diff: View differences
357 label_diff_inline: inline
357 label_diff_inline: inline
358 label_diff_side_by_side: side by side
358 label_diff_side_by_side: side by side
359 label_options: Options
359 label_options: Options
360 label_copy_workflow_from: Copy workflow from
360 label_copy_workflow_from: Copy workflow from
361 label_permissions_report: Permissions report
361 label_permissions_report: Permissions report
362 label_watched_issues: Watched issues
362 label_watched_issues: Watched issues
363 label_related_issues: Related issues
363 label_related_issues: Related issues
364 label_applied_status: Applied status
364 label_applied_status: Applied status
365
365
366 button_login: Conexión
366 button_login: Conexión
367 button_submit: Someter
367 button_submit: Someter
368 button_save: Validar
368 button_save: Validar
369 button_check_all: Seleccionar todo
369 button_check_all: Seleccionar todo
370 button_uncheck_all: No seleccionar nada
370 button_uncheck_all: No seleccionar nada
371 button_delete: Suprimir
371 button_delete: Suprimir
372 button_create: Crear
372 button_create: Crear
373 button_test: Testar
373 button_test: Testar
374 button_edit: Modificar
374 button_edit: Modificar
375 button_add: Añadir
375 button_add: Añadir
376 button_change: Cambiar
376 button_change: Cambiar
377 button_apply: Aplicar
377 button_apply: Aplicar
378 button_clear: Anular
378 button_clear: Anular
379 button_lock: Bloquear
379 button_lock: Bloquear
380 button_unlock: Desbloquear
380 button_unlock: Desbloquear
381 button_download: Telecargar
381 button_download: Telecargar
382 button_list: Listar
382 button_list: Listar
383 button_view: Ver
383 button_view: Ver
384 button_move: Mover
384 button_move: Mover
385 button_back: Atrás
385 button_back: Atrás
386 button_cancel: Cancelar
386 button_cancel: Cancelar
387 button_activate: Activar
387 button_activate: Activar
388 button_sort: Clasificar
388 button_sort: Clasificar
389 button_log_time: Log time
389 button_log_time: Log time
390 button_rollback: Rollback to this version
390 button_rollback: Rollback to this version
391 button_watch: Watch
391 button_watch: Watch
392 button_unwatch: Unwatch
392 button_unwatch: Unwatch
393
393
394 status_active: active
394 status_active: active
395 status_registered: registered
395 status_registered: registered
396 status_locked: locked
396 status_locked: locked
397
397
398 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
398 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
399 text_regexp_info: eg. ^[A-Z0-9]+$
399 text_regexp_info: eg. ^[A-Z0-9]+$
400 text_min_max_length_info: 0 para ninguna restricción
400 text_min_max_length_info: 0 para ninguna restricción
401 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
401 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
402 text_workflow_edit: Seleccionar un workflow para actualizar
402 text_workflow_edit: Seleccionar un workflow para actualizar
403 text_are_you_sure: ¿ Estás seguro ?
403 text_are_you_sure: ¿ Estás seguro ?
404 text_journal_changed: cambiado de %s a %s
404 text_journal_changed: cambiado de %s a %s
405 text_journal_set_to: fijado a %s
405 text_journal_set_to: fijado a %s
406 text_journal_deleted: suprimido
406 text_journal_deleted: suprimido
407 text_tip_task_begin_day: tarea que comienza este día
407 text_tip_task_begin_day: tarea que comienza este día
408 text_tip_task_end_day: tarea que termina este día
408 text_tip_task_end_day: tarea que termina este día
409 text_tip_task_begin_end_day: tarea que comienza y termina este día
409 text_tip_task_begin_end_day: tarea que comienza y termina este día
410 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
410 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
411 text_caracters_maximum: %d characters maximum.
411 text_caracters_maximum: %d characters maximum.
412 text_length_between: Length between %d and %d characters.
412 text_length_between: Length between %d and %d characters.
413 text_tracker_no_workflow: No workflow defined for this tracker
413 text_tracker_no_workflow: No workflow defined for this tracker
414 text_unallowed_characters: Unallowed characters
414 text_unallowed_characters: Unallowed characters
415 text_coma_separated: Multiple values allowed (coma separated).
415 text_coma_separated: Multiple values allowed (coma separated).
416 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
416 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
417
417
418 default_role_manager: Manager
418 default_role_manager: Manager
419 default_role_developper: Desarrollador
419 default_role_developper: Desarrollador
420 default_role_reporter: Informador
420 default_role_reporter: Informador
421 default_tracker_bug: Anomalía
421 default_tracker_bug: Anomalía
422 default_tracker_feature: Evolución
422 default_tracker_feature: Evolución
423 default_tracker_support: Asistencia
423 default_tracker_support: Asistencia
424 default_issue_status_new: Nuevo
424 default_issue_status_new: Nuevo
425 default_issue_status_assigned: Asignada
425 default_issue_status_assigned: Asignada
426 default_issue_status_resolved: Resuelta
426 default_issue_status_resolved: Resuelta
427 default_issue_status_feedback: Comentario
427 default_issue_status_feedback: Comentario
428 default_issue_status_closed: Cerrada
428 default_issue_status_closed: Cerrada
429 default_issue_status_rejected: Rechazada
429 default_issue_status_rejected: Rechazada
430 default_doc_category_user: Documentación del usuario
430 default_doc_category_user: Documentación del usuario
431 default_doc_category_tech: Documentación tecnica
431 default_doc_category_tech: Documentación tecnica
432 default_priority_low: Bajo
432 default_priority_low: Bajo
433 default_priority_normal: Normal
433 default_priority_normal: Normal
434 default_priority_high: Alto
434 default_priority_high: Alto
435 default_priority_urgent: Urgente
435 default_priority_urgent: Urgente
436 default_priority_immediate: Ahora
436 default_priority_immediate: Ahora
437 default_activity_design: Design
437 default_activity_design: Design
438 default_activity_development: Development
438 default_activity_development: Development
439
439
440 enumeration_issue_priorities: Prioridad de las peticiones
440 enumeration_issue_priorities: Prioridad de las peticiones
441 enumeration_doc_categories: Categorías del documento
441 enumeration_doc_categories: Categorías del documento
442 enumeration_activities: Activities (time tracking)
442 enumeration_activities: Activities (time tracking)
@@ -1,442 +1,442
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: 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: 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
36
37 general_fmt_age: %d an
37 general_fmt_age: %d an
38 general_fmt_age_plural: %d ans
38 general_fmt_age_plural: %d ans
39 general_fmt_date: %%d/%%m/%%Y
39 general_fmt_date: %%d/%%m/%%Y
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
42 general_fmt_time: %%H:%%M
42 general_fmt_time: %%H:%%M
43 general_text_No: 'Non'
43 general_text_No: 'Non'
44 general_text_Yes: 'Oui'
44 general_text_Yes: 'Oui'
45 general_text_no: 'non'
45 general_text_no: 'non'
46 general_text_yes: 'oui'
46 general_text_yes: 'oui'
47 general_lang_fr: 'Français'
47 general_lang_fr: 'Français'
48 general_csv_separator: ';'
48 general_csv_separator: ';'
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
51 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
52
52
53 notice_account_updated: Le compte a été mis à jour avec succès.
53 notice_account_updated: Le compte a été mis à jour avec succès.
54 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
54 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
55 notice_account_password_updated: Mot de passe mis à jour avec succès.
55 notice_account_password_updated: Mot de passe mis à jour avec succès.
56 notice_account_wrong_password: Mot de passe incorrect
56 notice_account_wrong_password: Mot de passe incorrect
57 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
57 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
58 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
58 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
59 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
59 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
60 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
60 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
61 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
61 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
62 notice_successful_create: Création effectuée avec succès.
62 notice_successful_create: Création effectuée avec succès.
63 notice_successful_update: Mise à jour effectuée avec succès.
63 notice_successful_update: Mise à jour effectuée avec succès.
64 notice_successful_delete: Suppression effectuée avec succès.
64 notice_successful_delete: Suppression effectuée avec succès.
65 notice_successful_connection: Connection réussie.
65 notice_successful_connection: Connection réussie.
66 notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
66 notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
67 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
67 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
68 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
68 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
69
69
70 mail_subject_lost_password: Votre mot de passe redMine
70 mail_subject_lost_password: Votre mot de passe redMine
71 mail_subject_register: Activation de votre compte redMine
71 mail_subject_register: Activation de votre compte redMine
72
72
73 gui_validation_error: 1 erreur
73 gui_validation_error: 1 erreur
74 gui_validation_error_plural: %d erreurs
74 gui_validation_error_plural: %d erreurs
75
75
76 field_name: Nom
76 field_name: Nom
77 field_description: Description
77 field_description: Description
78 field_summary: Résumé
78 field_summary: Résumé
79 field_is_required: Obligatoire
79 field_is_required: Obligatoire
80 field_firstname: Prénom
80 field_firstname: Prénom
81 field_lastname: Nom
81 field_lastname: Nom
82 field_mail: Email
82 field_mail: Email
83 field_filename: Fichier
83 field_filename: Fichier
84 field_filesize: Taille
84 field_filesize: Taille
85 field_downloads: Téléchargements
85 field_downloads: Téléchargements
86 field_author: Auteur
86 field_author: Auteur
87 field_created_on: Créé
87 field_created_on: Créé
88 field_updated_on: Mis à jour
88 field_updated_on: Mis à jour
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: Pour tous les projets
90 field_is_for_all: Pour tous les projets
91 field_possible_values: Valeurs possibles
91 field_possible_values: Valeurs possibles
92 field_regexp: Expression régulière
92 field_regexp: Expression régulière
93 field_min_length: Longueur minimum
93 field_min_length: Longueur minimum
94 field_max_length: Longueur maximum
94 field_max_length: Longueur maximum
95 field_value: Valeur
95 field_value: Valeur
96 field_category: Catégorie
96 field_category: Catégorie
97 field_title: Titre
97 field_title: Titre
98 field_project: Projet
98 field_project: Projet
99 field_issue: Demande
99 field_issue: Demande
100 field_status: Statut
100 field_status: Statut
101 field_notes: Notes
101 field_notes: Notes
102 field_is_closed: Demande fermée
102 field_is_closed: Demande fermée
103 field_is_default: Statut par défaut
103 field_is_default: Statut par défaut
104 field_html_color: Couleur
104 field_html_color: Couleur
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Sujet
106 field_subject: Sujet
107 field_due_date: Date d'échéance
107 field_due_date: Date d'échéance
108 field_assigned_to: Assigné à
108 field_assigned_to: Assigné à
109 field_priority: Priorité
109 field_priority: Priorité
110 field_fixed_version: Version corrigée
110 field_fixed_version: Version corrigée
111 field_user: Utilisateur
111 field_user: Utilisateur
112 field_role: Rôle
112 field_role: Rôle
113 field_homepage: Site web
113 field_homepage: Site web
114 field_is_public: Public
114 field_is_public: Public
115 field_parent: Sous-projet de
115 field_parent: Sous-projet de
116 field_is_in_chlog: Demandes affichées dans l'historique
116 field_is_in_chlog: Demandes affichées dans l'historique
117 field_is_in_roadmap: Demandes affichées dans la roadmap
117 field_is_in_roadmap: Demandes affichées dans la roadmap
118 field_login: Identifiant
118 field_login: Identifiant
119 field_mail_notification: Notifications par mail
119 field_mail_notification: Notifications par mail
120 field_admin: Administrateur
120 field_admin: Administrateur
121 field_last_login_on: Dernière connexion
121 field_last_login_on: Dernière connexion
122 field_language: Langue
122 field_language: Langue
123 field_effective_date: Date
123 field_effective_date: Date
124 field_password: Mot de passe
124 field_password: Mot de passe
125 field_new_password: Nouveau mot de passe
125 field_new_password: Nouveau mot de passe
126 field_password_confirmation: Confirmation
126 field_password_confirmation: Confirmation
127 field_version: Version
127 field_version: Version
128 field_type: Type
128 field_type: Type
129 field_host: Hôte
129 field_host: Hôte
130 field_port: Port
130 field_port: Port
131 field_account: Compte
131 field_account: Compte
132 field_base_dn: Base DN
132 field_base_dn: Base DN
133 field_attr_login: Attribut Identifiant
133 field_attr_login: Attribut Identifiant
134 field_attr_firstname: Attribut Prénom
134 field_attr_firstname: Attribut Prénom
135 field_attr_lastname: Attribut Nom
135 field_attr_lastname: Attribut Nom
136 field_attr_mail: Attribut Email
136 field_attr_mail: Attribut Email
137 field_onthefly: Création des utilisateurs à la volée
137 field_onthefly: Création des utilisateurs à la volée
138 field_start_date: Début
138 field_start_date: Début
139 field_done_ratio: %% Réalisé
139 field_done_ratio: %% Réalisé
140 field_auth_source: Mode d'authentification
140 field_auth_source: Mode d'authentification
141 field_hide_mail: Cacher mon adresse mail
141 field_hide_mail: Cacher mon adresse mail
142 field_comment: Commentaire
142 field_comments: Commentaire
143 field_url: URL
143 field_url: URL
144 field_start_page: Page de démarrage
144 field_start_page: Page de démarrage
145 field_subproject: Sous-projet
145 field_subproject: Sous-projet
146 field_hours: Heures
146 field_hours: Heures
147 field_activity: Activité
147 field_activity: Activité
148 field_spent_on: Date
148 field_spent_on: Date
149 field_identifier: Identifiant
149 field_identifier: Identifiant
150 field_is_filter: Utilisé comme filtre
150 field_is_filter: Utilisé comme filtre
151
151
152 setting_app_title: Titre de l'application
152 setting_app_title: Titre de l'application
153 setting_app_subtitle: Sous-titre de l'application
153 setting_app_subtitle: Sous-titre de l'application
154 setting_welcome_text: Texte d'accueil
154 setting_welcome_text: Texte d'accueil
155 setting_default_language: Langue par défaut
155 setting_default_language: Langue par défaut
156 setting_login_required: Authentif. obligatoire
156 setting_login_required: Authentif. obligatoire
157 setting_self_registration: Enregistrement autorisé
157 setting_self_registration: Enregistrement autorisé
158 setting_attachment_max_size: Taille max des fichiers
158 setting_attachment_max_size: Taille max des fichiers
159 setting_issues_export_limit: Limite export demandes
159 setting_issues_export_limit: Limite export demandes
160 setting_mail_from: Adresse d'émission
160 setting_mail_from: Adresse d'émission
161 setting_host_name: Nom d'hôte
161 setting_host_name: Nom d'hôte
162 setting_text_formatting: Formatage du texte
162 setting_text_formatting: Formatage du texte
163 setting_wiki_compression: Compression historique wiki
163 setting_wiki_compression: Compression historique wiki
164 setting_feeds_limit: Limite du contenu des flux RSS
164 setting_feeds_limit: Limite du contenu des flux RSS
165 setting_autofetch_changesets: Récupération auto. des commits SVN
165 setting_autofetch_changesets: Récupération auto. des commits SVN
166 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
166 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
167 setting_commit_ref_keywords: Mot-clés de référencement
167 setting_commit_ref_keywords: Mot-clés de référencement
168 setting_commit_fix_keywords: Mot-clés de résolution
168 setting_commit_fix_keywords: Mot-clés de résolution
169
169
170 label_user: Utilisateur
170 label_user: Utilisateur
171 label_user_plural: Utilisateurs
171 label_user_plural: Utilisateurs
172 label_user_new: Nouvel utilisateur
172 label_user_new: Nouvel utilisateur
173 label_project: Projet
173 label_project: Projet
174 label_project_new: Nouveau projet
174 label_project_new: Nouveau projet
175 label_project_plural: Projets
175 label_project_plural: Projets
176 label_project_latest: Derniers projets
176 label_project_latest: Derniers projets
177 label_issue: Demande
177 label_issue: Demande
178 label_issue_new: Nouvelle demande
178 label_issue_new: Nouvelle demande
179 label_issue_plural: Demandes
179 label_issue_plural: Demandes
180 label_issue_view_all: Voir toutes les demandes
180 label_issue_view_all: Voir toutes les demandes
181 label_document: Document
181 label_document: Document
182 label_document_new: Nouveau document
182 label_document_new: Nouveau document
183 label_document_plural: Documents
183 label_document_plural: Documents
184 label_role: Rôle
184 label_role: Rôle
185 label_role_plural: Rôles
185 label_role_plural: Rôles
186 label_role_new: Nouveau rôle
186 label_role_new: Nouveau rôle
187 label_role_and_permissions: Rôles et permissions
187 label_role_and_permissions: Rôles et permissions
188 label_member: Membre
188 label_member: Membre
189 label_member_new: Nouveau membre
189 label_member_new: Nouveau membre
190 label_member_plural: Membres
190 label_member_plural: Membres
191 label_tracker: Tracker
191 label_tracker: Tracker
192 label_tracker_plural: Trackers
192 label_tracker_plural: Trackers
193 label_tracker_new: Nouveau tracker
193 label_tracker_new: Nouveau tracker
194 label_workflow: Workflow
194 label_workflow: Workflow
195 label_issue_status: Statut de demandes
195 label_issue_status: Statut de demandes
196 label_issue_status_plural: Statuts de demandes
196 label_issue_status_plural: Statuts de demandes
197 label_issue_status_new: Nouveau statut
197 label_issue_status_new: Nouveau statut
198 label_issue_category: Catégorie de demandes
198 label_issue_category: Catégorie de demandes
199 label_issue_category_plural: Catégories de demandes
199 label_issue_category_plural: Catégories de demandes
200 label_issue_category_new: Nouvelle catégorie
200 label_issue_category_new: Nouvelle catégorie
201 label_custom_field: Champ personnalisé
201 label_custom_field: Champ personnalisé
202 label_custom_field_plural: Champs personnalisés
202 label_custom_field_plural: Champs personnalisés
203 label_custom_field_new: Nouveau champ personnalisé
203 label_custom_field_new: Nouveau champ personnalisé
204 label_enumerations: Listes de valeurs
204 label_enumerations: Listes de valeurs
205 label_enumeration_new: Nouvelle valeur
205 label_enumeration_new: Nouvelle valeur
206 label_information: Information
206 label_information: Information
207 label_information_plural: Informations
207 label_information_plural: Informations
208 label_please_login: Identification
208 label_please_login: Identification
209 label_register: S'enregistrer
209 label_register: S'enregistrer
210 label_password_lost: Mot de passe perdu
210 label_password_lost: Mot de passe perdu
211 label_home: Accueil
211 label_home: Accueil
212 label_my_page: Ma page
212 label_my_page: Ma page
213 label_my_account: Mon compte
213 label_my_account: Mon compte
214 label_my_projects: Mes projets
214 label_my_projects: Mes projets
215 label_administration: Administration
215 label_administration: Administration
216 label_login: Connexion
216 label_login: Connexion
217 label_logout: Déconnexion
217 label_logout: Déconnexion
218 label_help: Aide
218 label_help: Aide
219 label_reported_issues: Demandes soumises
219 label_reported_issues: Demandes soumises
220 label_assigned_to_me_issues: Demandes qui me sont assignées
220 label_assigned_to_me_issues: Demandes qui me sont assignées
221 label_last_login: Dernière connexion
221 label_last_login: Dernière connexion
222 label_last_updates: Dernière mise à jour
222 label_last_updates: Dernière mise à jour
223 label_last_updates_plural: %d dernières mises à jour
223 label_last_updates_plural: %d dernières mises à jour
224 label_registered_on: Inscrit le
224 label_registered_on: Inscrit le
225 label_activity: Activité
225 label_activity: Activité
226 label_new: Nouveau
226 label_new: Nouveau
227 label_logged_as: Connecté en tant que
227 label_logged_as: Connecté en tant que
228 label_environment: Environnement
228 label_environment: Environnement
229 label_authentication: Authentification
229 label_authentication: Authentification
230 label_auth_source: Mode d'authentification
230 label_auth_source: Mode d'authentification
231 label_auth_source_new: Nouveau mode d'authentification
231 label_auth_source_new: Nouveau mode d'authentification
232 label_auth_source_plural: Modes d'authentification
232 label_auth_source_plural: Modes d'authentification
233 label_subproject_plural: Sous-projets
233 label_subproject_plural: Sous-projets
234 label_min_max_length: Longueurs mini - maxi
234 label_min_max_length: Longueurs mini - maxi
235 label_list: Liste
235 label_list: Liste
236 label_date: Date
236 label_date: Date
237 label_integer: Entier
237 label_integer: Entier
238 label_boolean: Booléen
238 label_boolean: Booléen
239 label_string: Texte
239 label_string: Texte
240 label_text: Texte long
240 label_text: Texte long
241 label_attribute: Attribut
241 label_attribute: Attribut
242 label_attribute_plural: Attributs
242 label_attribute_plural: Attributs
243 label_download: %d Téléchargement
243 label_download: %d Téléchargement
244 label_download_plural: %d Téléchargements
244 label_download_plural: %d Téléchargements
245 label_no_data: Aucune donnée à afficher
245 label_no_data: Aucune donnée à afficher
246 label_change_status: Changer le statut
246 label_change_status: Changer le statut
247 label_history: Historique
247 label_history: Historique
248 label_attachment: Fichier
248 label_attachment: Fichier
249 label_attachment_new: Nouveau fichier
249 label_attachment_new: Nouveau fichier
250 label_attachment_delete: Supprimer le fichier
250 label_attachment_delete: Supprimer le fichier
251 label_attachment_plural: Fichiers
251 label_attachment_plural: Fichiers
252 label_report: Rapport
252 label_report: Rapport
253 label_report_plural: Rapports
253 label_report_plural: Rapports
254 label_news: Annonce
254 label_news: Annonce
255 label_news_new: Nouvelle annonce
255 label_news_new: Nouvelle annonce
256 label_news_plural: Annonces
256 label_news_plural: Annonces
257 label_news_latest: Dernières annonces
257 label_news_latest: Dernières annonces
258 label_news_view_all: Voir toutes les annonces
258 label_news_view_all: Voir toutes les annonces
259 label_change_log: Historique
259 label_change_log: Historique
260 label_settings: Configuration
260 label_settings: Configuration
261 label_overview: Aperçu
261 label_overview: Aperçu
262 label_version: Version
262 label_version: Version
263 label_version_new: Nouvelle version
263 label_version_new: Nouvelle version
264 label_version_plural: Versions
264 label_version_plural: Versions
265 label_confirmation: Confirmation
265 label_confirmation: Confirmation
266 label_export_to: Exporter en
266 label_export_to: Exporter en
267 label_read: Lire...
267 label_read: Lire...
268 label_public_projects: Projets publics
268 label_public_projects: Projets publics
269 label_open_issues: ouvert
269 label_open_issues: ouvert
270 label_open_issues_plural: ouverts
270 label_open_issues_plural: ouverts
271 label_closed_issues: fermé
271 label_closed_issues: fermé
272 label_closed_issues_plural: fermés
272 label_closed_issues_plural: fermés
273 label_total: Total
273 label_total: Total
274 label_permissions: Permissions
274 label_permissions: Permissions
275 label_current_status: Statut actuel
275 label_current_status: Statut actuel
276 label_new_statuses_allowed: Nouveaux statuts autorisés
276 label_new_statuses_allowed: Nouveaux statuts autorisés
277 label_all: tous
277 label_all: tous
278 label_none: aucun
278 label_none: aucun
279 label_next: Suivant
279 label_next: Suivant
280 label_previous: Précédent
280 label_previous: Précédent
281 label_used_by: Utilisé par
281 label_used_by: Utilisé par
282 label_details: Détails...
282 label_details: Détails...
283 label_add_note: Ajouter une note
283 label_add_note: Ajouter une note
284 label_per_page: Par page
284 label_per_page: Par page
285 label_calendar: Calendrier
285 label_calendar: Calendrier
286 label_months_from: mois depuis
286 label_months_from: mois depuis
287 label_gantt: Gantt
287 label_gantt: Gantt
288 label_internal: Interne
288 label_internal: Interne
289 label_last_changes: %d derniers changements
289 label_last_changes: %d derniers changements
290 label_change_view_all: Voir tous les changements
290 label_change_view_all: Voir tous les changements
291 label_personalize_page: Personnaliser cette page
291 label_personalize_page: Personnaliser cette page
292 label_comment: Commentaire
292 label_comment: Commentaire
293 label_comment_plural: Commentaires
293 label_comment_plural: Commentaires
294 label_comment_add: Ajouter un commentaire
294 label_comment_add: Ajouter un commentaire
295 label_comment_added: Commentaire ajouté
295 label_comment_added: Commentaire ajouté
296 label_comment_delete: Supprimer les commentaires
296 label_comment_delete: Supprimer les commentaires
297 label_query: Rapport personnalisé
297 label_query: Rapport personnalisé
298 label_query_plural: Rapports personnalisés
298 label_query_plural: Rapports personnalisés
299 label_query_new: Nouveau rapport
299 label_query_new: Nouveau rapport
300 label_filter_add: Ajouter le filtre
300 label_filter_add: Ajouter le filtre
301 label_filter_plural: Filtres
301 label_filter_plural: Filtres
302 label_equals: égal
302 label_equals: égal
303 label_not_equals: différent
303 label_not_equals: différent
304 label_in_less_than: dans moins de
304 label_in_less_than: dans moins de
305 label_in_more_than: dans plus de
305 label_in_more_than: dans plus de
306 label_in: dans
306 label_in: dans
307 label_today: aujourd'hui
307 label_today: aujourd'hui
308 label_less_than_ago: il y a moins de
308 label_less_than_ago: il y a moins de
309 label_more_than_ago: il y a plus de
309 label_more_than_ago: il y a plus de
310 label_ago: il y a
310 label_ago: il y a
311 label_contains: contient
311 label_contains: contient
312 label_not_contains: ne contient pas
312 label_not_contains: ne contient pas
313 label_day_plural: jours
313 label_day_plural: jours
314 label_repository: Dépôt SVN
314 label_repository: Dépôt SVN
315 label_browse: Parcourir
315 label_browse: Parcourir
316 label_modification: %d modification
316 label_modification: %d modification
317 label_modification_plural: %d modifications
317 label_modification_plural: %d modifications
318 label_revision: Révision
318 label_revision: Révision
319 label_revision_plural: Révisions
319 label_revision_plural: Révisions
320 label_added: ajouté
320 label_added: ajouté
321 label_modified: modifié
321 label_modified: modifié
322 label_deleted: supprimé
322 label_deleted: supprimé
323 label_latest_revision: Dernière révision
323 label_latest_revision: Dernière révision
324 label_latest_revision_plural: Dernières révisions
324 label_latest_revision_plural: Dernières révisions
325 label_view_revisions: Voir les révisions
325 label_view_revisions: Voir les révisions
326 label_max_size: Taille maximale
326 label_max_size: Taille maximale
327 label_on: sur
327 label_on: sur
328 label_sort_highest: Remonter en premier
328 label_sort_highest: Remonter en premier
329 label_sort_higher: Remonter
329 label_sort_higher: Remonter
330 label_sort_lower: Descendre
330 label_sort_lower: Descendre
331 label_sort_lowest: Descendre en dernier
331 label_sort_lowest: Descendre en dernier
332 label_roadmap: Roadmap
332 label_roadmap: Roadmap
333 label_roadmap_due_in: Echéance dans
333 label_roadmap_due_in: Echéance dans
334 label_roadmap_no_issues: Aucune demande pour cette version
334 label_roadmap_no_issues: Aucune demande pour cette version
335 label_search: Recherche
335 label_search: Recherche
336 label_result: %d résultat
336 label_result: %d résultat
337 label_result_plural: %d résultats
337 label_result_plural: %d résultats
338 label_all_words: Tous les mots
338 label_all_words: Tous les mots
339 label_wiki: Wiki
339 label_wiki: Wiki
340 label_wiki_edit: Révision wiki
340 label_wiki_edit: Révision wiki
341 label_wiki_edit_plural: Révisions wiki
341 label_wiki_edit_plural: Révisions wiki
342 label_page_index: Index
342 label_page_index: Index
343 label_current_version: Version actuelle
343 label_current_version: Version actuelle
344 label_preview: Prévisualisation
344 label_preview: Prévisualisation
345 label_feed_plural: Flux RSS
345 label_feed_plural: Flux RSS
346 label_changes_details: Détails de tous les changements
346 label_changes_details: Détails de tous les changements
347 label_issue_tracking: Suivi des demandes
347 label_issue_tracking: Suivi des demandes
348 label_spent_time: Temps passé
348 label_spent_time: Temps passé
349 label_f_hour: %.2f heure
349 label_f_hour: %.2f heure
350 label_f_hour_plural: %.2f heures
350 label_f_hour_plural: %.2f heures
351 label_time_tracking: Suivi du temps
351 label_time_tracking: Suivi du temps
352 label_change_plural: Changements
352 label_change_plural: Changements
353 label_statistics: Statistiques
353 label_statistics: Statistiques
354 label_commits_per_month: Commits par mois
354 label_commits_per_month: Commits par mois
355 label_commits_per_author: Commits par auteur
355 label_commits_per_author: Commits par auteur
356 label_view_diff: Voir les différences
356 label_view_diff: Voir les différences
357 label_diff_inline: en ligne
357 label_diff_inline: en ligne
358 label_diff_side_by_side: côte à côte
358 label_diff_side_by_side: côte à côte
359 label_options: Options
359 label_options: Options
360 label_copy_workflow_from: Copier le workflow de
360 label_copy_workflow_from: Copier le workflow de
361 label_permissions_report: Synthèse des permissions
361 label_permissions_report: Synthèse des permissions
362 label_watched_issues: Demandes surveillées
362 label_watched_issues: Demandes surveillées
363 label_related_issues: Demandes liées
363 label_related_issues: Demandes liées
364 label_applied_status: Statut appliqué
364 label_applied_status: Statut appliqué
365
365
366 button_login: Connexion
366 button_login: Connexion
367 button_submit: Soumettre
367 button_submit: Soumettre
368 button_save: Sauvegarder
368 button_save: Sauvegarder
369 button_check_all: Tout cocher
369 button_check_all: Tout cocher
370 button_uncheck_all: Tout décocher
370 button_uncheck_all: Tout décocher
371 button_delete: Supprimer
371 button_delete: Supprimer
372 button_create: Créer
372 button_create: Créer
373 button_test: Tester
373 button_test: Tester
374 button_edit: Modifier
374 button_edit: Modifier
375 button_add: Ajouter
375 button_add: Ajouter
376 button_change: Changer
376 button_change: Changer
377 button_apply: Appliquer
377 button_apply: Appliquer
378 button_clear: Effacer
378 button_clear: Effacer
379 button_lock: Verrouiller
379 button_lock: Verrouiller
380 button_unlock: Déverrouiller
380 button_unlock: Déverrouiller
381 button_download: Télécharger
381 button_download: Télécharger
382 button_list: Lister
382 button_list: Lister
383 button_view: Voir
383 button_view: Voir
384 button_move: Déplacer
384 button_move: Déplacer
385 button_back: Retour
385 button_back: Retour
386 button_cancel: Annuler
386 button_cancel: Annuler
387 button_activate: Activer
387 button_activate: Activer
388 button_sort: Trier
388 button_sort: Trier
389 button_log_time: Saisir temps
389 button_log_time: Saisir temps
390 button_rollback: Revenir à cette version
390 button_rollback: Revenir à cette version
391 button_watch: Surveiller
391 button_watch: Surveiller
392 button_unwatch: Ne plus surveiller
392 button_unwatch: Ne plus surveiller
393
393
394 status_active: actif
394 status_active: actif
395 status_registered: enregistré
395 status_registered: enregistré
396 status_locked: vérouillé
396 status_locked: vérouillé
397
397
398 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
398 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
399 text_regexp_info: ex. ^[A-Z0-9]+$
399 text_regexp_info: ex. ^[A-Z0-9]+$
400 text_min_max_length_info: 0 pour aucune restriction
400 text_min_max_length_info: 0 pour aucune restriction
401 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
401 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
402 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
402 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
403 text_are_you_sure: Etes-vous sûr ?
403 text_are_you_sure: Etes-vous sûr ?
404 text_journal_changed: changé de %s à %s
404 text_journal_changed: changé de %s à %s
405 text_journal_set_to: mis à %s
405 text_journal_set_to: mis à %s
406 text_journal_deleted: supprimé
406 text_journal_deleted: supprimé
407 text_tip_task_begin_day: tâche commençant ce jour
407 text_tip_task_begin_day: tâche commençant ce jour
408 text_tip_task_end_day: tâche finissant ce jour
408 text_tip_task_end_day: tâche finissant ce jour
409 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
409 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
410 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
410 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
411 text_caracters_maximum: %d caractères maximum.
411 text_caracters_maximum: %d caractères maximum.
412 text_length_between: Longueur comprise entre %d et %d caractères.
412 text_length_between: Longueur comprise entre %d et %d caractères.
413 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
413 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
414 text_unallowed_characters: Caractères non autorisés
414 text_unallowed_characters: Caractères non autorisés
415 text_coma_separated: Plusieurs valeurs possibles (séparées par des virgules).
415 text_coma_separated: Plusieurs valeurs possibles (séparées par des virgules).
416 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires SVN
416 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires SVN
417
417
418 default_role_manager: Manager
418 default_role_manager: Manager
419 default_role_developper: Développeur
419 default_role_developper: Développeur
420 default_role_reporter: Rapporteur
420 default_role_reporter: Rapporteur
421 default_tracker_bug: Anomalie
421 default_tracker_bug: Anomalie
422 default_tracker_feature: Evolution
422 default_tracker_feature: Evolution
423 default_tracker_support: Assistance
423 default_tracker_support: Assistance
424 default_issue_status_new: Nouveau
424 default_issue_status_new: Nouveau
425 default_issue_status_assigned: Assigné
425 default_issue_status_assigned: Assigné
426 default_issue_status_resolved: Résolu
426 default_issue_status_resolved: Résolu
427 default_issue_status_feedback: Commentaire
427 default_issue_status_feedback: Commentaire
428 default_issue_status_closed: Fermé
428 default_issue_status_closed: Fermé
429 default_issue_status_rejected: Rejeté
429 default_issue_status_rejected: Rejeté
430 default_doc_category_user: Documentation utilisateur
430 default_doc_category_user: Documentation utilisateur
431 default_doc_category_tech: Documentation technique
431 default_doc_category_tech: Documentation technique
432 default_priority_low: Bas
432 default_priority_low: Bas
433 default_priority_normal: Normal
433 default_priority_normal: Normal
434 default_priority_high: Haut
434 default_priority_high: Haut
435 default_priority_urgent: Urgent
435 default_priority_urgent: Urgent
436 default_priority_immediate: Immédiat
436 default_priority_immediate: Immédiat
437 default_activity_design: Conception
437 default_activity_design: Conception
438 default_activity_development: Développement
438 default_activity_development: Développement
439
439
440 enumeration_issue_priorities: Priorités des demandes
440 enumeration_issue_priorities: Priorités des demandes
441 enumeration_doc_categories: Catégories des documents
441 enumeration_doc_categories: Catégories des documents
442 enumeration_activities: Activités (suivi du temps)
442 enumeration_activities: Activités (suivi du temps)
@@ -1,442 +1,442
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
36
37 general_fmt_age: %d yr
37 general_fmt_age: %d yr
38 general_fmt_age_plural: %d yrs
38 general_fmt_age_plural: %d yrs
39 general_fmt_date: %%d/%%m/%%Y
39 general_fmt_date: %%d/%%m/%%Y
40 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
40 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
43 general_text_No: 'No'
43 general_text_No: 'No'
44 general_text_Yes: 'Si'
44 general_text_Yes: 'Si'
45 general_text_no: 'no'
45 general_text_no: 'no'
46 general_text_yes: 'si'
46 general_text_yes: 'si'
47 general_lang_it: 'Italiano'
47 general_lang_it: 'Italiano'
48 general_csv_separator: ','
48 general_csv_separator: ','
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
51 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
52
52
53 notice_account_updated: L'utenza è stata aggiornata.
53 notice_account_updated: L'utenza è stata aggiornata.
54 notice_account_invalid_creditentials: Nome utente o password non validi.
54 notice_account_invalid_creditentials: Nome utente o password non validi.
55 notice_account_password_updated: La password è stata aggiornata.
55 notice_account_password_updated: La password è stata aggiornata.
56 notice_account_wrong_password: Password errata
56 notice_account_wrong_password: Password errata
57 notice_account_register_done: L'utenza è stata creata.
57 notice_account_register_done: L'utenza è stata creata.
58 notice_account_unknown_email: Utente sconosciuto.
58 notice_account_unknown_email: Utente sconosciuto.
59 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
59 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
60 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
60 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
61 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
61 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
62 notice_successful_create: Creazione effettuata.
62 notice_successful_create: Creazione effettuata.
63 notice_successful_update: Modifica effettuata.
63 notice_successful_update: Modifica effettuata.
64 notice_successful_delete: Eliminazione effettuata.
64 notice_successful_delete: Eliminazione effettuata.
65 notice_successful_connection: Connessione effettuata.
65 notice_successful_connection: Connessione effettuata.
66 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
66 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
67 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
67 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
68 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
68 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
69
69
70 mail_subject_lost_password: Password redMine
70 mail_subject_lost_password: Password redMine
71 mail_subject_register: Attivazione utenza redMine
71 mail_subject_register: Attivazione utenza redMine
72
72
73 gui_validation_error: 1 errore
73 gui_validation_error: 1 errore
74 gui_validation_error_plural: %d errori
74 gui_validation_error_plural: %d errori
75
75
76 field_name: Nome
76 field_name: Nome
77 field_description: Descrizione
77 field_description: Descrizione
78 field_summary: Sommario
78 field_summary: Sommario
79 field_is_required: Richiesto
79 field_is_required: Richiesto
80 field_firstname: Nome
80 field_firstname: Nome
81 field_lastname: Cognome
81 field_lastname: Cognome
82 field_mail: Email
82 field_mail: Email
83 field_filename: File
83 field_filename: File
84 field_filesize: Dimensione
84 field_filesize: Dimensione
85 field_downloads: Download
85 field_downloads: Download
86 field_author: Autore
86 field_author: Autore
87 field_created_on: Creato
87 field_created_on: Creato
88 field_updated_on: Aggiornato
88 field_updated_on: Aggiornato
89 field_field_format: Formato
89 field_field_format: Formato
90 field_is_for_all: Per tutti i progetti
90 field_is_for_all: Per tutti i progetti
91 field_possible_values: Valori possibili
91 field_possible_values: Valori possibili
92 field_regexp: Espressione regolare
92 field_regexp: Espressione regolare
93 field_min_length: Lunghezza minima
93 field_min_length: Lunghezza minima
94 field_max_length: Lunghezza massima
94 field_max_length: Lunghezza massima
95 field_value: Valore
95 field_value: Valore
96 field_category: Categoria
96 field_category: Categoria
97 field_title: Titolo
97 field_title: Titolo
98 field_project: Progetto
98 field_project: Progetto
99 field_issue: Issue
99 field_issue: Issue
100 field_status: Stato
100 field_status: Stato
101 field_notes: Note
101 field_notes: Note
102 field_is_closed: Chiude il contesto
102 field_is_closed: Chiude il contesto
103 field_is_default: Stato predefinito
103 field_is_default: Stato predefinito
104 field_html_color: Colore
104 field_html_color: Colore
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Oggetto
106 field_subject: Oggetto
107 field_due_date: Data ultima
107 field_due_date: Data ultima
108 field_assigned_to: Assegnato a
108 field_assigned_to: Assegnato a
109 field_priority: Priorita'
109 field_priority: Priorita'
110 field_fixed_version: Versione di fix
110 field_fixed_version: Versione di fix
111 field_user: Utente
111 field_user: Utente
112 field_role: Ruolo
112 field_role: Ruolo
113 field_homepage: Homepage
113 field_homepage: Homepage
114 field_is_public: Pubblico
114 field_is_public: Pubblico
115 field_parent: Sottoprogetto di
115 field_parent: Sottoprogetto di
116 field_is_in_chlog: Contesti mostrati nel changelog
116 field_is_in_chlog: Contesti mostrati nel changelog
117 field_is_in_roadmap: Contesti mostrati nel roadmap
117 field_is_in_roadmap: Contesti mostrati nel roadmap
118 field_login: Login
118 field_login: Login
119 field_mail_notification: Notifiche via e-mail
119 field_mail_notification: Notifiche via e-mail
120 field_admin: Amministratore
120 field_admin: Amministratore
121 field_last_login_on: Ultima connessione
121 field_last_login_on: Ultima connessione
122 field_language: Lingua
122 field_language: Lingua
123 field_effective_date: Data
123 field_effective_date: Data
124 field_password: Password
124 field_password: Password
125 field_new_password: Nuova password
125 field_new_password: Nuova password
126 field_password_confirmation: Conferma
126 field_password_confirmation: Conferma
127 field_version: Versione
127 field_version: Versione
128 field_type: Tipo
128 field_type: Tipo
129 field_host: Host
129 field_host: Host
130 field_port: Porta
130 field_port: Porta
131 field_account: Utenza
131 field_account: Utenza
132 field_base_dn: DN base
132 field_base_dn: DN base
133 field_attr_login: Attributo login
133 field_attr_login: Attributo login
134 field_attr_firstname: Attributo nome
134 field_attr_firstname: Attributo nome
135 field_attr_lastname: Attributo cognome
135 field_attr_lastname: Attributo cognome
136 field_attr_mail: Attributo e-mail
136 field_attr_mail: Attributo e-mail
137 field_onthefly: Creazione utenza "al volo"
137 field_onthefly: Creazione utenza "al volo"
138 field_start_date: Inizio
138 field_start_date: Inizio
139 field_done_ratio: %% completo
139 field_done_ratio: %% completo
140 field_auth_source: Modalità di autenticazione
140 field_auth_source: Modalità di autenticazione
141 field_hide_mail: Nascondi il mio indirizzo di e-mail
141 field_hide_mail: Nascondi il mio indirizzo di e-mail
142 field_comment: Commento
142 field_comments: Commento
143 field_url: URL
143 field_url: URL
144 field_start_page: Pagina principale
144 field_start_page: Pagina principale
145 field_subproject: Sottoprogetto
145 field_subproject: Sottoprogetto
146 field_hours: Hours
146 field_hours: Hours
147 field_activity: Activity
147 field_activity: Activity
148 field_spent_on: Data
148 field_spent_on: Data
149 field_identifier: Identifier
149 field_identifier: Identifier
150 field_is_filter: Used as a filter
150 field_is_filter: Used as a filter
151
151
152 setting_app_title: Titolo applicazione
152 setting_app_title: Titolo applicazione
153 setting_app_subtitle: Sottotitolo applicazione
153 setting_app_subtitle: Sottotitolo applicazione
154 setting_welcome_text: Testo di benvenuto
154 setting_welcome_text: Testo di benvenuto
155 setting_default_language: Lingua di default
155 setting_default_language: Lingua di default
156 setting_login_required: Autenticazione richiesta
156 setting_login_required: Autenticazione richiesta
157 setting_self_registration: Auto-registrazione abilitata
157 setting_self_registration: Auto-registrazione abilitata
158 setting_attachment_max_size: Massima dimensione allegati
158 setting_attachment_max_size: Massima dimensione allegati
159 setting_issues_export_limit: Limite esportazione contesti
159 setting_issues_export_limit: Limite esportazione contesti
160 setting_mail_from: Indirizzo sorgente e-mail
160 setting_mail_from: Indirizzo sorgente e-mail
161 setting_host_name: Nome host
161 setting_host_name: Nome host
162 setting_text_formatting: Formattazione testo
162 setting_text_formatting: Formattazione testo
163 setting_wiki_compression: Compressione di storia di Wiki
163 setting_wiki_compression: Compressione di storia di Wiki
164 setting_feeds_limit: Limite contenuti del feed
164 setting_feeds_limit: Limite contenuti del feed
165 setting_autofetch_changesets: Acquisisci automaticamente le commit SVN
165 setting_autofetch_changesets: Acquisisci automaticamente le commit SVN
166 setting_sys_api_enabled: Abilita WS per la gestione del repository
166 setting_sys_api_enabled: Abilita WS per la gestione del repository
167 setting_commit_ref_keywords: Referencing keywords
167 setting_commit_ref_keywords: Referencing keywords
168 setting_commit_fix_keywords: Fixing keywords
168 setting_commit_fix_keywords: Fixing keywords
169
169
170 label_user: Utente
170 label_user: Utente
171 label_user_plural: Utenti
171 label_user_plural: Utenti
172 label_user_new: Nuovo utente
172 label_user_new: Nuovo utente
173 label_project: Progetto
173 label_project: Progetto
174 label_project_new: Nuovo progetto
174 label_project_new: Nuovo progetto
175 label_project_plural: Progetti
175 label_project_plural: Progetti
176 label_project_latest: Ultimi progetti registrati
176 label_project_latest: Ultimi progetti registrati
177 label_issue: Contesto
177 label_issue: Contesto
178 label_issue_new: Nuovo contesto
178 label_issue_new: Nuovo contesto
179 label_issue_plural: Contesti
179 label_issue_plural: Contesti
180 label_issue_view_all: Mostra tutti i contesti
180 label_issue_view_all: Mostra tutti i contesti
181 label_document: Documento
181 label_document: Documento
182 label_document_new: Nuovo documento
182 label_document_new: Nuovo documento
183 label_document_plural: Documenti
183 label_document_plural: Documenti
184 label_role: Ruolo
184 label_role: Ruolo
185 label_role_plural: Ruoli
185 label_role_plural: Ruoli
186 label_role_new: Nuovo ruolo
186 label_role_new: Nuovo ruolo
187 label_role_and_permissions: Ruoli e permessi
187 label_role_and_permissions: Ruoli e permessi
188 label_member: Membro
188 label_member: Membro
189 label_member_new: Nuovo membro
189 label_member_new: Nuovo membro
190 label_member_plural: Membri
190 label_member_plural: Membri
191 label_tracker: Tracker
191 label_tracker: Tracker
192 label_tracker_plural: Tracker
192 label_tracker_plural: Tracker
193 label_tracker_new: Nuovo tracker
193 label_tracker_new: Nuovo tracker
194 label_workflow: Workflow
194 label_workflow: Workflow
195 label_issue_status: Stato contesti
195 label_issue_status: Stato contesti
196 label_issue_status_plural: Stati contesto
196 label_issue_status_plural: Stati contesto
197 label_issue_status_new: Nuovo stato
197 label_issue_status_new: Nuovo stato
198 label_issue_category: Categorie contesti
198 label_issue_category: Categorie contesti
199 label_issue_category_plural: Categorie contesto
199 label_issue_category_plural: Categorie contesto
200 label_issue_category_new: Nuova categoria
200 label_issue_category_new: Nuova categoria
201 label_custom_field: Campo personalizzato
201 label_custom_field: Campo personalizzato
202 label_custom_field_plural: Campi personalizzati
202 label_custom_field_plural: Campi personalizzati
203 label_custom_field_new: Nuovo campo personalizzato
203 label_custom_field_new: Nuovo campo personalizzato
204 label_enumerations: Enumerazioni
204 label_enumerations: Enumerazioni
205 label_enumeration_new: Nuovo valore
205 label_enumeration_new: Nuovo valore
206 label_information: Informazione
206 label_information: Informazione
207 label_information_plural: Informazioni
207 label_information_plural: Informazioni
208 label_please_login: Autenticarsi
208 label_please_login: Autenticarsi
209 label_register: Registrati
209 label_register: Registrati
210 label_password_lost: Password dimenticata
210 label_password_lost: Password dimenticata
211 label_home: Home
211 label_home: Home
212 label_my_page: Pagina personale
212 label_my_page: Pagina personale
213 label_my_account: La mia utenza
213 label_my_account: La mia utenza
214 label_my_projects: I miei progetti
214 label_my_projects: I miei progetti
215 label_administration: Amministrazione
215 label_administration: Amministrazione
216 label_login: Login
216 label_login: Login
217 label_logout: Logout
217 label_logout: Logout
218 label_help: Aiuto
218 label_help: Aiuto
219 label_reported_issues: Contesti segnalati
219 label_reported_issues: Contesti segnalati
220 label_assigned_to_me_issues: I miei contesti
220 label_assigned_to_me_issues: I miei contesti
221 label_last_login: Ultimo collegamento
221 label_last_login: Ultimo collegamento
222 label_last_updates: Ultimo aggiornamento
222 label_last_updates: Ultimo aggiornamento
223 label_last_updates_plural: %d ultimo aggiornamento
223 label_last_updates_plural: %d ultimo aggiornamento
224 label_registered_on: Registrato il
224 label_registered_on: Registrato il
225 label_activity: Attività
225 label_activity: Attività
226 label_new: Nuovo
226 label_new: Nuovo
227 label_logged_as: Autenticato come
227 label_logged_as: Autenticato come
228 label_environment: Ambiente
228 label_environment: Ambiente
229 label_authentication: Autenticazione
229 label_authentication: Autenticazione
230 label_auth_source: Modalità di autenticazione
230 label_auth_source: Modalità di autenticazione
231 label_auth_source_new: Nuova modalità di autenticazione
231 label_auth_source_new: Nuova modalità di autenticazione
232 label_auth_source_plural: Modalità di autenticazione
232 label_auth_source_plural: Modalità di autenticazione
233 label_subproject_plural: Sottoprogetti
233 label_subproject_plural: Sottoprogetti
234 label_min_max_length: Lunghezza minima - massima
234 label_min_max_length: Lunghezza minima - massima
235 label_list: Elenco
235 label_list: Elenco
236 label_date: Data
236 label_date: Data
237 label_integer: Intero
237 label_integer: Intero
238 label_boolean: Booleano
238 label_boolean: Booleano
239 label_string: Testo
239 label_string: Testo
240 label_text: Testo esteso
240 label_text: Testo esteso
241 label_attribute: Attributo
241 label_attribute: Attributo
242 label_attribute_plural: Attributi
242 label_attribute_plural: Attributi
243 label_download: %d Download
243 label_download: %d Download
244 label_download_plural: %d Download
244 label_download_plural: %d Download
245 label_no_data: Nessun dato disponibile
245 label_no_data: Nessun dato disponibile
246 label_change_status: Cambia stato
246 label_change_status: Cambia stato
247 label_history: Cronologia
247 label_history: Cronologia
248 label_attachment: File
248 label_attachment: File
249 label_attachment_new: Nuovo file
249 label_attachment_new: Nuovo file
250 label_attachment_delete: Elimina file
250 label_attachment_delete: Elimina file
251 label_attachment_plural: File
251 label_attachment_plural: File
252 label_report: Report
252 label_report: Report
253 label_report_plural: Report
253 label_report_plural: Report
254 label_news: Notizia
254 label_news: Notizia
255 label_news_new: Aggiungi notizia
255 label_news_new: Aggiungi notizia
256 label_news_plural: Notizie
256 label_news_plural: Notizie
257 label_news_latest: Utime notizie
257 label_news_latest: Utime notizie
258 label_news_view_all: Tutte le notizie
258 label_news_view_all: Tutte le notizie
259 label_change_log: Change log
259 label_change_log: Change log
260 label_settings: Impostazioni
260 label_settings: Impostazioni
261 label_overview: Panoramica
261 label_overview: Panoramica
262 label_version: Versione
262 label_version: Versione
263 label_version_new: Nuova versione
263 label_version_new: Nuova versione
264 label_version_plural: Versioni
264 label_version_plural: Versioni
265 label_confirmation: Conferma
265 label_confirmation: Conferma
266 label_export_to: Esporta su
266 label_export_to: Esporta su
267 label_read: Leggi...
267 label_read: Leggi...
268 label_public_projects: Progetti pubblici
268 label_public_projects: Progetti pubblici
269 label_open_issues: aperta
269 label_open_issues: aperta
270 label_open_issues_plural: aperte
270 label_open_issues_plural: aperte
271 label_closed_issues: chiusa
271 label_closed_issues: chiusa
272 label_closed_issues_plural: chiuse
272 label_closed_issues_plural: chiuse
273 label_total: Totale
273 label_total: Totale
274 label_permissions: Permessi
274 label_permissions: Permessi
275 label_current_status: Stato attuale
275 label_current_status: Stato attuale
276 label_new_statuses_allowed: Nuovi stati possibili
276 label_new_statuses_allowed: Nuovi stati possibili
277 label_all: tutti
277 label_all: tutti
278 label_none: nessuno
278 label_none: nessuno
279 label_next: Successivo
279 label_next: Successivo
280 label_previous: Precedente
280 label_previous: Precedente
281 label_used_by: Usato da
281 label_used_by: Usato da
282 label_details: Dettagli...
282 label_details: Dettagli...
283 label_add_note: Aggiungi una nota
283 label_add_note: Aggiungi una nota
284 label_per_page: Per pagina
284 label_per_page: Per pagina
285 label_calendar: Calendario
285 label_calendar: Calendario
286 label_months_from: mesi da
286 label_months_from: mesi da
287 label_gantt: Gantt
287 label_gantt: Gantt
288 label_internal: Interno
288 label_internal: Interno
289 label_last_changes: ultime %d modifiche
289 label_last_changes: ultime %d modifiche
290 label_change_view_all: Tutte le modifiche
290 label_change_view_all: Tutte le modifiche
291 label_personalize_page: Personalizza la pagina
291 label_personalize_page: Personalizza la pagina
292 label_comment: Commento
292 label_comment: Commento
293 label_comment_plural: Commenti
293 label_comment_plural: Commenti
294 label_comment_add: Aggiungi un commento
294 label_comment_add: Aggiungi un commento
295 label_comment_added: Commento aggiunto
295 label_comment_added: Commento aggiunto
296 label_comment_delete: Elimina commenti
296 label_comment_delete: Elimina commenti
297 label_query: Custom query
297 label_query: Custom query
298 label_query_plural: Query personalizzate
298 label_query_plural: Query personalizzate
299 label_query_new: Nuova query
299 label_query_new: Nuova query
300 label_filter_add: Aggiungi filtro
300 label_filter_add: Aggiungi filtro
301 label_filter_plural: Filtri
301 label_filter_plural: Filtri
302 label_equals: è
302 label_equals: è
303 label_not_equals: non è
303 label_not_equals: non è
304 label_in_less_than: è minore di
304 label_in_less_than: è minore di
305 label_in_more_than: è maggiore di
305 label_in_more_than: è maggiore di
306 label_in: in
306 label_in: in
307 label_today: oggi
307 label_today: oggi
308 label_less_than_ago: meno di giorni fa
308 label_less_than_ago: meno di giorni fa
309 label_more_than_ago: più di giorni fa
309 label_more_than_ago: più di giorni fa
310 label_ago: giorni fa
310 label_ago: giorni fa
311 label_contains: contiene
311 label_contains: contiene
312 label_not_contains: non contiene
312 label_not_contains: non contiene
313 label_day_plural: giorni
313 label_day_plural: giorni
314 label_repository: SVN Repository
314 label_repository: SVN Repository
315 label_browse: Browse
315 label_browse: Browse
316 label_modification: %d modifica
316 label_modification: %d modifica
317 label_modification_plural: %d modifiche
317 label_modification_plural: %d modifiche
318 label_revision: Versione
318 label_revision: Versione
319 label_revision_plural: Versioni
319 label_revision_plural: Versioni
320 label_added: aggiunto
320 label_added: aggiunto
321 label_modified: modificato
321 label_modified: modificato
322 label_deleted: eliminato
322 label_deleted: eliminato
323 label_latest_revision: Ultima versione
323 label_latest_revision: Ultima versione
324 label_latest_revision_plural: Ultime versioni
324 label_latest_revision_plural: Ultime versioni
325 label_view_revisions: Mostra versioni
325 label_view_revisions: Mostra versioni
326 label_max_size: Dimensione massima
326 label_max_size: Dimensione massima
327 label_on: 'on'
327 label_on: 'on'
328 label_sort_highest: Sposta in cima
328 label_sort_highest: Sposta in cima
329 label_sort_higher: Su
329 label_sort_higher: Su
330 label_sort_lower: Giù
330 label_sort_lower: Giù
331 label_sort_lowest: Sposta in fondo
331 label_sort_lowest: Sposta in fondo
332 label_roadmap: Roadmap
332 label_roadmap: Roadmap
333 label_roadmap_due_in: Da ultimare in
333 label_roadmap_due_in: Da ultimare in
334 label_roadmap_no_issues: Nessun contesto per questa versione
334 label_roadmap_no_issues: Nessun contesto per questa versione
335 label_search: Ricerca
335 label_search: Ricerca
336 label_result: %d risultato
336 label_result: %d risultato
337 label_result_plural: %d risultati
337 label_result_plural: %d risultati
338 label_all_words: Tutte le parole
338 label_all_words: Tutte le parole
339 label_wiki: Wiki
339 label_wiki: Wiki
340 label_wiki_edit: Modifica Wiki
340 label_wiki_edit: Modifica Wiki
341 label_wiki_edit_plural: Modfiche wiki
341 label_wiki_edit_plural: Modfiche wiki
342 label_page_index: Indice
342 label_page_index: Indice
343 label_current_version: Versione corrente
343 label_current_version: Versione corrente
344 label_preview: Anteprima
344 label_preview: Anteprima
345 label_feed_plural: Feed
345 label_feed_plural: Feed
346 label_changes_details: Particolari di tutti i cambiamenti
346 label_changes_details: Particolari di tutti i cambiamenti
347 label_issue_tracking: tracking dei contesti
347 label_issue_tracking: tracking dei contesti
348 label_spent_time: Tempo impiegato
348 label_spent_time: Tempo impiegato
349 label_f_hour: %.2f ora
349 label_f_hour: %.2f ora
350 label_f_hour_plural: %.2f ore
350 label_f_hour_plural: %.2f ore
351 label_time_tracking: Tracking del tempo
351 label_time_tracking: Tracking del tempo
352 label_change_plural: Modifiche
352 label_change_plural: Modifiche
353 label_statistics: Statistiche
353 label_statistics: Statistiche
354 label_commits_per_month: Commit per mese
354 label_commits_per_month: Commit per mese
355 label_commits_per_author: Commit per autore
355 label_commits_per_author: Commit per autore
356 label_view_diff: mostra differenze
356 label_view_diff: mostra differenze
357 label_diff_inline: inline
357 label_diff_inline: inline
358 label_diff_side_by_side: side by side
358 label_diff_side_by_side: side by side
359 label_options: Opzioni
359 label_options: Opzioni
360 label_copy_workflow_from: Copia workflow da
360 label_copy_workflow_from: Copia workflow da
361 label_permissions_report: Report permessi
361 label_permissions_report: Report permessi
362 label_watched_issues: Watched issues
362 label_watched_issues: Watched issues
363 label_related_issues: Related issues
363 label_related_issues: Related issues
364 label_applied_status: Applied status
364 label_applied_status: Applied status
365
365
366 button_login: Login
366 button_login: Login
367 button_submit: Invia
367 button_submit: Invia
368 button_save: Salva
368 button_save: Salva
369 button_check_all: Seleziona tutti
369 button_check_all: Seleziona tutti
370 button_uncheck_all: Deseleziona tutti
370 button_uncheck_all: Deseleziona tutti
371 button_delete: Elimina
371 button_delete: Elimina
372 button_create: Crea
372 button_create: Crea
373 button_test: Test
373 button_test: Test
374 button_edit: Modifica
374 button_edit: Modifica
375 button_add: Aggiungi
375 button_add: Aggiungi
376 button_change: Modifica
376 button_change: Modifica
377 button_apply: Applica
377 button_apply: Applica
378 button_clear: Pulisci
378 button_clear: Pulisci
379 button_lock: Blocca
379 button_lock: Blocca
380 button_unlock: Sblocca
380 button_unlock: Sblocca
381 button_download: Scarica
381 button_download: Scarica
382 button_list: Elenca
382 button_list: Elenca
383 button_view: Mostra
383 button_view: Mostra
384 button_move: Sposta
384 button_move: Sposta
385 button_back: Indietro
385 button_back: Indietro
386 button_cancel: Annulla
386 button_cancel: Annulla
387 button_activate: Attiva
387 button_activate: Attiva
388 button_sort: Ordina
388 button_sort: Ordina
389 button_log_time: Registra tempo
389 button_log_time: Registra tempo
390 button_rollback: Ripristina questa versione
390 button_rollback: Ripristina questa versione
391 button_watch: Watch
391 button_watch: Watch
392 button_unwatch: Unwatch
392 button_unwatch: Unwatch
393
393
394 status_active: attivo
394 status_active: attivo
395 status_registered: registrato
395 status_registered: registrato
396 status_locked: bloccato
396 status_locked: bloccato
397
397
398 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
398 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
399 text_regexp_info: eg. ^[A-Z0-9]+$
399 text_regexp_info: eg. ^[A-Z0-9]+$
400 text_min_max_length_info: 0 significa nessuna restrizione
400 text_min_max_length_info: 0 significa nessuna restrizione
401 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
401 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
402 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
402 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
403 text_are_you_sure: Sei sicuro ?
403 text_are_you_sure: Sei sicuro ?
404 text_journal_changed: cambiato da %s a %s
404 text_journal_changed: cambiato da %s a %s
405 text_journal_set_to: impostato a %s
405 text_journal_set_to: impostato a %s
406 text_journal_deleted: cancellato
406 text_journal_deleted: cancellato
407 text_tip_task_begin_day: attività che iniziano in questa giornata
407 text_tip_task_begin_day: attività che iniziano in questa giornata
408 text_tip_task_end_day: attività che terminano in questa giornata
408 text_tip_task_end_day: attività che terminano in questa giornata
409 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
409 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
410 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
410 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
411 text_caracters_maximum: massimo %d caratteri.
411 text_caracters_maximum: massimo %d caratteri.
412 text_length_between: Lunghezza compresa tra %d e %d caratteri.
412 text_length_between: Lunghezza compresa tra %d e %d caratteri.
413 text_tracker_no_workflow: Nessun workflow definito per questo tracker
413 text_tracker_no_workflow: Nessun workflow definito per questo tracker
414 text_unallowed_characters: Unallowed characters
414 text_unallowed_characters: Unallowed characters
415 text_coma_separated: Multiple values allowed (coma separated).
415 text_coma_separated: Multiple values allowed (coma separated).
416 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
416 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
417
417
418 default_role_manager: Manager
418 default_role_manager: Manager
419 default_role_developper: Sviluppatore
419 default_role_developper: Sviluppatore
420 default_role_reporter: Reporter
420 default_role_reporter: Reporter
421 default_tracker_bug: Contesto
421 default_tracker_bug: Contesto
422 default_tracker_feature: Funzione
422 default_tracker_feature: Funzione
423 default_tracker_support: Supporto
423 default_tracker_support: Supporto
424 default_issue_status_new: Nuovo/a
424 default_issue_status_new: Nuovo/a
425 default_issue_status_assigned: Assegnato/a
425 default_issue_status_assigned: Assegnato/a
426 default_issue_status_resolved: Risolto/a
426 default_issue_status_resolved: Risolto/a
427 default_issue_status_feedback: Feedback
427 default_issue_status_feedback: Feedback
428 default_issue_status_closed: Chiuso/a
428 default_issue_status_closed: Chiuso/a
429 default_issue_status_rejected: Rifiutato/a
429 default_issue_status_rejected: Rifiutato/a
430 default_doc_category_user: Documentazione utente
430 default_doc_category_user: Documentazione utente
431 default_doc_category_tech: Documentazione tecnica
431 default_doc_category_tech: Documentazione tecnica
432 default_priority_low: Bassa
432 default_priority_low: Bassa
433 default_priority_normal: Normale
433 default_priority_normal: Normale
434 default_priority_high: Alta
434 default_priority_high: Alta
435 default_priority_urgent: Urgente
435 default_priority_urgent: Urgente
436 default_priority_immediate: Immediata
436 default_priority_immediate: Immediata
437 default_activity_design: Design
437 default_activity_design: Design
438 default_activity_development: Development
438 default_activity_development: Development
439
439
440 enumeration_issue_priorities: Priorità contesti
440 enumeration_issue_priorities: Priorità contesti
441 enumeration_doc_categories: Categorie di documenti
441 enumeration_doc_categories: Categorie di documenti
442 enumeration_activities: Attività (time tracking)
442 enumeration_activities: Attività (time tracking)
@@ -1,443 +1,443
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
37
38 general_fmt_age: %d歳
38 general_fmt_age: %d歳
39 general_fmt_age_plural: %d歳
39 general_fmt_age_plural: %d歳
40 general_fmt_date: %%Y年%%m月%%d日
40 general_fmt_date: %%Y年%%m月%%d日
41 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
41 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
42 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
42 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
43 general_fmt_time: %%H:%%M %%p
43 general_fmt_time: %%H:%%M %%p
44 general_text_No: 'いいえ'
44 general_text_No: 'いいえ'
45 general_text_Yes: 'はい'
45 general_text_Yes: 'はい'
46 general_text_no: 'いいえ'
46 general_text_no: 'いいえ'
47 general_text_yes: 'はい'
47 general_text_yes: 'はい'
48 general_lang_ja: 'Japanese (日本語)'
48 general_lang_ja: 'Japanese (日本語)'
49 general_csv_separator: ','
49 general_csv_separator: ','
50 general_csv_encoding: SJIS
50 general_csv_encoding: SJIS
51 general_pdf_encoding: SJIS
51 general_pdf_encoding: SJIS
52 general_day_names: 日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日
52 general_day_names: 日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日
53
53
54 notice_account_updated: アカウントが更新されました。
54 notice_account_updated: アカウントが更新されました。
55 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
55 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
56 notice_account_password_updated: パスワードが更新されました。
56 notice_account_password_updated: パスワードが更新されました。
57 notice_account_wrong_password: パスワードが違います
57 notice_account_wrong_password: パスワードが違います
58 notice_account_register_done: アカウントが作成されました。
58 notice_account_register_done: アカウントが作成されました。
59 notice_account_unknown_email: ユーザが存在しません。
59 notice_account_unknown_email: ユーザが存在しません。
60 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
60 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
61 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
61 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
62 notice_account_activated: アカウントが有効になりました。ログインできます。
62 notice_account_activated: アカウントが有効になりました。ログインできます。
63 notice_successful_create: 作成しました。
63 notice_successful_create: 作成しました。
64 notice_successful_update: 更新しました。
64 notice_successful_update: 更新しました。
65 notice_successful_delete: 削除しました。
65 notice_successful_delete: 削除しました。
66 notice_successful_connection: 接続しました。
66 notice_successful_connection: 接続しました。
67 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
67 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
68 notice_locking_conflict: 別のユーザがデータを更新しています。
68 notice_locking_conflict: 別のユーザがデータを更新しています。
69 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
69 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
70
70
71 mail_subject_lost_password: redMine パスワード
71 mail_subject_lost_password: redMine パスワード
72 mail_subject_register: redMine アカウントが有効になりました
72 mail_subject_register: redMine アカウントが有効になりました
73
73
74 gui_validation_error: 1 件のエラー
74 gui_validation_error: 1 件のエラー
75 gui_validation_error_plural: %d 件のエラー
75 gui_validation_error_plural: %d 件のエラー
76
76
77 field_name: 名前
77 field_name: 名前
78 field_description: 説明
78 field_description: 説明
79 field_summary: サマリ
79 field_summary: サマリ
80 field_is_required: 必須
80 field_is_required: 必須
81 field_firstname: 名前
81 field_firstname: 名前
82 field_lastname: 苗字
82 field_lastname: 苗字
83 field_mail: メールアドレス
83 field_mail: メールアドレス
84 field_filename: ファイル
84 field_filename: ファイル
85 field_filesize: サイズ
85 field_filesize: サイズ
86 field_downloads: ダウンロード
86 field_downloads: ダウンロード
87 field_author: 起票者
87 field_author: 起票者
88 field_created_on: 作成日
88 field_created_on: 作成日
89 field_updated_on: 更新日
89 field_updated_on: 更新日
90 field_field_format: 書式
90 field_field_format: 書式
91 field_is_for_all: 全プロジェクト向け
91 field_is_for_all: 全プロジェクト向け
92 field_possible_values: 選択肢
92 field_possible_values: 選択肢
93 field_regexp: 正規表現
93 field_regexp: 正規表現
94 field_min_length: 最小値
94 field_min_length: 最小値
95 field_max_length: 最大値
95 field_max_length: 最大値
96 field_value:
96 field_value:
97 field_category: カテゴリ
97 field_category: カテゴリ
98 field_title: タイトル
98 field_title: タイトル
99 field_project: プロジェクト
99 field_project: プロジェクト
100 field_issue: 問題
100 field_issue: 問題
101 field_status: ステータス
101 field_status: ステータス
102 field_notes: 注記
102 field_notes: 注記
103 field_is_closed: 終了した問題
103 field_is_closed: 終了した問題
104 field_is_default: デフォルトのステータス
104 field_is_default: デフォルトのステータス
105 field_html_color:
105 field_html_color:
106 field_tracker: トラッカー
106 field_tracker: トラッカー
107 field_subject: 題名
107 field_subject: 題名
108 field_due_date: 期限日
108 field_due_date: 期限日
109 field_assigned_to: 担当者
109 field_assigned_to: 担当者
110 field_priority: 優先度
110 field_priority: 優先度
111 field_fixed_version: 修正されたバージョン
111 field_fixed_version: 修正されたバージョン
112 field_user: ユーザ
112 field_user: ユーザ
113 field_role: 役割
113 field_role: 役割
114 field_homepage: ホームページ
114 field_homepage: ホームページ
115 field_is_public: 公開
115 field_is_public: 公開
116 field_parent: 親プロジェクト名
116 field_parent: 親プロジェクト名
117 field_is_in_chlog: 変更記録に表示されている問題
117 field_is_in_chlog: 変更記録に表示されている問題
118 field_is_in_roadmap: ロードマップに表示されている問題
118 field_is_in_roadmap: ロードマップに表示されている問題
119 field_login: ログイン
119 field_login: ログイン
120 field_mail_notification: メール通知
120 field_mail_notification: メール通知
121 field_admin: 管理者
121 field_admin: 管理者
122 field_last_login_on: 最終接続日
122 field_last_login_on: 最終接続日
123 field_language: 言語
123 field_language: 言語
124 field_effective_date: 日付
124 field_effective_date: 日付
125 field_password: パスワード
125 field_password: パスワード
126 field_new_password: 新しいパスワード
126 field_new_password: 新しいパスワード
127 field_password_confirmation: パスワードの確認
127 field_password_confirmation: パスワードの確認
128 field_version: バージョン
128 field_version: バージョン
129 field_type: タイプ
129 field_type: タイプ
130 field_host: ホスト
130 field_host: ホスト
131 field_port: ポート
131 field_port: ポート
132 field_account: アカウント
132 field_account: アカウント
133 field_base_dn: Base DN
133 field_base_dn: Base DN
134 field_attr_login: ログイン名属性
134 field_attr_login: ログイン名属性
135 field_attr_firstname: 名前属性
135 field_attr_firstname: 名前属性
136 field_attr_lastname: 苗字属性
136 field_attr_lastname: 苗字属性
137 field_attr_mail: メール属性
137 field_attr_mail: メール属性
138 field_onthefly: あわせてユーザを作成
138 field_onthefly: あわせてユーザを作成
139 field_start_date: 開始日
139 field_start_date: 開始日
140 field_done_ratio: 進捗 %%
140 field_done_ratio: 進捗 %%
141 field_auth_source: 認証モード
141 field_auth_source: 認証モード
142 field_hide_mail: メールアドレスを隠す
142 field_hide_mail: メールアドレスを隠す
143 field_comment: コメント
143 field_comments: コメント
144 field_url: URL
144 field_url: URL
145 field_start_page: メインページ
145 field_start_page: メインページ
146 field_subproject: サブプロジェクト
146 field_subproject: サブプロジェクト
147 field_hours: 時間
147 field_hours: 時間
148 field_activity: 活動
148 field_activity: 活動
149 field_spent_on: 日付
149 field_spent_on: 日付
150 field_identifier: 識別子
150 field_identifier: 識別子
151 field_is_filter: Used as a filter
151 field_is_filter: Used as a filter
152
152
153 setting_app_title: アプリケーションのタイトル
153 setting_app_title: アプリケーションのタイトル
154 setting_app_subtitle: アプリケーションのサブタイトル
154 setting_app_subtitle: アプリケーションのサブタイトル
155 setting_welcome_text: ウェルカムメッセージ
155 setting_welcome_text: ウェルカムメッセージ
156 setting_default_language: 既定の言語
156 setting_default_language: 既定の言語
157 setting_login_required: 認証が必要
157 setting_login_required: 認証が必要
158 setting_self_registration: ユーザは自分で登録できる
158 setting_self_registration: ユーザは自分で登録できる
159 setting_attachment_max_size: 添付の最大サイズ
159 setting_attachment_max_size: 添付の最大サイズ
160 setting_issues_export_limit: 出力する問題数の上限
160 setting_issues_export_limit: 出力する問題数の上限
161 setting_mail_from: 送信元メールアドレス
161 setting_mail_from: 送信元メールアドレス
162 setting_host_name: ホスト名
162 setting_host_name: ホスト名
163 setting_text_formatting: テキストの書式
163 setting_text_formatting: テキストの書式
164 setting_wiki_compression: Wiki履歴を圧縮する
164 setting_wiki_compression: Wiki履歴を圧縮する
165 setting_feeds_limit: フィード内容の上限
165 setting_feeds_limit: フィード内容の上限
166 setting_autofetch_changesets: SVNコミットを自動取得する
166 setting_autofetch_changesets: SVNコミットを自動取得する
167 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
167 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
168 setting_commit_ref_keywords: Referencing keywords
168 setting_commit_ref_keywords: Referencing keywords
169 setting_commit_fix_keywords: Fixing keywords
169 setting_commit_fix_keywords: Fixing keywords
170
170
171 label_user: ユーザ
171 label_user: ユーザ
172 label_user_plural: ユーザ
172 label_user_plural: ユーザ
173 label_user_new: 新しいユーザ
173 label_user_new: 新しいユーザ
174 label_project: プロジェクト
174 label_project: プロジェクト
175 label_project_new: 新しいプロジェクト
175 label_project_new: 新しいプロジェクト
176 label_project_plural: プロジェクト
176 label_project_plural: プロジェクト
177 label_project_latest: 最近のプロジェクト
177 label_project_latest: 最近のプロジェクト
178 label_issue: 問題
178 label_issue: 問題
179 label_issue_new: 新しい問題
179 label_issue_new: 新しい問題
180 label_issue_plural: 問題
180 label_issue_plural: 問題
181 label_issue_view_all: 問題を全て見る
181 label_issue_view_all: 問題を全て見る
182 label_document: 文書
182 label_document: 文書
183 label_document_new: 新しい文書
183 label_document_new: 新しい文書
184 label_document_plural: 文書
184 label_document_plural: 文書
185 label_role: ロール
185 label_role: ロール
186 label_role_plural: ロール
186 label_role_plural: ロール
187 label_role_new: 新しいロール
187 label_role_new: 新しいロール
188 label_role_and_permissions: ロールと権限
188 label_role_and_permissions: ロールと権限
189 label_member: メンバー
189 label_member: メンバー
190 label_member_new: 新しいメンバー
190 label_member_new: 新しいメンバー
191 label_member_plural: メンバー
191 label_member_plural: メンバー
192 label_tracker: トラッカー
192 label_tracker: トラッカー
193 label_tracker_plural: トラッカー
193 label_tracker_plural: トラッカー
194 label_tracker_new: 新しいトラッカーを作成
194 label_tracker_new: 新しいトラッカーを作成
195 label_workflow: ワークフロー
195 label_workflow: ワークフロー
196 label_issue_status: 問題のステータス
196 label_issue_status: 問題のステータス
197 label_issue_status_plural: 問題のステータス
197 label_issue_status_plural: 問題のステータス
198 label_issue_status_new: 新しいステータス
198 label_issue_status_new: 新しいステータス
199 label_issue_category: 問題のカテゴリ
199 label_issue_category: 問題のカテゴリ
200 label_issue_category_plural: 問題のカテゴリ
200 label_issue_category_plural: 問題のカテゴリ
201 label_issue_category_new: 新しいカテゴリ
201 label_issue_category_new: 新しいカテゴリ
202 label_custom_field: カスタムフィールド
202 label_custom_field: カスタムフィールド
203 label_custom_field_plural: カスタムフィールド
203 label_custom_field_plural: カスタムフィールド
204 label_custom_field_new: 新しいカスタムフィールドを作成
204 label_custom_field_new: 新しいカスタムフィールドを作成
205 label_enumerations: 列挙項目
205 label_enumerations: 列挙項目
206 label_enumeration_new: 新しい値
206 label_enumeration_new: 新しい値
207 label_information: 情報
207 label_information: 情報
208 label_information_plural: 情報
208 label_information_plural: 情報
209 label_please_login: ログインしてください
209 label_please_login: ログインしてください
210 label_register: 登録する
210 label_register: 登録する
211 label_password_lost: パスワードの再発行
211 label_password_lost: パスワードの再発行
212 label_home: ホーム
212 label_home: ホーム
213 label_my_page: マイページ
213 label_my_page: マイページ
214 label_my_account: マイアカウント
214 label_my_account: マイアカウント
215 label_my_projects: マイプロジェクト
215 label_my_projects: マイプロジェクト
216 label_administration: 管理
216 label_administration: 管理
217 label_login: ログイン
217 label_login: ログイン
218 label_logout: ログアウト
218 label_logout: ログアウト
219 label_help: ヘルプ
219 label_help: ヘルプ
220 label_reported_issues: 報告した問題
220 label_reported_issues: 報告した問題
221 label_assigned_to_me_issues: 担当している問題
221 label_assigned_to_me_issues: 担当している問題
222 label_last_login: 最近の接続
222 label_last_login: 最近の接続
223 label_last_updates: 最近の更新 1 件
223 label_last_updates: 最近の更新 1 件
224 label_last_updates_plural: 最近の更新 %d 件
224 label_last_updates_plural: 最近の更新 %d 件
225 label_registered_on: 登録日
225 label_registered_on: 登録日
226 label_activity: 活動
226 label_activity: 活動
227 label_new: 新しく作成
227 label_new: 新しく作成
228 label_logged_as: ログイン中:
228 label_logged_as: ログイン中:
229 label_environment: 環境
229 label_environment: 環境
230 label_authentication: 認証
230 label_authentication: 認証
231 label_auth_source: 認証モード
231 label_auth_source: 認証モード
232 label_auth_source_new: 新しい認証モード
232 label_auth_source_new: 新しい認証モード
233 label_auth_source_plural: 認証モード
233 label_auth_source_plural: 認証モード
234 label_subproject_plural: サブプロジェクト
234 label_subproject_plural: サブプロジェクト
235 label_min_max_length: 最小値 - 最大値の長さ
235 label_min_max_length: 最小値 - 最大値の長さ
236 label_list: リストから選択
236 label_list: リストから選択
237 label_date: 日付
237 label_date: 日付
238 label_integer: 整数
238 label_integer: 整数
239 label_boolean: 真偽値
239 label_boolean: 真偽値
240 label_string: テキスト
240 label_string: テキスト
241 label_text: 長いテキスト
241 label_text: 長いテキスト
242 label_attribute: 属性
242 label_attribute: 属性
243 label_attribute_plural: 属性
243 label_attribute_plural: 属性
244 label_download: %d ダウンロード
244 label_download: %d ダウンロード
245 label_download_plural: %d ダウンロード
245 label_download_plural: %d ダウンロード
246 label_no_data: 表示するデータがありません
246 label_no_data: 表示するデータがありません
247 label_change_status: ステータスの変更
247 label_change_status: ステータスの変更
248 label_history: 履歴
248 label_history: 履歴
249 label_attachment: ファイル
249 label_attachment: ファイル
250 label_attachment_new: 新しいファイル
250 label_attachment_new: 新しいファイル
251 label_attachment_delete: ファイルを削除
251 label_attachment_delete: ファイルを削除
252 label_attachment_plural: ファイル
252 label_attachment_plural: ファイル
253 label_report: レポート
253 label_report: レポート
254 label_report_plural: レポート
254 label_report_plural: レポート
255 label_news: ニュース
255 label_news: ニュース
256 label_news_new: ニュースを追加
256 label_news_new: ニュースを追加
257 label_news_plural: ニュース
257 label_news_plural: ニュース
258 label_news_latest: 最新ニュース
258 label_news_latest: 最新ニュース
259 label_news_view_all: 全てのニュースを見る
259 label_news_view_all: 全てのニュースを見る
260 label_change_log: 変更記録
260 label_change_log: 変更記録
261 label_settings: 設定
261 label_settings: 設定
262 label_overview: 概要
262 label_overview: 概要
263 label_version: バージョン
263 label_version: バージョン
264 label_version_new: 新しいバージョン
264 label_version_new: 新しいバージョン
265 label_version_plural: バージョン
265 label_version_plural: バージョン
266 label_confirmation: 確認
266 label_confirmation: 確認
267 label_export_to: 他の形式に出力
267 label_export_to: 他の形式に出力
268 label_read: 読む...
268 label_read: 読む...
269 label_public_projects: 公開プロジェクト
269 label_public_projects: 公開プロジェクト
270 label_open_issues: 未完了
270 label_open_issues: 未完了
271 label_open_issues_plural: 未完了
271 label_open_issues_plural: 未完了
272 label_closed_issues: 終了
272 label_closed_issues: 終了
273 label_closed_issues_plural: 終了
273 label_closed_issues_plural: 終了
274 label_total: 合計
274 label_total: 合計
275 label_permissions: 権限
275 label_permissions: 権限
276 label_current_status: 現在のステータス
276 label_current_status: 現在のステータス
277 label_new_statuses_allowed: ステータスの移行先
277 label_new_statuses_allowed: ステータスの移行先
278 label_all: 全て
278 label_all: 全て
279 label_none: なし
279 label_none: なし
280 label_next:
280 label_next:
281 label_previous:
281 label_previous:
282 label_used_by: 使用中
282 label_used_by: 使用中
283 label_details: 詳細...
283 label_details: 詳細...
284 label_add_note: 注記を追加
284 label_add_note: 注記を追加
285 label_per_page: ページ毎
285 label_per_page: ページ毎
286 label_calendar: カレンダー
286 label_calendar: カレンダー
287 label_months_from: ヶ月 from
287 label_months_from: ヶ月 from
288 label_gantt: ガントチャート
288 label_gantt: ガントチャート
289 label_internal: Internal
289 label_internal: Internal
290 label_last_changes: 最新の変更 %d 件
290 label_last_changes: 最新の変更 %d 件
291 label_change_view_all: 全ての変更を見る
291 label_change_view_all: 全ての変更を見る
292 label_personalize_page: このページをパーソナライズする
292 label_personalize_page: このページをパーソナライズする
293 label_comment: コメント
293 label_comment: コメント
294 label_comment_plural: コメント
294 label_comment_plural: コメント
295 label_comment_add: コメント追加
295 label_comment_add: コメント追加
296 label_comment_added: 追加されたコメント
296 label_comment_added: 追加されたコメント
297 label_comment_delete: コメント削除
297 label_comment_delete: コメント削除
298 label_query: カスタムクエリ
298 label_query: カスタムクエリ
299 label_query_plural: カスタムクエリ
299 label_query_plural: カスタムクエリ
300 label_query_new: 新しいクエリ
300 label_query_new: 新しいクエリ
301 label_filter_add: フィルタ追加
301 label_filter_add: フィルタ追加
302 label_filter_plural: フィルタ
302 label_filter_plural: フィルタ
303 label_equals: 等しい
303 label_equals: 等しい
304 label_not_equals: 等しくない
304 label_not_equals: 等しくない
305 label_in_less_than: 残日数がこれより多い
305 label_in_less_than: 残日数がこれより多い
306 label_in_more_than: 残日数がこれより少ない
306 label_in_more_than: 残日数がこれより少ない
307 label_in: 残日数
307 label_in: 残日数
308 label_today: 今日
308 label_today: 今日
309 label_less_than_ago: 経過日数がこれより少ない
309 label_less_than_ago: 経過日数がこれより少ない
310 label_more_than_ago: 経過日数がこれより多い
310 label_more_than_ago: 経過日数がこれより多い
311 label_ago: 日前
311 label_ago: 日前
312 label_contains: 含む
312 label_contains: 含む
313 label_not_contains: 含まない
313 label_not_contains: 含まない
314 label_day_plural:
314 label_day_plural:
315 label_repository: SVNリポジトリ
315 label_repository: SVNリポジトリ
316 label_browse: ブラウズ
316 label_browse: ブラウズ
317 label_modification: %d 点の変更
317 label_modification: %d 点の変更
318 label_modification_plural: %d 点の変更
318 label_modification_plural: %d 点の変更
319 label_revision: リビジョン
319 label_revision: リビジョン
320 label_revision_plural: リビジョン
320 label_revision_plural: リビジョン
321 label_added: 追加
321 label_added: 追加
322 label_modified: 変更
322 label_modified: 変更
323 label_deleted: 削除
323 label_deleted: 削除
324 label_latest_revision: 最新リビジョン
324 label_latest_revision: 最新リビジョン
325 label_latest_revision_plural: 最新リビジョン
325 label_latest_revision_plural: 最新リビジョン
326 label_view_revisions: リビジョンを見る
326 label_view_revisions: リビジョンを見る
327 label_max_size: 最大サイズ
327 label_max_size: 最大サイズ
328 label_on:
328 label_on:
329 label_sort_highest: 一番上へ
329 label_sort_highest: 一番上へ
330 label_sort_higher: 上へ
330 label_sort_higher: 上へ
331 label_sort_lower: 下へ
331 label_sort_lower: 下へ
332 label_sort_lowest: 一番下へ
332 label_sort_lowest: 一番下へ
333 label_roadmap: ロードマップ
333 label_roadmap: ロードマップ
334 label_roadmap_due_in: 期日まで
334 label_roadmap_due_in: 期日まで
335 label_roadmap_no_issues: このバージョンに向けての問題はありません
335 label_roadmap_no_issues: このバージョンに向けての問題はありません
336 label_search: 検索
336 label_search: 検索
337 label_result: %d 件の結果
337 label_result: %d 件の結果
338 label_result_plural: %d 件の結果
338 label_result_plural: %d 件の結果
339 label_all_words: すべての単語
339 label_all_words: すべての単語
340 label_wiki: Wiki
340 label_wiki: Wiki
341 label_wiki_edit: Wiki編集
341 label_wiki_edit: Wiki編集
342 label_wiki_edit_plural: Wiki編集
342 label_wiki_edit_plural: Wiki編集
343 label_page_index: 索引
343 label_page_index: 索引
344 label_current_version: 最新版
344 label_current_version: 最新版
345 label_preview: プレビュー
345 label_preview: プレビュー
346 label_feed_plural: フィード
346 label_feed_plural: フィード
347 label_changes_details: 全変更の詳細
347 label_changes_details: 全変更の詳細
348 label_issue_tracking: 問題トラッキング
348 label_issue_tracking: 問題トラッキング
349 label_spent_time: 経過時間
349 label_spent_time: 経過時間
350 label_f_hour: %.2f 時間
350 label_f_hour: %.2f 時間
351 label_f_hour_plural: %.2f 時間
351 label_f_hour_plural: %.2f 時間
352 label_time_tracking: 時間トラッキング
352 label_time_tracking: 時間トラッキング
353 label_change_plural: 変更
353 label_change_plural: 変更
354 label_statistics: 統計
354 label_statistics: 統計
355 label_commits_per_month: 月別のコミット
355 label_commits_per_month: 月別のコミット
356 label_commits_per_author: 起票者別のコミット
356 label_commits_per_author: 起票者別のコミット
357 label_view_diff: 差分を見る
357 label_view_diff: 差分を見る
358 label_diff_inline: インライン
358 label_diff_inline: インライン
359 label_diff_side_by_side: 横に並べる
359 label_diff_side_by_side: 横に並べる
360 label_options: オプション
360 label_options: オプション
361 label_copy_workflow_from: ワークフローをここからコピー
361 label_copy_workflow_from: ワークフローをここからコピー
362 label_permissions_report: 権限レポート
362 label_permissions_report: 権限レポート
363 label_watched_issues: Watched issues
363 label_watched_issues: Watched issues
364 label_related_issues: Related issues
364 label_related_issues: Related issues
365 label_applied_status: Applied status
365 label_applied_status: Applied status
366
366
367 button_login: ログイン
367 button_login: ログイン
368 button_submit: 変更
368 button_submit: 変更
369 button_save: 保存
369 button_save: 保存
370 button_check_all: チェックを全部つける
370 button_check_all: チェックを全部つける
371 button_uncheck_all: チェックを全部外す
371 button_uncheck_all: チェックを全部外す
372 button_delete: 削除
372 button_delete: 削除
373 button_create: 作成
373 button_create: 作成
374 button_test: テスト
374 button_test: テスト
375 button_edit: 編集
375 button_edit: 編集
376 button_add: 追加
376 button_add: 追加
377 button_change: 変更
377 button_change: 変更
378 button_apply: 適用
378 button_apply: 適用
379 button_clear: クリア
379 button_clear: クリア
380 button_lock: ロック
380 button_lock: ロック
381 button_unlock: アンロック
381 button_unlock: アンロック
382 button_download: ダウンロード
382 button_download: ダウンロード
383 button_list: 一覧
383 button_list: 一覧
384 button_view: 見る
384 button_view: 見る
385 button_move: 移動
385 button_move: 移動
386 button_back: 戻る
386 button_back: 戻る
387 button_cancel: キャンセル
387 button_cancel: キャンセル
388 button_activate: 有効にする
388 button_activate: 有効にする
389 button_sort: ソート
389 button_sort: ソート
390 button_log_time: 時間を記録
390 button_log_time: 時間を記録
391 button_rollback: このバージョンにロールバック
391 button_rollback: このバージョンにロールバック
392 button_watch: Watch
392 button_watch: Watch
393 button_unwatch: Unwatch
393 button_unwatch: Unwatch
394
394
395 status_active: 有効
395 status_active: 有効
396 status_registered: 登録
396 status_registered: 登録
397 status_locked: ロック
397 status_locked: ロック
398
398
399 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
399 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
400 text_regexp_info: 例) ^[A-Z0-9]+$
400 text_regexp_info: 例) ^[A-Z0-9]+$
401 text_min_max_length_info: 0だと無制限になります
401 text_min_max_length_info: 0だと無制限になります
402 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
402 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
403 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
403 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
404 text_are_you_sure: 本当に?
404 text_are_you_sure: 本当に?
405 text_journal_changed: %s から %s への変更
405 text_journal_changed: %s から %s への変更
406 text_journal_set_to: %s にセット
406 text_journal_set_to: %s にセット
407 text_journal_deleted: 削除
407 text_journal_deleted: 削除
408 text_tip_task_begin_day: この日に開始するタスク
408 text_tip_task_begin_day: この日に開始するタスク
409 text_tip_task_end_day: この日に終了するタスク
409 text_tip_task_end_day: この日に終了するタスク
410 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
410 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
411 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
411 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
412 text_caracters_maximum: 最大 %d 文字です。
412 text_caracters_maximum: 最大 %d 文字です。
413 text_length_between: 長さは %d から %d 文字までです。
413 text_length_between: 長さは %d から %d 文字までです。
414 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
414 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
415 text_unallowed_characters: Unallowed characters
415 text_unallowed_characters: Unallowed characters
416 text_coma_separated: Multiple values allowed (coma separated).
416 text_coma_separated: Multiple values allowed (coma separated).
417 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
417 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
418
418
419 default_role_manager: 管理者
419 default_role_manager: 管理者
420 default_role_developper: 開発者
420 default_role_developper: 開発者
421 default_role_reporter: 報告者
421 default_role_reporter: 報告者
422 default_tracker_bug: バグ
422 default_tracker_bug: バグ
423 default_tracker_feature: 機能
423 default_tracker_feature: 機能
424 default_tracker_support: サポート
424 default_tracker_support: サポート
425 default_issue_status_new: 新規
425 default_issue_status_new: 新規
426 default_issue_status_assigned: 担当
426 default_issue_status_assigned: 担当
427 default_issue_status_resolved: 解決
427 default_issue_status_resolved: 解決
428 default_issue_status_feedback: フィードバック
428 default_issue_status_feedback: フィードバック
429 default_issue_status_closed: 終了
429 default_issue_status_closed: 終了
430 default_issue_status_rejected: 却下
430 default_issue_status_rejected: 却下
431 default_doc_category_user: ユーザ文書
431 default_doc_category_user: ユーザ文書
432 default_doc_category_tech: 技術文書
432 default_doc_category_tech: 技術文書
433 default_priority_low: 低め
433 default_priority_low: 低め
434 default_priority_normal: 通常
434 default_priority_normal: 通常
435 default_priority_high: 高め
435 default_priority_high: 高め
436 default_priority_urgent: 急いで
436 default_priority_urgent: 急いで
437 default_priority_immediate: 今すぐ
437 default_priority_immediate: 今すぐ
438 default_activity_design: デザイン作業
438 default_activity_design: デザイン作業
439 default_activity_development: 開発作業
439 default_activity_development: 開発作業
440
440
441 enumeration_issue_priorities: 問題の優先度
441 enumeration_issue_priorities: 問題の優先度
442 enumeration_doc_categories: 文書カテゴリ
442 enumeration_doc_categories: 文書カテゴリ
443 enumeration_activities: 作業分類 (時間トラッキング)
443 enumeration_activities: 作業分類 (時間トラッキング)
@@ -1,442 +1,442
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
36
37 general_fmt_age: %d yr
37 general_fmt_age: %d yr
38 general_fmt_age_plural: %d yrs
38 general_fmt_age_plural: %d yrs
39 general_fmt_date: %%m/%%d/%%Y
39 general_fmt_date: %%m/%%d/%%Y
40 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
40 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
43 general_text_No: 'Nao'
43 general_text_No: 'Nao'
44 general_text_Yes: 'Sim'
44 general_text_Yes: 'Sim'
45 general_text_no: 'nao'
45 general_text_no: 'nao'
46 general_text_yes: 'sim'
46 general_text_yes: 'sim'
47 general_lang_pt: 'Portugues'
47 general_lang_pt: 'Portugues'
48 general_csv_separator: ','
48 general_csv_separator: ','
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
51 general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
52
52
53 notice_account_updated: Conta foi alterada com sucesso.
53 notice_account_updated: Conta foi alterada com sucesso.
54 notice_account_invalid_creditentials: Usuario ou senha invalido.
54 notice_account_invalid_creditentials: Usuario ou senha invalido.
55 notice_account_password_updated: Senha foi alterada com sucesso.
55 notice_account_password_updated: Senha foi alterada com sucesso.
56 notice_account_wrong_password: Senha errada.
56 notice_account_wrong_password: Senha errada.
57 notice_account_register_done: Conta foi criada com sucesso.
57 notice_account_register_done: Conta foi criada com sucesso.
58 notice_account_unknown_email: Usuario desconhecido.
58 notice_account_unknown_email: Usuario desconhecido.
59 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
59 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
60 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
60 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
61 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
61 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
62 notice_successful_create: Criado com sucesso.
62 notice_successful_create: Criado com sucesso.
63 notice_successful_update: Alterado com sucesso.
63 notice_successful_update: Alterado com sucesso.
64 notice_successful_delete: Apagado com sucesso.
64 notice_successful_delete: Apagado com sucesso.
65 notice_successful_connection: Conectado com sucesso.
65 notice_successful_connection: Conectado com sucesso.
66 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
66 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
67 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
67 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
68 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
68 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
69
69
70 mail_subject_lost_password: Sua senha do redMine.
70 mail_subject_lost_password: Sua senha do redMine.
71 mail_subject_register: Ativacao de conta do redMine.
71 mail_subject_register: Ativacao de conta do redMine.
72
72
73 gui_validation_error: 1 erro
73 gui_validation_error: 1 erro
74 gui_validation_error_plural: %d erros
74 gui_validation_error_plural: %d erros
75
75
76 field_name: Nome
76 field_name: Nome
77 field_description: Descricao
77 field_description: Descricao
78 field_summary: Sumario
78 field_summary: Sumario
79 field_is_required: Obrigatorio
79 field_is_required: Obrigatorio
80 field_firstname: Primeiro nome
80 field_firstname: Primeiro nome
81 field_lastname: Ultimo nome
81 field_lastname: Ultimo nome
82 field_mail: Email
82 field_mail: Email
83 field_filename: Arquivo
83 field_filename: Arquivo
84 field_filesize: Tamanho
84 field_filesize: Tamanho
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Autor
86 field_author: Autor
87 field_created_on: Criado
87 field_created_on: Criado
88 field_updated_on: Alterado
88 field_updated_on: Alterado
89 field_field_format: Formato
89 field_field_format: Formato
90 field_is_for_all: Para todos os projetos
90 field_is_for_all: Para todos os projetos
91 field_possible_values: Possiveis valores
91 field_possible_values: Possiveis valores
92 field_regexp: Expressao regular
92 field_regexp: Expressao regular
93 field_min_length: Tamanho minimo
93 field_min_length: Tamanho minimo
94 field_max_length: Tamanho maximo
94 field_max_length: Tamanho maximo
95 field_value: Valor
95 field_value: Valor
96 field_category: Categoria
96 field_category: Categoria
97 field_title: Titulo
97 field_title: Titulo
98 field_project: Projeto
98 field_project: Projeto
99 field_issue: Tarefa
99 field_issue: Tarefa
100 field_status: Status
100 field_status: Status
101 field_notes: Notas
101 field_notes: Notas
102 field_is_closed: Tarefa fechada
102 field_is_closed: Tarefa fechada
103 field_is_default: Status padrao
103 field_is_default: Status padrao
104 field_html_color: Cor
104 field_html_color: Cor
105 field_tracker: Tipo
105 field_tracker: Tipo
106 field_subject: Titulo
106 field_subject: Titulo
107 field_due_date: Data devida
107 field_due_date: Data devida
108 field_assigned_to: Atribuido para
108 field_assigned_to: Atribuido para
109 field_priority: Prioridade
109 field_priority: Prioridade
110 field_fixed_version: Versao corrigida
110 field_fixed_version: Versao corrigida
111 field_user: Usuario
111 field_user: Usuario
112 field_role: Regra
112 field_role: Regra
113 field_homepage: Pagina inicial
113 field_homepage: Pagina inicial
114 field_is_public: Publico
114 field_is_public: Publico
115 field_parent: Sub-projeto de
115 field_parent: Sub-projeto de
116 field_is_in_chlog: Tarefas mostradas no changelog
116 field_is_in_chlog: Tarefas mostradas no changelog
117 field_is_in_roadmap: Tarefas mostradas no roadmap
117 field_is_in_roadmap: Tarefas mostradas no roadmap
118 field_login: Login
118 field_login: Login
119 field_mail_notification: Notificacoes por email
119 field_mail_notification: Notificacoes por email
120 field_admin: Administrador
120 field_admin: Administrador
121 field_last_login_on: Ultima conexao
121 field_last_login_on: Ultima conexao
122 field_language: Lingua
122 field_language: Lingua
123 field_effective_date: Data
123 field_effective_date: Data
124 field_password: Senha
124 field_password: Senha
125 field_new_password: Nova senha
125 field_new_password: Nova senha
126 field_password_confirmation: Confirmacao
126 field_password_confirmation: Confirmacao
127 field_version: Versao
127 field_version: Versao
128 field_type: Tipo
128 field_type: Tipo
129 field_host: Servidor
129 field_host: Servidor
130 field_port: Porta
130 field_port: Porta
131 field_account: Conta
131 field_account: Conta
132 field_base_dn: Base DN
132 field_base_dn: Base DN
133 field_attr_login: Atributo login
133 field_attr_login: Atributo login
134 field_attr_firstname: Atributo primeiro nome
134 field_attr_firstname: Atributo primeiro nome
135 field_attr_lastname: Atributo ultimo nome
135 field_attr_lastname: Atributo ultimo nome
136 field_attr_mail: Atributo email
136 field_attr_mail: Atributo email
137 field_onthefly: Criacao de usuario on-the-fly
137 field_onthefly: Criacao de usuario on-the-fly
138 field_start_date: Inicio
138 field_start_date: Inicio
139 field_done_ratio: %% Terminado
139 field_done_ratio: %% Terminado
140 field_auth_source: Modo de autenticacao
140 field_auth_source: Modo de autenticacao
141 field_hide_mail: Esconder meu email
141 field_hide_mail: Esconder meu email
142 field_comment: Comentario
142 field_comments: Comentario
143 field_url: URL
143 field_url: URL
144 field_start_page: Pagina inicial
144 field_start_page: Pagina inicial
145 field_subproject: Sub-projeto
145 field_subproject: Sub-projeto
146 field_hours: Horas
146 field_hours: Horas
147 field_activity: Atividade
147 field_activity: Atividade
148 field_spent_on: Data
148 field_spent_on: Data
149 field_identifier: Identificador
149 field_identifier: Identificador
150 field_is_filter: Used as a filter
150 field_is_filter: Used as a filter
151
151
152 setting_app_title: Titulo da aplicacao
152 setting_app_title: Titulo da aplicacao
153 setting_app_subtitle: Sub-titulo da aplicacao
153 setting_app_subtitle: Sub-titulo da aplicacao
154 setting_welcome_text: Texto de boa-vinda
154 setting_welcome_text: Texto de boa-vinda
155 setting_default_language: Lingua padrao
155 setting_default_language: Lingua padrao
156 setting_login_required: Autenticacao obrigatoria
156 setting_login_required: Autenticacao obrigatoria
157 setting_self_registration: Registro de si mesmo permitido
157 setting_self_registration: Registro de si mesmo permitido
158 setting_attachment_max_size: Tamanho maximo do anexo
158 setting_attachment_max_size: Tamanho maximo do anexo
159 setting_issues_export_limit: Limite de exportacao das tarefas
159 setting_issues_export_limit: Limite de exportacao das tarefas
160 setting_mail_from: Email enviado de
160 setting_mail_from: Email enviado de
161 setting_host_name: Servidor
161 setting_host_name: Servidor
162 setting_text_formatting: Formato do texto
162 setting_text_formatting: Formato do texto
163 setting_wiki_compression: Compactacao do historio do Wiki
163 setting_wiki_compression: Compactacao do historio do Wiki
164 setting_feeds_limit: Limite do Feed
164 setting_feeds_limit: Limite do Feed
165 setting_autofetch_changesets: Autofetch SVN commits
165 setting_autofetch_changesets: Autofetch SVN commits
166 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
166 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
167 setting_commit_ref_keywords: Referencing keywords
167 setting_commit_ref_keywords: Referencing keywords
168 setting_commit_fix_keywords: Fixing keywords
168 setting_commit_fix_keywords: Fixing keywords
169
169
170 label_user: Usuario
170 label_user: Usuario
171 label_user_plural: Usuarios
171 label_user_plural: Usuarios
172 label_user_new: Novo usuario
172 label_user_new: Novo usuario
173 label_project: Projeto
173 label_project: Projeto
174 label_project_new: Novo projeto
174 label_project_new: Novo projeto
175 label_project_plural: Projetos
175 label_project_plural: Projetos
176 label_project_latest: Ultimos projetos
176 label_project_latest: Ultimos projetos
177 label_issue: Tarefa
177 label_issue: Tarefa
178 label_issue_new: Nova tarefa
178 label_issue_new: Nova tarefa
179 label_issue_plural: Tarefas
179 label_issue_plural: Tarefas
180 label_issue_view_all: Ver todas as tarefas
180 label_issue_view_all: Ver todas as tarefas
181 label_document: Documento
181 label_document: Documento
182 label_document_new: Novo documento
182 label_document_new: Novo documento
183 label_document_plural: Documentos
183 label_document_plural: Documentos
184 label_role: Regra
184 label_role: Regra
185 label_role_plural: Regras
185 label_role_plural: Regras
186 label_role_new: Nova regra
186 label_role_new: Nova regra
187 label_role_and_permissions: Regras e permissoes
187 label_role_and_permissions: Regras e permissoes
188 label_member: Membro
188 label_member: Membro
189 label_member_new: Novo membro
189 label_member_new: Novo membro
190 label_member_plural: Membros
190 label_member_plural: Membros
191 label_tracker: Tipo
191 label_tracker: Tipo
192 label_tracker_plural: Tipos
192 label_tracker_plural: Tipos
193 label_tracker_new: Novo tipo
193 label_tracker_new: Novo tipo
194 label_workflow: Workflow
194 label_workflow: Workflow
195 label_issue_status: Status da tarefa
195 label_issue_status: Status da tarefa
196 label_issue_status_plural: Status das tarefas
196 label_issue_status_plural: Status das tarefas
197 label_issue_status_new: Novo status
197 label_issue_status_new: Novo status
198 label_issue_category: Categoria de tarefa
198 label_issue_category: Categoria de tarefa
199 label_issue_category_plural: Categorias de tarefa
199 label_issue_category_plural: Categorias de tarefa
200 label_issue_category_new: Nova categoria
200 label_issue_category_new: Nova categoria
201 label_custom_field: Campo personalizado
201 label_custom_field: Campo personalizado
202 label_custom_field_plural: Campos personalizado
202 label_custom_field_plural: Campos personalizado
203 label_custom_field_new: Novo campo personalizado
203 label_custom_field_new: Novo campo personalizado
204 label_enumerations: Enumeracao
204 label_enumerations: Enumeracao
205 label_enumeration_new: Novo valor
205 label_enumeration_new: Novo valor
206 label_information: Informacao
206 label_information: Informacao
207 label_information_plural: Informacoes
207 label_information_plural: Informacoes
208 label_please_login: Efetue login
208 label_please_login: Efetue login
209 label_register: Registre-se
209 label_register: Registre-se
210 label_password_lost: Perdi a senha
210 label_password_lost: Perdi a senha
211 label_home: Pagina inicial
211 label_home: Pagina inicial
212 label_my_page: Minha pagina
212 label_my_page: Minha pagina
213 label_my_account: Minha conta
213 label_my_account: Minha conta
214 label_my_projects: Meus projetos
214 label_my_projects: Meus projetos
215 label_administration: Administracao
215 label_administration: Administracao
216 label_login: Login
216 label_login: Login
217 label_logout: Logout
217 label_logout: Logout
218 label_help: Ajuda
218 label_help: Ajuda
219 label_reported_issues: Tarefas reportadas
219 label_reported_issues: Tarefas reportadas
220 label_assigned_to_me_issues: Tarefas atribuidas a mim
220 label_assigned_to_me_issues: Tarefas atribuidas a mim
221 label_last_login: Utima conexao
221 label_last_login: Utima conexao
222 label_last_updates: Ultima alteracao
222 label_last_updates: Ultima alteracao
223 label_last_updates_plural: %d Ultimas alteracoes
223 label_last_updates_plural: %d Ultimas alteracoes
224 label_registered_on: Registrado em
224 label_registered_on: Registrado em
225 label_activity: Atividade
225 label_activity: Atividade
226 label_new: Novo
226 label_new: Novo
227 label_logged_as: Logado como
227 label_logged_as: Logado como
228 label_environment: Ambiente
228 label_environment: Ambiente
229 label_authentication: Autenticacao
229 label_authentication: Autenticacao
230 label_auth_source: Modo de autenticacao
230 label_auth_source: Modo de autenticacao
231 label_auth_source_new: Novo modo de autenticacao
231 label_auth_source_new: Novo modo de autenticacao
232 label_auth_source_plural: Modos de autenticacao
232 label_auth_source_plural: Modos de autenticacao
233 label_subproject_plural: Sub-projetos
233 label_subproject_plural: Sub-projetos
234 label_min_max_length: Tamanho min-max
234 label_min_max_length: Tamanho min-max
235 label_list: Lista
235 label_list: Lista
236 label_date: Data
236 label_date: Data
237 label_integer: Inteiro
237 label_integer: Inteiro
238 label_boolean: Boleano
238 label_boolean: Boleano
239 label_string: Texto
239 label_string: Texto
240 label_text: Texto longo
240 label_text: Texto longo
241 label_attribute: Atributo
241 label_attribute: Atributo
242 label_attribute_plural: Atributos
242 label_attribute_plural: Atributos
243 label_download: %d Download
243 label_download: %d Download
244 label_download_plural: %d Downloads
244 label_download_plural: %d Downloads
245 label_no_data: Sem dados para mostrar
245 label_no_data: Sem dados para mostrar
246 label_change_status: Mudar status
246 label_change_status: Mudar status
247 label_history: Historico
247 label_history: Historico
248 label_attachment: Arquivo
248 label_attachment: Arquivo
249 label_attachment_new: Novo arquivo
249 label_attachment_new: Novo arquivo
250 label_attachment_delete: Apagar arquivo
250 label_attachment_delete: Apagar arquivo
251 label_attachment_plural: Arquivos
251 label_attachment_plural: Arquivos
252 label_report: Relatorio
252 label_report: Relatorio
253 label_report_plural: Relatorio
253 label_report_plural: Relatorio
254 label_news: Noticias
254 label_news: Noticias
255 label_news_new: Adicionar noticias
255 label_news_new: Adicionar noticias
256 label_news_plural: Noticias
256 label_news_plural: Noticias
257 label_news_latest: Ultimas noticias
257 label_news_latest: Ultimas noticias
258 label_news_view_all: Ver todas as noticias
258 label_news_view_all: Ver todas as noticias
259 label_change_log: Change log
259 label_change_log: Change log
260 label_settings: Ajustes
260 label_settings: Ajustes
261 label_overview: Visao geral
261 label_overview: Visao geral
262 label_version: Versao
262 label_version: Versao
263 label_version_new: Nova versao
263 label_version_new: Nova versao
264 label_version_plural: Versoes
264 label_version_plural: Versoes
265 label_confirmation: Confirmacao
265 label_confirmation: Confirmacao
266 label_export_to: Exportar para
266 label_export_to: Exportar para
267 label_read: Ler...
267 label_read: Ler...
268 label_public_projects: Projetos publicos
268 label_public_projects: Projetos publicos
269 label_open_issues: Aberto
269 label_open_issues: Aberto
270 label_open_issues_plural: Abertos
270 label_open_issues_plural: Abertos
271 label_closed_issues: Fechado
271 label_closed_issues: Fechado
272 label_closed_issues_plural: Fechados
272 label_closed_issues_plural: Fechados
273 label_total: Total
273 label_total: Total
274 label_permissions: Permissoes
274 label_permissions: Permissoes
275 label_current_status: Status atual
275 label_current_status: Status atual
276 label_new_statuses_allowed: Novo status permitido
276 label_new_statuses_allowed: Novo status permitido
277 label_all: todos
277 label_all: todos
278 label_none: nenhum
278 label_none: nenhum
279 label_next: Proximo
279 label_next: Proximo
280 label_previous: Anterior
280 label_previous: Anterior
281 label_used_by: Usado por
281 label_used_by: Usado por
282 label_details: Detalhes...
282 label_details: Detalhes...
283 label_add_note: Adicionar nota
283 label_add_note: Adicionar nota
284 label_per_page: Por pagina
284 label_per_page: Por pagina
285 label_calendar: Calendario
285 label_calendar: Calendario
286 label_months_from: Meses de
286 label_months_from: Meses de
287 label_gantt: Gantt
287 label_gantt: Gantt
288 label_internal: Interno
288 label_internal: Interno
289 label_last_changes: utlimas %d mudancas
289 label_last_changes: utlimas %d mudancas
290 label_change_view_all: Mostrar todas as mudancas
290 label_change_view_all: Mostrar todas as mudancas
291 label_personalize_page: Personalizar esta pagina
291 label_personalize_page: Personalizar esta pagina
292 label_comment: Comentario
292 label_comment: Comentario
293 label_comment_plural: Comentarios
293 label_comment_plural: Comentarios
294 label_comment_add: Adicionar comentario
294 label_comment_add: Adicionar comentario
295 label_comment_added: Comentario adicionado
295 label_comment_added: Comentario adicionado
296 label_comment_delete: Apagar comentario
296 label_comment_delete: Apagar comentario
297 label_query: Consulta personalizada
297 label_query: Consulta personalizada
298 label_query_plural: Consultas personalizadas
298 label_query_plural: Consultas personalizadas
299 label_query_new: Nova consulta
299 label_query_new: Nova consulta
300 label_filter_add: Adicionar filtro
300 label_filter_add: Adicionar filtro
301 label_filter_plural: Filtros
301 label_filter_plural: Filtros
302 label_equals: e
302 label_equals: e
303 label_not_equals: nao e
303 label_not_equals: nao e
304 label_in_less_than: e maior que
304 label_in_less_than: e maior que
305 label_in_more_than: e menor que
305 label_in_more_than: e menor que
306 label_in: em
306 label_in: em
307 label_today: hoje
307 label_today: hoje
308 label_less_than_ago: faz menos de
308 label_less_than_ago: faz menos de
309 label_more_than_ago: faz mais de
309 label_more_than_ago: faz mais de
310 label_ago: dias atras
310 label_ago: dias atras
311 label_contains: contem
311 label_contains: contem
312 label_not_contains: nao contem
312 label_not_contains: nao contem
313 label_day_plural: dias
313 label_day_plural: dias
314 label_repository: SVN Repository
314 label_repository: SVN Repository
315 label_browse: Browse
315 label_browse: Browse
316 label_modification: %d change
316 label_modification: %d change
317 label_modification_plural: %d changes
317 label_modification_plural: %d changes
318 label_revision: Revision
318 label_revision: Revision
319 label_revision_plural: Revisions
319 label_revision_plural: Revisions
320 label_added: added
320 label_added: added
321 label_modified: modified
321 label_modified: modified
322 label_deleted: deleted
322 label_deleted: deleted
323 label_latest_revision: Latest revision
323 label_latest_revision: Latest revision
324 label_latest_revision_plural: Latest revisions
324 label_latest_revision_plural: Latest revisions
325 label_view_revisions: View revisions
325 label_view_revisions: View revisions
326 label_max_size: Maximum size
326 label_max_size: Maximum size
327 label_on: 'em'
327 label_on: 'em'
328 label_sort_highest: Mover para o inicio
328 label_sort_highest: Mover para o inicio
329 label_sort_higher: Mover para cima
329 label_sort_higher: Mover para cima
330 label_sort_lower: Mover para baixo
330 label_sort_lower: Mover para baixo
331 label_sort_lowest: Mover para o fim
331 label_sort_lowest: Mover para o fim
332 label_roadmap: Roadmap
332 label_roadmap: Roadmap
333 label_roadmap_due_in: Due in
333 label_roadmap_due_in: Due in
334 label_roadmap_no_issues: Sem tarefas para essa versao
334 label_roadmap_no_issues: Sem tarefas para essa versao
335 label_search: Busca
335 label_search: Busca
336 label_result: %d resultado
336 label_result: %d resultado
337 label_result_plural: %d resultados
337 label_result_plural: %d resultados
338 label_all_words: Todas as palavras
338 label_all_words: Todas as palavras
339 label_wiki: Wiki
339 label_wiki: Wiki
340 label_wiki_edit: Wiki edit
340 label_wiki_edit: Wiki edit
341 label_wiki_edit_plural: Wiki edits
341 label_wiki_edit_plural: Wiki edits
342 label_page_index: Index
342 label_page_index: Index
343 label_current_version: Versao atual
343 label_current_version: Versao atual
344 label_preview: Previa
344 label_preview: Previa
345 label_feed_plural: Feeds
345 label_feed_plural: Feeds
346 label_changes_details: Detalhes de todas as mudancas
346 label_changes_details: Detalhes de todas as mudancas
347 label_issue_tracking: Tarefas
347 label_issue_tracking: Tarefas
348 label_spent_time: Tempo gasto
348 label_spent_time: Tempo gasto
349 label_f_hour: %.2f hora
349 label_f_hour: %.2f hora
350 label_f_hour_plural: %.2f horas
350 label_f_hour_plural: %.2f horas
351 label_time_tracking: Tempo trabalhado
351 label_time_tracking: Tempo trabalhado
352 label_change_plural: Mudancas
352 label_change_plural: Mudancas
353 label_statistics: Estatisticas
353 label_statistics: Estatisticas
354 label_commits_per_month: Commits por mes
354 label_commits_per_month: Commits por mes
355 label_commits_per_author: Commits por autor
355 label_commits_per_author: Commits por autor
356 label_view_diff: Ver diferencas
356 label_view_diff: Ver diferencas
357 label_diff_inline: inline
357 label_diff_inline: inline
358 label_diff_side_by_side: side by side
358 label_diff_side_by_side: side by side
359 label_options: Opcoes
359 label_options: Opcoes
360 label_copy_workflow_from: Copiar workflow de
360 label_copy_workflow_from: Copiar workflow de
361 label_permissions_report: Relatorio de permissoes
361 label_permissions_report: Relatorio de permissoes
362 label_watched_issues: Watched issues
362 label_watched_issues: Watched issues
363 label_related_issues: Related issues
363 label_related_issues: Related issues
364 label_applied_status: Applied status
364 label_applied_status: Applied status
365
365
366 button_login: Login
366 button_login: Login
367 button_submit: Enviar
367 button_submit: Enviar
368 button_save: Salvar
368 button_save: Salvar
369 button_check_all: Marcar todos
369 button_check_all: Marcar todos
370 button_uncheck_all: Desmarcar todos
370 button_uncheck_all: Desmarcar todos
371 button_delete: Apagar
371 button_delete: Apagar
372 button_create: Criar
372 button_create: Criar
373 button_test: Testar
373 button_test: Testar
374 button_edit: Editar
374 button_edit: Editar
375 button_add: Adicionar
375 button_add: Adicionar
376 button_change: Mudar
376 button_change: Mudar
377 button_apply: Aplicar
377 button_apply: Aplicar
378 button_clear: Limpar
378 button_clear: Limpar
379 button_lock: Bloquear
379 button_lock: Bloquear
380 button_unlock: Desbloquear
380 button_unlock: Desbloquear
381 button_download: Download
381 button_download: Download
382 button_list: Listar
382 button_list: Listar
383 button_view: Ver
383 button_view: Ver
384 button_move: Mover
384 button_move: Mover
385 button_back: Voltar
385 button_back: Voltar
386 button_cancel: Cancelar
386 button_cancel: Cancelar
387 button_activate: Ativar
387 button_activate: Ativar
388 button_sort: Ordenar
388 button_sort: Ordenar
389 button_log_time: Tempo de trabalho
389 button_log_time: Tempo de trabalho
390 button_rollback: Voltar para esta versao
390 button_rollback: Voltar para esta versao
391 button_watch: Watch
391 button_watch: Watch
392 button_unwatch: Unwatch
392 button_unwatch: Unwatch
393
393
394 status_active: ativo
394 status_active: ativo
395 status_registered: registrado
395 status_registered: registrado
396 status_locked: bloqueado
396 status_locked: bloqueado
397
397
398 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
398 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
399 text_regexp_info: eg. ^[A-Z0-9]+$
399 text_regexp_info: eg. ^[A-Z0-9]+$
400 text_min_max_length_info: 0 siginifica sem restricao
400 text_min_max_length_info: 0 siginifica sem restricao
401 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
401 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
402 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
402 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
403 text_are_you_sure: Voce tem certeza ?
403 text_are_you_sure: Voce tem certeza ?
404 text_journal_changed: alterado de %s para %s
404 text_journal_changed: alterado de %s para %s
405 text_journal_set_to: setar para %s
405 text_journal_set_to: setar para %s
406 text_journal_deleted: apagado
406 text_journal_deleted: apagado
407 text_tip_task_begin_day: tarefa comeca neste dia
407 text_tip_task_begin_day: tarefa comeca neste dia
408 text_tip_task_end_day: tarefa termina neste dia
408 text_tip_task_end_day: tarefa termina neste dia
409 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
409 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
410 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
410 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
411 text_caracters_maximum: %d maximo de caracteres
411 text_caracters_maximum: %d maximo de caracteres
412 text_length_between: Tamanho entre %d e %d caracteres.
412 text_length_between: Tamanho entre %d e %d caracteres.
413 text_tracker_no_workflow: Sem workflow definido para este tipo.
413 text_tracker_no_workflow: Sem workflow definido para este tipo.
414 text_unallowed_characters: Unallowed characters
414 text_unallowed_characters: Unallowed characters
415 text_coma_separated: Multiple values allowed (coma separated).
415 text_coma_separated: Multiple values allowed (coma separated).
416 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
416 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
417
417
418 default_role_manager: Analista de Negocio ou Gerente de Projeto
418 default_role_manager: Analista de Negocio ou Gerente de Projeto
419 default_role_developper: Desenvolvedor
419 default_role_developper: Desenvolvedor
420 default_role_reporter: Analista de Suporte
420 default_role_reporter: Analista de Suporte
421 default_tracker_bug: Bug
421 default_tracker_bug: Bug
422 default_tracker_feature: Implementacao
422 default_tracker_feature: Implementacao
423 default_tracker_support: Suporte
423 default_tracker_support: Suporte
424 default_issue_status_new: Novo
424 default_issue_status_new: Novo
425 default_issue_status_assigned: Atribuido
425 default_issue_status_assigned: Atribuido
426 default_issue_status_resolved: Resolvido
426 default_issue_status_resolved: Resolvido
427 default_issue_status_feedback: Feedback
427 default_issue_status_feedback: Feedback
428 default_issue_status_closed: Fechado
428 default_issue_status_closed: Fechado
429 default_issue_status_rejected: Rejeitado
429 default_issue_status_rejected: Rejeitado
430 default_doc_category_user: Documentacao do usuario
430 default_doc_category_user: Documentacao do usuario
431 default_doc_category_tech: Documentacao do tecnica
431 default_doc_category_tech: Documentacao do tecnica
432 default_priority_low: Baixo
432 default_priority_low: Baixo
433 default_priority_normal: Normal
433 default_priority_normal: Normal
434 default_priority_high: Alto
434 default_priority_high: Alto
435 default_priority_urgent: Urgente
435 default_priority_urgent: Urgente
436 default_priority_immediate: Imediato
436 default_priority_immediate: Imediato
437 default_activity_design: Design
437 default_activity_design: Design
438 default_activity_development: Desenvolvimento
438 default_activity_development: Desenvolvimento
439
439
440 enumeration_issue_priorities: Prioridade das tarefas
440 enumeration_issue_priorities: Prioridade das tarefas
441 enumeration_doc_categories: Categorias de documento
441 enumeration_doc_categories: Categorias de documento
442 enumeration_activities: Atividades (time tracking)
442 enumeration_activities: Atividades (time tracking)
@@ -1,445 +1,445
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
39
40 general_fmt_age: %d yr
40 general_fmt_age: %d yr
41 general_fmt_age_plural: %d yrs
41 general_fmt_age_plural: %d yrs
42 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_date: %%m/%%d/%%Y
43 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
45 general_fmt_time: %%I:%%M %%p
45 general_fmt_time: %%I:%%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_zh: 'Chinese (简体中文)'
50 general_lang_zh: 'Chinese (简体中文)'
51 general_csv_separator: ','
51 general_csv_separator: ','
52 general_csv_encoding: gb2312
52 general_csv_encoding: gb2312
53 general_pdf_encoding: Big5
53 general_pdf_encoding: Big5
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
72
73 mail_subject_lost_password: 您的redMine口令
73 mail_subject_lost_password: 您的redMine口令
74 mail_subject_register: redMine帐户激活
74 mail_subject_register: redMine帐户激活
75
75
76 gui_validation_error: 1 个错误
76 gui_validation_error: 1 个错误
77 gui_validation_error_plural: %d 个错误
77 gui_validation_error_plural: %d 个错误
78
78
79 field_name: 名称
79 field_name: 名称
80 field_description: 描述
80 field_description: 描述
81 field_summary: 摘要
81 field_summary: 摘要
82 field_is_required: 必填
82 field_is_required: 必填
83 field_firstname: 名字
83 field_firstname: 名字
84 field_lastname:
84 field_lastname:
85 field_mail: 邮件地址
85 field_mail: 邮件地址
86 field_filename: 文件
86 field_filename: 文件
87 field_filesize: 大小
87 field_filesize: 大小
88 field_downloads: 下载次数
88 field_downloads: 下载次数
89 field_author: 作者
89 field_author: 作者
90 field_created_on: 创建于
90 field_created_on: 创建于
91 field_updated_on: 更新于
91 field_updated_on: 更新于
92 field_field_format: 格式
92 field_field_format: 格式
93 field_is_for_all: 应用于所有项目
93 field_is_for_all: 应用于所有项目
94 field_possible_values: 可能的值
94 field_possible_values: 可能的值
95 field_regexp: 正则表达式
95 field_regexp: 正则表达式
96 field_min_length: 最小长度
96 field_min_length: 最小长度
97 field_max_length: 最大长度
97 field_max_length: 最大长度
98 field_value:
98 field_value:
99 field_category: 分类
99 field_category: 分类
100 field_title: 标题
100 field_title: 标题
101 field_project: 项目
101 field_project: 项目
102 field_issue: 任务
102 field_issue: 任务
103 field_status: 状态
103 field_status: 状态
104 field_notes: 说明
104 field_notes: 说明
105 field_is_closed: 已关闭的任务
105 field_is_closed: 已关闭的任务
106 field_is_default: 默认状态
106 field_is_default: 默认状态
107 field_html_color: 颜色
107 field_html_color: 颜色
108 field_tracker: 跟踪
108 field_tracker: 跟踪
109 field_subject: 主题
109 field_subject: 主题
110 field_due_date: 到期日
110 field_due_date: 到期日
111 field_assigned_to: 指派
111 field_assigned_to: 指派
112 field_priority: 优先级
112 field_priority: 优先级
113 field_fixed_version: 修订版本
113 field_fixed_version: 修订版本
114 field_user: 用户
114 field_user: 用户
115 field_role: 角色
115 field_role: 角色
116 field_homepage: 主页
116 field_homepage: 主页
117 field_is_public: 公开
117 field_is_public: 公开
118 field_parent: 上级项目
118 field_parent: 上级项目
119 field_is_in_chlog: 在更新日志中显示任务
119 field_is_in_chlog: 在更新日志中显示任务
120 field_is_in_roadmap: 在路线图中显示任务
120 field_is_in_roadmap: 在路线图中显示任务
121 field_login: 登录名
121 field_login: 登录名
122 field_mail_notification: 邮件通知
122 field_mail_notification: 邮件通知
123 field_admin: 管理员
123 field_admin: 管理员
124 field_last_login_on: 最后登录
124 field_last_login_on: 最后登录
125 field_language: 语言
125 field_language: 语言
126 field_effective_date: 日期
126 field_effective_date: 日期
127 field_password: 口令
127 field_password: 口令
128 field_new_password: 新口令
128 field_new_password: 新口令
129 field_password_confirmation: 确认
129 field_password_confirmation: 确认
130 field_version: 版本
130 field_version: 版本
131 field_type: 类别
131 field_type: 类别
132 field_host: 主机
132 field_host: 主机
133 field_port: 端口
133 field_port: 端口
134 field_account: 帐号
134 field_account: 帐号
135 field_base_dn: Base DN
135 field_base_dn: Base DN
136 field_attr_login: 登录名属性
136 field_attr_login: 登录名属性
137 field_attr_firstname: 名字属性
137 field_attr_firstname: 名字属性
138 field_attr_lastname: 姓属性
138 field_attr_lastname: 姓属性
139 field_attr_mail: 邮件属性
139 field_attr_mail: 邮件属性
140 field_onthefly: On-the-fly user creation
140 field_onthefly: On-the-fly user creation
141 field_start_date: 开始
141 field_start_date: 开始
142 field_done_ratio: %% 完成
142 field_done_ratio: %% 完成
143 field_auth_source: 认证模式
143 field_auth_source: 认证模式
144 field_hide_mail: 隐藏我的邮件
144 field_hide_mail: 隐藏我的邮件
145 field_comment: 注释
145 field_comments: 注释
146 field_url: URL
146 field_url: URL
147 field_start_page: 起始页
147 field_start_page: 起始页
148 field_subproject: 子项目
148 field_subproject: 子项目
149 field_hours: Hours
149 field_hours: Hours
150 field_activity: 活动
150 field_activity: 活动
151 field_spent_on: 日期
151 field_spent_on: 日期
152 field_identifier: Identifier
152 field_identifier: Identifier
153 field_is_filter: Used as a filter
153 field_is_filter: Used as a filter
154
154
155 setting_app_title: 应用程序标题
155 setting_app_title: 应用程序标题
156 setting_app_subtitle: 应用程序子标题
156 setting_app_subtitle: 应用程序子标题
157 setting_welcome_text: 欢迎文字
157 setting_welcome_text: 欢迎文字
158 setting_default_language: 默认语言
158 setting_default_language: 默认语言
159 setting_login_required: 要求认证
159 setting_login_required: 要求认证
160 setting_self_registration: 允许自注册
160 setting_self_registration: 允许自注册
161 setting_attachment_max_size: 附件最大尺寸
161 setting_attachment_max_size: 附件最大尺寸
162 setting_issues_export_limit: Issues export limit
162 setting_issues_export_limit: Issues export limit
163 setting_mail_from: Emission mail address
163 setting_mail_from: Emission mail address
164 setting_host_name: 主机名称
164 setting_host_name: 主机名称
165 setting_text_formatting: 文本格式
165 setting_text_formatting: 文本格式
166 setting_wiki_compression: Wiki history compression
166 setting_wiki_compression: Wiki history compression
167 setting_feeds_limit: Feed content limit
167 setting_feeds_limit: Feed content limit
168 setting_autofetch_changesets: Autofetch SVN commits
168 setting_autofetch_changesets: Autofetch SVN commits
169 setting_sys_api_enabled: Enable WS for repository management
169 setting_sys_api_enabled: Enable WS for repository management
170 setting_commit_ref_keywords: Referencing keywords
170 setting_commit_ref_keywords: Referencing keywords
171 setting_commit_fix_keywords: Fixing keywords
171 setting_commit_fix_keywords: Fixing keywords
172
172
173 label_user: 用户
173 label_user: 用户
174 label_user_plural: 用户列表
174 label_user_plural: 用户列表
175 label_user_new: 新建用户
175 label_user_new: 新建用户
176 label_project: 项目
176 label_project: 项目
177 label_project_new: 新建项目
177 label_project_new: 新建项目
178 label_project_plural: 项目列表
178 label_project_plural: 项目列表
179 label_project_latest: 最近的项目列表
179 label_project_latest: 最近的项目列表
180 label_issue: 任务
180 label_issue: 任务
181 label_issue_new: 新建任务
181 label_issue_new: 新建任务
182 label_issue_plural: 任务列表
182 label_issue_plural: 任务列表
183 label_issue_view_all: 查看所有任务
183 label_issue_view_all: 查看所有任务
184 label_document: 文档
184 label_document: 文档
185 label_document_new: 新建文档
185 label_document_new: 新建文档
186 label_document_plural: 文档列表
186 label_document_plural: 文档列表
187 label_role: 角色
187 label_role: 角色
188 label_role_plural: 角色列表
188 label_role_plural: 角色列表
189 label_role_new: 新建角色
189 label_role_new: 新建角色
190 label_role_and_permissions: 角色和权限
190 label_role_and_permissions: 角色和权限
191 label_member: 成员
191 label_member: 成员
192 label_member_new: 新建成员
192 label_member_new: 新建成员
193 label_member_plural: 成员列表
193 label_member_plural: 成员列表
194 label_tracker: 跟踪标签
194 label_tracker: 跟踪标签
195 label_tracker_plural: 跟踪标签列表
195 label_tracker_plural: 跟踪标签列表
196 label_tracker_new: 新建跟踪标签
196 label_tracker_new: 新建跟踪标签
197 label_workflow: 工作流
197 label_workflow: 工作流
198 label_issue_status: 任务状态列表
198 label_issue_status: 任务状态列表
199 label_issue_status_plural: 任务状态列表
199 label_issue_status_plural: 任务状态列表
200 label_issue_status_new: 新建任务状态列表
200 label_issue_status_new: 新建任务状态列表
201 label_issue_category: 任务类别
201 label_issue_category: 任务类别
202 label_issue_category_plural: 任务类别列表
202 label_issue_category_plural: 任务类别列表
203 label_issue_category_new: 新建任务类别
203 label_issue_category_new: 新建任务类别
204 label_custom_field: 自定义字段
204 label_custom_field: 自定义字段
205 label_custom_field_plural: 自定义字段列表
205 label_custom_field_plural: 自定义字段列表
206 label_custom_field_new: 新建自定义字段
206 label_custom_field_new: 新建自定义字段
207 label_enumerations: 枚举列表
207 label_enumerations: 枚举列表
208 label_enumeration_new: 新建枚举值
208 label_enumeration_new: 新建枚举值
209 label_information: 信息
209 label_information: 信息
210 label_information_plural: 信息
210 label_information_plural: 信息
211 label_please_login: 请登录
211 label_please_login: 请登录
212 label_register: 注册
212 label_register: 注册
213 label_password_lost: 忘记口令
213 label_password_lost: 忘记口令
214 label_home: 主页
214 label_home: 主页
215 label_my_page: 我的工作台
215 label_my_page: 我的工作台
216 label_my_account: 我的帐号
216 label_my_account: 我的帐号
217 label_my_projects: 我的项目列表
217 label_my_projects: 我的项目列表
218 label_administration: 管理
218 label_administration: 管理
219 label_login: 登录
219 label_login: 登录
220 label_logout: 退出
220 label_logout: 退出
221 label_help: 帮助
221 label_help: 帮助
222 label_reported_issues: 已报告的问题
222 label_reported_issues: 已报告的问题
223 label_assigned_to_me_issues: 分配给我的任务
223 label_assigned_to_me_issues: 分配给我的任务
224 label_last_login: 最后登录
224 label_last_login: 最后登录
225 label_last_updates: 最后更新
225 label_last_updates: 最后更新
226 label_last_updates_plural: %d 最后更新
226 label_last_updates_plural: %d 最后更新
227 label_registered_on: 注册于
227 label_registered_on: 注册于
228 label_activity: 活动
228 label_activity: 活动
229 label_new: 新建
229 label_new: 新建
230 label_logged_as: 登录为
230 label_logged_as: 登录为
231 label_environment: 环境
231 label_environment: 环境
232 label_authentication: 认证
232 label_authentication: 认证
233 label_auth_source: 认证模式
233 label_auth_source: 认证模式
234 label_auth_source_new: 新建认证模式
234 label_auth_source_new: 新建认证模式
235 label_auth_source_plural: 认证模式列表
235 label_auth_source_plural: 认证模式列表
236 label_subproject_plural: 子项目列表
236 label_subproject_plural: 子项目列表
237 label_min_max_length: 最小 - 最大 长度
237 label_min_max_length: 最小 - 最大 长度
238 label_list: list
238 label_list: list
239 label_date: Date
239 label_date: Date
240 label_integer: Integer
240 label_integer: Integer
241 label_boolean: Boolean
241 label_boolean: Boolean
242 label_string: Text
242 label_string: Text
243 label_text: Long text
243 label_text: Long text
244 label_attribute: 属性
244 label_attribute: 属性
245 label_attribute_plural: 属性
245 label_attribute_plural: 属性
246 label_download: %d 个下载次数
246 label_download: %d 个下载次数
247 label_download_plural: %d 个下载次数
247 label_download_plural: %d 个下载次数
248 label_no_data: 没有数据用于显示
248 label_no_data: 没有数据用于显示
249 label_change_status: 改变状态
249 label_change_status: 改变状态
250 label_history: 历史记录
250 label_history: 历史记录
251 label_attachment: 文件
251 label_attachment: 文件
252 label_attachment_new: 新建文件
252 label_attachment_new: 新建文件
253 label_attachment_delete: 删除文件
253 label_attachment_delete: 删除文件
254 label_attachment_plural: 文件列表
254 label_attachment_plural: 文件列表
255 label_report: 报表
255 label_report: 报表
256 label_report_plural: 报表列表
256 label_report_plural: 报表列表
257 label_news: 新闻
257 label_news: 新闻
258 label_news_new: 增加新闻
258 label_news_new: 增加新闻
259 label_news_plural: 新闻列表
259 label_news_plural: 新闻列表
260 label_news_latest: 最近的新闻
260 label_news_latest: 最近的新闻
261 label_news_view_all: 查看所有新闻
261 label_news_view_all: 查看所有新闻
262 label_change_log: 更新日志
262 label_change_log: 更新日志
263 label_settings: 配置
263 label_settings: 配置
264 label_overview: 概述
264 label_overview: 概述
265 label_version: 版本
265 label_version: 版本
266 label_version_new: 新建版本
266 label_version_new: 新建版本
267 label_version_plural: 版本列表
267 label_version_plural: 版本列表
268 label_confirmation: 确认
268 label_confirmation: 确认
269 label_export_to: 导出
269 label_export_to: 导出
270 label_read: 读取...
270 label_read: 读取...
271 label_public_projects: 公开的项目列表
271 label_public_projects: 公开的项目列表
272 label_open_issues: 打开
272 label_open_issues: 打开
273 label_open_issues_plural: 打开
273 label_open_issues_plural: 打开
274 label_closed_issues: 已关闭
274 label_closed_issues: 已关闭
275 label_closed_issues_plural: 已关闭
275 label_closed_issues_plural: 已关闭
276 label_total: 合计
276 label_total: 合计
277 label_permissions: 权限列表
277 label_permissions: 权限列表
278 label_current_status: 当前状态
278 label_current_status: 当前状态
279 label_new_statuses_allowed: New statuses allowed
279 label_new_statuses_allowed: New statuses allowed
280 label_all: 全部
280 label_all: 全部
281 label_none:
281 label_none:
282 label_next: 下一个
282 label_next: 下一个
283 label_previous: 上一个
283 label_previous: 上一个
284 label_used_by: 使用中
284 label_used_by: 使用中
285 label_details: 详情...
285 label_details: 详情...
286 label_add_note: 添加说明
286 label_add_note: 添加说明
287 label_per_page: 每面
287 label_per_page: 每面
288 label_calendar: 日历
288 label_calendar: 日历
289 label_months_from: months from
289 label_months_from: months from
290 label_gantt: 甘特图(Gantt)
290 label_gantt: 甘特图(Gantt)
291 label_internal: 内部
291 label_internal: 内部
292 label_last_changes: 最近的 %d 次更改
292 label_last_changes: 最近的 %d 次更改
293 label_change_view_all: 查看所有更改
293 label_change_view_all: 查看所有更改
294 label_personalize_page: 个性化定制本页
294 label_personalize_page: 个性化定制本页
295 label_comment: 注释
295 label_comment: 注释
296 label_comment_plural: 注释列表
296 label_comment_plural: 注释列表
297 label_comment_add: 添加注释
297 label_comment_add: 添加注释
298 label_comment_added: 已加入注释
298 label_comment_added: 已加入注释
299 label_comment_delete: 删除注释
299 label_comment_delete: 删除注释
300 label_query: 自定义查询
300 label_query: 自定义查询
301 label_query_plural: 自定义查询列表
301 label_query_plural: 自定义查询列表
302 label_query_new: 新建查询
302 label_query_new: 新建查询
303 label_filter_add: 增加过滤器
303 label_filter_add: 增加过滤器
304 label_filter_plural: 过滤器列表
304 label_filter_plural: 过滤器列表
305 label_equals: 等于
305 label_equals: 等于
306 label_not_equals: 不等于
306 label_not_equals: 不等于
307 label_in_less_than: 剩余天数小于
307 label_in_less_than: 剩余天数小于
308 label_in_more_than: 剩余天数大于
308 label_in_more_than: 剩余天数大于
309 label_in: 剩余天数
309 label_in: 剩余天数
310 label_today: 今天
310 label_today: 今天
311 label_less_than_ago: 之前天数少于
311 label_less_than_ago: 之前天数少于
312 label_more_than_ago: 之前天数大于
312 label_more_than_ago: 之前天数大于
313 label_ago: 之前天数
313 label_ago: 之前天数
314 label_contains: 包含
314 label_contains: 包含
315 label_not_contains: 不包含
315 label_not_contains: 不包含
316 label_day_plural: 天数
316 label_day_plural: 天数
317 label_repository: SVN 版本库
317 label_repository: SVN 版本库
318 label_browse: 浏览
318 label_browse: 浏览
319 label_modification: %d 个更新
319 label_modification: %d 个更新
320 label_modification_plural: %d 个更新
320 label_modification_plural: %d 个更新
321 label_revision: 修订
321 label_revision: 修订
322 label_revision_plural: 修订
322 label_revision_plural: 修订
323 label_added: 已增加
323 label_added: 已增加
324 label_modified: 已修改
324 label_modified: 已修改
325 label_deleted: 已删除
325 label_deleted: 已删除
326 label_latest_revision: 最近的版本
326 label_latest_revision: 最近的版本
327 label_latest_revision_plural: 最近的版本列表
327 label_latest_revision_plural: 最近的版本列表
328 label_view_revisions: 查看修订列表
328 label_view_revisions: 查看修订列表
329 label_max_size: 最大尺寸
329 label_max_size: 最大尺寸
330 label_on: 'on'
330 label_on: 'on'
331 label_sort_highest: 置顶
331 label_sort_highest: 置顶
332 label_sort_higher: 上移
332 label_sort_higher: 上移
333 label_sort_lower: 下移
333 label_sort_lower: 下移
334 label_sort_lowest: 置底
334 label_sort_lowest: 置底
335 label_roadmap: 路线图
335 label_roadmap: 路线图
336 label_roadmap_due_in: Due in
336 label_roadmap_due_in: Due in
337 label_roadmap_no_issues: 该版本没有任务
337 label_roadmap_no_issues: 该版本没有任务
338 label_search: 查找
338 label_search: 查找
339 label_result: %d 个结果
339 label_result: %d 个结果
340 label_result_plural: %d 个结果
340 label_result_plural: %d 个结果
341 label_all_words: 所有单词
341 label_all_words: 所有单词
342 label_wiki: Wiki
342 label_wiki: Wiki
343 label_wiki_edit: Wiki edit
343 label_wiki_edit: Wiki edit
344 label_wiki_edit_plural: Wiki edits
344 label_wiki_edit_plural: Wiki edits
345 label_page_index: 索引
345 label_page_index: 索引
346 label_current_version: 当前版本
346 label_current_version: 当前版本
347 label_preview: 预览
347 label_preview: 预览
348 label_feed_plural: Feeds
348 label_feed_plural: Feeds
349 label_changes_details: 所有更改的详情
349 label_changes_details: 所有更改的详情
350 label_issue_tracking: 任务跟踪
350 label_issue_tracking: 任务跟踪
351 label_spent_time: 耗时
351 label_spent_time: 耗时
352 label_f_hour: %.2f 小时
352 label_f_hour: %.2f 小时
353 label_f_hour_plural: %.2f 小时
353 label_f_hour_plural: %.2f 小时
354 label_time_tracking: 时间跟踪
354 label_time_tracking: 时间跟踪
355 label_change_plural: 更改列表
355 label_change_plural: 更改列表
356 label_statistics: 统计
356 label_statistics: 统计
357 label_commits_per_month: Commits per month
357 label_commits_per_month: Commits per month
358 label_commits_per_author: Commits per author
358 label_commits_per_author: Commits per author
359 label_view_diff: View differences
359 label_view_diff: View differences
360 label_diff_inline: inline
360 label_diff_inline: inline
361 label_diff_side_by_side: side by side
361 label_diff_side_by_side: side by side
362 label_options: Options
362 label_options: Options
363 label_copy_workflow_from: Copy workflow from
363 label_copy_workflow_from: Copy workflow from
364 label_permissions_report: Permissions report
364 label_permissions_report: Permissions report
365 label_watched_issues: Watched issues
365 label_watched_issues: Watched issues
366 label_related_issues: Related issues
366 label_related_issues: Related issues
367 label_applied_status: Applied status
367 label_applied_status: Applied status
368
368
369 button_login: 登录
369 button_login: 登录
370 button_submit: 提交
370 button_submit: 提交
371 button_save: 保存
371 button_save: 保存
372 button_check_all: 全选
372 button_check_all: 全选
373 button_uncheck_all: 清除
373 button_uncheck_all: 清除
374 button_delete: 删除
374 button_delete: 删除
375 button_create: 创建
375 button_create: 创建
376 button_test: 测试
376 button_test: 测试
377 button_edit: 编辑
377 button_edit: 编辑
378 button_add: 新增
378 button_add: 新增
379 button_change: 修改
379 button_change: 修改
380 button_apply: 应用
380 button_apply: 应用
381 button_clear: 清除
381 button_clear: 清除
382 button_lock: 锁定
382 button_lock: 锁定
383 button_unlock: 解锁
383 button_unlock: 解锁
384 button_download: 下载
384 button_download: 下载
385 button_list: 列表
385 button_list: 列表
386 button_view: 查看
386 button_view: 查看
387 button_move: 移动
387 button_move: 移动
388 button_back: 返回
388 button_back: 返回
389 button_cancel: 取消
389 button_cancel: 取消
390 button_activate: 激活
390 button_activate: 激活
391 button_sort: 排序
391 button_sort: 排序
392 button_log_time: 登记工时
392 button_log_time: 登记工时
393 button_rollback: Rollback to this version
393 button_rollback: Rollback to this version
394 button_watch: Watch
394 button_watch: Watch
395 button_unwatch: Unwatch
395 button_unwatch: Unwatch
396
396
397 status_active: 激活
397 status_active: 激活
398 status_registered: 已注册
398 status_registered: 已注册
399 status_locked: 已锁定
399 status_locked: 已锁定
400
400
401 text_select_mail_notifications: 选择需要发送邮件通知的动作。
401 text_select_mail_notifications: 选择需要发送邮件通知的动作。
402 text_regexp_info: eg. ^[A-Z0-9]+$
402 text_regexp_info: eg. ^[A-Z0-9]+$
403 text_min_max_length_info: 0 表示没有限制
403 text_min_max_length_info: 0 表示没有限制
404 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
404 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
405 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
405 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
406 text_are_you_sure: 您确定?
406 text_are_you_sure: 您确定?
407 text_journal_changed: 从 %s 更改为 %s
407 text_journal_changed: 从 %s 更改为 %s
408 text_journal_set_to: 设置为 %s
408 text_journal_set_to: 设置为 %s
409 text_journal_deleted: 已删除
409 text_journal_deleted: 已删除
410 text_tip_task_begin_day: 开始于此
410 text_tip_task_begin_day: 开始于此
411 text_tip_task_end_day: 在此结束
411 text_tip_task_end_day: 在此结束
412 text_tip_task_begin_end_day: 开始并结束于此
412 text_tip_task_begin_end_day: 开始并结束于此
413 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
413 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
414 text_caracters_maximum: %d characters maximum.
414 text_caracters_maximum: %d characters maximum.
415 text_length_between: Length between %d and %d characters.
415 text_length_between: Length between %d and %d characters.
416 text_tracker_no_workflow: No workflow defined for this tracker
416 text_tracker_no_workflow: No workflow defined for this tracker
417 text_unallowed_characters: Unallowed characters
417 text_unallowed_characters: Unallowed characters
418 text_coma_separated: Multiple values allowed (coma separated).
418 text_coma_separated: Multiple values allowed (coma separated).
419 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
419 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
420
420
421 default_role_manager: 管理员
421 default_role_manager: 管理员
422 default_role_developper: 开发人员
422 default_role_developper: 开发人员
423 default_role_reporter: 报告人员
423 default_role_reporter: 报告人员
424 default_tracker_bug: 问题
424 default_tracker_bug: 问题
425 default_tracker_feature: 功能
425 default_tracker_feature: 功能
426 default_tracker_support: 支持
426 default_tracker_support: 支持
427 default_issue_status_new: 新建
427 default_issue_status_new: 新建
428 default_issue_status_assigned: 已分配
428 default_issue_status_assigned: 已分配
429 default_issue_status_resolved: 已解决
429 default_issue_status_resolved: 已解决
430 default_issue_status_feedback: 回复
430 default_issue_status_feedback: 回复
431 default_issue_status_closed: 已关闭
431 default_issue_status_closed: 已关闭
432 default_issue_status_rejected: 已打回
432 default_issue_status_rejected: 已打回
433 default_doc_category_user: 用户文档
433 default_doc_category_user: 用户文档
434 default_doc_category_tech: 技术文档
434 default_doc_category_tech: 技术文档
435 default_priority_low:
435 default_priority_low:
436 default_priority_normal: 普通
436 default_priority_normal: 普通
437 default_priority_high:
437 default_priority_high:
438 default_priority_urgent: 紧急
438 default_priority_urgent: 紧急
439 default_priority_immediate: 立刻
439 default_priority_immediate: 立刻
440 default_activity_design: 设计
440 default_activity_design: 设计
441 default_activity_development: 开发
441 default_activity_development: 开发
442
442
443 enumeration_issue_priorities: 任务优先级
443 enumeration_issue_priorities: 任务优先级
444 enumeration_doc_categories: 文档类别
444 enumeration_doc_categories: 文档类别
445 enumeration_activities: Activities (time tracking)
445 enumeration_activities: Activities (time tracking)
@@ -1,38 +1,38
1 ---
1 ---
2 changesets_001:
2 changesets_001:
3 commit_date: 2007-04-11
3 commit_date: 2007-04-11
4 committed_on: 2007-04-11 15:14:44 +02:00
4 committed_on: 2007-04-11 15:14:44 +02:00
5 revision: 1
5 revision: 1
6 id: 100
6 id: 100
7 comment: My very first commit
7 comments: My very first commit
8 repository_id: 10
8 repository_id: 10
9 committer: dlopper
9 committer: dlopper
10 changesets_002:
10 changesets_002:
11 commit_date: 2007-04-12
11 commit_date: 2007-04-12
12 committed_on: 2007-04-12 15:14:44 +02:00
12 committed_on: 2007-04-12 15:14:44 +02:00
13 revision: 2
13 revision: 2
14 id: 101
14 id: 101
15 comment: 'This commit fixes #1, #2 and references #3'
15 comments: 'This commit fixes #1, #2 and references #3'
16 repository_id: 10
16 repository_id: 10
17 committer: dlopper
17 committer: dlopper
18 changesets_003:
18 changesets_003:
19 commit_date: 2007-04-12
19 commit_date: 2007-04-12
20 committed_on: 2007-04-12 15:14:44 +02:00
20 committed_on: 2007-04-12 15:14:44 +02:00
21 revision: 3
21 revision: 3
22 id: 102
22 id: 102
23 comment: |-
23 comments: |-
24 A commit with wrong issue ids
24 A commit with wrong issue ids
25 IssueID 666 3
25 IssueID 666 3
26 repository_id: 10
26 repository_id: 10
27 committer: dlopper
27 committer: dlopper
28 changesets_004:
28 changesets_004:
29 commit_date: 2007-04-12
29 commit_date: 2007-04-12
30 committed_on: 2007-04-12 15:14:44 +02:00
30 committed_on: 2007-04-12 15:14:44 +02:00
31 revision: 4
31 revision: 4
32 id: 103
32 id: 103
33 comment: |-
33 comments: |-
34 A commit with an issue id of an other project
34 A commit with an issue id of an other project
35 IssueID 4 2
35 IssueID 4 2
36 repository_id: 10
36 repository_id: 10
37 committer: dlopper
37 committer: dlopper
38 No newline at end of file
38
@@ -1,10 +1,10
1 # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
1 # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2 comments_001:
2 comments_001:
3 commented_type: News
3 commented_type: News
4 commented_id: 1
4 commented_id: 1
5 id: 1
5 id: 1
6 author_id: 1
6 author_id: 1
7 comment: my first comment
7 comments: my first comment
8 created_on: 2006-12-10 18:10:10 +01:00
8 created_on: 2006-12-10 18:10:10 +01:00
9 updated_on: 2006-12-10 18:10:10 +01:00
9 updated_on: 2006-12-10 18:10:10 +01:00
10 No newline at end of file
10
@@ -1,40 +1,40
1 ---
1 ---
2 wiki_content_versions_001:
2 wiki_content_versions_001:
3 updated_on: 2007-03-07 00:08:07 +01:00
3 updated_on: 2007-03-07 00:08:07 +01:00
4 page_id: 1
4 page_id: 1
5 id: 1
5 id: 1
6 version: 1
6 version: 1
7 author_id: 1
7 author_id: 1
8 comment: Page creation
8 comments: Page creation
9 wiki_content_id: 1
9 wiki_content_id: 1
10 compression: ""
10 compression: ""
11 data: |-
11 data: |-
12 h1. CookBook documentation
12 h1. CookBook documentation
13
13
14
14
15
15
16 Some [[documentation]] here...
16 Some [[documentation]] here...
17 wiki_content_versions_002:
17 wiki_content_versions_002:
18 updated_on: 2007-03-07 00:08:34 +01:00
18 updated_on: 2007-03-07 00:08:34 +01:00
19 page_id: 1
19 page_id: 1
20 id: 2
20 id: 2
21 version: 2
21 version: 2
22 author_id: 1
22 author_id: 1
23 comment: Small update
23 comments: Small update
24 wiki_content_id: 1
24 wiki_content_id: 1
25 compression: ""
25 compression: ""
26 data: |-
26 data: |-
27 h1. CookBook documentation
27 h1. CookBook documentation
28
28
29
29
30
30
31 Some updated [[documentation]] here...
31 Some updated [[documentation]] here...
32 wiki_content_versions_003:
32 wiki_content_versions_003:
33 updated_on: 2007-03-07 00:10:51 +01:00
33 updated_on: 2007-03-07 00:10:51 +01:00
34 page_id: 1
34 page_id: 1
35 id: 3
35 id: 3
36 version: 3
36 version: 3
37 author_id: 1
37 author_id: 1
38 comment: ""
38 comments: ""
39 wiki_content_id: 1
39 wiki_content_id: 1
40 compression: ""
40 compression: ""
@@ -1,12 +1,12
1 ---
1 ---
2 wiki_contents_001:
2 wiki_contents_001:
3 text: |-
3 text: |-
4 h1. CookBook documentation
4 h1. CookBook documentation
5
5
6
6
7
7
8 Some updated [[documentation]] here with gzipped history
8 Some updated [[documentation]] here with gzipped history
9 updated_on: 2007-03-07 00:10:51 +01:00
9 updated_on: 2007-03-07 00:10:51 +01:00
10 page_id: 1
10 page_id: 1
11 id: 1
11 id: 1
12 version: 3
12 version: 3
@@ -1,47 +1,47
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 File.dirname(__FILE__) + '/../test_helper'
18 require File.dirname(__FILE__) + '/../test_helper'
19
19
20 class CommentTest < Test::Unit::TestCase
20 class CommentTest < Test::Unit::TestCase
21 fixtures :users, :news, :comments
21 fixtures :users, :news, :comments
22
22
23 def setup
23 def setup
24 @jsmith = User.find(2)
24 @jsmith = User.find(2)
25 @news = News.find(1)
25 @news = News.find(1)
26 end
26 end
27
27
28 def test_create
28 def test_create
29 comment = Comment.new(:commented => @news, :author => @jsmith, :comment => "my comment")
29 comment = Comment.new(:commented => @news, :author => @jsmith, :comments => "my comment")
30 assert comment.save
30 assert comment.save
31 @news.reload
31 @news.reload
32 assert_equal 2, @news.comments_count
32 assert_equal 2, @news.comments_count
33 end
33 end
34
34
35 def test_validate
35 def test_validate
36 comment = Comment.new(:commented => @news)
36 comment = Comment.new(:commented => @news)
37 assert !comment.save
37 assert !comment.save
38 assert_equal 2, comment.errors.length
38 assert_equal 2, comment.errors.length
39 end
39 end
40
40
41 def test_destroy
41 def test_destroy
42 comment = Comment.find(1)
42 comment = Comment.find(1)
43 assert comment.destroy
43 assert comment.destroy
44 @news.reload
44 @news.reload
45 assert_equal 0, @news.comments_count
45 assert_equal 0, @news.comments_count
46 end
46 end
47 end
47 end
@@ -1,60 +1,60
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 File.dirname(__FILE__) + '/../test_helper'
18 require File.dirname(__FILE__) + '/../test_helper'
19
19
20 class WikiContentTest < Test::Unit::TestCase
20 class WikiContentTest < Test::Unit::TestCase
21 fixtures :wikis, :wiki_pages, :wiki_contents, :wiki_content_versions, :users
21 fixtures :wikis, :wiki_pages, :wiki_contents, :wiki_content_versions, :users
22
22
23 def setup
23 def setup
24 @wiki = Wiki.find(1)
24 @wiki = Wiki.find(1)
25 @page = @wiki.pages.first
25 @page = @wiki.pages.first
26 end
26 end
27
27
28 def test_create
28 def test_create
29 page = WikiPage.new(:wiki => @wiki, :title => "Page")
29 page = WikiPage.new(:wiki => @wiki, :title => "Page")
30 page.content = WikiContent.new(:text => "Content text", :author => User.find(1), :comment => "My comment")
30 page.content = WikiContent.new(:text => "Content text", :author => User.find(1), :comments => "My comment")
31 assert page.save
31 assert page.save
32 page.reload
32 page.reload
33
33
34 content = page.content
34 content = page.content
35 assert_kind_of WikiContent, content
35 assert_kind_of WikiContent, content
36 assert_equal 1, content.version
36 assert_equal 1, content.version
37 assert_equal 1, content.versions.length
37 assert_equal 1, content.versions.length
38 assert_equal "Content text", content.text
38 assert_equal "Content text", content.text
39 assert_equal "My comment", content.comment
39 assert_equal "My comment", content.comments
40 assert_equal User.find(1), content.author
40 assert_equal User.find(1), content.author
41 assert_equal content.text, content.versions.last.text
41 assert_equal content.text, content.versions.last.text
42 end
42 end
43
43
44 def test_update
44 def test_update
45 content = @page.content
45 content = @page.content
46 version_count = content.version
46 version_count = content.version
47 content.text = "My new content"
47 content.text = "My new content"
48 assert content.save
48 assert content.save
49 content.reload
49 content.reload
50 assert_equal version_count+1, content.version
50 assert_equal version_count+1, content.version
51 assert_equal version_count+1, content.versions.length
51 assert_equal version_count+1, content.versions.length
52 end
52 end
53
53
54 def test_fetch_history
54 def test_fetch_history
55 assert !@page.content.versions.empty?
55 assert !@page.content.versions.empty?
56 @page.content.versions.each do |version|
56 @page.content.versions.each do |version|
57 assert_kind_of String, version.text
57 assert_kind_of String, version.text
58 end
58 end
59 end
59 end
60 end
60 end
General Comments 0
You need to be logged in to leave comments. Login now