@@ -0,0 +1,59 | |||
|
1 | # redMine - project management software | |
|
2 | # Copyright (C) 2006-2007 Jean-Philippe Lang | |
|
3 | # | |
|
4 | # This program is free software; you can redistribute it and/or | |
|
5 | # modify it under the terms of the GNU General Public License | |
|
6 | # as published by the Free Software Foundation; either version 2 | |
|
7 | # of the License, or (at your option) any later version. | |
|
8 | # | |
|
9 | # This program is distributed in the hope that it will be useful, | |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
|
12 | # GNU General Public License for more details. | |
|
13 | # | |
|
14 | # You should have received a copy of the GNU General Public License | |
|
15 | # along with this program; if not, write to the Free Software | |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
|
17 | ||
|
18 | class IssueRelationsController < ApplicationController | |
|
19 | layout 'base' | |
|
20 | before_filter :find_project, :authorize | |
|
21 | ||
|
22 | def new | |
|
23 | @relation = IssueRelation.new(params[:relation]) | |
|
24 | @relation.issue_from = @issue | |
|
25 | @relation.save if request.post? | |
|
26 | respond_to do |format| | |
|
27 | format.html { redirect_to :controller => 'issues', :action => 'show', :id => @issue } | |
|
28 | format.js do | |
|
29 | render :update do |page| | |
|
30 | page.replace_html "relations", :partial => 'issues/relations' | |
|
31 | if @relation.errors.empty? | |
|
32 | page << "$('relation_delay').value = ''" | |
|
33 | page << "$('relation_issue_to_id').value = ''" | |
|
34 | end | |
|
35 | end | |
|
36 | end | |
|
37 | end | |
|
38 | end | |
|
39 | ||
|
40 | def destroy | |
|
41 | relation = IssueRelation.find(params[:id]) | |
|
42 | if request.post? && @issue.relations.include?(relation) | |
|
43 | relation.destroy | |
|
44 | @issue.reload | |
|
45 | end | |
|
46 | respond_to do |format| | |
|
47 | format.html { redirect_to :controller => 'issues', :action => 'show', :id => @issue } | |
|
48 | format.js { render(:update) {|page| page.replace_html "relations", :partial => 'issues/relations'} } | |
|
49 | end | |
|
50 | end | |
|
51 | ||
|
52 | private | |
|
53 | def find_project | |
|
54 | @issue = Issue.find(params[:issue_id]) | |
|
55 | @project = @issue.project | |
|
56 | rescue ActiveRecord::RecordNotFound | |
|
57 | render_404 | |
|
58 | end | |
|
59 | end |
@@ -0,0 +1,23 | |||
|
1 | # redMine - project management software | |
|
2 | # Copyright (C) 2006-2007 Jean-Philippe Lang | |
|
3 | # | |
|
4 | # This program is free software; you can redistribute it and/or | |
|
5 | # modify it under the terms of the GNU General Public License | |
|
6 | # as published by the Free Software Foundation; either version 2 | |
|
7 | # of the License, or (at your option) any later version. | |
|
8 | # | |
|
9 | # This program is distributed in the hope that it will be useful, | |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
|
12 | # GNU General Public License for more details. | |
|
13 | # | |
|
14 | # You should have received a copy of the GNU General Public License | |
|
15 | # along with this program; if not, write to the Free Software | |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
|
17 | ||
|
18 | module IssueRelationsHelper | |
|
19 | def collection_for_relation_type_select | |
|
20 | values = IssueRelation::TYPES | |
|
21 | values.keys.sort{|x,y| values[x][:order] <=> values[y][:order]}.collect{|k| [l(values[k][:name]), k]} | |
|
22 | end | |
|
23 | end |
@@ -0,0 +1,79 | |||
|
1 | # redMine - project management software | |
|
2 | # Copyright (C) 2006-2007 Jean-Philippe Lang | |
|
3 | # | |
|
4 | # This program is free software; you can redistribute it and/or | |
|
5 | # modify it under the terms of the GNU General Public License | |
|
6 | # as published by the Free Software Foundation; either version 2 | |
|
7 | # of the License, or (at your option) any later version. | |
|
8 | # | |
|
9 | # This program is distributed in the hope that it will be useful, | |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
|
12 | # GNU General Public License for more details. | |
|
13 | # | |
|
14 | # You should have received a copy of the GNU General Public License | |
|
15 | # along with this program; if not, write to the Free Software | |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
|
17 | ||
|
18 | class IssueRelation < ActiveRecord::Base | |
|
19 | belongs_to :issue_from, :class_name => 'Issue', :foreign_key => 'issue_from_id' | |
|
20 | belongs_to :issue_to, :class_name => 'Issue', :foreign_key => 'issue_to_id' | |
|
21 | ||
|
22 | TYPE_RELATES = "relates" | |
|
23 | TYPE_DUPLICATES = "duplicates" | |
|
24 | TYPE_BLOCKS = "blocks" | |
|
25 | TYPE_PRECEDES = "precedes" | |
|
26 | ||
|
27 | TYPES = { TYPE_RELATES => { :name => :label_relates_to, :sym_name => :label_relates_to, :order => 1 }, | |
|
28 | TYPE_DUPLICATES => { :name => :label_duplicates, :sym_name => :label_duplicates, :order => 2 }, | |
|
29 | TYPE_BLOCKS => { :name => :label_blocks, :sym_name => :label_blocked_by, :order => 3 }, | |
|
30 | TYPE_PRECEDES => { :name => :label_precedes, :sym_name => :label_follows, :order => 4 }, | |
|
31 | }.freeze | |
|
32 | ||
|
33 | validates_presence_of :issue_from, :issue_to, :relation_type | |
|
34 | validates_inclusion_of :relation_type, :in => TYPES.keys | |
|
35 | validates_numericality_of :delay, :allow_nil => true | |
|
36 | validates_uniqueness_of :issue_to_id, :scope => :issue_from_id | |
|
37 | ||
|
38 | def validate | |
|
39 | if issue_from && issue_to | |
|
40 | errors.add :issue_to_id, :activerecord_error_invalid if issue_from_id == issue_to_id | |
|
41 | errors.add :issue_to_id, :activerecord_error_not_same_project unless issue_from.project_id == issue_to.project_id | |
|
42 | errors.add_to_base :activerecord_error_circular_dependency if issue_to.all_dependent_issues.include? issue_from | |
|
43 | end | |
|
44 | end | |
|
45 | ||
|
46 | def other_issue(issue) | |
|
47 | (self.issue_from_id == issue.id) ? issue_to : issue_from | |
|
48 | end | |
|
49 | ||
|
50 | def label_for(issue) | |
|
51 | TYPES[relation_type] ? TYPES[relation_type][(self.issue_from_id == issue.id) ? :name : :sym_name] : :unknow | |
|
52 | end | |
|
53 | ||
|
54 | def before_save | |
|
55 | if TYPE_PRECEDES == relation_type | |
|
56 | self.delay ||= 0 | |
|
57 | else | |
|
58 | self.delay = nil | |
|
59 | end | |
|
60 | set_issue_to_dates | |
|
61 | end | |
|
62 | ||
|
63 | def set_issue_to_dates | |
|
64 | soonest_start = self.successor_soonest_start | |
|
65 | if soonest_start && (!issue_to.start_date || issue_to.start_date < soonest_start) | |
|
66 | issue_to.start_date, issue_to.due_date = successor_soonest_start, successor_soonest_start + issue_to.duration | |
|
67 | issue_to.save | |
|
68 | end | |
|
69 | end | |
|
70 | ||
|
71 | def successor_soonest_start | |
|
72 | return nil unless (TYPE_PRECEDES == self.relation_type) && (issue_from.start_date || issue_from.due_date) | |
|
73 | (issue_from.due_date || issue_from.start_date) + 1 + delay | |
|
74 | end | |
|
75 | ||
|
76 | def <=>(relation) | |
|
77 | TYPES[self.relation_type][:order] <=> TYPES[relation.relation_type][:order] | |
|
78 | end | |
|
79 | end |
@@ -0,0 +1,10 | |||
|
1 | <%= error_messages_for 'relation' %> | |
|
2 | ||
|
3 | <p><%= f.select :relation_type, collection_for_relation_type_select, {}, :onchange => "setPredecessorFieldsVisibility();" %> | |
|
4 | <%= l(:label_issue) %> #<%= f.text_field :issue_to_id, :size => 6 %> | |
|
5 | <span id="predecessor_fields" style="display:none;"> | |
|
6 | <%= l(:field_delay) %>: <%= f.text_field :delay, :size => 3 %> <%= l(:label_day_plural) %> | |
|
7 | </span> | |
|
8 | <%= submit_tag l(:button_add) %></p> | |
|
9 | ||
|
10 | <%= javascript_tag "setPredecessorFieldsVisibility();" %> |
@@ -0,0 +1,22 | |||
|
1 | <h3><%=l(:label_related_issues)%></h3> | |
|
2 | ||
|
3 | <table style="width:100%"> | |
|
4 | <% @issue.relations.each do |relation| %> | |
|
5 | <tr> | |
|
6 | <td><%= l(relation.label_for(@issue)) %> <%= "(#{lwr(:actionview_datehelper_time_in_words_day, relation.delay)})" if relation.delay && relation.delay != 0 %> <%= link_to_issue relation.other_issue(@issue) %></td> | |
|
7 | <td><%=h relation.other_issue(@issue).subject %></td> | |
|
8 | <td><div class="square" style="background:#<%= relation.other_issue(@issue).status.html_color %>;"></div> <%= relation.other_issue(@issue).status.name %></td> | |
|
9 | <td><%= format_date(relation.other_issue(@issue).start_date) %></td> | |
|
10 | <td><%= format_date(relation.other_issue(@issue).due_date) %></td> | |
|
11 | <td><%= link_to_remote image_tag('delete.png'), { :url => {:controller => 'issue_relations', :action => 'destroy', :issue_id => @issue, :id => relation}, | |
|
12 | :method => :post | |
|
13 | }, :title => l(:label_relation_delete) %></td> | |
|
14 | </tr> | |
|
15 | <% end %> | |
|
16 | </table> | |
|
17 | ||
|
18 | <% if authorize_for('issue_relations', 'new') %> | |
|
19 | <% remote_form_for(:relation, @relation, :url => {:controller => 'issue_relations', :action => 'new', :issue_id => @issue}, :method => :post) do |f| %> | |
|
20 | <%= render :partial => 'issue_relations/form', :locals => {:f => f}%> | |
|
21 | <% end %> | |
|
22 | <% end %> |
@@ -0,0 +1,14 | |||
|
1 | class CreateIssueRelations < ActiveRecord::Migration | |
|
2 | def self.up | |
|
3 | create_table :issue_relations do |t| | |
|
4 | t.column :issue_from_id, :integer, :null => false | |
|
5 | t.column :issue_to_id, :integer, :null => false | |
|
6 | t.column :relation_type, :string, :default => "", :null => false | |
|
7 | t.column :delay, :integer | |
|
8 | end | |
|
9 | end | |
|
10 | ||
|
11 | def self.down | |
|
12 | drop_table :issue_relations | |
|
13 | end | |
|
14 | end |
@@ -0,0 +1,11 | |||
|
1 | class AddRelationsPermissions < ActiveRecord::Migration | |
|
2 | def self.up | |
|
3 | Permission.create :controller => "issue_relations", :action => "new", :description => "label_relation_new", :sort => 1080, :is_public => false, :mail_option => 0, :mail_enabled => 0 | |
|
4 | Permission.create :controller => "issue_relations", :action => "destroy", :description => "label_relation_delete", :sort => 1085, :is_public => false, :mail_option => 0, :mail_enabled => 0 | |
|
5 | end | |
|
6 | ||
|
7 | def self.down | |
|
8 | Permission.find_by_controller_and_action("issue_relations", "new").destroy | |
|
9 | Permission.find_by_controller_and_action("issue_relations", "destroy").destroy | |
|
10 | end | |
|
11 | end |
@@ -1,159 +1,161 | |||
|
1 | 1 | # redMine - project management software |
|
2 | 2 | # Copyright (C) 2006-2007 Jean-Philippe Lang |
|
3 | 3 | # |
|
4 | 4 | # This program is free software; you can redistribute it and/or |
|
5 | 5 | # modify it under the terms of the GNU General Public License |
|
6 | 6 | # as published by the Free Software Foundation; either version 2 |
|
7 | 7 | # of the License, or (at your option) any later version. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU General Public License |
|
15 | 15 | # along with this program; if not, write to the Free Software |
|
16 | 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
17 | 17 | |
|
18 | 18 | class IssuesController < ApplicationController |
|
19 | 19 | layout 'base', :except => :export_pdf |
|
20 | 20 | before_filter :find_project, :authorize |
|
21 | 21 | |
|
22 | 22 | helper :custom_fields |
|
23 | 23 | include CustomFieldsHelper |
|
24 | 24 | helper :ifpdf |
|
25 | 25 | include IfpdfHelper |
|
26 | helper :issue_relations | |
|
27 | include IssueRelationsHelper | |
|
26 | 28 | |
|
27 | 29 | def show |
|
28 | 30 | @status_options = @issue.status.find_new_statuses_allowed_to(logged_in_user.role_for_project(@project), @issue.tracker) if logged_in_user |
|
29 | 31 | @custom_values = @issue.custom_values.find(:all, :include => :custom_field) |
|
30 | 32 | @journals_count = @issue.journals.count |
|
31 | 33 | @journals = @issue.journals.find(:all, :include => [:user, :details], :limit => 15, :order => "#{Journal.table_name}.created_on desc") |
|
32 | 34 | end |
|
33 | 35 | |
|
34 | 36 | def history |
|
35 | 37 | @journals = @issue.journals.find(:all, :include => [:user, :details], :order => "#{Journal.table_name}.created_on desc") |
|
36 | 38 | @journals_count = @journals.length |
|
37 | 39 | end |
|
38 | 40 | |
|
39 | 41 | def export_pdf |
|
40 | 42 | @custom_values = @issue.custom_values.find(:all, :include => :custom_field) |
|
41 | 43 | @options_for_rfpdf ||= {} |
|
42 | 44 | @options_for_rfpdf[:file_name] = "#{@project.name}_#{@issue.long_id}.pdf" |
|
43 | 45 | end |
|
44 | 46 | |
|
45 | 47 | def edit |
|
46 | 48 | @priorities = Enumeration::get_values('IPRI') |
|
47 | 49 | if request.get? |
|
48 | 50 | @custom_values = @project.custom_fields_for_issues(@issue.tracker).collect { |x| @issue.custom_values.find_by_custom_field_id(x.id) || CustomValue.new(:custom_field => x, :customized => @issue) } |
|
49 | 51 | else |
|
50 | 52 | begin |
|
51 | 53 | @issue.init_journal(self.logged_in_user) |
|
52 | 54 | # Retrieve custom fields and values |
|
53 | 55 | @custom_values = @project.custom_fields_for_issues(@issue.tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue, :value => params["custom_fields"][x.id.to_s]) } |
|
54 | 56 | @issue.custom_values = @custom_values |
|
55 | 57 | @issue.attributes = params[:issue] |
|
56 | 58 | if @issue.save |
|
57 | 59 | flash[:notice] = l(:notice_successful_update) |
|
58 | 60 | redirect_to :action => 'show', :id => @issue |
|
59 | 61 | end |
|
60 | 62 | rescue ActiveRecord::StaleObjectError |
|
61 | 63 | # Optimistic locking exception |
|
62 | 64 | flash[:notice] = l(:notice_locking_conflict) |
|
63 | 65 | end |
|
64 | 66 | end |
|
65 | 67 | end |
|
66 | 68 | |
|
67 | 69 | def add_note |
|
68 | 70 | unless params[:notes].empty? |
|
69 | 71 | journal = @issue.init_journal(self.logged_in_user, params[:notes]) |
|
70 | 72 | if @issue.save |
|
71 | 73 | flash[:notice] = l(:notice_successful_update) |
|
72 | 74 | Mailer.deliver_issue_edit(journal) if Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled? |
|
73 | 75 | redirect_to :action => 'show', :id => @issue |
|
74 | 76 | return |
|
75 | 77 | end |
|
76 | 78 | end |
|
77 | 79 | show |
|
78 | 80 | render :action => 'show' |
|
79 | 81 | end |
|
80 | 82 | |
|
81 | 83 | def change_status |
|
82 | 84 | @status_options = @issue.status.find_new_statuses_allowed_to(logged_in_user.role_for_project(@project), @issue.tracker) if logged_in_user |
|
83 | 85 | @new_status = IssueStatus.find(params[:new_status_id]) |
|
84 | 86 | if params[:confirm] |
|
85 | 87 | begin |
|
86 | 88 | journal = @issue.init_journal(self.logged_in_user, params[:notes]) |
|
87 | 89 | @issue.status = @new_status |
|
88 | 90 | if @issue.update_attributes(params[:issue]) |
|
89 | 91 | # Save attachments |
|
90 | 92 | params[:attachments].each { |file| |
|
91 | 93 | next unless file.size > 0 |
|
92 | 94 | a = Attachment.create(:container => @issue, :file => file, :author => logged_in_user) |
|
93 | 95 | journal.details << JournalDetail.new(:property => 'attachment', |
|
94 | 96 | :prop_key => a.id, |
|
95 | 97 | :value => a.filename) unless a.new_record? |
|
96 | 98 | } if params[:attachments] and params[:attachments].is_a? Array |
|
97 | 99 | |
|
98 | 100 | flash[:notice] = l(:notice_successful_update) |
|
99 | 101 | Mailer.deliver_issue_edit(journal) if Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled? |
|
100 | 102 | redirect_to :action => 'show', :id => @issue |
|
101 | 103 | end |
|
102 | 104 | rescue ActiveRecord::StaleObjectError |
|
103 | 105 | # Optimistic locking exception |
|
104 | 106 | flash[:notice] = l(:notice_locking_conflict) |
|
105 | 107 | end |
|
106 | 108 | end |
|
107 | 109 | @assignable_to = @project.members.find(:all, :include => :user).collect{ |m| m.user } |
|
108 | 110 | end |
|
109 | 111 | |
|
110 | 112 | def destroy |
|
111 | 113 | @issue.destroy |
|
112 | 114 | redirect_to :controller => 'projects', :action => 'list_issues', :id => @project |
|
113 | 115 | end |
|
114 | 116 | |
|
115 | 117 | def add_attachment |
|
116 | 118 | # Save the attachments |
|
117 | 119 | @attachments = [] |
|
118 | 120 | journal = @issue.init_journal(self.logged_in_user) |
|
119 | 121 | params[:attachments].each { |file| |
|
120 | 122 | next unless file.size > 0 |
|
121 | 123 | a = Attachment.create(:container => @issue, :file => file, :author => logged_in_user) |
|
122 | 124 | @attachments << a unless a.new_record? |
|
123 | 125 | journal.details << JournalDetail.new(:property => 'attachment', |
|
124 | 126 | :prop_key => a.id, |
|
125 | 127 | :value => a.filename) unless a.new_record? |
|
126 | 128 | } if params[:attachments] and params[:attachments].is_a? Array |
|
127 | 129 | journal.save if journal.details.any? |
|
128 | 130 | Mailer.deliver_attachments_add(@attachments) if !@attachments.empty? and Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled? |
|
129 | 131 | redirect_to :action => 'show', :id => @issue |
|
130 | 132 | end |
|
131 | 133 | |
|
132 | 134 | def destroy_attachment |
|
133 | 135 | a = @issue.attachments.find(params[:attachment_id]) |
|
134 | 136 | a.destroy |
|
135 | 137 | journal = @issue.init_journal(self.logged_in_user) |
|
136 | 138 | journal.details << JournalDetail.new(:property => 'attachment', |
|
137 | 139 | :prop_key => a.id, |
|
138 | 140 | :old_value => a.filename) |
|
139 | 141 | journal.save |
|
140 | 142 | redirect_to :action => 'show', :id => @issue |
|
141 | 143 | end |
|
142 | 144 | |
|
143 | 145 | # Send the file in stream mode |
|
144 | 146 | def download |
|
145 | 147 | @attachment = @issue.attachments.find(params[:attachment_id]) |
|
146 | 148 | send_file @attachment.diskfile, :filename => @attachment.filename |
|
147 | 149 | rescue |
|
148 | 150 | render_404 |
|
149 | 151 | end |
|
150 | 152 | |
|
151 | 153 | private |
|
152 | 154 | def find_project |
|
153 | 155 | @issue = Issue.find(params[:id], :include => [:project, :tracker, :status, :author, :priority, :category]) |
|
154 | 156 | @project = @issue.project |
|
155 | 157 | @html_title = "#{@project.name} - #{@issue.tracker.name} ##{@issue.id}" |
|
156 | 158 | rescue ActiveRecord::RecordNotFound |
|
157 | 159 | render_404 |
|
158 | 160 | end |
|
159 | 161 | end |
@@ -1,667 +1,670 | |||
|
1 | 1 | # redMine - project management software |
|
2 | 2 | # Copyright (C) 2006-2007 Jean-Philippe Lang |
|
3 | 3 | # |
|
4 | 4 | # This program is free software; you can redistribute it and/or |
|
5 | 5 | # modify it under the terms of the GNU General Public License |
|
6 | 6 | # as published by the Free Software Foundation; either version 2 |
|
7 | 7 | # of the License, or (at your option) any later version. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU General Public License |
|
15 | 15 | # along with this program; if not, write to the Free Software |
|
16 | 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
17 | 17 | |
|
18 | 18 | require 'csv' |
|
19 | 19 | |
|
20 | 20 | class ProjectsController < ApplicationController |
|
21 | 21 | layout 'base' |
|
22 | 22 | before_filter :find_project, :authorize, :except => [ :index, :list, :add ] |
|
23 | 23 | before_filter :require_admin, :only => [ :add, :destroy ] |
|
24 | 24 | |
|
25 | 25 | helper :sort |
|
26 | 26 | include SortHelper |
|
27 | 27 | helper :custom_fields |
|
28 | 28 | include CustomFieldsHelper |
|
29 | 29 | helper :ifpdf |
|
30 | 30 | include IfpdfHelper |
|
31 | 31 | helper IssuesHelper |
|
32 | 32 | helper :queries |
|
33 | 33 | include QueriesHelper |
|
34 | 34 | |
|
35 | 35 | def index |
|
36 | 36 | list |
|
37 | 37 | render :action => 'list' unless request.xhr? |
|
38 | 38 | end |
|
39 | 39 | |
|
40 | 40 | # Lists public projects |
|
41 | 41 | def list |
|
42 | 42 | sort_init "#{Project.table_name}.name", "asc" |
|
43 | 43 | sort_update |
|
44 | 44 | @project_count = Project.count(:all, :conditions => Project.visible_by(logged_in_user)) |
|
45 | 45 | @project_pages = Paginator.new self, @project_count, |
|
46 | 46 | 15, |
|
47 | 47 | params['page'] |
|
48 | 48 | @projects = Project.find :all, :order => sort_clause, |
|
49 | 49 | :conditions => Project.visible_by(logged_in_user), |
|
50 | 50 | :include => :parent, |
|
51 | 51 | :limit => @project_pages.items_per_page, |
|
52 | 52 | :offset => @project_pages.current.offset |
|
53 | 53 | |
|
54 | 54 | render :action => "list", :layout => false if request.xhr? |
|
55 | 55 | end |
|
56 | 56 | |
|
57 | 57 | # Add a new project |
|
58 | 58 | def add |
|
59 | 59 | @custom_fields = IssueCustomField.find(:all) |
|
60 | 60 | @root_projects = Project.find(:all, :conditions => "parent_id is null") |
|
61 | 61 | @project = Project.new(params[:project]) |
|
62 | 62 | if request.get? |
|
63 | 63 | @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project) } |
|
64 | 64 | else |
|
65 | 65 | @project.custom_fields = CustomField.find(params[:custom_field_ids]) if params[:custom_field_ids] |
|
66 | 66 | @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) } |
|
67 | 67 | @project.custom_values = @custom_values |
|
68 | 68 | if params[:repository_enabled] && params[:repository_enabled] == "1" |
|
69 | 69 | @project.repository = Repository.new |
|
70 | 70 | @project.repository.attributes = params[:repository] |
|
71 | 71 | end |
|
72 | 72 | if "1" == params[:wiki_enabled] |
|
73 | 73 | @project.wiki = Wiki.new |
|
74 | 74 | @project.wiki.attributes = params[:wiki] |
|
75 | 75 | end |
|
76 | 76 | if @project.save |
|
77 | 77 | flash[:notice] = l(:notice_successful_create) |
|
78 | 78 | redirect_to :controller => 'admin', :action => 'projects' |
|
79 | 79 | end |
|
80 | 80 | end |
|
81 | 81 | end |
|
82 | 82 | |
|
83 | 83 | # Show @project |
|
84 | 84 | def show |
|
85 | 85 | @custom_values = @project.custom_values.find(:all, :include => :custom_field) |
|
86 | 86 | @members_by_role = @project.members.find(:all, :include => [:user, :role], :order => 'position').group_by {|m| m.role} |
|
87 | 87 | @subprojects = @project.children if @project.children.size > 0 |
|
88 | 88 | @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC") |
|
89 | 89 | @trackers = Tracker.find(:all, :order => 'position') |
|
90 | 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 | 91 | @total_issues_by_tracker = Issue.count(:group => :tracker, :conditions => ["project_id=?", @project.id]) |
|
92 | 92 | end |
|
93 | 93 | |
|
94 | 94 | def settings |
|
95 | 95 | @root_projects = Project::find(:all, :conditions => ["parent_id is null and id <> ?", @project.id]) |
|
96 | 96 | @custom_fields = IssueCustomField.find(:all) |
|
97 | 97 | @issue_category ||= IssueCategory.new |
|
98 | 98 | @member ||= @project.members.new |
|
99 | 99 | @roles = Role.find(:all, :order => 'position') |
|
100 | 100 | @users = User.find_active(:all) - @project.users |
|
101 | 101 | @custom_values ||= ProjectCustomField.find(:all).collect { |x| @project.custom_values.find_by_custom_field_id(x.id) || CustomValue.new(:custom_field => x) } |
|
102 | 102 | end |
|
103 | 103 | |
|
104 | 104 | # Edit @project |
|
105 | 105 | def edit |
|
106 | 106 | if request.post? |
|
107 | 107 | @project.custom_fields = IssueCustomField.find(params[:custom_field_ids]) if params[:custom_field_ids] |
|
108 | 108 | if params[:custom_fields] |
|
109 | 109 | @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) } |
|
110 | 110 | @project.custom_values = @custom_values |
|
111 | 111 | end |
|
112 | 112 | if params[:repository_enabled] |
|
113 | 113 | case params[:repository_enabled] |
|
114 | 114 | when "0" |
|
115 | 115 | @project.repository = nil |
|
116 | 116 | when "1" |
|
117 | 117 | @project.repository ||= Repository.new |
|
118 | 118 | @project.repository.update_attributes params[:repository] |
|
119 | 119 | end |
|
120 | 120 | end |
|
121 | 121 | if params[:wiki_enabled] |
|
122 | 122 | case params[:wiki_enabled] |
|
123 | 123 | when "0" |
|
124 | 124 | @project.wiki.destroy if @project.wiki |
|
125 | 125 | when "1" |
|
126 | 126 | @project.wiki ||= Wiki.new |
|
127 | 127 | @project.wiki.update_attributes params[:wiki] |
|
128 | 128 | end |
|
129 | 129 | end |
|
130 | 130 | @project.attributes = params[:project] |
|
131 | 131 | if @project.save |
|
132 | 132 | flash[:notice] = l(:notice_successful_update) |
|
133 | 133 | redirect_to :action => 'settings', :id => @project |
|
134 | 134 | else |
|
135 | 135 | settings |
|
136 | 136 | render :action => 'settings' |
|
137 | 137 | end |
|
138 | 138 | end |
|
139 | 139 | end |
|
140 | 140 | |
|
141 | 141 | # Delete @project |
|
142 | 142 | def destroy |
|
143 | 143 | if request.post? and params[:confirm] |
|
144 | 144 | @project.destroy |
|
145 | 145 | redirect_to :controller => 'admin', :action => 'projects' |
|
146 | 146 | end |
|
147 | 147 | end |
|
148 | 148 | |
|
149 | 149 | # Add a new issue category to @project |
|
150 | 150 | def add_issue_category |
|
151 | 151 | if request.post? |
|
152 | 152 | @issue_category = @project.issue_categories.build(params[:issue_category]) |
|
153 | 153 | if @issue_category.save |
|
154 | 154 | flash[:notice] = l(:notice_successful_create) |
|
155 | 155 | redirect_to :action => 'settings', :tab => 'categories', :id => @project |
|
156 | 156 | else |
|
157 | 157 | settings |
|
158 | 158 | render :action => 'settings' |
|
159 | 159 | end |
|
160 | 160 | end |
|
161 | 161 | end |
|
162 | 162 | |
|
163 | 163 | # Add a new version to @project |
|
164 | 164 | def add_version |
|
165 | 165 | @version = @project.versions.build(params[:version]) |
|
166 | 166 | if request.post? and @version.save |
|
167 | 167 | flash[:notice] = l(:notice_successful_create) |
|
168 | 168 | redirect_to :action => 'settings', :tab => 'versions', :id => @project |
|
169 | 169 | end |
|
170 | 170 | end |
|
171 | 171 | |
|
172 | 172 | # Add a new member to @project |
|
173 | 173 | def add_member |
|
174 | 174 | @member = @project.members.build(params[:member]) |
|
175 | 175 | if request.post? |
|
176 | 176 | if @member.save |
|
177 | 177 | flash[:notice] = l(:notice_successful_create) |
|
178 | 178 | redirect_to :action => 'settings', :tab => 'members', :id => @project |
|
179 | 179 | else |
|
180 | 180 | settings |
|
181 | 181 | render :action => 'settings' |
|
182 | 182 | end |
|
183 | 183 | end |
|
184 | 184 | end |
|
185 | 185 | |
|
186 | 186 | # Show members list of @project |
|
187 | 187 | def list_members |
|
188 | 188 | @members = @project.members.find(:all) |
|
189 | 189 | end |
|
190 | 190 | |
|
191 | 191 | # Add a new document to @project |
|
192 | 192 | def add_document |
|
193 | 193 | @categories = Enumeration::get_values('DCAT') |
|
194 | 194 | @document = @project.documents.build(params[:document]) |
|
195 | 195 | if request.post? and @document.save |
|
196 | 196 | # Save the attachments |
|
197 | 197 | params[:attachments].each { |a| |
|
198 | 198 | Attachment.create(:container => @document, :file => a, :author => logged_in_user) unless a.size == 0 |
|
199 | 199 | } if params[:attachments] and params[:attachments].is_a? Array |
|
200 | 200 | flash[:notice] = l(:notice_successful_create) |
|
201 | 201 | Mailer.deliver_document_add(@document) if Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled? |
|
202 | 202 | redirect_to :action => 'list_documents', :id => @project |
|
203 | 203 | end |
|
204 | 204 | end |
|
205 | 205 | |
|
206 | 206 | # Show documents list of @project |
|
207 | 207 | def list_documents |
|
208 | 208 | @documents = @project.documents.find :all, :include => :category |
|
209 | 209 | end |
|
210 | 210 | |
|
211 | 211 | # Add a new issue to @project |
|
212 | 212 | def add_issue |
|
213 | 213 | @tracker = Tracker.find(params[:tracker_id]) |
|
214 | 214 | @priorities = Enumeration::get_values('IPRI') |
|
215 | 215 | |
|
216 | 216 | default_status = IssueStatus.default |
|
217 | 217 | @issue = Issue.new(:project => @project, :tracker => @tracker) |
|
218 | 218 | @issue.status = default_status |
|
219 | 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 | 220 | if request.get? |
|
221 | 221 | @issue.start_date = Date.today |
|
222 | 222 | @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue) } |
|
223 | 223 | else |
|
224 | 224 | @issue.attributes = params[:issue] |
|
225 | 225 | |
|
226 | 226 | requested_status = IssueStatus.find_by_id(params[:issue][:status_id]) |
|
227 | 227 | @issue.status = (@allowed_statuses.include? requested_status) ? requested_status : default_status |
|
228 | 228 | |
|
229 | 229 | @issue.author_id = self.logged_in_user.id if self.logged_in_user |
|
230 | 230 | # Multiple file upload |
|
231 | 231 | @attachments = [] |
|
232 | 232 | params[:attachments].each { |a| |
|
233 | 233 | @attachments << Attachment.new(:container => @issue, :file => a, :author => logged_in_user) unless a.size == 0 |
|
234 | 234 | } if params[:attachments] and params[:attachments].is_a? Array |
|
235 | 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 | 236 | @issue.custom_values = @custom_values |
|
237 | 237 | if @issue.save |
|
238 | 238 | @attachments.each(&:save) |
|
239 | 239 | flash[:notice] = l(:notice_successful_create) |
|
240 | 240 | Mailer.deliver_issue_add(@issue) if Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled? |
|
241 | 241 | redirect_to :action => 'list_issues', :id => @project |
|
242 | 242 | end |
|
243 | 243 | end |
|
244 | 244 | end |
|
245 | 245 | |
|
246 | 246 | # Show filtered/sorted issues list of @project |
|
247 | 247 | def list_issues |
|
248 | 248 | sort_init "#{Issue.table_name}.id", "desc" |
|
249 | 249 | sort_update |
|
250 | 250 | |
|
251 | 251 | retrieve_query |
|
252 | 252 | |
|
253 | 253 | @results_per_page_options = [ 15, 25, 50, 100 ] |
|
254 | 254 | if params[:per_page] and @results_per_page_options.include? params[:per_page].to_i |
|
255 | 255 | @results_per_page = params[:per_page].to_i |
|
256 | 256 | session[:results_per_page] = @results_per_page |
|
257 | 257 | else |
|
258 | 258 | @results_per_page = session[:results_per_page] || 25 |
|
259 | 259 | end |
|
260 | 260 | |
|
261 | 261 | if @query.valid? |
|
262 | 262 | @issue_count = Issue.count(:include => [:status, :project, :custom_values], :conditions => @query.statement) |
|
263 | 263 | @issue_pages = Paginator.new self, @issue_count, @results_per_page, params['page'] |
|
264 | 264 | @issues = Issue.find :all, :order => sort_clause, |
|
265 | 265 | :include => [ :assigned_to, :status, :tracker, :project, :priority, :custom_values ], |
|
266 | 266 | :conditions => @query.statement, |
|
267 | 267 | :limit => @issue_pages.items_per_page, |
|
268 | 268 | :offset => @issue_pages.current.offset |
|
269 | 269 | end |
|
270 | 270 | @trackers = Tracker.find :all, :order => 'position' |
|
271 | 271 | render :layout => false if request.xhr? |
|
272 | 272 | end |
|
273 | 273 | |
|
274 | 274 | # Export filtered/sorted issues list to CSV |
|
275 | 275 | def export_issues_csv |
|
276 | 276 | sort_init "#{Issue.table_name}.id", "desc" |
|
277 | 277 | sort_update |
|
278 | 278 | |
|
279 | 279 | retrieve_query |
|
280 | 280 | render :action => 'list_issues' and return unless @query.valid? |
|
281 | 281 | |
|
282 | 282 | @issues = Issue.find :all, :order => sort_clause, |
|
283 | 283 | :include => [ :assigned_to, :author, :status, :tracker, :priority, :project, {:custom_values => :custom_field} ], |
|
284 | 284 | :conditions => @query.statement, |
|
285 | 285 | :limit => Setting.issues_export_limit |
|
286 | 286 | |
|
287 | 287 | ic = Iconv.new(l(:general_csv_encoding), 'UTF-8') |
|
288 | 288 | export = StringIO.new |
|
289 | 289 | CSV::Writer.generate(export, l(:general_csv_separator)) do |csv| |
|
290 | 290 | # csv header fields |
|
291 | 291 | headers = [ "#", l(:field_status), |
|
292 | 292 | l(:field_project), |
|
293 | 293 | l(:field_tracker), |
|
294 | 294 | l(:field_priority), |
|
295 | 295 | l(:field_subject), |
|
296 | 296 | l(:field_assigned_to), |
|
297 | 297 | l(:field_author), |
|
298 | 298 | l(:field_start_date), |
|
299 | 299 | l(:field_due_date), |
|
300 | 300 | l(:field_done_ratio), |
|
301 | 301 | l(:field_created_on), |
|
302 | 302 | l(:field_updated_on) |
|
303 | 303 | ] |
|
304 | 304 | for custom_field in @project.all_custom_fields |
|
305 | 305 | headers << custom_field.name |
|
306 | 306 | end |
|
307 | 307 | csv << headers.collect {|c| ic.iconv(c) } |
|
308 | 308 | # csv lines |
|
309 | 309 | @issues.each do |issue| |
|
310 | 310 | fields = [issue.id, issue.status.name, |
|
311 | 311 | issue.project.name, |
|
312 | 312 | issue.tracker.name, |
|
313 | 313 | issue.priority.name, |
|
314 | 314 | issue.subject, |
|
315 | 315 | (issue.assigned_to ? issue.assigned_to.name : ""), |
|
316 | 316 | issue.author.name, |
|
317 | 317 | issue.start_date ? l_date(issue.start_date) : nil, |
|
318 | 318 | issue.due_date ? l_date(issue.due_date) : nil, |
|
319 | 319 | issue.done_ratio, |
|
320 | 320 | l_datetime(issue.created_on), |
|
321 | 321 | l_datetime(issue.updated_on) |
|
322 | 322 | ] |
|
323 | 323 | for custom_field in @project.all_custom_fields |
|
324 | 324 | fields << (show_value issue.custom_value_for(custom_field)) |
|
325 | 325 | end |
|
326 | 326 | csv << fields.collect {|c| ic.iconv(c.to_s) } |
|
327 | 327 | end |
|
328 | 328 | end |
|
329 | 329 | export.rewind |
|
330 | 330 | send_data(export.read, :type => 'text/csv; header=present', :filename => 'export.csv') |
|
331 | 331 | end |
|
332 | 332 | |
|
333 | 333 | # Export filtered/sorted issues to PDF |
|
334 | 334 | def export_issues_pdf |
|
335 | 335 | sort_init "#{Issue.table_name}.id", "desc" |
|
336 | 336 | sort_update |
|
337 | 337 | |
|
338 | 338 | retrieve_query |
|
339 | 339 | render :action => 'list_issues' and return unless @query.valid? |
|
340 | 340 | |
|
341 | 341 | @issues = Issue.find :all, :order => sort_clause, |
|
342 | 342 | :include => [ :author, :status, :tracker, :priority, :project, :custom_values ], |
|
343 | 343 | :conditions => @query.statement, |
|
344 | 344 | :limit => Setting.issues_export_limit |
|
345 | 345 | |
|
346 | 346 | @options_for_rfpdf ||= {} |
|
347 | 347 | @options_for_rfpdf[:file_name] = "export.pdf" |
|
348 | 348 | render :layout => false |
|
349 | 349 | end |
|
350 | 350 | |
|
351 | 351 | def move_issues |
|
352 | 352 | @issues = @project.issues.find(params[:issue_ids]) if params[:issue_ids] |
|
353 | 353 | redirect_to :action => 'list_issues', :id => @project and return unless @issues |
|
354 | 354 | @projects = [] |
|
355 | 355 | # find projects to which the user is allowed to move the issue |
|
356 | 356 | @logged_in_user.memberships.each {|m| @projects << m.project if Permission.allowed_to_role("projects/move_issues", m.role)} |
|
357 | 357 | # issue can be moved to any tracker |
|
358 | 358 | @trackers = Tracker.find(:all) |
|
359 | 359 | if request.post? and params[:new_project_id] and params[:new_tracker_id] |
|
360 | 360 | new_project = Project.find(params[:new_project_id]) |
|
361 | 361 | new_tracker = Tracker.find(params[:new_tracker_id]) |
|
362 | 362 | @issues.each { |i| |
|
363 | 363 | # project dependent properties |
|
364 | 364 | unless i.project_id == new_project.id |
|
365 | 365 | i.category = nil |
|
366 | 366 | i.fixed_version = nil |
|
367 | # delete issue relations | |
|
368 | i.relations_from.clear | |
|
369 | i.relations_to.clear | |
|
367 | 370 | end |
|
368 | 371 | # move the issue |
|
369 | 372 | i.project = new_project |
|
370 | 373 | i.tracker = new_tracker |
|
371 | 374 | i.save |
|
372 | 375 | } |
|
373 | 376 | flash[:notice] = l(:notice_successful_update) |
|
374 | 377 | redirect_to :action => 'list_issues', :id => @project |
|
375 | 378 | end |
|
376 | 379 | end |
|
377 | 380 | |
|
378 | 381 | def add_query |
|
379 | 382 | @query = Query.new(params[:query]) |
|
380 | 383 | @query.project = @project |
|
381 | 384 | @query.user = logged_in_user |
|
382 | 385 | |
|
383 | 386 | params[:fields].each do |field| |
|
384 | 387 | @query.add_filter(field, params[:operators][field], params[:values][field]) |
|
385 | 388 | end if params[:fields] |
|
386 | 389 | |
|
387 | 390 | if request.post? and @query.save |
|
388 | 391 | flash[:notice] = l(:notice_successful_create) |
|
389 | 392 | redirect_to :controller => 'reports', :action => 'issue_report', :id => @project |
|
390 | 393 | end |
|
391 | 394 | render :layout => false if request.xhr? |
|
392 | 395 | end |
|
393 | 396 | |
|
394 | 397 | # Add a news to @project |
|
395 | 398 | def add_news |
|
396 | 399 | @news = News.new(:project => @project) |
|
397 | 400 | if request.post? |
|
398 | 401 | @news.attributes = params[:news] |
|
399 | 402 | @news.author_id = self.logged_in_user.id if self.logged_in_user |
|
400 | 403 | if @news.save |
|
401 | 404 | flash[:notice] = l(:notice_successful_create) |
|
402 | 405 | redirect_to :action => 'list_news', :id => @project |
|
403 | 406 | end |
|
404 | 407 | end |
|
405 | 408 | end |
|
406 | 409 | |
|
407 | 410 | # Show news list of @project |
|
408 | 411 | def list_news |
|
409 | 412 | @news_pages, @news = paginate :news, :per_page => 10, :conditions => ["project_id=?", @project.id], :include => :author, :order => "#{News.table_name}.created_on DESC" |
|
410 | 413 | render :action => "list_news", :layout => false if request.xhr? |
|
411 | 414 | end |
|
412 | 415 | |
|
413 | 416 | def add_file |
|
414 | 417 | if request.post? |
|
415 | 418 | @version = @project.versions.find_by_id(params[:version_id]) |
|
416 | 419 | # Save the attachments |
|
417 | 420 | @attachments = [] |
|
418 | 421 | params[:attachments].each { |file| |
|
419 | 422 | next unless file.size > 0 |
|
420 | 423 | a = Attachment.create(:container => @version, :file => file, :author => logged_in_user) |
|
421 | 424 | @attachments << a unless a.new_record? |
|
422 | 425 | } if params[:attachments] and params[:attachments].is_a? Array |
|
423 | 426 | Mailer.deliver_attachments_add(@attachments) if !@attachments.empty? and Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled? |
|
424 | 427 | redirect_to :controller => 'projects', :action => 'list_files', :id => @project |
|
425 | 428 | end |
|
426 | 429 | @versions = @project.versions |
|
427 | 430 | end |
|
428 | 431 | |
|
429 | 432 | def list_files |
|
430 | 433 | @versions = @project.versions |
|
431 | 434 | end |
|
432 | 435 | |
|
433 | 436 | # Show changelog for @project |
|
434 | 437 | def changelog |
|
435 | 438 | @trackers = Tracker.find(:all, :conditions => ["is_in_chlog=?", true], :order => 'position') |
|
436 | 439 | retrieve_selected_tracker_ids(@trackers) |
|
437 | 440 | |
|
438 | 441 | @fixed_issues = @project.issues.find(:all, |
|
439 | 442 | :include => [ :fixed_version, :status, :tracker ], |
|
440 | 443 | :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], |
|
441 | 444 | :order => "#{Version.table_name}.effective_date DESC, #{Issue.table_name}.id DESC" |
|
442 | 445 | ) unless @selected_tracker_ids.empty? |
|
443 | 446 | @fixed_issues ||= [] |
|
444 | 447 | end |
|
445 | 448 | |
|
446 | 449 | def roadmap |
|
447 | 450 | @trackers = Tracker.find(:all, :conditions => ["is_in_roadmap=?", true], :order => 'position') |
|
448 | 451 | retrieve_selected_tracker_ids(@trackers) |
|
449 | 452 | |
|
450 | 453 | @versions = @project.versions.find(:all, |
|
451 | 454 | :conditions => [ "#{Version.table_name}.effective_date>?", Date.today], |
|
452 | 455 | :order => "#{Version.table_name}.effective_date ASC" |
|
453 | 456 | ) |
|
454 | 457 | end |
|
455 | 458 | |
|
456 | 459 | def activity |
|
457 | 460 | if params[:year] and params[:year].to_i > 1900 |
|
458 | 461 | @year = params[:year].to_i |
|
459 | 462 | if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13 |
|
460 | 463 | @month = params[:month].to_i |
|
461 | 464 | end |
|
462 | 465 | end |
|
463 | 466 | @year ||= Date.today.year |
|
464 | 467 | @month ||= Date.today.month |
|
465 | 468 | |
|
466 | 469 | @date_from = Date.civil(@year, @month, 1) |
|
467 | 470 | @date_to = @date_from >> 1 |
|
468 | 471 | |
|
469 | 472 | @events_by_day = {} |
|
470 | 473 | |
|
471 | 474 | unless params[:show_issues] == "0" |
|
472 | 475 | @project.issues.find(:all, :include => [:author], :conditions => ["#{Issue.table_name}.created_on>=? and #{Issue.table_name}.created_on<=?", @date_from, @date_to] ).each { |i| |
|
473 | 476 | @events_by_day[i.created_on.to_date] ||= [] |
|
474 | 477 | @events_by_day[i.created_on.to_date] << i |
|
475 | 478 | } |
|
476 | 479 | @show_issues = 1 |
|
477 | 480 | end |
|
478 | 481 | |
|
479 | 482 | unless params[:show_news] == "0" |
|
480 | 483 | @project.news.find(:all, :conditions => ["#{News.table_name}.created_on>=? and #{News.table_name}.created_on<=?", @date_from, @date_to], :include => :author ).each { |i| |
|
481 | 484 | @events_by_day[i.created_on.to_date] ||= [] |
|
482 | 485 | @events_by_day[i.created_on.to_date] << i |
|
483 | 486 | } |
|
484 | 487 | @show_news = 1 |
|
485 | 488 | end |
|
486 | 489 | |
|
487 | 490 | unless params[:show_files] == "0" |
|
488 | 491 | 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| |
|
489 | 492 | @events_by_day[i.created_on.to_date] ||= [] |
|
490 | 493 | @events_by_day[i.created_on.to_date] << i |
|
491 | 494 | } |
|
492 | 495 | @show_files = 1 |
|
493 | 496 | end |
|
494 | 497 | |
|
495 | 498 | unless params[:show_documents] == "0" |
|
496 | 499 | @project.documents.find(:all, :conditions => ["#{Document.table_name}.created_on>=? and #{Document.table_name}.created_on<=?", @date_from, @date_to] ).each { |i| |
|
497 | 500 | @events_by_day[i.created_on.to_date] ||= [] |
|
498 | 501 | @events_by_day[i.created_on.to_date] << i |
|
499 | 502 | } |
|
500 | 503 | 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| |
|
501 | 504 | @events_by_day[i.created_on.to_date] ||= [] |
|
502 | 505 | @events_by_day[i.created_on.to_date] << i |
|
503 | 506 | } |
|
504 | 507 | @show_documents = 1 |
|
505 | 508 | end |
|
506 | 509 | |
|
507 | 510 | unless params[:show_wiki_edits] == "0" |
|
508 | 511 | select = "#{WikiContent.versioned_table_name}.updated_on, #{WikiContent.versioned_table_name}.comments, " + |
|
509 | 512 | "#{WikiContent.versioned_table_name}.#{WikiContent.version_column}, #{WikiPage.table_name}.title" |
|
510 | 513 | joins = "LEFT JOIN #{WikiPage.table_name} ON #{WikiPage.table_name}.id = #{WikiContent.versioned_table_name}.page_id " + |
|
511 | 514 | "LEFT JOIN #{Wiki.table_name} ON #{Wiki.table_name}.id = #{WikiPage.table_name}.wiki_id " |
|
512 | 515 | conditions = ["#{Wiki.table_name}.project_id = ? AND #{WikiContent.versioned_table_name}.updated_on BETWEEN ? AND ?", |
|
513 | 516 | @project.id, @date_from, @date_to] |
|
514 | 517 | |
|
515 | 518 | WikiContent.versioned_class.find(:all, :select => select, :joins => joins, :conditions => conditions).each { |i| |
|
516 | 519 | # We provide this alias so all events can be treated in the same manner |
|
517 | 520 | def i.created_on |
|
518 | 521 | self.updated_on |
|
519 | 522 | end |
|
520 | 523 | |
|
521 | 524 | @events_by_day[i.created_on.to_date] ||= [] |
|
522 | 525 | @events_by_day[i.created_on.to_date] << i |
|
523 | 526 | } |
|
524 | 527 | @show_wiki_edits = 1 |
|
525 | 528 | end |
|
526 | 529 | |
|
527 | 530 | unless @project.repository.nil? || params[:show_changesets] == "0" |
|
528 | 531 | @project.repository.changesets.find(:all, :conditions => ["#{Changeset.table_name}.committed_on BETWEEN ? AND ?", @date_from, @date_to]).each { |i| |
|
529 | 532 | def i.created_on |
|
530 | 533 | self.committed_on |
|
531 | 534 | end |
|
532 | 535 | @events_by_day[i.created_on.to_date] ||= [] |
|
533 | 536 | @events_by_day[i.created_on.to_date] << i |
|
534 | 537 | } |
|
535 | 538 | @show_changesets = 1 |
|
536 | 539 | end |
|
537 | 540 | |
|
538 | 541 | render :layout => false if request.xhr? |
|
539 | 542 | end |
|
540 | 543 | |
|
541 | 544 | def calendar |
|
542 | 545 | @trackers = Tracker.find(:all, :order => 'position') |
|
543 | 546 | retrieve_selected_tracker_ids(@trackers) |
|
544 | 547 | |
|
545 | 548 | if params[:year] and params[:year].to_i > 1900 |
|
546 | 549 | @year = params[:year].to_i |
|
547 | 550 | if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13 |
|
548 | 551 | @month = params[:month].to_i |
|
549 | 552 | end |
|
550 | 553 | end |
|
551 | 554 | @year ||= Date.today.year |
|
552 | 555 | @month ||= Date.today.month |
|
553 | 556 | |
|
554 | 557 | @date_from = Date.civil(@year, @month, 1) |
|
555 | 558 | @date_to = (@date_from >> 1)-1 |
|
556 | 559 | # start on monday |
|
557 | 560 | @date_from = @date_from - (@date_from.cwday-1) |
|
558 | 561 | # finish on sunday |
|
559 | 562 | @date_to = @date_to + (7-@date_to.cwday) |
|
560 | 563 | |
|
561 | 564 | @events = [] |
|
562 | 565 | @project.issues_with_subprojects(params[:with_subprojects]) do |
|
563 | 566 | @events += Issue.find(:all, |
|
564 | 567 | :include => [:tracker, :status, :assigned_to, :priority, :project], |
|
565 | 568 | :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] |
|
566 | 569 | ) unless @selected_tracker_ids.empty? |
|
567 | 570 | end |
|
568 | 571 | @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to]) |
|
569 | 572 | |
|
570 | 573 | @ending_events_by_days = @events.group_by {|event| event.due_date} |
|
571 | 574 | @starting_events_by_days = @events.group_by {|event| event.start_date} |
|
572 | 575 | |
|
573 | 576 | render :layout => false if request.xhr? |
|
574 | 577 | end |
|
575 | 578 | |
|
576 | 579 | def gantt |
|
577 | 580 | @trackers = Tracker.find(:all, :order => 'position') |
|
578 | 581 | retrieve_selected_tracker_ids(@trackers) |
|
579 | 582 | |
|
580 | 583 | if params[:year] and params[:year].to_i >0 |
|
581 | 584 | @year_from = params[:year].to_i |
|
582 | 585 | if params[:month] and params[:month].to_i >=1 and params[:month].to_i <= 12 |
|
583 | 586 | @month_from = params[:month].to_i |
|
584 | 587 | else |
|
585 | 588 | @month_from = 1 |
|
586 | 589 | end |
|
587 | 590 | else |
|
588 | 591 | @month_from ||= (Date.today << 1).month |
|
589 | 592 | @year_from ||= (Date.today << 1).year |
|
590 | 593 | end |
|
591 | 594 | |
|
592 | 595 | @zoom = (params[:zoom].to_i > 0 and params[:zoom].to_i < 5) ? params[:zoom].to_i : 2 |
|
593 | 596 | @months = (params[:months].to_i > 0 and params[:months].to_i < 25) ? params[:months].to_i : 6 |
|
594 | 597 | |
|
595 | 598 | @date_from = Date.civil(@year_from, @month_from, 1) |
|
596 | 599 | @date_to = (@date_from >> @months) - 1 |
|
597 | 600 | |
|
598 | 601 | @events = [] |
|
599 | 602 | @project.issues_with_subprojects(params[:with_subprojects]) do |
|
600 | 603 | @events += Issue.find(:all, |
|
601 | 604 | :order => "start_date, due_date", |
|
602 | 605 | :include => [:tracker, :status, :assigned_to, :priority, :project], |
|
603 | 606 | :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] |
|
604 | 607 | ) unless @selected_tracker_ids.empty? |
|
605 | 608 | end |
|
606 | 609 | @events += @project.versions.find(:all, :conditions => ["effective_date BETWEEN ? AND ?", @date_from, @date_to]) |
|
607 | 610 | @events.sort! {|x,y| x.start_date <=> y.start_date } |
|
608 | 611 | |
|
609 | 612 | if params[:output]=='pdf' |
|
610 | 613 | @options_for_rfpdf ||= {} |
|
611 | 614 | @options_for_rfpdf[:file_name] = "gantt.pdf" |
|
612 | 615 | render :template => "projects/gantt.rfpdf", :layout => false |
|
613 | 616 | else |
|
614 | 617 | render :template => "projects/gantt.rhtml" |
|
615 | 618 | end |
|
616 | 619 | end |
|
617 | 620 | |
|
618 | 621 | def feeds |
|
619 | 622 | @queries = @project.queries.find :all, :conditions => ["is_public=? or user_id=?", true, (logged_in_user ? logged_in_user.id : 0)] |
|
620 | 623 | @key = logged_in_user.get_or_create_rss_key.value if logged_in_user |
|
621 | 624 | end |
|
622 | 625 | |
|
623 | 626 | private |
|
624 | 627 | # Find project of id params[:id] |
|
625 | 628 | # if not found, redirect to project list |
|
626 | 629 | # Used as a before_filter |
|
627 | 630 | def find_project |
|
628 | 631 | @project = Project.find(params[:id]) |
|
629 | 632 | @html_title = @project.name |
|
630 | 633 | rescue ActiveRecord::RecordNotFound |
|
631 | 634 | render_404 |
|
632 | 635 | end |
|
633 | 636 | |
|
634 | 637 | def retrieve_selected_tracker_ids(selectable_trackers) |
|
635 | 638 | if ids = params[:tracker_ids] |
|
636 | 639 | @selected_tracker_ids = (ids.is_a? Array) ? ids.collect { |id| id.to_i.to_s } : ids.split('/').collect { |id| id.to_i.to_s } |
|
637 | 640 | else |
|
638 | 641 | @selected_tracker_ids = selectable_trackers.collect {|t| t.id.to_s } |
|
639 | 642 | end |
|
640 | 643 | end |
|
641 | 644 | |
|
642 | 645 | # Retrieve query from session or build a new query |
|
643 | 646 | def retrieve_query |
|
644 | 647 | if params[:query_id] |
|
645 | 648 | @query = @project.queries.find(params[:query_id]) |
|
646 | 649 | session[:query] = @query |
|
647 | 650 | else |
|
648 | 651 | if params[:set_filter] or !session[:query] or session[:query].project_id != @project.id |
|
649 | 652 | # Give it a name, required to be valid |
|
650 | 653 | @query = Query.new(:name => "_") |
|
651 | 654 | @query.project = @project |
|
652 | 655 | if params[:fields] and params[:fields].is_a? Array |
|
653 | 656 | params[:fields].each do |field| |
|
654 | 657 | @query.add_filter(field, params[:operators][field], params[:values][field]) |
|
655 | 658 | end |
|
656 | 659 | else |
|
657 | 660 | @query.available_filters.keys.each do |field| |
|
658 | 661 | @query.add_short_filter(field, params[field]) if params[field] |
|
659 | 662 | end |
|
660 | 663 | end |
|
661 | 664 | session[:query] = @query |
|
662 | 665 | else |
|
663 | 666 | @query = session[:query] |
|
664 | 667 | end |
|
665 | 668 | end |
|
666 | 669 | end |
|
667 | 670 | end |
@@ -1,109 +1,128 | |||
|
1 | 1 | # redMine - project management software |
|
2 | # Copyright (C) 2006 Jean-Philippe Lang | |
|
2 | # Copyright (C) 2006-2007 Jean-Philippe Lang | |
|
3 | 3 | # |
|
4 | 4 | # This program is free software; you can redistribute it and/or |
|
5 | 5 | # modify it under the terms of the GNU General Public License |
|
6 | 6 | # as published by the Free Software Foundation; either version 2 |
|
7 | 7 | # of the License, or (at your option) any later version. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU General Public License |
|
15 | 15 | # along with this program; if not, write to the Free Software |
|
16 | 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
17 | 17 | |
|
18 | 18 | class Issue < ActiveRecord::Base |
|
19 | ||
|
20 | 19 | belongs_to :project |
|
21 | 20 | belongs_to :tracker |
|
22 | 21 | belongs_to :status, :class_name => 'IssueStatus', :foreign_key => 'status_id' |
|
23 | 22 | belongs_to :author, :class_name => 'User', :foreign_key => 'author_id' |
|
24 | 23 | belongs_to :assigned_to, :class_name => 'User', :foreign_key => 'assigned_to_id' |
|
25 | 24 | belongs_to :fixed_version, :class_name => 'Version', :foreign_key => 'fixed_version_id' |
|
26 | 25 | belongs_to :priority, :class_name => 'Enumeration', :foreign_key => 'priority_id' |
|
27 | 26 | belongs_to :category, :class_name => 'IssueCategory', :foreign_key => 'category_id' |
|
28 | 27 | |
|
29 | 28 | has_many :journals, :as => :journalized, :dependent => :destroy |
|
30 | 29 | has_many :attachments, :as => :container, :dependent => :destroy |
|
31 | 30 | has_many :time_entries |
|
32 | 31 | has_many :custom_values, :dependent => :delete_all, :as => :customized |
|
33 | 32 | has_many :custom_fields, :through => :custom_values |
|
34 | 33 | has_and_belongs_to_many :changesets, :order => "revision ASC" |
|
35 | 34 | |
|
35 | has_many :relations_from, :class_name => 'IssueRelation', :foreign_key => 'issue_from_id', :dependent => :delete_all | |
|
36 | has_many :relations_to, :class_name => 'IssueRelation', :foreign_key => 'issue_to_id', :dependent => :delete_all | |
|
37 | ||
|
36 | 38 | acts_as_watchable |
|
37 | 39 | |
|
38 | 40 | validates_presence_of :subject, :description, :priority, :tracker, :author, :status |
|
39 | 41 | validates_inclusion_of :done_ratio, :in => 0..100 |
|
40 | 42 | validates_associated :custom_values, :on => :update |
|
41 | 43 | |
|
42 | 44 | # set default status for new issues |
|
43 | 45 | def before_validation |
|
44 | 46 | self.status = IssueStatus.default if status.nil? |
|
45 | 47 | end |
|
46 | 48 | |
|
47 | 49 | def validate |
|
48 | 50 | if self.due_date.nil? && @attributes['due_date'] && !@attributes['due_date'].empty? |
|
49 | 51 | errors.add :due_date, :activerecord_error_not_a_date |
|
50 | 52 | end |
|
51 | 53 | |
|
52 | 54 | if self.due_date and self.start_date and self.due_date < self.start_date |
|
53 | 55 | errors.add :due_date, :activerecord_error_greater_than_start_date |
|
54 | 56 | end |
|
57 | ||
|
58 | if start_date && soonest_start && start_date < soonest_start | |
|
59 | errors.add :start_date, :activerecord_error_invalid | |
|
60 | end | |
|
55 | 61 | end |
|
56 | ||
|
57 | #def before_create | |
|
58 | # build_history | |
|
59 | #end | |
|
60 | 62 | |
|
61 | def before_save | |
|
63 | def before_save | |
|
62 | 64 | if @current_journal |
|
63 | 65 | # attributes changes |
|
64 | 66 | (Issue.column_names - %w(id description)).each {|c| |
|
65 | 67 | @current_journal.details << JournalDetail.new(:property => 'attr', |
|
66 | 68 | :prop_key => c, |
|
67 | 69 | :old_value => @issue_before_change.send(c), |
|
68 | 70 | :value => send(c)) unless send(c)==@issue_before_change.send(c) |
|
69 | 71 | } |
|
70 | 72 | # custom fields changes |
|
71 | 73 | custom_values.each {|c| |
|
72 | 74 | @current_journal.details << JournalDetail.new(:property => 'cf', |
|
73 | 75 | :prop_key => c.custom_field_id, |
|
74 | 76 | :old_value => @custom_values_before_change[c.custom_field_id], |
|
75 | 77 | :value => c.value) unless @custom_values_before_change[c.custom_field_id]==c.value |
|
76 | 78 | } |
|
77 | 79 | @current_journal.save unless @current_journal.details.empty? and @current_journal.notes.empty? |
|
78 | 80 | end |
|
79 | 81 | end |
|
80 | 82 | |
|
83 | def after_save | |
|
84 | relations_from.each(&:set_issue_to_dates) | |
|
85 | end | |
|
86 | ||
|
81 | 87 | def long_id |
|
82 | 88 | "%05d" % self.id |
|
83 | 89 | end |
|
84 | 90 | |
|
85 | 91 | def custom_value_for(custom_field) |
|
86 | 92 | self.custom_values.each {|v| return v if v.custom_field_id == custom_field.id } |
|
87 | 93 | return nil |
|
88 | 94 | end |
|
89 | 95 | |
|
90 | 96 | def init_journal(user, notes = "") |
|
91 | 97 | @current_journal ||= Journal.new(:journalized => self, :user => user, :notes => notes) |
|
92 | 98 | @issue_before_change = self.clone |
|
93 | 99 | @custom_values_before_change = {} |
|
94 | 100 | self.custom_values.each {|c| @custom_values_before_change.store c.custom_field_id, c.value } |
|
95 | 101 | @current_journal |
|
96 | 102 | end |
|
97 | 103 | |
|
98 | 104 | def spent_hours |
|
99 | 105 | @spent_hours ||= time_entries.sum(:hours) || 0 |
|
100 | 106 | end |
|
101 | ||
|
102 | private | |
|
103 | # Creates an history for the issue | |
|
104 | #def build_history | |
|
105 | # @history = self.histories.build | |
|
106 | # @history.status = self.status | |
|
107 | # @history.author = self.author | |
|
108 | #end | |
|
107 | ||
|
108 | def relations | |
|
109 | (relations_from + relations_to).sort | |
|
110 | end | |
|
111 | ||
|
112 | def all_dependent_issues | |
|
113 | dependencies = [] | |
|
114 | relations_from.each do |relation| | |
|
115 | dependencies << relation.issue_to | |
|
116 | dependencies += relation.issue_to.all_dependent_issues | |
|
117 | end | |
|
118 | dependencies | |
|
119 | end | |
|
120 | ||
|
121 | def duration | |
|
122 | (start_date && due_date) ? due_date - start_date : 0 | |
|
123 | end | |
|
124 | ||
|
125 | def soonest_start | |
|
126 | @soonest_start ||= relations_to.collect{|relation| relation.successor_soonest_start}.compact.min | |
|
127 | end | |
|
109 | 128 | end |
@@ -1,125 +1,131 | |||
|
1 | 1 | <div class="contextual"> |
|
2 | 2 | <%= l(:label_export_to) %><%= link_to 'PDF', {:action => 'export_pdf', :id => @issue}, :class => 'icon icon-pdf' %> |
|
3 | 3 | </div> |
|
4 | 4 | |
|
5 | 5 | <h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%=h @issue.subject %></h2> |
|
6 | 6 | |
|
7 | 7 | <div class="box"> |
|
8 | 8 | <table width="100%"> |
|
9 | 9 | <tr> |
|
10 | 10 | <td style="width:15%"><b><%=l(:field_status)%> :</b></td><td style="width:35%"><%= @issue.status.name %></td> |
|
11 | 11 | <td style="width:15%"><b><%=l(:field_priority)%> :</b></td><td style="width:35%"><%= @issue.priority.name %></td> |
|
12 | 12 | </tr> |
|
13 | 13 | <tr> |
|
14 | 14 | <td><b><%=l(:field_assigned_to)%> :</b></td><td><%= @issue.assigned_to ? link_to_user(@issue.assigned_to) : "-" %></td> |
|
15 | 15 | <td><b><%=l(:field_category)%> :</b></td><td><%=h @issue.category ? @issue.category.name : "-" %></td> |
|
16 | 16 | </tr> |
|
17 | 17 | <tr> |
|
18 | 18 | <td><b><%=l(:field_author)%> :</b></td><td><%= link_to_user @issue.author %></td> |
|
19 | 19 | <td><b><%=l(:field_start_date)%> :</b></td><td><%= format_date(@issue.start_date) %></td> |
|
20 | 20 | </tr> |
|
21 | 21 | <tr> |
|
22 | 22 | <td><b><%=l(:field_created_on)%> :</b></td><td><%= format_date(@issue.created_on) %></td> |
|
23 | 23 | <td><b><%=l(:field_due_date)%> :</b></td><td><%= format_date(@issue.due_date) %></td> |
|
24 | 24 | </tr> |
|
25 | 25 | <tr> |
|
26 | 26 | <td><b><%=l(:field_updated_on)%> :</b></td><td><%= format_date(@issue.updated_on) %></td> |
|
27 | 27 | <td><b><%=l(:field_done_ratio)%> :</b></td><td><%= @issue.done_ratio %> %</td> |
|
28 | 28 | </tr> |
|
29 | 29 | <tr> |
|
30 | 30 | <td><b><%=l(:field_fixed_version)%> :</b></td><td><%= @issue.fixed_version ? @issue.fixed_version.name : "-" %></td> |
|
31 | 31 | <td><b><%=l(:label_spent_time)%> :</b></td> |
|
32 | 32 | <td><%= @issue.spent_hours > 0 ? (link_to lwr(:label_f_hour, @issue.spent_hours), {:controller => 'timelog', :action => 'details', :issue_id => @issue}, :class => 'icon icon-time') : "-" %></td> |
|
33 | 33 | </tr> |
|
34 | 34 | <tr> |
|
35 | 35 | <% n = 0 |
|
36 | 36 | for custom_value in @custom_values %> |
|
37 | 37 | <td><b><%= custom_value.custom_field.name %> :</b></td><td><%= h(show_value(custom_value)) %></td> |
|
38 | 38 | <% n = n + 1 |
|
39 | 39 | if (n > 1) |
|
40 | 40 | n = 0 %> |
|
41 | 41 | </tr><tr> |
|
42 | 42 | <%end |
|
43 | 43 | end %> |
|
44 | 44 | </tr> |
|
45 | 45 | </table> |
|
46 | 46 | <hr /> |
|
47 | 47 | |
|
48 | 48 | <% if @issue.changesets.any? %> |
|
49 | 49 | <div style="float:right;"> |
|
50 | 50 | <em><%= l(:label_revision_plural) %>: <%= @issue.changesets.collect{|changeset| link_to(changeset.revision, :controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision)}.join(", ") %></em> |
|
51 | 51 | </div> |
|
52 | 52 | <% end %> |
|
53 | 53 | |
|
54 | 54 | <b><%=l(:field_description)%> :</b><br /><br /> |
|
55 | 55 | <%= textilizable @issue.description %> |
|
56 | 56 | <br /> |
|
57 | 57 | |
|
58 | 58 | <div class="contextual"> |
|
59 | 59 | <%= link_to_if_authorized l(:button_edit), {:controller => 'issues', :action => 'edit', :id => @issue}, :class => 'icon icon-edit' %> |
|
60 | 60 | <%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :issue_id => @issue}, :class => 'icon icon-time' %> |
|
61 | 61 | <% if @logged_in_user %> |
|
62 | 62 | <% if @issue.watched_by?(@logged_in_user) %> |
|
63 | 63 | <%= link_to l(:button_unwatch), {:controller => 'watchers', :action => 'remove', :issue_id => @issue}, :class => 'icon icon-fav' %> |
|
64 | 64 | <% else %> |
|
65 | 65 | <%= link_to l(:button_watch), {:controller => 'watchers', :action => 'add', :issue_id => @issue}, :class => 'icon icon-fav-off' %> |
|
66 | 66 | <% end %> |
|
67 | 67 | <% end %> |
|
68 | 68 | <%= link_to_if_authorized l(:button_move), {:controller => 'projects', :action => 'move_issues', :id => @project, "issue_ids[]" => @issue.id }, :class => 'icon icon-move' %> |
|
69 | 69 | <%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy', :id => @issue}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> |
|
70 | 70 | </div> |
|
71 | 71 | |
|
72 | 72 | <% if authorize_for('issues', 'change_status') and @status_options and !@status_options.empty? %> |
|
73 | 73 | <% form_tag({:controller => 'issues', :action => 'change_status', :id => @issue}) do %> |
|
74 | 74 | <%=l(:label_change_status)%> : |
|
75 | 75 | <select name="new_status_id"> |
|
76 | 76 | <%= options_from_collection_for_select @status_options, "id", "name" %> |
|
77 | 77 | </select> |
|
78 | 78 | <%= submit_tag l(:button_change) %> |
|
79 | 79 | <% end %> |
|
80 | 80 | <% end %> |
|
81 | 81 | |
|
82 | 82 | </div> |
|
83 | 83 | |
|
84 | <% if authorize_for('issue_relations', 'new') || @issue.relations.any? %> | |
|
85 | <div id="relations" class="box"> | |
|
86 | <%= render :partial => 'relations' %> | |
|
87 | </div> | |
|
88 | <% end %> | |
|
89 | ||
|
84 | 90 | <div id="history" class="box"> |
|
85 | 91 | <h3><%=l(:label_history)%> |
|
86 | 92 | <% if @journals_count > @journals.length %>(<%= l(:label_last_changes, @journals.length) %>)<% end %></h3> |
|
87 | 93 | <%= render :partial => 'history', :locals => { :journals => @journals } %> |
|
88 | 94 | <% if @journals_count > @journals.length %> |
|
89 | 95 | <p><center><small><%= link_to l(:label_change_view_all), :action => 'history', :id => @issue %></small></center></p> |
|
90 | 96 | <% end %> |
|
91 | 97 | </div> |
|
92 | 98 | |
|
93 | 99 | <div class="box"> |
|
94 | 100 | <h3><%=l(:label_attachment_plural)%></h3> |
|
95 | 101 | <table width="100%"> |
|
96 | 102 | <% for attachment in @issue.attachments %> |
|
97 | 103 | <tr> |
|
98 | 104 | <td><%= link_to attachment.filename, { :action => 'download', :id => @issue, :attachment_id => attachment }, :class => 'icon icon-attachment' %> (<%= number_to_human_size(attachment.filesize) %>)</td> |
|
99 | 105 | <td><%= format_date(attachment.created_on) %></td> |
|
100 | 106 | <td><%= attachment.author.display_name %></td> |
|
101 | 107 | <td><div class="contextual"><%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy_attachment', :id => @issue, :attachment_id => attachment }, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %></div></td> |
|
102 | 108 | </tr> |
|
103 | 109 | <% end %> |
|
104 | 110 | </table> |
|
105 | 111 | <br /> |
|
106 | 112 | <% if authorize_for('issues', 'add_attachment') %> |
|
107 | 113 | <% form_tag({ :controller => 'issues', :action => 'add_attachment', :id => @issue }, :multipart => true, :class => "tabular") do %> |
|
108 | 114 | <p id="attachments_p"><label><%=l(:label_attachment_new)%> |
|
109 | 115 | <%= image_to_function "add.png", "addFileField();return false" %></label> |
|
110 | 116 | <%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p> |
|
111 | 117 | <%= submit_tag l(:button_add) %> |
|
112 | 118 | <% end %> |
|
113 | 119 | <% end %> |
|
114 | 120 | </div> |
|
115 | 121 | |
|
116 | 122 | <% if authorize_for('issues', 'add_note') %> |
|
117 | 123 | <div class="box"> |
|
118 | 124 | <h3><%= l(:label_add_note) %></h3> |
|
119 | 125 | <% form_tag({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %> |
|
120 | 126 | <p><label for="notes"><%=l(:field_notes)%></label> |
|
121 | 127 | <%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit' %></p> |
|
122 | 128 | <%= submit_tag l(:button_add) %> |
|
123 | 129 | <% end %> |
|
124 | 130 | </div> |
|
125 | 131 | <% end %> |
@@ -1,25 +1,27 | |||
|
1 | 1 | ActionController::Routing::Routes.draw do |map| |
|
2 | 2 | # Add your own custom routes here. |
|
3 | 3 | # The priority is based upon order of creation: first created -> highest priority. |
|
4 | 4 | |
|
5 | 5 | # Here's a sample route: |
|
6 | 6 | # map.connect 'products/:id', :controller => 'catalog', :action => 'view' |
|
7 | 7 | # Keep in mind you can assign values other than :controller and :action |
|
8 | 8 | |
|
9 | 9 | # You can have the root of your site routed by hooking up '' |
|
10 | 10 | # -- just remember to delete public/index.html. |
|
11 | 11 | map.connect '', :controller => "welcome" |
|
12 | 12 | |
|
13 | 13 | map.connect 'wiki/:id/:page/:action', :controller => 'wiki', :page => nil |
|
14 | 14 | map.connect 'roles/workflow/:id/:role_id/:tracker_id', :controller => 'roles', :action => 'workflow' |
|
15 | 15 | map.connect 'help/:ctrl/:page', :controller => 'help' |
|
16 | 16 | #map.connect ':controller/:action/:id/:sort_key/:sort_order' |
|
17 | 17 | |
|
18 | map.connect 'issues/:issue_id/relations/:action/:id', :controller => 'issue_relations' | |
|
19 | ||
|
18 | 20 | # Allow downloading Web Service WSDL as a file with an extension |
|
19 | 21 | # instead of a file named 'wsdl' |
|
20 | 22 | map.connect ':controller/service.wsdl', :action => 'wsdl' |
|
21 | 23 | |
|
22 | 24 | |
|
23 | 25 | # Install the default route as the lowest priority. |
|
24 | 26 | map.connect ':controller/:action/:id' |
|
25 | 27 | end |
@@ -1,444 +1,460 | |||
|
1 | 1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
2 | 2 | |
|
3 | 3 | actionview_datehelper_select_day_prefix: |
|
4 | 4 | actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември |
|
5 | 5 | actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек |
|
6 | 6 | actionview_datehelper_select_month_prefix: |
|
7 | 7 | actionview_datehelper_select_year_prefix: |
|
8 | 8 | actionview_datehelper_time_in_words_day: 1 ден |
|
9 | 9 | actionview_datehelper_time_in_words_day_plural: %d дни |
|
10 | 10 | actionview_datehelper_time_in_words_hour_about: около час |
|
11 | 11 | actionview_datehelper_time_in_words_hour_about_plural: около %d часа |
|
12 | 12 | actionview_datehelper_time_in_words_hour_about_single: около час |
|
13 | 13 | actionview_datehelper_time_in_words_minute: 1 минута |
|
14 | 14 | actionview_datehelper_time_in_words_minute_half: половин минута |
|
15 | 15 | actionview_datehelper_time_in_words_minute_less_than: по-малко от минута |
|
16 | 16 | actionview_datehelper_time_in_words_minute_plural: %d минути |
|
17 | 17 | actionview_datehelper_time_in_words_minute_single: 1 минута |
|
18 | 18 | actionview_datehelper_time_in_words_second_less_than: по-малко от секунда |
|
19 | 19 | actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди |
|
20 | 20 | actionview_instancetag_blank_option: Изберете |
|
21 | 21 | |
|
22 | 22 | activerecord_error_inclusion: не съществува в списъка |
|
23 | 23 | activerecord_error_exclusion: е запазено |
|
24 | 24 | activerecord_error_invalid: е невалидно |
|
25 | 25 | activerecord_error_confirmation: липсва одобрение |
|
26 | 26 | activerecord_error_accepted: трябва да се приеме |
|
27 | 27 | activerecord_error_empty: не може да е празно |
|
28 | 28 | activerecord_error_blank: не може да е празно |
|
29 | 29 | activerecord_error_too_long: е прекалено дълго |
|
30 | 30 | activerecord_error_too_short: е прекалено късо |
|
31 | 31 | activerecord_error_wrong_length: е с грешна дължина |
|
32 | 32 | activerecord_error_taken: вече съществува |
|
33 | 33 | activerecord_error_not_a_number: не е число |
|
34 | 34 | activerecord_error_not_a_date: е невалидна дата |
|
35 | 35 | activerecord_error_greater_than_start_date: трябва да е след началната дата |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
|
36 | 38 | |
|
37 | 39 | general_fmt_age: %d yr |
|
38 | 40 | general_fmt_age_plural: %d yrs |
|
39 | 41 | general_fmt_date: %%d.%%m.%%Y |
|
40 | 42 | general_fmt_datetime: %%d.%%m.%%Y %%H:%%M |
|
41 | 43 | general_fmt_datetime_short: %%b %%d, %%H:%%M |
|
42 | 44 | general_fmt_time: %%H:%%M |
|
43 | 45 | general_text_No: 'Не' |
|
44 | 46 | general_text_Yes: 'Да' |
|
45 | 47 | general_text_no: 'не' |
|
46 | 48 | general_text_yes: 'да' |
|
47 | 49 | general_lang_bg: 'Bulgarian' |
|
48 | 50 | general_csv_separator: ',' |
|
49 | 51 | general_csv_encoding: ISO-8859-1 |
|
50 | 52 | general_pdf_encoding: ISO-8859-1 |
|
51 | 53 | general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя |
|
52 | 54 | |
|
53 | 55 | notice_account_updated: Профилът е обновен успешно. |
|
54 | 56 | notice_account_invalid_creditentials: Невалиден потребител или парола. |
|
55 | 57 | notice_account_password_updated: Паролата е успешно променена. |
|
56 | 58 | notice_account_wrong_password: Грешна парола |
|
57 | 59 | notice_account_register_done: Акаунтът е създаден успешно. |
|
58 | 60 | notice_account_unknown_email: Непознат потребител. |
|
59 | 61 | notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата. |
|
60 | 62 | notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола. |
|
61 | 63 | notice_account_activated: Акаунтът ви е активиран. Вече може да влезете. |
|
62 | 64 | notice_successful_create: Успешно създаване. |
|
63 | 65 | notice_successful_update: Успешно обновяване. |
|
64 | 66 | notice_successful_delete: Успешно изтриване. |
|
65 | 67 | notice_successful_connection: Успешно свързване. |
|
66 | 68 | notice_file_not_found: Несъществуваща или преместена страница. |
|
67 | 69 | notice_locking_conflict: Друг потребител променя тези данни в момента. |
|
68 | 70 | notice_scm_error: Несъществуващ обект в склада. |
|
69 | 71 | notice_not_authorized: Нямате право на достъп до тази страница. |
|
70 | 72 | |
|
71 | 73 | mail_subject_lost_password: Вашата парола |
|
72 | 74 | mail_subject_register: Активация на акаунт |
|
73 | 75 | |
|
74 | 76 | gui_validation_error: 1 грешка |
|
75 | 77 | gui_validation_error_plural: %d грешки |
|
76 | 78 | |
|
77 | 79 | field_name: Име |
|
78 | 80 | field_description: Описание |
|
79 | 81 | field_summary: Тема |
|
80 | 82 | field_is_required: Задължително |
|
81 | 83 | field_firstname: Име |
|
82 | 84 | field_lastname: Фамилия |
|
83 | 85 | field_mail: Email |
|
84 | 86 | field_filename: Файл |
|
85 | 87 | field_filesize: Големина |
|
86 | 88 | field_downloads: Downloads |
|
87 | 89 | field_author: Автор |
|
88 | 90 | field_created_on: Създадена |
|
89 | 91 | field_updated_on: Обновена |
|
90 | 92 | field_field_format: Формат |
|
91 | 93 | field_is_for_all: За всички проекти |
|
92 | 94 | field_possible_values: Възможни стойности |
|
93 | 95 | field_regexp: Регулярен израз |
|
94 | 96 | field_min_length: Мин. дължина |
|
95 | 97 | field_max_length: Макс. дължина |
|
96 | 98 | field_value: Стойност |
|
97 | 99 | field_category: Категория |
|
98 | 100 | field_title: Заглавие |
|
99 | 101 | field_project: Проект |
|
100 | 102 | field_issue: Задача |
|
101 | 103 | field_status: Статус |
|
102 | 104 | field_notes: Бележка |
|
103 | 105 | field_is_closed: Затворена задача |
|
104 | 106 | field_is_default: Статус по подразбиране |
|
105 | 107 | field_html_color: Цвят |
|
106 | 108 | field_tracker: Тракер |
|
107 | 109 | field_subject: Тема |
|
108 | 110 | field_due_date: Крайна дата |
|
109 | 111 | field_assigned_to: Възложена на |
|
110 | 112 | field_priority: Приоритет |
|
111 | 113 | field_fixed_version: Версия |
|
112 | 114 | field_user: Потребител |
|
113 | 115 | field_role: Роля |
|
114 | 116 | field_homepage: Начална страница |
|
115 | 117 | field_is_public: Публичен |
|
116 | 118 | field_parent: Подпроект на |
|
117 | 119 | field_is_in_chlog: Да се вижда ли в Изменения |
|
118 | 120 | field_is_in_roadmap: Да се вижда ли в Пътна карта |
|
119 | 121 | field_login: Потребител |
|
120 | 122 | field_mail_notification: Известия по пощата |
|
121 | 123 | field_admin: Администратор |
|
122 | 124 | field_last_login_on: Последно свързване |
|
123 | 125 | field_language: Език |
|
124 | 126 | field_effective_date: Дата |
|
125 | 127 | field_password: Парола |
|
126 | 128 | field_new_password: Нова парола |
|
127 | 129 | field_password_confirmation: Потвърждение |
|
128 | 130 | field_version: Версия |
|
129 | 131 | field_type: Type |
|
130 | 132 | field_host: Хост |
|
131 | 133 | field_port: Порт |
|
132 | 134 | field_account: Акаунт |
|
133 | 135 | field_base_dn: Base DN |
|
134 | 136 | field_attr_login: Login attribute |
|
135 | 137 | field_attr_firstname: Firstname attribute |
|
136 | 138 | field_attr_lastname: Lastname attribute |
|
137 | 139 | field_attr_mail: Email attribute |
|
138 | 140 | field_onthefly: Динамично създаване на потребител |
|
139 | 141 | field_start_date: Начална дата |
|
140 | 142 | field_done_ratio: %% Прогрес |
|
141 | 143 | field_auth_source: Начин на оторизация |
|
142 | 144 | field_hide_mail: Скрий e-mail адреса ми |
|
143 | 145 | field_comments: Коментар |
|
144 | 146 | field_url: Адрес |
|
145 | 147 | field_start_page: Начална страница |
|
146 | 148 | field_subproject: Подпроект |
|
147 | 149 | field_hours: Часове |
|
148 | 150 | field_activity: Дейност |
|
149 | 151 | field_spent_on: Дата |
|
150 | 152 | field_identifier: Идентификатор |
|
151 | 153 | field_is_filter: Използва се за филтър |
|
154 | field_issue_to_id: Related issue | |
|
155 | field_delay: Delay | |
|
152 | 156 | |
|
153 | 157 | setting_app_title: Заглавие |
|
154 | 158 | setting_app_subtitle: Описание |
|
155 | 159 | setting_welcome_text: Допълнителен текст |
|
156 | 160 | setting_default_language: Език по подразбиране |
|
157 | 161 | setting_login_required: Изискване за вход |
|
158 | 162 | setting_self_registration: Регистрация от потребители |
|
159 | 163 | setting_attachment_max_size: Максимално голям приложен файл |
|
160 | 164 | setting_issues_export_limit: Лимит за експорт на задачи |
|
161 | 165 | setting_mail_from: E-mail адрес за емисии |
|
162 | 166 | setting_host_name: Хост |
|
163 | 167 | setting_text_formatting: Форматиране на текста |
|
164 | 168 | setting_wiki_compression: Wiki компресиране на историята |
|
165 | 169 | setting_feeds_limit: Лимит на Feeds |
|
166 | 170 | setting_autofetch_changesets: Автоматично обработване на commits в SVN склада |
|
167 | 171 | setting_sys_api_enabled: Разрешаване на WS за управление на SVN склада |
|
168 | 172 | setting_commit_ref_keywords: Отбелязващи ключови думи |
|
169 | 173 | setting_commit_fix_keywords: Приключващи ключови думи |
|
170 | 174 | |
|
171 | 175 | label_user: Потребител |
|
172 | 176 | label_user_plural: Потребители |
|
173 | 177 | label_user_new: Нов потребител |
|
174 | 178 | label_project: Проект |
|
175 | 179 | label_project_new: Нов проект |
|
176 | 180 | label_project_plural: Проекти |
|
177 | 181 | label_project_latest: Последни проекти |
|
178 | 182 | label_issue: Задача |
|
179 | 183 | label_issue_new: Нова задача |
|
180 | 184 | label_issue_plural: Задачи |
|
181 | 185 | label_issue_view_all: Всички задачи |
|
182 | 186 | label_document: Документ |
|
183 | 187 | label_document_new: Нов документ |
|
184 | 188 | label_document_plural: Документи |
|
185 | 189 | label_role: Роля |
|
186 | 190 | label_role_plural: Роли |
|
187 | 191 | label_role_new: Нова роля |
|
188 | 192 | label_role_and_permissions: Роли и права |
|
189 | 193 | label_member: Член |
|
190 | 194 | label_member_new: Нов член |
|
191 | 195 | label_member_plural: Членове |
|
192 | 196 | label_tracker: Тракер |
|
193 | 197 | label_tracker_plural: Тракери |
|
194 | 198 | label_tracker_new: Нов тракер |
|
195 | 199 | label_workflow: Workflow |
|
196 | 200 | label_issue_status: Статус на задача |
|
197 | 201 | label_issue_status_plural: Статуси на задачи |
|
198 | 202 | label_issue_status_new: Нов статус |
|
199 | 203 | label_issue_category: Категория задача |
|
200 | 204 | label_issue_category_plural: Категории задачи |
|
201 | 205 | label_issue_category_new: Нова категория |
|
202 | 206 | label_custom_field: Измислено поле |
|
203 | 207 | label_custom_field_plural: Измислени полета |
|
204 | 208 | label_custom_field_new: Ново измислено поле |
|
205 | 209 | label_enumerations: Списъци |
|
206 | 210 | label_enumeration_new: Нова стойност |
|
207 | 211 | label_information: Информация |
|
208 | 212 | label_information_plural: Информация |
|
209 | 213 | label_please_login: Вход |
|
210 | 214 | label_register: Регистрация |
|
211 | 215 | label_password_lost: Забравена парола |
|
212 | 216 | label_home: Начало |
|
213 | 217 | label_my_page: Моята страница |
|
214 | 218 | label_my_account: Моят профил |
|
215 | 219 | label_my_projects: Моите проекти |
|
216 | 220 | label_administration: Администрация |
|
217 | 221 | label_login: Вход |
|
218 | 222 | label_logout: Изход |
|
219 | 223 | label_help: Помощ |
|
220 | 224 | label_reported_issues: Публикувани задачи |
|
221 | 225 | label_assigned_to_me_issues: Назначени на мен |
|
222 | 226 | label_last_login: Последно свързване |
|
223 | 227 | label_last_updates: Последно обновена |
|
224 | 228 | label_last_updates_plural: %d последно обновени |
|
225 | 229 | label_registered_on: Регистрация |
|
226 | 230 | label_activity: Дейност |
|
227 | 231 | label_new: Нов |
|
228 | 232 | label_logged_as: Логнат като |
|
229 | 233 | label_environment: Среда |
|
230 | 234 | label_authentication: Оторизация |
|
231 | 235 | label_auth_source: Начин на оторозация |
|
232 | 236 | label_auth_source_new: Нов начин на оторизация |
|
233 | 237 | label_auth_source_plural: Начини на оторизация |
|
234 | 238 | label_subproject_plural: Подпроекти |
|
235 | 239 | label_min_max_length: Мин. - Макс. дължина |
|
236 | 240 | label_list: Списък |
|
237 | 241 | label_date: Дата |
|
238 | 242 | label_integer: Число |
|
239 | 243 | label_boolean: Чекбокс |
|
240 | 244 | label_string: Текст |
|
241 | 245 | label_text: Дълъг текст |
|
242 | 246 | label_attribute: Атрибут |
|
243 | 247 | label_attribute_plural: Атрибути |
|
244 | 248 | label_download: %d Download |
|
245 | 249 | label_download_plural: %d Downloads |
|
246 | 250 | label_no_data: Няма изходни данни |
|
247 | 251 | label_change_status: Промяна на статуса |
|
248 | 252 | label_history: История |
|
249 | 253 | label_attachment: Файл |
|
250 | 254 | label_attachment_new: Нов файл |
|
251 | 255 | label_attachment_delete: Изтриване |
|
252 | 256 | label_attachment_plural: Файлове |
|
253 | 257 | label_report: Доклад |
|
254 | 258 | label_report_plural: Доклади |
|
255 | 259 | label_news: Новини |
|
256 | 260 | label_news_new: Добави |
|
257 | 261 | label_news_plural: Новини |
|
258 | 262 | label_news_latest: Последни новини |
|
259 | 263 | label_news_view_all: Виж всички |
|
260 | 264 | label_change_log: Изменения |
|
261 | 265 | label_settings: Настройки |
|
262 | 266 | label_overview: Общ изглед |
|
263 | 267 | label_version: Версия |
|
264 | 268 | label_version_new: Нова версия |
|
265 | 269 | label_version_plural: Версии |
|
266 | 270 | label_confirmation: Одобрение |
|
267 | 271 | label_export_to: Експорт към |
|
268 | 272 | label_read: Read... |
|
269 | 273 | label_public_projects: Публични проекти |
|
270 | 274 | label_open_issues: отворена |
|
271 | 275 | label_open_issues_plural: отворени |
|
272 | 276 | label_closed_issues: затворена |
|
273 | 277 | label_closed_issues_plural: затворени |
|
274 | 278 | label_total: Общо |
|
275 | 279 | label_permissions: Права |
|
276 | 280 | label_current_status: Текущ статус |
|
277 | 281 | label_new_statuses_allowed: Позволени статуси |
|
278 | 282 | label_all: всички |
|
279 | 283 | label_none: никакви |
|
280 | 284 | label_next: Следващ |
|
281 | 285 | label_previous: Предишен |
|
282 | 286 | label_used_by: Използва се от |
|
283 | 287 | label_details: Детайли... |
|
284 | 288 | label_add_note: Добавяне на бележка |
|
285 | 289 | label_per_page: На страница |
|
286 | 290 | label_calendar: Календар |
|
287 | 291 | label_months_from: месеци от |
|
288 | 292 | label_gantt: Gantt |
|
289 | 293 | label_internal: Вътрешен |
|
290 | 294 | label_last_changes: последни %d промени |
|
291 | 295 | label_change_view_all: Виж всички промени |
|
292 | 296 | label_personalize_page: Персонализиране |
|
293 | 297 | label_comment: Коментар |
|
294 | 298 | label_comment_plural: Коментари |
|
295 | 299 | label_comment_add: Добавяне на коментар |
|
296 | 300 | label_comment_added: Добавен коментар |
|
297 | 301 | label_comment_delete: Изтриване на коментари |
|
298 | 302 | label_query: Измислена заявка |
|
299 | 303 | label_query_plural: Измислени заявки |
|
300 | 304 | label_query_new: Нова заявка |
|
301 | 305 | label_filter_add: Добави филтър |
|
302 | 306 | label_filter_plural: Филтри |
|
303 | 307 | label_equals: е |
|
304 | 308 | label_not_equals: не е |
|
305 | 309 | label_in_less_than: по-малко от |
|
306 | 310 | label_in_more_than: повече от |
|
307 | 311 | label_in: в следващите |
|
308 | 312 | label_today: днес |
|
309 | 313 | label_less_than_ago: преди по-малко от |
|
310 | 314 | label_more_than_ago: преди повече от |
|
311 | 315 | label_ago: преди дни |
|
312 | 316 | label_contains: съдържа |
|
313 | 317 | label_not_contains: не съдържа |
|
314 | 318 | label_day_plural: дни |
|
315 | 319 | label_repository: SVN Склад |
|
316 | 320 | label_browse: Разглеждане |
|
317 | 321 | label_modification: %d промяна |
|
318 | 322 | label_modification_plural: %d промени |
|
319 | 323 | label_revision: Ревизия |
|
320 | 324 | label_revision_plural: Ревизии |
|
321 | 325 | label_added: добавено |
|
322 | 326 | label_modified: променено |
|
323 | 327 | label_deleted: изтрито |
|
324 | 328 | label_latest_revision: Последна ревизия |
|
325 | 329 | label_latest_revision_plural: Последни ревизии |
|
326 | 330 | label_view_revisions: Виж ревизиите |
|
327 | 331 | label_max_size: Максимална големина |
|
328 | 332 | label_on: 'от' |
|
329 | 333 | label_sort_highest: Премести най-горе |
|
330 | 334 | label_sort_higher: Премести по-горе |
|
331 | 335 | label_sort_lower: Премести по-долу |
|
332 | 336 | label_sort_lowest: Премести най-долу |
|
333 | 337 | label_roadmap: Пътна карта |
|
334 | 338 | label_roadmap_due_in: Излиза след |
|
335 | 339 | label_roadmap_no_issues: Няма задачи за тази версия |
|
336 | 340 | label_search: Търсене |
|
337 | 341 | label_result: %d резултат |
|
338 | 342 | label_result_plural: %d резултати |
|
339 | 343 | label_all_words: Всички думи |
|
340 | 344 | label_wiki: Wiki |
|
341 | 345 | label_wiki_edit: Wiki редакция |
|
342 | 346 | label_wiki_edit_plural: Wiki редакции |
|
343 | 347 | label_page_index: Индекс |
|
344 | 348 | label_current_version: Текуща версия |
|
345 | 349 | label_preview: Преглед |
|
346 | 350 | label_feed_plural: Feeds |
|
347 | 351 | label_changes_details: Подробни промени |
|
348 | 352 | label_issue_tracking: Тракинг |
|
349 | 353 | label_spent_time: Отделено време |
|
350 | 354 | label_f_hour: %.2f час |
|
351 | 355 | label_f_hour_plural: %.2f часа |
|
352 | 356 | label_time_tracking: Отделяне на време |
|
353 | 357 | label_change_plural: Промени |
|
354 | 358 | label_statistics: Статистики |
|
355 | 359 | label_commits_per_month: Commits за месец |
|
356 | 360 | label_commits_per_author: Commits за автор |
|
357 | 361 | label_view_diff: Виж разликите |
|
358 | 362 | label_diff_inline: хоризонтално |
|
359 | 363 | label_diff_side_by_side: вертикално |
|
360 | 364 | label_options: Опции |
|
361 | 365 | label_copy_workflow_from: Копирай workflow от |
|
362 | 366 | label_permissions_report: Справка за права |
|
363 | 367 | label_watched_issues: Наблюдавани задачи |
|
364 | 368 | label_related_issues: Свързани задачи |
|
365 | 369 | label_applied_status: Промени статуса на |
|
366 | 370 | label_loading: Зареждане... |
|
371 | label_relation_new: New relation | |
|
372 | label_relation_delete: Delete relation | |
|
373 | label_relates_to: related tp | |
|
374 | label_duplicates: duplicates | |
|
375 | label_blocks: blocks | |
|
376 | label_blocked_by: blocked by | |
|
377 | label_precedes: precedes | |
|
378 | label_follows: follows | |
|
379 | label_end_to_start: start to end | |
|
380 | label_end_to_end: end to end | |
|
381 | label_start_to_start: start to start | |
|
382 | label_start_to_end: start to end | |
|
367 | 383 | |
|
368 | 384 | button_login: Вход |
|
369 | 385 | button_submit: Изпращане |
|
370 | 386 | button_save: Запис |
|
371 | 387 | button_check_all: Маркирай всички |
|
372 | 388 | button_uncheck_all: Изчисти всички |
|
373 | 389 | button_delete: Изтриване |
|
374 | 390 | button_create: Създаване |
|
375 | 391 | button_test: Тест |
|
376 | 392 | button_edit: Редакция |
|
377 | 393 | button_add: Добавяне |
|
378 | 394 | button_change: Промяна |
|
379 | 395 | button_apply: Приложи |
|
380 | 396 | button_clear: Изчисти |
|
381 | 397 | button_lock: Заключване |
|
382 | 398 | button_unlock: Отключване |
|
383 | 399 | button_download: Download |
|
384 | 400 | button_list: Списък |
|
385 | 401 | button_view: Преглед |
|
386 | 402 | button_move: Преместване |
|
387 | 403 | button_back: Назад |
|
388 | 404 | button_cancel: Отказ |
|
389 | 405 | button_activate: Активация |
|
390 | 406 | button_sort: Сортиране |
|
391 | 407 | button_log_time: Отделяне на време |
|
392 | 408 | button_rollback: Върни се към тази ревизия |
|
393 | 409 | button_watch: Наблюдавай |
|
394 | 410 | button_unwatch: Спри наблюдението |
|
395 | 411 | |
|
396 | 412 | status_active: активен |
|
397 | 413 | status_registered: регистриран |
|
398 | 414 | status_locked: заключен |
|
399 | 415 | |
|
400 | 416 | text_select_mail_notifications: Изберете събития за изпращане на e-mail. |
|
401 | 417 | text_regexp_info: пр. ^[A-Z0-9]+$ |
|
402 | 418 | text_min_max_length_info: 0 - без ограничения |
|
403 | 419 | text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него? |
|
404 | 420 | text_workflow_edit: Изберете роля и тракер за да редактирате workflow |
|
405 | 421 | text_are_you_sure: Сигурни ли сте? |
|
406 | 422 | text_journal_changed: промяна от %s на %s |
|
407 | 423 | text_journal_set_to: установено на %s |
|
408 | 424 | text_journal_deleted: изтрито |
|
409 | 425 | text_tip_task_begin_day: задача започваща този ден |
|
410 | 426 | text_tip_task_end_day: задача завършваща този ден |
|
411 | 427 | text_tip_task_begin_end_day: задача започваща и завършваща този ден |
|
412 | 428 | text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.' |
|
413 | 429 | text_caracters_maximum: До %d символа. |
|
414 | 430 | text_length_between: От %d до %d символа. |
|
415 | 431 | text_tracker_no_workflow: Няма дефиниран workflow за този тракер |
|
416 | 432 | text_unallowed_characters: Непозволени символи |
|
417 | 433 | text_coma_separated: Позволено е изброяване (с разделител запетая). |
|
418 | 434 | text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения |
|
419 | 435 | |
|
420 | 436 | default_role_manager: Мениджър |
|
421 | 437 | default_role_developper: Разработчик |
|
422 | 438 | default_role_reporter: Публикуващ |
|
423 | 439 | default_tracker_bug: Бъг |
|
424 | 440 | default_tracker_feature: Функционалност |
|
425 | 441 | default_tracker_support: Поддръжка |
|
426 | 442 | default_issue_status_new: Нова |
|
427 | 443 | default_issue_status_assigned: Възложена |
|
428 | 444 | default_issue_status_resolved: Приключена |
|
429 | 445 | default_issue_status_feedback: Обратна връзка |
|
430 | 446 | default_issue_status_closed: Затворена |
|
431 | 447 | default_issue_status_rejected: Отхвърлена |
|
432 | 448 | default_doc_category_user: Документация за потребителя |
|
433 | 449 | default_doc_category_tech: Техническа документация |
|
434 | 450 | default_priority_low: Нисък |
|
435 | 451 | default_priority_normal: Нормален |
|
436 | 452 | default_priority_high: Висок |
|
437 | 453 | default_priority_urgent: Спешен |
|
438 | 454 | default_priority_immediate: Веднага |
|
439 | 455 | default_activity_design: Дизайн |
|
440 | 456 | default_activity_development: Разработка |
|
441 | 457 | |
|
442 | 458 | enumeration_issue_priorities: Приоритети на задачи |
|
443 | 459 | enumeration_doc_categories: Категории документи |
|
444 | 460 | enumeration_activities: Дейности (time tracking) |
@@ -1,444 +1,460 | |||
|
1 | 1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
2 | 2 | |
|
3 | 3 | actionview_datehelper_select_day_prefix: |
|
4 | 4 | actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember |
|
5 | 5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez |
|
6 | 6 | actionview_datehelper_select_month_prefix: |
|
7 | 7 | actionview_datehelper_select_year_prefix: |
|
8 | 8 | actionview_datehelper_time_in_words_day: 1 Tag |
|
9 | 9 | actionview_datehelper_time_in_words_day_plural: %d Tage |
|
10 | 10 | actionview_datehelper_time_in_words_hour_about: ungefähr eine Stunde |
|
11 | 11 | actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden |
|
12 | 12 | actionview_datehelper_time_in_words_hour_about_single: ungefähr eine Stunde |
|
13 | 13 | actionview_datehelper_time_in_words_minute: 1 Minute |
|
14 | 14 | actionview_datehelper_time_in_words_minute_half: halbe Minute |
|
15 | 15 | actionview_datehelper_time_in_words_minute_less_than: weniger als eine Minute |
|
16 | 16 | actionview_datehelper_time_in_words_minute_plural: %d Minuten |
|
17 | 17 | actionview_datehelper_time_in_words_minute_single: 1 Minute |
|
18 | 18 | actionview_datehelper_time_in_words_second_less_than: Weniger als eine Sekunde |
|
19 | 19 | actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden |
|
20 | 20 | actionview_instancetag_blank_option: Bitte auswählen |
|
21 | 21 | |
|
22 | 22 | activerecord_error_inclusion: ist nicht inbegriffen |
|
23 | 23 | activerecord_error_exclusion: ist reserviert |
|
24 | 24 | activerecord_error_invalid: ist unzulässig |
|
25 | 25 | activerecord_error_confirmation: Bestätigung nötig |
|
26 | 26 | activerecord_error_accepted: muss angenommen werden |
|
27 | 27 | activerecord_error_empty: darf nicht leer sein |
|
28 | 28 | activerecord_error_blank: darf nicht leer sein |
|
29 | 29 | activerecord_error_too_long: ist zu lang |
|
30 | 30 | activerecord_error_too_short: ist zu kurz |
|
31 | 31 | activerecord_error_wrong_length: hat die falsche Länge |
|
32 | 32 | activerecord_error_taken: ist bereits vergeben |
|
33 | 33 | activerecord_error_not_a_number: ist keine Zahl |
|
34 | 34 | activerecord_error_not_a_date: ist kein gültiges Datum |
|
35 | 35 | activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
|
36 | 38 | |
|
37 | 39 | general_fmt_age: %d Jahr |
|
38 | 40 | general_fmt_age_plural: %d Jahre |
|
39 | 41 | general_fmt_date: %%d.%%m.%%y |
|
40 | 42 | general_fmt_datetime: %%d.%%m.%%y, %%H:%%M |
|
41 | 43 | general_fmt_datetime_short: %%d.%%m, %%H:%%M |
|
42 | 44 | general_fmt_time: %%H:%%M |
|
43 | 45 | general_text_No: 'Nein' |
|
44 | 46 | general_text_Yes: 'Ja' |
|
45 | 47 | general_text_no: 'nein' |
|
46 | 48 | general_text_yes: 'ja' |
|
47 | 49 | general_lang_de: 'Deutsch' |
|
48 | 50 | general_csv_separator: ';' |
|
49 | 51 | general_csv_encoding: ISO-8859-1 |
|
50 | 52 | general_pdf_encoding: ISO-8859-1 |
|
51 | 53 | general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag |
|
52 | 54 | |
|
53 | 55 | notice_account_updated: Konto wurde erfolgreich aktualisiert. |
|
54 | 56 | notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig |
|
55 | 57 | notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert. |
|
56 | 58 | notice_account_wrong_password: Falsches Kennwort |
|
57 | 59 | notice_account_register_done: Konto wurde erfolgreich angelegt. |
|
58 | 60 | notice_account_unknown_email: Unbekannter Benutzer. |
|
59 | 61 | notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern. |
|
60 | 62 | notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt. |
|
61 | 63 | notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen. |
|
62 | 64 | notice_successful_create: Erfolgreich angelegt |
|
63 | 65 | notice_successful_update: Erfolgreiche Aktualisierung. |
|
64 | 66 | notice_successful_delete: Erfolgreiche Löschung. |
|
65 | 67 | notice_successful_connection: Verbindung erfolgreich. |
|
66 | 68 | notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden. |
|
67 | 69 | notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert. |
|
68 | 70 | notice_scm_error: Eintrag und/oder Revision besteht nicht im SVN. |
|
69 | 71 | notice_not_authorized: You are not authorized to access this page. |
|
70 | 72 | |
|
71 | 73 | mail_subject_lost_password: Ihr redMine Kennwort |
|
72 | 74 | mail_subject_register: redMine Kontoaktivierung |
|
73 | 75 | |
|
74 | 76 | gui_validation_error: 1 Fehler |
|
75 | 77 | gui_validation_error_plural: %d Fehler |
|
76 | 78 | |
|
77 | 79 | field_name: Name |
|
78 | 80 | field_description: Beschreibung |
|
79 | 81 | field_summary: Zusammenfassung |
|
80 | 82 | field_is_required: Erforderlich |
|
81 | 83 | field_firstname: Vorname |
|
82 | 84 | field_lastname: Nachname |
|
83 | 85 | field_mail: Email |
|
84 | 86 | field_filename: Datei |
|
85 | 87 | field_filesize: Größe |
|
86 | 88 | field_downloads: Downloads |
|
87 | 89 | field_author: Autor |
|
88 | 90 | field_created_on: Angelegt |
|
89 | 91 | field_updated_on: Aktualisiert |
|
90 | 92 | field_field_format: Format |
|
91 | 93 | field_is_for_all: Für alle Projekte |
|
92 | 94 | field_possible_values: Mögliche Werte |
|
93 | 95 | field_regexp: Regulärer Ausdruck |
|
94 | 96 | field_min_length: Minimale Länge |
|
95 | 97 | field_max_length: Maximale Länge |
|
96 | 98 | field_value: Wert |
|
97 | 99 | field_category: Kategorie |
|
98 | 100 | field_title: Titel |
|
99 | 101 | field_project: Projekt |
|
100 | 102 | field_issue: Ticket |
|
101 | 103 | field_status: Status |
|
102 | 104 | field_notes: Kommentare |
|
103 | 105 | field_is_closed: Problem erledigt |
|
104 | 106 | field_is_default: Default |
|
105 | 107 | field_html_color: Farbe |
|
106 | 108 | field_tracker: Tracker |
|
107 | 109 | field_subject: Thema |
|
108 | 110 | field_due_date: Abgabedatum |
|
109 | 111 | field_assigned_to: Zugewiesen an |
|
110 | 112 | field_priority: Priorität |
|
111 | 113 | field_fixed_version: Erledigt in Version |
|
112 | 114 | field_user: Benutzer |
|
113 | 115 | field_role: Rolle |
|
114 | 116 | field_homepage: Startseite |
|
115 | 117 | field_is_public: Öffentlich |
|
116 | 118 | field_parent: Unterprojekt von |
|
117 | 119 | field_is_in_chlog: Ansicht im Change-Log |
|
118 | 120 | field_is_in_roadmap: Ansicht in der Roadmap |
|
119 | 121 | field_login: Mitgliedsname |
|
120 | 122 | field_mail_notification: Mailbenachrichtigung |
|
121 | 123 | field_admin: Administrator |
|
122 | 124 | field_last_login_on: Letzte Anmeldung |
|
123 | 125 | field_language: Sprache |
|
124 | 126 | field_effective_date: Datum |
|
125 | 127 | field_password: Kennwort |
|
126 | 128 | field_new_password: Neues Kennwort |
|
127 | 129 | field_password_confirmation: Bestätigung |
|
128 | 130 | field_version: Version |
|
129 | 131 | field_type: Typ |
|
130 | 132 | field_host: Host |
|
131 | 133 | field_port: Port |
|
132 | 134 | field_account: Konto |
|
133 | 135 | field_base_dn: Base DN |
|
134 | 136 | field_attr_login: Mitgliedsnameattribut |
|
135 | 137 | field_attr_firstname: Vornamensattribut |
|
136 | 138 | field_attr_lastname: Namenattribut |
|
137 | 139 | field_attr_mail: Emailattribut |
|
138 | 140 | field_onthefly: On-the-fly Benutzerkreation |
|
139 | 141 | field_start_date: Beginn |
|
140 | 142 | field_done_ratio: %% erledigt |
|
141 | 143 | field_auth_source: Authentifizierungs-Modus |
|
142 | 144 | field_hide_mail: Email Adresse nicht anzeigen |
|
143 | 145 | field_comments: Kommentar |
|
144 | 146 | field_url: URL |
|
145 | 147 | field_start_page: Hauptseite |
|
146 | 148 | field_subproject: Subprojekt von |
|
147 | 149 | field_hours: Stunden |
|
148 | 150 | field_activity: Aktivität |
|
149 | 151 | field_spent_on: Datum |
|
150 | 152 | field_identifier: Identifier |
|
151 | 153 | field_is_filter: Used as a filter |
|
154 | field_issue_to_id: Related issue | |
|
155 | field_delay: Delay | |
|
152 | 156 | |
|
153 | 157 | setting_app_title: Applikation Titel |
|
154 | 158 | setting_app_subtitle: Applikation Untertitel |
|
155 | 159 | setting_welcome_text: Willkommenstext |
|
156 | 160 | setting_default_language: Default Sprache |
|
157 | 161 | setting_login_required: Authent. erfordert |
|
158 | 162 | setting_self_registration: Anmeldung ermöglicht |
|
159 | 163 | setting_attachment_max_size: max. Dateigröße |
|
160 | 164 | setting_issues_export_limit: Limit Export Tickets |
|
161 | 165 | setting_mail_from: Mail Absender |
|
162 | 166 | setting_host_name: Host Name |
|
163 | 167 | setting_text_formatting: Textformatierung |
|
164 | 168 | setting_wiki_compression: Wiki-Historie komprimieren |
|
165 | 169 | setting_feeds_limit: Limit Feed Inhalt |
|
166 | 170 | setting_autofetch_changesets: Autofetch SVN commits |
|
167 | 171 | setting_sys_api_enabled: Enable WS for repository management |
|
168 | 172 | setting_commit_ref_keywords: Referencing keywords |
|
169 | 173 | setting_commit_fix_keywords: Fixing keywords |
|
170 | 174 | |
|
171 | 175 | label_user: Benutzer |
|
172 | 176 | label_user_plural: Benutzer |
|
173 | 177 | label_user_new: Neuer Benutzer |
|
174 | 178 | label_project: Projekt |
|
175 | 179 | label_project_new: Neues Projekt |
|
176 | 180 | label_project_plural: Projekte |
|
177 | 181 | label_project_latest: Neueste Projekte |
|
178 | 182 | label_issue: Ticket |
|
179 | 183 | label_issue_new: Neues Ticket |
|
180 | 184 | label_issue_plural: Tickets |
|
181 | 185 | label_issue_view_all: Alle Tickets ansehen |
|
182 | 186 | label_document: Dokument |
|
183 | 187 | label_document_new: Neues Dokument |
|
184 | 188 | label_document_plural: Dokumente |
|
185 | 189 | label_role: Rolle |
|
186 | 190 | label_role_plural: Rollen |
|
187 | 191 | label_role_new: Neue Rolle |
|
188 | 192 | label_role_and_permissions: Rollen und Rechte |
|
189 | 193 | label_member: Mitglied |
|
190 | 194 | label_member_new: Neues Mitglied |
|
191 | 195 | label_member_plural: Mitglieder |
|
192 | 196 | label_tracker: Tracker |
|
193 | 197 | label_tracker_plural: Tracker |
|
194 | 198 | label_tracker_new: Neuer Tracker |
|
195 | 199 | label_workflow: Workflow |
|
196 | 200 | label_issue_status: Ticket-Status |
|
197 | 201 | label_issue_status_plural: Ticket-Status |
|
198 | 202 | label_issue_status_new: Neuer Status |
|
199 | 203 | label_issue_category: Ticket-Kategorie |
|
200 | 204 | label_issue_category_plural: Ticket-Kategorien |
|
201 | 205 | label_issue_category_new: Neue Kategorie |
|
202 | 206 | label_custom_field: Benutzerdefiniertes Feld |
|
203 | 207 | label_custom_field_plural: Benutzerdefinierte Felder |
|
204 | 208 | label_custom_field_new: Neues Feld |
|
205 | 209 | label_enumerations: Aufzählungen |
|
206 | 210 | label_enumeration_new: Neuer Wert |
|
207 | 211 | label_information: Information |
|
208 | 212 | label_information_plural: Informationen |
|
209 | 213 | label_please_login: Anmelden |
|
210 | 214 | label_register: Anmelden |
|
211 | 215 | label_password_lost: Kennwort vergessen |
|
212 | 216 | label_home: Hauptseite |
|
213 | 217 | label_my_page: Meine Seite |
|
214 | 218 | label_my_account: Mein Konto |
|
215 | 219 | label_my_projects: Meine Projekte |
|
216 | 220 | label_administration: Administration |
|
217 | 221 | label_login: Einloggen |
|
218 | 222 | label_logout: Abmelden |
|
219 | 223 | label_help: Hilfe |
|
220 | 224 | label_reported_issues: Gemeldete Tickets |
|
221 | 225 | label_assigned_to_me_issues: Mir zugewiesen |
|
222 | 226 | label_last_login: Letzte Anmeldung |
|
223 | 227 | label_last_updates: zuletzt aktualisiert |
|
224 | 228 | label_last_updates_plural: %d zuletzt aktualisierten |
|
225 | 229 | label_registered_on: Angemeldet am |
|
226 | 230 | label_activity: Aktivität |
|
227 | 231 | label_new: Neu |
|
228 | 232 | label_logged_as: Angemeldet als |
|
229 | 233 | label_environment: Environment |
|
230 | 234 | label_authentication: Authentifizierung |
|
231 | 235 | label_auth_source: Authentifizierungs-Modus |
|
232 | 236 | label_auth_source_new: Neuer Authentifizierungs-Modus |
|
233 | 237 | label_auth_source_plural: Authentifizierungs-Arten |
|
234 | 238 | label_subproject_plural: Sub Projekte |
|
235 | 239 | label_min_max_length: Min - Max Länge |
|
236 | 240 | label_list: Liste |
|
237 | 241 | label_date: Datum |
|
238 | 242 | label_integer: Zahl |
|
239 | 243 | label_boolean: Boolean |
|
240 | 244 | label_string: Text |
|
241 | 245 | label_text: Langer Text |
|
242 | 246 | label_attribute: Attribut |
|
243 | 247 | label_attribute_plural: Attribute |
|
244 | 248 | label_download: %d Download |
|
245 | 249 | label_download_plural: %d Downloads |
|
246 | 250 | label_no_data: Nichts anzuzeigen |
|
247 | 251 | label_change_status: Statuswechsel |
|
248 | 252 | label_history: Historie |
|
249 | 253 | label_attachment: Datei |
|
250 | 254 | label_attachment_new: Neue Datei |
|
251 | 255 | label_attachment_delete: Anhang löschen |
|
252 | 256 | label_attachment_plural: Dateien |
|
253 | 257 | label_report: Bericht |
|
254 | 258 | label_report_plural: Berichte |
|
255 | 259 | label_news: News |
|
256 | 260 | label_news_new: News hinzufügen |
|
257 | 261 | label_news_plural: News |
|
258 | 262 | label_news_latest: Letzte News |
|
259 | 263 | label_news_view_all: Alle News anzeigen |
|
260 | 264 | label_change_log: Change-Log |
|
261 | 265 | label_settings: Konfiguration |
|
262 | 266 | label_overview: Übersicht |
|
263 | 267 | label_version: Version |
|
264 | 268 | label_version_new: Neue Version |
|
265 | 269 | label_version_plural: Versionen |
|
266 | 270 | label_confirmation: Bestätigung |
|
267 | 271 | label_export_to: Export zu |
|
268 | 272 | label_read: Lesen... |
|
269 | 273 | label_public_projects: Öffentliche Projekte |
|
270 | 274 | label_open_issues: offen |
|
271 | 275 | label_open_issues_plural: offen |
|
272 | 276 | label_closed_issues: geschlossen |
|
273 | 277 | label_closed_issues_plural: geschlossen |
|
274 | 278 | label_total: Gesamtzahl |
|
275 | 279 | label_permissions: Berechtigungen |
|
276 | 280 | label_current_status: Gegenwärtiger Status |
|
277 | 281 | label_new_statuses_allowed: Neue Berechtigungen |
|
278 | 282 | label_all: alle |
|
279 | 283 | label_none: kein |
|
280 | 284 | label_next: Weiter |
|
281 | 285 | label_previous: Zurück |
|
282 | 286 | label_used_by: Benutzt von |
|
283 | 287 | label_details: Details... |
|
284 | 288 | label_add_note: Kommentar hinzufügen |
|
285 | 289 | label_per_page: Pro Seite |
|
286 | 290 | label_calendar: Kalender |
|
287 | 291 | label_months_from: Monate ab |
|
288 | 292 | label_gantt: Gantt |
|
289 | 293 | label_internal: Intern |
|
290 | 294 | label_last_changes: %d letzte Änderungen |
|
291 | 295 | label_change_view_all: Alle Änderungen ansehen |
|
292 | 296 | label_personalize_page: Diese Seite anpassen |
|
293 | 297 | label_comment: Kommentar |
|
294 | 298 | label_comment_plural: Kommentare |
|
295 | 299 | label_comment_add: Kommentar hinzufügen |
|
296 | 300 | label_comment_added: Kommentar hinzugefügt |
|
297 | 301 | label_comment_delete: Kommentar löschen |
|
298 | 302 | label_query: Benutzerdefinierte Abfrage |
|
299 | 303 | label_query_plural: Benutzerdefinierte Berichte |
|
300 | 304 | label_query_new: Neuer Bericht |
|
301 | 305 | label_filter_add: Filter hinzufügen |
|
302 | 306 | label_filter_plural: Filter |
|
303 | 307 | label_equals: ist |
|
304 | 308 | label_not_equals: ist nicht |
|
305 | 309 | label_in_less_than: in weniger als |
|
306 | 310 | label_in_more_than: in mehr als |
|
307 | 311 | label_in: an |
|
308 | 312 | label_today: heute |
|
309 | 313 | label_less_than_ago: vor weniger als |
|
310 | 314 | label_more_than_ago: vor mehr als |
|
311 | 315 | label_ago: vor |
|
312 | 316 | label_contains: enthält |
|
313 | 317 | label_not_contains: enthält nicht |
|
314 | 318 | label_day_plural: Tage |
|
315 | 319 | label_repository: SVN Projektarchiv |
|
316 | 320 | label_browse: Codebrowser |
|
317 | 321 | label_modification: %d Änderung |
|
318 | 322 | label_modification_plural: %d Änderungen |
|
319 | 323 | label_revision: Revision |
|
320 | 324 | label_revision_plural: Revisionen |
|
321 | 325 | label_added: hinzugefügt |
|
322 | 326 | label_modified: geändert |
|
323 | 327 | label_deleted: gelöscht |
|
324 | 328 | label_latest_revision: Aktuellste Revision |
|
325 | 329 | label_latest_revision_plural: Aktuellste Revisionen |
|
326 | 330 | label_view_revisions: Revisionen anzeigen |
|
327 | 331 | label_max_size: Maximale Größe |
|
328 | 332 | label_on: von |
|
329 | 333 | label_sort_highest: Anfang |
|
330 | 334 | label_sort_higher: eins höher |
|
331 | 335 | label_sort_lower: eins tiefer |
|
332 | 336 | label_sort_lowest: Ende |
|
333 | 337 | label_roadmap: Roadmap |
|
334 | 338 | label_roadmap_due_in: Fällig in |
|
335 | 339 | label_roadmap_no_issues: Keine Tickets für diese Version |
|
336 | 340 | label_search: Suche |
|
337 | 341 | label_result: %d Resultat |
|
338 | 342 | label_result_plural: %d Resultate |
|
339 | 343 | label_all_words: Alle Wörter |
|
340 | 344 | label_wiki: Wiki |
|
341 | 345 | label_wiki_edit: Wiki Bearbeitung |
|
342 | 346 | label_wiki_edit_plural: Wiki Bearbeitungen |
|
343 | 347 | label_page_index: Index |
|
344 | 348 | label_current_version: Gegenwärtige Version |
|
345 | 349 | label_preview: Vorschau |
|
346 | 350 | label_feed_plural: Feeds |
|
347 | 351 | label_changes_details: Details aller Änderungen |
|
348 | 352 | label_issue_tracking: Tickets |
|
349 | 353 | label_spent_time: Aufgewendete Zeit |
|
350 | 354 | label_f_hour: %.2f Stunde |
|
351 | 355 | label_f_hour_plural: %.2f Stunden |
|
352 | 356 | label_time_tracking: Zeiterfassung |
|
353 | 357 | label_change_plural: Änderungen |
|
354 | 358 | label_statistics: Statistiken |
|
355 | 359 | label_commits_per_month: Übertragungen pro Monat |
|
356 | 360 | label_commits_per_author: Übertragungen pro Autor |
|
357 | 361 | label_view_diff: View differences |
|
358 | 362 | label_diff_inline: inline |
|
359 | 363 | label_diff_side_by_side: side by side |
|
360 | 364 | label_options: Options |
|
361 | 365 | label_copy_workflow_from: Copy workflow from |
|
362 | 366 | label_permissions_report: Permissions report |
|
363 | 367 | label_watched_issues: Watched issues |
|
364 | 368 | label_related_issues: Related issues |
|
365 | 369 | label_applied_status: Applied status |
|
366 | 370 | label_loading: Loading... |
|
371 | label_relation_new: New relation | |
|
372 | label_relation_delete: Delete relation | |
|
373 | label_relates_to: related tp | |
|
374 | label_duplicates: duplicates | |
|
375 | label_blocks: blocks | |
|
376 | label_blocked_by: blocked by | |
|
377 | label_precedes: precedes | |
|
378 | label_follows: follows | |
|
379 | label_end_to_start: start to end | |
|
380 | label_end_to_end: end to end | |
|
381 | label_start_to_start: start to start | |
|
382 | label_start_to_end: start to end | |
|
367 | 383 | |
|
368 | 384 | button_login: Einloggen |
|
369 | 385 | button_submit: OK |
|
370 | 386 | button_save: Speichern |
|
371 | 387 | button_check_all: Alles auswählen |
|
372 | 388 | button_uncheck_all: Alles abwählen |
|
373 | 389 | button_delete: Löschen |
|
374 | 390 | button_create: Anlegen |
|
375 | 391 | button_test: Testen |
|
376 | 392 | button_edit: Bearbeiten |
|
377 | 393 | button_add: Hinzufügen |
|
378 | 394 | button_change: Wechseln |
|
379 | 395 | button_apply: Anwenden |
|
380 | 396 | button_clear: Zurücksetzen |
|
381 | 397 | button_lock: Sperren |
|
382 | 398 | button_unlock: Entsperren |
|
383 | 399 | button_download: Download |
|
384 | 400 | button_list: Liste |
|
385 | 401 | button_view: Siehe |
|
386 | 402 | button_move: Verschieben |
|
387 | 403 | button_back: Zurück |
|
388 | 404 | button_cancel: Abbrechen |
|
389 | 405 | button_activate: Aktivieren |
|
390 | 406 | button_sort: Sortieren |
|
391 | 407 | button_log_time: Log time |
|
392 | 408 | button_rollback: Rollback to this version |
|
393 | 409 | button_watch: Watch |
|
394 | 410 | button_unwatch: Unwatch |
|
395 | 411 | |
|
396 | 412 | status_active: aktiv |
|
397 | 413 | status_registered: angemeldet |
|
398 | 414 | status_locked: gesperrt |
|
399 | 415 | |
|
400 | 416 | text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll. |
|
401 | 417 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
402 | 418 | text_min_max_length_info: 0 heißt keine Beschränkung |
|
403 | 419 | text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen? |
|
404 | 420 | text_workflow_edit: Workflow zum Bearbeiten auswählen |
|
405 | 421 | text_are_you_sure: Sind Sie sicher? |
|
406 | 422 | text_journal_changed: geändert von %s zu %s |
|
407 | 423 | text_journal_set_to: gestellt zu %s |
|
408 | 424 | text_journal_deleted: gelöscht |
|
409 | 425 | text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt |
|
410 | 426 | text_tip_task_end_day: Aufgabe, die an diesem Tag beendet |
|
411 | 427 | text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet |
|
412 | 428 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
413 | 429 | text_caracters_maximum: %d characters maximum. |
|
414 | 430 | text_length_between: Length between %d and %d characters. |
|
415 | 431 | text_tracker_no_workflow: No workflow defined for this tracker |
|
416 | 432 | text_unallowed_characters: Unallowed characters |
|
417 | 433 | text_coma_separated: Multiple values allowed (coma separated). |
|
418 | 434 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
419 | 435 | |
|
420 | 436 | default_role_manager: Manager |
|
421 | 437 | default_role_developper: Developer |
|
422 | 438 | default_role_reporter: Reporter |
|
423 | 439 | default_tracker_bug: Fehler |
|
424 | 440 | default_tracker_feature: Feature |
|
425 | 441 | default_tracker_support: Support |
|
426 | 442 | default_issue_status_new: Neu |
|
427 | 443 | default_issue_status_assigned: Zugewiesen |
|
428 | 444 | default_issue_status_resolved: Gelöst |
|
429 | 445 | default_issue_status_feedback: Feedback |
|
430 | 446 | default_issue_status_closed: Erledigt |
|
431 | 447 | default_issue_status_rejected: Abgewiesen |
|
432 | 448 | default_doc_category_user: Benutzerdokumentation |
|
433 | 449 | default_doc_category_tech: Technische Dokumentation |
|
434 | 450 | default_priority_low: Niedrig |
|
435 | 451 | default_priority_normal: Normal |
|
436 | 452 | default_priority_high: Hoch |
|
437 | 453 | default_priority_urgent: Dringend |
|
438 | 454 | default_priority_immediate: Sofort |
|
439 | 455 | default_activity_design: Design |
|
440 | 456 | default_activity_development: Development |
|
441 | 457 | |
|
442 | 458 | enumeration_issue_priorities: Ticket-Prioritäten |
|
443 | 459 | enumeration_doc_categories: Dokumentenkategorien |
|
444 | 460 | enumeration_activities: Aktivitäten (Zeiterfassung) |
@@ -1,444 +1,460 | |||
|
1 | 1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
2 | 2 | |
|
3 | 3 | actionview_datehelper_select_day_prefix: |
|
4 | 4 | actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December |
|
5 | 5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec |
|
6 | 6 | actionview_datehelper_select_month_prefix: |
|
7 | 7 | actionview_datehelper_select_year_prefix: |
|
8 | 8 | actionview_datehelper_time_in_words_day: 1 day |
|
9 | 9 | actionview_datehelper_time_in_words_day_plural: %d days |
|
10 | 10 | actionview_datehelper_time_in_words_hour_about: about an hour |
|
11 | 11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours |
|
12 | 12 | actionview_datehelper_time_in_words_hour_about_single: about an hour |
|
13 | 13 | actionview_datehelper_time_in_words_minute: 1 minute |
|
14 | 14 | actionview_datehelper_time_in_words_minute_half: half a minute |
|
15 | 15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute |
|
16 | 16 | actionview_datehelper_time_in_words_minute_plural: %d minutes |
|
17 | 17 | actionview_datehelper_time_in_words_minute_single: 1 minute |
|
18 | 18 | actionview_datehelper_time_in_words_second_less_than: less than a second |
|
19 | 19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds |
|
20 | 20 | actionview_instancetag_blank_option: Please select |
|
21 | 21 | |
|
22 | 22 | activerecord_error_inclusion: is not included in the list |
|
23 | 23 | activerecord_error_exclusion: is reserved |
|
24 | 24 | activerecord_error_invalid: is invalid |
|
25 | 25 | activerecord_error_confirmation: doesn't match confirmation |
|
26 | 26 | activerecord_error_accepted: must be accepted |
|
27 | 27 | activerecord_error_empty: can't be empty |
|
28 | 28 | activerecord_error_blank: can't be blank |
|
29 | 29 | activerecord_error_too_long: is too long |
|
30 | 30 | activerecord_error_too_short: is too short |
|
31 | 31 | activerecord_error_wrong_length: is the wrong length |
|
32 | 32 | activerecord_error_taken: has already been taken |
|
33 | 33 | activerecord_error_not_a_number: is not a number |
|
34 | 34 | activerecord_error_not_a_date: is not a valid date |
|
35 | 35 | activerecord_error_greater_than_start_date: must be greater than start date |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
|
36 | 38 | |
|
37 | 39 | general_fmt_age: %d yr |
|
38 | 40 | general_fmt_age_plural: %d yrs |
|
39 | 41 | general_fmt_date: %%m/%%d/%%Y |
|
40 | 42 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p |
|
41 | 43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
42 | 44 | general_fmt_time: %%I:%%M %%p |
|
43 | 45 | general_text_No: 'No' |
|
44 | 46 | general_text_Yes: 'Yes' |
|
45 | 47 | general_text_no: 'no' |
|
46 | 48 | general_text_yes: 'yes' |
|
47 | 49 | general_lang_en: 'English' |
|
48 | 50 | general_csv_separator: ',' |
|
49 | 51 | general_csv_encoding: ISO-8859-1 |
|
50 | 52 | general_pdf_encoding: ISO-8859-1 |
|
51 | 53 | general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday |
|
52 | 54 | |
|
53 | 55 | notice_account_updated: Account was successfully updated. |
|
54 | 56 | notice_account_invalid_creditentials: Invalid user or password |
|
55 | 57 | notice_account_password_updated: Password was successfully updated. |
|
56 | 58 | notice_account_wrong_password: Wrong password |
|
57 | 59 | notice_account_register_done: Account was successfully created. |
|
58 | 60 | notice_account_unknown_email: Unknown user. |
|
59 | 61 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
60 | 62 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
61 | 63 | notice_account_activated: Your account has been activated. You can now log in. |
|
62 | 64 | notice_successful_create: Successful creation. |
|
63 | 65 | notice_successful_update: Successful update. |
|
64 | 66 | notice_successful_delete: Successful deletion. |
|
65 | 67 | notice_successful_connection: Successful connection. |
|
66 | 68 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. |
|
67 | 69 | notice_locking_conflict: Data have been updated by another user. |
|
68 | 70 | notice_scm_error: Entry and/or revision doesn't exist in the repository. |
|
69 | 71 | notice_not_authorized: You are not authorized to access this page. |
|
70 | 72 | |
|
71 | 73 | mail_subject_lost_password: Your redMine password |
|
72 | 74 | mail_subject_register: redMine account activation |
|
73 | 75 | |
|
74 | 76 | gui_validation_error: 1 error |
|
75 | 77 | gui_validation_error_plural: %d errors |
|
76 | 78 | |
|
77 | 79 | field_name: Name |
|
78 | 80 | field_description: Description |
|
79 | 81 | field_summary: Summary |
|
80 | 82 | field_is_required: Required |
|
81 | 83 | field_firstname: Firstname |
|
82 | 84 | field_lastname: Lastname |
|
83 | 85 | field_mail: Email |
|
84 | 86 | field_filename: File |
|
85 | 87 | field_filesize: Size |
|
86 | 88 | field_downloads: Downloads |
|
87 | 89 | field_author: Author |
|
88 | 90 | field_created_on: Created |
|
89 | 91 | field_updated_on: Updated |
|
90 | 92 | field_field_format: Format |
|
91 | 93 | field_is_for_all: For all projects |
|
92 | 94 | field_possible_values: Possible values |
|
93 | 95 | field_regexp: Regular expression |
|
94 | 96 | field_min_length: Minimum length |
|
95 | 97 | field_max_length: Maximum length |
|
96 | 98 | field_value: Value |
|
97 | 99 | field_category: Category |
|
98 | 100 | field_title: Title |
|
99 | 101 | field_project: Project |
|
100 | 102 | field_issue: Issue |
|
101 | 103 | field_status: Status |
|
102 | 104 | field_notes: Notes |
|
103 | 105 | field_is_closed: Issue closed |
|
104 | 106 | field_is_default: Default status |
|
105 | 107 | field_html_color: Color |
|
106 | 108 | field_tracker: Tracker |
|
107 | 109 | field_subject: Subject |
|
108 | 110 | field_due_date: Due date |
|
109 | 111 | field_assigned_to: Assigned to |
|
110 | 112 | field_priority: Priority |
|
111 | 113 | field_fixed_version: Fixed version |
|
112 | 114 | field_user: User |
|
113 | 115 | field_role: Role |
|
114 | 116 | field_homepage: Homepage |
|
115 | 117 | field_is_public: Public |
|
116 | 118 | field_parent: Subproject of |
|
117 | 119 | field_is_in_chlog: Issues displayed in changelog |
|
118 | 120 | field_is_in_roadmap: Issues displayed in roadmap |
|
119 | 121 | field_login: Login |
|
120 | 122 | field_mail_notification: Mail notifications |
|
121 | 123 | field_admin: Administrator |
|
122 | 124 | field_last_login_on: Last connection |
|
123 | 125 | field_language: Language |
|
124 | 126 | field_effective_date: Date |
|
125 | 127 | field_password: Password |
|
126 | 128 | field_new_password: New password |
|
127 | 129 | field_password_confirmation: Confirmation |
|
128 | 130 | field_version: Version |
|
129 | 131 | field_type: Type |
|
130 | 132 | field_host: Host |
|
131 | 133 | field_port: Port |
|
132 | 134 | field_account: Account |
|
133 | 135 | field_base_dn: Base DN |
|
134 | 136 | field_attr_login: Login attribute |
|
135 | 137 | field_attr_firstname: Firstname attribute |
|
136 | 138 | field_attr_lastname: Lastname attribute |
|
137 | 139 | field_attr_mail: Email attribute |
|
138 | 140 | field_onthefly: On-the-fly user creation |
|
139 | 141 | field_start_date: Start |
|
140 | 142 | field_done_ratio: %% Done |
|
141 | 143 | field_auth_source: Authentication mode |
|
142 | 144 | field_hide_mail: Hide my email address |
|
143 | 145 | field_comments: Comment |
|
144 | 146 | field_url: URL |
|
145 | 147 | field_start_page: Start page |
|
146 | 148 | field_subproject: Subproject |
|
147 | 149 | field_hours: Hours |
|
148 | 150 | field_activity: Activity |
|
149 | 151 | field_spent_on: Date |
|
150 | 152 | field_identifier: Identifier |
|
151 | 153 | field_is_filter: Used as a filter |
|
154 | field_issue_to_id: Related issue | |
|
155 | field_delay: Delay | |
|
152 | 156 | |
|
153 | 157 | setting_app_title: Application title |
|
154 | 158 | setting_app_subtitle: Application subtitle |
|
155 | 159 | setting_welcome_text: Welcome text |
|
156 | 160 | setting_default_language: Default language |
|
157 | 161 | setting_login_required: Authent. required |
|
158 | 162 | setting_self_registration: Self-registration enabled |
|
159 | 163 | setting_attachment_max_size: Attachment max. size |
|
160 | 164 | setting_issues_export_limit: Issues export limit |
|
161 | 165 | setting_mail_from: Emission mail address |
|
162 | 166 | setting_host_name: Host name |
|
163 | 167 | setting_text_formatting: Text formatting |
|
164 | 168 | setting_wiki_compression: Wiki history compression |
|
165 | 169 | setting_feeds_limit: Feed content limit |
|
166 | 170 | setting_autofetch_changesets: Autofetch SVN commits |
|
167 | 171 | setting_sys_api_enabled: Enable WS for repository management |
|
168 | 172 | setting_commit_ref_keywords: Referencing keywords |
|
169 | 173 | setting_commit_fix_keywords: Fixing keywords |
|
170 | 174 | |
|
171 | 175 | label_user: User |
|
172 | 176 | label_user_plural: Users |
|
173 | 177 | label_user_new: New user |
|
174 | 178 | label_project: Project |
|
175 | 179 | label_project_new: New project |
|
176 | 180 | label_project_plural: Projects |
|
177 | 181 | label_project_latest: Latest projects |
|
178 | 182 | label_issue: Issue |
|
179 | 183 | label_issue_new: New issue |
|
180 | 184 | label_issue_plural: Issues |
|
181 | 185 | label_issue_view_all: View all issues |
|
182 | 186 | label_document: Document |
|
183 | 187 | label_document_new: New document |
|
184 | 188 | label_document_plural: Documents |
|
185 | 189 | label_role: Role |
|
186 | 190 | label_role_plural: Roles |
|
187 | 191 | label_role_new: New role |
|
188 | 192 | label_role_and_permissions: Roles and permissions |
|
189 | 193 | label_member: Member |
|
190 | 194 | label_member_new: New member |
|
191 | 195 | label_member_plural: Members |
|
192 | 196 | label_tracker: Tracker |
|
193 | 197 | label_tracker_plural: Trackers |
|
194 | 198 | label_tracker_new: New tracker |
|
195 | 199 | label_workflow: Workflow |
|
196 | 200 | label_issue_status: Issue status |
|
197 | 201 | label_issue_status_plural: Issue statuses |
|
198 | 202 | label_issue_status_new: New status |
|
199 | 203 | label_issue_category: Issue category |
|
200 | 204 | label_issue_category_plural: Issue categories |
|
201 | 205 | label_issue_category_new: New category |
|
202 | 206 | label_custom_field: Custom field |
|
203 | 207 | label_custom_field_plural: Custom fields |
|
204 | 208 | label_custom_field_new: New custom field |
|
205 | 209 | label_enumerations: Enumerations |
|
206 | 210 | label_enumeration_new: New value |
|
207 | 211 | label_information: Information |
|
208 | 212 | label_information_plural: Information |
|
209 | 213 | label_please_login: Please login |
|
210 | 214 | label_register: Register |
|
211 | 215 | label_password_lost: Lost password |
|
212 | 216 | label_home: Home |
|
213 | 217 | label_my_page: My page |
|
214 | 218 | label_my_account: My account |
|
215 | 219 | label_my_projects: My projects |
|
216 | 220 | label_administration: Administration |
|
217 | 221 | label_login: Login |
|
218 | 222 | label_logout: Logout |
|
219 | 223 | label_help: Help |
|
220 | 224 | label_reported_issues: Reported issues |
|
221 | 225 | label_assigned_to_me_issues: Issues assigned to me |
|
222 | 226 | label_last_login: Last connection |
|
223 | 227 | label_last_updates: Last updated |
|
224 | 228 | label_last_updates_plural: %d last updated |
|
225 | 229 | label_registered_on: Registered on |
|
226 | 230 | label_activity: Activity |
|
227 | 231 | label_new: New |
|
228 | 232 | label_logged_as: Logged as |
|
229 | 233 | label_environment: Environment |
|
230 | 234 | label_authentication: Authentication |
|
231 | 235 | label_auth_source: Authentication mode |
|
232 | 236 | label_auth_source_new: New authentication mode |
|
233 | 237 | label_auth_source_plural: Authentication modes |
|
234 | 238 | label_subproject_plural: Subprojects |
|
235 | 239 | label_min_max_length: Min - Max length |
|
236 | 240 | label_list: List |
|
237 | 241 | label_date: Date |
|
238 | 242 | label_integer: Integer |
|
239 | 243 | label_boolean: Boolean |
|
240 | 244 | label_string: Text |
|
241 | 245 | label_text: Long text |
|
242 | 246 | label_attribute: Attribute |
|
243 | 247 | label_attribute_plural: Attributes |
|
244 | 248 | label_download: %d Download |
|
245 | 249 | label_download_plural: %d Downloads |
|
246 | 250 | label_no_data: No data to display |
|
247 | 251 | label_change_status: Change status |
|
248 | 252 | label_history: History |
|
249 | 253 | label_attachment: File |
|
250 | 254 | label_attachment_new: New file |
|
251 | 255 | label_attachment_delete: Delete file |
|
252 | 256 | label_attachment_plural: Files |
|
253 | 257 | label_report: Report |
|
254 | 258 | label_report_plural: Reports |
|
255 | 259 | label_news: News |
|
256 | 260 | label_news_new: Add news |
|
257 | 261 | label_news_plural: News |
|
258 | 262 | label_news_latest: Latest news |
|
259 | 263 | label_news_view_all: View all news |
|
260 | 264 | label_change_log: Change log |
|
261 | 265 | label_settings: Settings |
|
262 | 266 | label_overview: Overview |
|
263 | 267 | label_version: Version |
|
264 | 268 | label_version_new: New version |
|
265 | 269 | label_version_plural: Versions |
|
266 | 270 | label_confirmation: Confirmation |
|
267 | 271 | label_export_to: Export to |
|
268 | 272 | label_read: Read... |
|
269 | 273 | label_public_projects: Public projects |
|
270 | 274 | label_open_issues: open |
|
271 | 275 | label_open_issues_plural: open |
|
272 | 276 | label_closed_issues: closed |
|
273 | 277 | label_closed_issues_plural: closed |
|
274 | 278 | label_total: Total |
|
275 | 279 | label_permissions: Permissions |
|
276 | 280 | label_current_status: Current status |
|
277 | 281 | label_new_statuses_allowed: New statuses allowed |
|
278 | 282 | label_all: all |
|
279 | 283 | label_none: none |
|
280 | 284 | label_next: Next |
|
281 | 285 | label_previous: Previous |
|
282 | 286 | label_used_by: Used by |
|
283 | 287 | label_details: Details... |
|
284 | 288 | label_add_note: Add a note |
|
285 | 289 | label_per_page: Per page |
|
286 | 290 | label_calendar: Calendar |
|
287 | 291 | label_months_from: months from |
|
288 | 292 | label_gantt: Gantt |
|
289 | 293 | label_internal: Internal |
|
290 | 294 | label_last_changes: last %d changes |
|
291 | 295 | label_change_view_all: View all changes |
|
292 | 296 | label_personalize_page: Personalize this page |
|
293 | 297 | label_comment: Comment |
|
294 | 298 | label_comment_plural: Comments |
|
295 | 299 | label_comment_add: Add a comment |
|
296 | 300 | label_comment_added: Comment added |
|
297 | 301 | label_comment_delete: Delete comments |
|
298 | 302 | label_query: Custom query |
|
299 | 303 | label_query_plural: Custom queries |
|
300 | 304 | label_query_new: New query |
|
301 | 305 | label_filter_add: Add filter |
|
302 | 306 | label_filter_plural: Filters |
|
303 | 307 | label_equals: is |
|
304 | 308 | label_not_equals: is not |
|
305 | 309 | label_in_less_than: in less than |
|
306 | 310 | label_in_more_than: in more than |
|
307 | 311 | label_in: in |
|
308 | 312 | label_today: today |
|
309 | 313 | label_less_than_ago: less than days ago |
|
310 | 314 | label_more_than_ago: more than days ago |
|
311 | 315 | label_ago: days ago |
|
312 | 316 | label_contains: contains |
|
313 | 317 | label_not_contains: doesn't contain |
|
314 | 318 | label_day_plural: days |
|
315 | 319 | label_repository: SVN Repository |
|
316 | 320 | label_browse: Browse |
|
317 | 321 | label_modification: %d change |
|
318 | 322 | label_modification_plural: %d changes |
|
319 | 323 | label_revision: Revision |
|
320 | 324 | label_revision_plural: Revisions |
|
321 | 325 | label_added: added |
|
322 | 326 | label_modified: modified |
|
323 | 327 | label_deleted: deleted |
|
324 | 328 | label_latest_revision: Latest revision |
|
325 | 329 | label_latest_revision_plural: Latest revisions |
|
326 | 330 | label_view_revisions: View revisions |
|
327 | 331 | label_max_size: Maximum size |
|
328 | 332 | label_on: 'on' |
|
329 | 333 | label_sort_highest: Move to top |
|
330 | 334 | label_sort_higher: Move up |
|
331 | 335 | label_sort_lower: Move down |
|
332 | 336 | label_sort_lowest: Move to bottom |
|
333 | 337 | label_roadmap: Roadmap |
|
334 | 338 | label_roadmap_due_in: Due in |
|
335 | 339 | label_roadmap_no_issues: No issues for this version |
|
336 | 340 | label_search: Search |
|
337 | 341 | label_result: %d result |
|
338 | 342 | label_result_plural: %d results |
|
339 | 343 | label_all_words: All words |
|
340 | 344 | label_wiki: Wiki |
|
341 | 345 | label_wiki_edit: Wiki edit |
|
342 | 346 | label_wiki_edit_plural: Wiki edits |
|
343 | 347 | label_page_index: Index |
|
344 | 348 | label_current_version: Current version |
|
345 | 349 | label_preview: Preview |
|
346 | 350 | label_feed_plural: Feeds |
|
347 | 351 | label_changes_details: Details of all changes |
|
348 | 352 | label_issue_tracking: Issue tracking |
|
349 | 353 | label_spent_time: Spent time |
|
350 | 354 | label_f_hour: %.2f hour |
|
351 | 355 | label_f_hour_plural: %.2f hours |
|
352 | 356 | label_time_tracking: Time tracking |
|
353 | 357 | label_change_plural: Changes |
|
354 | 358 | label_statistics: Statistics |
|
355 | 359 | label_commits_per_month: Commits per month |
|
356 | 360 | label_commits_per_author: Commits per author |
|
357 | 361 | label_view_diff: View differences |
|
358 | 362 | label_diff_inline: inline |
|
359 | 363 | label_diff_side_by_side: side by side |
|
360 | 364 | label_options: Options |
|
361 | 365 | label_copy_workflow_from: Copy workflow from |
|
362 | 366 | label_permissions_report: Permissions report |
|
363 | 367 | label_watched_issues: Watched issues |
|
364 | 368 | label_related_issues: Related issues |
|
365 | 369 | label_applied_status: Applied status |
|
366 | 370 | label_loading: Loading... |
|
371 | label_relation_new: New relation | |
|
372 | label_relation_delete: Delete relation | |
|
373 | label_relates_to: related tp | |
|
374 | label_duplicates: duplicates | |
|
375 | label_blocks: blocks | |
|
376 | label_blocked_by: blocked by | |
|
377 | label_precedes: precedes | |
|
378 | label_follows: follows | |
|
379 | label_end_to_start: start to end | |
|
380 | label_end_to_end: end to end | |
|
381 | label_start_to_start: start to start | |
|
382 | label_start_to_end: start to end | |
|
367 | 383 | |
|
368 | 384 | button_login: Login |
|
369 | 385 | button_submit: Submit |
|
370 | 386 | button_save: Save |
|
371 | 387 | button_check_all: Check all |
|
372 | 388 | button_uncheck_all: Uncheck all |
|
373 | 389 | button_delete: Delete |
|
374 | 390 | button_create: Create |
|
375 | 391 | button_test: Test |
|
376 | 392 | button_edit: Edit |
|
377 | 393 | button_add: Add |
|
378 | 394 | button_change: Change |
|
379 | 395 | button_apply: Apply |
|
380 | 396 | button_clear: Clear |
|
381 | 397 | button_lock: Lock |
|
382 | 398 | button_unlock: Unlock |
|
383 | 399 | button_download: Download |
|
384 | 400 | button_list: List |
|
385 | 401 | button_view: View |
|
386 | 402 | button_move: Move |
|
387 | 403 | button_back: Back |
|
388 | 404 | button_cancel: Cancel |
|
389 | 405 | button_activate: Activate |
|
390 | 406 | button_sort: Sort |
|
391 | 407 | button_log_time: Log time |
|
392 | 408 | button_rollback: Rollback to this version |
|
393 | 409 | button_watch: Watch |
|
394 | 410 | button_unwatch: Unwatch |
|
395 | 411 | |
|
396 | 412 | status_active: active |
|
397 | 413 | status_registered: registered |
|
398 | 414 | status_locked: locked |
|
399 | 415 | |
|
400 | 416 | text_select_mail_notifications: Select actions for which mail notifications should be sent. |
|
401 | 417 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
402 | 418 | text_min_max_length_info: 0 means no restriction |
|
403 | 419 | text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ? |
|
404 | 420 | text_workflow_edit: Select a role and a tracker to edit the workflow |
|
405 | 421 | text_are_you_sure: Are you sure ? |
|
406 | 422 | text_journal_changed: changed from %s to %s |
|
407 | 423 | text_journal_set_to: set to %s |
|
408 | 424 | text_journal_deleted: deleted |
|
409 | 425 | text_tip_task_begin_day: task beginning this day |
|
410 | 426 | text_tip_task_end_day: task ending this day |
|
411 | 427 | text_tip_task_begin_end_day: task beginning and ending this day |
|
412 | 428 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
413 | 429 | text_caracters_maximum: %d characters maximum. |
|
414 | 430 | text_length_between: Length between %d and %d characters. |
|
415 | 431 | text_tracker_no_workflow: No workflow defined for this tracker |
|
416 | 432 | text_unallowed_characters: Unallowed characters |
|
417 | 433 | text_coma_separated: Multiple values allowed (coma separated). |
|
418 | 434 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
419 | 435 | |
|
420 | 436 | default_role_manager: Manager |
|
421 | 437 | default_role_developper: Developer |
|
422 | 438 | default_role_reporter: Reporter |
|
423 | 439 | default_tracker_bug: Bug |
|
424 | 440 | default_tracker_feature: Feature |
|
425 | 441 | default_tracker_support: Support |
|
426 | 442 | default_issue_status_new: New |
|
427 | 443 | default_issue_status_assigned: Assigned |
|
428 | 444 | default_issue_status_resolved: Resolved |
|
429 | 445 | default_issue_status_feedback: Feedback |
|
430 | 446 | default_issue_status_closed: Closed |
|
431 | 447 | default_issue_status_rejected: Rejected |
|
432 | 448 | default_doc_category_user: User documentation |
|
433 | 449 | default_doc_category_tech: Technical documentation |
|
434 | 450 | default_priority_low: Low |
|
435 | 451 | default_priority_normal: Normal |
|
436 | 452 | default_priority_high: High |
|
437 | 453 | default_priority_urgent: Urgent |
|
438 | 454 | default_priority_immediate: Immediate |
|
439 | 455 | default_activity_design: Design |
|
440 | 456 | default_activity_development: Development |
|
441 | 457 | |
|
442 | 458 | enumeration_issue_priorities: Issue priorities |
|
443 | 459 | enumeration_doc_categories: Document categories |
|
444 | 460 | enumeration_activities: Activities (time tracking) |
@@ -1,444 +1,460 | |||
|
1 | 1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
2 | 2 | |
|
3 | 3 | actionview_datehelper_select_day_prefix: |
|
4 | 4 | actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre |
|
5 | 5 | actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic |
|
6 | 6 | actionview_datehelper_select_month_prefix: |
|
7 | 7 | actionview_datehelper_select_year_prefix: |
|
8 | 8 | actionview_datehelper_time_in_words_day: 1 day |
|
9 | 9 | actionview_datehelper_time_in_words_day_plural: %d days |
|
10 | 10 | actionview_datehelper_time_in_words_hour_about: about an hour |
|
11 | 11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours |
|
12 | 12 | actionview_datehelper_time_in_words_hour_about_single: about an hour |
|
13 | 13 | actionview_datehelper_time_in_words_minute: 1 minute |
|
14 | 14 | actionview_datehelper_time_in_words_minute_half: half a minute |
|
15 | 15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute |
|
16 | 16 | actionview_datehelper_time_in_words_minute_plural: %d minutes |
|
17 | 17 | actionview_datehelper_time_in_words_minute_single: 1 minute |
|
18 | 18 | actionview_datehelper_time_in_words_second_less_than: less than a second |
|
19 | 19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds |
|
20 | 20 | actionview_instancetag_blank_option: Please select |
|
21 | 21 | |
|
22 | 22 | activerecord_error_inclusion: is not included in the list |
|
23 | 23 | activerecord_error_exclusion: is reserved |
|
24 | 24 | activerecord_error_invalid: is invalid |
|
25 | 25 | activerecord_error_confirmation: doesn't match confirmation |
|
26 | 26 | activerecord_error_accepted: must be accepted |
|
27 | 27 | activerecord_error_empty: can't be empty |
|
28 | 28 | activerecord_error_blank: can't be blank |
|
29 | 29 | activerecord_error_too_long: is too long |
|
30 | 30 | activerecord_error_too_short: is too short |
|
31 | 31 | activerecord_error_wrong_length: is the wrong length |
|
32 | 32 | activerecord_error_taken: has already been taken |
|
33 | 33 | activerecord_error_not_a_number: is not a number |
|
34 | 34 | activerecord_error_not_a_date: no es una fecha válida |
|
35 | 35 | activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
|
36 | 38 | |
|
37 | 39 | general_fmt_age: %d año |
|
38 | 40 | general_fmt_age_plural: %d años |
|
39 | 41 | general_fmt_date: %%d/%%m/%%Y |
|
40 | 42 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M |
|
41 | 43 | general_fmt_datetime_short: %%d/%%m %%H:%%M |
|
42 | 44 | general_fmt_time: %%H:%%M |
|
43 | 45 | general_text_No: 'No' |
|
44 | 46 | general_text_Yes: 'Sí' |
|
45 | 47 | general_text_no: 'no' |
|
46 | 48 | general_text_yes: 'sí' |
|
47 | 49 | general_lang_es: 'Español' |
|
48 | 50 | general_csv_separator: ';' |
|
49 | 51 | general_csv_encoding: ISO-8859-1 |
|
50 | 52 | general_pdf_encoding: ISO-8859-1 |
|
51 | 53 | general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo |
|
52 | 54 | |
|
53 | 55 | notice_account_updated: Account was successfully updated. |
|
54 | 56 | notice_account_invalid_creditentials: Invalid user or password |
|
55 | 57 | notice_account_password_updated: Password was successfully updated. |
|
56 | 58 | notice_account_wrong_password: Wrong password |
|
57 | 59 | notice_account_register_done: Account was successfully created. |
|
58 | 60 | notice_account_unknown_email: Unknown user. |
|
59 | 61 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
60 | 62 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
61 | 63 | notice_account_activated: Your account has been activated. You can now log in. |
|
62 | 64 | notice_successful_create: Successful creation. |
|
63 | 65 | notice_successful_update: Successful update. |
|
64 | 66 | notice_successful_delete: Successful deletion. |
|
65 | 67 | notice_successful_connection: Successful connection. |
|
66 | 68 | notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado. |
|
67 | 69 | notice_locking_conflict: Data have been updated by another user. |
|
68 | 70 | notice_scm_error: La entrada y/o la revisión no existe en el depósito. |
|
69 | 71 | notice_not_authorized: You are not authorized to access this page. |
|
70 | 72 | |
|
71 | 73 | mail_subject_lost_password: Tu contraseña del redMine |
|
72 | 74 | mail_subject_register: Activación de la cuenta del redMine |
|
73 | 75 | |
|
74 | 76 | gui_validation_error: 1 error |
|
75 | 77 | gui_validation_error_plural: %d errores |
|
76 | 78 | |
|
77 | 79 | field_name: Nombre |
|
78 | 80 | field_description: Descripción |
|
79 | 81 | field_summary: Resumen |
|
80 | 82 | field_is_required: Obligatorio |
|
81 | 83 | field_firstname: Nombre |
|
82 | 84 | field_lastname: Apellido |
|
83 | 85 | field_mail: Email |
|
84 | 86 | field_filename: Fichero |
|
85 | 87 | field_filesize: Tamaño |
|
86 | 88 | field_downloads: Telecargas |
|
87 | 89 | field_author: Autor |
|
88 | 90 | field_created_on: Creado |
|
89 | 91 | field_updated_on: Actualizado |
|
90 | 92 | field_field_format: Formato |
|
91 | 93 | field_is_for_all: Para todos los proyectos |
|
92 | 94 | field_possible_values: Valores posibles |
|
93 | 95 | field_regexp: Expresión regular |
|
94 | 96 | field_min_length: Longitud mínima |
|
95 | 97 | field_max_length: Longitud máxima |
|
96 | 98 | field_value: Valor |
|
97 | 99 | field_category: Categoría |
|
98 | 100 | field_title: Título |
|
99 | 101 | field_project: Proyecto |
|
100 | 102 | field_issue: Petición |
|
101 | 103 | field_status: Estatuto |
|
102 | 104 | field_notes: Notas |
|
103 | 105 | field_is_closed: Petición resuelta |
|
104 | 106 | field_is_default: Estatuto por defecto |
|
105 | 107 | field_html_color: Color |
|
106 | 108 | field_tracker: Tracker |
|
107 | 109 | field_subject: Tema |
|
108 | 110 | field_due_date: Fecha debida |
|
109 | 111 | field_assigned_to: Asignado a |
|
110 | 112 | field_priority: Prioridad |
|
111 | 113 | field_fixed_version: Versión corregida |
|
112 | 114 | field_user: Usuario |
|
113 | 115 | field_role: Papel |
|
114 | 116 | field_homepage: Sitio web |
|
115 | 117 | field_is_public: Público |
|
116 | 118 | field_parent: Proyecto secundario de |
|
117 | 119 | field_is_in_chlog: Consultar las peticiones en el histórico |
|
118 | 120 | field_is_in_roadmap: Consultar las peticiones en el roadmap |
|
119 | 121 | field_login: Identificador |
|
120 | 122 | field_mail_notification: Notificación por mail |
|
121 | 123 | field_admin: Administrador |
|
122 | 124 | field_last_login_on: Última conexión |
|
123 | 125 | field_language: Lengua |
|
124 | 126 | field_effective_date: Fecha |
|
125 | 127 | field_password: Contraseña |
|
126 | 128 | field_new_password: Nueva contraseña |
|
127 | 129 | field_password_confirmation: Confirmación |
|
128 | 130 | field_version: Versión |
|
129 | 131 | field_type: Tipo |
|
130 | 132 | field_host: Anfitrión |
|
131 | 133 | field_port: Puerto |
|
132 | 134 | field_account: Cuenta |
|
133 | 135 | field_base_dn: Base DN |
|
134 | 136 | field_attr_login: Cualidad del identificador |
|
135 | 137 | field_attr_firstname: Cualidad del nombre |
|
136 | 138 | field_attr_lastname: Cualidad del apellido |
|
137 | 139 | field_attr_mail: Cualidad del Email |
|
138 | 140 | field_onthefly: Creación del usuario On-the-fly |
|
139 | 141 | field_start_date: Comienzo |
|
140 | 142 | field_done_ratio: %% Realizado |
|
141 | 143 | field_auth_source: Modo de la autentificación |
|
142 | 144 | field_hide_mail: Ocultar mi email address |
|
143 | 145 | field_comments: Comentario |
|
144 | 146 | field_url: URL |
|
145 | 147 | field_start_page: Página principal |
|
146 | 148 | field_subproject: Proyecto secundario |
|
147 | 149 | field_hours: Hours |
|
148 | 150 | field_activity: Activity |
|
149 | 151 | field_spent_on: Fecha |
|
150 | 152 | field_identifier: Identifier |
|
151 | 153 | field_is_filter: Used as a filter |
|
154 | field_issue_to_id: Related issue | |
|
155 | field_delay: Delay | |
|
152 | 156 | |
|
153 | 157 | setting_app_title: Título del aplicación |
|
154 | 158 | setting_app_subtitle: Subtítulo del aplicación |
|
155 | 159 | setting_welcome_text: Texto acogida |
|
156 | 160 | setting_default_language: Lengua del defecto |
|
157 | 161 | setting_login_required: Autentif. requerida |
|
158 | 162 | setting_self_registration: Registro permitido |
|
159 | 163 | setting_attachment_max_size: Tamaño máximo del fichero |
|
160 | 164 | setting_issues_export_limit: Issues export limit |
|
161 | 165 | setting_mail_from: Email de la emisión |
|
162 | 166 | setting_host_name: Nombre de anfitrión |
|
163 | 167 | setting_text_formatting: Formato de texto |
|
164 | 168 | setting_wiki_compression: Compresión de la historia de Wiki |
|
165 | 169 | setting_feeds_limit: Feed content limit |
|
166 | 170 | setting_autofetch_changesets: Autofetch SVN commits |
|
167 | 171 | setting_sys_api_enabled: Enable WS for repository management |
|
168 | 172 | setting_commit_ref_keywords: Referencing keywords |
|
169 | 173 | setting_commit_fix_keywords: Fixing keywords |
|
170 | 174 | |
|
171 | 175 | label_user: Usuario |
|
172 | 176 | label_user_plural: Usuarios |
|
173 | 177 | label_user_new: Nuevo usuario |
|
174 | 178 | label_project: Proyecto |
|
175 | 179 | label_project_new: Nuevo proyecto |
|
176 | 180 | label_project_plural: Proyectos |
|
177 | 181 | label_project_latest: Los proyectos más últimos |
|
178 | 182 | label_issue: Petición |
|
179 | 183 | label_issue_new: Nueva petición |
|
180 | 184 | label_issue_plural: Peticiones |
|
181 | 185 | label_issue_view_all: Ver todas las peticiones |
|
182 | 186 | label_document: Documento |
|
183 | 187 | label_document_new: Nuevo documento |
|
184 | 188 | label_document_plural: Documentos |
|
185 | 189 | label_role: Papel |
|
186 | 190 | label_role_plural: Papeles |
|
187 | 191 | label_role_new: Nuevo papel |
|
188 | 192 | label_role_and_permissions: Papeles y permisos |
|
189 | 193 | label_member: Miembro |
|
190 | 194 | label_member_new: Nuevo miembro |
|
191 | 195 | label_member_plural: Miembros |
|
192 | 196 | label_tracker: Tracker |
|
193 | 197 | label_tracker_plural: Trackers |
|
194 | 198 | label_tracker_new: Nuevo tracker |
|
195 | 199 | label_workflow: Workflow |
|
196 | 200 | label_issue_status: Estatuto de petición |
|
197 | 201 | label_issue_status_plural: Estatutos de las peticiones |
|
198 | 202 | label_issue_status_new: Nuevo estatuto |
|
199 | 203 | label_issue_category: Categoría de las peticiones |
|
200 | 204 | label_issue_category_plural: Categorías de las peticiones |
|
201 | 205 | label_issue_category_new: Nueva categoría |
|
202 | 206 | label_custom_field: Campo personalizado |
|
203 | 207 | label_custom_field_plural: Campos personalizados |
|
204 | 208 | label_custom_field_new: Nuevo campo personalizado |
|
205 | 209 | label_enumerations: Listas de valores |
|
206 | 210 | label_enumeration_new: Nuevo valor |
|
207 | 211 | label_information: Informacion |
|
208 | 212 | label_information_plural: Informaciones |
|
209 | 213 | label_please_login: Conexión |
|
210 | 214 | label_register: Registrar |
|
211 | 215 | label_password_lost: ¿Olvidaste la contraseña? |
|
212 | 216 | label_home: Acogida |
|
213 | 217 | label_my_page: Mi página |
|
214 | 218 | label_my_account: Mi cuenta |
|
215 | 219 | label_my_projects: Mis proyectos |
|
216 | 220 | label_administration: Administración |
|
217 | 221 | label_login: Conexión |
|
218 | 222 | label_logout: Desconexión |
|
219 | 223 | label_help: Ayuda |
|
220 | 224 | label_reported_issues: Peticiones registradas |
|
221 | 225 | label_assigned_to_me_issues: Peticiones que me están asignadas |
|
222 | 226 | label_last_login: Última conexión |
|
223 | 227 | label_last_updates: Actualizado |
|
224 | 228 | label_last_updates_plural: %d Actualizados |
|
225 | 229 | label_registered_on: Inscrito el |
|
226 | 230 | label_activity: Actividad |
|
227 | 231 | label_new: Nuevo |
|
228 | 232 | label_logged_as: Conectado como |
|
229 | 233 | label_environment: Environment |
|
230 | 234 | label_authentication: Autentificación |
|
231 | 235 | label_auth_source: Modo de la autentificación |
|
232 | 236 | label_auth_source_new: Nuevo modo de la autentificación |
|
233 | 237 | label_auth_source_plural: Modos de la autentificación |
|
234 | 238 | label_subproject_plural: Proyectos secundarios |
|
235 | 239 | label_min_max_length: Longitud mín - máx |
|
236 | 240 | label_list: Lista |
|
237 | 241 | label_date: Fecha |
|
238 | 242 | label_integer: Número |
|
239 | 243 | label_boolean: Boleano |
|
240 | 244 | label_string: Texto |
|
241 | 245 | label_text: Texto largo |
|
242 | 246 | label_attribute: Cualidad |
|
243 | 247 | label_attribute_plural: Cualidades |
|
244 | 248 | label_download: %d Telecarga |
|
245 | 249 | label_download_plural: %d Telecargas |
|
246 | 250 | label_no_data: Ningunos datos a exhibir |
|
247 | 251 | label_change_status: Cambiar el estatuto |
|
248 | 252 | label_history: Histórico |
|
249 | 253 | label_attachment: Fichero |
|
250 | 254 | label_attachment_new: Nuevo fichero |
|
251 | 255 | label_attachment_delete: Suprimir el fichero |
|
252 | 256 | label_attachment_plural: Ficheros |
|
253 | 257 | label_report: Informe |
|
254 | 258 | label_report_plural: Informes |
|
255 | 259 | label_news: Noticia |
|
256 | 260 | label_news_new: Nueva noticia |
|
257 | 261 | label_news_plural: Noticias |
|
258 | 262 | label_news_latest: Últimas noticias |
|
259 | 263 | label_news_view_all: Ver todas las noticias |
|
260 | 264 | label_change_log: Cambios |
|
261 | 265 | label_settings: Configuración |
|
262 | 266 | label_overview: Vistazo |
|
263 | 267 | label_version: Versión |
|
264 | 268 | label_version_new: Nueva versión |
|
265 | 269 | label_version_plural: Versiónes |
|
266 | 270 | label_confirmation: Confirmación |
|
267 | 271 | label_export_to: Exportar a |
|
268 | 272 | label_read: Leer... |
|
269 | 273 | label_public_projects: Proyectos publicos |
|
270 | 274 | label_open_issues: abierta |
|
271 | 275 | label_open_issues_plural: abiertas |
|
272 | 276 | label_closed_issues: cerrada |
|
273 | 277 | label_closed_issues_plural: cerradas |
|
274 | 278 | label_total: Total |
|
275 | 279 | label_permissions: Permisos |
|
276 | 280 | label_current_status: Estado actual |
|
277 | 281 | label_new_statuses_allowed: Nuevos estatutos autorizados |
|
278 | 282 | label_all: todos |
|
279 | 283 | label_none: ninguno |
|
280 | 284 | label_next: Próximo |
|
281 | 285 | label_previous: Precedente |
|
282 | 286 | label_used_by: Utilizado por |
|
283 | 287 | label_details: Detalles... |
|
284 | 288 | label_add_note: Agregar una nota |
|
285 | 289 | label_per_page: Por la página |
|
286 | 290 | label_calendar: Calendario |
|
287 | 291 | label_months_from: meses de |
|
288 | 292 | label_gantt: Gantt |
|
289 | 293 | label_internal: Interno |
|
290 | 294 | label_last_changes: %d cambios del último |
|
291 | 295 | label_change_view_all: Ver todos los cambios |
|
292 | 296 | label_personalize_page: Personalizar esta página |
|
293 | 297 | label_comment: Comentario |
|
294 | 298 | label_comment_plural: Comentarios |
|
295 | 299 | label_comment_add: Agregar un comentario |
|
296 | 300 | label_comment_added: Comentario agregó |
|
297 | 301 | label_comment_delete: Suprimir comentarios |
|
298 | 302 | label_query: Pregunta personalizada |
|
299 | 303 | label_query_plural: Preguntas personalizadas |
|
300 | 304 | label_query_new: Nueva preguntas |
|
301 | 305 | label_filter_add: Agregar el filtro |
|
302 | 306 | label_filter_plural: Filtros |
|
303 | 307 | label_equals: igual |
|
304 | 308 | label_not_equals: no igual |
|
305 | 309 | label_in_less_than: en menos que |
|
306 | 310 | label_in_more_than: en más que |
|
307 | 311 | label_in: en |
|
308 | 312 | label_today: hoy |
|
309 | 313 | label_less_than_ago: hace menos de |
|
310 | 314 | label_more_than_ago: hace más de |
|
311 | 315 | label_ago: hace |
|
312 | 316 | label_contains: contiene |
|
313 | 317 | label_not_contains: no contiene |
|
314 | 318 | label_day_plural: días |
|
315 | 319 | label_repository: Depósito SVN |
|
316 | 320 | label_browse: Hojear |
|
317 | 321 | label_modification: %d modificación |
|
318 | 322 | label_modification_plural: %d modificaciones |
|
319 | 323 | label_revision: Revisión |
|
320 | 324 | label_revision_plural: Revisiones |
|
321 | 325 | label_added: agregado |
|
322 | 326 | label_modified: modificado |
|
323 | 327 | label_deleted: suprimido |
|
324 | 328 | label_latest_revision: La revisión más última |
|
325 | 329 | label_latest_revision_plural: Latest revisions |
|
326 | 330 | label_view_revisions: Ver las revisiones |
|
327 | 331 | label_max_size: Tamaño máximo |
|
328 | 332 | label_on: en |
|
329 | 333 | label_sort_highest: Primero |
|
330 | 334 | label_sort_higher: Subir |
|
331 | 335 | label_sort_lower: Bajar |
|
332 | 336 | label_sort_lowest: Último |
|
333 | 337 | label_roadmap: Roadmap |
|
334 | 338 | label_roadmap_due_in: Due in |
|
335 | 339 | label_roadmap_no_issues: No issues for this version |
|
336 | 340 | label_search: Búsqueda |
|
337 | 341 | label_result: %d resultado |
|
338 | 342 | label_result_plural: %d resultados |
|
339 | 343 | label_all_words: Todas las palabras |
|
340 | 344 | label_wiki: Wiki |
|
341 | 345 | label_wiki_edit: Wiki edit |
|
342 | 346 | label_wiki_edit_plural: Wiki edits |
|
343 | 347 | label_page_index: Índice |
|
344 | 348 | label_current_version: Versión actual |
|
345 | 349 | label_preview: Previo |
|
346 | 350 | label_feed_plural: Feeds |
|
347 | 351 | label_changes_details: Detalles de todos los cambios |
|
348 | 352 | label_issue_tracking: Issue tracking |
|
349 | 353 | label_spent_time: Spent time |
|
350 | 354 | label_f_hour: %.2f hour |
|
351 | 355 | label_f_hour_plural: %.2f hours |
|
352 | 356 | label_time_tracking: Time tracking |
|
353 | 357 | label_change_plural: Changes |
|
354 | 358 | label_statistics: Statistics |
|
355 | 359 | label_commits_per_month: Commits per month |
|
356 | 360 | label_commits_per_author: Commits per author |
|
357 | 361 | label_view_diff: View differences |
|
358 | 362 | label_diff_inline: inline |
|
359 | 363 | label_diff_side_by_side: side by side |
|
360 | 364 | label_options: Options |
|
361 | 365 | label_copy_workflow_from: Copy workflow from |
|
362 | 366 | label_permissions_report: Permissions report |
|
363 | 367 | label_watched_issues: Watched issues |
|
364 | 368 | label_related_issues: Related issues |
|
365 | 369 | label_applied_status: Applied status |
|
366 | 370 | label_loading: Loading... |
|
371 | label_relation_new: New relation | |
|
372 | label_relation_delete: Delete relation | |
|
373 | label_relates_to: related tp | |
|
374 | label_duplicates: duplicates | |
|
375 | label_blocks: blocks | |
|
376 | label_blocked_by: blocked by | |
|
377 | label_precedes: precedes | |
|
378 | label_follows: follows | |
|
379 | label_end_to_start: start to end | |
|
380 | label_end_to_end: end to end | |
|
381 | label_start_to_start: start to start | |
|
382 | label_start_to_end: start to end | |
|
367 | 383 | |
|
368 | 384 | button_login: Conexión |
|
369 | 385 | button_submit: Someter |
|
370 | 386 | button_save: Validar |
|
371 | 387 | button_check_all: Seleccionar todo |
|
372 | 388 | button_uncheck_all: No seleccionar nada |
|
373 | 389 | button_delete: Suprimir |
|
374 | 390 | button_create: Crear |
|
375 | 391 | button_test: Testar |
|
376 | 392 | button_edit: Modificar |
|
377 | 393 | button_add: Añadir |
|
378 | 394 | button_change: Cambiar |
|
379 | 395 | button_apply: Aplicar |
|
380 | 396 | button_clear: Anular |
|
381 | 397 | button_lock: Bloquear |
|
382 | 398 | button_unlock: Desbloquear |
|
383 | 399 | button_download: Telecargar |
|
384 | 400 | button_list: Listar |
|
385 | 401 | button_view: Ver |
|
386 | 402 | button_move: Mover |
|
387 | 403 | button_back: Atrás |
|
388 | 404 | button_cancel: Cancelar |
|
389 | 405 | button_activate: Activar |
|
390 | 406 | button_sort: Clasificar |
|
391 | 407 | button_log_time: Log time |
|
392 | 408 | button_rollback: Rollback to this version |
|
393 | 409 | button_watch: Watch |
|
394 | 410 | button_unwatch: Unwatch |
|
395 | 411 | |
|
396 | 412 | status_active: active |
|
397 | 413 | status_registered: registered |
|
398 | 414 | status_locked: locked |
|
399 | 415 | |
|
400 | 416 | text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail. |
|
401 | 417 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
402 | 418 | text_min_max_length_info: 0 para ninguna restricción |
|
403 | 419 | text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ? |
|
404 | 420 | text_workflow_edit: Seleccionar un workflow para actualizar |
|
405 | 421 | text_are_you_sure: ¿ Estás seguro ? |
|
406 | 422 | text_journal_changed: cambiado de %s a %s |
|
407 | 423 | text_journal_set_to: fijado a %s |
|
408 | 424 | text_journal_deleted: suprimido |
|
409 | 425 | text_tip_task_begin_day: tarea que comienza este día |
|
410 | 426 | text_tip_task_end_day: tarea que termina este día |
|
411 | 427 | text_tip_task_begin_end_day: tarea que comienza y termina este día |
|
412 | 428 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
413 | 429 | text_caracters_maximum: %d characters maximum. |
|
414 | 430 | text_length_between: Length between %d and %d characters. |
|
415 | 431 | text_tracker_no_workflow: No workflow defined for this tracker |
|
416 | 432 | text_unallowed_characters: Unallowed characters |
|
417 | 433 | text_coma_separated: Multiple values allowed (coma separated). |
|
418 | 434 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
419 | 435 | |
|
420 | 436 | default_role_manager: Manager |
|
421 | 437 | default_role_developper: Desarrollador |
|
422 | 438 | default_role_reporter: Informador |
|
423 | 439 | default_tracker_bug: Anomalía |
|
424 | 440 | default_tracker_feature: Evolución |
|
425 | 441 | default_tracker_support: Asistencia |
|
426 | 442 | default_issue_status_new: Nuevo |
|
427 | 443 | default_issue_status_assigned: Asignada |
|
428 | 444 | default_issue_status_resolved: Resuelta |
|
429 | 445 | default_issue_status_feedback: Comentario |
|
430 | 446 | default_issue_status_closed: Cerrada |
|
431 | 447 | default_issue_status_rejected: Rechazada |
|
432 | 448 | default_doc_category_user: Documentación del usuario |
|
433 | 449 | default_doc_category_tech: Documentación tecnica |
|
434 | 450 | default_priority_low: Bajo |
|
435 | 451 | default_priority_normal: Normal |
|
436 | 452 | default_priority_high: Alto |
|
437 | 453 | default_priority_urgent: Urgente |
|
438 | 454 | default_priority_immediate: Ahora |
|
439 | 455 | default_activity_design: Design |
|
440 | 456 | default_activity_development: Development |
|
441 | 457 | |
|
442 | 458 | enumeration_issue_priorities: Prioridad de las peticiones |
|
443 | 459 | enumeration_doc_categories: Categorías del documento |
|
444 | 460 | enumeration_activities: Activities (time tracking) |
@@ -1,444 +1,460 | |||
|
1 |
_gloc_rule_default: '|n| n |
|
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
|
2 | 2 | |
|
3 | 3 | actionview_datehelper_select_day_prefix: |
|
4 | 4 | actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre |
|
5 | 5 | actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc |
|
6 | 6 | actionview_datehelper_select_month_prefix: |
|
7 | 7 | actionview_datehelper_select_year_prefix: |
|
8 | 8 | actionview_datehelper_time_in_words_day: 1 jour |
|
9 | 9 | actionview_datehelper_time_in_words_day_plural: %d jours |
|
10 | 10 | actionview_datehelper_time_in_words_hour_about: about an hour |
|
11 | 11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours |
|
12 | 12 | actionview_datehelper_time_in_words_hour_about_single: about an hour |
|
13 | 13 | actionview_datehelper_time_in_words_minute: 1 minute |
|
14 | 14 | actionview_datehelper_time_in_words_minute_half: 30 secondes |
|
15 | 15 | actionview_datehelper_time_in_words_minute_less_than: moins d'une minute |
|
16 | 16 | actionview_datehelper_time_in_words_minute_plural: %d minutes |
|
17 | 17 | actionview_datehelper_time_in_words_minute_single: 1 minute |
|
18 | 18 | actionview_datehelper_time_in_words_second_less_than: moins d'une seconde |
|
19 | 19 | actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes |
|
20 | 20 | actionview_instancetag_blank_option: Choisir |
|
21 | 21 | |
|
22 | 22 | activerecord_error_inclusion: n'est pas inclus dans la liste |
|
23 | 23 | activerecord_error_exclusion: est reservé |
|
24 | 24 | activerecord_error_invalid: est invalide |
|
25 | 25 | activerecord_error_confirmation: ne correspond pas à la confirmation |
|
26 | 26 | activerecord_error_accepted: doit être accepté |
|
27 | 27 | activerecord_error_empty: doit être renseigné |
|
28 | 28 | activerecord_error_blank: doit être renseigné |
|
29 | 29 | activerecord_error_too_long: est trop long |
|
30 | 30 | activerecord_error_too_short: est trop court |
|
31 | 31 | activerecord_error_wrong_length: n'est pas de la bonne longueur |
|
32 | 32 | activerecord_error_taken: est déjà utilisé |
|
33 | 33 | activerecord_error_not_a_number: n'est pas un nombre |
|
34 | 34 | activerecord_error_not_a_date: n'est pas une date valide |
|
35 | 35 | activerecord_error_greater_than_start_date: doit être postérieur à la date de début |
|
36 | activerecord_error_not_same_project: n'appartient pas au même projet | |
|
37 | activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire | |
|
36 | 38 | |
|
37 | 39 | general_fmt_age: %d an |
|
38 | 40 | general_fmt_age_plural: %d ans |
|
39 | 41 | general_fmt_date: %%d/%%m/%%Y |
|
40 | 42 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M |
|
41 | 43 | general_fmt_datetime_short: %%d/%%m %%H:%%M |
|
42 | 44 | general_fmt_time: %%H:%%M |
|
43 | 45 | general_text_No: 'Non' |
|
44 | 46 | general_text_Yes: 'Oui' |
|
45 | 47 | general_text_no: 'non' |
|
46 | 48 | general_text_yes: 'oui' |
|
47 | 49 | general_lang_fr: 'Français' |
|
48 | 50 | general_csv_separator: ';' |
|
49 | 51 | general_csv_encoding: ISO-8859-1 |
|
50 | 52 | general_pdf_encoding: ISO-8859-1 |
|
51 | 53 | general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche |
|
52 | 54 | |
|
53 | 55 | notice_account_updated: Le compte a été mis à jour avec succès. |
|
54 | 56 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. |
|
55 | 57 | notice_account_password_updated: Mot de passe mis à jour avec succès. |
|
56 | 58 | notice_account_wrong_password: Mot de passe incorrect |
|
57 | 59 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé. |
|
58 | 60 | notice_account_unknown_email: Aucun compte ne correspond à cette adresse. |
|
59 | 61 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. |
|
60 | 62 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé. |
|
61 | 63 | notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter. |
|
62 | 64 | notice_successful_create: Création effectuée avec succès. |
|
63 | 65 | notice_successful_update: Mise à jour effectuée avec succès. |
|
64 | 66 | notice_successful_delete: Suppression effectuée avec succès. |
|
65 | 67 | notice_successful_connection: Connection réussie. |
|
66 | 68 | notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée. |
|
67 | 69 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. |
|
68 | 70 | notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt. |
|
69 | 71 | notice_not_authorized: Vous n'êtes pas autorisés à accéder à cette page. |
|
70 | 72 | |
|
71 | 73 | mail_subject_lost_password: Votre mot de passe redMine |
|
72 | 74 | mail_subject_register: Activation de votre compte redMine |
|
73 | 75 | |
|
74 | 76 | gui_validation_error: 1 erreur |
|
75 | 77 | gui_validation_error_plural: %d erreurs |
|
76 | 78 | |
|
77 | 79 | field_name: Nom |
|
78 | 80 | field_description: Description |
|
79 | 81 | field_summary: Résumé |
|
80 | 82 | field_is_required: Obligatoire |
|
81 | 83 | field_firstname: Prénom |
|
82 | 84 | field_lastname: Nom |
|
83 | 85 | field_mail: Email |
|
84 | 86 | field_filename: Fichier |
|
85 | 87 | field_filesize: Taille |
|
86 | 88 | field_downloads: Téléchargements |
|
87 | 89 | field_author: Auteur |
|
88 | 90 | field_created_on: Créé |
|
89 | 91 | field_updated_on: Mis à jour |
|
90 | 92 | field_field_format: Format |
|
91 | 93 | field_is_for_all: Pour tous les projets |
|
92 | 94 | field_possible_values: Valeurs possibles |
|
93 | 95 | field_regexp: Expression régulière |
|
94 | 96 | field_min_length: Longueur minimum |
|
95 | 97 | field_max_length: Longueur maximum |
|
96 | 98 | field_value: Valeur |
|
97 | 99 | field_category: Catégorie |
|
98 | 100 | field_title: Titre |
|
99 | 101 | field_project: Projet |
|
100 | 102 | field_issue: Demande |
|
101 | 103 | field_status: Statut |
|
102 | 104 | field_notes: Notes |
|
103 | 105 | field_is_closed: Demande fermée |
|
104 | 106 | field_is_default: Statut par défaut |
|
105 | 107 | field_html_color: Couleur |
|
106 | 108 | field_tracker: Tracker |
|
107 | 109 | field_subject: Sujet |
|
108 | 110 | field_due_date: Date d'échéance |
|
109 | 111 | field_assigned_to: Assigné à |
|
110 | 112 | field_priority: Priorité |
|
111 | 113 | field_fixed_version: Version corrigée |
|
112 | 114 | field_user: Utilisateur |
|
113 | 115 | field_role: Rôle |
|
114 | 116 | field_homepage: Site web |
|
115 | 117 | field_is_public: Public |
|
116 | 118 | field_parent: Sous-projet de |
|
117 | 119 | field_is_in_chlog: Demandes affichées dans l'historique |
|
118 | 120 | field_is_in_roadmap: Demandes affichées dans la roadmap |
|
119 | 121 | field_login: Identifiant |
|
120 | 122 | field_mail_notification: Notifications par mail |
|
121 | 123 | field_admin: Administrateur |
|
122 | 124 | field_last_login_on: Dernière connexion |
|
123 | 125 | field_language: Langue |
|
124 | 126 | field_effective_date: Date |
|
125 | 127 | field_password: Mot de passe |
|
126 | 128 | field_new_password: Nouveau mot de passe |
|
127 | 129 | field_password_confirmation: Confirmation |
|
128 | 130 | field_version: Version |
|
129 | 131 | field_type: Type |
|
130 | 132 | field_host: Hôte |
|
131 | 133 | field_port: Port |
|
132 | 134 | field_account: Compte |
|
133 | 135 | field_base_dn: Base DN |
|
134 | 136 | field_attr_login: Attribut Identifiant |
|
135 | 137 | field_attr_firstname: Attribut Prénom |
|
136 | 138 | field_attr_lastname: Attribut Nom |
|
137 | 139 | field_attr_mail: Attribut Email |
|
138 | 140 | field_onthefly: Création des utilisateurs à la volée |
|
139 | 141 | field_start_date: Début |
|
140 | 142 | field_done_ratio: %% Réalisé |
|
141 | 143 | field_auth_source: Mode d'authentification |
|
142 | 144 | field_hide_mail: Cacher mon adresse mail |
|
143 | 145 | field_comments: Commentaire |
|
144 | 146 | field_url: URL |
|
145 | 147 | field_start_page: Page de démarrage |
|
146 | 148 | field_subproject: Sous-projet |
|
147 | 149 | field_hours: Heures |
|
148 | 150 | field_activity: Activité |
|
149 | 151 | field_spent_on: Date |
|
150 | 152 | field_identifier: Identifiant |
|
151 | 153 | field_is_filter: Utilisé comme filtre |
|
154 | field_issue_to_id: Demande liée | |
|
155 | field_delay: Retard | |
|
152 | 156 | |
|
153 | 157 | setting_app_title: Titre de l'application |
|
154 | 158 | setting_app_subtitle: Sous-titre de l'application |
|
155 | 159 | setting_welcome_text: Texte d'accueil |
|
156 | 160 | setting_default_language: Langue par défaut |
|
157 | 161 | setting_login_required: Authentif. obligatoire |
|
158 | 162 | setting_self_registration: Enregistrement autorisé |
|
159 | 163 | setting_attachment_max_size: Taille max des fichiers |
|
160 | 164 | setting_issues_export_limit: Limite export demandes |
|
161 | 165 | setting_mail_from: Adresse d'émission |
|
162 | 166 | setting_host_name: Nom d'hôte |
|
163 | 167 | setting_text_formatting: Formatage du texte |
|
164 | 168 | setting_wiki_compression: Compression historique wiki |
|
165 | 169 | setting_feeds_limit: Limite du contenu des flux RSS |
|
166 | 170 | setting_autofetch_changesets: Récupération auto. des commits SVN |
|
167 | 171 | setting_sys_api_enabled: Activer les WS pour la gestion des dépôts |
|
168 | 172 | setting_commit_ref_keywords: Mot-clés de référencement |
|
169 | 173 | setting_commit_fix_keywords: Mot-clés de résolution |
|
170 | 174 | |
|
171 | 175 | label_user: Utilisateur |
|
172 | 176 | label_user_plural: Utilisateurs |
|
173 | 177 | label_user_new: Nouvel utilisateur |
|
174 | 178 | label_project: Projet |
|
175 | 179 | label_project_new: Nouveau projet |
|
176 | 180 | label_project_plural: Projets |
|
177 | 181 | label_project_latest: Derniers projets |
|
178 | 182 | label_issue: Demande |
|
179 | 183 | label_issue_new: Nouvelle demande |
|
180 | 184 | label_issue_plural: Demandes |
|
181 | 185 | label_issue_view_all: Voir toutes les demandes |
|
182 | 186 | label_document: Document |
|
183 | 187 | label_document_new: Nouveau document |
|
184 | 188 | label_document_plural: Documents |
|
185 | 189 | label_role: Rôle |
|
186 | 190 | label_role_plural: Rôles |
|
187 | 191 | label_role_new: Nouveau rôle |
|
188 | 192 | label_role_and_permissions: Rôles et permissions |
|
189 | 193 | label_member: Membre |
|
190 | 194 | label_member_new: Nouveau membre |
|
191 | 195 | label_member_plural: Membres |
|
192 | 196 | label_tracker: Tracker |
|
193 | 197 | label_tracker_plural: Trackers |
|
194 | 198 | label_tracker_new: Nouveau tracker |
|
195 | 199 | label_workflow: Workflow |
|
196 | 200 | label_issue_status: Statut de demandes |
|
197 | 201 | label_issue_status_plural: Statuts de demandes |
|
198 | 202 | label_issue_status_new: Nouveau statut |
|
199 | 203 | label_issue_category: Catégorie de demandes |
|
200 | 204 | label_issue_category_plural: Catégories de demandes |
|
201 | 205 | label_issue_category_new: Nouvelle catégorie |
|
202 | 206 | label_custom_field: Champ personnalisé |
|
203 | 207 | label_custom_field_plural: Champs personnalisés |
|
204 | 208 | label_custom_field_new: Nouveau champ personnalisé |
|
205 | 209 | label_enumerations: Listes de valeurs |
|
206 | 210 | label_enumeration_new: Nouvelle valeur |
|
207 | 211 | label_information: Information |
|
208 | 212 | label_information_plural: Informations |
|
209 | 213 | label_please_login: Identification |
|
210 | 214 | label_register: S'enregistrer |
|
211 | 215 | label_password_lost: Mot de passe perdu |
|
212 | 216 | label_home: Accueil |
|
213 | 217 | label_my_page: Ma page |
|
214 | 218 | label_my_account: Mon compte |
|
215 | 219 | label_my_projects: Mes projets |
|
216 | 220 | label_administration: Administration |
|
217 | 221 | label_login: Connexion |
|
218 | 222 | label_logout: Déconnexion |
|
219 | 223 | label_help: Aide |
|
220 | 224 | label_reported_issues: Demandes soumises |
|
221 | 225 | label_assigned_to_me_issues: Demandes qui me sont assignées |
|
222 | 226 | label_last_login: Dernière connexion |
|
223 | 227 | label_last_updates: Dernière mise à jour |
|
224 | 228 | label_last_updates_plural: %d dernières mises à jour |
|
225 | 229 | label_registered_on: Inscrit le |
|
226 | 230 | label_activity: Activité |
|
227 | 231 | label_new: Nouveau |
|
228 | 232 | label_logged_as: Connecté en tant que |
|
229 | 233 | label_environment: Environnement |
|
230 | 234 | label_authentication: Authentification |
|
231 | 235 | label_auth_source: Mode d'authentification |
|
232 | 236 | label_auth_source_new: Nouveau mode d'authentification |
|
233 | 237 | label_auth_source_plural: Modes d'authentification |
|
234 | 238 | label_subproject_plural: Sous-projets |
|
235 | 239 | label_min_max_length: Longueurs mini - maxi |
|
236 | 240 | label_list: Liste |
|
237 | 241 | label_date: Date |
|
238 | 242 | label_integer: Entier |
|
239 | 243 | label_boolean: Booléen |
|
240 | 244 | label_string: Texte |
|
241 | 245 | label_text: Texte long |
|
242 | 246 | label_attribute: Attribut |
|
243 | 247 | label_attribute_plural: Attributs |
|
244 | 248 | label_download: %d Téléchargement |
|
245 | 249 | label_download_plural: %d Téléchargements |
|
246 | 250 | label_no_data: Aucune donnée à afficher |
|
247 | 251 | label_change_status: Changer le statut |
|
248 | 252 | label_history: Historique |
|
249 | 253 | label_attachment: Fichier |
|
250 | 254 | label_attachment_new: Nouveau fichier |
|
251 | 255 | label_attachment_delete: Supprimer le fichier |
|
252 | 256 | label_attachment_plural: Fichiers |
|
253 | 257 | label_report: Rapport |
|
254 | 258 | label_report_plural: Rapports |
|
255 | 259 | label_news: Annonce |
|
256 | 260 | label_news_new: Nouvelle annonce |
|
257 | 261 | label_news_plural: Annonces |
|
258 | 262 | label_news_latest: Dernières annonces |
|
259 | 263 | label_news_view_all: Voir toutes les annonces |
|
260 | 264 | label_change_log: Historique |
|
261 | 265 | label_settings: Configuration |
|
262 | 266 | label_overview: Aperçu |
|
263 | 267 | label_version: Version |
|
264 | 268 | label_version_new: Nouvelle version |
|
265 | 269 | label_version_plural: Versions |
|
266 | 270 | label_confirmation: Confirmation |
|
267 | 271 | label_export_to: Exporter en |
|
268 | 272 | label_read: Lire... |
|
269 | 273 | label_public_projects: Projets publics |
|
270 | 274 | label_open_issues: ouvert |
|
271 | 275 | label_open_issues_plural: ouverts |
|
272 | 276 | label_closed_issues: fermé |
|
273 | 277 | label_closed_issues_plural: fermés |
|
274 | 278 | label_total: Total |
|
275 | 279 | label_permissions: Permissions |
|
276 | 280 | label_current_status: Statut actuel |
|
277 | 281 | label_new_statuses_allowed: Nouveaux statuts autorisés |
|
278 | 282 | label_all: tous |
|
279 | 283 | label_none: aucun |
|
280 | 284 | label_next: Suivant |
|
281 | 285 | label_previous: Précédent |
|
282 | 286 | label_used_by: Utilisé par |
|
283 | 287 | label_details: Détails... |
|
284 | 288 | label_add_note: Ajouter une note |
|
285 | 289 | label_per_page: Par page |
|
286 | 290 | label_calendar: Calendrier |
|
287 | 291 | label_months_from: mois depuis |
|
288 | 292 | label_gantt: Gantt |
|
289 | 293 | label_internal: Interne |
|
290 | 294 | label_last_changes: %d derniers changements |
|
291 | 295 | label_change_view_all: Voir tous les changements |
|
292 | 296 | label_personalize_page: Personnaliser cette page |
|
293 | 297 | label_comment: Commentaire |
|
294 | 298 | label_comment_plural: Commentaires |
|
295 | 299 | label_comment_add: Ajouter un commentaire |
|
296 | 300 | label_comment_added: Commentaire ajouté |
|
297 | 301 | label_comment_delete: Supprimer les commentaires |
|
298 | 302 | label_query: Rapport personnalisé |
|
299 | 303 | label_query_plural: Rapports personnalisés |
|
300 | 304 | label_query_new: Nouveau rapport |
|
301 | 305 | label_filter_add: Ajouter le filtre |
|
302 | 306 | label_filter_plural: Filtres |
|
303 | 307 | label_equals: égal |
|
304 | 308 | label_not_equals: différent |
|
305 | 309 | label_in_less_than: dans moins de |
|
306 | 310 | label_in_more_than: dans plus de |
|
307 | 311 | label_in: dans |
|
308 | 312 | label_today: aujourd'hui |
|
309 | 313 | label_less_than_ago: il y a moins de |
|
310 | 314 | label_more_than_ago: il y a plus de |
|
311 | 315 | label_ago: il y a |
|
312 | 316 | label_contains: contient |
|
313 | 317 | label_not_contains: ne contient pas |
|
314 | 318 | label_day_plural: jours |
|
315 | 319 | label_repository: Dépôt SVN |
|
316 | 320 | label_browse: Parcourir |
|
317 | 321 | label_modification: %d modification |
|
318 | 322 | label_modification_plural: %d modifications |
|
319 | 323 | label_revision: Révision |
|
320 | 324 | label_revision_plural: Révisions |
|
321 | 325 | label_added: ajouté |
|
322 | 326 | label_modified: modifié |
|
323 | 327 | label_deleted: supprimé |
|
324 | 328 | label_latest_revision: Dernière révision |
|
325 | 329 | label_latest_revision_plural: Dernières révisions |
|
326 | 330 | label_view_revisions: Voir les révisions |
|
327 | 331 | label_max_size: Taille maximale |
|
328 | 332 | label_on: sur |
|
329 | 333 | label_sort_highest: Remonter en premier |
|
330 | 334 | label_sort_higher: Remonter |
|
331 | 335 | label_sort_lower: Descendre |
|
332 | 336 | label_sort_lowest: Descendre en dernier |
|
333 | 337 | label_roadmap: Roadmap |
|
334 | 338 | label_roadmap_due_in: Echéance dans |
|
335 | 339 | label_roadmap_no_issues: Aucune demande pour cette version |
|
336 | 340 | label_search: Recherche |
|
337 | 341 | label_result: %d résultat |
|
338 | 342 | label_result_plural: %d résultats |
|
339 | 343 | label_all_words: Tous les mots |
|
340 | 344 | label_wiki: Wiki |
|
341 | 345 | label_wiki_edit: Révision wiki |
|
342 | 346 | label_wiki_edit_plural: Révisions wiki |
|
343 | 347 | label_page_index: Index |
|
344 | 348 | label_current_version: Version actuelle |
|
345 | 349 | label_preview: Prévisualisation |
|
346 | 350 | label_feed_plural: Flux RSS |
|
347 | 351 | label_changes_details: Détails de tous les changements |
|
348 | 352 | label_issue_tracking: Suivi des demandes |
|
349 | 353 | label_spent_time: Temps passé |
|
350 | 354 | label_f_hour: %.2f heure |
|
351 | 355 | label_f_hour_plural: %.2f heures |
|
352 | 356 | label_time_tracking: Suivi du temps |
|
353 | 357 | label_change_plural: Changements |
|
354 | 358 | label_statistics: Statistiques |
|
355 | 359 | label_commits_per_month: Commits par mois |
|
356 | 360 | label_commits_per_author: Commits par auteur |
|
357 | 361 | label_view_diff: Voir les différences |
|
358 | 362 | label_diff_inline: en ligne |
|
359 | 363 | label_diff_side_by_side: côte à côte |
|
360 | 364 | label_options: Options |
|
361 | 365 | label_copy_workflow_from: Copier le workflow de |
|
362 | 366 | label_permissions_report: Synthèse des permissions |
|
363 | 367 | label_watched_issues: Demandes surveillées |
|
364 | 368 | label_related_issues: Demandes liées |
|
365 | 369 | label_applied_status: Statut appliqué |
|
366 | 370 | label_loading: Chargement... |
|
371 | label_relation_new: Nouvelle relation | |
|
372 | label_relation_delete: Supprimer la relation | |
|
373 | label_relates_to: lié à | |
|
374 | label_duplicates: doublon de | |
|
375 | label_blocks: bloque | |
|
376 | label_blocked_by: bloqué par | |
|
377 | label_precedes: précède | |
|
378 | label_follows: suit | |
|
379 | label_end_to_start: début à fin | |
|
380 | label_end_to_end: fin à fin | |
|
381 | label_start_to_start: début à début | |
|
382 | label_start_to_end: début à fin | |
|
367 | 383 | |
|
368 | 384 | button_login: Connexion |
|
369 | 385 | button_submit: Soumettre |
|
370 | 386 | button_save: Sauvegarder |
|
371 | 387 | button_check_all: Tout cocher |
|
372 | 388 | button_uncheck_all: Tout décocher |
|
373 | 389 | button_delete: Supprimer |
|
374 | 390 | button_create: Créer |
|
375 | 391 | button_test: Tester |
|
376 | 392 | button_edit: Modifier |
|
377 | 393 | button_add: Ajouter |
|
378 | 394 | button_change: Changer |
|
379 | 395 | button_apply: Appliquer |
|
380 | 396 | button_clear: Effacer |
|
381 | 397 | button_lock: Verrouiller |
|
382 | 398 | button_unlock: Déverrouiller |
|
383 | 399 | button_download: Télécharger |
|
384 | 400 | button_list: Lister |
|
385 | 401 | button_view: Voir |
|
386 | 402 | button_move: Déplacer |
|
387 | 403 | button_back: Retour |
|
388 | 404 | button_cancel: Annuler |
|
389 | 405 | button_activate: Activer |
|
390 | 406 | button_sort: Trier |
|
391 | 407 | button_log_time: Saisir temps |
|
392 | 408 | button_rollback: Revenir à cette version |
|
393 | 409 | button_watch: Surveiller |
|
394 | 410 | button_unwatch: Ne plus surveiller |
|
395 | 411 | |
|
396 | 412 | status_active: actif |
|
397 | 413 | status_registered: enregistré |
|
398 | 414 | status_locked: vérouillé |
|
399 | 415 | |
|
400 | 416 | text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée. |
|
401 | 417 | text_regexp_info: ex. ^[A-Z0-9]+$ |
|
402 | 418 | text_min_max_length_info: 0 pour aucune restriction |
|
403 | 419 | text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ? |
|
404 | 420 | text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow |
|
405 | 421 | text_are_you_sure: Etes-vous sûr ? |
|
406 | 422 | text_journal_changed: changé de %s à %s |
|
407 | 423 | text_journal_set_to: mis à %s |
|
408 | 424 | text_journal_deleted: supprimé |
|
409 | 425 | text_tip_task_begin_day: tâche commençant ce jour |
|
410 | 426 | text_tip_task_end_day: tâche finissant ce jour |
|
411 | 427 | text_tip_task_begin_end_day: tâche commençant et finissant ce jour |
|
412 | 428 | text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' |
|
413 | 429 | text_caracters_maximum: %d caractères maximum. |
|
414 | 430 | text_length_between: Longueur comprise entre %d et %d caractères. |
|
415 | 431 | text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker |
|
416 | 432 | text_unallowed_characters: Caractères non autorisés |
|
417 | 433 | text_coma_separated: Plusieurs valeurs possibles (séparées par des virgules). |
|
418 | 434 | text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires SVN |
|
419 | 435 | |
|
420 | 436 | default_role_manager: Manager |
|
421 | 437 | default_role_developper: Développeur |
|
422 | 438 | default_role_reporter: Rapporteur |
|
423 | 439 | default_tracker_bug: Anomalie |
|
424 | 440 | default_tracker_feature: Evolution |
|
425 | 441 | default_tracker_support: Assistance |
|
426 | 442 | default_issue_status_new: Nouveau |
|
427 | 443 | default_issue_status_assigned: Assigné |
|
428 | 444 | default_issue_status_resolved: Résolu |
|
429 | 445 | default_issue_status_feedback: Commentaire |
|
430 | 446 | default_issue_status_closed: Fermé |
|
431 | 447 | default_issue_status_rejected: Rejeté |
|
432 | 448 | default_doc_category_user: Documentation utilisateur |
|
433 | 449 | default_doc_category_tech: Documentation technique |
|
434 | 450 | default_priority_low: Bas |
|
435 | 451 | default_priority_normal: Normal |
|
436 | 452 | default_priority_high: Haut |
|
437 | 453 | default_priority_urgent: Urgent |
|
438 | 454 | default_priority_immediate: Immédiat |
|
439 | 455 | default_activity_design: Conception |
|
440 | 456 | default_activity_development: Développement |
|
441 | 457 | |
|
442 | 458 | enumeration_issue_priorities: Priorités des demandes |
|
443 | 459 | enumeration_doc_categories: Catégories des documents |
|
444 | 460 | enumeration_activities: Activités (suivi du temps) |
@@ -1,444 +1,460 | |||
|
1 | 1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
2 | 2 | |
|
3 | 3 | actionview_datehelper_select_day_prefix: |
|
4 | 4 | actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre |
|
5 | 5 | actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic |
|
6 | 6 | actionview_datehelper_select_month_prefix: |
|
7 | 7 | actionview_datehelper_select_year_prefix: |
|
8 | 8 | actionview_datehelper_time_in_words_day: 1 giorno |
|
9 | 9 | actionview_datehelper_time_in_words_day_plural: %d giorni |
|
10 | 10 | actionview_datehelper_time_in_words_hour_about: circa un'ora |
|
11 | 11 | actionview_datehelper_time_in_words_hour_about_plural: circa %d ore |
|
12 | 12 | actionview_datehelper_time_in_words_hour_about_single: circa un'ora |
|
13 | 13 | actionview_datehelper_time_in_words_minute: 1 minuto |
|
14 | 14 | actionview_datehelper_time_in_words_minute_half: mezzo minuto |
|
15 | 15 | actionview_datehelper_time_in_words_minute_less_than: meno di un minuto |
|
16 | 16 | actionview_datehelper_time_in_words_minute_plural: %d minuti |
|
17 | 17 | actionview_datehelper_time_in_words_minute_single: 1 minuto |
|
18 | 18 | actionview_datehelper_time_in_words_second_less_than: meno di un secondo |
|
19 | 19 | actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi |
|
20 | 20 | actionview_instancetag_blank_option: Scegli |
|
21 | 21 | |
|
22 | 22 | activerecord_error_inclusion: non è incluso nella lista |
|
23 | 23 | activerecord_error_exclusion: e' riservato |
|
24 | 24 | activerecord_error_invalid: non e' valido |
|
25 | 25 | activerecord_error_confirmation: non coincide con la conferma |
|
26 | 26 | activerecord_error_accepted: deve essere accettato |
|
27 | 27 | activerecord_error_empty: non puo' essere vuoto |
|
28 | 28 | activerecord_error_blank: non puo' essere blank |
|
29 | 29 | activerecord_error_too_long: e' troppo lungo/a |
|
30 | 30 | activerecord_error_too_short: e' troppo corto/a |
|
31 | 31 | activerecord_error_wrong_length: e' della lunghezza sbagliata |
|
32 | 32 | activerecord_error_taken: e' gia' stato/a preso/a |
|
33 | 33 | activerecord_error_not_a_number: non e' un numero |
|
34 | 34 | activerecord_error_not_a_date: non e' una data valida |
|
35 | 35 | activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
|
36 | 38 | |
|
37 | 39 | general_fmt_age: %d yr |
|
38 | 40 | general_fmt_age_plural: %d yrs |
|
39 | 41 | general_fmt_date: %%d/%%m/%%Y |
|
40 | 42 | general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p |
|
41 | 43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
42 | 44 | general_fmt_time: %%I:%%M %%p |
|
43 | 45 | general_text_No: 'No' |
|
44 | 46 | general_text_Yes: 'Si' |
|
45 | 47 | general_text_no: 'no' |
|
46 | 48 | general_text_yes: 'si' |
|
47 | 49 | general_lang_it: 'Italiano' |
|
48 | 50 | general_csv_separator: ',' |
|
49 | 51 | general_csv_encoding: ISO-8859-1 |
|
50 | 52 | general_pdf_encoding: ISO-8859-1 |
|
51 | 53 | general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica |
|
52 | 54 | |
|
53 | 55 | notice_account_updated: L'utenza è stata aggiornata. |
|
54 | 56 | notice_account_invalid_creditentials: Nome utente o password non validi. |
|
55 | 57 | notice_account_password_updated: La password è stata aggiornata. |
|
56 | 58 | notice_account_wrong_password: Password errata |
|
57 | 59 | notice_account_register_done: L'utenza è stata creata. |
|
58 | 60 | notice_account_unknown_email: Utente sconosciuto. |
|
59 | 61 | notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password. |
|
60 | 62 | notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password. |
|
61 | 63 | notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso. |
|
62 | 64 | notice_successful_create: Creazione effettuata. |
|
63 | 65 | notice_successful_update: Modifica effettuata. |
|
64 | 66 | notice_successful_delete: Eliminazione effettuata. |
|
65 | 67 | notice_successful_connection: Connessione effettuata. |
|
66 | 68 | notice_file_not_found: La pagina desiderata non esiste o è stata rimossa. |
|
67 | 69 | notice_locking_conflict: Le informazioni sono state modificate da un altro utente. |
|
68 | 70 | notice_scm_error: La risorsa e/o la versione non esistono nel repository. |
|
69 | 71 | notice_not_authorized: You are not authorized to access this page. |
|
70 | 72 | |
|
71 | 73 | mail_subject_lost_password: Password redMine |
|
72 | 74 | mail_subject_register: Attivazione utenza redMine |
|
73 | 75 | |
|
74 | 76 | gui_validation_error: 1 errore |
|
75 | 77 | gui_validation_error_plural: %d errori |
|
76 | 78 | |
|
77 | 79 | field_name: Nome |
|
78 | 80 | field_description: Descrizione |
|
79 | 81 | field_summary: Sommario |
|
80 | 82 | field_is_required: Richiesto |
|
81 | 83 | field_firstname: Nome |
|
82 | 84 | field_lastname: Cognome |
|
83 | 85 | field_mail: Email |
|
84 | 86 | field_filename: File |
|
85 | 87 | field_filesize: Dimensione |
|
86 | 88 | field_downloads: Download |
|
87 | 89 | field_author: Autore |
|
88 | 90 | field_created_on: Creato |
|
89 | 91 | field_updated_on: Aggiornato |
|
90 | 92 | field_field_format: Formato |
|
91 | 93 | field_is_for_all: Per tutti i progetti |
|
92 | 94 | field_possible_values: Valori possibili |
|
93 | 95 | field_regexp: Espressione regolare |
|
94 | 96 | field_min_length: Lunghezza minima |
|
95 | 97 | field_max_length: Lunghezza massima |
|
96 | 98 | field_value: Valore |
|
97 | 99 | field_category: Categoria |
|
98 | 100 | field_title: Titolo |
|
99 | 101 | field_project: Progetto |
|
100 | 102 | field_issue: Issue |
|
101 | 103 | field_status: Stato |
|
102 | 104 | field_notes: Note |
|
103 | 105 | field_is_closed: Chiude il contesto |
|
104 | 106 | field_is_default: Stato predefinito |
|
105 | 107 | field_html_color: Colore |
|
106 | 108 | field_tracker: Tracker |
|
107 | 109 | field_subject: Oggetto |
|
108 | 110 | field_due_date: Data ultima |
|
109 | 111 | field_assigned_to: Assegnato a |
|
110 | 112 | field_priority: Priorita' |
|
111 | 113 | field_fixed_version: Versione di fix |
|
112 | 114 | field_user: Utente |
|
113 | 115 | field_role: Ruolo |
|
114 | 116 | field_homepage: Homepage |
|
115 | 117 | field_is_public: Pubblico |
|
116 | 118 | field_parent: Sottoprogetto di |
|
117 | 119 | field_is_in_chlog: Contesti mostrati nel changelog |
|
118 | 120 | field_is_in_roadmap: Contesti mostrati nel roadmap |
|
119 | 121 | field_login: Login |
|
120 | 122 | field_mail_notification: Notifiche via e-mail |
|
121 | 123 | field_admin: Amministratore |
|
122 | 124 | field_last_login_on: Ultima connessione |
|
123 | 125 | field_language: Lingua |
|
124 | 126 | field_effective_date: Data |
|
125 | 127 | field_password: Password |
|
126 | 128 | field_new_password: Nuova password |
|
127 | 129 | field_password_confirmation: Conferma |
|
128 | 130 | field_version: Versione |
|
129 | 131 | field_type: Tipo |
|
130 | 132 | field_host: Host |
|
131 | 133 | field_port: Porta |
|
132 | 134 | field_account: Utenza |
|
133 | 135 | field_base_dn: DN base |
|
134 | 136 | field_attr_login: Attributo login |
|
135 | 137 | field_attr_firstname: Attributo nome |
|
136 | 138 | field_attr_lastname: Attributo cognome |
|
137 | 139 | field_attr_mail: Attributo e-mail |
|
138 | 140 | field_onthefly: Creazione utenza "al volo" |
|
139 | 141 | field_start_date: Inizio |
|
140 | 142 | field_done_ratio: %% completo |
|
141 | 143 | field_auth_source: Modalità di autenticazione |
|
142 | 144 | field_hide_mail: Nascondi il mio indirizzo di e-mail |
|
143 | 145 | field_comments: Commento |
|
144 | 146 | field_url: URL |
|
145 | 147 | field_start_page: Pagina principale |
|
146 | 148 | field_subproject: Sottoprogetto |
|
147 | 149 | field_hours: Hours |
|
148 | 150 | field_activity: Activity |
|
149 | 151 | field_spent_on: Data |
|
150 | 152 | field_identifier: Identifier |
|
151 | 153 | field_is_filter: Used as a filter |
|
154 | field_issue_to_id: Related issue | |
|
155 | field_delay: Delay | |
|
152 | 156 | |
|
153 | 157 | setting_app_title: Titolo applicazione |
|
154 | 158 | setting_app_subtitle: Sottotitolo applicazione |
|
155 | 159 | setting_welcome_text: Testo di benvenuto |
|
156 | 160 | setting_default_language: Lingua di default |
|
157 | 161 | setting_login_required: Autenticazione richiesta |
|
158 | 162 | setting_self_registration: Auto-registrazione abilitata |
|
159 | 163 | setting_attachment_max_size: Massima dimensione allegati |
|
160 | 164 | setting_issues_export_limit: Limite esportazione contesti |
|
161 | 165 | setting_mail_from: Indirizzo sorgente e-mail |
|
162 | 166 | setting_host_name: Nome host |
|
163 | 167 | setting_text_formatting: Formattazione testo |
|
164 | 168 | setting_wiki_compression: Compressione di storia di Wiki |
|
165 | 169 | setting_feeds_limit: Limite contenuti del feed |
|
166 | 170 | setting_autofetch_changesets: Acquisisci automaticamente le commit SVN |
|
167 | 171 | setting_sys_api_enabled: Abilita WS per la gestione del repository |
|
168 | 172 | setting_commit_ref_keywords: Referencing keywords |
|
169 | 173 | setting_commit_fix_keywords: Fixing keywords |
|
170 | 174 | |
|
171 | 175 | label_user: Utente |
|
172 | 176 | label_user_plural: Utenti |
|
173 | 177 | label_user_new: Nuovo utente |
|
174 | 178 | label_project: Progetto |
|
175 | 179 | label_project_new: Nuovo progetto |
|
176 | 180 | label_project_plural: Progetti |
|
177 | 181 | label_project_latest: Ultimi progetti registrati |
|
178 | 182 | label_issue: Contesto |
|
179 | 183 | label_issue_new: Nuovo contesto |
|
180 | 184 | label_issue_plural: Contesti |
|
181 | 185 | label_issue_view_all: Mostra tutti i contesti |
|
182 | 186 | label_document: Documento |
|
183 | 187 | label_document_new: Nuovo documento |
|
184 | 188 | label_document_plural: Documenti |
|
185 | 189 | label_role: Ruolo |
|
186 | 190 | label_role_plural: Ruoli |
|
187 | 191 | label_role_new: Nuovo ruolo |
|
188 | 192 | label_role_and_permissions: Ruoli e permessi |
|
189 | 193 | label_member: Membro |
|
190 | 194 | label_member_new: Nuovo membro |
|
191 | 195 | label_member_plural: Membri |
|
192 | 196 | label_tracker: Tracker |
|
193 | 197 | label_tracker_plural: Tracker |
|
194 | 198 | label_tracker_new: Nuovo tracker |
|
195 | 199 | label_workflow: Workflow |
|
196 | 200 | label_issue_status: Stato contesti |
|
197 | 201 | label_issue_status_plural: Stati contesto |
|
198 | 202 | label_issue_status_new: Nuovo stato |
|
199 | 203 | label_issue_category: Categorie contesti |
|
200 | 204 | label_issue_category_plural: Categorie contesto |
|
201 | 205 | label_issue_category_new: Nuova categoria |
|
202 | 206 | label_custom_field: Campo personalizzato |
|
203 | 207 | label_custom_field_plural: Campi personalizzati |
|
204 | 208 | label_custom_field_new: Nuovo campo personalizzato |
|
205 | 209 | label_enumerations: Enumerazioni |
|
206 | 210 | label_enumeration_new: Nuovo valore |
|
207 | 211 | label_information: Informazione |
|
208 | 212 | label_information_plural: Informazioni |
|
209 | 213 | label_please_login: Autenticarsi |
|
210 | 214 | label_register: Registrati |
|
211 | 215 | label_password_lost: Password dimenticata |
|
212 | 216 | label_home: Home |
|
213 | 217 | label_my_page: Pagina personale |
|
214 | 218 | label_my_account: La mia utenza |
|
215 | 219 | label_my_projects: I miei progetti |
|
216 | 220 | label_administration: Amministrazione |
|
217 | 221 | label_login: Login |
|
218 | 222 | label_logout: Logout |
|
219 | 223 | label_help: Aiuto |
|
220 | 224 | label_reported_issues: Contesti segnalati |
|
221 | 225 | label_assigned_to_me_issues: I miei contesti |
|
222 | 226 | label_last_login: Ultimo collegamento |
|
223 | 227 | label_last_updates: Ultimo aggiornamento |
|
224 | 228 | label_last_updates_plural: %d ultimo aggiornamento |
|
225 | 229 | label_registered_on: Registrato il |
|
226 | 230 | label_activity: Attività |
|
227 | 231 | label_new: Nuovo |
|
228 | 232 | label_logged_as: Autenticato come |
|
229 | 233 | label_environment: Ambiente |
|
230 | 234 | label_authentication: Autenticazione |
|
231 | 235 | label_auth_source: Modalità di autenticazione |
|
232 | 236 | label_auth_source_new: Nuova modalità di autenticazione |
|
233 | 237 | label_auth_source_plural: Modalità di autenticazione |
|
234 | 238 | label_subproject_plural: Sottoprogetti |
|
235 | 239 | label_min_max_length: Lunghezza minima - massima |
|
236 | 240 | label_list: Elenco |
|
237 | 241 | label_date: Data |
|
238 | 242 | label_integer: Intero |
|
239 | 243 | label_boolean: Booleano |
|
240 | 244 | label_string: Testo |
|
241 | 245 | label_text: Testo esteso |
|
242 | 246 | label_attribute: Attributo |
|
243 | 247 | label_attribute_plural: Attributi |
|
244 | 248 | label_download: %d Download |
|
245 | 249 | label_download_plural: %d Download |
|
246 | 250 | label_no_data: Nessun dato disponibile |
|
247 | 251 | label_change_status: Cambia stato |
|
248 | 252 | label_history: Cronologia |
|
249 | 253 | label_attachment: File |
|
250 | 254 | label_attachment_new: Nuovo file |
|
251 | 255 | label_attachment_delete: Elimina file |
|
252 | 256 | label_attachment_plural: File |
|
253 | 257 | label_report: Report |
|
254 | 258 | label_report_plural: Report |
|
255 | 259 | label_news: Notizia |
|
256 | 260 | label_news_new: Aggiungi notizia |
|
257 | 261 | label_news_plural: Notizie |
|
258 | 262 | label_news_latest: Utime notizie |
|
259 | 263 | label_news_view_all: Tutte le notizie |
|
260 | 264 | label_change_log: Change log |
|
261 | 265 | label_settings: Impostazioni |
|
262 | 266 | label_overview: Panoramica |
|
263 | 267 | label_version: Versione |
|
264 | 268 | label_version_new: Nuova versione |
|
265 | 269 | label_version_plural: Versioni |
|
266 | 270 | label_confirmation: Conferma |
|
267 | 271 | label_export_to: Esporta su |
|
268 | 272 | label_read: Leggi... |
|
269 | 273 | label_public_projects: Progetti pubblici |
|
270 | 274 | label_open_issues: aperta |
|
271 | 275 | label_open_issues_plural: aperte |
|
272 | 276 | label_closed_issues: chiusa |
|
273 | 277 | label_closed_issues_plural: chiuse |
|
274 | 278 | label_total: Totale |
|
275 | 279 | label_permissions: Permessi |
|
276 | 280 | label_current_status: Stato attuale |
|
277 | 281 | label_new_statuses_allowed: Nuovi stati possibili |
|
278 | 282 | label_all: tutti |
|
279 | 283 | label_none: nessuno |
|
280 | 284 | label_next: Successivo |
|
281 | 285 | label_previous: Precedente |
|
282 | 286 | label_used_by: Usato da |
|
283 | 287 | label_details: Dettagli... |
|
284 | 288 | label_add_note: Aggiungi una nota |
|
285 | 289 | label_per_page: Per pagina |
|
286 | 290 | label_calendar: Calendario |
|
287 | 291 | label_months_from: mesi da |
|
288 | 292 | label_gantt: Gantt |
|
289 | 293 | label_internal: Interno |
|
290 | 294 | label_last_changes: ultime %d modifiche |
|
291 | 295 | label_change_view_all: Tutte le modifiche |
|
292 | 296 | label_personalize_page: Personalizza la pagina |
|
293 | 297 | label_comment: Commento |
|
294 | 298 | label_comment_plural: Commenti |
|
295 | 299 | label_comment_add: Aggiungi un commento |
|
296 | 300 | label_comment_added: Commento aggiunto |
|
297 | 301 | label_comment_delete: Elimina commenti |
|
298 | 302 | label_query: Custom query |
|
299 | 303 | label_query_plural: Query personalizzate |
|
300 | 304 | label_query_new: Nuova query |
|
301 | 305 | label_filter_add: Aggiungi filtro |
|
302 | 306 | label_filter_plural: Filtri |
|
303 | 307 | label_equals: è |
|
304 | 308 | label_not_equals: non è |
|
305 | 309 | label_in_less_than: è minore di |
|
306 | 310 | label_in_more_than: è maggiore di |
|
307 | 311 | label_in: in |
|
308 | 312 | label_today: oggi |
|
309 | 313 | label_less_than_ago: meno di giorni fa |
|
310 | 314 | label_more_than_ago: più di giorni fa |
|
311 | 315 | label_ago: giorni fa |
|
312 | 316 | label_contains: contiene |
|
313 | 317 | label_not_contains: non contiene |
|
314 | 318 | label_day_plural: giorni |
|
315 | 319 | label_repository: SVN Repository |
|
316 | 320 | label_browse: Browse |
|
317 | 321 | label_modification: %d modifica |
|
318 | 322 | label_modification_plural: %d modifiche |
|
319 | 323 | label_revision: Versione |
|
320 | 324 | label_revision_plural: Versioni |
|
321 | 325 | label_added: aggiunto |
|
322 | 326 | label_modified: modificato |
|
323 | 327 | label_deleted: eliminato |
|
324 | 328 | label_latest_revision: Ultima versione |
|
325 | 329 | label_latest_revision_plural: Ultime versioni |
|
326 | 330 | label_view_revisions: Mostra versioni |
|
327 | 331 | label_max_size: Dimensione massima |
|
328 | 332 | label_on: 'on' |
|
329 | 333 | label_sort_highest: Sposta in cima |
|
330 | 334 | label_sort_higher: Su |
|
331 | 335 | label_sort_lower: Giù |
|
332 | 336 | label_sort_lowest: Sposta in fondo |
|
333 | 337 | label_roadmap: Roadmap |
|
334 | 338 | label_roadmap_due_in: Da ultimare in |
|
335 | 339 | label_roadmap_no_issues: Nessun contesto per questa versione |
|
336 | 340 | label_search: Ricerca |
|
337 | 341 | label_result: %d risultato |
|
338 | 342 | label_result_plural: %d risultati |
|
339 | 343 | label_all_words: Tutte le parole |
|
340 | 344 | label_wiki: Wiki |
|
341 | 345 | label_wiki_edit: Modifica Wiki |
|
342 | 346 | label_wiki_edit_plural: Modfiche wiki |
|
343 | 347 | label_page_index: Indice |
|
344 | 348 | label_current_version: Versione corrente |
|
345 | 349 | label_preview: Anteprima |
|
346 | 350 | label_feed_plural: Feed |
|
347 | 351 | label_changes_details: Particolari di tutti i cambiamenti |
|
348 | 352 | label_issue_tracking: tracking dei contesti |
|
349 | 353 | label_spent_time: Tempo impiegato |
|
350 | 354 | label_f_hour: %.2f ora |
|
351 | 355 | label_f_hour_plural: %.2f ore |
|
352 | 356 | label_time_tracking: Tracking del tempo |
|
353 | 357 | label_change_plural: Modifiche |
|
354 | 358 | label_statistics: Statistiche |
|
355 | 359 | label_commits_per_month: Commit per mese |
|
356 | 360 | label_commits_per_author: Commit per autore |
|
357 | 361 | label_view_diff: mostra differenze |
|
358 | 362 | label_diff_inline: inline |
|
359 | 363 | label_diff_side_by_side: side by side |
|
360 | 364 | label_options: Opzioni |
|
361 | 365 | label_copy_workflow_from: Copia workflow da |
|
362 | 366 | label_permissions_report: Report permessi |
|
363 | 367 | label_watched_issues: Watched issues |
|
364 | 368 | label_related_issues: Related issues |
|
365 | 369 | label_applied_status: Applied status |
|
366 | 370 | label_loading: Loading... |
|
371 | label_relation_new: New relation | |
|
372 | label_relation_delete: Delete relation | |
|
373 | label_relates_to: related tp | |
|
374 | label_duplicates: duplicates | |
|
375 | label_blocks: blocks | |
|
376 | label_blocked_by: blocked by | |
|
377 | label_precedes: precedes | |
|
378 | label_follows: follows | |
|
379 | label_end_to_start: start to end | |
|
380 | label_end_to_end: end to end | |
|
381 | label_start_to_start: start to start | |
|
382 | label_start_to_end: start to end | |
|
367 | 383 | |
|
368 | 384 | button_login: Login |
|
369 | 385 | button_submit: Invia |
|
370 | 386 | button_save: Salva |
|
371 | 387 | button_check_all: Seleziona tutti |
|
372 | 388 | button_uncheck_all: Deseleziona tutti |
|
373 | 389 | button_delete: Elimina |
|
374 | 390 | button_create: Crea |
|
375 | 391 | button_test: Test |
|
376 | 392 | button_edit: Modifica |
|
377 | 393 | button_add: Aggiungi |
|
378 | 394 | button_change: Modifica |
|
379 | 395 | button_apply: Applica |
|
380 | 396 | button_clear: Pulisci |
|
381 | 397 | button_lock: Blocca |
|
382 | 398 | button_unlock: Sblocca |
|
383 | 399 | button_download: Scarica |
|
384 | 400 | button_list: Elenca |
|
385 | 401 | button_view: Mostra |
|
386 | 402 | button_move: Sposta |
|
387 | 403 | button_back: Indietro |
|
388 | 404 | button_cancel: Annulla |
|
389 | 405 | button_activate: Attiva |
|
390 | 406 | button_sort: Ordina |
|
391 | 407 | button_log_time: Registra tempo |
|
392 | 408 | button_rollback: Ripristina questa versione |
|
393 | 409 | button_watch: Watch |
|
394 | 410 | button_unwatch: Unwatch |
|
395 | 411 | |
|
396 | 412 | status_active: attivo |
|
397 | 413 | status_registered: registrato |
|
398 | 414 | status_locked: bloccato |
|
399 | 415 | |
|
400 | 416 | text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica. |
|
401 | 417 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
402 | 418 | text_min_max_length_info: 0 significa nessuna restrizione |
|
403 | 419 | text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati? |
|
404 | 420 | text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow |
|
405 | 421 | text_are_you_sure: Sei sicuro ? |
|
406 | 422 | text_journal_changed: cambiato da %s a %s |
|
407 | 423 | text_journal_set_to: impostato a %s |
|
408 | 424 | text_journal_deleted: cancellato |
|
409 | 425 | text_tip_task_begin_day: attività che iniziano in questa giornata |
|
410 | 426 | text_tip_task_end_day: attività che terminano in questa giornata |
|
411 | 427 | text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata |
|
412 | 428 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
413 | 429 | text_caracters_maximum: massimo %d caratteri. |
|
414 | 430 | text_length_between: Lunghezza compresa tra %d e %d caratteri. |
|
415 | 431 | text_tracker_no_workflow: Nessun workflow definito per questo tracker |
|
416 | 432 | text_unallowed_characters: Unallowed characters |
|
417 | 433 | text_coma_separated: Multiple values allowed (coma separated). |
|
418 | 434 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
419 | 435 | |
|
420 | 436 | default_role_manager: Manager |
|
421 | 437 | default_role_developper: Sviluppatore |
|
422 | 438 | default_role_reporter: Reporter |
|
423 | 439 | default_tracker_bug: Contesto |
|
424 | 440 | default_tracker_feature: Funzione |
|
425 | 441 | default_tracker_support: Supporto |
|
426 | 442 | default_issue_status_new: Nuovo/a |
|
427 | 443 | default_issue_status_assigned: Assegnato/a |
|
428 | 444 | default_issue_status_resolved: Risolto/a |
|
429 | 445 | default_issue_status_feedback: Feedback |
|
430 | 446 | default_issue_status_closed: Chiuso/a |
|
431 | 447 | default_issue_status_rejected: Rifiutato/a |
|
432 | 448 | default_doc_category_user: Documentazione utente |
|
433 | 449 | default_doc_category_tech: Documentazione tecnica |
|
434 | 450 | default_priority_low: Bassa |
|
435 | 451 | default_priority_normal: Normale |
|
436 | 452 | default_priority_high: Alta |
|
437 | 453 | default_priority_urgent: Urgente |
|
438 | 454 | default_priority_immediate: Immediata |
|
439 | 455 | default_activity_design: Design |
|
440 | 456 | default_activity_development: Development |
|
441 | 457 | |
|
442 | 458 | enumeration_issue_priorities: Priorità contesti |
|
443 | 459 | enumeration_doc_categories: Categorie di documenti |
|
444 | 460 | enumeration_activities: Attività (time tracking) |
@@ -1,445 +1,461 | |||
|
1 | 1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
2 | 2 | |
|
3 | 3 | actionview_datehelper_select_day_prefix: |
|
4 | 4 | actionview_datehelper_select_month_names: 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月 |
|
5 | 5 | actionview_datehelper_select_month_names_abbr: 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月 |
|
6 | 6 | actionview_datehelper_select_month_prefix: |
|
7 | 7 | actionview_datehelper_select_year_prefix: |
|
8 | 8 | actionview_datehelper_select_year_suffix: 月 |
|
9 | 9 | actionview_datehelper_time_in_words_day: 1日 |
|
10 | 10 | actionview_datehelper_time_in_words_day_plural: %d日間 |
|
11 | 11 | actionview_datehelper_time_in_words_hour_about: 約1時間 |
|
12 | 12 | actionview_datehelper_time_in_words_hour_about_plural: 約%d時間 |
|
13 | 13 | actionview_datehelper_time_in_words_hour_about_single: 約1時間 |
|
14 | 14 | actionview_datehelper_time_in_words_minute: 1分 |
|
15 | 15 | actionview_datehelper_time_in_words_minute_half: 約30秒 |
|
16 | 16 | actionview_datehelper_time_in_words_minute_less_than: 1分以内 |
|
17 | 17 | actionview_datehelper_time_in_words_minute_plural: %d分 |
|
18 | 18 | actionview_datehelper_time_in_words_minute_single: 1分 |
|
19 | 19 | actionview_datehelper_time_in_words_second_less_than: 1秒以内 |
|
20 | 20 | actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内 |
|
21 | 21 | actionview_instancetag_blank_option: 選んでください |
|
22 | 22 | |
|
23 | 23 | activerecord_error_inclusion: がリストに含まれていません |
|
24 | 24 | activerecord_error_exclusion: が予約されています |
|
25 | 25 | activerecord_error_invalid: が無効です |
|
26 | 26 | activerecord_error_confirmation: 確認のパスワードと合っていません |
|
27 | 27 | activerecord_error_accepted: を承諾してください |
|
28 | 28 | activerecord_error_empty: が空です |
|
29 | 29 | activerecord_error_blank: が空白です |
|
30 | 30 | activerecord_error_too_long: が長すぎます |
|
31 | 31 | activerecord_error_too_short: が短かすぎます |
|
32 | 32 | activerecord_error_wrong_length: の長さが間違っています |
|
33 | 33 | activerecord_error_taken: はすでに登録されています |
|
34 | 34 | activerecord_error_not_a_number: が数字ではありません |
|
35 | 35 | activerecord_error_not_a_date: の日付が間違っています |
|
36 | 36 | activerecord_error_greater_than_start_date: を開始日より後にしてください |
|
37 | activerecord_error_not_same_project: doesn't belong to the same project | |
|
38 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
|
37 | 39 | |
|
38 | 40 | general_fmt_age: %d歳 |
|
39 | 41 | general_fmt_age_plural: %d歳 |
|
40 | 42 | general_fmt_date: %%Y年%%m月%%d日 |
|
41 | 43 | general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p |
|
42 | 44 | general_fmt_datetime_short: %%b %%d, %%H:%%M %%p |
|
43 | 45 | general_fmt_time: %%H:%%M %%p |
|
44 | 46 | general_text_No: 'いいえ' |
|
45 | 47 | general_text_Yes: 'はい' |
|
46 | 48 | general_text_no: 'いいえ' |
|
47 | 49 | general_text_yes: 'はい' |
|
48 | 50 | general_lang_ja: 'Japanese (日本語)' |
|
49 | 51 | general_csv_separator: ',' |
|
50 | 52 | general_csv_encoding: SJIS |
|
51 | 53 | general_pdf_encoding: SJIS |
|
52 | 54 | general_day_names: 日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日 |
|
53 | 55 | |
|
54 | 56 | notice_account_updated: アカウントが更新されました。 |
|
55 | 57 | notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効 |
|
56 | 58 | notice_account_password_updated: パスワードが更新されました。 |
|
57 | 59 | notice_account_wrong_password: パスワードが違います |
|
58 | 60 | notice_account_register_done: アカウントが作成されました。 |
|
59 | 61 | notice_account_unknown_email: ユーザが存在しません。 |
|
60 | 62 | notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。 |
|
61 | 63 | notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。 |
|
62 | 64 | notice_account_activated: アカウントが有効になりました。ログインできます。 |
|
63 | 65 | notice_successful_create: 作成しました。 |
|
64 | 66 | notice_successful_update: 更新しました。 |
|
65 | 67 | notice_successful_delete: 削除しました。 |
|
66 | 68 | notice_successful_connection: 接続しました。 |
|
67 | 69 | notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。 |
|
68 | 70 | notice_locking_conflict: 別のユーザがデータを更新しています。 |
|
69 | 71 | notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。 |
|
70 | 72 | notice_not_authorized: You are not authorized to access this page. |
|
71 | 73 | |
|
72 | 74 | mail_subject_lost_password: redMine パスワード |
|
73 | 75 | mail_subject_register: redMine アカウントが有効になりました |
|
74 | 76 | |
|
75 | 77 | gui_validation_error: 1 件のエラー |
|
76 | 78 | gui_validation_error_plural: %d 件のエラー |
|
77 | 79 | |
|
78 | 80 | field_name: 名前 |
|
79 | 81 | field_description: 説明 |
|
80 | 82 | field_summary: サマリ |
|
81 | 83 | field_is_required: 必須 |
|
82 | 84 | field_firstname: 名前 |
|
83 | 85 | field_lastname: 苗字 |
|
84 | 86 | field_mail: メールアドレス |
|
85 | 87 | field_filename: ファイル |
|
86 | 88 | field_filesize: サイズ |
|
87 | 89 | field_downloads: ダウンロード |
|
88 | 90 | field_author: 起票者 |
|
89 | 91 | field_created_on: 作成日 |
|
90 | 92 | field_updated_on: 更新日 |
|
91 | 93 | field_field_format: 書式 |
|
92 | 94 | field_is_for_all: 全プロジェクト向け |
|
93 | 95 | field_possible_values: 選択肢 |
|
94 | 96 | field_regexp: 正規表現 |
|
95 | 97 | field_min_length: 最小値 |
|
96 | 98 | field_max_length: 最大値 |
|
97 | 99 | field_value: 値 |
|
98 | 100 | field_category: カテゴリ |
|
99 | 101 | field_title: タイトル |
|
100 | 102 | field_project: プロジェクト |
|
101 | 103 | field_issue: 問題 |
|
102 | 104 | field_status: ステータス |
|
103 | 105 | field_notes: 注記 |
|
104 | 106 | field_is_closed: 終了した問題 |
|
105 | 107 | field_is_default: デフォルトのステータス |
|
106 | 108 | field_html_color: 色 |
|
107 | 109 | field_tracker: トラッカー |
|
108 | 110 | field_subject: 題名 |
|
109 | 111 | field_due_date: 期限日 |
|
110 | 112 | field_assigned_to: 担当者 |
|
111 | 113 | field_priority: 優先度 |
|
112 | 114 | field_fixed_version: 修正されたバージョン |
|
113 | 115 | field_user: ユーザ |
|
114 | 116 | field_role: 役割 |
|
115 | 117 | field_homepage: ホームページ |
|
116 | 118 | field_is_public: 公開 |
|
117 | 119 | field_parent: 親プロジェクト名 |
|
118 | 120 | field_is_in_chlog: 変更記録に表示されている問題 |
|
119 | 121 | field_is_in_roadmap: ロードマップに表示されている問題 |
|
120 | 122 | field_login: ログイン |
|
121 | 123 | field_mail_notification: メール通知 |
|
122 | 124 | field_admin: 管理者 |
|
123 | 125 | field_last_login_on: 最終接続日 |
|
124 | 126 | field_language: 言語 |
|
125 | 127 | field_effective_date: 日付 |
|
126 | 128 | field_password: パスワード |
|
127 | 129 | field_new_password: 新しいパスワード |
|
128 | 130 | field_password_confirmation: パスワードの確認 |
|
129 | 131 | field_version: バージョン |
|
130 | 132 | field_type: タイプ |
|
131 | 133 | field_host: ホスト |
|
132 | 134 | field_port: ポート |
|
133 | 135 | field_account: アカウント |
|
134 | 136 | field_base_dn: Base DN |
|
135 | 137 | field_attr_login: ログイン名属性 |
|
136 | 138 | field_attr_firstname: 名前属性 |
|
137 | 139 | field_attr_lastname: 苗字属性 |
|
138 | 140 | field_attr_mail: メール属性 |
|
139 | 141 | field_onthefly: あわせてユーザを作成 |
|
140 | 142 | field_start_date: 開始日 |
|
141 | 143 | field_done_ratio: 進捗 %% |
|
142 | 144 | field_auth_source: 認証モード |
|
143 | 145 | field_hide_mail: メールアドレスを隠す |
|
144 | 146 | field_comments: コメント |
|
145 | 147 | field_url: URL |
|
146 | 148 | field_start_page: メインページ |
|
147 | 149 | field_subproject: サブプロジェクト |
|
148 | 150 | field_hours: 時間 |
|
149 | 151 | field_activity: 活動 |
|
150 | 152 | field_spent_on: 日付 |
|
151 | 153 | field_identifier: 識別子 |
|
152 | 154 | field_is_filter: Used as a filter |
|
155 | field_issue_to_id: Related issue | |
|
156 | field_delay: Delay | |
|
153 | 157 | |
|
154 | 158 | setting_app_title: アプリケーションのタイトル |
|
155 | 159 | setting_app_subtitle: アプリケーションのサブタイトル |
|
156 | 160 | setting_welcome_text: ウェルカムメッセージ |
|
157 | 161 | setting_default_language: 既定の言語 |
|
158 | 162 | setting_login_required: 認証が必要 |
|
159 | 163 | setting_self_registration: ユーザは自分で登録できる |
|
160 | 164 | setting_attachment_max_size: 添付の最大サイズ |
|
161 | 165 | setting_issues_export_limit: 出力する問題数の上限 |
|
162 | 166 | setting_mail_from: 送信元メールアドレス |
|
163 | 167 | setting_host_name: ホスト名 |
|
164 | 168 | setting_text_formatting: テキストの書式 |
|
165 | 169 | setting_wiki_compression: Wiki履歴を圧縮する |
|
166 | 170 | setting_feeds_limit: フィード内容の上限 |
|
167 | 171 | setting_autofetch_changesets: SVNコミットを自動取得する |
|
168 | 172 | setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する |
|
169 | 173 | setting_commit_ref_keywords: Referencing keywords |
|
170 | 174 | setting_commit_fix_keywords: Fixing keywords |
|
171 | 175 | |
|
172 | 176 | label_user: ユーザ |
|
173 | 177 | label_user_plural: ユーザ |
|
174 | 178 | label_user_new: 新しいユーザ |
|
175 | 179 | label_project: プロジェクト |
|
176 | 180 | label_project_new: 新しいプロジェクト |
|
177 | 181 | label_project_plural: プロジェクト |
|
178 | 182 | label_project_latest: 最近のプロジェクト |
|
179 | 183 | label_issue: 問題 |
|
180 | 184 | label_issue_new: 新しい問題 |
|
181 | 185 | label_issue_plural: 問題 |
|
182 | 186 | label_issue_view_all: 問題を全て見る |
|
183 | 187 | label_document: 文書 |
|
184 | 188 | label_document_new: 新しい文書 |
|
185 | 189 | label_document_plural: 文書 |
|
186 | 190 | label_role: ロール |
|
187 | 191 | label_role_plural: ロール |
|
188 | 192 | label_role_new: 新しいロール |
|
189 | 193 | label_role_and_permissions: ロールと権限 |
|
190 | 194 | label_member: メンバー |
|
191 | 195 | label_member_new: 新しいメンバー |
|
192 | 196 | label_member_plural: メンバー |
|
193 | 197 | label_tracker: トラッカー |
|
194 | 198 | label_tracker_plural: トラッカー |
|
195 | 199 | label_tracker_new: 新しいトラッカーを作成 |
|
196 | 200 | label_workflow: ワークフロー |
|
197 | 201 | label_issue_status: 問題のステータス |
|
198 | 202 | label_issue_status_plural: 問題のステータス |
|
199 | 203 | label_issue_status_new: 新しいステータス |
|
200 | 204 | label_issue_category: 問題のカテゴリ |
|
201 | 205 | label_issue_category_plural: 問題のカテゴリ |
|
202 | 206 | label_issue_category_new: 新しいカテゴリ |
|
203 | 207 | label_custom_field: カスタムフィールド |
|
204 | 208 | label_custom_field_plural: カスタムフィールド |
|
205 | 209 | label_custom_field_new: 新しいカスタムフィールドを作成 |
|
206 | 210 | label_enumerations: 列挙項目 |
|
207 | 211 | label_enumeration_new: 新しい値 |
|
208 | 212 | label_information: 情報 |
|
209 | 213 | label_information_plural: 情報 |
|
210 | 214 | label_please_login: ログインしてください |
|
211 | 215 | label_register: 登録する |
|
212 | 216 | label_password_lost: パスワードの再発行 |
|
213 | 217 | label_home: ホーム |
|
214 | 218 | label_my_page: マイページ |
|
215 | 219 | label_my_account: マイアカウント |
|
216 | 220 | label_my_projects: マイプロジェクト |
|
217 | 221 | label_administration: 管理 |
|
218 | 222 | label_login: ログイン |
|
219 | 223 | label_logout: ログアウト |
|
220 | 224 | label_help: ヘルプ |
|
221 | 225 | label_reported_issues: 報告した問題 |
|
222 | 226 | label_assigned_to_me_issues: 担当している問題 |
|
223 | 227 | label_last_login: 最近の接続 |
|
224 | 228 | label_last_updates: 最近の更新 1 件 |
|
225 | 229 | label_last_updates_plural: 最近の更新 %d 件 |
|
226 | 230 | label_registered_on: 登録日 |
|
227 | 231 | label_activity: 活動 |
|
228 | 232 | label_new: 新しく作成 |
|
229 | 233 | label_logged_as: ログイン中: |
|
230 | 234 | label_environment: 環境 |
|
231 | 235 | label_authentication: 認証 |
|
232 | 236 | label_auth_source: 認証モード |
|
233 | 237 | label_auth_source_new: 新しい認証モード |
|
234 | 238 | label_auth_source_plural: 認証モード |
|
235 | 239 | label_subproject_plural: サブプロジェクト |
|
236 | 240 | label_min_max_length: 最小値 - 最大値の長さ |
|
237 | 241 | label_list: リストから選択 |
|
238 | 242 | label_date: 日付 |
|
239 | 243 | label_integer: 整数 |
|
240 | 244 | label_boolean: 真偽値 |
|
241 | 245 | label_string: テキスト |
|
242 | 246 | label_text: 長いテキスト |
|
243 | 247 | label_attribute: 属性 |
|
244 | 248 | label_attribute_plural: 属性 |
|
245 | 249 | label_download: %d ダウンロード |
|
246 | 250 | label_download_plural: %d ダウンロード |
|
247 | 251 | label_no_data: 表示するデータがありません |
|
248 | 252 | label_change_status: ステータスの変更 |
|
249 | 253 | label_history: 履歴 |
|
250 | 254 | label_attachment: ファイル |
|
251 | 255 | label_attachment_new: 新しいファイル |
|
252 | 256 | label_attachment_delete: ファイルを削除 |
|
253 | 257 | label_attachment_plural: ファイル |
|
254 | 258 | label_report: レポート |
|
255 | 259 | label_report_plural: レポート |
|
256 | 260 | label_news: ニュース |
|
257 | 261 | label_news_new: ニュースを追加 |
|
258 | 262 | label_news_plural: ニュース |
|
259 | 263 | label_news_latest: 最新ニュース |
|
260 | 264 | label_news_view_all: 全てのニュースを見る |
|
261 | 265 | label_change_log: 変更記録 |
|
262 | 266 | label_settings: 設定 |
|
263 | 267 | label_overview: 概要 |
|
264 | 268 | label_version: バージョン |
|
265 | 269 | label_version_new: 新しいバージョン |
|
266 | 270 | label_version_plural: バージョン |
|
267 | 271 | label_confirmation: 確認 |
|
268 | 272 | label_export_to: 他の形式に出力 |
|
269 | 273 | label_read: 読む... |
|
270 | 274 | label_public_projects: 公開プロジェクト |
|
271 | 275 | label_open_issues: 未完了 |
|
272 | 276 | label_open_issues_plural: 未完了 |
|
273 | 277 | label_closed_issues: 終了 |
|
274 | 278 | label_closed_issues_plural: 終了 |
|
275 | 279 | label_total: 合計 |
|
276 | 280 | label_permissions: 権限 |
|
277 | 281 | label_current_status: 現在のステータス |
|
278 | 282 | label_new_statuses_allowed: ステータスの移行先 |
|
279 | 283 | label_all: 全て |
|
280 | 284 | label_none: なし |
|
281 | 285 | label_next: 次 |
|
282 | 286 | label_previous: 前 |
|
283 | 287 | label_used_by: 使用中 |
|
284 | 288 | label_details: 詳細... |
|
285 | 289 | label_add_note: 注記を追加 |
|
286 | 290 | label_per_page: ページ毎 |
|
287 | 291 | label_calendar: カレンダー |
|
288 | 292 | label_months_from: ヶ月 from |
|
289 | 293 | label_gantt: ガントチャート |
|
290 | 294 | label_internal: Internal |
|
291 | 295 | label_last_changes: 最新の変更 %d 件 |
|
292 | 296 | label_change_view_all: 全ての変更を見る |
|
293 | 297 | label_personalize_page: このページをパーソナライズする |
|
294 | 298 | label_comment: コメント |
|
295 | 299 | label_comment_plural: コメント |
|
296 | 300 | label_comment_add: コメント追加 |
|
297 | 301 | label_comment_added: 追加されたコメント |
|
298 | 302 | label_comment_delete: コメント削除 |
|
299 | 303 | label_query: カスタムクエリ |
|
300 | 304 | label_query_plural: カスタムクエリ |
|
301 | 305 | label_query_new: 新しいクエリ |
|
302 | 306 | label_filter_add: フィルタ追加 |
|
303 | 307 | label_filter_plural: フィルタ |
|
304 | 308 | label_equals: 等しい |
|
305 | 309 | label_not_equals: 等しくない |
|
306 | 310 | label_in_less_than: 残日数がこれより多い |
|
307 | 311 | label_in_more_than: 残日数がこれより少ない |
|
308 | 312 | label_in: 残日数 |
|
309 | 313 | label_today: 今日 |
|
310 | 314 | label_less_than_ago: 経過日数がこれより少ない |
|
311 | 315 | label_more_than_ago: 経過日数がこれより多い |
|
312 | 316 | label_ago: 日前 |
|
313 | 317 | label_contains: 含む |
|
314 | 318 | label_not_contains: 含まない |
|
315 | 319 | label_day_plural: 日 |
|
316 | 320 | label_repository: SVNリポジトリ |
|
317 | 321 | label_browse: ブラウズ |
|
318 | 322 | label_modification: %d 点の変更 |
|
319 | 323 | label_modification_plural: %d 点の変更 |
|
320 | 324 | label_revision: リビジョン |
|
321 | 325 | label_revision_plural: リビジョン |
|
322 | 326 | label_added: 追加 |
|
323 | 327 | label_modified: 変更 |
|
324 | 328 | label_deleted: 削除 |
|
325 | 329 | label_latest_revision: 最新リビジョン |
|
326 | 330 | label_latest_revision_plural: 最新リビジョン |
|
327 | 331 | label_view_revisions: リビジョンを見る |
|
328 | 332 | label_max_size: 最大サイズ |
|
329 | 333 | label_on: 他 |
|
330 | 334 | label_sort_highest: 一番上へ |
|
331 | 335 | label_sort_higher: 上へ |
|
332 | 336 | label_sort_lower: 下へ |
|
333 | 337 | label_sort_lowest: 一番下へ |
|
334 | 338 | label_roadmap: ロードマップ |
|
335 | 339 | label_roadmap_due_in: 期日まで |
|
336 | 340 | label_roadmap_no_issues: このバージョンに向けての問題はありません |
|
337 | 341 | label_search: 検索 |
|
338 | 342 | label_result: %d 件の結果 |
|
339 | 343 | label_result_plural: %d 件の結果 |
|
340 | 344 | label_all_words: すべての単語 |
|
341 | 345 | label_wiki: Wiki |
|
342 | 346 | label_wiki_edit: Wiki編集 |
|
343 | 347 | label_wiki_edit_plural: Wiki編集 |
|
344 | 348 | label_page_index: 索引 |
|
345 | 349 | label_current_version: 最新版 |
|
346 | 350 | label_preview: プレビュー |
|
347 | 351 | label_feed_plural: フィード |
|
348 | 352 | label_changes_details: 全変更の詳細 |
|
349 | 353 | label_issue_tracking: 問題トラッキング |
|
350 | 354 | label_spent_time: 経過時間 |
|
351 | 355 | label_f_hour: %.2f 時間 |
|
352 | 356 | label_f_hour_plural: %.2f 時間 |
|
353 | 357 | label_time_tracking: 時間トラッキング |
|
354 | 358 | label_change_plural: 変更 |
|
355 | 359 | label_statistics: 統計 |
|
356 | 360 | label_commits_per_month: 月別のコミット |
|
357 | 361 | label_commits_per_author: 起票者別のコミット |
|
358 | 362 | label_view_diff: 差分を見る |
|
359 | 363 | label_diff_inline: インライン |
|
360 | 364 | label_diff_side_by_side: 横に並べる |
|
361 | 365 | label_options: オプション |
|
362 | 366 | label_copy_workflow_from: ワークフローをここからコピー |
|
363 | 367 | label_permissions_report: 権限レポート |
|
364 | 368 | label_watched_issues: Watched issues |
|
365 | 369 | label_related_issues: Related issues |
|
366 | 370 | label_applied_status: Applied status |
|
367 | 371 | label_loading: Loading... |
|
372 | label_relation_new: New relation | |
|
373 | label_relation_delete: Delete relation | |
|
374 | label_relates_to: related tp | |
|
375 | label_duplicates: duplicates | |
|
376 | label_blocks: blocks | |
|
377 | label_blocked_by: blocked by | |
|
378 | label_precedes: precedes | |
|
379 | label_follows: follows | |
|
380 | label_end_to_start: start to end | |
|
381 | label_end_to_end: end to end | |
|
382 | label_start_to_start: start to start | |
|
383 | label_start_to_end: start to end | |
|
368 | 384 | |
|
369 | 385 | button_login: ログイン |
|
370 | 386 | button_submit: 変更 |
|
371 | 387 | button_save: 保存 |
|
372 | 388 | button_check_all: チェックを全部つける |
|
373 | 389 | button_uncheck_all: チェックを全部外す |
|
374 | 390 | button_delete: 削除 |
|
375 | 391 | button_create: 作成 |
|
376 | 392 | button_test: テスト |
|
377 | 393 | button_edit: 編集 |
|
378 | 394 | button_add: 追加 |
|
379 | 395 | button_change: 変更 |
|
380 | 396 | button_apply: 適用 |
|
381 | 397 | button_clear: クリア |
|
382 | 398 | button_lock: ロック |
|
383 | 399 | button_unlock: アンロック |
|
384 | 400 | button_download: ダウンロード |
|
385 | 401 | button_list: 一覧 |
|
386 | 402 | button_view: 見る |
|
387 | 403 | button_move: 移動 |
|
388 | 404 | button_back: 戻る |
|
389 | 405 | button_cancel: キャンセル |
|
390 | 406 | button_activate: 有効にする |
|
391 | 407 | button_sort: ソート |
|
392 | 408 | button_log_time: 時間を記録 |
|
393 | 409 | button_rollback: このバージョンにロールバック |
|
394 | 410 | button_watch: Watch |
|
395 | 411 | button_unwatch: Unwatch |
|
396 | 412 | |
|
397 | 413 | status_active: 有効 |
|
398 | 414 | status_registered: 登録 |
|
399 | 415 | status_locked: ロック |
|
400 | 416 | |
|
401 | 417 | text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。 |
|
402 | 418 | text_regexp_info: 例) ^[A-Z0-9]+$ |
|
403 | 419 | text_min_max_length_info: 0だと無制限になります |
|
404 | 420 | text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか? |
|
405 | 421 | text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください |
|
406 | 422 | text_are_you_sure: 本当に? |
|
407 | 423 | text_journal_changed: %s から %s への変更 |
|
408 | 424 | text_journal_set_to: %s にセット |
|
409 | 425 | text_journal_deleted: 削除 |
|
410 | 426 | text_tip_task_begin_day: この日に開始するタスク |
|
411 | 427 | text_tip_task_end_day: この日に終了するタスク |
|
412 | 428 | text_tip_task_begin_end_day: この日のうちに開始して終了するタスク |
|
413 | 429 | text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。' |
|
414 | 430 | text_caracters_maximum: 最大 %d 文字です。 |
|
415 | 431 | text_length_between: 長さは %d から %d 文字までです。 |
|
416 | 432 | text_tracker_no_workflow: このトラッカーにワークフローが定義されていません |
|
417 | 433 | text_unallowed_characters: Unallowed characters |
|
418 | 434 | text_coma_separated: Multiple values allowed (coma separated). |
|
419 | 435 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
420 | 436 | |
|
421 | 437 | default_role_manager: 管理者 |
|
422 | 438 | default_role_developper: 開発者 |
|
423 | 439 | default_role_reporter: 報告者 |
|
424 | 440 | default_tracker_bug: バグ |
|
425 | 441 | default_tracker_feature: 機能 |
|
426 | 442 | default_tracker_support: サポート |
|
427 | 443 | default_issue_status_new: 新規 |
|
428 | 444 | default_issue_status_assigned: 担当 |
|
429 | 445 | default_issue_status_resolved: 解決 |
|
430 | 446 | default_issue_status_feedback: フィードバック |
|
431 | 447 | default_issue_status_closed: 終了 |
|
432 | 448 | default_issue_status_rejected: 却下 |
|
433 | 449 | default_doc_category_user: ユーザ文書 |
|
434 | 450 | default_doc_category_tech: 技術文書 |
|
435 | 451 | default_priority_low: 低め |
|
436 | 452 | default_priority_normal: 通常 |
|
437 | 453 | default_priority_high: 高め |
|
438 | 454 | default_priority_urgent: 急いで |
|
439 | 455 | default_priority_immediate: 今すぐ |
|
440 | 456 | default_activity_design: デザイン作業 |
|
441 | 457 | default_activity_development: 開発作業 |
|
442 | 458 | |
|
443 | 459 | enumeration_issue_priorities: 問題の優先度 |
|
444 | 460 | enumeration_doc_categories: 文書カテゴリ |
|
445 | 461 | enumeration_activities: 作業分類 (時間トラッキング) |
@@ -1,444 +1,460 | |||
|
1 | 1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
2 | 2 | |
|
3 | 3 | actionview_datehelper_select_day_prefix: |
|
4 | 4 | actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro |
|
5 | 5 | actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez |
|
6 | 6 | actionview_datehelper_select_month_prefix: |
|
7 | 7 | actionview_datehelper_select_year_prefix: |
|
8 | 8 | actionview_datehelper_time_in_words_day: 1 dia |
|
9 | 9 | actionview_datehelper_time_in_words_day_plural: %d dias |
|
10 | 10 | actionview_datehelper_time_in_words_hour_about: sobre uma hora |
|
11 | 11 | actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas |
|
12 | 12 | actionview_datehelper_time_in_words_hour_about_single: sobre uma hora |
|
13 | 13 | actionview_datehelper_time_in_words_minute: 1 minuto |
|
14 | 14 | actionview_datehelper_time_in_words_minute_half: meio minuto |
|
15 | 15 | actionview_datehelper_time_in_words_minute_less_than: menos que um minuto |
|
16 | 16 | actionview_datehelper_time_in_words_minute_plural: %d minutos |
|
17 | 17 | actionview_datehelper_time_in_words_minute_single: 1 minuto |
|
18 | 18 | actionview_datehelper_time_in_words_second_less_than: menos que um segundo |
|
19 | 19 | actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos |
|
20 | 20 | actionview_instancetag_blank_option: Selecione |
|
21 | 21 | |
|
22 | 22 | activerecord_error_inclusion: nao esta incluido na lista |
|
23 | 23 | activerecord_error_exclusion: esta reservado |
|
24 | 24 | activerecord_error_invalid: e invalido |
|
25 | 25 | activerecord_error_confirmation: confirmacao nao confere |
|
26 | 26 | activerecord_error_accepted: deve ser aceito |
|
27 | 27 | activerecord_error_empty: nao pode ser vazio |
|
28 | 28 | activerecord_error_blank: nao pode estar em branco |
|
29 | 29 | activerecord_error_too_long: e muito longo |
|
30 | 30 | activerecord_error_too_short: e muito comprido |
|
31 | 31 | activerecord_error_wrong_length: esta com o comprimento errado |
|
32 | 32 | activerecord_error_taken: ja esta examinado |
|
33 | 33 | activerecord_error_not_a_number: nao e um numero |
|
34 | 34 | activerecord_error_not_a_date: nao e uma data valida |
|
35 | 35 | activerecord_error_greater_than_start_date: deve ser maior que a data inicial |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
|
36 | 38 | |
|
37 | 39 | general_fmt_age: %d yr |
|
38 | 40 | general_fmt_age_plural: %d yrs |
|
39 | 41 | general_fmt_date: %%m/%%d/%%Y |
|
40 | 42 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p |
|
41 | 43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
42 | 44 | general_fmt_time: %%I:%%M %%p |
|
43 | 45 | general_text_No: 'Nao' |
|
44 | 46 | general_text_Yes: 'Sim' |
|
45 | 47 | general_text_no: 'nao' |
|
46 | 48 | general_text_yes: 'sim' |
|
47 | 49 | general_lang_pt: 'Portugues' |
|
48 | 50 | general_csv_separator: ',' |
|
49 | 51 | general_csv_encoding: ISO-8859-1 |
|
50 | 52 | general_pdf_encoding: ISO-8859-1 |
|
51 | 53 | general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo |
|
52 | 54 | |
|
53 | 55 | notice_account_updated: Conta foi alterada com sucesso. |
|
54 | 56 | notice_account_invalid_creditentials: Usuario ou senha invalido. |
|
55 | 57 | notice_account_password_updated: Senha foi alterada com sucesso. |
|
56 | 58 | notice_account_wrong_password: Senha errada. |
|
57 | 59 | notice_account_register_done: Conta foi criada com sucesso. |
|
58 | 60 | notice_account_unknown_email: Usuario desconhecido. |
|
59 | 61 | notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha. |
|
60 | 62 | notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce. |
|
61 | 63 | notice_account_activated: Sua conta foi ativada. Voce pode logar agora |
|
62 | 64 | notice_successful_create: Criado com sucesso. |
|
63 | 65 | notice_successful_update: Alterado com sucesso. |
|
64 | 66 | notice_successful_delete: Apagado com sucesso. |
|
65 | 67 | notice_successful_connection: Conectado com sucesso. |
|
66 | 68 | notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida. |
|
67 | 69 | notice_locking_conflict: Os dados foram atualizados por um outro usuario. |
|
68 | 70 | notice_scm_error: A entrada e/ou a revisao nao existem no repositorio. |
|
69 | 71 | notice_not_authorized: You are not authorized to access this page. |
|
70 | 72 | |
|
71 | 73 | mail_subject_lost_password: Sua senha do redMine. |
|
72 | 74 | mail_subject_register: Ativacao de conta do redMine. |
|
73 | 75 | |
|
74 | 76 | gui_validation_error: 1 erro |
|
75 | 77 | gui_validation_error_plural: %d erros |
|
76 | 78 | |
|
77 | 79 | field_name: Nome |
|
78 | 80 | field_description: Descricao |
|
79 | 81 | field_summary: Sumario |
|
80 | 82 | field_is_required: Obrigatorio |
|
81 | 83 | field_firstname: Primeiro nome |
|
82 | 84 | field_lastname: Ultimo nome |
|
83 | 85 | field_mail: Email |
|
84 | 86 | field_filename: Arquivo |
|
85 | 87 | field_filesize: Tamanho |
|
86 | 88 | field_downloads: Downloads |
|
87 | 89 | field_author: Autor |
|
88 | 90 | field_created_on: Criado |
|
89 | 91 | field_updated_on: Alterado |
|
90 | 92 | field_field_format: Formato |
|
91 | 93 | field_is_for_all: Para todos os projetos |
|
92 | 94 | field_possible_values: Possiveis valores |
|
93 | 95 | field_regexp: Expressao regular |
|
94 | 96 | field_min_length: Tamanho minimo |
|
95 | 97 | field_max_length: Tamanho maximo |
|
96 | 98 | field_value: Valor |
|
97 | 99 | field_category: Categoria |
|
98 | 100 | field_title: Titulo |
|
99 | 101 | field_project: Projeto |
|
100 | 102 | field_issue: Tarefa |
|
101 | 103 | field_status: Status |
|
102 | 104 | field_notes: Notas |
|
103 | 105 | field_is_closed: Tarefa fechada |
|
104 | 106 | field_is_default: Status padrao |
|
105 | 107 | field_html_color: Cor |
|
106 | 108 | field_tracker: Tipo |
|
107 | 109 | field_subject: Titulo |
|
108 | 110 | field_due_date: Data devida |
|
109 | 111 | field_assigned_to: Atribuido para |
|
110 | 112 | field_priority: Prioridade |
|
111 | 113 | field_fixed_version: Versao corrigida |
|
112 | 114 | field_user: Usuario |
|
113 | 115 | field_role: Regra |
|
114 | 116 | field_homepage: Pagina inicial |
|
115 | 117 | field_is_public: Publico |
|
116 | 118 | field_parent: Sub-projeto de |
|
117 | 119 | field_is_in_chlog: Tarefas mostradas no changelog |
|
118 | 120 | field_is_in_roadmap: Tarefas mostradas no roadmap |
|
119 | 121 | field_login: Login |
|
120 | 122 | field_mail_notification: Notificacoes por email |
|
121 | 123 | field_admin: Administrador |
|
122 | 124 | field_last_login_on: Ultima conexao |
|
123 | 125 | field_language: Lingua |
|
124 | 126 | field_effective_date: Data |
|
125 | 127 | field_password: Senha |
|
126 | 128 | field_new_password: Nova senha |
|
127 | 129 | field_password_confirmation: Confirmacao |
|
128 | 130 | field_version: Versao |
|
129 | 131 | field_type: Tipo |
|
130 | 132 | field_host: Servidor |
|
131 | 133 | field_port: Porta |
|
132 | 134 | field_account: Conta |
|
133 | 135 | field_base_dn: Base DN |
|
134 | 136 | field_attr_login: Atributo login |
|
135 | 137 | field_attr_firstname: Atributo primeiro nome |
|
136 | 138 | field_attr_lastname: Atributo ultimo nome |
|
137 | 139 | field_attr_mail: Atributo email |
|
138 | 140 | field_onthefly: Criacao de usuario on-the-fly |
|
139 | 141 | field_start_date: Inicio |
|
140 | 142 | field_done_ratio: %% Terminado |
|
141 | 143 | field_auth_source: Modo de autenticacao |
|
142 | 144 | field_hide_mail: Esconder meu email |
|
143 | 145 | field_comments: Comentario |
|
144 | 146 | field_url: URL |
|
145 | 147 | field_start_page: Pagina inicial |
|
146 | 148 | field_subproject: Sub-projeto |
|
147 | 149 | field_hours: Horas |
|
148 | 150 | field_activity: Atividade |
|
149 | 151 | field_spent_on: Data |
|
150 | 152 | field_identifier: Identificador |
|
151 | 153 | field_is_filter: Used as a filter |
|
154 | field_issue_to_id: Related issue | |
|
155 | field_delay: Delay | |
|
152 | 156 | |
|
153 | 157 | setting_app_title: Titulo da aplicacao |
|
154 | 158 | setting_app_subtitle: Sub-titulo da aplicacao |
|
155 | 159 | setting_welcome_text: Texto de boa-vinda |
|
156 | 160 | setting_default_language: Lingua padrao |
|
157 | 161 | setting_login_required: Autenticacao obrigatoria |
|
158 | 162 | setting_self_registration: Registro de si mesmo permitido |
|
159 | 163 | setting_attachment_max_size: Tamanho maximo do anexo |
|
160 | 164 | setting_issues_export_limit: Limite de exportacao das tarefas |
|
161 | 165 | setting_mail_from: Email enviado de |
|
162 | 166 | setting_host_name: Servidor |
|
163 | 167 | setting_text_formatting: Formato do texto |
|
164 | 168 | setting_wiki_compression: Compactacao do historio do Wiki |
|
165 | 169 | setting_feeds_limit: Limite do Feed |
|
166 | 170 | setting_autofetch_changesets: Autofetch SVN commits |
|
167 | 171 | setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio |
|
168 | 172 | setting_commit_ref_keywords: Referencing keywords |
|
169 | 173 | setting_commit_fix_keywords: Fixing keywords |
|
170 | 174 | |
|
171 | 175 | label_user: Usuario |
|
172 | 176 | label_user_plural: Usuarios |
|
173 | 177 | label_user_new: Novo usuario |
|
174 | 178 | label_project: Projeto |
|
175 | 179 | label_project_new: Novo projeto |
|
176 | 180 | label_project_plural: Projetos |
|
177 | 181 | label_project_latest: Ultimos projetos |
|
178 | 182 | label_issue: Tarefa |
|
179 | 183 | label_issue_new: Nova tarefa |
|
180 | 184 | label_issue_plural: Tarefas |
|
181 | 185 | label_issue_view_all: Ver todas as tarefas |
|
182 | 186 | label_document: Documento |
|
183 | 187 | label_document_new: Novo documento |
|
184 | 188 | label_document_plural: Documentos |
|
185 | 189 | label_role: Regra |
|
186 | 190 | label_role_plural: Regras |
|
187 | 191 | label_role_new: Nova regra |
|
188 | 192 | label_role_and_permissions: Regras e permissoes |
|
189 | 193 | label_member: Membro |
|
190 | 194 | label_member_new: Novo membro |
|
191 | 195 | label_member_plural: Membros |
|
192 | 196 | label_tracker: Tipo |
|
193 | 197 | label_tracker_plural: Tipos |
|
194 | 198 | label_tracker_new: Novo tipo |
|
195 | 199 | label_workflow: Workflow |
|
196 | 200 | label_issue_status: Status da tarefa |
|
197 | 201 | label_issue_status_plural: Status das tarefas |
|
198 | 202 | label_issue_status_new: Novo status |
|
199 | 203 | label_issue_category: Categoria de tarefa |
|
200 | 204 | label_issue_category_plural: Categorias de tarefa |
|
201 | 205 | label_issue_category_new: Nova categoria |
|
202 | 206 | label_custom_field: Campo personalizado |
|
203 | 207 | label_custom_field_plural: Campos personalizado |
|
204 | 208 | label_custom_field_new: Novo campo personalizado |
|
205 | 209 | label_enumerations: Enumeracao |
|
206 | 210 | label_enumeration_new: Novo valor |
|
207 | 211 | label_information: Informacao |
|
208 | 212 | label_information_plural: Informacoes |
|
209 | 213 | label_please_login: Efetue login |
|
210 | 214 | label_register: Registre-se |
|
211 | 215 | label_password_lost: Perdi a senha |
|
212 | 216 | label_home: Pagina inicial |
|
213 | 217 | label_my_page: Minha pagina |
|
214 | 218 | label_my_account: Minha conta |
|
215 | 219 | label_my_projects: Meus projetos |
|
216 | 220 | label_administration: Administracao |
|
217 | 221 | label_login: Login |
|
218 | 222 | label_logout: Logout |
|
219 | 223 | label_help: Ajuda |
|
220 | 224 | label_reported_issues: Tarefas reportadas |
|
221 | 225 | label_assigned_to_me_issues: Tarefas atribuidas a mim |
|
222 | 226 | label_last_login: Utima conexao |
|
223 | 227 | label_last_updates: Ultima alteracao |
|
224 | 228 | label_last_updates_plural: %d Ultimas alteracoes |
|
225 | 229 | label_registered_on: Registrado em |
|
226 | 230 | label_activity: Atividade |
|
227 | 231 | label_new: Novo |
|
228 | 232 | label_logged_as: Logado como |
|
229 | 233 | label_environment: Ambiente |
|
230 | 234 | label_authentication: Autenticacao |
|
231 | 235 | label_auth_source: Modo de autenticacao |
|
232 | 236 | label_auth_source_new: Novo modo de autenticacao |
|
233 | 237 | label_auth_source_plural: Modos de autenticacao |
|
234 | 238 | label_subproject_plural: Sub-projetos |
|
235 | 239 | label_min_max_length: Tamanho min-max |
|
236 | 240 | label_list: Lista |
|
237 | 241 | label_date: Data |
|
238 | 242 | label_integer: Inteiro |
|
239 | 243 | label_boolean: Boleano |
|
240 | 244 | label_string: Texto |
|
241 | 245 | label_text: Texto longo |
|
242 | 246 | label_attribute: Atributo |
|
243 | 247 | label_attribute_plural: Atributos |
|
244 | 248 | label_download: %d Download |
|
245 | 249 | label_download_plural: %d Downloads |
|
246 | 250 | label_no_data: Sem dados para mostrar |
|
247 | 251 | label_change_status: Mudar status |
|
248 | 252 | label_history: Historico |
|
249 | 253 | label_attachment: Arquivo |
|
250 | 254 | label_attachment_new: Novo arquivo |
|
251 | 255 | label_attachment_delete: Apagar arquivo |
|
252 | 256 | label_attachment_plural: Arquivos |
|
253 | 257 | label_report: Relatorio |
|
254 | 258 | label_report_plural: Relatorio |
|
255 | 259 | label_news: Noticias |
|
256 | 260 | label_news_new: Adicionar noticias |
|
257 | 261 | label_news_plural: Noticias |
|
258 | 262 | label_news_latest: Ultimas noticias |
|
259 | 263 | label_news_view_all: Ver todas as noticias |
|
260 | 264 | label_change_log: Change log |
|
261 | 265 | label_settings: Ajustes |
|
262 | 266 | label_overview: Visao geral |
|
263 | 267 | label_version: Versao |
|
264 | 268 | label_version_new: Nova versao |
|
265 | 269 | label_version_plural: Versoes |
|
266 | 270 | label_confirmation: Confirmacao |
|
267 | 271 | label_export_to: Exportar para |
|
268 | 272 | label_read: Ler... |
|
269 | 273 | label_public_projects: Projetos publicos |
|
270 | 274 | label_open_issues: Aberto |
|
271 | 275 | label_open_issues_plural: Abertos |
|
272 | 276 | label_closed_issues: Fechado |
|
273 | 277 | label_closed_issues_plural: Fechados |
|
274 | 278 | label_total: Total |
|
275 | 279 | label_permissions: Permissoes |
|
276 | 280 | label_current_status: Status atual |
|
277 | 281 | label_new_statuses_allowed: Novo status permitido |
|
278 | 282 | label_all: todos |
|
279 | 283 | label_none: nenhum |
|
280 | 284 | label_next: Proximo |
|
281 | 285 | label_previous: Anterior |
|
282 | 286 | label_used_by: Usado por |
|
283 | 287 | label_details: Detalhes... |
|
284 | 288 | label_add_note: Adicionar nota |
|
285 | 289 | label_per_page: Por pagina |
|
286 | 290 | label_calendar: Calendario |
|
287 | 291 | label_months_from: Meses de |
|
288 | 292 | label_gantt: Gantt |
|
289 | 293 | label_internal: Interno |
|
290 | 294 | label_last_changes: utlimas %d mudancas |
|
291 | 295 | label_change_view_all: Mostrar todas as mudancas |
|
292 | 296 | label_personalize_page: Personalizar esta pagina |
|
293 | 297 | label_comment: Comentario |
|
294 | 298 | label_comment_plural: Comentarios |
|
295 | 299 | label_comment_add: Adicionar comentario |
|
296 | 300 | label_comment_added: Comentario adicionado |
|
297 | 301 | label_comment_delete: Apagar comentario |
|
298 | 302 | label_query: Consulta personalizada |
|
299 | 303 | label_query_plural: Consultas personalizadas |
|
300 | 304 | label_query_new: Nova consulta |
|
301 | 305 | label_filter_add: Adicionar filtro |
|
302 | 306 | label_filter_plural: Filtros |
|
303 | 307 | label_equals: e |
|
304 | 308 | label_not_equals: nao e |
|
305 | 309 | label_in_less_than: e maior que |
|
306 | 310 | label_in_more_than: e menor que |
|
307 | 311 | label_in: em |
|
308 | 312 | label_today: hoje |
|
309 | 313 | label_less_than_ago: faz menos de |
|
310 | 314 | label_more_than_ago: faz mais de |
|
311 | 315 | label_ago: dias atras |
|
312 | 316 | label_contains: contem |
|
313 | 317 | label_not_contains: nao contem |
|
314 | 318 | label_day_plural: dias |
|
315 | 319 | label_repository: SVN Repository |
|
316 | 320 | label_browse: Browse |
|
317 | 321 | label_modification: %d change |
|
318 | 322 | label_modification_plural: %d changes |
|
319 | 323 | label_revision: Revision |
|
320 | 324 | label_revision_plural: Revisions |
|
321 | 325 | label_added: added |
|
322 | 326 | label_modified: modified |
|
323 | 327 | label_deleted: deleted |
|
324 | 328 | label_latest_revision: Latest revision |
|
325 | 329 | label_latest_revision_plural: Latest revisions |
|
326 | 330 | label_view_revisions: View revisions |
|
327 | 331 | label_max_size: Maximum size |
|
328 | 332 | label_on: 'em' |
|
329 | 333 | label_sort_highest: Mover para o inicio |
|
330 | 334 | label_sort_higher: Mover para cima |
|
331 | 335 | label_sort_lower: Mover para baixo |
|
332 | 336 | label_sort_lowest: Mover para o fim |
|
333 | 337 | label_roadmap: Roadmap |
|
334 | 338 | label_roadmap_due_in: Due in |
|
335 | 339 | label_roadmap_no_issues: Sem tarefas para essa versao |
|
336 | 340 | label_search: Busca |
|
337 | 341 | label_result: %d resultado |
|
338 | 342 | label_result_plural: %d resultados |
|
339 | 343 | label_all_words: Todas as palavras |
|
340 | 344 | label_wiki: Wiki |
|
341 | 345 | label_wiki_edit: Wiki edit |
|
342 | 346 | label_wiki_edit_plural: Wiki edits |
|
343 | 347 | label_page_index: Index |
|
344 | 348 | label_current_version: Versao atual |
|
345 | 349 | label_preview: Previa |
|
346 | 350 | label_feed_plural: Feeds |
|
347 | 351 | label_changes_details: Detalhes de todas as mudancas |
|
348 | 352 | label_issue_tracking: Tarefas |
|
349 | 353 | label_spent_time: Tempo gasto |
|
350 | 354 | label_f_hour: %.2f hora |
|
351 | 355 | label_f_hour_plural: %.2f horas |
|
352 | 356 | label_time_tracking: Tempo trabalhado |
|
353 | 357 | label_change_plural: Mudancas |
|
354 | 358 | label_statistics: Estatisticas |
|
355 | 359 | label_commits_per_month: Commits por mes |
|
356 | 360 | label_commits_per_author: Commits por autor |
|
357 | 361 | label_view_diff: Ver diferencas |
|
358 | 362 | label_diff_inline: inline |
|
359 | 363 | label_diff_side_by_side: side by side |
|
360 | 364 | label_options: Opcoes |
|
361 | 365 | label_copy_workflow_from: Copiar workflow de |
|
362 | 366 | label_permissions_report: Relatorio de permissoes |
|
363 | 367 | label_watched_issues: Watched issues |
|
364 | 368 | label_related_issues: Related issues |
|
365 | 369 | label_applied_status: Applied status |
|
366 | 370 | label_loading: Loading... |
|
371 | label_relation_new: New relation | |
|
372 | label_relation_delete: Delete relation | |
|
373 | label_relates_to: related tp | |
|
374 | label_duplicates: duplicates | |
|
375 | label_blocks: blocks | |
|
376 | label_blocked_by: blocked by | |
|
377 | label_precedes: precedes | |
|
378 | label_follows: follows | |
|
379 | label_end_to_start: start to end | |
|
380 | label_end_to_end: end to end | |
|
381 | label_start_to_start: start to start | |
|
382 | label_start_to_end: start to end | |
|
367 | 383 | |
|
368 | 384 | button_login: Login |
|
369 | 385 | button_submit: Enviar |
|
370 | 386 | button_save: Salvar |
|
371 | 387 | button_check_all: Marcar todos |
|
372 | 388 | button_uncheck_all: Desmarcar todos |
|
373 | 389 | button_delete: Apagar |
|
374 | 390 | button_create: Criar |
|
375 | 391 | button_test: Testar |
|
376 | 392 | button_edit: Editar |
|
377 | 393 | button_add: Adicionar |
|
378 | 394 | button_change: Mudar |
|
379 | 395 | button_apply: Aplicar |
|
380 | 396 | button_clear: Limpar |
|
381 | 397 | button_lock: Bloquear |
|
382 | 398 | button_unlock: Desbloquear |
|
383 | 399 | button_download: Download |
|
384 | 400 | button_list: Listar |
|
385 | 401 | button_view: Ver |
|
386 | 402 | button_move: Mover |
|
387 | 403 | button_back: Voltar |
|
388 | 404 | button_cancel: Cancelar |
|
389 | 405 | button_activate: Ativar |
|
390 | 406 | button_sort: Ordenar |
|
391 | 407 | button_log_time: Tempo de trabalho |
|
392 | 408 | button_rollback: Voltar para esta versao |
|
393 | 409 | button_watch: Watch |
|
394 | 410 | button_unwatch: Unwatch |
|
395 | 411 | |
|
396 | 412 | status_active: ativo |
|
397 | 413 | status_registered: registrado |
|
398 | 414 | status_locked: bloqueado |
|
399 | 415 | |
|
400 | 416 | text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email |
|
401 | 417 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
402 | 418 | text_min_max_length_info: 0 siginifica sem restricao |
|
403 | 419 | text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados? |
|
404 | 420 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow |
|
405 | 421 | text_are_you_sure: Voce tem certeza ? |
|
406 | 422 | text_journal_changed: alterado de %s para %s |
|
407 | 423 | text_journal_set_to: setar para %s |
|
408 | 424 | text_journal_deleted: apagado |
|
409 | 425 | text_tip_task_begin_day: tarefa comeca neste dia |
|
410 | 426 | text_tip_task_end_day: tarefa termina neste dia |
|
411 | 427 | text_tip_task_begin_end_day: tarefa comeca e termina neste dia |
|
412 | 428 | text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.' |
|
413 | 429 | text_caracters_maximum: %d maximo de caracteres |
|
414 | 430 | text_length_between: Tamanho entre %d e %d caracteres. |
|
415 | 431 | text_tracker_no_workflow: Sem workflow definido para este tipo. |
|
416 | 432 | text_unallowed_characters: Unallowed characters |
|
417 | 433 | text_coma_separated: Multiple values allowed (coma separated). |
|
418 | 434 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
419 | 435 | |
|
420 | 436 | default_role_manager: Analista de Negocio ou Gerente de Projeto |
|
421 | 437 | default_role_developper: Desenvolvedor |
|
422 | 438 | default_role_reporter: Analista de Suporte |
|
423 | 439 | default_tracker_bug: Bug |
|
424 | 440 | default_tracker_feature: Implementacao |
|
425 | 441 | default_tracker_support: Suporte |
|
426 | 442 | default_issue_status_new: Novo |
|
427 | 443 | default_issue_status_assigned: Atribuido |
|
428 | 444 | default_issue_status_resolved: Resolvido |
|
429 | 445 | default_issue_status_feedback: Feedback |
|
430 | 446 | default_issue_status_closed: Fechado |
|
431 | 447 | default_issue_status_rejected: Rejeitado |
|
432 | 448 | default_doc_category_user: Documentacao do usuario |
|
433 | 449 | default_doc_category_tech: Documentacao do tecnica |
|
434 | 450 | default_priority_low: Baixo |
|
435 | 451 | default_priority_normal: Normal |
|
436 | 452 | default_priority_high: Alto |
|
437 | 453 | default_priority_urgent: Urgente |
|
438 | 454 | default_priority_immediate: Imediato |
|
439 | 455 | default_activity_design: Design |
|
440 | 456 | default_activity_development: Desenvolvimento |
|
441 | 457 | |
|
442 | 458 | enumeration_issue_priorities: Prioridade das tarefas |
|
443 | 459 | enumeration_doc_categories: Categorias de documento |
|
444 | 460 | enumeration_activities: Atividades (time tracking) |
@@ -1,447 +1,463 | |||
|
1 | 1 | # translated by andy wu |
|
2 | 2 | # email:andywu.zh@gmail.com |
|
3 | 3 | |
|
4 | 4 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
5 | 5 | |
|
6 | 6 | actionview_datehelper_select_day_prefix: |
|
7 | 7 | actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月 |
|
8 | 8 | actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二 |
|
9 | 9 | actionview_datehelper_select_month_prefix: |
|
10 | 10 | actionview_datehelper_select_year_prefix: |
|
11 | 11 | actionview_datehelper_time_in_words_day: 1 天 |
|
12 | 12 | actionview_datehelper_time_in_words_day_plural: %d 天 |
|
13 | 13 | actionview_datehelper_time_in_words_hour_about: 约1小时 |
|
14 | 14 | actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时 |
|
15 | 15 | actionview_datehelper_time_in_words_hour_about_single: 约1小时 |
|
16 | 16 | actionview_datehelper_time_in_words_minute: 1分钟 |
|
17 | 17 | actionview_datehelper_time_in_words_minute_half: 半分钟 |
|
18 | 18 | actionview_datehelper_time_in_words_minute_less_than: 1分钟以内 |
|
19 | 19 | actionview_datehelper_time_in_words_minute_plural: %d 分钟 |
|
20 | 20 | actionview_datehelper_time_in_words_minute_single: 1分钟 |
|
21 | 21 | actionview_datehelper_time_in_words_second_less_than: 1秒以内 |
|
22 | 22 | actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内 |
|
23 | 23 | actionview_instancetag_blank_option: 请选择 |
|
24 | 24 | |
|
25 | 25 | activerecord_error_inclusion: 未包含在列表中 |
|
26 | 26 | activerecord_error_exclusion: 保留的 |
|
27 | 27 | activerecord_error_invalid: 无效的 |
|
28 | 28 | activerecord_error_confirmation: 和确认输入不匹配 |
|
29 | 29 | activerecord_error_accepted: 必需被接受 |
|
30 | 30 | activerecord_error_empty: 不能为空 |
|
31 | 31 | activerecord_error_blank: 不能是空格 |
|
32 | 32 | activerecord_error_too_long: 太长 |
|
33 | 33 | activerecord_error_too_short: 太短 |
|
34 | 34 | activerecord_error_wrong_length: 长度有问题 |
|
35 | 35 | activerecord_error_taken: has already been taken |
|
36 | 36 | activerecord_error_not_a_number: 不是数字 |
|
37 | 37 | activerecord_error_not_a_date: 不是有效的日期 |
|
38 | 38 | activerecord_error_greater_than_start_date: 必需大于开始日期 |
|
39 | activerecord_error_not_same_project: doesn't belong to the same project | |
|
40 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
|
39 | 41 | |
|
40 | 42 | general_fmt_age: %d yr |
|
41 | 43 | general_fmt_age_plural: %d yrs |
|
42 | 44 | general_fmt_date: %%m/%%d/%%Y |
|
43 | 45 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p |
|
44 | 46 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
45 | 47 | general_fmt_time: %%I:%%M %%p |
|
46 | 48 | general_text_No: '否' |
|
47 | 49 | general_text_Yes: '是' |
|
48 | 50 | general_text_no: '否' |
|
49 | 51 | general_text_yes: '是' |
|
50 | 52 | general_lang_zh: 'Chinese (简体中文)' |
|
51 | 53 | general_csv_separator: ',' |
|
52 | 54 | general_csv_encoding: gb2312 |
|
53 | 55 | general_pdf_encoding: Big5 |
|
54 | 56 | general_day_names: 一,二,三,四,五,六,日 |
|
55 | 57 | |
|
56 | 58 | notice_account_updated: 帐户更新成功。 |
|
57 | 59 | notice_account_invalid_creditentials: 用户名或密码不正确 |
|
58 | 60 | notice_account_password_updated: 成功更新口令 |
|
59 | 61 | notice_account_wrong_password: 错误的口令 |
|
60 | 62 | notice_account_register_done: 帐户已创建成功 |
|
61 | 63 | notice_account_unknown_email: 未知用户 |
|
62 | 64 | notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。 |
|
63 | 65 | notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导 |
|
64 | 66 | notice_account_activated: 您的帐号已被激活。您现在可以登录了。 |
|
65 | 67 | notice_successful_create: 创建成功 |
|
66 | 68 | notice_successful_update: 更新成功 |
|
67 | 69 | notice_successful_delete: 删除成功 |
|
68 | 70 | notice_successful_connection: 连接成功 |
|
69 | 71 | notice_file_not_found: 您访问的页面不存在或已被删除。 |
|
70 | 72 | notice_locking_conflict: 数据已被另一个用户更新 |
|
71 | 73 | notice_scm_error: 在版本库中不存在该条目或修订 |
|
72 | 74 | notice_not_authorized: You are not authorized to access this page. |
|
73 | 75 | |
|
74 | 76 | mail_subject_lost_password: 您的redMine口令 |
|
75 | 77 | mail_subject_register: redMine帐户激活 |
|
76 | 78 | |
|
77 | 79 | gui_validation_error: 1 个错误 |
|
78 | 80 | gui_validation_error_plural: %d 个错误 |
|
79 | 81 | |
|
80 | 82 | field_name: 名称 |
|
81 | 83 | field_description: 描述 |
|
82 | 84 | field_summary: 摘要 |
|
83 | 85 | field_is_required: 必填 |
|
84 | 86 | field_firstname: 名字 |
|
85 | 87 | field_lastname: 姓 |
|
86 | 88 | field_mail: 邮件地址 |
|
87 | 89 | field_filename: 文件 |
|
88 | 90 | field_filesize: 大小 |
|
89 | 91 | field_downloads: 下载次数 |
|
90 | 92 | field_author: 作者 |
|
91 | 93 | field_created_on: 创建于 |
|
92 | 94 | field_updated_on: 更新于 |
|
93 | 95 | field_field_format: 格式 |
|
94 | 96 | field_is_for_all: 应用于所有项目 |
|
95 | 97 | field_possible_values: 可能的值 |
|
96 | 98 | field_regexp: 正则表达式 |
|
97 | 99 | field_min_length: 最小长度 |
|
98 | 100 | field_max_length: 最大长度 |
|
99 | 101 | field_value: 值 |
|
100 | 102 | field_category: 分类 |
|
101 | 103 | field_title: 标题 |
|
102 | 104 | field_project: 项目 |
|
103 | 105 | field_issue: 任务 |
|
104 | 106 | field_status: 状态 |
|
105 | 107 | field_notes: 说明 |
|
106 | 108 | field_is_closed: 已关闭的任务 |
|
107 | 109 | field_is_default: 默认状态 |
|
108 | 110 | field_html_color: 颜色 |
|
109 | 111 | field_tracker: 跟踪 |
|
110 | 112 | field_subject: 主题 |
|
111 | 113 | field_due_date: 到期日 |
|
112 | 114 | field_assigned_to: 指派 |
|
113 | 115 | field_priority: 优先级 |
|
114 | 116 | field_fixed_version: 修订版本 |
|
115 | 117 | field_user: 用户 |
|
116 | 118 | field_role: 角色 |
|
117 | 119 | field_homepage: 主页 |
|
118 | 120 | field_is_public: 公开 |
|
119 | 121 | field_parent: 上级项目 |
|
120 | 122 | field_is_in_chlog: 在更新日志中显示任务 |
|
121 | 123 | field_is_in_roadmap: 在路线图中显示任务 |
|
122 | 124 | field_login: 登录名 |
|
123 | 125 | field_mail_notification: 邮件通知 |
|
124 | 126 | field_admin: 管理员 |
|
125 | 127 | field_last_login_on: 最后登录 |
|
126 | 128 | field_language: 语言 |
|
127 | 129 | field_effective_date: 日期 |
|
128 | 130 | field_password: 口令 |
|
129 | 131 | field_new_password: 新口令 |
|
130 | 132 | field_password_confirmation: 确认 |
|
131 | 133 | field_version: 版本 |
|
132 | 134 | field_type: 类别 |
|
133 | 135 | field_host: 主机 |
|
134 | 136 | field_port: 端口 |
|
135 | 137 | field_account: 帐号 |
|
136 | 138 | field_base_dn: Base DN |
|
137 | 139 | field_attr_login: 登录名属性 |
|
138 | 140 | field_attr_firstname: 名字属性 |
|
139 | 141 | field_attr_lastname: 姓属性 |
|
140 | 142 | field_attr_mail: 邮件属性 |
|
141 | 143 | field_onthefly: On-the-fly user creation |
|
142 | 144 | field_start_date: 开始 |
|
143 | 145 | field_done_ratio: %% 完成 |
|
144 | 146 | field_auth_source: 认证模式 |
|
145 | 147 | field_hide_mail: 隐藏我的邮件 |
|
146 | 148 | field_comments: 注释 |
|
147 | 149 | field_url: URL |
|
148 | 150 | field_start_page: 起始页 |
|
149 | 151 | field_subproject: 子项目 |
|
150 | 152 | field_hours: Hours |
|
151 | 153 | field_activity: 活动 |
|
152 | 154 | field_spent_on: 日期 |
|
153 | 155 | field_identifier: Identifier |
|
154 | 156 | field_is_filter: Used as a filter |
|
157 | field_issue_to_id: Related issue | |
|
158 | field_delay: Delay | |
|
155 | 159 | |
|
156 | 160 | setting_app_title: 应用程序标题 |
|
157 | 161 | setting_app_subtitle: 应用程序子标题 |
|
158 | 162 | setting_welcome_text: 欢迎文字 |
|
159 | 163 | setting_default_language: 默认语言 |
|
160 | 164 | setting_login_required: 要求认证 |
|
161 | 165 | setting_self_registration: 允许自注册 |
|
162 | 166 | setting_attachment_max_size: 附件最大尺寸 |
|
163 | 167 | setting_issues_export_limit: Issues export limit |
|
164 | 168 | setting_mail_from: Emission mail address |
|
165 | 169 | setting_host_name: 主机名称 |
|
166 | 170 | setting_text_formatting: 文本格式 |
|
167 | 171 | setting_wiki_compression: Wiki history compression |
|
168 | 172 | setting_feeds_limit: Feed content limit |
|
169 | 173 | setting_autofetch_changesets: Autofetch SVN commits |
|
170 | 174 | setting_sys_api_enabled: Enable WS for repository management |
|
171 | 175 | setting_commit_ref_keywords: Referencing keywords |
|
172 | 176 | setting_commit_fix_keywords: Fixing keywords |
|
173 | 177 | |
|
174 | 178 | label_user: 用户 |
|
175 | 179 | label_user_plural: 用户列表 |
|
176 | 180 | label_user_new: 新建用户 |
|
177 | 181 | label_project: 项目 |
|
178 | 182 | label_project_new: 新建项目 |
|
179 | 183 | label_project_plural: 项目列表 |
|
180 | 184 | label_project_latest: 最近的项目列表 |
|
181 | 185 | label_issue: 任务 |
|
182 | 186 | label_issue_new: 新建任务 |
|
183 | 187 | label_issue_plural: 任务列表 |
|
184 | 188 | label_issue_view_all: 查看所有任务 |
|
185 | 189 | label_document: 文档 |
|
186 | 190 | label_document_new: 新建文档 |
|
187 | 191 | label_document_plural: 文档列表 |
|
188 | 192 | label_role: 角色 |
|
189 | 193 | label_role_plural: 角色列表 |
|
190 | 194 | label_role_new: 新建角色 |
|
191 | 195 | label_role_and_permissions: 角色和权限 |
|
192 | 196 | label_member: 成员 |
|
193 | 197 | label_member_new: 新建成员 |
|
194 | 198 | label_member_plural: 成员列表 |
|
195 | 199 | label_tracker: 跟踪标签 |
|
196 | 200 | label_tracker_plural: 跟踪标签列表 |
|
197 | 201 | label_tracker_new: 新建跟踪标签 |
|
198 | 202 | label_workflow: 工作流 |
|
199 | 203 | label_issue_status: 任务状态列表 |
|
200 | 204 | label_issue_status_plural: 任务状态列表 |
|
201 | 205 | label_issue_status_new: 新建任务状态列表 |
|
202 | 206 | label_issue_category: 任务类别 |
|
203 | 207 | label_issue_category_plural: 任务类别列表 |
|
204 | 208 | label_issue_category_new: 新建任务类别 |
|
205 | 209 | label_custom_field: 自定义字段 |
|
206 | 210 | label_custom_field_plural: 自定义字段列表 |
|
207 | 211 | label_custom_field_new: 新建自定义字段 |
|
208 | 212 | label_enumerations: 枚举列表 |
|
209 | 213 | label_enumeration_new: 新建枚举值 |
|
210 | 214 | label_information: 信息 |
|
211 | 215 | label_information_plural: 信息 |
|
212 | 216 | label_please_login: 请登录 |
|
213 | 217 | label_register: 注册 |
|
214 | 218 | label_password_lost: 忘记口令 |
|
215 | 219 | label_home: 主页 |
|
216 | 220 | label_my_page: 我的工作台 |
|
217 | 221 | label_my_account: 我的帐号 |
|
218 | 222 | label_my_projects: 我的项目列表 |
|
219 | 223 | label_administration: 管理 |
|
220 | 224 | label_login: 登录 |
|
221 | 225 | label_logout: 退出 |
|
222 | 226 | label_help: 帮助 |
|
223 | 227 | label_reported_issues: 已报告的问题 |
|
224 | 228 | label_assigned_to_me_issues: 分配给我的任务 |
|
225 | 229 | label_last_login: 最后登录 |
|
226 | 230 | label_last_updates: 最后更新 |
|
227 | 231 | label_last_updates_plural: %d 最后更新 |
|
228 | 232 | label_registered_on: 注册于 |
|
229 | 233 | label_activity: 活动 |
|
230 | 234 | label_new: 新建 |
|
231 | 235 | label_logged_as: 登录为 |
|
232 | 236 | label_environment: 环境 |
|
233 | 237 | label_authentication: 认证 |
|
234 | 238 | label_auth_source: 认证模式 |
|
235 | 239 | label_auth_source_new: 新建认证模式 |
|
236 | 240 | label_auth_source_plural: 认证模式列表 |
|
237 | 241 | label_subproject_plural: 子项目列表 |
|
238 | 242 | label_min_max_length: 最小 - 最大 长度 |
|
239 | 243 | label_list: list |
|
240 | 244 | label_date: Date |
|
241 | 245 | label_integer: Integer |
|
242 | 246 | label_boolean: Boolean |
|
243 | 247 | label_string: Text |
|
244 | 248 | label_text: Long text |
|
245 | 249 | label_attribute: 属性 |
|
246 | 250 | label_attribute_plural: 属性 |
|
247 | 251 | label_download: %d 个下载次数 |
|
248 | 252 | label_download_plural: %d 个下载次数 |
|
249 | 253 | label_no_data: 没有数据用于显示 |
|
250 | 254 | label_change_status: 改变状态 |
|
251 | 255 | label_history: 历史记录 |
|
252 | 256 | label_attachment: 文件 |
|
253 | 257 | label_attachment_new: 新建文件 |
|
254 | 258 | label_attachment_delete: 删除文件 |
|
255 | 259 | label_attachment_plural: 文件列表 |
|
256 | 260 | label_report: 报表 |
|
257 | 261 | label_report_plural: 报表列表 |
|
258 | 262 | label_news: 新闻 |
|
259 | 263 | label_news_new: 增加新闻 |
|
260 | 264 | label_news_plural: 新闻列表 |
|
261 | 265 | label_news_latest: 最近的新闻 |
|
262 | 266 | label_news_view_all: 查看所有新闻 |
|
263 | 267 | label_change_log: 更新日志 |
|
264 | 268 | label_settings: 配置 |
|
265 | 269 | label_overview: 概述 |
|
266 | 270 | label_version: 版本 |
|
267 | 271 | label_version_new: 新建版本 |
|
268 | 272 | label_version_plural: 版本列表 |
|
269 | 273 | label_confirmation: 确认 |
|
270 | 274 | label_export_to: 导出 |
|
271 | 275 | label_read: 读取... |
|
272 | 276 | label_public_projects: 公开的项目列表 |
|
273 | 277 | label_open_issues: 打开 |
|
274 | 278 | label_open_issues_plural: 打开 |
|
275 | 279 | label_closed_issues: 已关闭 |
|
276 | 280 | label_closed_issues_plural: 已关闭 |
|
277 | 281 | label_total: 合计 |
|
278 | 282 | label_permissions: 权限列表 |
|
279 | 283 | label_current_status: 当前状态 |
|
280 | 284 | label_new_statuses_allowed: New statuses allowed |
|
281 | 285 | label_all: 全部 |
|
282 | 286 | label_none: 无 |
|
283 | 287 | label_next: 下一个 |
|
284 | 288 | label_previous: 上一个 |
|
285 | 289 | label_used_by: 使用中 |
|
286 | 290 | label_details: 详情... |
|
287 | 291 | label_add_note: 添加说明 |
|
288 | 292 | label_per_page: 每面 |
|
289 | 293 | label_calendar: 日历 |
|
290 | 294 | label_months_from: months from |
|
291 | 295 | label_gantt: 甘特图(Gantt) |
|
292 | 296 | label_internal: 内部 |
|
293 | 297 | label_last_changes: 最近的 %d 次更改 |
|
294 | 298 | label_change_view_all: 查看所有更改 |
|
295 | 299 | label_personalize_page: 个性化定制本页 |
|
296 | 300 | label_comment: 注释 |
|
297 | 301 | label_comment_plural: 注释列表 |
|
298 | 302 | label_comment_add: 添加注释 |
|
299 | 303 | label_comment_added: 已加入注释 |
|
300 | 304 | label_comment_delete: 删除注释 |
|
301 | 305 | label_query: 自定义查询 |
|
302 | 306 | label_query_plural: 自定义查询列表 |
|
303 | 307 | label_query_new: 新建查询 |
|
304 | 308 | label_filter_add: 增加过滤器 |
|
305 | 309 | label_filter_plural: 过滤器列表 |
|
306 | 310 | label_equals: 等于 |
|
307 | 311 | label_not_equals: 不等于 |
|
308 | 312 | label_in_less_than: 剩余天数小于 |
|
309 | 313 | label_in_more_than: 剩余天数大于 |
|
310 | 314 | label_in: 剩余天数 |
|
311 | 315 | label_today: 今天 |
|
312 | 316 | label_less_than_ago: 之前天数少于 |
|
313 | 317 | label_more_than_ago: 之前天数大于 |
|
314 | 318 | label_ago: 之前天数 |
|
315 | 319 | label_contains: 包含 |
|
316 | 320 | label_not_contains: 不包含 |
|
317 | 321 | label_day_plural: 天数 |
|
318 | 322 | label_repository: SVN 版本库 |
|
319 | 323 | label_browse: 浏览 |
|
320 | 324 | label_modification: %d 个更新 |
|
321 | 325 | label_modification_plural: %d 个更新 |
|
322 | 326 | label_revision: 修订 |
|
323 | 327 | label_revision_plural: 修订 |
|
324 | 328 | label_added: 已增加 |
|
325 | 329 | label_modified: 已修改 |
|
326 | 330 | label_deleted: 已删除 |
|
327 | 331 | label_latest_revision: 最近的版本 |
|
328 | 332 | label_latest_revision_plural: 最近的版本列表 |
|
329 | 333 | label_view_revisions: 查看修订列表 |
|
330 | 334 | label_max_size: 最大尺寸 |
|
331 | 335 | label_on: 'on' |
|
332 | 336 | label_sort_highest: 置顶 |
|
333 | 337 | label_sort_higher: 上移 |
|
334 | 338 | label_sort_lower: 下移 |
|
335 | 339 | label_sort_lowest: 置底 |
|
336 | 340 | label_roadmap: 路线图 |
|
337 | 341 | label_roadmap_due_in: Due in |
|
338 | 342 | label_roadmap_no_issues: 该版本没有任务 |
|
339 | 343 | label_search: 查找 |
|
340 | 344 | label_result: %d 个结果 |
|
341 | 345 | label_result_plural: %d 个结果 |
|
342 | 346 | label_all_words: 所有单词 |
|
343 | 347 | label_wiki: Wiki |
|
344 | 348 | label_wiki_edit: Wiki edit |
|
345 | 349 | label_wiki_edit_plural: Wiki edits |
|
346 | 350 | label_page_index: 索引 |
|
347 | 351 | label_current_version: 当前版本 |
|
348 | 352 | label_preview: 预览 |
|
349 | 353 | label_feed_plural: Feeds |
|
350 | 354 | label_changes_details: 所有更改的详情 |
|
351 | 355 | label_issue_tracking: 任务跟踪 |
|
352 | 356 | label_spent_time: 耗时 |
|
353 | 357 | label_f_hour: %.2f 小时 |
|
354 | 358 | label_f_hour_plural: %.2f 小时 |
|
355 | 359 | label_time_tracking: 时间跟踪 |
|
356 | 360 | label_change_plural: 更改列表 |
|
357 | 361 | label_statistics: 统计 |
|
358 | 362 | label_commits_per_month: Commits per month |
|
359 | 363 | label_commits_per_author: Commits per author |
|
360 | 364 | label_view_diff: View differences |
|
361 | 365 | label_diff_inline: inline |
|
362 | 366 | label_diff_side_by_side: side by side |
|
363 | 367 | label_options: Options |
|
364 | 368 | label_copy_workflow_from: Copy workflow from |
|
365 | 369 | label_permissions_report: Permissions report |
|
366 | 370 | label_watched_issues: Watched issues |
|
367 | 371 | label_related_issues: Related issues |
|
368 | 372 | label_applied_status: Applied status |
|
369 | 373 | label_loading: Loading... |
|
374 | label_relation_new: New relation | |
|
375 | label_relation_delete: Delete relation | |
|
376 | label_relates_to: related tp | |
|
377 | label_duplicates: duplicates | |
|
378 | label_blocks: blocks | |
|
379 | label_blocked_by: blocked by | |
|
380 | label_precedes: precedes | |
|
381 | label_follows: follows | |
|
382 | label_end_to_start: start to end | |
|
383 | label_end_to_end: end to end | |
|
384 | label_start_to_start: start to start | |
|
385 | label_start_to_end: start to end | |
|
370 | 386 | |
|
371 | 387 | button_login: 登录 |
|
372 | 388 | button_submit: 提交 |
|
373 | 389 | button_save: 保存 |
|
374 | 390 | button_check_all: 全选 |
|
375 | 391 | button_uncheck_all: 清除 |
|
376 | 392 | button_delete: 删除 |
|
377 | 393 | button_create: 创建 |
|
378 | 394 | button_test: 测试 |
|
379 | 395 | button_edit: 编辑 |
|
380 | 396 | button_add: 新增 |
|
381 | 397 | button_change: 修改 |
|
382 | 398 | button_apply: 应用 |
|
383 | 399 | button_clear: 清除 |
|
384 | 400 | button_lock: 锁定 |
|
385 | 401 | button_unlock: 解锁 |
|
386 | 402 | button_download: 下载 |
|
387 | 403 | button_list: 列表 |
|
388 | 404 | button_view: 查看 |
|
389 | 405 | button_move: 移动 |
|
390 | 406 | button_back: 返回 |
|
391 | 407 | button_cancel: 取消 |
|
392 | 408 | button_activate: 激活 |
|
393 | 409 | button_sort: 排序 |
|
394 | 410 | button_log_time: 登记工时 |
|
395 | 411 | button_rollback: Rollback to this version |
|
396 | 412 | button_watch: Watch |
|
397 | 413 | button_unwatch: Unwatch |
|
398 | 414 | |
|
399 | 415 | status_active: 激活 |
|
400 | 416 | status_registered: 已注册 |
|
401 | 417 | status_locked: 已锁定 |
|
402 | 418 | |
|
403 | 419 | text_select_mail_notifications: 选择需要发送邮件通知的动作。 |
|
404 | 420 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
405 | 421 | text_min_max_length_info: 0 表示没有限制 |
|
406 | 422 | text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗? |
|
407 | 423 | text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流 |
|
408 | 424 | text_are_you_sure: 您确定? |
|
409 | 425 | text_journal_changed: 从 %s 更改为 %s |
|
410 | 426 | text_journal_set_to: 设置为 %s |
|
411 | 427 | text_journal_deleted: 已删除 |
|
412 | 428 | text_tip_task_begin_day: 开始于此 |
|
413 | 429 | text_tip_task_end_day: 在此结束 |
|
414 | 430 | text_tip_task_begin_end_day: 开始并结束于此 |
|
415 | 431 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
416 | 432 | text_caracters_maximum: %d characters maximum. |
|
417 | 433 | text_length_between: Length between %d and %d characters. |
|
418 | 434 | text_tracker_no_workflow: No workflow defined for this tracker |
|
419 | 435 | text_unallowed_characters: Unallowed characters |
|
420 | 436 | text_coma_separated: Multiple values allowed (coma separated). |
|
421 | 437 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
422 | 438 | |
|
423 | 439 | default_role_manager: 管理员 |
|
424 | 440 | default_role_developper: 开发人员 |
|
425 | 441 | default_role_reporter: 报告人员 |
|
426 | 442 | default_tracker_bug: 问题 |
|
427 | 443 | default_tracker_feature: 功能 |
|
428 | 444 | default_tracker_support: 支持 |
|
429 | 445 | default_issue_status_new: 新建 |
|
430 | 446 | default_issue_status_assigned: 已分配 |
|
431 | 447 | default_issue_status_resolved: 已解决 |
|
432 | 448 | default_issue_status_feedback: 回复 |
|
433 | 449 | default_issue_status_closed: 已关闭 |
|
434 | 450 | default_issue_status_rejected: 已打回 |
|
435 | 451 | default_doc_category_user: 用户文档 |
|
436 | 452 | default_doc_category_tech: 技术文档 |
|
437 | 453 | default_priority_low: 低 |
|
438 | 454 | default_priority_normal: 普通 |
|
439 | 455 | default_priority_high: 高 |
|
440 | 456 | default_priority_urgent: 紧急 |
|
441 | 457 | default_priority_immediate: 立刻 |
|
442 | 458 | default_activity_design: 设计 |
|
443 | 459 | default_activity_development: 开发 |
|
444 | 460 | |
|
445 | 461 | enumeration_issue_priorities: 任务优先级 |
|
446 | 462 | enumeration_doc_categories: 文档类别 |
|
447 | 463 | enumeration_activities: Activities (time tracking) |
@@ -1,47 +1,56 | |||
|
1 | 1 | function checkAll (id, checked) { |
|
2 | 2 | var el = document.getElementById(id); |
|
3 | 3 | for (var i = 0; i < el.elements.length; i++) { |
|
4 | 4 | if (el.elements[i].disabled==false) { |
|
5 | 5 | el.elements[i].checked = checked; |
|
6 | 6 | } |
|
7 | 7 | } |
|
8 | 8 | } |
|
9 | 9 | |
|
10 | 10 | function addFileField() { |
|
11 | 11 | var f = document.createElement("input"); |
|
12 | 12 | f.type = "file"; |
|
13 | 13 | f.name = "attachments[]"; |
|
14 | 14 | f.size = 30; |
|
15 | 15 | |
|
16 | 16 | p = document.getElementById("attachments_p"); |
|
17 | 17 | p.appendChild(document.createElement("br")); |
|
18 | 18 | p.appendChild(f); |
|
19 | 19 | } |
|
20 | 20 | |
|
21 | 21 | function showTab(name) { |
|
22 | 22 | var f = $$('div#content .tab-content'); |
|
23 | 23 | for(var i=0; i<f.length; i++){ |
|
24 | 24 | Element.hide(f[i]); |
|
25 | 25 | } |
|
26 | 26 | var f = $$('div.tabs a'); |
|
27 | 27 | for(var i=0; i<f.length; i++){ |
|
28 | 28 | Element.removeClassName(f[i], "selected"); |
|
29 | 29 | } |
|
30 | 30 | Element.show('tab-content-' + name); |
|
31 | 31 | Element.addClassName('tab-' + name, "selected"); |
|
32 | 32 | return false; |
|
33 | 33 | } |
|
34 | 34 | |
|
35 | function setPredecessorFieldsVisibility() { | |
|
36 | relationType = $('relation_relation_type'); | |
|
37 | if (relationType && relationType.value == "precedes") { | |
|
38 | Element.show('predecessor_fields'); | |
|
39 | } else { | |
|
40 | Element.hide('predecessor_fields'); | |
|
41 | } | |
|
42 | } | |
|
43 | ||
|
35 | 44 | /* shows and hides ajax indicator */ |
|
36 | 45 | Ajax.Responders.register({ |
|
37 | 46 | onCreate: function(){ |
|
38 | 47 | if ($('ajax-indicator') && Ajax.activeRequestCount > 0) { |
|
39 | 48 | Element.show('ajax-indicator'); |
|
40 | 49 | } |
|
41 | 50 | }, |
|
42 | 51 | onComplete: function(){ |
|
43 | 52 | if ($('ajax-indicator') && Ajax.activeRequestCount == 0) { |
|
44 | 53 | Element.hide('ajax-indicator'); |
|
45 | 54 | } |
|
46 | 55 | } |
|
47 | 56 | }); |
General Comments 0
You need to be logged in to leave comments.
Login now