##// END OF EJS Templates
Added a 'Assignable' boolean on Role model....
Jean-Philippe Lang -
r643:446889b3f0cb
parent child
Show More
@@ -0,0 +1,9
1 class AddRolesAssignable < ActiveRecord::Migration
2 def self.up
3 add_column :roles, :assignable, :boolean, :default => true
4 end
5
6 def self.down
7 remove_column :roles, :assignable
8 end
9 end
@@ -1,132 +1,142
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class Issue < ActiveRecord::Base
18 class Issue < ActiveRecord::Base
19 belongs_to :project
19 belongs_to :project
20 belongs_to :tracker
20 belongs_to :tracker
21 belongs_to :status, :class_name => 'IssueStatus', :foreign_key => 'status_id'
21 belongs_to :status, :class_name => 'IssueStatus', :foreign_key => 'status_id'
22 belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'
22 belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'
23 belongs_to :assigned_to, :class_name => 'User', :foreign_key => 'assigned_to_id'
23 belongs_to :assigned_to, :class_name => 'User', :foreign_key => 'assigned_to_id'
24 belongs_to :fixed_version, :class_name => 'Version', :foreign_key => 'fixed_version_id'
24 belongs_to :fixed_version, :class_name => 'Version', :foreign_key => 'fixed_version_id'
25 belongs_to :priority, :class_name => 'Enumeration', :foreign_key => 'priority_id'
25 belongs_to :priority, :class_name => 'Enumeration', :foreign_key => 'priority_id'
26 belongs_to :category, :class_name => 'IssueCategory', :foreign_key => 'category_id'
26 belongs_to :category, :class_name => 'IssueCategory', :foreign_key => 'category_id'
27
27
28 has_many :journals, :as => :journalized, :dependent => :destroy
28 has_many :journals, :as => :journalized, :dependent => :destroy
29 has_many :attachments, :as => :container, :dependent => :destroy
29 has_many :attachments, :as => :container, :dependent => :destroy
30 has_many :time_entries, :dependent => :nullify
30 has_many :time_entries, :dependent => :nullify
31 has_many :custom_values, :dependent => :delete_all, :as => :customized
31 has_many :custom_values, :dependent => :delete_all, :as => :customized
32 has_many :custom_fields, :through => :custom_values
32 has_many :custom_fields, :through => :custom_values
33 has_and_belongs_to_many :changesets, :order => "revision ASC"
33 has_and_belongs_to_many :changesets, :order => "revision ASC"
34
34
35 has_many :relations_from, :class_name => 'IssueRelation', :foreign_key => 'issue_from_id', :dependent => :delete_all
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
36 has_many :relations_to, :class_name => 'IssueRelation', :foreign_key => 'issue_to_id', :dependent => :delete_all
37
37
38 acts_as_watchable
38 acts_as_watchable
39
39
40 validates_presence_of :subject, :description, :priority, :tracker, :author, :status
40 validates_presence_of :subject, :description, :priority, :tracker, :author, :status
41 validates_length_of :subject, :maximum => 255
41 validates_length_of :subject, :maximum => 255
42 validates_inclusion_of :done_ratio, :in => 0..100
42 validates_inclusion_of :done_ratio, :in => 0..100
43 validates_associated :custom_values, :on => :update
43 validates_associated :custom_values, :on => :update
44
44
45 # set default status for new issues
45 # set default status for new issues
46 def before_validation
46 def before_validation
47 self.status = IssueStatus.default if status.nil?
47 self.status = IssueStatus.default if status.nil?
48 end
48 end
49
49
50 def validate
50 def validate
51 if self.due_date.nil? && @attributes['due_date'] && !@attributes['due_date'].empty?
51 if self.due_date.nil? && @attributes['due_date'] && !@attributes['due_date'].empty?
52 errors.add :due_date, :activerecord_error_not_a_date
52 errors.add :due_date, :activerecord_error_not_a_date
53 end
53 end
54
54
55 if self.due_date and self.start_date and self.due_date < self.start_date
55 if self.due_date and self.start_date and self.due_date < self.start_date
56 errors.add :due_date, :activerecord_error_greater_than_start_date
56 errors.add :due_date, :activerecord_error_greater_than_start_date
57 end
57 end
58
58
59 if start_date && soonest_start && start_date < soonest_start
59 if start_date && soonest_start && start_date < soonest_start
60 errors.add :start_date, :activerecord_error_invalid
60 errors.add :start_date, :activerecord_error_invalid
61 end
61 end
62
63 # validate assignment
64 if assigned_to && !assignable_users.include?(assigned_to)
65 errors.add :assigned_to_id, :activerecord_error_invalid
66 end
62 end
67 end
63
68
64 def before_create
69 def before_create
65 # default assignment based on category
70 # default assignment based on category
66 if assigned_to.nil? && category && category.assigned_to
71 if assigned_to.nil? && category && category.assigned_to
67 self.assigned_to = category.assigned_to
72 self.assigned_to = category.assigned_to
68 end
73 end
69 end
74 end
70
75
71 def before_save
76 def before_save
72 if @current_journal
77 if @current_journal
73 # attributes changes
78 # attributes changes
74 (Issue.column_names - %w(id description)).each {|c|
79 (Issue.column_names - %w(id description)).each {|c|
75 @current_journal.details << JournalDetail.new(:property => 'attr',
80 @current_journal.details << JournalDetail.new(:property => 'attr',
76 :prop_key => c,
81 :prop_key => c,
77 :old_value => @issue_before_change.send(c),
82 :old_value => @issue_before_change.send(c),
78 :value => send(c)) unless send(c)==@issue_before_change.send(c)
83 :value => send(c)) unless send(c)==@issue_before_change.send(c)
79 }
84 }
80 # custom fields changes
85 # custom fields changes
81 custom_values.each {|c|
86 custom_values.each {|c|
82 @current_journal.details << JournalDetail.new(:property => 'cf',
87 @current_journal.details << JournalDetail.new(:property => 'cf',
83 :prop_key => c.custom_field_id,
88 :prop_key => c.custom_field_id,
84 :old_value => @custom_values_before_change[c.custom_field_id],
89 :old_value => @custom_values_before_change[c.custom_field_id],
85 :value => c.value) unless @custom_values_before_change[c.custom_field_id]==c.value
90 :value => c.value) unless @custom_values_before_change[c.custom_field_id]==c.value
86 }
91 }
87 @current_journal.save unless @current_journal.details.empty? and @current_journal.notes.empty?
92 @current_journal.save unless @current_journal.details.empty? and @current_journal.notes.empty?
88 end
93 end
89 end
94 end
90
95
91 def after_save
96 def after_save
92 relations_from.each(&:set_issue_to_dates)
97 relations_from.each(&:set_issue_to_dates)
93 end
98 end
94
99
95 def custom_value_for(custom_field)
100 def custom_value_for(custom_field)
96 self.custom_values.each {|v| return v if v.custom_field_id == custom_field.id }
101 self.custom_values.each {|v| return v if v.custom_field_id == custom_field.id }
97 return nil
102 return nil
98 end
103 end
99
104
100 def init_journal(user, notes = "")
105 def init_journal(user, notes = "")
101 @current_journal ||= Journal.new(:journalized => self, :user => user, :notes => notes)
106 @current_journal ||= Journal.new(:journalized => self, :user => user, :notes => notes)
102 @issue_before_change = self.clone
107 @issue_before_change = self.clone
103 @custom_values_before_change = {}
108 @custom_values_before_change = {}
104 self.custom_values.each {|c| @custom_values_before_change.store c.custom_field_id, c.value }
109 self.custom_values.each {|c| @custom_values_before_change.store c.custom_field_id, c.value }
105 @current_journal
110 @current_journal
106 end
111 end
107
112
113 # Users the issue can be assigned to
114 def assignable_users
115 project.members.select {|m| m.role.assignable?}.collect {|m| m.user}
116 end
117
108 def spent_hours
118 def spent_hours
109 @spent_hours ||= time_entries.sum(:hours) || 0
119 @spent_hours ||= time_entries.sum(:hours) || 0
110 end
120 end
111
121
112 def relations
122 def relations
113 (relations_from + relations_to).sort
123 (relations_from + relations_to).sort
114 end
124 end
115
125
116 def all_dependent_issues
126 def all_dependent_issues
117 dependencies = []
127 dependencies = []
118 relations_from.each do |relation|
128 relations_from.each do |relation|
119 dependencies << relation.issue_to
129 dependencies << relation.issue_to
120 dependencies += relation.issue_to.all_dependent_issues
130 dependencies += relation.issue_to.all_dependent_issues
121 end
131 end
122 dependencies
132 dependencies
123 end
133 end
124
134
125 def duration
135 def duration
126 (start_date && due_date) ? due_date - start_date : 0
136 (start_date && due_date) ? due_date - start_date : 0
127 end
137 end
128
138
129 def soonest_start
139 def soonest_start
130 @soonest_start ||= relations_to.collect{|relation| relation.successor_soonest_start}.compact.min
140 @soonest_start ||= relations_to.collect{|relation| relation.successor_soonest_start}.compact.min
131 end
141 end
132 end
142 end
@@ -1,40 +1,40
1 <h2><%=l(:label_issue)%> #<%= @issue.id %>: <%=h @issue.subject %></h2>
1 <h2><%=l(:label_issue)%> #<%= @issue.id %>: <%=h @issue.subject %></h2>
2
2
3 <%= error_messages_for 'issue' %>
3 <%= error_messages_for 'issue' %>
4 <% labelled_tabular_form_for(:issue, @issue, :url => {:action => 'change_status', :id => @issue}, :html => {:multipart => true}) do |f| %>
4 <% labelled_tabular_form_for(:issue, @issue, :url => {:action => 'change_status', :id => @issue}, :html => {:multipart => true}) do |f| %>
5
5
6 <%= hidden_field_tag 'confirm', 1 %>
6 <%= hidden_field_tag 'confirm', 1 %>
7 <%= hidden_field_tag 'new_status_id', @new_status.id %>
7 <%= hidden_field_tag 'new_status_id', @new_status.id %>
8 <%= f.hidden_field :lock_version %>
8 <%= f.hidden_field :lock_version %>
9
9
10 <div class="box">
10 <div class="box">
11 <div class="splitcontentleft">
11 <div class="splitcontentleft">
12 <p><label><%=l(:label_issue_status_new)%></label> <%= @new_status.name %></p>
12 <p><label><%=l(:label_issue_status_new)%></label> <%= @new_status.name %></p>
13 <p><%= f.select :assigned_to_id, (@issue.project.members.collect {|m| [m.name, m.user_id]}), :include_blank => true %></p>
13 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
14 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
14 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
15 <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p>
15 <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p>
16 </div>
16 </div>
17 <div class="splitcontentright">
17 <div class="splitcontentright">
18 <% if authorize_for('timelog', 'edit') %>
18 <% if authorize_for('timelog', 'edit') %>
19 <% fields_for :time_entry, @time_entry, { :builder => TabularFormBuilder, :lang => current_language} do |time_entry| %>
19 <% fields_for :time_entry, @time_entry, { :builder => TabularFormBuilder, :lang => current_language} do |time_entry| %>
20 <p><%= time_entry.text_field :hours, :size => 6, :label => :label_spent_time %> <%= l(:field_hours) %></p>
20 <p><%= time_entry.text_field :hours, :size => 6, :label => :label_spent_time %> <%= l(:field_hours) %></p>
21 <p><%= time_entry.text_field :comments, :size => 40 %></p>
21 <p><%= time_entry.text_field :comments, :size => 40 %></p>
22 <p><%= time_entry.select :activity_id, (@activities.collect {|p| [p.name, p.id]}) %></p>
22 <p><%= time_entry.select :activity_id, (@activities.collect {|p| [p.name, p.id]}) %></p>
23 <% end %>
23 <% end %>
24 <% end %>
24 <% end %>
25 </div>
25 </div>
26
26
27 <div class="clear"></div>
27 <div class="clear"></div>
28
28
29 <p><label for="notes"><%= l(:field_notes) %></label>
29 <p><label for="notes"><%= l(:field_notes) %></label>
30 <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %></p>
30 <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %></p>
31
31
32 <% if authorize_for('issues', 'add_attachment') %>
32 <% if authorize_for('issues', 'add_attachment') %>
33 <p id="attachments_p"><label><%=l(:label_attachment_new)%>
33 <p id="attachments_p"><label><%=l(:label_attachment_new)%>
34 <%= image_to_function "add.png", "addFileField();return false" %></label>
34 <%= image_to_function "add.png", "addFileField();return false" %></label>
35 <%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
35 <%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
36 <% end %>
36 <% end %>
37 </div>
37 </div>
38
38
39 <%= submit_tag l(:button_save) %>
39 <%= submit_tag l(:button_save) %>
40 <% end %>
40 <% end %>
@@ -1,47 +1,47
1 <h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%=h @issue.subject %></h2>
1 <h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%=h @issue.subject %></h2>
2
2
3 <% labelled_tabular_form_for :issue, @issue, :url => {:action => 'edit'} do |f| %>
3 <% labelled_tabular_form_for :issue, @issue, :url => {:action => 'edit'} do |f| %>
4 <%= error_messages_for 'issue' %>
4 <%= error_messages_for 'issue' %>
5 <div class="box">
5 <div class="box">
6 <!--[form:issue]-->
6 <!--[form:issue]-->
7 <div class="splitcontentleft">
7 <div class="splitcontentleft">
8 <p><label><%=l(:field_status)%></label> <%= @issue.status.name %></p>
8 <p><label><%=l(:field_status)%></label> <%= @issue.status.name %></p>
9 <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
9 <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
10 <p><%= f.select :assigned_to_id, (@issue.project.members.collect {|m| [m.name, m.user_id]}), :include_blank => true %></p>
10 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
11 <p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
11 <p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
12 <%= prompt_to_remote(l(:label_issue_category_new),
12 <%= prompt_to_remote(l(:label_issue_category_new),
13 l(:label_issue_category_new), 'category[name]',
13 l(:label_issue_category_new), 'category[name]',
14 {:controller => 'projects', :action => 'add_issue_category', :id => @project},
14 {:controller => 'projects', :action => 'add_issue_category', :id => @project},
15 :class => 'small') if authorize_for('projects', 'add_issue_category') %></p>
15 :class => 'small') if authorize_for('projects', 'add_issue_category') %></p>
16 </div>
16 </div>
17
17
18 <div class="splitcontentright">
18 <div class="splitcontentright">
19 <p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
19 <p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
20 <p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
20 <p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
21 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
21 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
22 </div>
22 </div>
23
23
24 <div class="clear">
24 <div class="clear">
25 <p><%= f.text_field :subject, :size => 80, :required => true %></p>
25 <p><%= f.text_field :subject, :size => 80, :required => true %></p>
26 <p><%= f.text_area :description, :required => true, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :class => 'wiki-edit' %></p>
26 <p><%= f.text_area :description, :required => true, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :class => 'wiki-edit' %></p>
27
27
28 <% for @custom_value in @custom_values %>
28 <% for @custom_value in @custom_values %>
29 <p><%= custom_field_tag_with_label @custom_value %></p>
29 <p><%= custom_field_tag_with_label @custom_value %></p>
30 <% end %>
30 <% end %>
31
31
32 <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p>
32 <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p>
33 </div>
33 </div>
34 <!--[eoform:issue]-->
34 <!--[eoform:issue]-->
35 </div>
35 </div>
36 <%= f.hidden_field :lock_version %>
36 <%= f.hidden_field :lock_version %>
37 <%= submit_tag l(:button_save) %>
37 <%= submit_tag l(:button_save) %>
38 <% end %>
38 <% end %>
39
39
40 <%= wikitoolbar_for 'issue_description' %>
40 <%= wikitoolbar_for 'issue_description' %>
41
41
42 <% content_for :header_tags do %>
42 <% content_for :header_tags do %>
43 <%= javascript_include_tag 'calendar/calendar' %>
43 <%= javascript_include_tag 'calendar/calendar' %>
44 <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
44 <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
45 <%= javascript_include_tag 'calendar/calendar-setup' %>
45 <%= javascript_include_tag 'calendar/calendar-setup' %>
46 <%= stylesheet_link_tag 'calendar' %>
46 <%= stylesheet_link_tag 'calendar' %>
47 <% end %> No newline at end of file
47 <% end %>
@@ -1,52 +1,52
1 <h2><%=l(:label_issue_new)%>: <%= @tracker.name %></h2>
1 <h2><%=l(:label_issue_new)%>: <%= @tracker.name %></h2>
2
2
3 <% labelled_tabular_form_for :issue, @issue, :url => {:action => 'add_issue'}, :html => {:multipart => true} do |f| %>
3 <% labelled_tabular_form_for :issue, @issue, :url => {:action => 'add_issue'}, :html => {:multipart => true} do |f| %>
4 <%= error_messages_for 'issue' %>
4 <%= error_messages_for 'issue' %>
5 <div class="box">
5 <div class="box">
6 <!--[form:issue]-->
6 <!--[form:issue]-->
7 <%= hidden_field_tag 'tracker_id', @tracker.id %>
7 <%= hidden_field_tag 'tracker_id', @tracker.id %>
8
8
9 <div class="splitcontentleft">
9 <div class="splitcontentleft">
10 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
10 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
11 <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
11 <p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
12 <p><%= f.select :assigned_to_id, (@issue.project.members.collect {|m| [m.name, m.user_id]}), :include_blank => true %></p>
12 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
13 <p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
13 <p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
14 <%= prompt_to_remote(l(:label_issue_category_new),
14 <%= prompt_to_remote(l(:label_issue_category_new),
15 l(:label_issue_category_new), 'category[name]',
15 l(:label_issue_category_new), 'category[name]',
16 {:controller => 'projects', :action => 'add_issue_category', :id => @project},
16 {:controller => 'projects', :action => 'add_issue_category', :id => @project},
17 :class => 'small') if authorize_for('projects', 'add_issue_category') %></p>
17 :class => 'small') if authorize_for('projects', 'add_issue_category') %></p>
18 </div>
18 </div>
19 <div class="splitcontentright">
19 <div class="splitcontentright">
20 <p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
20 <p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
21 <p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
21 <p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
22 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
22 <p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
23 </div>
23 </div>
24
24
25 <div class="clear">
25 <div class="clear">
26 <p><%= f.text_field :subject, :size => 80, :required => true %></p>
26 <p><%= f.text_field :subject, :size => 80, :required => true %></p>
27 <p><%= f.text_area :description, :cols => 60, :rows => 10, :required => true, :class => 'wiki-edit' %></p>
27 <p><%= f.text_area :description, :cols => 60, :rows => 10, :required => true, :class => 'wiki-edit' %></p>
28
28
29 <% for @custom_value in @custom_values %>
29 <% for @custom_value in @custom_values %>
30 <p><%= custom_field_tag_with_label @custom_value %></p>
30 <p><%= custom_field_tag_with_label @custom_value %></p>
31 <% end %>
31 <% end %>
32
32
33 <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p>
33 <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p>
34
34
35 <p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%>
35 <p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%>
36 <%= image_to_function "add.png", "addFileField();return false" %></label>
36 <%= image_to_function "add.png", "addFileField();return false" %></label>
37 <%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
37 <%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
38
38
39 </div>
39 </div>
40 <!--[eoform:issue]-->
40 <!--[eoform:issue]-->
41 </div>
41 </div>
42 <%= submit_tag l(:button_create) %>
42 <%= submit_tag l(:button_create) %>
43 <% end %>
43 <% end %>
44
44
45 <%= wikitoolbar_for 'issue_description' %>
45 <%= wikitoolbar_for 'issue_description' %>
46
46
47 <% content_for :header_tags do %>
47 <% content_for :header_tags do %>
48 <%= javascript_include_tag 'calendar/calendar' %>
48 <%= javascript_include_tag 'calendar/calendar' %>
49 <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
49 <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
50 <%= javascript_include_tag 'calendar/calendar-setup' %>
50 <%= javascript_include_tag 'calendar/calendar-setup' %>
51 <%= stylesheet_link_tag 'calendar' %>
51 <%= stylesheet_link_tag 'calendar' %>
52 <% end %> No newline at end of file
52 <% end %>
@@ -1,21 +1,23
1 <%= error_messages_for 'role' %>
1 <%= error_messages_for 'role' %>
2 <div class="box">
2 <div class="box">
3 <!--[form:role]-->
3 <!--[form:role]-->
4 <p><%= f.text_field :name, :required => true %></p>
4 <p><%= f.text_field :name, :required => true %></p>
5 <p><%= f.check_box :assignable %></p>
6 <div class="clear"></div>
5
7
6 <h3><%=l(:label_permissions)%></h3>
8 <h3><%=l(:label_permissions)%></h3>
7 <% permissions = @permissions.group_by {|p| p.group_id } %>
9 <% permissions = @permissions.group_by {|p| p.group_id } %>
8 <% permissions.keys.sort.each do |group_id| %>
10 <% permissions.keys.sort.each do |group_id| %>
9 <fieldset style="margin-top: 6px;"><legend><strong><%= l(Permission::GROUPS[group_id]) %></strong></legend>
11 <fieldset style="margin-top: 6px;"><legend><strong><%= l(Permission::GROUPS[group_id]) %></strong></legend>
10 <% permissions[group_id].each do |p| %>
12 <% permissions[group_id].each do |p| %>
11 <div style="width:170px;float:left;"><%= check_box_tag "permission_ids[]", p.id, (@role.permissions.include? p) %>
13 <div style="width:170px;float:left;"><%= check_box_tag "permission_ids[]", p.id, (@role.permissions.include? p) %>
12 <%= l(p.description.to_sym) %>
14 <%= l(p.description.to_sym) %>
13 </div>
15 </div>
14 <% end %>
16 <% end %>
15 <div class="clear"></div>
17 <div class="clear"></div>
16 </fieldset>
18 </fieldset>
17 <% end %>
19 <% end %>
18 <br />
20 <br />
19 <%= check_all_links 'role_form' %>
21 <%= check_all_links 'role_form' %>
20 <!--[eoform:role]-->
22 <!--[eoform:role]-->
21 </div>
23 </div>
@@ -1,493 +1,494
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 ден
8 actionview_datehelper_time_in_words_day: 1 ден
9 actionview_datehelper_time_in_words_day_plural: %d дни
9 actionview_datehelper_time_in_words_day_plural: %d дни
10 actionview_datehelper_time_in_words_hour_about: около час
10 actionview_datehelper_time_in_words_hour_about: около час
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
12 actionview_datehelper_time_in_words_hour_about_single: около час
12 actionview_datehelper_time_in_words_hour_about_single: около час
13 actionview_datehelper_time_in_words_minute: 1 минута
13 actionview_datehelper_time_in_words_minute: 1 минута
14 actionview_datehelper_time_in_words_minute_half: половин минута
14 actionview_datehelper_time_in_words_minute_half: половин минута
15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
16 actionview_datehelper_time_in_words_minute_plural: %d минути
16 actionview_datehelper_time_in_words_minute_plural: %d минути
17 actionview_datehelper_time_in_words_minute_single: 1 минута
17 actionview_datehelper_time_in_words_minute_single: 1 минута
18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
20 actionview_instancetag_blank_option: Изберете
20 actionview_instancetag_blank_option: Изберете
21
21
22 activerecord_error_inclusion: не съществува в списъка
22 activerecord_error_inclusion: не съществува в списъка
23 activerecord_error_exclusion: е запазено
23 activerecord_error_exclusion: е запазено
24 activerecord_error_invalid: е невалидно
24 activerecord_error_invalid: е невалидно
25 activerecord_error_confirmation: липсва одобрение
25 activerecord_error_confirmation: липсва одобрение
26 activerecord_error_accepted: трябва да се приеме
26 activerecord_error_accepted: трябва да се приеме
27 activerecord_error_empty: не може да е празно
27 activerecord_error_empty: не може да е празно
28 activerecord_error_blank: не може да е празно
28 activerecord_error_blank: не може да е празно
29 activerecord_error_too_long: е прекалено дълго
29 activerecord_error_too_long: е прекалено дълго
30 activerecord_error_too_short: е прекалено късо
30 activerecord_error_too_short: е прекалено късо
31 activerecord_error_wrong_length: е с грешна дължина
31 activerecord_error_wrong_length: е с грешна дължина
32 activerecord_error_taken: вече съществува
32 activerecord_error_taken: вече съществува
33 activerecord_error_not_a_number: не е число
33 activerecord_error_not_a_number: не е число
34 activerecord_error_not_a_date: е невалидна дата
34 activerecord_error_not_a_date: е невалидна дата
35 activerecord_error_greater_than_start_date: трябва да е след началната дата
35 activerecord_error_greater_than_start_date: трябва да е след началната дата
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%d.%%m.%%Y
41 general_fmt_date: %%d.%%m.%%Y
42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Не'
45 general_text_No: 'Не'
46 general_text_Yes: 'Да'
46 general_text_Yes: 'Да'
47 general_text_no: 'не'
47 general_text_no: 'не'
48 general_text_yes: 'да'
48 general_text_yes: 'да'
49 general_lang_name: 'Bulgarian'
49 general_lang_name: 'Bulgarian'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
54
54
55 notice_account_updated: Профилът е обновен успешно.
55 notice_account_updated: Профилът е обновен успешно.
56 notice_account_invalid_creditentials: Невалиден потребител или парола.
56 notice_account_invalid_creditentials: Невалиден потребител или парола.
57 notice_account_password_updated: Паролата е успешно променена.
57 notice_account_password_updated: Паролата е успешно променена.
58 notice_account_wrong_password: Грешна парола
58 notice_account_wrong_password: Грешна парола
59 notice_account_register_done: Акаунтът е създаден успешно.
59 notice_account_register_done: Акаунтът е създаден успешно.
60 notice_account_unknown_email: Непознат потребител.
60 notice_account_unknown_email: Непознат потребител.
61 notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата.
61 notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата.
62 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
62 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
63 notice_account_activated: Акаунтът ви е активиран. Вече може да влезете.
63 notice_account_activated: Акаунтът ви е активиран. Вече може да влезете.
64 notice_successful_create: Успешно създаване.
64 notice_successful_create: Успешно създаване.
65 notice_successful_update: Успешно обновяване.
65 notice_successful_update: Успешно обновяване.
66 notice_successful_delete: Успешно изтриване.
66 notice_successful_delete: Успешно изтриване.
67 notice_successful_connection: Успешно свързване.
67 notice_successful_connection: Успешно свързване.
68 notice_file_not_found: Несъществуваща или преместена страница.
68 notice_file_not_found: Несъществуваща или преместена страница.
69 notice_locking_conflict: Друг потребител променя тези данни в момента.
69 notice_locking_conflict: Друг потребител променя тези данни в момента.
70 notice_scm_error: Несъществуващ обект в склада.
70 notice_scm_error: Несъществуващ обект в склада.
71 notice_not_authorized: Нямате право на достъп до тази страница.
71 notice_not_authorized: Нямате право на достъп до тази страница.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)"
74
74
75 mail_subject_lost_password: Вашата парола
75 mail_subject_lost_password: Вашата парола
76 mail_subject_register: Активация на акаунт
76 mail_subject_register: Активация на акаунт
77
77
78 gui_validation_error: 1 грешка
78 gui_validation_error: 1 грешка
79 gui_validation_error_plural: %d грешки
79 gui_validation_error_plural: %d грешки
80
80
81 field_name: Име
81 field_name: Име
82 field_description: Описание
82 field_description: Описание
83 field_summary: Тема
83 field_summary: Тема
84 field_is_required: Задължително
84 field_is_required: Задължително
85 field_firstname: Име
85 field_firstname: Име
86 field_lastname: Фамилия
86 field_lastname: Фамилия
87 field_mail: Email
87 field_mail: Email
88 field_filename: Файл
88 field_filename: Файл
89 field_filesize: Големина
89 field_filesize: Големина
90 field_downloads: Downloads
90 field_downloads: Downloads
91 field_author: Автор
91 field_author: Автор
92 field_created_on: Създадена
92 field_created_on: Създадена
93 field_updated_on: Обновена
93 field_updated_on: Обновена
94 field_field_format: Формат
94 field_field_format: Формат
95 field_is_for_all: За всички проекти
95 field_is_for_all: За всички проекти
96 field_possible_values: Възможни стойности
96 field_possible_values: Възможни стойности
97 field_regexp: Регулярен израз
97 field_regexp: Регулярен израз
98 field_min_length: Мин. дължина
98 field_min_length: Мин. дължина
99 field_max_length: Макс. дължина
99 field_max_length: Макс. дължина
100 field_value: Стойност
100 field_value: Стойност
101 field_category: Категория
101 field_category: Категория
102 field_title: Заглавие
102 field_title: Заглавие
103 field_project: Проект
103 field_project: Проект
104 field_issue: Задача
104 field_issue: Задача
105 field_status: Статус
105 field_status: Статус
106 field_notes: Бележка
106 field_notes: Бележка
107 field_is_closed: Затворена задача
107 field_is_closed: Затворена задача
108 field_is_default: Статус по подразбиране
108 field_is_default: Статус по подразбиране
109 field_html_color: Цвят
109 field_html_color: Цвят
110 field_tracker: Тракер
110 field_tracker: Тракер
111 field_subject: Тема
111 field_subject: Тема
112 field_due_date: Крайна дата
112 field_due_date: Крайна дата
113 field_assigned_to: Възложена на
113 field_assigned_to: Възложена на
114 field_priority: Приоритет
114 field_priority: Приоритет
115 field_fixed_version: Версия
115 field_fixed_version: Версия
116 field_user: Потребител
116 field_user: Потребител
117 field_role: Роля
117 field_role: Роля
118 field_homepage: Начална страница
118 field_homepage: Начална страница
119 field_is_public: Публичен
119 field_is_public: Публичен
120 field_parent: Подпроект на
120 field_parent: Подпроект на
121 field_is_in_chlog: Да се вижда ли в Изменения
121 field_is_in_chlog: Да се вижда ли в Изменения
122 field_is_in_roadmap: Да се вижда ли в Пътна карта
122 field_is_in_roadmap: Да се вижда ли в Пътна карта
123 field_login: Потребител
123 field_login: Потребител
124 field_mail_notification: Известия по пощата
124 field_mail_notification: Известия по пощата
125 field_admin: Администратор
125 field_admin: Администратор
126 field_last_login_on: Последно свързване
126 field_last_login_on: Последно свързване
127 field_language: Език
127 field_language: Език
128 field_effective_date: Дата
128 field_effective_date: Дата
129 field_password: Парола
129 field_password: Парола
130 field_new_password: Нова парола
130 field_new_password: Нова парола
131 field_password_confirmation: Потвърждение
131 field_password_confirmation: Потвърждение
132 field_version: Версия
132 field_version: Версия
133 field_type: Type
133 field_type: Type
134 field_host: Хост
134 field_host: Хост
135 field_port: Порт
135 field_port: Порт
136 field_account: Акаунт
136 field_account: Акаунт
137 field_base_dn: Base DN
137 field_base_dn: Base DN
138 field_attr_login: Login attribute
138 field_attr_login: Login attribute
139 field_attr_firstname: Firstname attribute
139 field_attr_firstname: Firstname attribute
140 field_attr_lastname: Lastname attribute
140 field_attr_lastname: Lastname attribute
141 field_attr_mail: Email attribute
141 field_attr_mail: Email attribute
142 field_onthefly: Динамично създаване на потребител
142 field_onthefly: Динамично създаване на потребител
143 field_start_date: Начална дата
143 field_start_date: Начална дата
144 field_done_ratio: %% Прогрес
144 field_done_ratio: %% Прогрес
145 field_auth_source: Начин на оторизация
145 field_auth_source: Начин на оторизация
146 field_hide_mail: Скрий e-mail адреса ми
146 field_hide_mail: Скрий e-mail адреса ми
147 field_comments: Коментар
147 field_comments: Коментар
148 field_url: Адрес
148 field_url: Адрес
149 field_start_page: Начална страница
149 field_start_page: Начална страница
150 field_subproject: Подпроект
150 field_subproject: Подпроект
151 field_hours: Часове
151 field_hours: Часове
152 field_activity: Дейност
152 field_activity: Дейност
153 field_spent_on: Дата
153 field_spent_on: Дата
154 field_identifier: Идентификатор
154 field_identifier: Идентификатор
155 field_is_filter: Използва се за филтър
155 field_is_filter: Използва се за филтър
156 field_issue_to_id: Related issue
156 field_issue_to_id: Related issue
157 field_delay: Delay
157 field_delay: Delay
158 field_assignable: Issues can be assigned to this role
158
159
159 setting_app_title: Заглавие
160 setting_app_title: Заглавие
160 setting_app_subtitle: Описание
161 setting_app_subtitle: Описание
161 setting_welcome_text: Допълнителен текст
162 setting_welcome_text: Допълнителен текст
162 setting_default_language: Език по подразбиране
163 setting_default_language: Език по подразбиране
163 setting_login_required: Изискване за вход
164 setting_login_required: Изискване за вход
164 setting_self_registration: Регистрация от потребители
165 setting_self_registration: Регистрация от потребители
165 setting_attachment_max_size: Максимално голям приложен файл
166 setting_attachment_max_size: Максимално голям приложен файл
166 setting_issues_export_limit: Лимит за експорт на задачи
167 setting_issues_export_limit: Лимит за експорт на задачи
167 setting_mail_from: E-mail адрес за емисии
168 setting_mail_from: E-mail адрес за емисии
168 setting_host_name: Хост
169 setting_host_name: Хост
169 setting_text_formatting: Форматиране на текста
170 setting_text_formatting: Форматиране на текста
170 setting_wiki_compression: Wiki компресиране на историята
171 setting_wiki_compression: Wiki компресиране на историята
171 setting_feeds_limit: Лимит на Feeds
172 setting_feeds_limit: Лимит на Feeds
172 setting_autofetch_changesets: Автоматично обработване на commits в склада
173 setting_autofetch_changesets: Автоматично обработване на commits в склада
173 setting_sys_api_enabled: Разрешаване на WS за управление на склада
174 setting_sys_api_enabled: Разрешаване на WS за управление на склада
174 setting_commit_ref_keywords: Отбелязващи ключови думи
175 setting_commit_ref_keywords: Отбелязващи ключови думи
175 setting_commit_fix_keywords: Приключващи ключови думи
176 setting_commit_fix_keywords: Приключващи ключови думи
176 setting_autologin: Autologin
177 setting_autologin: Autologin
177 setting_date_format: Date format
178 setting_date_format: Date format
178 setting_cross_project_issue_relations: Allow cross-project issue relations
179 setting_cross_project_issue_relations: Allow cross-project issue relations
179
180
180 label_user: Потребител
181 label_user: Потребител
181 label_user_plural: Потребители
182 label_user_plural: Потребители
182 label_user_new: Нов потребител
183 label_user_new: Нов потребител
183 label_project: Проект
184 label_project: Проект
184 label_project_new: Нов проект
185 label_project_new: Нов проект
185 label_project_plural: Проекти
186 label_project_plural: Проекти
186 label_project_all: All Projects
187 label_project_all: All Projects
187 label_project_latest: Последни проекти
188 label_project_latest: Последни проекти
188 label_issue: Задача
189 label_issue: Задача
189 label_issue_new: Нова задача
190 label_issue_new: Нова задача
190 label_issue_plural: Задачи
191 label_issue_plural: Задачи
191 label_issue_view_all: Всички задачи
192 label_issue_view_all: Всички задачи
192 label_document: Документ
193 label_document: Документ
193 label_document_new: Нов документ
194 label_document_new: Нов документ
194 label_document_plural: Документи
195 label_document_plural: Документи
195 label_role: Роля
196 label_role: Роля
196 label_role_plural: Роли
197 label_role_plural: Роли
197 label_role_new: Нова роля
198 label_role_new: Нова роля
198 label_role_and_permissions: Роли и права
199 label_role_and_permissions: Роли и права
199 label_member: Член
200 label_member: Член
200 label_member_new: Нов член
201 label_member_new: Нов член
201 label_member_plural: Членове
202 label_member_plural: Членове
202 label_tracker: Тракер
203 label_tracker: Тракер
203 label_tracker_plural: Тракери
204 label_tracker_plural: Тракери
204 label_tracker_new: Нов тракер
205 label_tracker_new: Нов тракер
205 label_workflow: Workflow
206 label_workflow: Workflow
206 label_issue_status: Статус на задача
207 label_issue_status: Статус на задача
207 label_issue_status_plural: Статуси на задачи
208 label_issue_status_plural: Статуси на задачи
208 label_issue_status_new: Нов статус
209 label_issue_status_new: Нов статус
209 label_issue_category: Категория задача
210 label_issue_category: Категория задача
210 label_issue_category_plural: Категории задачи
211 label_issue_category_plural: Категории задачи
211 label_issue_category_new: Нова категория
212 label_issue_category_new: Нова категория
212 label_custom_field: Измислено поле
213 label_custom_field: Измислено поле
213 label_custom_field_plural: Измислени полета
214 label_custom_field_plural: Измислени полета
214 label_custom_field_new: Ново измислено поле
215 label_custom_field_new: Ново измислено поле
215 label_enumerations: Списъци
216 label_enumerations: Списъци
216 label_enumeration_new: Нова стойност
217 label_enumeration_new: Нова стойност
217 label_information: Информация
218 label_information: Информация
218 label_information_plural: Информация
219 label_information_plural: Информация
219 label_please_login: Вход
220 label_please_login: Вход
220 label_register: Регистрация
221 label_register: Регистрация
221 label_password_lost: Забравена парола
222 label_password_lost: Забравена парола
222 label_home: Начало
223 label_home: Начало
223 label_my_page: Моята страница
224 label_my_page: Моята страница
224 label_my_account: Моят профил
225 label_my_account: Моят профил
225 label_my_projects: Моите проекти
226 label_my_projects: Моите проекти
226 label_administration: Администрация
227 label_administration: Администрация
227 label_login: Вход
228 label_login: Вход
228 label_logout: Изход
229 label_logout: Изход
229 label_help: Помощ
230 label_help: Помощ
230 label_reported_issues: Публикувани задачи
231 label_reported_issues: Публикувани задачи
231 label_assigned_to_me_issues: Назначени на мен
232 label_assigned_to_me_issues: Назначени на мен
232 label_last_login: Последно свързване
233 label_last_login: Последно свързване
233 label_last_updates: Последно обновена
234 label_last_updates: Последно обновена
234 label_last_updates_plural: %d последно обновени
235 label_last_updates_plural: %d последно обновени
235 label_registered_on: Регистрация
236 label_registered_on: Регистрация
236 label_activity: Дейност
237 label_activity: Дейност
237 label_new: Нов
238 label_new: Нов
238 label_logged_as: Логнат като
239 label_logged_as: Логнат като
239 label_environment: Среда
240 label_environment: Среда
240 label_authentication: Оторизация
241 label_authentication: Оторизация
241 label_auth_source: Начин на оторозация
242 label_auth_source: Начин на оторозация
242 label_auth_source_new: Нов начин на оторизация
243 label_auth_source_new: Нов начин на оторизация
243 label_auth_source_plural: Начини на оторизация
244 label_auth_source_plural: Начини на оторизация
244 label_subproject_plural: Подпроекти
245 label_subproject_plural: Подпроекти
245 label_min_max_length: Мин. - Макс. дължина
246 label_min_max_length: Мин. - Макс. дължина
246 label_list: Списък
247 label_list: Списък
247 label_date: Дата
248 label_date: Дата
248 label_integer: Число
249 label_integer: Число
249 label_boolean: Чекбокс
250 label_boolean: Чекбокс
250 label_string: Текст
251 label_string: Текст
251 label_text: Дълъг текст
252 label_text: Дълъг текст
252 label_attribute: Атрибут
253 label_attribute: Атрибут
253 label_attribute_plural: Атрибути
254 label_attribute_plural: Атрибути
254 label_download: %d Download
255 label_download: %d Download
255 label_download_plural: %d Downloads
256 label_download_plural: %d Downloads
256 label_no_data: Няма изходни данни
257 label_no_data: Няма изходни данни
257 label_change_status: Промяна на статуса
258 label_change_status: Промяна на статуса
258 label_history: История
259 label_history: История
259 label_attachment: Файл
260 label_attachment: Файл
260 label_attachment_new: Нов файл
261 label_attachment_new: Нов файл
261 label_attachment_delete: Изтриване
262 label_attachment_delete: Изтриване
262 label_attachment_plural: Файлове
263 label_attachment_plural: Файлове
263 label_report: Доклад
264 label_report: Доклад
264 label_report_plural: Доклади
265 label_report_plural: Доклади
265 label_news: Новини
266 label_news: Новини
266 label_news_new: Добави
267 label_news_new: Добави
267 label_news_plural: Новини
268 label_news_plural: Новини
268 label_news_latest: Последни новини
269 label_news_latest: Последни новини
269 label_news_view_all: Виж всички
270 label_news_view_all: Виж всички
270 label_change_log: Изменения
271 label_change_log: Изменения
271 label_settings: Настройки
272 label_settings: Настройки
272 label_overview: Общ изглед
273 label_overview: Общ изглед
273 label_version: Версия
274 label_version: Версия
274 label_version_new: Нова версия
275 label_version_new: Нова версия
275 label_version_plural: Версии
276 label_version_plural: Версии
276 label_confirmation: Одобрение
277 label_confirmation: Одобрение
277 label_export_to: Експорт към
278 label_export_to: Експорт към
278 label_read: Read...
279 label_read: Read...
279 label_public_projects: Публични проекти
280 label_public_projects: Публични проекти
280 label_open_issues: отворена
281 label_open_issues: отворена
281 label_open_issues_plural: отворени
282 label_open_issues_plural: отворени
282 label_closed_issues: затворена
283 label_closed_issues: затворена
283 label_closed_issues_plural: затворени
284 label_closed_issues_plural: затворени
284 label_total: Общо
285 label_total: Общо
285 label_permissions: Права
286 label_permissions: Права
286 label_current_status: Текущ статус
287 label_current_status: Текущ статус
287 label_new_statuses_allowed: Позволени статуси
288 label_new_statuses_allowed: Позволени статуси
288 label_all: всички
289 label_all: всички
289 label_none: никакви
290 label_none: никакви
290 label_next: Следващ
291 label_next: Следващ
291 label_previous: Предишен
292 label_previous: Предишен
292 label_used_by: Използва се от
293 label_used_by: Използва се от
293 label_details: Детайли
294 label_details: Детайли
294 label_add_note: Добавяне на бележка
295 label_add_note: Добавяне на бележка
295 label_per_page: На страница
296 label_per_page: На страница
296 label_calendar: Календар
297 label_calendar: Календар
297 label_months_from: месеци от
298 label_months_from: месеци от
298 label_gantt: Gantt
299 label_gantt: Gantt
299 label_internal: Вътрешен
300 label_internal: Вътрешен
300 label_last_changes: последни %d промени
301 label_last_changes: последни %d промени
301 label_change_view_all: Виж всички промени
302 label_change_view_all: Виж всички промени
302 label_personalize_page: Персонализиране
303 label_personalize_page: Персонализиране
303 label_comment: Коментар
304 label_comment: Коментар
304 label_comment_plural: Коментари
305 label_comment_plural: Коментари
305 label_comment_add: Добавяне на коментар
306 label_comment_add: Добавяне на коментар
306 label_comment_added: Добавен коментар
307 label_comment_added: Добавен коментар
307 label_comment_delete: Изтриване на коментари
308 label_comment_delete: Изтриване на коментари
308 label_query: Измислена заявка
309 label_query: Измислена заявка
309 label_query_plural: Измислени заявки
310 label_query_plural: Измислени заявки
310 label_query_new: Нова заявка
311 label_query_new: Нова заявка
311 label_filter_add: Добави филтър
312 label_filter_add: Добави филтър
312 label_filter_plural: Филтри
313 label_filter_plural: Филтри
313 label_equals: е
314 label_equals: е
314 label_not_equals: не е
315 label_not_equals: не е
315 label_in_less_than: по-малко от
316 label_in_less_than: по-малко от
316 label_in_more_than: повече от
317 label_in_more_than: повече от
317 label_in: в следващите
318 label_in: в следващите
318 label_today: днес
319 label_today: днес
319 label_less_than_ago: преди по-малко от
320 label_less_than_ago: преди по-малко от
320 label_more_than_ago: преди повече от
321 label_more_than_ago: преди повече от
321 label_ago: преди дни
322 label_ago: преди дни
322 label_contains: съдържа
323 label_contains: съдържа
323 label_not_contains: не съдържа
324 label_not_contains: не съдържа
324 label_day_plural: дни
325 label_day_plural: дни
325 label_repository: Склад
326 label_repository: Склад
326 label_browse: Разглеждане
327 label_browse: Разглеждане
327 label_modification: %d промяна
328 label_modification: %d промяна
328 label_modification_plural: %d промени
329 label_modification_plural: %d промени
329 label_revision: Ревизия
330 label_revision: Ревизия
330 label_revision_plural: Ревизии
331 label_revision_plural: Ревизии
331 label_added: добавено
332 label_added: добавено
332 label_modified: променено
333 label_modified: променено
333 label_deleted: изтрито
334 label_deleted: изтрито
334 label_latest_revision: Последна ревизия
335 label_latest_revision: Последна ревизия
335 label_latest_revision_plural: Последни ревизии
336 label_latest_revision_plural: Последни ревизии
336 label_view_revisions: Виж ревизиите
337 label_view_revisions: Виж ревизиите
337 label_max_size: Максимална големина
338 label_max_size: Максимална големина
338 label_on: 'от'
339 label_on: 'от'
339 label_sort_highest: Премести най-горе
340 label_sort_highest: Премести най-горе
340 label_sort_higher: Премести по-горе
341 label_sort_higher: Премести по-горе
341 label_sort_lower: Премести по-долу
342 label_sort_lower: Премести по-долу
342 label_sort_lowest: Премести най-долу
343 label_sort_lowest: Премести най-долу
343 label_roadmap: Пътна карта
344 label_roadmap: Пътна карта
344 label_roadmap_due_in: Излиза след
345 label_roadmap_due_in: Излиза след
345 label_roadmap_overdue: %s late
346 label_roadmap_overdue: %s late
346 label_roadmap_no_issues: Няма задачи за тази версия
347 label_roadmap_no_issues: Няма задачи за тази версия
347 label_search: Търсене
348 label_search: Търсене
348 label_result: %d резултат
349 label_result: %d резултат
349 label_result_plural: %d резултати
350 label_result_plural: %d резултати
350 label_all_words: Всички думи
351 label_all_words: Всички думи
351 label_wiki: Wiki
352 label_wiki: Wiki
352 label_wiki_edit: Wiki редакция
353 label_wiki_edit: Wiki редакция
353 label_wiki_edit_plural: Wiki редакции
354 label_wiki_edit_plural: Wiki редакции
354 label_wiki_page: Wiki page
355 label_wiki_page: Wiki page
355 label_wiki_page_plural: Wiki pages
356 label_wiki_page_plural: Wiki pages
356 label_page_index: Индекс
357 label_page_index: Индекс
357 label_current_version: Текуща версия
358 label_current_version: Текуща версия
358 label_preview: Преглед
359 label_preview: Преглед
359 label_feed_plural: Feeds
360 label_feed_plural: Feeds
360 label_changes_details: Подробни промени
361 label_changes_details: Подробни промени
361 label_issue_tracking: Тракинг
362 label_issue_tracking: Тракинг
362 label_spent_time: Отделено време
363 label_spent_time: Отделено време
363 label_f_hour: %.2f час
364 label_f_hour: %.2f час
364 label_f_hour_plural: %.2f часа
365 label_f_hour_plural: %.2f часа
365 label_time_tracking: Отделяне на време
366 label_time_tracking: Отделяне на време
366 label_change_plural: Промени
367 label_change_plural: Промени
367 label_statistics: Статистики
368 label_statistics: Статистики
368 label_commits_per_month: Commits за месец
369 label_commits_per_month: Commits за месец
369 label_commits_per_author: Commits за автор
370 label_commits_per_author: Commits за автор
370 label_view_diff: Виж разликите
371 label_view_diff: Виж разликите
371 label_diff_inline: хоризонтално
372 label_diff_inline: хоризонтално
372 label_diff_side_by_side: вертикално
373 label_diff_side_by_side: вертикално
373 label_options: Опции
374 label_options: Опции
374 label_copy_workflow_from: Копирай workflow от
375 label_copy_workflow_from: Копирай workflow от
375 label_permissions_report: Справка за права
376 label_permissions_report: Справка за права
376 label_watched_issues: Наблюдавани задачи
377 label_watched_issues: Наблюдавани задачи
377 label_related_issues: Свързани задачи
378 label_related_issues: Свързани задачи
378 label_applied_status: Промени статуса на
379 label_applied_status: Промени статуса на
379 label_loading: Зареждане...
380 label_loading: Зареждане...
380 label_relation_new: New relation
381 label_relation_new: New relation
381 label_relation_delete: Delete relation
382 label_relation_delete: Delete relation
382 label_relates_to: related to
383 label_relates_to: related to
383 label_duplicates: duplicates
384 label_duplicates: duplicates
384 label_blocks: blocks
385 label_blocks: blocks
385 label_blocked_by: blocked by
386 label_blocked_by: blocked by
386 label_precedes: precedes
387 label_precedes: precedes
387 label_follows: follows
388 label_follows: follows
388 label_end_to_start: start to end
389 label_end_to_start: start to end
389 label_end_to_end: end to end
390 label_end_to_end: end to end
390 label_start_to_start: start to start
391 label_start_to_start: start to start
391 label_start_to_end: start to end
392 label_start_to_end: start to end
392 label_stay_logged_in: Stay logged in
393 label_stay_logged_in: Stay logged in
393 label_disabled: disabled
394 label_disabled: disabled
394 label_show_completed_versions: Show completed versions
395 label_show_completed_versions: Show completed versions
395 label_me: me
396 label_me: me
396 label_board: Forum
397 label_board: Forum
397 label_board_new: New forum
398 label_board_new: New forum
398 label_board_plural: Forums
399 label_board_plural: Forums
399 label_topic_plural: Topics
400 label_topic_plural: Topics
400 label_message_plural: Messages
401 label_message_plural: Messages
401 label_message_last: Last message
402 label_message_last: Last message
402 label_message_new: New message
403 label_message_new: New message
403 label_reply_plural: Replies
404 label_reply_plural: Replies
404 label_send_information: Send account information to the user
405 label_send_information: Send account information to the user
405 label_year: Year
406 label_year: Year
406 label_month: Month
407 label_month: Month
407 label_week: Week
408 label_week: Week
408 label_date_from: From
409 label_date_from: From
409 label_date_to: To
410 label_date_to: To
410 label_language_based: Language based
411 label_language_based: Language based
411 label_sort_by: Sort by "%s"
412 label_sort_by: Sort by "%s"
412 label_send_test_email: Send a test email
413 label_send_test_email: Send a test email
413
414
414 button_login: Вход
415 button_login: Вход
415 button_submit: Изпращане
416 button_submit: Изпращане
416 button_save: Запис
417 button_save: Запис
417 button_check_all: Маркирай всички
418 button_check_all: Маркирай всички
418 button_uncheck_all: Изчисти всички
419 button_uncheck_all: Изчисти всички
419 button_delete: Изтриване
420 button_delete: Изтриване
420 button_create: Създаване
421 button_create: Създаване
421 button_test: Тест
422 button_test: Тест
422 button_edit: Редакция
423 button_edit: Редакция
423 button_add: Добавяне
424 button_add: Добавяне
424 button_change: Промяна
425 button_change: Промяна
425 button_apply: Приложи
426 button_apply: Приложи
426 button_clear: Изчисти
427 button_clear: Изчисти
427 button_lock: Заключване
428 button_lock: Заключване
428 button_unlock: Отключване
429 button_unlock: Отключване
429 button_download: Download
430 button_download: Download
430 button_list: Списък
431 button_list: Списък
431 button_view: Преглед
432 button_view: Преглед
432 button_move: Преместване
433 button_move: Преместване
433 button_back: Назад
434 button_back: Назад
434 button_cancel: Отказ
435 button_cancel: Отказ
435 button_activate: Активация
436 button_activate: Активация
436 button_sort: Сортиране
437 button_sort: Сортиране
437 button_log_time: Отделяне на време
438 button_log_time: Отделяне на време
438 button_rollback: Върни се към тази ревизия
439 button_rollback: Върни се към тази ревизия
439 button_watch: Наблюдавай
440 button_watch: Наблюдавай
440 button_unwatch: Спри наблюдението
441 button_unwatch: Спри наблюдението
441 button_reply: Reply
442 button_reply: Reply
442 button_archive: Archive
443 button_archive: Archive
443 button_unarchive: Unarchive
444 button_unarchive: Unarchive
444
445
445 status_active: активен
446 status_active: активен
446 status_registered: регистриран
447 status_registered: регистриран
447 status_locked: заключен
448 status_locked: заключен
448
449
449 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
450 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
450 text_regexp_info: пр. ^[A-Z0-9]+$
451 text_regexp_info: пр. ^[A-Z0-9]+$
451 text_min_max_length_info: 0 - без ограничения
452 text_min_max_length_info: 0 - без ограничения
452 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
453 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
453 text_workflow_edit: Изберете роля и тракер за да редактирате workflow
454 text_workflow_edit: Изберете роля и тракер за да редактирате workflow
454 text_are_you_sure: Сигурни ли сте?
455 text_are_you_sure: Сигурни ли сте?
455 text_journal_changed: промяна от %s на %s
456 text_journal_changed: промяна от %s на %s
456 text_journal_set_to: установено на %s
457 text_journal_set_to: установено на %s
457 text_journal_deleted: изтрито
458 text_journal_deleted: изтрито
458 text_tip_task_begin_day: задача започваща този ден
459 text_tip_task_begin_day: задача започваща този ден
459 text_tip_task_end_day: задача завършваща този ден
460 text_tip_task_end_day: задача завършваща този ден
460 text_tip_task_begin_end_day: задача започваща и завършваща този ден
461 text_tip_task_begin_end_day: задача започваща и завършваща този ден
461 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
462 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
462 text_caracters_maximum: До %d символа.
463 text_caracters_maximum: До %d символа.
463 text_length_between: От %d до %d символа.
464 text_length_between: От %d до %d символа.
464 text_tracker_no_workflow: Няма дефиниран workflow за този тракер
465 text_tracker_no_workflow: Няма дефиниран workflow за този тракер
465 text_unallowed_characters: Непозволени символи
466 text_unallowed_characters: Непозволени символи
466 text_comma_separated: Позволено е изброяване (с разделител запетая).
467 text_comma_separated: Позволено е изброяване (с разделител запетая).
467 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
468 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
468
469
469 default_role_manager: Мениджър
470 default_role_manager: Мениджър
470 default_role_developper: Разработчик
471 default_role_developper: Разработчик
471 default_role_reporter: Публикуващ
472 default_role_reporter: Публикуващ
472 default_tracker_bug: Бъг
473 default_tracker_bug: Бъг
473 default_tracker_feature: Функционалност
474 default_tracker_feature: Функционалност
474 default_tracker_support: Поддръжка
475 default_tracker_support: Поддръжка
475 default_issue_status_new: Нова
476 default_issue_status_new: Нова
476 default_issue_status_assigned: Възложена
477 default_issue_status_assigned: Възложена
477 default_issue_status_resolved: Приключена
478 default_issue_status_resolved: Приключена
478 default_issue_status_feedback: Обратна връзка
479 default_issue_status_feedback: Обратна връзка
479 default_issue_status_closed: Затворена
480 default_issue_status_closed: Затворена
480 default_issue_status_rejected: Отхвърлена
481 default_issue_status_rejected: Отхвърлена
481 default_doc_category_user: Документация за потребителя
482 default_doc_category_user: Документация за потребителя
482 default_doc_category_tech: Техническа документация
483 default_doc_category_tech: Техническа документация
483 default_priority_low: Нисък
484 default_priority_low: Нисък
484 default_priority_normal: Нормален
485 default_priority_normal: Нормален
485 default_priority_high: Висок
486 default_priority_high: Висок
486 default_priority_urgent: Спешен
487 default_priority_urgent: Спешен
487 default_priority_immediate: Веднага
488 default_priority_immediate: Веднага
488 default_activity_design: Дизайн
489 default_activity_design: Дизайн
489 default_activity_development: Разработка
490 default_activity_development: Разработка
490
491
491 enumeration_issue_priorities: Приоритети на задачи
492 enumeration_issue_priorities: Приоритети на задачи
492 enumeration_doc_categories: Категории документи
493 enumeration_doc_categories: Категории документи
493 enumeration_activities: Дейности (time tracking)
494 enumeration_activities: Дейности (time tracking)
@@ -1,493 +1,494
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 Tag
8 actionview_datehelper_time_in_words_day: 1 Tag
9 actionview_datehelper_time_in_words_day_plural: %d Tage
9 actionview_datehelper_time_in_words_day_plural: %d Tage
10 actionview_datehelper_time_in_words_hour_about: ungefähr eine Stunde
10 actionview_datehelper_time_in_words_hour_about: ungefähr eine Stunde
11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
12 actionview_datehelper_time_in_words_hour_about_single: ungefähr eine Stunde
12 actionview_datehelper_time_in_words_hour_about_single: ungefähr eine Stunde
13 actionview_datehelper_time_in_words_minute: 1 Minute
13 actionview_datehelper_time_in_words_minute: 1 Minute
14 actionview_datehelper_time_in_words_minute_half: halbe Minute
14 actionview_datehelper_time_in_words_minute_half: halbe Minute
15 actionview_datehelper_time_in_words_minute_less_than: weniger als eine Minute
15 actionview_datehelper_time_in_words_minute_less_than: weniger als eine Minute
16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
17 actionview_datehelper_time_in_words_minute_single: 1 Minute
17 actionview_datehelper_time_in_words_minute_single: 1 Minute
18 actionview_datehelper_time_in_words_second_less_than: Weniger als eine Sekunde
18 actionview_datehelper_time_in_words_second_less_than: Weniger als eine Sekunde
19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
20 actionview_instancetag_blank_option: Bitte auswählen
20 actionview_instancetag_blank_option: Bitte auswählen
21
21
22 activerecord_error_inclusion: ist nicht inbegriffen
22 activerecord_error_inclusion: ist nicht inbegriffen
23 activerecord_error_exclusion: ist reserviert
23 activerecord_error_exclusion: ist reserviert
24 activerecord_error_invalid: ist unzulässig
24 activerecord_error_invalid: ist unzulässig
25 activerecord_error_confirmation: Bestätigung nötig
25 activerecord_error_confirmation: Bestätigung nötig
26 activerecord_error_accepted: muss angenommen werden
26 activerecord_error_accepted: muss angenommen werden
27 activerecord_error_empty: darf nicht leer sein
27 activerecord_error_empty: darf nicht leer sein
28 activerecord_error_blank: darf nicht leer sein
28 activerecord_error_blank: darf nicht leer sein
29 activerecord_error_too_long: ist zu lang
29 activerecord_error_too_long: ist zu lang
30 activerecord_error_too_short: ist zu kurz
30 activerecord_error_too_short: ist zu kurz
31 activerecord_error_wrong_length: hat die falsche Länge
31 activerecord_error_wrong_length: hat die falsche Länge
32 activerecord_error_taken: ist bereits vergeben
32 activerecord_error_taken: ist bereits vergeben
33 activerecord_error_not_a_number: ist keine Zahl
33 activerecord_error_not_a_number: ist keine Zahl
34 activerecord_error_not_a_date: ist kein gültiges Datum
34 activerecord_error_not_a_date: ist kein gültiges Datum
35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
36 activerecord_error_not_same_project: gehört nicht zum selben Projekt
36 activerecord_error_not_same_project: gehört nicht zum selben Projekt
37 activerecord_error_circular_dependency: diese Relation würde eine zyklische Abhängigkeit erzeugen
37 activerecord_error_circular_dependency: diese Relation würde eine zyklische Abhängigkeit erzeugen
38
38
39 general_fmt_age: %d Jahr
39 general_fmt_age: %d Jahr
40 general_fmt_age_plural: %d Jahre
40 general_fmt_age_plural: %d Jahre
41 general_fmt_date: %%d.%%m.%%y
41 general_fmt_date: %%d.%%m.%%y
42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Nein'
45 general_text_No: 'Nein'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nein'
47 general_text_no: 'nein'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Deutsch'
49 general_lang_name: 'Deutsch'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
53 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
54
54
55 notice_account_updated: Konto wurde erfolgreich aktualisiert.
55 notice_account_updated: Konto wurde erfolgreich aktualisiert.
56 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
56 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
57 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
57 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
58 notice_account_wrong_password: Falsches Kennwort
58 notice_account_wrong_password: Falsches Kennwort
59 notice_account_register_done: Konto wurde erfolgreich angelegt.
59 notice_account_register_done: Konto wurde erfolgreich angelegt.
60 notice_account_unknown_email: Unbekannter Benutzer.
60 notice_account_unknown_email: Unbekannter Benutzer.
61 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
61 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
62 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
62 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
63 notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen.
63 notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen.
64 notice_successful_create: Erfolgreich angelegt
64 notice_successful_create: Erfolgreich angelegt
65 notice_successful_update: Erfolgreiche Aktualisierung.
65 notice_successful_update: Erfolgreiche Aktualisierung.
66 notice_successful_delete: Erfolgreiche Löschung.
66 notice_successful_delete: Erfolgreiche Löschung.
67 notice_successful_connection: Verbindung erfolgreich.
67 notice_successful_connection: Verbindung erfolgreich.
68 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
68 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
69 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
69 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
70 notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv.
70 notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv.
71 notice_not_authorized: Sie sind nicht berechtigt auf diese Seite zuzugreifen.
71 notice_not_authorized: Sie sind nicht berechtigt auf diese Seite zuzugreifen.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)"
74
74
75 mail_subject_lost_password: Ihr redMine Kennwort
75 mail_subject_lost_password: Ihr redMine Kennwort
76 mail_subject_register: redMine Kontoaktivierung
76 mail_subject_register: redMine Kontoaktivierung
77
77
78 gui_validation_error: 1 Fehler
78 gui_validation_error: 1 Fehler
79 gui_validation_error_plural: %d Fehler
79 gui_validation_error_plural: %d Fehler
80
80
81 field_name: Name
81 field_name: Name
82 field_description: Beschreibung
82 field_description: Beschreibung
83 field_summary: Zusammenfassung
83 field_summary: Zusammenfassung
84 field_is_required: Erforderlich
84 field_is_required: Erforderlich
85 field_firstname: Vorname
85 field_firstname: Vorname
86 field_lastname: Nachname
86 field_lastname: Nachname
87 field_mail: Email
87 field_mail: Email
88 field_filename: Datei
88 field_filename: Datei
89 field_filesize: Größe
89 field_filesize: Größe
90 field_downloads: Downloads
90 field_downloads: Downloads
91 field_author: Autor
91 field_author: Autor
92 field_created_on: Angelegt
92 field_created_on: Angelegt
93 field_updated_on: Aktualisiert
93 field_updated_on: Aktualisiert
94 field_field_format: Format
94 field_field_format: Format
95 field_is_for_all: Für alle Projekte
95 field_is_for_all: Für alle Projekte
96 field_possible_values: Mögliche Werte
96 field_possible_values: Mögliche Werte
97 field_regexp: Regulärer Ausdruck
97 field_regexp: Regulärer Ausdruck
98 field_min_length: Minimale Länge
98 field_min_length: Minimale Länge
99 field_max_length: Maximale Länge
99 field_max_length: Maximale Länge
100 field_value: Wert
100 field_value: Wert
101 field_category: Kategorie
101 field_category: Kategorie
102 field_title: Titel
102 field_title: Titel
103 field_project: Projekt
103 field_project: Projekt
104 field_issue: Ticket
104 field_issue: Ticket
105 field_status: Status
105 field_status: Status
106 field_notes: Kommentare
106 field_notes: Kommentare
107 field_is_closed: Problem erledigt
107 field_is_closed: Problem erledigt
108 field_is_default: Default
108 field_is_default: Default
109 field_html_color: Farbe
109 field_html_color: Farbe
110 field_tracker: Tracker
110 field_tracker: Tracker
111 field_subject: Thema
111 field_subject: Thema
112 field_due_date: Abgabedatum
112 field_due_date: Abgabedatum
113 field_assigned_to: Zugewiesen an
113 field_assigned_to: Zugewiesen an
114 field_priority: Priorität
114 field_priority: Priorität
115 field_fixed_version: Erledigt in Version
115 field_fixed_version: Erledigt in Version
116 field_user: Benutzer
116 field_user: Benutzer
117 field_role: Rolle
117 field_role: Rolle
118 field_homepage: Startseite
118 field_homepage: Startseite
119 field_is_public: Öffentlich
119 field_is_public: Öffentlich
120 field_parent: Unterprojekt von
120 field_parent: Unterprojekt von
121 field_is_in_chlog: Ansicht im Change-Log
121 field_is_in_chlog: Ansicht im Change-Log
122 field_is_in_roadmap: Ansicht in der Roadmap
122 field_is_in_roadmap: Ansicht in der Roadmap
123 field_login: Mitgliedsname
123 field_login: Mitgliedsname
124 field_mail_notification: Mailbenachrichtigung
124 field_mail_notification: Mailbenachrichtigung
125 field_admin: Administrator
125 field_admin: Administrator
126 field_last_login_on: Letzte Anmeldung
126 field_last_login_on: Letzte Anmeldung
127 field_language: Sprache
127 field_language: Sprache
128 field_effective_date: Datum
128 field_effective_date: Datum
129 field_password: Kennwort
129 field_password: Kennwort
130 field_new_password: Neues Kennwort
130 field_new_password: Neues Kennwort
131 field_password_confirmation: Bestätigung
131 field_password_confirmation: Bestätigung
132 field_version: Version
132 field_version: Version
133 field_type: Typ
133 field_type: Typ
134 field_host: Host
134 field_host: Host
135 field_port: Port
135 field_port: Port
136 field_account: Konto
136 field_account: Konto
137 field_base_dn: Base DN
137 field_base_dn: Base DN
138 field_attr_login: Mitgliedsname-Attribut
138 field_attr_login: Mitgliedsname-Attribut
139 field_attr_firstname: Vorname-Attribut
139 field_attr_firstname: Vorname-Attribut
140 field_attr_lastname: Name-Attribut
140 field_attr_lastname: Name-Attribut
141 field_attr_mail: Email-Attribut
141 field_attr_mail: Email-Attribut
142 field_onthefly: On-the-fly-Benutzererstellung
142 field_onthefly: On-the-fly-Benutzererstellung
143 field_start_date: Beginn
143 field_start_date: Beginn
144 field_done_ratio: %% erledigt
144 field_done_ratio: %% erledigt
145 field_auth_source: Authentifizierungs-Modus
145 field_auth_source: Authentifizierungs-Modus
146 field_hide_mail: Email-Adresse nicht anzeigen
146 field_hide_mail: Email-Adresse nicht anzeigen
147 field_comments: Kommentar
147 field_comments: Kommentar
148 field_url: URL
148 field_url: URL
149 field_start_page: Hauptseite
149 field_start_page: Hauptseite
150 field_subproject: Subprojekt von
150 field_subproject: Subprojekt von
151 field_hours: Stunden
151 field_hours: Stunden
152 field_activity: Aktivität
152 field_activity: Aktivität
153 field_spent_on: Datum
153 field_spent_on: Datum
154 field_identifier: Identifier
154 field_identifier: Identifier
155 field_is_filter: Used as a filter
155 field_is_filter: Used as a filter
156 field_issue_to_id: Related issue
156 field_issue_to_id: Related issue
157 field_delay: Delay
157 field_delay: Delay
158 field_assignable: Issues can be assigned to this role
158
159
159 setting_app_title: Applikation Titel
160 setting_app_title: Applikation Titel
160 setting_app_subtitle: Applikation Untertitel
161 setting_app_subtitle: Applikation Untertitel
161 setting_welcome_text: Willkommenstext
162 setting_welcome_text: Willkommenstext
162 setting_default_language: Default Sprache
163 setting_default_language: Default Sprache
163 setting_login_required: Authent. erfordert
164 setting_login_required: Authent. erfordert
164 setting_self_registration: Anmeldung ermöglicht
165 setting_self_registration: Anmeldung ermöglicht
165 setting_attachment_max_size: max. Dateigröße
166 setting_attachment_max_size: max. Dateigröße
166 setting_issues_export_limit: Limit Export Tickets
167 setting_issues_export_limit: Limit Export Tickets
167 setting_mail_from: Mail Absender
168 setting_mail_from: Mail Absender
168 setting_host_name: Host Name
169 setting_host_name: Host Name
169 setting_text_formatting: Textformatierung
170 setting_text_formatting: Textformatierung
170 setting_wiki_compression: Wiki-Historie komprimieren
171 setting_wiki_compression: Wiki-Historie komprimieren
171 setting_feeds_limit: Limit Feed Inhalt
172 setting_feeds_limit: Limit Feed Inhalt
172 setting_autofetch_changesets: Autofetch commits
173 setting_autofetch_changesets: Autofetch commits
173 setting_sys_api_enabled: Enable WS for repository management
174 setting_sys_api_enabled: Enable WS for repository management
174 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_fix_keywords: Fixing keywords
176 setting_commit_fix_keywords: Fixing keywords
176 setting_autologin: Autologin
177 setting_autologin: Autologin
177 setting_date_format: Date format
178 setting_date_format: Date format
178 setting_cross_project_issue_relations: Allow cross-project issue relations
179 setting_cross_project_issue_relations: Allow cross-project issue relations
179
180
180 label_user: Benutzer
181 label_user: Benutzer
181 label_user_plural: Benutzer
182 label_user_plural: Benutzer
182 label_user_new: Neuer Benutzer
183 label_user_new: Neuer Benutzer
183 label_project: Projekt
184 label_project: Projekt
184 label_project_new: Neues Projekt
185 label_project_new: Neues Projekt
185 label_project_plural: Projekte
186 label_project_plural: Projekte
186 label_project_all: All Projects
187 label_project_all: All Projects
187 label_project_latest: Neueste Projekte
188 label_project_latest: Neueste Projekte
188 label_issue: Ticket
189 label_issue: Ticket
189 label_issue_new: Neues Ticket
190 label_issue_new: Neues Ticket
190 label_issue_plural: Tickets
191 label_issue_plural: Tickets
191 label_issue_view_all: Alle Tickets ansehen
192 label_issue_view_all: Alle Tickets ansehen
192 label_document: Dokument
193 label_document: Dokument
193 label_document_new: Neues Dokument
194 label_document_new: Neues Dokument
194 label_document_plural: Dokumente
195 label_document_plural: Dokumente
195 label_role: Rolle
196 label_role: Rolle
196 label_role_plural: Rollen
197 label_role_plural: Rollen
197 label_role_new: Neue Rolle
198 label_role_new: Neue Rolle
198 label_role_and_permissions: Rollen und Rechte
199 label_role_and_permissions: Rollen und Rechte
199 label_member: Mitglied
200 label_member: Mitglied
200 label_member_new: Neues Mitglied
201 label_member_new: Neues Mitglied
201 label_member_plural: Mitglieder
202 label_member_plural: Mitglieder
202 label_tracker: Tracker
203 label_tracker: Tracker
203 label_tracker_plural: Tracker
204 label_tracker_plural: Tracker
204 label_tracker_new: Neuer Tracker
205 label_tracker_new: Neuer Tracker
205 label_workflow: Workflow
206 label_workflow: Workflow
206 label_issue_status: Ticket-Status
207 label_issue_status: Ticket-Status
207 label_issue_status_plural: Ticket-Status
208 label_issue_status_plural: Ticket-Status
208 label_issue_status_new: Neuer Status
209 label_issue_status_new: Neuer Status
209 label_issue_category: Ticket-Kategorie
210 label_issue_category: Ticket-Kategorie
210 label_issue_category_plural: Ticket-Kategorien
211 label_issue_category_plural: Ticket-Kategorien
211 label_issue_category_new: Neue Kategorie
212 label_issue_category_new: Neue Kategorie
212 label_custom_field: Benutzerdefiniertes Feld
213 label_custom_field: Benutzerdefiniertes Feld
213 label_custom_field_plural: Benutzerdefinierte Felder
214 label_custom_field_plural: Benutzerdefinierte Felder
214 label_custom_field_new: Neues Feld
215 label_custom_field_new: Neues Feld
215 label_enumerations: Aufzählungen
216 label_enumerations: Aufzählungen
216 label_enumeration_new: Neuer Wert
217 label_enumeration_new: Neuer Wert
217 label_information: Information
218 label_information: Information
218 label_information_plural: Informationen
219 label_information_plural: Informationen
219 label_please_login: Anmelden
220 label_please_login: Anmelden
220 label_register: Anmelden
221 label_register: Anmelden
221 label_password_lost: Kennwort vergessen
222 label_password_lost: Kennwort vergessen
222 label_home: Hauptseite
223 label_home: Hauptseite
223 label_my_page: Meine Seite
224 label_my_page: Meine Seite
224 label_my_account: Mein Konto
225 label_my_account: Mein Konto
225 label_my_projects: Meine Projekte
226 label_my_projects: Meine Projekte
226 label_administration: Administration
227 label_administration: Administration
227 label_login: Einloggen
228 label_login: Einloggen
228 label_logout: Abmelden
229 label_logout: Abmelden
229 label_help: Hilfe
230 label_help: Hilfe
230 label_reported_issues: Gemeldete Tickets
231 label_reported_issues: Gemeldete Tickets
231 label_assigned_to_me_issues: Mir zugewiesen
232 label_assigned_to_me_issues: Mir zugewiesen
232 label_last_login: Letzte Anmeldung
233 label_last_login: Letzte Anmeldung
233 label_last_updates: zuletzt aktualisiert
234 label_last_updates: zuletzt aktualisiert
234 label_last_updates_plural: %d zuletzt aktualisierten
235 label_last_updates_plural: %d zuletzt aktualisierten
235 label_registered_on: Angemeldet am
236 label_registered_on: Angemeldet am
236 label_activity: Aktivität
237 label_activity: Aktivität
237 label_new: Neu
238 label_new: Neu
238 label_logged_as: Angemeldet als
239 label_logged_as: Angemeldet als
239 label_environment: Environment
240 label_environment: Environment
240 label_authentication: Authentifizierung
241 label_authentication: Authentifizierung
241 label_auth_source: Authentifizierungs-Modus
242 label_auth_source: Authentifizierungs-Modus
242 label_auth_source_new: Neuer Authentifizierungs-Modus
243 label_auth_source_new: Neuer Authentifizierungs-Modus
243 label_auth_source_plural: Authentifizierungs-Arten
244 label_auth_source_plural: Authentifizierungs-Arten
244 label_subproject_plural: Sub Projekte
245 label_subproject_plural: Sub Projekte
245 label_min_max_length: Min - Max Länge
246 label_min_max_length: Min - Max Länge
246 label_list: Liste
247 label_list: Liste
247 label_date: Datum
248 label_date: Datum
248 label_integer: Zahl
249 label_integer: Zahl
249 label_boolean: Boolean
250 label_boolean: Boolean
250 label_string: Text
251 label_string: Text
251 label_text: Langer Text
252 label_text: Langer Text
252 label_attribute: Attribut
253 label_attribute: Attribut
253 label_attribute_plural: Attribute
254 label_attribute_plural: Attribute
254 label_download: %d Download
255 label_download: %d Download
255 label_download_plural: %d Downloads
256 label_download_plural: %d Downloads
256 label_no_data: Nichts anzuzeigen
257 label_no_data: Nichts anzuzeigen
257 label_change_status: Statuswechsel
258 label_change_status: Statuswechsel
258 label_history: Historie
259 label_history: Historie
259 label_attachment: Datei
260 label_attachment: Datei
260 label_attachment_new: Neue Datei
261 label_attachment_new: Neue Datei
261 label_attachment_delete: Anhang löschen
262 label_attachment_delete: Anhang löschen
262 label_attachment_plural: Dateien
263 label_attachment_plural: Dateien
263 label_report: Bericht
264 label_report: Bericht
264 label_report_plural: Berichte
265 label_report_plural: Berichte
265 label_news: News
266 label_news: News
266 label_news_new: News hinzufügen
267 label_news_new: News hinzufügen
267 label_news_plural: News
268 label_news_plural: News
268 label_news_latest: Letzte News
269 label_news_latest: Letzte News
269 label_news_view_all: Alle News anzeigen
270 label_news_view_all: Alle News anzeigen
270 label_change_log: Change-Log
271 label_change_log: Change-Log
271 label_settings: Konfiguration
272 label_settings: Konfiguration
272 label_overview: Übersicht
273 label_overview: Übersicht
273 label_version: Version
274 label_version: Version
274 label_version_new: Neue Version
275 label_version_new: Neue Version
275 label_version_plural: Versionen
276 label_version_plural: Versionen
276 label_confirmation: Bestätigung
277 label_confirmation: Bestätigung
277 label_export_to: Export zu
278 label_export_to: Export zu
278 label_read: Lesen...
279 label_read: Lesen...
279 label_public_projects: Öffentliche Projekte
280 label_public_projects: Öffentliche Projekte
280 label_open_issues: offen
281 label_open_issues: offen
281 label_open_issues_plural: offen
282 label_open_issues_plural: offen
282 label_closed_issues: geschlossen
283 label_closed_issues: geschlossen
283 label_closed_issues_plural: geschlossen
284 label_closed_issues_plural: geschlossen
284 label_total: Gesamtzahl
285 label_total: Gesamtzahl
285 label_permissions: Berechtigungen
286 label_permissions: Berechtigungen
286 label_current_status: Gegenwärtiger Status
287 label_current_status: Gegenwärtiger Status
287 label_new_statuses_allowed: Neue Berechtigungen
288 label_new_statuses_allowed: Neue Berechtigungen
288 label_all: alle
289 label_all: alle
289 label_none: kein
290 label_none: kein
290 label_next: Weiter
291 label_next: Weiter
291 label_previous: Zurück
292 label_previous: Zurück
292 label_used_by: Benutzt von
293 label_used_by: Benutzt von
293 label_details: Details
294 label_details: Details
294 label_add_note: Kommentar hinzufügen
295 label_add_note: Kommentar hinzufügen
295 label_per_page: Pro Seite
296 label_per_page: Pro Seite
296 label_calendar: Kalender
297 label_calendar: Kalender
297 label_months_from: Monate ab
298 label_months_from: Monate ab
298 label_gantt: Gantt
299 label_gantt: Gantt
299 label_internal: Intern
300 label_internal: Intern
300 label_last_changes: %d letzte Änderungen
301 label_last_changes: %d letzte Änderungen
301 label_change_view_all: Alle Änderungen ansehen
302 label_change_view_all: Alle Änderungen ansehen
302 label_personalize_page: Diese Seite anpassen
303 label_personalize_page: Diese Seite anpassen
303 label_comment: Kommentar
304 label_comment: Kommentar
304 label_comment_plural: Kommentare
305 label_comment_plural: Kommentare
305 label_comment_add: Kommentar hinzufügen
306 label_comment_add: Kommentar hinzufügen
306 label_comment_added: Kommentar hinzugefügt
307 label_comment_added: Kommentar hinzugefügt
307 label_comment_delete: Kommentar löschen
308 label_comment_delete: Kommentar löschen
308 label_query: Benutzerdefinierte Abfrage
309 label_query: Benutzerdefinierte Abfrage
309 label_query_plural: Benutzerdefinierte Berichte
310 label_query_plural: Benutzerdefinierte Berichte
310 label_query_new: Neuer Bericht
311 label_query_new: Neuer Bericht
311 label_filter_add: Filter hinzufügen
312 label_filter_add: Filter hinzufügen
312 label_filter_plural: Filter
313 label_filter_plural: Filter
313 label_equals: ist
314 label_equals: ist
314 label_not_equals: ist nicht
315 label_not_equals: ist nicht
315 label_in_less_than: in weniger als
316 label_in_less_than: in weniger als
316 label_in_more_than: in mehr als
317 label_in_more_than: in mehr als
317 label_in: an
318 label_in: an
318 label_today: heute
319 label_today: heute
319 label_less_than_ago: vor weniger als
320 label_less_than_ago: vor weniger als
320 label_more_than_ago: vor mehr als
321 label_more_than_ago: vor mehr als
321 label_ago: vor
322 label_ago: vor
322 label_contains: enthält
323 label_contains: enthält
323 label_not_contains: enthält nicht
324 label_not_contains: enthält nicht
324 label_day_plural: Tage
325 label_day_plural: Tage
325 label_repository: Projektarchiv
326 label_repository: Projektarchiv
326 label_browse: Codebrowser
327 label_browse: Codebrowser
327 label_modification: %d Änderung
328 label_modification: %d Änderung
328 label_modification_plural: %d Änderungen
329 label_modification_plural: %d Änderungen
329 label_revision: Revision
330 label_revision: Revision
330 label_revision_plural: Revisionen
331 label_revision_plural: Revisionen
331 label_added: hinzugefügt
332 label_added: hinzugefügt
332 label_modified: geändert
333 label_modified: geändert
333 label_deleted: gelöscht
334 label_deleted: gelöscht
334 label_latest_revision: Aktuellste Revision
335 label_latest_revision: Aktuellste Revision
335 label_latest_revision_plural: Aktuellste Revisionen
336 label_latest_revision_plural: Aktuellste Revisionen
336 label_view_revisions: Revisionen anzeigen
337 label_view_revisions: Revisionen anzeigen
337 label_max_size: Maximale Größe
338 label_max_size: Maximale Größe
338 label_on: von
339 label_on: von
339 label_sort_highest: Anfang
340 label_sort_highest: Anfang
340 label_sort_higher: eins höher
341 label_sort_higher: eins höher
341 label_sort_lower: eins tiefer
342 label_sort_lower: eins tiefer
342 label_sort_lowest: Ende
343 label_sort_lowest: Ende
343 label_roadmap: Roadmap
344 label_roadmap: Roadmap
344 label_roadmap_due_in: Fällig in
345 label_roadmap_due_in: Fällig in
345 label_roadmap_overdue: %s late
346 label_roadmap_overdue: %s late
346 label_roadmap_no_issues: Keine Tickets für diese Version
347 label_roadmap_no_issues: Keine Tickets für diese Version
347 label_search: Suche
348 label_search: Suche
348 label_result: %d Resultat
349 label_result: %d Resultat
349 label_result_plural: %d Resultate
350 label_result_plural: %d Resultate
350 label_all_words: Alle Wörter
351 label_all_words: Alle Wörter
351 label_wiki: Wiki
352 label_wiki: Wiki
352 label_wiki_edit: Wiki Bearbeitung
353 label_wiki_edit: Wiki Bearbeitung
353 label_wiki_edit_plural: Wiki Bearbeitungen
354 label_wiki_edit_plural: Wiki Bearbeitungen
354 label_wiki_page: Wiki page
355 label_wiki_page: Wiki page
355 label_wiki_page_plural: Wiki pages
356 label_wiki_page_plural: Wiki pages
356 label_page_index: Index
357 label_page_index: Index
357 label_current_version: Gegenwärtige Version
358 label_current_version: Gegenwärtige Version
358 label_preview: Vorschau
359 label_preview: Vorschau
359 label_feed_plural: Feeds
360 label_feed_plural: Feeds
360 label_changes_details: Details aller Änderungen
361 label_changes_details: Details aller Änderungen
361 label_issue_tracking: Tickets
362 label_issue_tracking: Tickets
362 label_spent_time: Aufgewendete Zeit
363 label_spent_time: Aufgewendete Zeit
363 label_f_hour: %.2f Stunde
364 label_f_hour: %.2f Stunde
364 label_f_hour_plural: %.2f Stunden
365 label_f_hour_plural: %.2f Stunden
365 label_time_tracking: Zeiterfassung
366 label_time_tracking: Zeiterfassung
366 label_change_plural: Änderungen
367 label_change_plural: Änderungen
367 label_statistics: Statistiken
368 label_statistics: Statistiken
368 label_commits_per_month: Übertragungen pro Monat
369 label_commits_per_month: Übertragungen pro Monat
369 label_commits_per_author: Übertragungen pro Autor
370 label_commits_per_author: Übertragungen pro Autor
370 label_view_diff: View differences
371 label_view_diff: View differences
371 label_diff_inline: inline
372 label_diff_inline: inline
372 label_diff_side_by_side: side by side
373 label_diff_side_by_side: side by side
373 label_options: Options
374 label_options: Options
374 label_copy_workflow_from: Copy workflow from
375 label_copy_workflow_from: Copy workflow from
375 label_permissions_report: Permissions report
376 label_permissions_report: Permissions report
376 label_watched_issues: Watched issues
377 label_watched_issues: Watched issues
377 label_related_issues: Related issues
378 label_related_issues: Related issues
378 label_applied_status: Applied status
379 label_applied_status: Applied status
379 label_loading: Loading...
380 label_loading: Loading...
380 label_relation_new: New relation
381 label_relation_new: New relation
381 label_relation_delete: Delete relation
382 label_relation_delete: Delete relation
382 label_relates_to: related to
383 label_relates_to: related to
383 label_duplicates: duplicates
384 label_duplicates: duplicates
384 label_blocks: blocks
385 label_blocks: blocks
385 label_blocked_by: blocked by
386 label_blocked_by: blocked by
386 label_precedes: precedes
387 label_precedes: precedes
387 label_follows: follows
388 label_follows: follows
388 label_end_to_start: start to end
389 label_end_to_start: start to end
389 label_end_to_end: end to end
390 label_end_to_end: end to end
390 label_start_to_start: start to start
391 label_start_to_start: start to start
391 label_start_to_end: start to end
392 label_start_to_end: start to end
392 label_stay_logged_in: Stay logged in
393 label_stay_logged_in: Stay logged in
393 label_disabled: disabled
394 label_disabled: disabled
394 label_show_completed_versions: Show completed versions
395 label_show_completed_versions: Show completed versions
395 label_me: me
396 label_me: me
396 label_board: Forum
397 label_board: Forum
397 label_board_new: Neues Forum
398 label_board_new: Neues Forum
398 label_board_plural: Foren
399 label_board_plural: Foren
399 label_topic_plural: Themen
400 label_topic_plural: Themen
400 label_message_plural: Nachrichten
401 label_message_plural: Nachrichten
401 label_message_last: Letzte Nachricht
402 label_message_last: Letzte Nachricht
402 label_message_new: Neue Nachricht
403 label_message_new: Neue Nachricht
403 label_reply_plural: Antworten
404 label_reply_plural: Antworten
404 label_send_information: Sende Kontoinformationen zum Benutzer
405 label_send_information: Sende Kontoinformationen zum Benutzer
405 label_year: Jahr
406 label_year: Jahr
406 label_month: Monat
407 label_month: Monat
407 label_week: Woche
408 label_week: Woche
408 label_date_from: Von
409 label_date_from: Von
409 label_date_to: Bis
410 label_date_to: Bis
410 label_language_based: Language based
411 label_language_based: Language based
411 label_sort_by: Sort by "%s"
412 label_sort_by: Sort by "%s"
412 label_send_test_email: Send a test email
413 label_send_test_email: Send a test email
413
414
414 button_login: Einloggen
415 button_login: Einloggen
415 button_submit: OK
416 button_submit: OK
416 button_save: Speichern
417 button_save: Speichern
417 button_check_all: Alles auswählen
418 button_check_all: Alles auswählen
418 button_uncheck_all: Alles abwählen
419 button_uncheck_all: Alles abwählen
419 button_delete: Löschen
420 button_delete: Löschen
420 button_create: Anlegen
421 button_create: Anlegen
421 button_test: Testen
422 button_test: Testen
422 button_edit: Bearbeiten
423 button_edit: Bearbeiten
423 button_add: Hinzufügen
424 button_add: Hinzufügen
424 button_change: Wechseln
425 button_change: Wechseln
425 button_apply: Anwenden
426 button_apply: Anwenden
426 button_clear: Zurücksetzen
427 button_clear: Zurücksetzen
427 button_lock: Sperren
428 button_lock: Sperren
428 button_unlock: Entsperren
429 button_unlock: Entsperren
429 button_download: Download
430 button_download: Download
430 button_list: Liste
431 button_list: Liste
431 button_view: Siehe
432 button_view: Siehe
432 button_move: Verschieben
433 button_move: Verschieben
433 button_back: Zurück
434 button_back: Zurück
434 button_cancel: Abbrechen
435 button_cancel: Abbrechen
435 button_activate: Aktivieren
436 button_activate: Aktivieren
436 button_sort: Sortieren
437 button_sort: Sortieren
437 button_log_time: Log time
438 button_log_time: Log time
438 button_rollback: Rollback to this version
439 button_rollback: Rollback to this version
439 button_watch: Watch
440 button_watch: Watch
440 button_unwatch: Unwatch
441 button_unwatch: Unwatch
441 button_reply: Reply
442 button_reply: Reply
442 button_archive: Archive
443 button_archive: Archive
443 button_unarchive: Unarchive
444 button_unarchive: Unarchive
444
445
445 status_active: aktiv
446 status_active: aktiv
446 status_registered: angemeldet
447 status_registered: angemeldet
447 status_locked: gesperrt
448 status_locked: gesperrt
448
449
449 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
450 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
450 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_min_max_length_info: 0 heißt keine Beschränkung
452 text_min_max_length_info: 0 heißt keine Beschränkung
452 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
453 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
453 text_workflow_edit: Workflow zum Bearbeiten auswählen
454 text_workflow_edit: Workflow zum Bearbeiten auswählen
454 text_are_you_sure: Sind Sie sicher?
455 text_are_you_sure: Sind Sie sicher?
455 text_journal_changed: geändert von %s zu %s
456 text_journal_changed: geändert von %s zu %s
456 text_journal_set_to: gestellt zu %s
457 text_journal_set_to: gestellt zu %s
457 text_journal_deleted: gelöscht
458 text_journal_deleted: gelöscht
458 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
459 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
459 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
460 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
460 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
461 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
461 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
462 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
462 text_caracters_maximum: %d characters maximum.
463 text_caracters_maximum: %d characters maximum.
463 text_length_between: Length between %d and %d characters.
464 text_length_between: Length between %d and %d characters.
464 text_tracker_no_workflow: No workflow defined for this tracker
465 text_tracker_no_workflow: No workflow defined for this tracker
465 text_unallowed_characters: Unallowed characters
466 text_unallowed_characters: Unallowed characters
466 text_comma_separated: Multiple values allowed (comma separated).
467 text_comma_separated: Multiple values allowed (comma separated).
467 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468
469
469 default_role_manager: Manager
470 default_role_manager: Manager
470 default_role_developper: Developer
471 default_role_developper: Developer
471 default_role_reporter: Reporter
472 default_role_reporter: Reporter
472 default_tracker_bug: Fehler
473 default_tracker_bug: Fehler
473 default_tracker_feature: Feature
474 default_tracker_feature: Feature
474 default_tracker_support: Support
475 default_tracker_support: Support
475 default_issue_status_new: Neu
476 default_issue_status_new: Neu
476 default_issue_status_assigned: Zugewiesen
477 default_issue_status_assigned: Zugewiesen
477 default_issue_status_resolved: Gelöst
478 default_issue_status_resolved: Gelöst
478 default_issue_status_feedback: Feedback
479 default_issue_status_feedback: Feedback
479 default_issue_status_closed: Erledigt
480 default_issue_status_closed: Erledigt
480 default_issue_status_rejected: Abgewiesen
481 default_issue_status_rejected: Abgewiesen
481 default_doc_category_user: Benutzerdokumentation
482 default_doc_category_user: Benutzerdokumentation
482 default_doc_category_tech: Technische Dokumentation
483 default_doc_category_tech: Technische Dokumentation
483 default_priority_low: Niedrig
484 default_priority_low: Niedrig
484 default_priority_normal: Normal
485 default_priority_normal: Normal
485 default_priority_high: Hoch
486 default_priority_high: Hoch
486 default_priority_urgent: Dringend
487 default_priority_urgent: Dringend
487 default_priority_immediate: Sofort
488 default_priority_immediate: Sofort
488 default_activity_design: Design
489 default_activity_design: Design
489 default_activity_development: Development
490 default_activity_development: Development
490
491
491 enumeration_issue_priorities: Ticket-Prioritäten
492 enumeration_issue_priorities: Ticket-Prioritäten
492 enumeration_doc_categories: Dokumentenkategorien
493 enumeration_doc_categories: Dokumentenkategorien
493 enumeration_activities: Aktivitäten (Zeiterfassung)
494 enumeration_activities: Aktivitäten (Zeiterfassung)
@@ -1,493 +1,494
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: less than a second
18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 actionview_instancetag_blank_option: Please select
20 actionview_instancetag_blank_option: Please select
21
21
22 activerecord_error_inclusion: is not included in the list
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: is too long
29 activerecord_error_too_long: is too long
30 activerecord_error_too_short: is too short
30 activerecord_error_too_short: is too short
31 activerecord_error_wrong_length: is the wrong length
31 activerecord_error_wrong_length: is the wrong length
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: is not a number
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: is not a valid date
34 activerecord_error_not_a_date: is not a valid date
35 activerecord_error_greater_than_start_date: must be greater than start date
35 activerecord_error_greater_than_start_date: must be greater than start date
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Yes'
46 general_text_Yes: 'Yes'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'yes'
48 general_text_yes: 'yes'
49 general_lang_name: 'English'
49 general_lang_name: 'English'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
53 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
54
54
55 notice_account_updated: Account was successfully updated.
55 notice_account_updated: Account was successfully updated.
56 notice_account_invalid_creditentials: Invalid user or password
56 notice_account_invalid_creditentials: Invalid user or password
57 notice_account_password_updated: Password was successfully updated.
57 notice_account_password_updated: Password was successfully updated.
58 notice_account_wrong_password: Wrong password
58 notice_account_wrong_password: Wrong password
59 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
59 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
60 notice_account_unknown_email: Unknown user.
60 notice_account_unknown_email: Unknown user.
61 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
61 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
62 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 notice_account_activated: Your account has been activated. You can now log in.
63 notice_account_activated: Your account has been activated. You can now log in.
64 notice_successful_create: Successful creation.
64 notice_successful_create: Successful creation.
65 notice_successful_update: Successful update.
65 notice_successful_update: Successful update.
66 notice_successful_delete: Successful deletion.
66 notice_successful_delete: Successful deletion.
67 notice_successful_connection: Successful connection.
67 notice_successful_connection: Successful connection.
68 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
68 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
69 notice_locking_conflict: Data have been updated by another user.
69 notice_locking_conflict: Data have been updated by another user.
70 notice_scm_error: Entry and/or revision doesn't exist in the repository.
70 notice_scm_error: Entry and/or revision doesn't exist in the repository.
71 notice_not_authorized: You are not authorized to access this page.
71 notice_not_authorized: You are not authorized to access this page.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)"
74
74
75 mail_subject_lost_password: Your redMine password
75 mail_subject_lost_password: Your redMine password
76 mail_subject_register: redMine account activation
76 mail_subject_register: redMine account activation
77
77
78 gui_validation_error: 1 error
78 gui_validation_error: 1 error
79 gui_validation_error_plural: %d errors
79 gui_validation_error_plural: %d errors
80
80
81 field_name: Name
81 field_name: Name
82 field_description: Description
82 field_description: Description
83 field_summary: Summary
83 field_summary: Summary
84 field_is_required: Required
84 field_is_required: Required
85 field_firstname: Firstname
85 field_firstname: Firstname
86 field_lastname: Lastname
86 field_lastname: Lastname
87 field_mail: Email
87 field_mail: Email
88 field_filename: File
88 field_filename: File
89 field_filesize: Size
89 field_filesize: Size
90 field_downloads: Downloads
90 field_downloads: Downloads
91 field_author: Author
91 field_author: Author
92 field_created_on: Created
92 field_created_on: Created
93 field_updated_on: Updated
93 field_updated_on: Updated
94 field_field_format: Format
94 field_field_format: Format
95 field_is_for_all: For all projects
95 field_is_for_all: For all projects
96 field_possible_values: Possible values
96 field_possible_values: Possible values
97 field_regexp: Regular expression
97 field_regexp: Regular expression
98 field_min_length: Minimum length
98 field_min_length: Minimum length
99 field_max_length: Maximum length
99 field_max_length: Maximum length
100 field_value: Value
100 field_value: Value
101 field_category: Category
101 field_category: Category
102 field_title: Title
102 field_title: Title
103 field_project: Project
103 field_project: Project
104 field_issue: Issue
104 field_issue: Issue
105 field_status: Status
105 field_status: Status
106 field_notes: Notes
106 field_notes: Notes
107 field_is_closed: Issue closed
107 field_is_closed: Issue closed
108 field_is_default: Default status
108 field_is_default: Default status
109 field_html_color: Color
109 field_html_color: Color
110 field_tracker: Tracker
110 field_tracker: Tracker
111 field_subject: Subject
111 field_subject: Subject
112 field_due_date: Due date
112 field_due_date: Due date
113 field_assigned_to: Assigned to
113 field_assigned_to: Assigned to
114 field_priority: Priority
114 field_priority: Priority
115 field_fixed_version: Fixed version
115 field_fixed_version: Fixed version
116 field_user: User
116 field_user: User
117 field_role: Role
117 field_role: Role
118 field_homepage: Homepage
118 field_homepage: Homepage
119 field_is_public: Public
119 field_is_public: Public
120 field_parent: Subproject of
120 field_parent: Subproject of
121 field_is_in_chlog: Issues displayed in changelog
121 field_is_in_chlog: Issues displayed in changelog
122 field_is_in_roadmap: Issues displayed in roadmap
122 field_is_in_roadmap: Issues displayed in roadmap
123 field_login: Login
123 field_login: Login
124 field_mail_notification: Mail notifications
124 field_mail_notification: Mail notifications
125 field_admin: Administrator
125 field_admin: Administrator
126 field_last_login_on: Last connection
126 field_last_login_on: Last connection
127 field_language: Language
127 field_language: Language
128 field_effective_date: Date
128 field_effective_date: Date
129 field_password: Password
129 field_password: Password
130 field_new_password: New password
130 field_new_password: New password
131 field_password_confirmation: Confirmation
131 field_password_confirmation: Confirmation
132 field_version: Version
132 field_version: Version
133 field_type: Type
133 field_type: Type
134 field_host: Host
134 field_host: Host
135 field_port: Port
135 field_port: Port
136 field_account: Account
136 field_account: Account
137 field_base_dn: Base DN
137 field_base_dn: Base DN
138 field_attr_login: Login attribute
138 field_attr_login: Login attribute
139 field_attr_firstname: Firstname attribute
139 field_attr_firstname: Firstname attribute
140 field_attr_lastname: Lastname attribute
140 field_attr_lastname: Lastname attribute
141 field_attr_mail: Email attribute
141 field_attr_mail: Email attribute
142 field_onthefly: On-the-fly user creation
142 field_onthefly: On-the-fly user creation
143 field_start_date: Start
143 field_start_date: Start
144 field_done_ratio: %% Done
144 field_done_ratio: %% Done
145 field_auth_source: Authentication mode
145 field_auth_source: Authentication mode
146 field_hide_mail: Hide my email address
146 field_hide_mail: Hide my email address
147 field_comments: Comment
147 field_comments: Comment
148 field_url: URL
148 field_url: URL
149 field_start_page: Start page
149 field_start_page: Start page
150 field_subproject: Subproject
150 field_subproject: Subproject
151 field_hours: Hours
151 field_hours: Hours
152 field_activity: Activity
152 field_activity: Activity
153 field_spent_on: Date
153 field_spent_on: Date
154 field_identifier: Identifier
154 field_identifier: Identifier
155 field_is_filter: Used as a filter
155 field_is_filter: Used as a filter
156 field_issue_to_id: Related issue
156 field_issue_to_id: Related issue
157 field_delay: Delay
157 field_delay: Delay
158 field_assignable: Issues can be assigned to this role
158
159
159 setting_app_title: Application title
160 setting_app_title: Application title
160 setting_app_subtitle: Application subtitle
161 setting_app_subtitle: Application subtitle
161 setting_welcome_text: Welcome text
162 setting_welcome_text: Welcome text
162 setting_default_language: Default language
163 setting_default_language: Default language
163 setting_login_required: Authent. required
164 setting_login_required: Authent. required
164 setting_self_registration: Self-registration enabled
165 setting_self_registration: Self-registration enabled
165 setting_attachment_max_size: Attachment max. size
166 setting_attachment_max_size: Attachment max. size
166 setting_issues_export_limit: Issues export limit
167 setting_issues_export_limit: Issues export limit
167 setting_mail_from: Emission mail address
168 setting_mail_from: Emission mail address
168 setting_host_name: Host name
169 setting_host_name: Host name
169 setting_text_formatting: Text formatting
170 setting_text_formatting: Text formatting
170 setting_wiki_compression: Wiki history compression
171 setting_wiki_compression: Wiki history compression
171 setting_feeds_limit: Feed content limit
172 setting_feeds_limit: Feed content limit
172 setting_autofetch_changesets: Autofetch commits
173 setting_autofetch_changesets: Autofetch commits
173 setting_sys_api_enabled: Enable WS for repository management
174 setting_sys_api_enabled: Enable WS for repository management
174 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_fix_keywords: Fixing keywords
176 setting_commit_fix_keywords: Fixing keywords
176 setting_autologin: Autologin
177 setting_autologin: Autologin
177 setting_date_format: Date format
178 setting_date_format: Date format
178 setting_cross_project_issue_relations: Allow cross-project issue relations
179 setting_cross_project_issue_relations: Allow cross-project issue relations
179
180
180 label_user: User
181 label_user: User
181 label_user_plural: Users
182 label_user_plural: Users
182 label_user_new: New user
183 label_user_new: New user
183 label_project: Project
184 label_project: Project
184 label_project_new: New project
185 label_project_new: New project
185 label_project_plural: Projects
186 label_project_plural: Projects
186 label_project_all: All Projects
187 label_project_all: All Projects
187 label_project_latest: Latest projects
188 label_project_latest: Latest projects
188 label_issue: Issue
189 label_issue: Issue
189 label_issue_new: New issue
190 label_issue_new: New issue
190 label_issue_plural: Issues
191 label_issue_plural: Issues
191 label_issue_view_all: View all issues
192 label_issue_view_all: View all issues
192 label_document: Document
193 label_document: Document
193 label_document_new: New document
194 label_document_new: New document
194 label_document_plural: Documents
195 label_document_plural: Documents
195 label_role: Role
196 label_role: Role
196 label_role_plural: Roles
197 label_role_plural: Roles
197 label_role_new: New role
198 label_role_new: New role
198 label_role_and_permissions: Roles and permissions
199 label_role_and_permissions: Roles and permissions
199 label_member: Member
200 label_member: Member
200 label_member_new: New member
201 label_member_new: New member
201 label_member_plural: Members
202 label_member_plural: Members
202 label_tracker: Tracker
203 label_tracker: Tracker
203 label_tracker_plural: Trackers
204 label_tracker_plural: Trackers
204 label_tracker_new: New tracker
205 label_tracker_new: New tracker
205 label_workflow: Workflow
206 label_workflow: Workflow
206 label_issue_status: Issue status
207 label_issue_status: Issue status
207 label_issue_status_plural: Issue statuses
208 label_issue_status_plural: Issue statuses
208 label_issue_status_new: New status
209 label_issue_status_new: New status
209 label_issue_category: Issue category
210 label_issue_category: Issue category
210 label_issue_category_plural: Issue categories
211 label_issue_category_plural: Issue categories
211 label_issue_category_new: New category
212 label_issue_category_new: New category
212 label_custom_field: Custom field
213 label_custom_field: Custom field
213 label_custom_field_plural: Custom fields
214 label_custom_field_plural: Custom fields
214 label_custom_field_new: New custom field
215 label_custom_field_new: New custom field
215 label_enumerations: Enumerations
216 label_enumerations: Enumerations
216 label_enumeration_new: New value
217 label_enumeration_new: New value
217 label_information: Information
218 label_information: Information
218 label_information_plural: Information
219 label_information_plural: Information
219 label_please_login: Please login
220 label_please_login: Please login
220 label_register: Register
221 label_register: Register
221 label_password_lost: Lost password
222 label_password_lost: Lost password
222 label_home: Home
223 label_home: Home
223 label_my_page: My page
224 label_my_page: My page
224 label_my_account: My account
225 label_my_account: My account
225 label_my_projects: My projects
226 label_my_projects: My projects
226 label_administration: Administration
227 label_administration: Administration
227 label_login: Login
228 label_login: Login
228 label_logout: Logout
229 label_logout: Logout
229 label_help: Help
230 label_help: Help
230 label_reported_issues: Reported issues
231 label_reported_issues: Reported issues
231 label_assigned_to_me_issues: Issues assigned to me
232 label_assigned_to_me_issues: Issues assigned to me
232 label_last_login: Last connection
233 label_last_login: Last connection
233 label_last_updates: Last updated
234 label_last_updates: Last updated
234 label_last_updates_plural: %d last updated
235 label_last_updates_plural: %d last updated
235 label_registered_on: Registered on
236 label_registered_on: Registered on
236 label_activity: Activity
237 label_activity: Activity
237 label_new: New
238 label_new: New
238 label_logged_as: Logged as
239 label_logged_as: Logged as
239 label_environment: Environment
240 label_environment: Environment
240 label_authentication: Authentication
241 label_authentication: Authentication
241 label_auth_source: Authentication mode
242 label_auth_source: Authentication mode
242 label_auth_source_new: New authentication mode
243 label_auth_source_new: New authentication mode
243 label_auth_source_plural: Authentication modes
244 label_auth_source_plural: Authentication modes
244 label_subproject_plural: Subprojects
245 label_subproject_plural: Subprojects
245 label_min_max_length: Min - Max length
246 label_min_max_length: Min - Max length
246 label_list: List
247 label_list: List
247 label_date: Date
248 label_date: Date
248 label_integer: Integer
249 label_integer: Integer
249 label_boolean: Boolean
250 label_boolean: Boolean
250 label_string: Text
251 label_string: Text
251 label_text: Long text
252 label_text: Long text
252 label_attribute: Attribute
253 label_attribute: Attribute
253 label_attribute_plural: Attributes
254 label_attribute_plural: Attributes
254 label_download: %d Download
255 label_download: %d Download
255 label_download_plural: %d Downloads
256 label_download_plural: %d Downloads
256 label_no_data: No data to display
257 label_no_data: No data to display
257 label_change_status: Change status
258 label_change_status: Change status
258 label_history: History
259 label_history: History
259 label_attachment: File
260 label_attachment: File
260 label_attachment_new: New file
261 label_attachment_new: New file
261 label_attachment_delete: Delete file
262 label_attachment_delete: Delete file
262 label_attachment_plural: Files
263 label_attachment_plural: Files
263 label_report: Report
264 label_report: Report
264 label_report_plural: Reports
265 label_report_plural: Reports
265 label_news: News
266 label_news: News
266 label_news_new: Add news
267 label_news_new: Add news
267 label_news_plural: News
268 label_news_plural: News
268 label_news_latest: Latest news
269 label_news_latest: Latest news
269 label_news_view_all: View all news
270 label_news_view_all: View all news
270 label_change_log: Change log
271 label_change_log: Change log
271 label_settings: Settings
272 label_settings: Settings
272 label_overview: Overview
273 label_overview: Overview
273 label_version: Version
274 label_version: Version
274 label_version_new: New version
275 label_version_new: New version
275 label_version_plural: Versions
276 label_version_plural: Versions
276 label_confirmation: Confirmation
277 label_confirmation: Confirmation
277 label_export_to: Export to
278 label_export_to: Export to
278 label_read: Read...
279 label_read: Read...
279 label_public_projects: Public projects
280 label_public_projects: Public projects
280 label_open_issues: open
281 label_open_issues: open
281 label_open_issues_plural: open
282 label_open_issues_plural: open
282 label_closed_issues: closed
283 label_closed_issues: closed
283 label_closed_issues_plural: closed
284 label_closed_issues_plural: closed
284 label_total: Total
285 label_total: Total
285 label_permissions: Permissions
286 label_permissions: Permissions
286 label_current_status: Current status
287 label_current_status: Current status
287 label_new_statuses_allowed: New statuses allowed
288 label_new_statuses_allowed: New statuses allowed
288 label_all: all
289 label_all: all
289 label_none: none
290 label_none: none
290 label_next: Next
291 label_next: Next
291 label_previous: Previous
292 label_previous: Previous
292 label_used_by: Used by
293 label_used_by: Used by
293 label_details: Details
294 label_details: Details
294 label_add_note: Add a note
295 label_add_note: Add a note
295 label_per_page: Per page
296 label_per_page: Per page
296 label_calendar: Calendar
297 label_calendar: Calendar
297 label_months_from: months from
298 label_months_from: months from
298 label_gantt: Gantt
299 label_gantt: Gantt
299 label_internal: Internal
300 label_internal: Internal
300 label_last_changes: last %d changes
301 label_last_changes: last %d changes
301 label_change_view_all: View all changes
302 label_change_view_all: View all changes
302 label_personalize_page: Personalize this page
303 label_personalize_page: Personalize this page
303 label_comment: Comment
304 label_comment: Comment
304 label_comment_plural: Comments
305 label_comment_plural: Comments
305 label_comment_add: Add a comment
306 label_comment_add: Add a comment
306 label_comment_added: Comment added
307 label_comment_added: Comment added
307 label_comment_delete: Delete comments
308 label_comment_delete: Delete comments
308 label_query: Custom query
309 label_query: Custom query
309 label_query_plural: Custom queries
310 label_query_plural: Custom queries
310 label_query_new: New query
311 label_query_new: New query
311 label_filter_add: Add filter
312 label_filter_add: Add filter
312 label_filter_plural: Filters
313 label_filter_plural: Filters
313 label_equals: is
314 label_equals: is
314 label_not_equals: is not
315 label_not_equals: is not
315 label_in_less_than: in less than
316 label_in_less_than: in less than
316 label_in_more_than: in more than
317 label_in_more_than: in more than
317 label_in: in
318 label_in: in
318 label_today: today
319 label_today: today
319 label_less_than_ago: less than days ago
320 label_less_than_ago: less than days ago
320 label_more_than_ago: more than days ago
321 label_more_than_ago: more than days ago
321 label_ago: days ago
322 label_ago: days ago
322 label_contains: contains
323 label_contains: contains
323 label_not_contains: doesn't contain
324 label_not_contains: doesn't contain
324 label_day_plural: days
325 label_day_plural: days
325 label_repository: Repository
326 label_repository: Repository
326 label_browse: Browse
327 label_browse: Browse
327 label_modification: %d change
328 label_modification: %d change
328 label_modification_plural: %d changes
329 label_modification_plural: %d changes
329 label_revision: Revision
330 label_revision: Revision
330 label_revision_plural: Revisions
331 label_revision_plural: Revisions
331 label_added: added
332 label_added: added
332 label_modified: modified
333 label_modified: modified
333 label_deleted: deleted
334 label_deleted: deleted
334 label_latest_revision: Latest revision
335 label_latest_revision: Latest revision
335 label_latest_revision_plural: Latest revisions
336 label_latest_revision_plural: Latest revisions
336 label_view_revisions: View revisions
337 label_view_revisions: View revisions
337 label_max_size: Maximum size
338 label_max_size: Maximum size
338 label_on: 'on'
339 label_on: 'on'
339 label_sort_highest: Move to top
340 label_sort_highest: Move to top
340 label_sort_higher: Move up
341 label_sort_higher: Move up
341 label_sort_lower: Move down
342 label_sort_lower: Move down
342 label_sort_lowest: Move to bottom
343 label_sort_lowest: Move to bottom
343 label_roadmap: Roadmap
344 label_roadmap: Roadmap
344 label_roadmap_due_in: Due in
345 label_roadmap_due_in: Due in
345 label_roadmap_overdue: %s late
346 label_roadmap_overdue: %s late
346 label_roadmap_no_issues: No issues for this version
347 label_roadmap_no_issues: No issues for this version
347 label_search: Search
348 label_search: Search
348 label_result: %d result
349 label_result: %d result
349 label_result_plural: %d results
350 label_result_plural: %d results
350 label_all_words: All words
351 label_all_words: All words
351 label_wiki: Wiki
352 label_wiki: Wiki
352 label_wiki_edit: Wiki edit
353 label_wiki_edit: Wiki edit
353 label_wiki_edit_plural: Wiki edits
354 label_wiki_edit_plural: Wiki edits
354 label_wiki_page: Wiki page
355 label_wiki_page: Wiki page
355 label_wiki_page_plural: Wiki pages
356 label_wiki_page_plural: Wiki pages
356 label_page_index: Index
357 label_page_index: Index
357 label_current_version: Current version
358 label_current_version: Current version
358 label_preview: Preview
359 label_preview: Preview
359 label_feed_plural: Feeds
360 label_feed_plural: Feeds
360 label_changes_details: Details of all changes
361 label_changes_details: Details of all changes
361 label_issue_tracking: Issue tracking
362 label_issue_tracking: Issue tracking
362 label_spent_time: Spent time
363 label_spent_time: Spent time
363 label_f_hour: %.2f hour
364 label_f_hour: %.2f hour
364 label_f_hour_plural: %.2f hours
365 label_f_hour_plural: %.2f hours
365 label_time_tracking: Time tracking
366 label_time_tracking: Time tracking
366 label_change_plural: Changes
367 label_change_plural: Changes
367 label_statistics: Statistics
368 label_statistics: Statistics
368 label_commits_per_month: Commits per month
369 label_commits_per_month: Commits per month
369 label_commits_per_author: Commits per author
370 label_commits_per_author: Commits per author
370 label_view_diff: View differences
371 label_view_diff: View differences
371 label_diff_inline: inline
372 label_diff_inline: inline
372 label_diff_side_by_side: side by side
373 label_diff_side_by_side: side by side
373 label_options: Options
374 label_options: Options
374 label_copy_workflow_from: Copy workflow from
375 label_copy_workflow_from: Copy workflow from
375 label_permissions_report: Permissions report
376 label_permissions_report: Permissions report
376 label_watched_issues: Watched issues
377 label_watched_issues: Watched issues
377 label_related_issues: Related issues
378 label_related_issues: Related issues
378 label_applied_status: Applied status
379 label_applied_status: Applied status
379 label_loading: Loading...
380 label_loading: Loading...
380 label_relation_new: New relation
381 label_relation_new: New relation
381 label_relation_delete: Delete relation
382 label_relation_delete: Delete relation
382 label_relates_to: related to
383 label_relates_to: related to
383 label_duplicates: duplicates
384 label_duplicates: duplicates
384 label_blocks: blocks
385 label_blocks: blocks
385 label_blocked_by: blocked by
386 label_blocked_by: blocked by
386 label_precedes: precedes
387 label_precedes: precedes
387 label_follows: follows
388 label_follows: follows
388 label_end_to_start: start to end
389 label_end_to_start: start to end
389 label_end_to_end: end to end
390 label_end_to_end: end to end
390 label_start_to_start: start to start
391 label_start_to_start: start to start
391 label_start_to_end: start to end
392 label_start_to_end: start to end
392 label_stay_logged_in: Stay logged in
393 label_stay_logged_in: Stay logged in
393 label_disabled: disabled
394 label_disabled: disabled
394 label_show_completed_versions: Show completed versions
395 label_show_completed_versions: Show completed versions
395 label_me: me
396 label_me: me
396 label_board: Forum
397 label_board: Forum
397 label_board_new: New forum
398 label_board_new: New forum
398 label_board_plural: Forums
399 label_board_plural: Forums
399 label_topic_plural: Topics
400 label_topic_plural: Topics
400 label_message_plural: Messages
401 label_message_plural: Messages
401 label_message_last: Last message
402 label_message_last: Last message
402 label_message_new: New message
403 label_message_new: New message
403 label_reply_plural: Replies
404 label_reply_plural: Replies
404 label_send_information: Send account information to the user
405 label_send_information: Send account information to the user
405 label_year: Year
406 label_year: Year
406 label_month: Month
407 label_month: Month
407 label_week: Week
408 label_week: Week
408 label_date_from: From
409 label_date_from: From
409 label_date_to: To
410 label_date_to: To
410 label_language_based: Language based
411 label_language_based: Language based
411 label_sort_by: Sort by "%s"
412 label_sort_by: Sort by "%s"
412 label_send_test_email: Send a test email
413 label_send_test_email: Send a test email
413
414
414 button_login: Login
415 button_login: Login
415 button_submit: Submit
416 button_submit: Submit
416 button_save: Save
417 button_save: Save
417 button_check_all: Check all
418 button_check_all: Check all
418 button_uncheck_all: Uncheck all
419 button_uncheck_all: Uncheck all
419 button_delete: Delete
420 button_delete: Delete
420 button_create: Create
421 button_create: Create
421 button_test: Test
422 button_test: Test
422 button_edit: Edit
423 button_edit: Edit
423 button_add: Add
424 button_add: Add
424 button_change: Change
425 button_change: Change
425 button_apply: Apply
426 button_apply: Apply
426 button_clear: Clear
427 button_clear: Clear
427 button_lock: Lock
428 button_lock: Lock
428 button_unlock: Unlock
429 button_unlock: Unlock
429 button_download: Download
430 button_download: Download
430 button_list: List
431 button_list: List
431 button_view: View
432 button_view: View
432 button_move: Move
433 button_move: Move
433 button_back: Back
434 button_back: Back
434 button_cancel: Cancel
435 button_cancel: Cancel
435 button_activate: Activate
436 button_activate: Activate
436 button_sort: Sort
437 button_sort: Sort
437 button_log_time: Log time
438 button_log_time: Log time
438 button_rollback: Rollback to this version
439 button_rollback: Rollback to this version
439 button_watch: Watch
440 button_watch: Watch
440 button_unwatch: Unwatch
441 button_unwatch: Unwatch
441 button_reply: Reply
442 button_reply: Reply
442 button_archive: Archive
443 button_archive: Archive
443 button_unarchive: Unarchive
444 button_unarchive: Unarchive
444
445
445 status_active: active
446 status_active: active
446 status_registered: registered
447 status_registered: registered
447 status_locked: locked
448 status_locked: locked
448
449
449 text_select_mail_notifications: Select actions for which mail notifications should be sent.
450 text_select_mail_notifications: Select actions for which mail notifications should be sent.
450 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_min_max_length_info: 0 means no restriction
452 text_min_max_length_info: 0 means no restriction
452 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
453 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
453 text_workflow_edit: Select a role and a tracker to edit the workflow
454 text_workflow_edit: Select a role and a tracker to edit the workflow
454 text_are_you_sure: Are you sure ?
455 text_are_you_sure: Are you sure ?
455 text_journal_changed: changed from %s to %s
456 text_journal_changed: changed from %s to %s
456 text_journal_set_to: set to %s
457 text_journal_set_to: set to %s
457 text_journal_deleted: deleted
458 text_journal_deleted: deleted
458 text_tip_task_begin_day: task beginning this day
459 text_tip_task_begin_day: task beginning this day
459 text_tip_task_end_day: task ending this day
460 text_tip_task_end_day: task ending this day
460 text_tip_task_begin_end_day: task beginning and ending this day
461 text_tip_task_begin_end_day: task beginning and ending this day
461 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
462 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
462 text_caracters_maximum: %d characters maximum.
463 text_caracters_maximum: %d characters maximum.
463 text_length_between: Length between %d and %d characters.
464 text_length_between: Length between %d and %d characters.
464 text_tracker_no_workflow: No workflow defined for this tracker
465 text_tracker_no_workflow: No workflow defined for this tracker
465 text_unallowed_characters: Unallowed characters
466 text_unallowed_characters: Unallowed characters
466 text_comma_separated: Multiple values allowed (comma separated).
467 text_comma_separated: Multiple values allowed (comma separated).
467 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468
469
469 default_role_manager: Manager
470 default_role_manager: Manager
470 default_role_developper: Developer
471 default_role_developper: Developer
471 default_role_reporter: Reporter
472 default_role_reporter: Reporter
472 default_tracker_bug: Bug
473 default_tracker_bug: Bug
473 default_tracker_feature: Feature
474 default_tracker_feature: Feature
474 default_tracker_support: Support
475 default_tracker_support: Support
475 default_issue_status_new: New
476 default_issue_status_new: New
476 default_issue_status_assigned: Assigned
477 default_issue_status_assigned: Assigned
477 default_issue_status_resolved: Resolved
478 default_issue_status_resolved: Resolved
478 default_issue_status_feedback: Feedback
479 default_issue_status_feedback: Feedback
479 default_issue_status_closed: Closed
480 default_issue_status_closed: Closed
480 default_issue_status_rejected: Rejected
481 default_issue_status_rejected: Rejected
481 default_doc_category_user: User documentation
482 default_doc_category_user: User documentation
482 default_doc_category_tech: Technical documentation
483 default_doc_category_tech: Technical documentation
483 default_priority_low: Low
484 default_priority_low: Low
484 default_priority_normal: Normal
485 default_priority_normal: Normal
485 default_priority_high: High
486 default_priority_high: High
486 default_priority_urgent: Urgent
487 default_priority_urgent: Urgent
487 default_priority_immediate: Immediate
488 default_priority_immediate: Immediate
488 default_activity_design: Design
489 default_activity_design: Design
489 default_activity_development: Development
490 default_activity_development: Development
490
491
491 enumeration_issue_priorities: Issue priorities
492 enumeration_issue_priorities: Issue priorities
492 enumeration_doc_categories: Document categories
493 enumeration_doc_categories: Document categories
493 enumeration_activities: Activities (time tracking)
494 enumeration_activities: Activities (time tracking)
@@ -1,493 +1,494
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: less than a second
18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 actionview_instancetag_blank_option: Please select
20 actionview_instancetag_blank_option: Please select
21
21
22 activerecord_error_inclusion: is not included in the list
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: is too long
29 activerecord_error_too_long: is too long
30 activerecord_error_too_short: is too short
30 activerecord_error_too_short: is too short
31 activerecord_error_wrong_length: is the wrong length
31 activerecord_error_wrong_length: is the wrong length
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: is not a number
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: no es una fecha válida
34 activerecord_error_not_a_date: no es una fecha válida
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d año
39 general_fmt_age: %d año
40 general_fmt_age_plural: %d años
40 general_fmt_age_plural: %d años
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Sí'
46 general_text_Yes: 'Sí'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'sí'
48 general_text_yes: 'sí'
49 general_lang_name: 'Español'
49 general_lang_name: 'Español'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
54
54
55 notice_account_updated: Account was successfully updated.
55 notice_account_updated: Account was successfully updated.
56 notice_account_invalid_creditentials: Invalid user or password
56 notice_account_invalid_creditentials: Invalid user or password
57 notice_account_password_updated: Password was successfully updated.
57 notice_account_password_updated: Password was successfully updated.
58 notice_account_wrong_password: Wrong password
58 notice_account_wrong_password: Wrong password
59 notice_account_register_done: Account was successfully created.
59 notice_account_register_done: Account was successfully created.
60 notice_account_unknown_email: Unknown user.
60 notice_account_unknown_email: Unknown user.
61 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
61 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
62 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 notice_account_activated: Your account has been activated. You can now log in.
63 notice_account_activated: Your account has been activated. You can now log in.
64 notice_successful_create: Successful creation.
64 notice_successful_create: Successful creation.
65 notice_successful_update: Successful update.
65 notice_successful_update: Successful update.
66 notice_successful_delete: Successful deletion.
66 notice_successful_delete: Successful deletion.
67 notice_successful_connection: Successful connection.
67 notice_successful_connection: Successful connection.
68 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
68 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
69 notice_locking_conflict: Data have been updated by another user.
69 notice_locking_conflict: Data have been updated by another user.
70 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
70 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
71 notice_not_authorized: You are not authorized to access this page.
71 notice_not_authorized: You are not authorized to access this page.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)"
74
74
75 mail_subject_lost_password: Tu contraseña del redMine
75 mail_subject_lost_password: Tu contraseña del redMine
76 mail_subject_register: Activación de la cuenta del redMine
76 mail_subject_register: Activación de la cuenta del redMine
77
77
78 gui_validation_error: 1 error
78 gui_validation_error: 1 error
79 gui_validation_error_plural: %d errores
79 gui_validation_error_plural: %d errores
80
80
81 field_name: Nombre
81 field_name: Nombre
82 field_description: Descripción
82 field_description: Descripción
83 field_summary: Resumen
83 field_summary: Resumen
84 field_is_required: Obligatorio
84 field_is_required: Obligatorio
85 field_firstname: Nombre
85 field_firstname: Nombre
86 field_lastname: Apellido
86 field_lastname: Apellido
87 field_mail: Email
87 field_mail: Email
88 field_filename: Fichero
88 field_filename: Fichero
89 field_filesize: Tamaño
89 field_filesize: Tamaño
90 field_downloads: Telecargas
90 field_downloads: Telecargas
91 field_author: Autor
91 field_author: Autor
92 field_created_on: Creado
92 field_created_on: Creado
93 field_updated_on: Actualizado
93 field_updated_on: Actualizado
94 field_field_format: Formato
94 field_field_format: Formato
95 field_is_for_all: Para todos los proyectos
95 field_is_for_all: Para todos los proyectos
96 field_possible_values: Valores posibles
96 field_possible_values: Valores posibles
97 field_regexp: Expresión regular
97 field_regexp: Expresión regular
98 field_min_length: Longitud mínima
98 field_min_length: Longitud mínima
99 field_max_length: Longitud máxima
99 field_max_length: Longitud máxima
100 field_value: Valor
100 field_value: Valor
101 field_category: Categoría
101 field_category: Categoría
102 field_title: Título
102 field_title: Título
103 field_project: Proyecto
103 field_project: Proyecto
104 field_issue: Petición
104 field_issue: Petición
105 field_status: Estatuto
105 field_status: Estatuto
106 field_notes: Notas
106 field_notes: Notas
107 field_is_closed: Petición resuelta
107 field_is_closed: Petición resuelta
108 field_is_default: Estatuto por defecto
108 field_is_default: Estatuto por defecto
109 field_html_color: Color
109 field_html_color: Color
110 field_tracker: Tracker
110 field_tracker: Tracker
111 field_subject: Tema
111 field_subject: Tema
112 field_due_date: Fecha debida
112 field_due_date: Fecha debida
113 field_assigned_to: Asignado a
113 field_assigned_to: Asignado a
114 field_priority: Prioridad
114 field_priority: Prioridad
115 field_fixed_version: Versión corregida
115 field_fixed_version: Versión corregida
116 field_user: Usuario
116 field_user: Usuario
117 field_role: Papel
117 field_role: Papel
118 field_homepage: Sitio web
118 field_homepage: Sitio web
119 field_is_public: Público
119 field_is_public: Público
120 field_parent: Proyecto secundario de
120 field_parent: Proyecto secundario de
121 field_is_in_chlog: Consultar las peticiones en el histórico
121 field_is_in_chlog: Consultar las peticiones en el histórico
122 field_is_in_roadmap: Consultar las peticiones en el roadmap
122 field_is_in_roadmap: Consultar las peticiones en el roadmap
123 field_login: Identificador
123 field_login: Identificador
124 field_mail_notification: Notificación por mail
124 field_mail_notification: Notificación por mail
125 field_admin: Administrador
125 field_admin: Administrador
126 field_last_login_on: Última conexión
126 field_last_login_on: Última conexión
127 field_language: Lengua
127 field_language: Lengua
128 field_effective_date: Fecha
128 field_effective_date: Fecha
129 field_password: Contraseña
129 field_password: Contraseña
130 field_new_password: Nueva contraseña
130 field_new_password: Nueva contraseña
131 field_password_confirmation: Confirmación
131 field_password_confirmation: Confirmación
132 field_version: Versión
132 field_version: Versión
133 field_type: Tipo
133 field_type: Tipo
134 field_host: Anfitrión
134 field_host: Anfitrión
135 field_port: Puerto
135 field_port: Puerto
136 field_account: Cuenta
136 field_account: Cuenta
137 field_base_dn: Base DN
137 field_base_dn: Base DN
138 field_attr_login: Cualidad del identificador
138 field_attr_login: Cualidad del identificador
139 field_attr_firstname: Cualidad del nombre
139 field_attr_firstname: Cualidad del nombre
140 field_attr_lastname: Cualidad del apellido
140 field_attr_lastname: Cualidad del apellido
141 field_attr_mail: Cualidad del Email
141 field_attr_mail: Cualidad del Email
142 field_onthefly: Creación del usuario On-the-fly
142 field_onthefly: Creación del usuario On-the-fly
143 field_start_date: Comienzo
143 field_start_date: Comienzo
144 field_done_ratio: %% Realizado
144 field_done_ratio: %% Realizado
145 field_auth_source: Modo de la autentificación
145 field_auth_source: Modo de la autentificación
146 field_hide_mail: Ocultar mi email address
146 field_hide_mail: Ocultar mi email address
147 field_comments: Comentario
147 field_comments: Comentario
148 field_url: URL
148 field_url: URL
149 field_start_page: Página principal
149 field_start_page: Página principal
150 field_subproject: Proyecto secundario
150 field_subproject: Proyecto secundario
151 field_hours: Hours
151 field_hours: Hours
152 field_activity: Activity
152 field_activity: Activity
153 field_spent_on: Fecha
153 field_spent_on: Fecha
154 field_identifier: Identifier
154 field_identifier: Identifier
155 field_is_filter: Used as a filter
155 field_is_filter: Used as a filter
156 field_issue_to_id: Related issue
156 field_issue_to_id: Related issue
157 field_delay: Delay
157 field_delay: Delay
158 field_assignable: Issues can be assigned to this role
158
159
159 setting_app_title: Título del aplicación
160 setting_app_title: Título del aplicación
160 setting_app_subtitle: Subtítulo del aplicación
161 setting_app_subtitle: Subtítulo del aplicación
161 setting_welcome_text: Texto acogida
162 setting_welcome_text: Texto acogida
162 setting_default_language: Lengua del defecto
163 setting_default_language: Lengua del defecto
163 setting_login_required: Autentif. requerida
164 setting_login_required: Autentif. requerida
164 setting_self_registration: Registro permitido
165 setting_self_registration: Registro permitido
165 setting_attachment_max_size: Tamaño máximo del fichero
166 setting_attachment_max_size: Tamaño máximo del fichero
166 setting_issues_export_limit: Issues export limit
167 setting_issues_export_limit: Issues export limit
167 setting_mail_from: Email de la emisión
168 setting_mail_from: Email de la emisión
168 setting_host_name: Nombre de anfitrión
169 setting_host_name: Nombre de anfitrión
169 setting_text_formatting: Formato de texto
170 setting_text_formatting: Formato de texto
170 setting_wiki_compression: Compresión de la historia de Wiki
171 setting_wiki_compression: Compresión de la historia de Wiki
171 setting_feeds_limit: Feed content limit
172 setting_feeds_limit: Feed content limit
172 setting_autofetch_changesets: Autofetch commits
173 setting_autofetch_changesets: Autofetch commits
173 setting_sys_api_enabled: Enable WS for repository management
174 setting_sys_api_enabled: Enable WS for repository management
174 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_fix_keywords: Fixing keywords
176 setting_commit_fix_keywords: Fixing keywords
176 setting_autologin: Autologin
177 setting_autologin: Autologin
177 setting_date_format: Date format
178 setting_date_format: Date format
178 setting_cross_project_issue_relations: Allow cross-project issue relations
179 setting_cross_project_issue_relations: Allow cross-project issue relations
179
180
180 label_user: Usuario
181 label_user: Usuario
181 label_user_plural: Usuarios
182 label_user_plural: Usuarios
182 label_user_new: Nuevo usuario
183 label_user_new: Nuevo usuario
183 label_project: Proyecto
184 label_project: Proyecto
184 label_project_new: Nuevo proyecto
185 label_project_new: Nuevo proyecto
185 label_project_plural: Proyectos
186 label_project_plural: Proyectos
186 label_project_all: All Projects
187 label_project_all: All Projects
187 label_project_latest: Los proyectos más últimos
188 label_project_latest: Los proyectos más últimos
188 label_issue: Petición
189 label_issue: Petición
189 label_issue_new: Nueva petición
190 label_issue_new: Nueva petición
190 label_issue_plural: Peticiones
191 label_issue_plural: Peticiones
191 label_issue_view_all: Ver todas las peticiones
192 label_issue_view_all: Ver todas las peticiones
192 label_document: Documento
193 label_document: Documento
193 label_document_new: Nuevo documento
194 label_document_new: Nuevo documento
194 label_document_plural: Documentos
195 label_document_plural: Documentos
195 label_role: Papel
196 label_role: Papel
196 label_role_plural: Papeles
197 label_role_plural: Papeles
197 label_role_new: Nuevo papel
198 label_role_new: Nuevo papel
198 label_role_and_permissions: Papeles y permisos
199 label_role_and_permissions: Papeles y permisos
199 label_member: Miembro
200 label_member: Miembro
200 label_member_new: Nuevo miembro
201 label_member_new: Nuevo miembro
201 label_member_plural: Miembros
202 label_member_plural: Miembros
202 label_tracker: Tracker
203 label_tracker: Tracker
203 label_tracker_plural: Trackers
204 label_tracker_plural: Trackers
204 label_tracker_new: Nuevo tracker
205 label_tracker_new: Nuevo tracker
205 label_workflow: Workflow
206 label_workflow: Workflow
206 label_issue_status: Estatuto de petición
207 label_issue_status: Estatuto de petición
207 label_issue_status_plural: Estatutos de las peticiones
208 label_issue_status_plural: Estatutos de las peticiones
208 label_issue_status_new: Nuevo estatuto
209 label_issue_status_new: Nuevo estatuto
209 label_issue_category: Categoría de las peticiones
210 label_issue_category: Categoría de las peticiones
210 label_issue_category_plural: Categorías de las peticiones
211 label_issue_category_plural: Categorías de las peticiones
211 label_issue_category_new: Nueva categoría
212 label_issue_category_new: Nueva categoría
212 label_custom_field: Campo personalizado
213 label_custom_field: Campo personalizado
213 label_custom_field_plural: Campos personalizados
214 label_custom_field_plural: Campos personalizados
214 label_custom_field_new: Nuevo campo personalizado
215 label_custom_field_new: Nuevo campo personalizado
215 label_enumerations: Listas de valores
216 label_enumerations: Listas de valores
216 label_enumeration_new: Nuevo valor
217 label_enumeration_new: Nuevo valor
217 label_information: Informacion
218 label_information: Informacion
218 label_information_plural: Informaciones
219 label_information_plural: Informaciones
219 label_please_login: Conexión
220 label_please_login: Conexión
220 label_register: Registrar
221 label_register: Registrar
221 label_password_lost: ¿Olvidaste la contraseña?
222 label_password_lost: ¿Olvidaste la contraseña?
222 label_home: Acogida
223 label_home: Acogida
223 label_my_page: Mi página
224 label_my_page: Mi página
224 label_my_account: Mi cuenta
225 label_my_account: Mi cuenta
225 label_my_projects: Mis proyectos
226 label_my_projects: Mis proyectos
226 label_administration: Administración
227 label_administration: Administración
227 label_login: Conexión
228 label_login: Conexión
228 label_logout: Desconexión
229 label_logout: Desconexión
229 label_help: Ayuda
230 label_help: Ayuda
230 label_reported_issues: Peticiones registradas
231 label_reported_issues: Peticiones registradas
231 label_assigned_to_me_issues: Peticiones que me están asignadas
232 label_assigned_to_me_issues: Peticiones que me están asignadas
232 label_last_login: Última conexión
233 label_last_login: Última conexión
233 label_last_updates: Actualizado
234 label_last_updates: Actualizado
234 label_last_updates_plural: %d Actualizados
235 label_last_updates_plural: %d Actualizados
235 label_registered_on: Inscrito el
236 label_registered_on: Inscrito el
236 label_activity: Actividad
237 label_activity: Actividad
237 label_new: Nuevo
238 label_new: Nuevo
238 label_logged_as: Conectado como
239 label_logged_as: Conectado como
239 label_environment: Environment
240 label_environment: Environment
240 label_authentication: Autentificación
241 label_authentication: Autentificación
241 label_auth_source: Modo de la autentificación
242 label_auth_source: Modo de la autentificación
242 label_auth_source_new: Nuevo modo de la autentificación
243 label_auth_source_new: Nuevo modo de la autentificación
243 label_auth_source_plural: Modos de la autentificación
244 label_auth_source_plural: Modos de la autentificación
244 label_subproject_plural: Proyectos secundarios
245 label_subproject_plural: Proyectos secundarios
245 label_min_max_length: Longitud mín - máx
246 label_min_max_length: Longitud mín - máx
246 label_list: Lista
247 label_list: Lista
247 label_date: Fecha
248 label_date: Fecha
248 label_integer: Número
249 label_integer: Número
249 label_boolean: Boleano
250 label_boolean: Boleano
250 label_string: Texto
251 label_string: Texto
251 label_text: Texto largo
252 label_text: Texto largo
252 label_attribute: Cualidad
253 label_attribute: Cualidad
253 label_attribute_plural: Cualidades
254 label_attribute_plural: Cualidades
254 label_download: %d Telecarga
255 label_download: %d Telecarga
255 label_download_plural: %d Telecargas
256 label_download_plural: %d Telecargas
256 label_no_data: Ningunos datos a exhibir
257 label_no_data: Ningunos datos a exhibir
257 label_change_status: Cambiar el estatuto
258 label_change_status: Cambiar el estatuto
258 label_history: Histórico
259 label_history: Histórico
259 label_attachment: Fichero
260 label_attachment: Fichero
260 label_attachment_new: Nuevo fichero
261 label_attachment_new: Nuevo fichero
261 label_attachment_delete: Suprimir el fichero
262 label_attachment_delete: Suprimir el fichero
262 label_attachment_plural: Ficheros
263 label_attachment_plural: Ficheros
263 label_report: Informe
264 label_report: Informe
264 label_report_plural: Informes
265 label_report_plural: Informes
265 label_news: Noticia
266 label_news: Noticia
266 label_news_new: Nueva noticia
267 label_news_new: Nueva noticia
267 label_news_plural: Noticias
268 label_news_plural: Noticias
268 label_news_latest: Últimas noticias
269 label_news_latest: Últimas noticias
269 label_news_view_all: Ver todas las noticias
270 label_news_view_all: Ver todas las noticias
270 label_change_log: Cambios
271 label_change_log: Cambios
271 label_settings: Configuración
272 label_settings: Configuración
272 label_overview: Vistazo
273 label_overview: Vistazo
273 label_version: Versión
274 label_version: Versión
274 label_version_new: Nueva versión
275 label_version_new: Nueva versión
275 label_version_plural: Versiónes
276 label_version_plural: Versiónes
276 label_confirmation: Confirmación
277 label_confirmation: Confirmación
277 label_export_to: Exportar a
278 label_export_to: Exportar a
278 label_read: Leer...
279 label_read: Leer...
279 label_public_projects: Proyectos publicos
280 label_public_projects: Proyectos publicos
280 label_open_issues: abierta
281 label_open_issues: abierta
281 label_open_issues_plural: abiertas
282 label_open_issues_plural: abiertas
282 label_closed_issues: cerrada
283 label_closed_issues: cerrada
283 label_closed_issues_plural: cerradas
284 label_closed_issues_plural: cerradas
284 label_total: Total
285 label_total: Total
285 label_permissions: Permisos
286 label_permissions: Permisos
286 label_current_status: Estado actual
287 label_current_status: Estado actual
287 label_new_statuses_allowed: Nuevos estatutos autorizados
288 label_new_statuses_allowed: Nuevos estatutos autorizados
288 label_all: todos
289 label_all: todos
289 label_none: ninguno
290 label_none: ninguno
290 label_next: Próximo
291 label_next: Próximo
291 label_previous: Precedente
292 label_previous: Precedente
292 label_used_by: Utilizado por
293 label_used_by: Utilizado por
293 label_details: Detalles
294 label_details: Detalles
294 label_add_note: Agregar una nota
295 label_add_note: Agregar una nota
295 label_per_page: Por la página
296 label_per_page: Por la página
296 label_calendar: Calendario
297 label_calendar: Calendario
297 label_months_from: meses de
298 label_months_from: meses de
298 label_gantt: Gantt
299 label_gantt: Gantt
299 label_internal: Interno
300 label_internal: Interno
300 label_last_changes: %d cambios del último
301 label_last_changes: %d cambios del último
301 label_change_view_all: Ver todos los cambios
302 label_change_view_all: Ver todos los cambios
302 label_personalize_page: Personalizar esta página
303 label_personalize_page: Personalizar esta página
303 label_comment: Comentario
304 label_comment: Comentario
304 label_comment_plural: Comentarios
305 label_comment_plural: Comentarios
305 label_comment_add: Agregar un comentario
306 label_comment_add: Agregar un comentario
306 label_comment_added: Comentario agregó
307 label_comment_added: Comentario agregó
307 label_comment_delete: Suprimir comentarios
308 label_comment_delete: Suprimir comentarios
308 label_query: Pregunta personalizada
309 label_query: Pregunta personalizada
309 label_query_plural: Preguntas personalizadas
310 label_query_plural: Preguntas personalizadas
310 label_query_new: Nueva preguntas
311 label_query_new: Nueva preguntas
311 label_filter_add: Agregar el filtro
312 label_filter_add: Agregar el filtro
312 label_filter_plural: Filtros
313 label_filter_plural: Filtros
313 label_equals: igual
314 label_equals: igual
314 label_not_equals: no igual
315 label_not_equals: no igual
315 label_in_less_than: en menos que
316 label_in_less_than: en menos que
316 label_in_more_than: en más que
317 label_in_more_than: en más que
317 label_in: en
318 label_in: en
318 label_today: hoy
319 label_today: hoy
319 label_less_than_ago: hace menos de
320 label_less_than_ago: hace menos de
320 label_more_than_ago: hace más de
321 label_more_than_ago: hace más de
321 label_ago: hace
322 label_ago: hace
322 label_contains: contiene
323 label_contains: contiene
323 label_not_contains: no contiene
324 label_not_contains: no contiene
324 label_day_plural: días
325 label_day_plural: días
325 label_repository: Depósito
326 label_repository: Depósito
326 label_browse: Hojear
327 label_browse: Hojear
327 label_modification: %d modificación
328 label_modification: %d modificación
328 label_modification_plural: %d modificaciones
329 label_modification_plural: %d modificaciones
329 label_revision: Revisión
330 label_revision: Revisión
330 label_revision_plural: Revisiones
331 label_revision_plural: Revisiones
331 label_added: agregado
332 label_added: agregado
332 label_modified: modificado
333 label_modified: modificado
333 label_deleted: suprimido
334 label_deleted: suprimido
334 label_latest_revision: La revisión más última
335 label_latest_revision: La revisión más última
335 label_latest_revision_plural: Latest revisions
336 label_latest_revision_plural: Latest revisions
336 label_view_revisions: Ver las revisiones
337 label_view_revisions: Ver las revisiones
337 label_max_size: Tamaño máximo
338 label_max_size: Tamaño máximo
338 label_on: en
339 label_on: en
339 label_sort_highest: Primero
340 label_sort_highest: Primero
340 label_sort_higher: Subir
341 label_sort_higher: Subir
341 label_sort_lower: Bajar
342 label_sort_lower: Bajar
342 label_sort_lowest: Último
343 label_sort_lowest: Último
343 label_roadmap: Roadmap
344 label_roadmap: Roadmap
344 label_roadmap_due_in: Due in
345 label_roadmap_due_in: Due in
345 label_roadmap_overdue: %s late
346 label_roadmap_overdue: %s late
346 label_roadmap_no_issues: No issues for this version
347 label_roadmap_no_issues: No issues for this version
347 label_search: Búsqueda
348 label_search: Búsqueda
348 label_result: %d resultado
349 label_result: %d resultado
349 label_result_plural: %d resultados
350 label_result_plural: %d resultados
350 label_all_words: Todas las palabras
351 label_all_words: Todas las palabras
351 label_wiki: Wiki
352 label_wiki: Wiki
352 label_wiki_edit: Wiki edit
353 label_wiki_edit: Wiki edit
353 label_wiki_edit_plural: Wiki edits
354 label_wiki_edit_plural: Wiki edits
354 label_wiki_page: Wiki page
355 label_wiki_page: Wiki page
355 label_wiki_page_plural: Wiki pages
356 label_wiki_page_plural: Wiki pages
356 label_page_index: Índice
357 label_page_index: Índice
357 label_current_version: Versión actual
358 label_current_version: Versión actual
358 label_preview: Previo
359 label_preview: Previo
359 label_feed_plural: Feeds
360 label_feed_plural: Feeds
360 label_changes_details: Detalles de todos los cambios
361 label_changes_details: Detalles de todos los cambios
361 label_issue_tracking: Issue tracking
362 label_issue_tracking: Issue tracking
362 label_spent_time: Spent time
363 label_spent_time: Spent time
363 label_f_hour: %.2f hour
364 label_f_hour: %.2f hour
364 label_f_hour_plural: %.2f hours
365 label_f_hour_plural: %.2f hours
365 label_time_tracking: Time tracking
366 label_time_tracking: Time tracking
366 label_change_plural: Changes
367 label_change_plural: Changes
367 label_statistics: Statistics
368 label_statistics: Statistics
368 label_commits_per_month: Commits per month
369 label_commits_per_month: Commits per month
369 label_commits_per_author: Commits per author
370 label_commits_per_author: Commits per author
370 label_view_diff: View differences
371 label_view_diff: View differences
371 label_diff_inline: inline
372 label_diff_inline: inline
372 label_diff_side_by_side: side by side
373 label_diff_side_by_side: side by side
373 label_options: Options
374 label_options: Options
374 label_copy_workflow_from: Copy workflow from
375 label_copy_workflow_from: Copy workflow from
375 label_permissions_report: Permissions report
376 label_permissions_report: Permissions report
376 label_watched_issues: Watched issues
377 label_watched_issues: Watched issues
377 label_related_issues: Related issues
378 label_related_issues: Related issues
378 label_applied_status: Applied status
379 label_applied_status: Applied status
379 label_loading: Loading...
380 label_loading: Loading...
380 label_relation_new: New relation
381 label_relation_new: New relation
381 label_relation_delete: Delete relation
382 label_relation_delete: Delete relation
382 label_relates_to: related to
383 label_relates_to: related to
383 label_duplicates: duplicates
384 label_duplicates: duplicates
384 label_blocks: blocks
385 label_blocks: blocks
385 label_blocked_by: blocked by
386 label_blocked_by: blocked by
386 label_precedes: precedes
387 label_precedes: precedes
387 label_follows: follows
388 label_follows: follows
388 label_end_to_start: start to end
389 label_end_to_start: start to end
389 label_end_to_end: end to end
390 label_end_to_end: end to end
390 label_start_to_start: start to start
391 label_start_to_start: start to start
391 label_start_to_end: start to end
392 label_start_to_end: start to end
392 label_stay_logged_in: Stay logged in
393 label_stay_logged_in: Stay logged in
393 label_disabled: disabled
394 label_disabled: disabled
394 label_show_completed_versions: Show completed versions
395 label_show_completed_versions: Show completed versions
395 label_me: me
396 label_me: me
396 label_board: Forum
397 label_board: Forum
397 label_board_new: New forum
398 label_board_new: New forum
398 label_board_plural: Forums
399 label_board_plural: Forums
399 label_topic_plural: Topics
400 label_topic_plural: Topics
400 label_message_plural: Messages
401 label_message_plural: Messages
401 label_message_last: Last message
402 label_message_last: Last message
402 label_message_new: New message
403 label_message_new: New message
403 label_reply_plural: Replies
404 label_reply_plural: Replies
404 label_send_information: Send account information to the user
405 label_send_information: Send account information to the user
405 label_year: Year
406 label_year: Year
406 label_month: Month
407 label_month: Month
407 label_week: Week
408 label_week: Week
408 label_date_from: From
409 label_date_from: From
409 label_date_to: To
410 label_date_to: To
410 label_language_based: Language based
411 label_language_based: Language based
411 label_sort_by: Sort by "%s"
412 label_sort_by: Sort by "%s"
412 label_send_test_email: Send a test email
413 label_send_test_email: Send a test email
413
414
414 button_login: Conexión
415 button_login: Conexión
415 button_submit: Someter
416 button_submit: Someter
416 button_save: Validar
417 button_save: Validar
417 button_check_all: Seleccionar todo
418 button_check_all: Seleccionar todo
418 button_uncheck_all: No seleccionar nada
419 button_uncheck_all: No seleccionar nada
419 button_delete: Suprimir
420 button_delete: Suprimir
420 button_create: Crear
421 button_create: Crear
421 button_test: Testar
422 button_test: Testar
422 button_edit: Modificar
423 button_edit: Modificar
423 button_add: Añadir
424 button_add: Añadir
424 button_change: Cambiar
425 button_change: Cambiar
425 button_apply: Aplicar
426 button_apply: Aplicar
426 button_clear: Anular
427 button_clear: Anular
427 button_lock: Bloquear
428 button_lock: Bloquear
428 button_unlock: Desbloquear
429 button_unlock: Desbloquear
429 button_download: Telecargar
430 button_download: Telecargar
430 button_list: Listar
431 button_list: Listar
431 button_view: Ver
432 button_view: Ver
432 button_move: Mover
433 button_move: Mover
433 button_back: Atrás
434 button_back: Atrás
434 button_cancel: Cancelar
435 button_cancel: Cancelar
435 button_activate: Activar
436 button_activate: Activar
436 button_sort: Clasificar
437 button_sort: Clasificar
437 button_log_time: Log time
438 button_log_time: Log time
438 button_rollback: Rollback to this version
439 button_rollback: Rollback to this version
439 button_watch: Watch
440 button_watch: Watch
440 button_unwatch: Unwatch
441 button_unwatch: Unwatch
441 button_reply: Reply
442 button_reply: Reply
442 button_archive: Archive
443 button_archive: Archive
443 button_unarchive: Unarchive
444 button_unarchive: Unarchive
444
445
445 status_active: active
446 status_active: active
446 status_registered: registered
447 status_registered: registered
447 status_locked: locked
448 status_locked: locked
448
449
449 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
450 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
450 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_min_max_length_info: 0 para ninguna restricción
452 text_min_max_length_info: 0 para ninguna restricción
452 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
453 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
453 text_workflow_edit: Seleccionar un workflow para actualizar
454 text_workflow_edit: Seleccionar un workflow para actualizar
454 text_are_you_sure: ¿ Estás seguro ?
455 text_are_you_sure: ¿ Estás seguro ?
455 text_journal_changed: cambiado de %s a %s
456 text_journal_changed: cambiado de %s a %s
456 text_journal_set_to: fijado a %s
457 text_journal_set_to: fijado a %s
457 text_journal_deleted: suprimido
458 text_journal_deleted: suprimido
458 text_tip_task_begin_day: tarea que comienza este día
459 text_tip_task_begin_day: tarea que comienza este día
459 text_tip_task_end_day: tarea que termina este día
460 text_tip_task_end_day: tarea que termina este día
460 text_tip_task_begin_end_day: tarea que comienza y termina este día
461 text_tip_task_begin_end_day: tarea que comienza y termina este día
461 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
462 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
462 text_caracters_maximum: %d characters maximum.
463 text_caracters_maximum: %d characters maximum.
463 text_length_between: Length between %d and %d characters.
464 text_length_between: Length between %d and %d characters.
464 text_tracker_no_workflow: No workflow defined for this tracker
465 text_tracker_no_workflow: No workflow defined for this tracker
465 text_unallowed_characters: Unallowed characters
466 text_unallowed_characters: Unallowed characters
466 text_comma_separated: Multiple values allowed (comma separated).
467 text_comma_separated: Multiple values allowed (comma separated).
467 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468
469
469 default_role_manager: Manager
470 default_role_manager: Manager
470 default_role_developper: Desarrollador
471 default_role_developper: Desarrollador
471 default_role_reporter: Informador
472 default_role_reporter: Informador
472 default_tracker_bug: Anomalía
473 default_tracker_bug: Anomalía
473 default_tracker_feature: Evolución
474 default_tracker_feature: Evolución
474 default_tracker_support: Asistencia
475 default_tracker_support: Asistencia
475 default_issue_status_new: Nuevo
476 default_issue_status_new: Nuevo
476 default_issue_status_assigned: Asignada
477 default_issue_status_assigned: Asignada
477 default_issue_status_resolved: Resuelta
478 default_issue_status_resolved: Resuelta
478 default_issue_status_feedback: Comentario
479 default_issue_status_feedback: Comentario
479 default_issue_status_closed: Cerrada
480 default_issue_status_closed: Cerrada
480 default_issue_status_rejected: Rechazada
481 default_issue_status_rejected: Rechazada
481 default_doc_category_user: Documentación del usuario
482 default_doc_category_user: Documentación del usuario
482 default_doc_category_tech: Documentación tecnica
483 default_doc_category_tech: Documentación tecnica
483 default_priority_low: Bajo
484 default_priority_low: Bajo
484 default_priority_normal: Normal
485 default_priority_normal: Normal
485 default_priority_high: Alto
486 default_priority_high: Alto
486 default_priority_urgent: Urgente
487 default_priority_urgent: Urgente
487 default_priority_immediate: Ahora
488 default_priority_immediate: Ahora
488 default_activity_design: Design
489 default_activity_design: Design
489 default_activity_development: Development
490 default_activity_development: Development
490
491
491 enumeration_issue_priorities: Prioridad de las peticiones
492 enumeration_issue_priorities: Prioridad de las peticiones
492 enumeration_doc_categories: Categorías del documento
493 enumeration_doc_categories: Categorías del documento
493 enumeration_activities: Activities (time tracking)
494 enumeration_activities: Activities (time tracking)
@@ -1,493 +1,494
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 jour
8 actionview_datehelper_time_in_words_day: 1 jour
9 actionview_datehelper_time_in_words_day_plural: %d jours
9 actionview_datehelper_time_in_words_day_plural: %d jours
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
20 actionview_instancetag_blank_option: Choisir
20 actionview_instancetag_blank_option: Choisir
21
21
22 activerecord_error_inclusion: n'est pas inclus dans la liste
22 activerecord_error_inclusion: n'est pas inclus dans la liste
23 activerecord_error_exclusion: est reservé
23 activerecord_error_exclusion: est reservé
24 activerecord_error_invalid: est invalide
24 activerecord_error_invalid: est invalide
25 activerecord_error_confirmation: ne correspond pas à la confirmation
25 activerecord_error_confirmation: ne correspond pas à la confirmation
26 activerecord_error_accepted: doit être accepté
26 activerecord_error_accepted: doit être accepté
27 activerecord_error_empty: doit être renseigné
27 activerecord_error_empty: doit être renseigné
28 activerecord_error_blank: doit être renseigné
28 activerecord_error_blank: doit être renseigné
29 activerecord_error_too_long: est trop long
29 activerecord_error_too_long: est trop long
30 activerecord_error_too_short: est trop court
30 activerecord_error_too_short: est trop court
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
32 activerecord_error_taken: est déjà utilisé
32 activerecord_error_taken: est déjà utilisé
33 activerecord_error_not_a_number: n'est pas un nombre
33 activerecord_error_not_a_number: n'est pas un nombre
34 activerecord_error_not_a_date: n'est pas une date valide
34 activerecord_error_not_a_date: n'est pas une date valide
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
36 activerecord_error_not_same_project: n'appartient pas au même projet
36 activerecord_error_not_same_project: n'appartient pas au même projet
37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
38
38
39 general_fmt_age: %d an
39 general_fmt_age: %d an
40 general_fmt_age_plural: %d ans
40 general_fmt_age_plural: %d ans
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Non'
45 general_text_No: 'Non'
46 general_text_Yes: 'Oui'
46 general_text_Yes: 'Oui'
47 general_text_no: 'non'
47 general_text_no: 'non'
48 general_text_yes: 'oui'
48 general_text_yes: 'oui'
49 general_lang_name: 'Français'
49 general_lang_name: 'Français'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
53 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
54
54
55 notice_account_updated: Le compte a été mis à jour avec succès.
55 notice_account_updated: Le compte a été mis à jour avec succès.
56 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
56 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
57 notice_account_password_updated: Mot de passe mis à jour avec succès.
57 notice_account_password_updated: Mot de passe mis à jour avec succès.
58 notice_account_wrong_password: Mot de passe incorrect
58 notice_account_wrong_password: Mot de passe incorrect
59 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
59 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
60 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
60 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
61 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
61 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
62 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
62 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
63 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
63 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
64 notice_successful_create: Création effectuée avec succès.
64 notice_successful_create: Création effectuée avec succès.
65 notice_successful_update: Mise à jour effectuée avec succès.
65 notice_successful_update: Mise à jour effectuée avec succès.
66 notice_successful_delete: Suppression effectuée avec succès.
66 notice_successful_delete: Suppression effectuée avec succès.
67 notice_successful_connection: Connection réussie.
67 notice_successful_connection: Connection réussie.
68 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
68 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
69 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
69 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
70 notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
70 notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
71 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
71 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
72 notice_email_sent: "Un email a été envoyé à %s"
72 notice_email_sent: "Un email a été envoyé à %s"
73 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
73 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
74
74
75 mail_subject_lost_password: Votre mot de passe redMine
75 mail_subject_lost_password: Votre mot de passe redMine
76 mail_subject_register: Activation de votre compte redMine
76 mail_subject_register: Activation de votre compte redMine
77
77
78 gui_validation_error: 1 erreur
78 gui_validation_error: 1 erreur
79 gui_validation_error_plural: %d erreurs
79 gui_validation_error_plural: %d erreurs
80
80
81 field_name: Nom
81 field_name: Nom
82 field_description: Description
82 field_description: Description
83 field_summary: Résumé
83 field_summary: Résumé
84 field_is_required: Obligatoire
84 field_is_required: Obligatoire
85 field_firstname: Prénom
85 field_firstname: Prénom
86 field_lastname: Nom
86 field_lastname: Nom
87 field_mail: Email
87 field_mail: Email
88 field_filename: Fichier
88 field_filename: Fichier
89 field_filesize: Taille
89 field_filesize: Taille
90 field_downloads: Téléchargements
90 field_downloads: Téléchargements
91 field_author: Auteur
91 field_author: Auteur
92 field_created_on: Créé
92 field_created_on: Créé
93 field_updated_on: Mis à jour
93 field_updated_on: Mis à jour
94 field_field_format: Format
94 field_field_format: Format
95 field_is_for_all: Pour tous les projets
95 field_is_for_all: Pour tous les projets
96 field_possible_values: Valeurs possibles
96 field_possible_values: Valeurs possibles
97 field_regexp: Expression régulière
97 field_regexp: Expression régulière
98 field_min_length: Longueur minimum
98 field_min_length: Longueur minimum
99 field_max_length: Longueur maximum
99 field_max_length: Longueur maximum
100 field_value: Valeur
100 field_value: Valeur
101 field_category: Catégorie
101 field_category: Catégorie
102 field_title: Titre
102 field_title: Titre
103 field_project: Projet
103 field_project: Projet
104 field_issue: Demande
104 field_issue: Demande
105 field_status: Statut
105 field_status: Statut
106 field_notes: Notes
106 field_notes: Notes
107 field_is_closed: Demande fermée
107 field_is_closed: Demande fermée
108 field_is_default: Statut par défaut
108 field_is_default: Statut par défaut
109 field_html_color: Couleur
109 field_html_color: Couleur
110 field_tracker: Tracker
110 field_tracker: Tracker
111 field_subject: Sujet
111 field_subject: Sujet
112 field_due_date: Date d'échéance
112 field_due_date: Date d'échéance
113 field_assigned_to: Assigné à
113 field_assigned_to: Assigné à
114 field_priority: Priorité
114 field_priority: Priorité
115 field_fixed_version: Version corrigée
115 field_fixed_version: Version corrigée
116 field_user: Utilisateur
116 field_user: Utilisateur
117 field_role: Rôle
117 field_role: Rôle
118 field_homepage: Site web
118 field_homepage: Site web
119 field_is_public: Public
119 field_is_public: Public
120 field_parent: Sous-projet de
120 field_parent: Sous-projet de
121 field_is_in_chlog: Demandes affichées dans l'historique
121 field_is_in_chlog: Demandes affichées dans l'historique
122 field_is_in_roadmap: Demandes affichées dans la roadmap
122 field_is_in_roadmap: Demandes affichées dans la roadmap
123 field_login: Identifiant
123 field_login: Identifiant
124 field_mail_notification: Notifications par mail
124 field_mail_notification: Notifications par mail
125 field_admin: Administrateur
125 field_admin: Administrateur
126 field_last_login_on: Dernière connexion
126 field_last_login_on: Dernière connexion
127 field_language: Langue
127 field_language: Langue
128 field_effective_date: Date
128 field_effective_date: Date
129 field_password: Mot de passe
129 field_password: Mot de passe
130 field_new_password: Nouveau mot de passe
130 field_new_password: Nouveau mot de passe
131 field_password_confirmation: Confirmation
131 field_password_confirmation: Confirmation
132 field_version: Version
132 field_version: Version
133 field_type: Type
133 field_type: Type
134 field_host: Hôte
134 field_host: Hôte
135 field_port: Port
135 field_port: Port
136 field_account: Compte
136 field_account: Compte
137 field_base_dn: Base DN
137 field_base_dn: Base DN
138 field_attr_login: Attribut Identifiant
138 field_attr_login: Attribut Identifiant
139 field_attr_firstname: Attribut Prénom
139 field_attr_firstname: Attribut Prénom
140 field_attr_lastname: Attribut Nom
140 field_attr_lastname: Attribut Nom
141 field_attr_mail: Attribut Email
141 field_attr_mail: Attribut Email
142 field_onthefly: Création des utilisateurs à la volée
142 field_onthefly: Création des utilisateurs à la volée
143 field_start_date: Début
143 field_start_date: Début
144 field_done_ratio: %% Réalisé
144 field_done_ratio: %% Réalisé
145 field_auth_source: Mode d'authentification
145 field_auth_source: Mode d'authentification
146 field_hide_mail: Cacher mon adresse mail
146 field_hide_mail: Cacher mon adresse mail
147 field_comments: Commentaire
147 field_comments: Commentaire
148 field_url: URL
148 field_url: URL
149 field_start_page: Page de démarrage
149 field_start_page: Page de démarrage
150 field_subproject: Sous-projet
150 field_subproject: Sous-projet
151 field_hours: Heures
151 field_hours: Heures
152 field_activity: Activité
152 field_activity: Activité
153 field_spent_on: Date
153 field_spent_on: Date
154 field_identifier: Identifiant
154 field_identifier: Identifiant
155 field_is_filter: Utilisé comme filtre
155 field_is_filter: Utilisé comme filtre
156 field_issue_to_id: Demande liée
156 field_issue_to_id: Demande liée
157 field_delay: Retard
157 field_delay: Retard
158 field_assignable: Demandes assignables à ce rôle
158
159
159 setting_app_title: Titre de l'application
160 setting_app_title: Titre de l'application
160 setting_app_subtitle: Sous-titre de l'application
161 setting_app_subtitle: Sous-titre de l'application
161 setting_welcome_text: Texte d'accueil
162 setting_welcome_text: Texte d'accueil
162 setting_default_language: Langue par défaut
163 setting_default_language: Langue par défaut
163 setting_login_required: Authentif. obligatoire
164 setting_login_required: Authentif. obligatoire
164 setting_self_registration: Enregistrement autorisé
165 setting_self_registration: Enregistrement autorisé
165 setting_attachment_max_size: Taille max des fichiers
166 setting_attachment_max_size: Taille max des fichiers
166 setting_issues_export_limit: Limite export demandes
167 setting_issues_export_limit: Limite export demandes
167 setting_mail_from: Adresse d'émission
168 setting_mail_from: Adresse d'émission
168 setting_host_name: Nom d'hôte
169 setting_host_name: Nom d'hôte
169 setting_text_formatting: Formatage du texte
170 setting_text_formatting: Formatage du texte
170 setting_wiki_compression: Compression historique wiki
171 setting_wiki_compression: Compression historique wiki
171 setting_feeds_limit: Limite du contenu des flux RSS
172 setting_feeds_limit: Limite du contenu des flux RSS
172 setting_autofetch_changesets: Récupération auto. des commits
173 setting_autofetch_changesets: Récupération auto. des commits
173 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
174 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
174 setting_commit_ref_keywords: Mot-clés de référencement
175 setting_commit_ref_keywords: Mot-clés de référencement
175 setting_commit_fix_keywords: Mot-clés de résolution
176 setting_commit_fix_keywords: Mot-clés de résolution
176 setting_autologin: Autologin
177 setting_autologin: Autologin
177 setting_date_format: Format de date
178 setting_date_format: Format de date
178 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
179 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
179
180
180 label_user: Utilisateur
181 label_user: Utilisateur
181 label_user_plural: Utilisateurs
182 label_user_plural: Utilisateurs
182 label_user_new: Nouvel utilisateur
183 label_user_new: Nouvel utilisateur
183 label_project: Projet
184 label_project: Projet
184 label_project_new: Nouveau projet
185 label_project_new: Nouveau projet
185 label_project_plural: Projets
186 label_project_plural: Projets
186 label_project_all: Tous les projets
187 label_project_all: Tous les projets
187 label_project_latest: Derniers projets
188 label_project_latest: Derniers projets
188 label_issue: Demande
189 label_issue: Demande
189 label_issue_new: Nouvelle demande
190 label_issue_new: Nouvelle demande
190 label_issue_plural: Demandes
191 label_issue_plural: Demandes
191 label_issue_view_all: Voir toutes les demandes
192 label_issue_view_all: Voir toutes les demandes
192 label_document: Document
193 label_document: Document
193 label_document_new: Nouveau document
194 label_document_new: Nouveau document
194 label_document_plural: Documents
195 label_document_plural: Documents
195 label_role: Rôle
196 label_role: Rôle
196 label_role_plural: Rôles
197 label_role_plural: Rôles
197 label_role_new: Nouveau rôle
198 label_role_new: Nouveau rôle
198 label_role_and_permissions: Rôles et permissions
199 label_role_and_permissions: Rôles et permissions
199 label_member: Membre
200 label_member: Membre
200 label_member_new: Nouveau membre
201 label_member_new: Nouveau membre
201 label_member_plural: Membres
202 label_member_plural: Membres
202 label_tracker: Tracker
203 label_tracker: Tracker
203 label_tracker_plural: Trackers
204 label_tracker_plural: Trackers
204 label_tracker_new: Nouveau tracker
205 label_tracker_new: Nouveau tracker
205 label_workflow: Workflow
206 label_workflow: Workflow
206 label_issue_status: Statut de demandes
207 label_issue_status: Statut de demandes
207 label_issue_status_plural: Statuts de demandes
208 label_issue_status_plural: Statuts de demandes
208 label_issue_status_new: Nouveau statut
209 label_issue_status_new: Nouveau statut
209 label_issue_category: Catégorie de demandes
210 label_issue_category: Catégorie de demandes
210 label_issue_category_plural: Catégories de demandes
211 label_issue_category_plural: Catégories de demandes
211 label_issue_category_new: Nouvelle catégorie
212 label_issue_category_new: Nouvelle catégorie
212 label_custom_field: Champ personnalisé
213 label_custom_field: Champ personnalisé
213 label_custom_field_plural: Champs personnalisés
214 label_custom_field_plural: Champs personnalisés
214 label_custom_field_new: Nouveau champ personnalisé
215 label_custom_field_new: Nouveau champ personnalisé
215 label_enumerations: Listes de valeurs
216 label_enumerations: Listes de valeurs
216 label_enumeration_new: Nouvelle valeur
217 label_enumeration_new: Nouvelle valeur
217 label_information: Information
218 label_information: Information
218 label_information_plural: Informations
219 label_information_plural: Informations
219 label_please_login: Identification
220 label_please_login: Identification
220 label_register: S'enregistrer
221 label_register: S'enregistrer
221 label_password_lost: Mot de passe perdu
222 label_password_lost: Mot de passe perdu
222 label_home: Accueil
223 label_home: Accueil
223 label_my_page: Ma page
224 label_my_page: Ma page
224 label_my_account: Mon compte
225 label_my_account: Mon compte
225 label_my_projects: Mes projets
226 label_my_projects: Mes projets
226 label_administration: Administration
227 label_administration: Administration
227 label_login: Connexion
228 label_login: Connexion
228 label_logout: Déconnexion
229 label_logout: Déconnexion
229 label_help: Aide
230 label_help: Aide
230 label_reported_issues: Demandes soumises
231 label_reported_issues: Demandes soumises
231 label_assigned_to_me_issues: Demandes qui me sont assignées
232 label_assigned_to_me_issues: Demandes qui me sont assignées
232 label_last_login: Dernière connexion
233 label_last_login: Dernière connexion
233 label_last_updates: Dernière mise à jour
234 label_last_updates: Dernière mise à jour
234 label_last_updates_plural: %d dernières mises à jour
235 label_last_updates_plural: %d dernières mises à jour
235 label_registered_on: Inscrit le
236 label_registered_on: Inscrit le
236 label_activity: Activité
237 label_activity: Activité
237 label_new: Nouveau
238 label_new: Nouveau
238 label_logged_as: Connecté en tant que
239 label_logged_as: Connecté en tant que
239 label_environment: Environnement
240 label_environment: Environnement
240 label_authentication: Authentification
241 label_authentication: Authentification
241 label_auth_source: Mode d'authentification
242 label_auth_source: Mode d'authentification
242 label_auth_source_new: Nouveau mode d'authentification
243 label_auth_source_new: Nouveau mode d'authentification
243 label_auth_source_plural: Modes d'authentification
244 label_auth_source_plural: Modes d'authentification
244 label_subproject_plural: Sous-projets
245 label_subproject_plural: Sous-projets
245 label_min_max_length: Longueurs mini - maxi
246 label_min_max_length: Longueurs mini - maxi
246 label_list: Liste
247 label_list: Liste
247 label_date: Date
248 label_date: Date
248 label_integer: Entier
249 label_integer: Entier
249 label_boolean: Booléen
250 label_boolean: Booléen
250 label_string: Texte
251 label_string: Texte
251 label_text: Texte long
252 label_text: Texte long
252 label_attribute: Attribut
253 label_attribute: Attribut
253 label_attribute_plural: Attributs
254 label_attribute_plural: Attributs
254 label_download: %d Téléchargement
255 label_download: %d Téléchargement
255 label_download_plural: %d Téléchargements
256 label_download_plural: %d Téléchargements
256 label_no_data: Aucune donnée à afficher
257 label_no_data: Aucune donnée à afficher
257 label_change_status: Changer le statut
258 label_change_status: Changer le statut
258 label_history: Historique
259 label_history: Historique
259 label_attachment: Fichier
260 label_attachment: Fichier
260 label_attachment_new: Nouveau fichier
261 label_attachment_new: Nouveau fichier
261 label_attachment_delete: Supprimer le fichier
262 label_attachment_delete: Supprimer le fichier
262 label_attachment_plural: Fichiers
263 label_attachment_plural: Fichiers
263 label_report: Rapport
264 label_report: Rapport
264 label_report_plural: Rapports
265 label_report_plural: Rapports
265 label_news: Annonce
266 label_news: Annonce
266 label_news_new: Nouvelle annonce
267 label_news_new: Nouvelle annonce
267 label_news_plural: Annonces
268 label_news_plural: Annonces
268 label_news_latest: Dernières annonces
269 label_news_latest: Dernières annonces
269 label_news_view_all: Voir toutes les annonces
270 label_news_view_all: Voir toutes les annonces
270 label_change_log: Historique
271 label_change_log: Historique
271 label_settings: Configuration
272 label_settings: Configuration
272 label_overview: Aperçu
273 label_overview: Aperçu
273 label_version: Version
274 label_version: Version
274 label_version_new: Nouvelle version
275 label_version_new: Nouvelle version
275 label_version_plural: Versions
276 label_version_plural: Versions
276 label_confirmation: Confirmation
277 label_confirmation: Confirmation
277 label_export_to: Exporter en
278 label_export_to: Exporter en
278 label_read: Lire...
279 label_read: Lire...
279 label_public_projects: Projets publics
280 label_public_projects: Projets publics
280 label_open_issues: ouvert
281 label_open_issues: ouvert
281 label_open_issues_plural: ouverts
282 label_open_issues_plural: ouverts
282 label_closed_issues: fermé
283 label_closed_issues: fermé
283 label_closed_issues_plural: fermés
284 label_closed_issues_plural: fermés
284 label_total: Total
285 label_total: Total
285 label_permissions: Permissions
286 label_permissions: Permissions
286 label_current_status: Statut actuel
287 label_current_status: Statut actuel
287 label_new_statuses_allowed: Nouveaux statuts autorisés
288 label_new_statuses_allowed: Nouveaux statuts autorisés
288 label_all: tous
289 label_all: tous
289 label_none: aucun
290 label_none: aucun
290 label_next: Suivant
291 label_next: Suivant
291 label_previous: Précédent
292 label_previous: Précédent
292 label_used_by: Utilisé par
293 label_used_by: Utilisé par
293 label_details: Détails
294 label_details: Détails
294 label_add_note: Ajouter une note
295 label_add_note: Ajouter une note
295 label_per_page: Par page
296 label_per_page: Par page
296 label_calendar: Calendrier
297 label_calendar: Calendrier
297 label_months_from: mois depuis
298 label_months_from: mois depuis
298 label_gantt: Gantt
299 label_gantt: Gantt
299 label_internal: Interne
300 label_internal: Interne
300 label_last_changes: %d derniers changements
301 label_last_changes: %d derniers changements
301 label_change_view_all: Voir tous les changements
302 label_change_view_all: Voir tous les changements
302 label_personalize_page: Personnaliser cette page
303 label_personalize_page: Personnaliser cette page
303 label_comment: Commentaire
304 label_comment: Commentaire
304 label_comment_plural: Commentaires
305 label_comment_plural: Commentaires
305 label_comment_add: Ajouter un commentaire
306 label_comment_add: Ajouter un commentaire
306 label_comment_added: Commentaire ajouté
307 label_comment_added: Commentaire ajouté
307 label_comment_delete: Supprimer les commentaires
308 label_comment_delete: Supprimer les commentaires
308 label_query: Rapport personnalisé
309 label_query: Rapport personnalisé
309 label_query_plural: Rapports personnalisés
310 label_query_plural: Rapports personnalisés
310 label_query_new: Nouveau rapport
311 label_query_new: Nouveau rapport
311 label_filter_add: Ajouter le filtre
312 label_filter_add: Ajouter le filtre
312 label_filter_plural: Filtres
313 label_filter_plural: Filtres
313 label_equals: égal
314 label_equals: égal
314 label_not_equals: différent
315 label_not_equals: différent
315 label_in_less_than: dans moins de
316 label_in_less_than: dans moins de
316 label_in_more_than: dans plus de
317 label_in_more_than: dans plus de
317 label_in: dans
318 label_in: dans
318 label_today: aujourd'hui
319 label_today: aujourd'hui
319 label_less_than_ago: il y a moins de
320 label_less_than_ago: il y a moins de
320 label_more_than_ago: il y a plus de
321 label_more_than_ago: il y a plus de
321 label_ago: il y a
322 label_ago: il y a
322 label_contains: contient
323 label_contains: contient
323 label_not_contains: ne contient pas
324 label_not_contains: ne contient pas
324 label_day_plural: jours
325 label_day_plural: jours
325 label_repository: Dépôt
326 label_repository: Dépôt
326 label_browse: Parcourir
327 label_browse: Parcourir
327 label_modification: %d modification
328 label_modification: %d modification
328 label_modification_plural: %d modifications
329 label_modification_plural: %d modifications
329 label_revision: Révision
330 label_revision: Révision
330 label_revision_plural: Révisions
331 label_revision_plural: Révisions
331 label_added: ajouté
332 label_added: ajouté
332 label_modified: modifié
333 label_modified: modifié
333 label_deleted: supprimé
334 label_deleted: supprimé
334 label_latest_revision: Dernière révision
335 label_latest_revision: Dernière révision
335 label_latest_revision_plural: Dernières révisions
336 label_latest_revision_plural: Dernières révisions
336 label_view_revisions: Voir les révisions
337 label_view_revisions: Voir les révisions
337 label_max_size: Taille maximale
338 label_max_size: Taille maximale
338 label_on: sur
339 label_on: sur
339 label_sort_highest: Remonter en premier
340 label_sort_highest: Remonter en premier
340 label_sort_higher: Remonter
341 label_sort_higher: Remonter
341 label_sort_lower: Descendre
342 label_sort_lower: Descendre
342 label_sort_lowest: Descendre en dernier
343 label_sort_lowest: Descendre en dernier
343 label_roadmap: Roadmap
344 label_roadmap: Roadmap
344 label_roadmap_due_in: Echéance dans
345 label_roadmap_due_in: Echéance dans
345 label_roadmap_overdue: En retard de %s
346 label_roadmap_overdue: En retard de %s
346 label_roadmap_no_issues: Aucune demande pour cette version
347 label_roadmap_no_issues: Aucune demande pour cette version
347 label_search: Recherche
348 label_search: Recherche
348 label_result: %d résultat
349 label_result: %d résultat
349 label_result_plural: %d résultats
350 label_result_plural: %d résultats
350 label_all_words: Tous les mots
351 label_all_words: Tous les mots
351 label_wiki: Wiki
352 label_wiki: Wiki
352 label_wiki_edit: Révision wiki
353 label_wiki_edit: Révision wiki
353 label_wiki_edit_plural: Révisions wiki
354 label_wiki_edit_plural: Révisions wiki
354 label_wiki_page: Page wiki
355 label_wiki_page: Page wiki
355 label_wiki_page_plural: Pages wiki
356 label_wiki_page_plural: Pages wiki
356 label_page_index: Index
357 label_page_index: Index
357 label_current_version: Version actuelle
358 label_current_version: Version actuelle
358 label_preview: Prévisualisation
359 label_preview: Prévisualisation
359 label_feed_plural: Flux RSS
360 label_feed_plural: Flux RSS
360 label_changes_details: Détails de tous les changements
361 label_changes_details: Détails de tous les changements
361 label_issue_tracking: Suivi des demandes
362 label_issue_tracking: Suivi des demandes
362 label_spent_time: Temps passé
363 label_spent_time: Temps passé
363 label_f_hour: %.2f heure
364 label_f_hour: %.2f heure
364 label_f_hour_plural: %.2f heures
365 label_f_hour_plural: %.2f heures
365 label_time_tracking: Suivi du temps
366 label_time_tracking: Suivi du temps
366 label_change_plural: Changements
367 label_change_plural: Changements
367 label_statistics: Statistiques
368 label_statistics: Statistiques
368 label_commits_per_month: Commits par mois
369 label_commits_per_month: Commits par mois
369 label_commits_per_author: Commits par auteur
370 label_commits_per_author: Commits par auteur
370 label_view_diff: Voir les différences
371 label_view_diff: Voir les différences
371 label_diff_inline: en ligne
372 label_diff_inline: en ligne
372 label_diff_side_by_side: côte à côte
373 label_diff_side_by_side: côte à côte
373 label_options: Options
374 label_options: Options
374 label_copy_workflow_from: Copier le workflow de
375 label_copy_workflow_from: Copier le workflow de
375 label_permissions_report: Synthèse des permissions
376 label_permissions_report: Synthèse des permissions
376 label_watched_issues: Demandes surveillées
377 label_watched_issues: Demandes surveillées
377 label_related_issues: Demandes liées
378 label_related_issues: Demandes liées
378 label_applied_status: Statut appliqué
379 label_applied_status: Statut appliqué
379 label_loading: Chargement...
380 label_loading: Chargement...
380 label_relation_new: Nouvelle relation
381 label_relation_new: Nouvelle relation
381 label_relation_delete: Supprimer la relation
382 label_relation_delete: Supprimer la relation
382 label_relates_to: lié à
383 label_relates_to: lié à
383 label_duplicates: doublon de
384 label_duplicates: doublon de
384 label_blocks: bloque
385 label_blocks: bloque
385 label_blocked_by: bloqué par
386 label_blocked_by: bloqué par
386 label_precedes: précède
387 label_precedes: précède
387 label_follows: suit
388 label_follows: suit
388 label_end_to_start: début à fin
389 label_end_to_start: début à fin
389 label_end_to_end: fin à fin
390 label_end_to_end: fin à fin
390 label_start_to_start: début à début
391 label_start_to_start: début à début
391 label_start_to_end: début à fin
392 label_start_to_end: début à fin
392 label_stay_logged_in: Rester connecté
393 label_stay_logged_in: Rester connecté
393 label_disabled: désactivé
394 label_disabled: désactivé
394 label_show_completed_versions: Voire les versions passées
395 label_show_completed_versions: Voire les versions passées
395 label_me: moi
396 label_me: moi
396 label_board: Forum
397 label_board: Forum
397 label_board_new: Nouveau forum
398 label_board_new: Nouveau forum
398 label_board_plural: Forums
399 label_board_plural: Forums
399 label_topic_plural: Discussions
400 label_topic_plural: Discussions
400 label_message_plural: Messages
401 label_message_plural: Messages
401 label_message_last: Dernier message
402 label_message_last: Dernier message
402 label_message_new: Nouveau message
403 label_message_new: Nouveau message
403 label_reply_plural: Réponses
404 label_reply_plural: Réponses
404 label_send_information: Envoyer les informations à l'utilisateur
405 label_send_information: Envoyer les informations à l'utilisateur
405 label_year: Année
406 label_year: Année
406 label_month: Mois
407 label_month: Mois
407 label_week: Semaine
408 label_week: Semaine
408 label_date_from: Du
409 label_date_from: Du
409 label_date_to: Au
410 label_date_to: Au
410 label_language_based: Basé sur la langue
411 label_language_based: Basé sur la langue
411 label_sort_by: Trier par "%s"
412 label_sort_by: Trier par "%s"
412 label_send_test_email: Envoyer un email de test
413 label_send_test_email: Envoyer un email de test
413
414
414 button_login: Connexion
415 button_login: Connexion
415 button_submit: Soumettre
416 button_submit: Soumettre
416 button_save: Sauvegarder
417 button_save: Sauvegarder
417 button_check_all: Tout cocher
418 button_check_all: Tout cocher
418 button_uncheck_all: Tout décocher
419 button_uncheck_all: Tout décocher
419 button_delete: Supprimer
420 button_delete: Supprimer
420 button_create: Créer
421 button_create: Créer
421 button_test: Tester
422 button_test: Tester
422 button_edit: Modifier
423 button_edit: Modifier
423 button_add: Ajouter
424 button_add: Ajouter
424 button_change: Changer
425 button_change: Changer
425 button_apply: Appliquer
426 button_apply: Appliquer
426 button_clear: Effacer
427 button_clear: Effacer
427 button_lock: Verrouiller
428 button_lock: Verrouiller
428 button_unlock: Déverrouiller
429 button_unlock: Déverrouiller
429 button_download: Télécharger
430 button_download: Télécharger
430 button_list: Lister
431 button_list: Lister
431 button_view: Voir
432 button_view: Voir
432 button_move: Déplacer
433 button_move: Déplacer
433 button_back: Retour
434 button_back: Retour
434 button_cancel: Annuler
435 button_cancel: Annuler
435 button_activate: Activer
436 button_activate: Activer
436 button_sort: Trier
437 button_sort: Trier
437 button_log_time: Saisir temps
438 button_log_time: Saisir temps
438 button_rollback: Revenir à cette version
439 button_rollback: Revenir à cette version
439 button_watch: Surveiller
440 button_watch: Surveiller
440 button_unwatch: Ne plus surveiller
441 button_unwatch: Ne plus surveiller
441 button_reply: Répondre
442 button_reply: Répondre
442 button_archive: Archiver
443 button_archive: Archiver
443 button_unarchive: Désarchiver
444 button_unarchive: Désarchiver
444
445
445 status_active: actif
446 status_active: actif
446 status_registered: enregistré
447 status_registered: enregistré
447 status_locked: vérouillé
448 status_locked: vérouillé
448
449
449 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
450 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
450 text_regexp_info: ex. ^[A-Z0-9]+$
451 text_regexp_info: ex. ^[A-Z0-9]+$
451 text_min_max_length_info: 0 pour aucune restriction
452 text_min_max_length_info: 0 pour aucune restriction
452 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
453 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
453 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
454 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
454 text_are_you_sure: Etes-vous sûr ?
455 text_are_you_sure: Etes-vous sûr ?
455 text_journal_changed: changé de %s à %s
456 text_journal_changed: changé de %s à %s
456 text_journal_set_to: mis à %s
457 text_journal_set_to: mis à %s
457 text_journal_deleted: supprimé
458 text_journal_deleted: supprimé
458 text_tip_task_begin_day: tâche commençant ce jour
459 text_tip_task_begin_day: tâche commençant ce jour
459 text_tip_task_end_day: tâche finissant ce jour
460 text_tip_task_end_day: tâche finissant ce jour
460 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
461 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
461 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
462 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
462 text_caracters_maximum: %d caractères maximum.
463 text_caracters_maximum: %d caractères maximum.
463 text_length_between: Longueur comprise entre %d et %d caractères.
464 text_length_between: Longueur comprise entre %d et %d caractères.
464 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
465 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
465 text_unallowed_characters: Caractères non autorisés
466 text_unallowed_characters: Caractères non autorisés
466 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
467 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
467 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
468 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
468
469
469 default_role_manager: Manager
470 default_role_manager: Manager
470 default_role_developper: Développeur
471 default_role_developper: Développeur
471 default_role_reporter: Rapporteur
472 default_role_reporter: Rapporteur
472 default_tracker_bug: Anomalie
473 default_tracker_bug: Anomalie
473 default_tracker_feature: Evolution
474 default_tracker_feature: Evolution
474 default_tracker_support: Assistance
475 default_tracker_support: Assistance
475 default_issue_status_new: Nouveau
476 default_issue_status_new: Nouveau
476 default_issue_status_assigned: Assigné
477 default_issue_status_assigned: Assigné
477 default_issue_status_resolved: Résolu
478 default_issue_status_resolved: Résolu
478 default_issue_status_feedback: Commentaire
479 default_issue_status_feedback: Commentaire
479 default_issue_status_closed: Fermé
480 default_issue_status_closed: Fermé
480 default_issue_status_rejected: Rejeté
481 default_issue_status_rejected: Rejeté
481 default_doc_category_user: Documentation utilisateur
482 default_doc_category_user: Documentation utilisateur
482 default_doc_category_tech: Documentation technique
483 default_doc_category_tech: Documentation technique
483 default_priority_low: Bas
484 default_priority_low: Bas
484 default_priority_normal: Normal
485 default_priority_normal: Normal
485 default_priority_high: Haut
486 default_priority_high: Haut
486 default_priority_urgent: Urgent
487 default_priority_urgent: Urgent
487 default_priority_immediate: Immédiat
488 default_priority_immediate: Immédiat
488 default_activity_design: Conception
489 default_activity_design: Conception
489 default_activity_development: Développement
490 default_activity_development: Développement
490
491
491 enumeration_issue_priorities: Priorités des demandes
492 enumeration_issue_priorities: Priorités des demandes
492 enumeration_doc_categories: Catégories des documents
493 enumeration_doc_categories: Catégories des documents
493 enumeration_activities: Activités (suivi du temps)
494 enumeration_activities: Activités (suivi du temps)
@@ -1,493 +1,494
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 giorno
8 actionview_datehelper_time_in_words_day: 1 giorno
9 actionview_datehelper_time_in_words_day_plural: %d giorni
9 actionview_datehelper_time_in_words_day_plural: %d giorni
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
20 actionview_instancetag_blank_option: Scegli
20 actionview_instancetag_blank_option: Scegli
21
21
22 activerecord_error_inclusion: non è incluso nella lista
22 activerecord_error_inclusion: non è incluso nella lista
23 activerecord_error_exclusion: e' riservato
23 activerecord_error_exclusion: e' riservato
24 activerecord_error_invalid: non e' valido
24 activerecord_error_invalid: non e' valido
25 activerecord_error_confirmation: non coincide con la conferma
25 activerecord_error_confirmation: non coincide con la conferma
26 activerecord_error_accepted: deve essere accettato
26 activerecord_error_accepted: deve essere accettato
27 activerecord_error_empty: non puo' essere vuoto
27 activerecord_error_empty: non puo' essere vuoto
28 activerecord_error_blank: non puo' essere blank
28 activerecord_error_blank: non puo' essere blank
29 activerecord_error_too_long: e' troppo lungo/a
29 activerecord_error_too_long: e' troppo lungo/a
30 activerecord_error_too_short: e' troppo corto/a
30 activerecord_error_too_short: e' troppo corto/a
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
32 activerecord_error_taken: e' gia' stato/a preso/a
32 activerecord_error_taken: e' gia' stato/a preso/a
33 activerecord_error_not_a_number: non e' un numero
33 activerecord_error_not_a_number: non e' un numero
34 activerecord_error_not_a_date: non e' una data valida
34 activerecord_error_not_a_date: non e' una data valida
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Si'
46 general_text_Yes: 'Si'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'si'
48 general_text_yes: 'si'
49 general_lang_name: 'Italiano'
49 general_lang_name: 'Italiano'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
53 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
54
54
55 notice_account_updated: L'utenza è stata aggiornata.
55 notice_account_updated: L'utenza è stata aggiornata.
56 notice_account_invalid_creditentials: Nome utente o password non validi.
56 notice_account_invalid_creditentials: Nome utente o password non validi.
57 notice_account_password_updated: La password è stata aggiornata.
57 notice_account_password_updated: La password è stata aggiornata.
58 notice_account_wrong_password: Password errata
58 notice_account_wrong_password: Password errata
59 notice_account_register_done: L'utenza è stata creata.
59 notice_account_register_done: L'utenza è stata creata.
60 notice_account_unknown_email: Utente sconosciuto.
60 notice_account_unknown_email: Utente sconosciuto.
61 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
61 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
62 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
62 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
63 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
63 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
64 notice_successful_create: Creazione effettuata.
64 notice_successful_create: Creazione effettuata.
65 notice_successful_update: Modifica effettuata.
65 notice_successful_update: Modifica effettuata.
66 notice_successful_delete: Eliminazione effettuata.
66 notice_successful_delete: Eliminazione effettuata.
67 notice_successful_connection: Connessione effettuata.
67 notice_successful_connection: Connessione effettuata.
68 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
68 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
69 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
69 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
70 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
70 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
71 notice_not_authorized: You are not authorized to access this page.
71 notice_not_authorized: You are not authorized to access this page.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)"
74
74
75 mail_subject_lost_password: Password redMine
75 mail_subject_lost_password: Password redMine
76 mail_subject_register: Attivazione utenza redMine
76 mail_subject_register: Attivazione utenza redMine
77
77
78 gui_validation_error: 1 errore
78 gui_validation_error: 1 errore
79 gui_validation_error_plural: %d errori
79 gui_validation_error_plural: %d errori
80
80
81 field_name: Nome
81 field_name: Nome
82 field_description: Descrizione
82 field_description: Descrizione
83 field_summary: Sommario
83 field_summary: Sommario
84 field_is_required: Richiesto
84 field_is_required: Richiesto
85 field_firstname: Nome
85 field_firstname: Nome
86 field_lastname: Cognome
86 field_lastname: Cognome
87 field_mail: Email
87 field_mail: Email
88 field_filename: File
88 field_filename: File
89 field_filesize: Dimensione
89 field_filesize: Dimensione
90 field_downloads: Download
90 field_downloads: Download
91 field_author: Autore
91 field_author: Autore
92 field_created_on: Creato
92 field_created_on: Creato
93 field_updated_on: Aggiornato
93 field_updated_on: Aggiornato
94 field_field_format: Formato
94 field_field_format: Formato
95 field_is_for_all: Per tutti i progetti
95 field_is_for_all: Per tutti i progetti
96 field_possible_values: Valori possibili
96 field_possible_values: Valori possibili
97 field_regexp: Espressione regolare
97 field_regexp: Espressione regolare
98 field_min_length: Lunghezza minima
98 field_min_length: Lunghezza minima
99 field_max_length: Lunghezza massima
99 field_max_length: Lunghezza massima
100 field_value: Valore
100 field_value: Valore
101 field_category: Categoria
101 field_category: Categoria
102 field_title: Titolo
102 field_title: Titolo
103 field_project: Progetto
103 field_project: Progetto
104 field_issue: Issue
104 field_issue: Issue
105 field_status: Stato
105 field_status: Stato
106 field_notes: Note
106 field_notes: Note
107 field_is_closed: Chiude il contesto
107 field_is_closed: Chiude il contesto
108 field_is_default: Stato predefinito
108 field_is_default: Stato predefinito
109 field_html_color: Colore
109 field_html_color: Colore
110 field_tracker: Tracker
110 field_tracker: Tracker
111 field_subject: Oggetto
111 field_subject: Oggetto
112 field_due_date: Data ultima
112 field_due_date: Data ultima
113 field_assigned_to: Assegnato a
113 field_assigned_to: Assegnato a
114 field_priority: Priorita'
114 field_priority: Priorita'
115 field_fixed_version: Versione di fix
115 field_fixed_version: Versione di fix
116 field_user: Utente
116 field_user: Utente
117 field_role: Ruolo
117 field_role: Ruolo
118 field_homepage: Homepage
118 field_homepage: Homepage
119 field_is_public: Pubblico
119 field_is_public: Pubblico
120 field_parent: Sottoprogetto di
120 field_parent: Sottoprogetto di
121 field_is_in_chlog: Contesti mostrati nel changelog
121 field_is_in_chlog: Contesti mostrati nel changelog
122 field_is_in_roadmap: Contesti mostrati nel roadmap
122 field_is_in_roadmap: Contesti mostrati nel roadmap
123 field_login: Login
123 field_login: Login
124 field_mail_notification: Notifiche via e-mail
124 field_mail_notification: Notifiche via e-mail
125 field_admin: Amministratore
125 field_admin: Amministratore
126 field_last_login_on: Ultima connessione
126 field_last_login_on: Ultima connessione
127 field_language: Lingua
127 field_language: Lingua
128 field_effective_date: Data
128 field_effective_date: Data
129 field_password: Password
129 field_password: Password
130 field_new_password: Nuova password
130 field_new_password: Nuova password
131 field_password_confirmation: Conferma
131 field_password_confirmation: Conferma
132 field_version: Versione
132 field_version: Versione
133 field_type: Tipo
133 field_type: Tipo
134 field_host: Host
134 field_host: Host
135 field_port: Porta
135 field_port: Porta
136 field_account: Utenza
136 field_account: Utenza
137 field_base_dn: DN base
137 field_base_dn: DN base
138 field_attr_login: Attributo login
138 field_attr_login: Attributo login
139 field_attr_firstname: Attributo nome
139 field_attr_firstname: Attributo nome
140 field_attr_lastname: Attributo cognome
140 field_attr_lastname: Attributo cognome
141 field_attr_mail: Attributo e-mail
141 field_attr_mail: Attributo e-mail
142 field_onthefly: Creazione utenza "al volo"
142 field_onthefly: Creazione utenza "al volo"
143 field_start_date: Inizio
143 field_start_date: Inizio
144 field_done_ratio: %% completo
144 field_done_ratio: %% completo
145 field_auth_source: Modalità di autenticazione
145 field_auth_source: Modalità di autenticazione
146 field_hide_mail: Nascondi il mio indirizzo di e-mail
146 field_hide_mail: Nascondi il mio indirizzo di e-mail
147 field_comments: Commento
147 field_comments: Commento
148 field_url: URL
148 field_url: URL
149 field_start_page: Pagina principale
149 field_start_page: Pagina principale
150 field_subproject: Sottoprogetto
150 field_subproject: Sottoprogetto
151 field_hours: Hours
151 field_hours: Hours
152 field_activity: Activity
152 field_activity: Activity
153 field_spent_on: Data
153 field_spent_on: Data
154 field_identifier: Identifier
154 field_identifier: Identifier
155 field_is_filter: Used as a filter
155 field_is_filter: Used as a filter
156 field_issue_to_id: Related issue
156 field_issue_to_id: Related issue
157 field_delay: Delay
157 field_delay: Delay
158 field_assignable: Issues can be assigned to this role
158
159
159 setting_app_title: Titolo applicazione
160 setting_app_title: Titolo applicazione
160 setting_app_subtitle: Sottotitolo applicazione
161 setting_app_subtitle: Sottotitolo applicazione
161 setting_welcome_text: Testo di benvenuto
162 setting_welcome_text: Testo di benvenuto
162 setting_default_language: Lingua di default
163 setting_default_language: Lingua di default
163 setting_login_required: Autenticazione richiesta
164 setting_login_required: Autenticazione richiesta
164 setting_self_registration: Auto-registrazione abilitata
165 setting_self_registration: Auto-registrazione abilitata
165 setting_attachment_max_size: Massima dimensione allegati
166 setting_attachment_max_size: Massima dimensione allegati
166 setting_issues_export_limit: Limite esportazione contesti
167 setting_issues_export_limit: Limite esportazione contesti
167 setting_mail_from: Indirizzo sorgente e-mail
168 setting_mail_from: Indirizzo sorgente e-mail
168 setting_host_name: Nome host
169 setting_host_name: Nome host
169 setting_text_formatting: Formattazione testo
170 setting_text_formatting: Formattazione testo
170 setting_wiki_compression: Compressione di storia di Wiki
171 setting_wiki_compression: Compressione di storia di Wiki
171 setting_feeds_limit: Limite contenuti del feed
172 setting_feeds_limit: Limite contenuti del feed
172 setting_autofetch_changesets: Acquisisci automaticamente le commit
173 setting_autofetch_changesets: Acquisisci automaticamente le commit
173 setting_sys_api_enabled: Abilita WS per la gestione del repository
174 setting_sys_api_enabled: Abilita WS per la gestione del repository
174 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_fix_keywords: Fixing keywords
176 setting_commit_fix_keywords: Fixing keywords
176 setting_autologin: Autologin
177 setting_autologin: Autologin
177 setting_date_format: Date format
178 setting_date_format: Date format
178 setting_cross_project_issue_relations: Allow cross-project issue relations
179 setting_cross_project_issue_relations: Allow cross-project issue relations
179
180
180 label_user: Utente
181 label_user: Utente
181 label_user_plural: Utenti
182 label_user_plural: Utenti
182 label_user_new: Nuovo utente
183 label_user_new: Nuovo utente
183 label_project: Progetto
184 label_project: Progetto
184 label_project_new: Nuovo progetto
185 label_project_new: Nuovo progetto
185 label_project_plural: Progetti
186 label_project_plural: Progetti
186 label_project_all: All Projects
187 label_project_all: All Projects
187 label_project_latest: Ultimi progetti registrati
188 label_project_latest: Ultimi progetti registrati
188 label_issue: Contesto
189 label_issue: Contesto
189 label_issue_new: Nuovo contesto
190 label_issue_new: Nuovo contesto
190 label_issue_plural: Contesti
191 label_issue_plural: Contesti
191 label_issue_view_all: Mostra tutti i contesti
192 label_issue_view_all: Mostra tutti i contesti
192 label_document: Documento
193 label_document: Documento
193 label_document_new: Nuovo documento
194 label_document_new: Nuovo documento
194 label_document_plural: Documenti
195 label_document_plural: Documenti
195 label_role: Ruolo
196 label_role: Ruolo
196 label_role_plural: Ruoli
197 label_role_plural: Ruoli
197 label_role_new: Nuovo ruolo
198 label_role_new: Nuovo ruolo
198 label_role_and_permissions: Ruoli e permessi
199 label_role_and_permissions: Ruoli e permessi
199 label_member: Membro
200 label_member: Membro
200 label_member_new: Nuovo membro
201 label_member_new: Nuovo membro
201 label_member_plural: Membri
202 label_member_plural: Membri
202 label_tracker: Tracker
203 label_tracker: Tracker
203 label_tracker_plural: Tracker
204 label_tracker_plural: Tracker
204 label_tracker_new: Nuovo tracker
205 label_tracker_new: Nuovo tracker
205 label_workflow: Workflow
206 label_workflow: Workflow
206 label_issue_status: Stato contesti
207 label_issue_status: Stato contesti
207 label_issue_status_plural: Stati contesto
208 label_issue_status_plural: Stati contesto
208 label_issue_status_new: Nuovo stato
209 label_issue_status_new: Nuovo stato
209 label_issue_category: Categorie contesti
210 label_issue_category: Categorie contesti
210 label_issue_category_plural: Categorie contesto
211 label_issue_category_plural: Categorie contesto
211 label_issue_category_new: Nuova categoria
212 label_issue_category_new: Nuova categoria
212 label_custom_field: Campo personalizzato
213 label_custom_field: Campo personalizzato
213 label_custom_field_plural: Campi personalizzati
214 label_custom_field_plural: Campi personalizzati
214 label_custom_field_new: Nuovo campo personalizzato
215 label_custom_field_new: Nuovo campo personalizzato
215 label_enumerations: Enumerazioni
216 label_enumerations: Enumerazioni
216 label_enumeration_new: Nuovo valore
217 label_enumeration_new: Nuovo valore
217 label_information: Informazione
218 label_information: Informazione
218 label_information_plural: Informazioni
219 label_information_plural: Informazioni
219 label_please_login: Autenticarsi
220 label_please_login: Autenticarsi
220 label_register: Registrati
221 label_register: Registrati
221 label_password_lost: Password dimenticata
222 label_password_lost: Password dimenticata
222 label_home: Home
223 label_home: Home
223 label_my_page: Pagina personale
224 label_my_page: Pagina personale
224 label_my_account: La mia utenza
225 label_my_account: La mia utenza
225 label_my_projects: I miei progetti
226 label_my_projects: I miei progetti
226 label_administration: Amministrazione
227 label_administration: Amministrazione
227 label_login: Login
228 label_login: Login
228 label_logout: Logout
229 label_logout: Logout
229 label_help: Aiuto
230 label_help: Aiuto
230 label_reported_issues: Contesti segnalati
231 label_reported_issues: Contesti segnalati
231 label_assigned_to_me_issues: I miei contesti
232 label_assigned_to_me_issues: I miei contesti
232 label_last_login: Ultimo collegamento
233 label_last_login: Ultimo collegamento
233 label_last_updates: Ultimo aggiornamento
234 label_last_updates: Ultimo aggiornamento
234 label_last_updates_plural: %d ultimo aggiornamento
235 label_last_updates_plural: %d ultimo aggiornamento
235 label_registered_on: Registrato il
236 label_registered_on: Registrato il
236 label_activity: Attività
237 label_activity: Attività
237 label_new: Nuovo
238 label_new: Nuovo
238 label_logged_as: Autenticato come
239 label_logged_as: Autenticato come
239 label_environment: Ambiente
240 label_environment: Ambiente
240 label_authentication: Autenticazione
241 label_authentication: Autenticazione
241 label_auth_source: Modalità di autenticazione
242 label_auth_source: Modalità di autenticazione
242 label_auth_source_new: Nuova modalità di autenticazione
243 label_auth_source_new: Nuova modalità di autenticazione
243 label_auth_source_plural: Modalità di autenticazione
244 label_auth_source_plural: Modalità di autenticazione
244 label_subproject_plural: Sottoprogetti
245 label_subproject_plural: Sottoprogetti
245 label_min_max_length: Lunghezza minima - massima
246 label_min_max_length: Lunghezza minima - massima
246 label_list: Elenco
247 label_list: Elenco
247 label_date: Data
248 label_date: Data
248 label_integer: Intero
249 label_integer: Intero
249 label_boolean: Booleano
250 label_boolean: Booleano
250 label_string: Testo
251 label_string: Testo
251 label_text: Testo esteso
252 label_text: Testo esteso
252 label_attribute: Attributo
253 label_attribute: Attributo
253 label_attribute_plural: Attributi
254 label_attribute_plural: Attributi
254 label_download: %d Download
255 label_download: %d Download
255 label_download_plural: %d Download
256 label_download_plural: %d Download
256 label_no_data: Nessun dato disponibile
257 label_no_data: Nessun dato disponibile
257 label_change_status: Cambia stato
258 label_change_status: Cambia stato
258 label_history: Cronologia
259 label_history: Cronologia
259 label_attachment: File
260 label_attachment: File
260 label_attachment_new: Nuovo file
261 label_attachment_new: Nuovo file
261 label_attachment_delete: Elimina file
262 label_attachment_delete: Elimina file
262 label_attachment_plural: File
263 label_attachment_plural: File
263 label_report: Report
264 label_report: Report
264 label_report_plural: Report
265 label_report_plural: Report
265 label_news: Notizia
266 label_news: Notizia
266 label_news_new: Aggiungi notizia
267 label_news_new: Aggiungi notizia
267 label_news_plural: Notizie
268 label_news_plural: Notizie
268 label_news_latest: Utime notizie
269 label_news_latest: Utime notizie
269 label_news_view_all: Tutte le notizie
270 label_news_view_all: Tutte le notizie
270 label_change_log: Change log
271 label_change_log: Change log
271 label_settings: Impostazioni
272 label_settings: Impostazioni
272 label_overview: Panoramica
273 label_overview: Panoramica
273 label_version: Versione
274 label_version: Versione
274 label_version_new: Nuova versione
275 label_version_new: Nuova versione
275 label_version_plural: Versioni
276 label_version_plural: Versioni
276 label_confirmation: Conferma
277 label_confirmation: Conferma
277 label_export_to: Esporta su
278 label_export_to: Esporta su
278 label_read: Leggi...
279 label_read: Leggi...
279 label_public_projects: Progetti pubblici
280 label_public_projects: Progetti pubblici
280 label_open_issues: aperta
281 label_open_issues: aperta
281 label_open_issues_plural: aperte
282 label_open_issues_plural: aperte
282 label_closed_issues: chiusa
283 label_closed_issues: chiusa
283 label_closed_issues_plural: chiuse
284 label_closed_issues_plural: chiuse
284 label_total: Totale
285 label_total: Totale
285 label_permissions: Permessi
286 label_permissions: Permessi
286 label_current_status: Stato attuale
287 label_current_status: Stato attuale
287 label_new_statuses_allowed: Nuovi stati possibili
288 label_new_statuses_allowed: Nuovi stati possibili
288 label_all: tutti
289 label_all: tutti
289 label_none: nessuno
290 label_none: nessuno
290 label_next: Successivo
291 label_next: Successivo
291 label_previous: Precedente
292 label_previous: Precedente
292 label_used_by: Usato da
293 label_used_by: Usato da
293 label_details: Dettagli
294 label_details: Dettagli
294 label_add_note: Aggiungi una nota
295 label_add_note: Aggiungi una nota
295 label_per_page: Per pagina
296 label_per_page: Per pagina
296 label_calendar: Calendario
297 label_calendar: Calendario
297 label_months_from: mesi da
298 label_months_from: mesi da
298 label_gantt: Gantt
299 label_gantt: Gantt
299 label_internal: Interno
300 label_internal: Interno
300 label_last_changes: ultime %d modifiche
301 label_last_changes: ultime %d modifiche
301 label_change_view_all: Tutte le modifiche
302 label_change_view_all: Tutte le modifiche
302 label_personalize_page: Personalizza la pagina
303 label_personalize_page: Personalizza la pagina
303 label_comment: Commento
304 label_comment: Commento
304 label_comment_plural: Commenti
305 label_comment_plural: Commenti
305 label_comment_add: Aggiungi un commento
306 label_comment_add: Aggiungi un commento
306 label_comment_added: Commento aggiunto
307 label_comment_added: Commento aggiunto
307 label_comment_delete: Elimina commenti
308 label_comment_delete: Elimina commenti
308 label_query: Custom query
309 label_query: Custom query
309 label_query_plural: Query personalizzate
310 label_query_plural: Query personalizzate
310 label_query_new: Nuova query
311 label_query_new: Nuova query
311 label_filter_add: Aggiungi filtro
312 label_filter_add: Aggiungi filtro
312 label_filter_plural: Filtri
313 label_filter_plural: Filtri
313 label_equals: è
314 label_equals: è
314 label_not_equals: non è
315 label_not_equals: non è
315 label_in_less_than: è minore di
316 label_in_less_than: è minore di
316 label_in_more_than: è maggiore di
317 label_in_more_than: è maggiore di
317 label_in: in
318 label_in: in
318 label_today: oggi
319 label_today: oggi
319 label_less_than_ago: meno di giorni fa
320 label_less_than_ago: meno di giorni fa
320 label_more_than_ago: più di giorni fa
321 label_more_than_ago: più di giorni fa
321 label_ago: giorni fa
322 label_ago: giorni fa
322 label_contains: contiene
323 label_contains: contiene
323 label_not_contains: non contiene
324 label_not_contains: non contiene
324 label_day_plural: giorni
325 label_day_plural: giorni
325 label_repository: Repository
326 label_repository: Repository
326 label_browse: Browse
327 label_browse: Browse
327 label_modification: %d modifica
328 label_modification: %d modifica
328 label_modification_plural: %d modifiche
329 label_modification_plural: %d modifiche
329 label_revision: Versione
330 label_revision: Versione
330 label_revision_plural: Versioni
331 label_revision_plural: Versioni
331 label_added: aggiunto
332 label_added: aggiunto
332 label_modified: modificato
333 label_modified: modificato
333 label_deleted: eliminato
334 label_deleted: eliminato
334 label_latest_revision: Ultima versione
335 label_latest_revision: Ultima versione
335 label_latest_revision_plural: Ultime versioni
336 label_latest_revision_plural: Ultime versioni
336 label_view_revisions: Mostra versioni
337 label_view_revisions: Mostra versioni
337 label_max_size: Dimensione massima
338 label_max_size: Dimensione massima
338 label_on: 'on'
339 label_on: 'on'
339 label_sort_highest: Sposta in cima
340 label_sort_highest: Sposta in cima
340 label_sort_higher: Su
341 label_sort_higher: Su
341 label_sort_lower: Giù
342 label_sort_lower: Giù
342 label_sort_lowest: Sposta in fondo
343 label_sort_lowest: Sposta in fondo
343 label_roadmap: Roadmap
344 label_roadmap: Roadmap
344 label_roadmap_due_in: Da ultimare in
345 label_roadmap_due_in: Da ultimare in
345 label_roadmap_overdue: %s late
346 label_roadmap_overdue: %s late
346 label_roadmap_no_issues: Nessun contesto per questa versione
347 label_roadmap_no_issues: Nessun contesto per questa versione
347 label_search: Ricerca
348 label_search: Ricerca
348 label_result: %d risultato
349 label_result: %d risultato
349 label_result_plural: %d risultati
350 label_result_plural: %d risultati
350 label_all_words: Tutte le parole
351 label_all_words: Tutte le parole
351 label_wiki: Wiki
352 label_wiki: Wiki
352 label_wiki_edit: Modifica Wiki
353 label_wiki_edit: Modifica Wiki
353 label_wiki_edit_plural: Modfiche wiki
354 label_wiki_edit_plural: Modfiche wiki
354 label_wiki_page: Wiki page
355 label_wiki_page: Wiki page
355 label_wiki_page_plural: Wiki pages
356 label_wiki_page_plural: Wiki pages
356 label_page_index: Indice
357 label_page_index: Indice
357 label_current_version: Versione corrente
358 label_current_version: Versione corrente
358 label_preview: Anteprima
359 label_preview: Anteprima
359 label_feed_plural: Feed
360 label_feed_plural: Feed
360 label_changes_details: Particolari di tutti i cambiamenti
361 label_changes_details: Particolari di tutti i cambiamenti
361 label_issue_tracking: tracking dei contesti
362 label_issue_tracking: tracking dei contesti
362 label_spent_time: Tempo impiegato
363 label_spent_time: Tempo impiegato
363 label_f_hour: %.2f ora
364 label_f_hour: %.2f ora
364 label_f_hour_plural: %.2f ore
365 label_f_hour_plural: %.2f ore
365 label_time_tracking: Tracking del tempo
366 label_time_tracking: Tracking del tempo
366 label_change_plural: Modifiche
367 label_change_plural: Modifiche
367 label_statistics: Statistiche
368 label_statistics: Statistiche
368 label_commits_per_month: Commit per mese
369 label_commits_per_month: Commit per mese
369 label_commits_per_author: Commit per autore
370 label_commits_per_author: Commit per autore
370 label_view_diff: mostra differenze
371 label_view_diff: mostra differenze
371 label_diff_inline: inline
372 label_diff_inline: inline
372 label_diff_side_by_side: side by side
373 label_diff_side_by_side: side by side
373 label_options: Opzioni
374 label_options: Opzioni
374 label_copy_workflow_from: Copia workflow da
375 label_copy_workflow_from: Copia workflow da
375 label_permissions_report: Report permessi
376 label_permissions_report: Report permessi
376 label_watched_issues: Watched issues
377 label_watched_issues: Watched issues
377 label_related_issues: Related issues
378 label_related_issues: Related issues
378 label_applied_status: Applied status
379 label_applied_status: Applied status
379 label_loading: Loading...
380 label_loading: Loading...
380 label_relation_new: New relation
381 label_relation_new: New relation
381 label_relation_delete: Delete relation
382 label_relation_delete: Delete relation
382 label_relates_to: related to
383 label_relates_to: related to
383 label_duplicates: duplicates
384 label_duplicates: duplicates
384 label_blocks: blocks
385 label_blocks: blocks
385 label_blocked_by: blocked by
386 label_blocked_by: blocked by
386 label_precedes: precedes
387 label_precedes: precedes
387 label_follows: follows
388 label_follows: follows
388 label_end_to_start: start to end
389 label_end_to_start: start to end
389 label_end_to_end: end to end
390 label_end_to_end: end to end
390 label_start_to_start: start to start
391 label_start_to_start: start to start
391 label_start_to_end: start to end
392 label_start_to_end: start to end
392 label_stay_logged_in: Stay logged in
393 label_stay_logged_in: Stay logged in
393 label_disabled: disabled
394 label_disabled: disabled
394 label_show_completed_versions: Show completed versions
395 label_show_completed_versions: Show completed versions
395 label_me: me
396 label_me: me
396 label_board: Forum
397 label_board: Forum
397 label_board_new: New forum
398 label_board_new: New forum
398 label_board_plural: Forums
399 label_board_plural: Forums
399 label_topic_plural: Topics
400 label_topic_plural: Topics
400 label_message_plural: Messages
401 label_message_plural: Messages
401 label_message_last: Last message
402 label_message_last: Last message
402 label_message_new: New message
403 label_message_new: New message
403 label_reply_plural: Replies
404 label_reply_plural: Replies
404 label_send_information: Send account information to the user
405 label_send_information: Send account information to the user
405 label_year: Year
406 label_year: Year
406 label_month: Month
407 label_month: Month
407 label_week: Week
408 label_week: Week
408 label_date_from: From
409 label_date_from: From
409 label_date_to: To
410 label_date_to: To
410 label_language_based: Language based
411 label_language_based: Language based
411 label_sort_by: Sort by "%s"
412 label_sort_by: Sort by "%s"
412 label_send_test_email: Send a test email
413 label_send_test_email: Send a test email
413
414
414 button_login: Login
415 button_login: Login
415 button_submit: Invia
416 button_submit: Invia
416 button_save: Salva
417 button_save: Salva
417 button_check_all: Seleziona tutti
418 button_check_all: Seleziona tutti
418 button_uncheck_all: Deseleziona tutti
419 button_uncheck_all: Deseleziona tutti
419 button_delete: Elimina
420 button_delete: Elimina
420 button_create: Crea
421 button_create: Crea
421 button_test: Test
422 button_test: Test
422 button_edit: Modifica
423 button_edit: Modifica
423 button_add: Aggiungi
424 button_add: Aggiungi
424 button_change: Modifica
425 button_change: Modifica
425 button_apply: Applica
426 button_apply: Applica
426 button_clear: Pulisci
427 button_clear: Pulisci
427 button_lock: Blocca
428 button_lock: Blocca
428 button_unlock: Sblocca
429 button_unlock: Sblocca
429 button_download: Scarica
430 button_download: Scarica
430 button_list: Elenca
431 button_list: Elenca
431 button_view: Mostra
432 button_view: Mostra
432 button_move: Sposta
433 button_move: Sposta
433 button_back: Indietro
434 button_back: Indietro
434 button_cancel: Annulla
435 button_cancel: Annulla
435 button_activate: Attiva
436 button_activate: Attiva
436 button_sort: Ordina
437 button_sort: Ordina
437 button_log_time: Registra tempo
438 button_log_time: Registra tempo
438 button_rollback: Ripristina questa versione
439 button_rollback: Ripristina questa versione
439 button_watch: Watch
440 button_watch: Watch
440 button_unwatch: Unwatch
441 button_unwatch: Unwatch
441 button_reply: Reply
442 button_reply: Reply
442 button_archive: Archive
443 button_archive: Archive
443 button_unarchive: Unarchive
444 button_unarchive: Unarchive
444
445
445 status_active: attivo
446 status_active: attivo
446 status_registered: registrato
447 status_registered: registrato
447 status_locked: bloccato
448 status_locked: bloccato
448
449
449 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
450 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
450 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_min_max_length_info: 0 significa nessuna restrizione
452 text_min_max_length_info: 0 significa nessuna restrizione
452 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
453 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
453 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
454 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
454 text_are_you_sure: Sei sicuro ?
455 text_are_you_sure: Sei sicuro ?
455 text_journal_changed: cambiato da %s a %s
456 text_journal_changed: cambiato da %s a %s
456 text_journal_set_to: impostato a %s
457 text_journal_set_to: impostato a %s
457 text_journal_deleted: cancellato
458 text_journal_deleted: cancellato
458 text_tip_task_begin_day: attività che iniziano in questa giornata
459 text_tip_task_begin_day: attività che iniziano in questa giornata
459 text_tip_task_end_day: attività che terminano in questa giornata
460 text_tip_task_end_day: attività che terminano in questa giornata
460 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
461 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
461 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
462 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
462 text_caracters_maximum: massimo %d caratteri.
463 text_caracters_maximum: massimo %d caratteri.
463 text_length_between: Lunghezza compresa tra %d e %d caratteri.
464 text_length_between: Lunghezza compresa tra %d e %d caratteri.
464 text_tracker_no_workflow: Nessun workflow definito per questo tracker
465 text_tracker_no_workflow: Nessun workflow definito per questo tracker
465 text_unallowed_characters: Unallowed characters
466 text_unallowed_characters: Unallowed characters
466 text_comma_separated: Multiple values allowed (comma separated).
467 text_comma_separated: Multiple values allowed (comma separated).
467 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468
469
469 default_role_manager: Manager
470 default_role_manager: Manager
470 default_role_developper: Sviluppatore
471 default_role_developper: Sviluppatore
471 default_role_reporter: Reporter
472 default_role_reporter: Reporter
472 default_tracker_bug: Contesto
473 default_tracker_bug: Contesto
473 default_tracker_feature: Funzione
474 default_tracker_feature: Funzione
474 default_tracker_support: Supporto
475 default_tracker_support: Supporto
475 default_issue_status_new: Nuovo/a
476 default_issue_status_new: Nuovo/a
476 default_issue_status_assigned: Assegnato/a
477 default_issue_status_assigned: Assegnato/a
477 default_issue_status_resolved: Risolto/a
478 default_issue_status_resolved: Risolto/a
478 default_issue_status_feedback: Feedback
479 default_issue_status_feedback: Feedback
479 default_issue_status_closed: Chiuso/a
480 default_issue_status_closed: Chiuso/a
480 default_issue_status_rejected: Rifiutato/a
481 default_issue_status_rejected: Rifiutato/a
481 default_doc_category_user: Documentazione utente
482 default_doc_category_user: Documentazione utente
482 default_doc_category_tech: Documentazione tecnica
483 default_doc_category_tech: Documentazione tecnica
483 default_priority_low: Bassa
484 default_priority_low: Bassa
484 default_priority_normal: Normale
485 default_priority_normal: Normale
485 default_priority_high: Alta
486 default_priority_high: Alta
486 default_priority_urgent: Urgente
487 default_priority_urgent: Urgente
487 default_priority_immediate: Immediata
488 default_priority_immediate: Immediata
488 default_activity_design: Design
489 default_activity_design: Design
489 default_activity_development: Development
490 default_activity_development: Development
490
491
491 enumeration_issue_priorities: Priorità contesti
492 enumeration_issue_priorities: Priorità contesti
492 enumeration_doc_categories: Categorie di documenti
493 enumeration_doc_categories: Categorie di documenti
493 enumeration_activities: Attività (time tracking)
494 enumeration_activities: Attività (time tracking)
@@ -1,494 +1,495
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
4 actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
5 actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
5 actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_select_year_suffix:
8 actionview_datehelper_select_year_suffix:
9 actionview_datehelper_time_in_words_day: 1日
9 actionview_datehelper_time_in_words_day: 1日
10 actionview_datehelper_time_in_words_day_plural: %d日間
10 actionview_datehelper_time_in_words_day_plural: %d日間
11 actionview_datehelper_time_in_words_hour_about: 約1時間
11 actionview_datehelper_time_in_words_hour_about: 約1時間
12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
14 actionview_datehelper_time_in_words_minute: 1分
14 actionview_datehelper_time_in_words_minute: 1分
15 actionview_datehelper_time_in_words_minute_half: 約30秒
15 actionview_datehelper_time_in_words_minute_half: 約30秒
16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
17 actionview_datehelper_time_in_words_minute_plural: %d分
17 actionview_datehelper_time_in_words_minute_plural: %d分
18 actionview_datehelper_time_in_words_minute_single: 1分
18 actionview_datehelper_time_in_words_minute_single: 1分
19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
21 actionview_instancetag_blank_option: 選んでください
21 actionview_instancetag_blank_option: 選んでください
22
22
23 activerecord_error_inclusion: がリストに含まれていません
23 activerecord_error_inclusion: がリストに含まれていません
24 activerecord_error_exclusion: が予約されています
24 activerecord_error_exclusion: が予約されています
25 activerecord_error_invalid: が無効です
25 activerecord_error_invalid: が無効です
26 activerecord_error_confirmation: 確認のパスワードと合っていません
26 activerecord_error_confirmation: 確認のパスワードと合っていません
27 activerecord_error_accepted: を承諾してください
27 activerecord_error_accepted: を承諾してください
28 activerecord_error_empty: が空です
28 activerecord_error_empty: が空です
29 activerecord_error_blank: が空白です
29 activerecord_error_blank: が空白です
30 activerecord_error_too_long: が長すぎます
30 activerecord_error_too_long: が長すぎます
31 activerecord_error_too_short: が短かすぎます
31 activerecord_error_too_short: が短かすぎます
32 activerecord_error_wrong_length: の長さが間違っています
32 activerecord_error_wrong_length: の長さが間違っています
33 activerecord_error_taken: はすでに登録されています
33 activerecord_error_taken: はすでに登録されています
34 activerecord_error_not_a_number: が数字ではありません
34 activerecord_error_not_a_number: が数字ではありません
35 activerecord_error_not_a_date: の日付が間違っています
35 activerecord_error_not_a_date: の日付が間違っています
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
37 activerecord_error_not_same_project: 同じプロジェクトに属していません
37 activerecord_error_not_same_project: 同じプロジェクトに属していません
38 activerecord_error_circular_dependency: この関係では、循環依存になります
38 activerecord_error_circular_dependency: この関係では、循環依存になります
39
39
40 general_fmt_age: %d歳
40 general_fmt_age: %d歳
41 general_fmt_age_plural: %d歳
41 general_fmt_age_plural: %d歳
42 general_fmt_date: %%Y年%%m月%%d日
42 general_fmt_date: %%Y年%%m月%%d日
43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
45 general_fmt_time: %%H:%%M %%p
45 general_fmt_time: %%H:%%M %%p
46 general_text_No: 'いいえ'
46 general_text_No: 'いいえ'
47 general_text_Yes: 'はい'
47 general_text_Yes: 'はい'
48 general_text_no: 'いいえ'
48 general_text_no: 'いいえ'
49 general_text_yes: 'はい'
49 general_text_yes: 'はい'
50 general_lang_name: 'Japanese (日本語)'
50 general_lang_name: 'Japanese (日本語)'
51 general_csv_separator: ','
51 general_csv_separator: ','
52 general_csv_encoding: SJIS
52 general_csv_encoding: SJIS
53 general_pdf_encoding: SJIS
53 general_pdf_encoding: SJIS
54 general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日
54 general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日
55
55
56 notice_account_updated: アカウントが更新されました。
56 notice_account_updated: アカウントが更新されました。
57 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
57 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
58 notice_account_password_updated: パスワードが更新されました。
58 notice_account_password_updated: パスワードが更新されました。
59 notice_account_wrong_password: パスワードが違います
59 notice_account_wrong_password: パスワードが違います
60 notice_account_register_done: アカウントが作成されました。
60 notice_account_register_done: アカウントが作成されました。
61 notice_account_unknown_email: ユーザが存在しません。
61 notice_account_unknown_email: ユーザが存在しません。
62 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
62 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
63 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
63 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
64 notice_account_activated: アカウントが有効になりました。ログインできます。
64 notice_account_activated: アカウントが有効になりました。ログインできます。
65 notice_successful_create: 作成しました。
65 notice_successful_create: 作成しました。
66 notice_successful_update: 更新しました。
66 notice_successful_update: 更新しました。
67 notice_successful_delete: 削除しました。
67 notice_successful_delete: 削除しました。
68 notice_successful_connection: 接続しました。
68 notice_successful_connection: 接続しました。
69 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
69 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
70 notice_locking_conflict: 別のユーザがデータを更新しています。
70 notice_locking_conflict: 別のユーザがデータを更新しています。
71 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
71 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
72 notice_not_authorized: このページにアクセスするには認証が必要です。
72 notice_not_authorized: このページにアクセスするには認証が必要です。
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)"
74 notice_email_error: An error occurred while sending mail (%s)"
75
75
76 mail_subject_lost_password: redMineパスワード
76 mail_subject_lost_password: redMineパスワード
77 mail_subject_register: redMineアカウントが有効になりました
77 mail_subject_register: redMineアカウントが有効になりました
78
78
79 gui_validation_error: 1件のエラー
79 gui_validation_error: 1件のエラー
80 gui_validation_error_plural: %d件のエラー
80 gui_validation_error_plural: %d件のエラー
81
81
82 field_name: 名前
82 field_name: 名前
83 field_description: 説明
83 field_description: 説明
84 field_summary: サマリ
84 field_summary: サマリ
85 field_is_required: 必須
85 field_is_required: 必須
86 field_firstname: 名前
86 field_firstname: 名前
87 field_lastname: 苗字
87 field_lastname: 苗字
88 field_mail: メールアドレス
88 field_mail: メールアドレス
89 field_filename: ファイル
89 field_filename: ファイル
90 field_filesize: サイズ
90 field_filesize: サイズ
91 field_downloads: ダウンロード
91 field_downloads: ダウンロード
92 field_author: 起票者
92 field_author: 起票者
93 field_created_on: 作成日
93 field_created_on: 作成日
94 field_updated_on: 更新日
94 field_updated_on: 更新日
95 field_field_format: 書式
95 field_field_format: 書式
96 field_is_for_all: 全プロジェクト向け
96 field_is_for_all: 全プロジェクト向け
97 field_possible_values: 選択肢
97 field_possible_values: 選択肢
98 field_regexp: 正規表現
98 field_regexp: 正規表現
99 field_min_length: 最小値
99 field_min_length: 最小値
100 field_max_length: 最大値
100 field_max_length: 最大値
101 field_value:
101 field_value:
102 field_category: カテゴリ
102 field_category: カテゴリ
103 field_title: タイトル
103 field_title: タイトル
104 field_project: プロジェクト
104 field_project: プロジェクト
105 field_issue: 問題
105 field_issue: 問題
106 field_status: ステータス
106 field_status: ステータス
107 field_notes: 注記
107 field_notes: 注記
108 field_is_closed: 終了した問題
108 field_is_closed: 終了した問題
109 field_is_default: デフォルトのステータス
109 field_is_default: デフォルトのステータス
110 field_html_color:
110 field_html_color:
111 field_tracker: トラッカー
111 field_tracker: トラッカー
112 field_subject: 題名
112 field_subject: 題名
113 field_due_date: 期限日
113 field_due_date: 期限日
114 field_assigned_to: 担当者
114 field_assigned_to: 担当者
115 field_priority: 優先度
115 field_priority: 優先度
116 field_fixed_version: 修正されたバージョン
116 field_fixed_version: 修正されたバージョン
117 field_user: ユーザ
117 field_user: ユーザ
118 field_role: 役割
118 field_role: 役割
119 field_homepage: ホームページ
119 field_homepage: ホームページ
120 field_is_public: 公開
120 field_is_public: 公開
121 field_parent: 親プロジェクト名
121 field_parent: 親プロジェクト名
122 field_is_in_chlog: 変更記録に表示されている問題
122 field_is_in_chlog: 変更記録に表示されている問題
123 field_is_in_roadmap: ロードマップに表示されている問題
123 field_is_in_roadmap: ロードマップに表示されている問題
124 field_login: ログイン
124 field_login: ログイン
125 field_mail_notification: メール通知
125 field_mail_notification: メール通知
126 field_admin: 管理者
126 field_admin: 管理者
127 field_last_login_on: 最終接続日
127 field_last_login_on: 最終接続日
128 field_language: 言語
128 field_language: 言語
129 field_effective_date: 日付
129 field_effective_date: 日付
130 field_password: パスワード
130 field_password: パスワード
131 field_new_password: 新しいパスワード
131 field_new_password: 新しいパスワード
132 field_password_confirmation: パスワードの確認
132 field_password_confirmation: パスワードの確認
133 field_version: バージョン
133 field_version: バージョン
134 field_type: タイプ
134 field_type: タイプ
135 field_host: ホスト
135 field_host: ホスト
136 field_port: ポート
136 field_port: ポート
137 field_account: アカウント
137 field_account: アカウント
138 field_base_dn: Base DN
138 field_base_dn: Base DN
139 field_attr_login: ログイン名属性
139 field_attr_login: ログイン名属性
140 field_attr_firstname: 名前属性
140 field_attr_firstname: 名前属性
141 field_attr_lastname: 苗字属性
141 field_attr_lastname: 苗字属性
142 field_attr_mail: メール属性
142 field_attr_mail: メール属性
143 field_onthefly: あわせてユーザを作成
143 field_onthefly: あわせてユーザを作成
144 field_start_date: 開始日
144 field_start_date: 開始日
145 field_done_ratio: 進捗 %%
145 field_done_ratio: 進捗 %%
146 field_auth_source: 認証モード
146 field_auth_source: 認証モード
147 field_hide_mail: メールアドレスを隠す
147 field_hide_mail: メールアドレスを隠す
148 field_comments: コメント
148 field_comments: コメント
149 field_url: URL
149 field_url: URL
150 field_start_page: メインページ
150 field_start_page: メインページ
151 field_subproject: サブプロジェクト
151 field_subproject: サブプロジェクト
152 field_hours: 時間
152 field_hours: 時間
153 field_activity: 活動
153 field_activity: 活動
154 field_spent_on: 日付
154 field_spent_on: 日付
155 field_identifier: 識別子
155 field_identifier: 識別子
156 field_is_filter: フィルタとして使う
156 field_is_filter: フィルタとして使う
157 field_issue_to_id: 関連する問題
157 field_issue_to_id: 関連する問題
158 field_delay: 遅延
158 field_delay: 遅延
159 field_assignable: Issues can be assigned to this role
159
160
160 setting_app_title: アプリケーションのタイトル
161 setting_app_title: アプリケーションのタイトル
161 setting_app_subtitle: アプリケーションのサブタイトル
162 setting_app_subtitle: アプリケーションのサブタイトル
162 setting_welcome_text: ウェルカムメッセージ
163 setting_welcome_text: ウェルカムメッセージ
163 setting_default_language: 既定の言語
164 setting_default_language: 既定の言語
164 setting_login_required: 認証が必要
165 setting_login_required: 認証が必要
165 setting_self_registration: ユーザは自分で登録できる
166 setting_self_registration: ユーザは自分で登録できる
166 setting_attachment_max_size: 添付の最大サイズ
167 setting_attachment_max_size: 添付の最大サイズ
167 setting_issues_export_limit: 出力する問題数の上限
168 setting_issues_export_limit: 出力する問題数の上限
168 setting_mail_from: 送信元メールアドレス
169 setting_mail_from: 送信元メールアドレス
169 setting_host_name: ホスト名
170 setting_host_name: ホスト名
170 setting_text_formatting: テキストの書式
171 setting_text_formatting: テキストの書式
171 setting_wiki_compression: Wiki履歴を圧縮する
172 setting_wiki_compression: Wiki履歴を圧縮する
172 setting_feeds_limit: フィード内容の上限
173 setting_feeds_limit: フィード内容の上限
173 setting_autofetch_changesets: コミットを自動取得する
174 setting_autofetch_changesets: コミットを自動取得する
174 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
175 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
175 setting_commit_ref_keywords: 参照用キーワード
176 setting_commit_ref_keywords: 参照用キーワード
176 setting_commit_fix_keywords: 修正用キーワード
177 setting_commit_fix_keywords: 修正用キーワード
177 setting_autologin: 自動ログイン
178 setting_autologin: 自動ログイン
178 setting_date_format: Date format
179 setting_date_format: Date format
179 setting_cross_project_issue_relations: Allow cross-project issue relations
180 setting_cross_project_issue_relations: Allow cross-project issue relations
180
181
181 label_user: ユーザ
182 label_user: ユーザ
182 label_user_plural: ユーザ
183 label_user_plural: ユーザ
183 label_user_new: 新しいユーザ
184 label_user_new: 新しいユーザ
184 label_project: プロジェクト
185 label_project: プロジェクト
185 label_project_new: 新しいプロジェクト
186 label_project_new: 新しいプロジェクト
186 label_project_plural: プロジェクト
187 label_project_plural: プロジェクト
187 label_project_all: 全プロジェクト
188 label_project_all: 全プロジェクト
188 label_project_latest: 最近のプロジェクト
189 label_project_latest: 最近のプロジェクト
189 label_issue: 問題
190 label_issue: 問題
190 label_issue_new: 新しい問題
191 label_issue_new: 新しい問題
191 label_issue_plural: 問題
192 label_issue_plural: 問題
192 label_issue_view_all: 問題を全て見る
193 label_issue_view_all: 問題を全て見る
193 label_document: 文書
194 label_document: 文書
194 label_document_new: 新しい文書
195 label_document_new: 新しい文書
195 label_document_plural: 文書
196 label_document_plural: 文書
196 label_role: ロール
197 label_role: ロール
197 label_role_plural: ロール
198 label_role_plural: ロール
198 label_role_new: 新しいロール
199 label_role_new: 新しいロール
199 label_role_and_permissions: ロールと権限
200 label_role_and_permissions: ロールと権限
200 label_member: メンバー
201 label_member: メンバー
201 label_member_new: 新しいメンバー
202 label_member_new: 新しいメンバー
202 label_member_plural: メンバー
203 label_member_plural: メンバー
203 label_tracker: トラッカー
204 label_tracker: トラッカー
204 label_tracker_plural: トラッカー
205 label_tracker_plural: トラッカー
205 label_tracker_new: 新しいトラッカーを作成
206 label_tracker_new: 新しいトラッカーを作成
206 label_workflow: ワークフロー
207 label_workflow: ワークフロー
207 label_issue_status: 問題のステータス
208 label_issue_status: 問題のステータス
208 label_issue_status_plural: 問題のステータス
209 label_issue_status_plural: 問題のステータス
209 label_issue_status_new: 新しいステータス
210 label_issue_status_new: 新しいステータス
210 label_issue_category: 問題のカテゴリ
211 label_issue_category: 問題のカテゴリ
211 label_issue_category_plural: 問題のカテゴリ
212 label_issue_category_plural: 問題のカテゴリ
212 label_issue_category_new: 新しいカテゴリ
213 label_issue_category_new: 新しいカテゴリ
213 label_custom_field: カスタムフィールド
214 label_custom_field: カスタムフィールド
214 label_custom_field_plural: カスタムフィールド
215 label_custom_field_plural: カスタムフィールド
215 label_custom_field_new: 新しいカスタムフィールドを作成
216 label_custom_field_new: 新しいカスタムフィールドを作成
216 label_enumerations: 列挙項目
217 label_enumerations: 列挙項目
217 label_enumeration_new: 新しい値
218 label_enumeration_new: 新しい値
218 label_information: 情報
219 label_information: 情報
219 label_information_plural: 情報
220 label_information_plural: 情報
220 label_please_login: ログインしてください
221 label_please_login: ログインしてください
221 label_register: 登録する
222 label_register: 登録する
222 label_password_lost: パスワードの再発行
223 label_password_lost: パスワードの再発行
223 label_home: ホーム
224 label_home: ホーム
224 label_my_page: マイページ
225 label_my_page: マイページ
225 label_my_account: マイアカウント
226 label_my_account: マイアカウント
226 label_my_projects: マイプロジェクト
227 label_my_projects: マイプロジェクト
227 label_administration: 管理
228 label_administration: 管理
228 label_login: ログイン
229 label_login: ログイン
229 label_logout: ログアウト
230 label_logout: ログアウト
230 label_help: ヘルプ
231 label_help: ヘルプ
231 label_reported_issues: 報告した問題
232 label_reported_issues: 報告した問題
232 label_assigned_to_me_issues: 担当している問題
233 label_assigned_to_me_issues: 担当している問題
233 label_last_login: 最近の接続
234 label_last_login: 最近の接続
234 label_last_updates: 最近の更新1件
235 label_last_updates: 最近の更新1件
235 label_last_updates_plural: 最近の更新%d件
236 label_last_updates_plural: 最近の更新%d件
236 label_registered_on: 登録日
237 label_registered_on: 登録日
237 label_activity: 活動
238 label_activity: 活動
238 label_new: 新しく作成
239 label_new: 新しく作成
239 label_logged_as: ログイン中:
240 label_logged_as: ログイン中:
240 label_environment: 環境
241 label_environment: 環境
241 label_authentication: 認証
242 label_authentication: 認証
242 label_auth_source: 認証モード
243 label_auth_source: 認証モード
243 label_auth_source_new: 新しい認証モード
244 label_auth_source_new: 新しい認証モード
244 label_auth_source_plural: 認証モード
245 label_auth_source_plural: 認証モード
245 label_subproject_plural: サブプロジェクト
246 label_subproject_plural: サブプロジェクト
246 label_min_max_length: 最小値 - 最大値の長さ
247 label_min_max_length: 最小値 - 最大値の長さ
247 label_list: リストから選択
248 label_list: リストから選択
248 label_date: 日付
249 label_date: 日付
249 label_integer: 整数
250 label_integer: 整数
250 label_boolean: 真偽値
251 label_boolean: 真偽値
251 label_string: テキスト
252 label_string: テキスト
252 label_text: 長いテキスト
253 label_text: 長いテキスト
253 label_attribute: 属性
254 label_attribute: 属性
254 label_attribute_plural: 属性
255 label_attribute_plural: 属性
255 label_download: %d ダウンロード
256 label_download: %d ダウンロード
256 label_download_plural: %d ダウンロード
257 label_download_plural: %d ダウンロード
257 label_no_data: 表示するデータがありません
258 label_no_data: 表示するデータがありません
258 label_change_status: ステータスの変更
259 label_change_status: ステータスの変更
259 label_history: 履歴
260 label_history: 履歴
260 label_attachment: ファイル
261 label_attachment: ファイル
261 label_attachment_new: 新しいファイル
262 label_attachment_new: 新しいファイル
262 label_attachment_delete: ファイルを削除
263 label_attachment_delete: ファイルを削除
263 label_attachment_plural: ファイル
264 label_attachment_plural: ファイル
264 label_report: レポート
265 label_report: レポート
265 label_report_plural: レポート
266 label_report_plural: レポート
266 label_news: ニュース
267 label_news: ニュース
267 label_news_new: ニュースを追加
268 label_news_new: ニュースを追加
268 label_news_plural: ニュース
269 label_news_plural: ニュース
269 label_news_latest: 最新ニュース
270 label_news_latest: 最新ニュース
270 label_news_view_all: 全てのニュースを見る
271 label_news_view_all: 全てのニュースを見る
271 label_change_log: 変更記録
272 label_change_log: 変更記録
272 label_settings: 設定
273 label_settings: 設定
273 label_overview: 概要
274 label_overview: 概要
274 label_version: バージョン
275 label_version: バージョン
275 label_version_new: 新しいバージョン
276 label_version_new: 新しいバージョン
276 label_version_plural: バージョン
277 label_version_plural: バージョン
277 label_confirmation: 確認
278 label_confirmation: 確認
278 label_export_to: 他の形式に出力
279 label_export_to: 他の形式に出力
279 label_read: 読む...
280 label_read: 読む...
280 label_public_projects: 公開プロジェクト
281 label_public_projects: 公開プロジェクト
281 label_open_issues: 未完了
282 label_open_issues: 未完了
282 label_open_issues_plural: 未完了
283 label_open_issues_plural: 未完了
283 label_closed_issues: 終了
284 label_closed_issues: 終了
284 label_closed_issues_plural: 終了
285 label_closed_issues_plural: 終了
285 label_total: 合計
286 label_total: 合計
286 label_permissions: 権限
287 label_permissions: 権限
287 label_current_status: 現在のステータス
288 label_current_status: 現在のステータス
288 label_new_statuses_allowed: ステータスの移行先
289 label_new_statuses_allowed: ステータスの移行先
289 label_all: 全て
290 label_all: 全て
290 label_none: なし
291 label_none: なし
291 label_next:
292 label_next:
292 label_previous:
293 label_previous:
293 label_used_by: 使用中
294 label_used_by: 使用中
294 label_details: 詳細
295 label_details: 詳細
295 label_add_note: 注記を追加
296 label_add_note: 注記を追加
296 label_per_page: ページ毎
297 label_per_page: ページ毎
297 label_calendar: カレンダー
298 label_calendar: カレンダー
298 label_months_from: ヶ月 from
299 label_months_from: ヶ月 from
299 label_gantt: ガントチャート
300 label_gantt: ガントチャート
300 label_internal: Internal
301 label_internal: Internal
301 label_last_changes: 最新の変更%d件
302 label_last_changes: 最新の変更%d件
302 label_change_view_all: 全ての変更を見る
303 label_change_view_all: 全ての変更を見る
303 label_personalize_page: このページをパーソナライズする
304 label_personalize_page: このページをパーソナライズする
304 label_comment: コメント
305 label_comment: コメント
305 label_comment_plural: コメント
306 label_comment_plural: コメント
306 label_comment_add: コメント追加
307 label_comment_add: コメント追加
307 label_comment_added: 追加されたコメント
308 label_comment_added: 追加されたコメント
308 label_comment_delete: コメント削除
309 label_comment_delete: コメント削除
309 label_query: カスタムクエリ
310 label_query: カスタムクエリ
310 label_query_plural: カスタムクエリ
311 label_query_plural: カスタムクエリ
311 label_query_new: 新しいクエリ
312 label_query_new: 新しいクエリ
312 label_filter_add: フィルタ追加
313 label_filter_add: フィルタ追加
313 label_filter_plural: フィルタ
314 label_filter_plural: フィルタ
314 label_equals: 等しい
315 label_equals: 等しい
315 label_not_equals: 等しくない
316 label_not_equals: 等しくない
316 label_in_less_than: 残日数がこれより多い
317 label_in_less_than: 残日数がこれより多い
317 label_in_more_than: 残日数がこれより少ない
318 label_in_more_than: 残日数がこれより少ない
318 label_in: 残日数
319 label_in: 残日数
319 label_today: 今日
320 label_today: 今日
320 label_less_than_ago: 経過日数がこれより少ない
321 label_less_than_ago: 経過日数がこれより少ない
321 label_more_than_ago: 経過日数がこれより多い
322 label_more_than_ago: 経過日数がこれより多い
322 label_ago: 日前
323 label_ago: 日前
323 label_contains: 含む
324 label_contains: 含む
324 label_not_contains: 含まない
325 label_not_contains: 含まない
325 label_day_plural:
326 label_day_plural:
326 label_repository: リポジトリ
327 label_repository: リポジトリ
327 label_browse: ブラウズ
328 label_browse: ブラウズ
328 label_modification: %d点の変更
329 label_modification: %d点の変更
329 label_modification_plural: %d点の変更
330 label_modification_plural: %d点の変更
330 label_revision: リビジョン
331 label_revision: リビジョン
331 label_revision_plural: リビジョン
332 label_revision_plural: リビジョン
332 label_added: 追加
333 label_added: 追加
333 label_modified: 変更
334 label_modified: 変更
334 label_deleted: 削除
335 label_deleted: 削除
335 label_latest_revision: 最新リビジョン
336 label_latest_revision: 最新リビジョン
336 label_latest_revision_plural: 最新リビジョン
337 label_latest_revision_plural: 最新リビジョン
337 label_view_revisions: リビジョンを見る
338 label_view_revisions: リビジョンを見る
338 label_max_size: 最大サイズ
339 label_max_size: 最大サイズ
339 label_on: 合計
340 label_on: 合計
340 label_sort_highest: 一番上へ
341 label_sort_highest: 一番上へ
341 label_sort_higher: 上へ
342 label_sort_higher: 上へ
342 label_sort_lower: 下へ
343 label_sort_lower: 下へ
343 label_sort_lowest: 一番下へ
344 label_sort_lowest: 一番下へ
344 label_roadmap: ロードマップ
345 label_roadmap: ロードマップ
345 label_roadmap_due_in: 期日まで
346 label_roadmap_due_in: 期日まで
346 label_roadmap_overdue: %s late
347 label_roadmap_overdue: %s late
347 label_roadmap_no_issues: このバージョンに向けての問題はありません
348 label_roadmap_no_issues: このバージョンに向けての問題はありません
348 label_search: 検索
349 label_search: 検索
349 label_result: %d件の結果
350 label_result: %d件の結果
350 label_result_plural: %d件の結果
351 label_result_plural: %d件の結果
351 label_all_words: すべての単語
352 label_all_words: すべての単語
352 label_wiki: Wiki
353 label_wiki: Wiki
353 label_wiki_edit: Wiki編集
354 label_wiki_edit: Wiki編集
354 label_wiki_edit_plural: Wiki編集
355 label_wiki_edit_plural: Wiki編集
355 label_wiki_page: Wiki page
356 label_wiki_page: Wiki page
356 label_wiki_page_plural: Wikiページ
357 label_wiki_page_plural: Wikiページ
357 label_page_index: 索引
358 label_page_index: 索引
358 label_current_version: 最新版
359 label_current_version: 最新版
359 label_preview: プレビュー
360 label_preview: プレビュー
360 label_feed_plural: フィード
361 label_feed_plural: フィード
361 label_changes_details: 全変更の詳細
362 label_changes_details: 全変更の詳細
362 label_issue_tracking: 問題トラッキング
363 label_issue_tracking: 問題トラッキング
363 label_spent_time: 経過時間
364 label_spent_time: 経過時間
364 label_f_hour: %.2f 時間
365 label_f_hour: %.2f 時間
365 label_f_hour_plural: %.2f 時間
366 label_f_hour_plural: %.2f 時間
366 label_time_tracking: 時間トラッキング
367 label_time_tracking: 時間トラッキング
367 label_change_plural: 変更
368 label_change_plural: 変更
368 label_statistics: 統計
369 label_statistics: 統計
369 label_commits_per_month: 月別のコミット
370 label_commits_per_month: 月別のコミット
370 label_commits_per_author: 起票者別のコミット
371 label_commits_per_author: 起票者別のコミット
371 label_view_diff: 差分を見る
372 label_view_diff: 差分を見る
372 label_diff_inline: インライン
373 label_diff_inline: インライン
373 label_diff_side_by_side: 横に並べる
374 label_diff_side_by_side: 横に並べる
374 label_options: オプション
375 label_options: オプション
375 label_copy_workflow_from: ワークフローをここからコピー
376 label_copy_workflow_from: ワークフローをここからコピー
376 label_permissions_report: 権限レポート
377 label_permissions_report: 権限レポート
377 label_watched_issues: ウォッチ中の問題
378 label_watched_issues: ウォッチ中の問題
378 label_related_issues: 関連する問題
379 label_related_issues: 関連する問題
379 label_applied_status: 適用されたステータス
380 label_applied_status: 適用されたステータス
380 label_loading: ロード中...
381 label_loading: ロード中...
381 label_relation_new: 新しい関連
382 label_relation_new: 新しい関連
382 label_relation_delete: 関連の削除
383 label_relation_delete: 関連の削除
383 label_relates_to: 関係している
384 label_relates_to: 関係している
384 label_duplicates: 重複している
385 label_duplicates: 重複している
385 label_blocks: ブロックしている
386 label_blocks: ブロックしている
386 label_blocked_by: ブロックされている
387 label_blocked_by: ブロックされている
387 label_precedes: 先行する
388 label_precedes: 先行する
388 label_follows: 後続する
389 label_follows: 後続する
389 label_end_to_start: start to end
390 label_end_to_start: start to end
390 label_end_to_end: end to end
391 label_end_to_end: end to end
391 label_start_to_start: start to start
392 label_start_to_start: start to start
392 label_start_to_end: start to end
393 label_start_to_end: start to end
393 label_stay_logged_in: ログインを維持
394 label_stay_logged_in: ログインを維持
394 label_disabled: 無効
395 label_disabled: 無効
395 label_show_completed_versions: 完了したバージョンを表示
396 label_show_completed_versions: 完了したバージョンを表示
396 label_me: 自分
397 label_me: 自分
397 label_board: フォーラム
398 label_board: フォーラム
398 label_board_new: 新しいフォーラム
399 label_board_new: 新しいフォーラム
399 label_board_plural: フォーラム
400 label_board_plural: フォーラム
400 label_topic_plural: トピック
401 label_topic_plural: トピック
401 label_message_plural: メッセージ
402 label_message_plural: メッセージ
402 label_message_last: 最新のメッセージ
403 label_message_last: 最新のメッセージ
403 label_message_new: 新しいメッセージ
404 label_message_new: 新しいメッセージ
404 label_reply_plural: 返答
405 label_reply_plural: 返答
405 label_send_information: アカウント情報をユーザに送信
406 label_send_information: アカウント情報をユーザに送信
406 label_year: Year
407 label_year: Year
407 label_month: Month
408 label_month: Month
408 label_week: Week
409 label_week: Week
409 label_date_from: From
410 label_date_from: From
410 label_date_to: To
411 label_date_to: To
411 label_language_based: Language based
412 label_language_based: Language based
412 label_sort_by: Sort by "%s"
413 label_sort_by: Sort by "%s"
413 label_send_test_email: Send a test email
414 label_send_test_email: Send a test email
414
415
415 button_login: ログイン
416 button_login: ログイン
416 button_submit: 変更
417 button_submit: 変更
417 button_save: 保存
418 button_save: 保存
418 button_check_all: チェックを全部つける
419 button_check_all: チェックを全部つける
419 button_uncheck_all: チェックを全部外す
420 button_uncheck_all: チェックを全部外す
420 button_delete: 削除
421 button_delete: 削除
421 button_create: 作成
422 button_create: 作成
422 button_test: テスト
423 button_test: テスト
423 button_edit: 編集
424 button_edit: 編集
424 button_add: 追加
425 button_add: 追加
425 button_change: 変更
426 button_change: 変更
426 button_apply: 適用
427 button_apply: 適用
427 button_clear: クリア
428 button_clear: クリア
428 button_lock: ロック
429 button_lock: ロック
429 button_unlock: アンロック
430 button_unlock: アンロック
430 button_download: ダウンロード
431 button_download: ダウンロード
431 button_list: 一覧
432 button_list: 一覧
432 button_view: 見る
433 button_view: 見る
433 button_move: 移動
434 button_move: 移動
434 button_back: 戻る
435 button_back: 戻る
435 button_cancel: キャンセル
436 button_cancel: キャンセル
436 button_activate: 有効にする
437 button_activate: 有効にする
437 button_sort: ソート
438 button_sort: ソート
438 button_log_time: 時間を記録
439 button_log_time: 時間を記録
439 button_rollback: このバージョンにロールバック
440 button_rollback: このバージョンにロールバック
440 button_watch: ウォッチ
441 button_watch: ウォッチ
441 button_unwatch: ウォッチをやめる
442 button_unwatch: ウォッチをやめる
442 button_reply: 返答
443 button_reply: 返答
443 button_archive: 書庫に保存
444 button_archive: 書庫に保存
444 button_unarchive: 書庫から戻す
445 button_unarchive: 書庫から戻す
445
446
446 status_active: 有効
447 status_active: 有効
447 status_registered: 登録
448 status_registered: 登録
448 status_locked: ロック
449 status_locked: ロック
449
450
450 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
451 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
451 text_regexp_info: 例) ^[A-Z0-9]+$
452 text_regexp_info: 例) ^[A-Z0-9]+$
452 text_min_max_length_info: 0だと無制限になります
453 text_min_max_length_info: 0だと無制限になります
453 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
454 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
454 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
455 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
455 text_are_you_sure: 本当に?
456 text_are_you_sure: 本当に?
456 text_journal_changed: %sから%sに変更
457 text_journal_changed: %sから%sに変更
457 text_journal_set_to: %sにセット
458 text_journal_set_to: %sにセット
458 text_journal_deleted: 削除
459 text_journal_deleted: 削除
459 text_tip_task_begin_day: この日に開始するタスク
460 text_tip_task_begin_day: この日に開始するタスク
460 text_tip_task_end_day: この日に終了するタスク
461 text_tip_task_end_day: この日に終了するタスク
461 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
462 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
462 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
463 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
463 text_caracters_maximum: 最大 %d 文字です。
464 text_caracters_maximum: 最大 %d 文字です。
464 text_length_between: 長さは %d から %d 文字までです。
465 text_length_between: 長さは %d から %d 文字までです。
465 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
466 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
466 text_unallowed_characters: 使えない文字です
467 text_unallowed_characters: 使えない文字です
467 text_comma_separated: (カンマで区切った)複数の値が使えます
468 text_comma_separated: (カンマで区切った)複数の値が使えます
468 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
469 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
469
470
470 default_role_manager: 管理者
471 default_role_manager: 管理者
471 default_role_developper: 開発者
472 default_role_developper: 開発者
472 default_role_reporter: 報告者
473 default_role_reporter: 報告者
473 default_tracker_bug: バグ
474 default_tracker_bug: バグ
474 default_tracker_feature: 機能
475 default_tracker_feature: 機能
475 default_tracker_support: サポート
476 default_tracker_support: サポート
476 default_issue_status_new: 新規
477 default_issue_status_new: 新規
477 default_issue_status_assigned: 担当
478 default_issue_status_assigned: 担当
478 default_issue_status_resolved: 解決
479 default_issue_status_resolved: 解決
479 default_issue_status_feedback: フィードバック
480 default_issue_status_feedback: フィードバック
480 default_issue_status_closed: 終了
481 default_issue_status_closed: 終了
481 default_issue_status_rejected: 却下
482 default_issue_status_rejected: 却下
482 default_doc_category_user: ユーザ文書
483 default_doc_category_user: ユーザ文書
483 default_doc_category_tech: 技術文書
484 default_doc_category_tech: 技術文書
484 default_priority_low: 低め
485 default_priority_low: 低め
485 default_priority_normal: 通常
486 default_priority_normal: 通常
486 default_priority_high: 高め
487 default_priority_high: 高め
487 default_priority_urgent: 急いで
488 default_priority_urgent: 急いで
488 default_priority_immediate: 今すぐ
489 default_priority_immediate: 今すぐ
489 default_activity_design: デザイン作業
490 default_activity_design: デザイン作業
490 default_activity_development: 開発作業
491 default_activity_development: 開発作業
491
492
492 enumeration_issue_priorities: 問題の優先度
493 enumeration_issue_priorities: 問題の優先度
493 enumeration_doc_categories: 文書カテゴリ
494 enumeration_doc_categories: 文書カテゴリ
494 enumeration_activities: 作業分類 (時間トラッキング)
495 enumeration_activities: 作業分類 (時間トラッキング)
@@ -1,493 +1,494
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
4 actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dagen
9 actionview_datehelper_time_in_words_day_plural: %d dagen
10 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
10 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
11 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
11 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
12 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
12 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
13 actionview_datehelper_time_in_words_minute: 1 minuut
13 actionview_datehelper_time_in_words_minute: 1 minuut
14 actionview_datehelper_time_in_words_minute_half: een halve minuut
14 actionview_datehelper_time_in_words_minute_half: een halve minuut
15 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
15 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
16 actionview_datehelper_time_in_words_minute_plural: %d minuten
16 actionview_datehelper_time_in_words_minute_plural: %d minuten
17 actionview_datehelper_time_in_words_minute_single: 1 minuut
17 actionview_datehelper_time_in_words_minute_single: 1 minuut
18 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
18 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
19 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
19 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
20 actionview_instancetag_blank_option: Selecteer
20 actionview_instancetag_blank_option: Selecteer
21
21
22 activerecord_error_inclusion: staat niet in de lijst
22 activerecord_error_inclusion: staat niet in de lijst
23 activerecord_error_exclusion: is gereserveerd
23 activerecord_error_exclusion: is gereserveerd
24 activerecord_error_invalid: is ongeldig
24 activerecord_error_invalid: is ongeldig
25 activerecord_error_confirmation: komt niet overeen met confirmatie
25 activerecord_error_confirmation: komt niet overeen met confirmatie
26 activerecord_error_accepted: moet geaccepteerd worden
26 activerecord_error_accepted: moet geaccepteerd worden
27 activerecord_error_empty: mag niet leeg zijn
27 activerecord_error_empty: mag niet leeg zijn
28 activerecord_error_blank: mag niet blanco zijn
28 activerecord_error_blank: mag niet blanco zijn
29 activerecord_error_too_long: is te lang
29 activerecord_error_too_long: is te lang
30 activerecord_error_too_short: is te kort
30 activerecord_error_too_short: is te kort
31 activerecord_error_wrong_length: heeft de verkeerde lengte
31 activerecord_error_wrong_length: heeft de verkeerde lengte
32 activerecord_error_taken: is al in gebruik
32 activerecord_error_taken: is al in gebruik
33 activerecord_error_not_a_number: is geen getal
33 activerecord_error_not_a_number: is geen getal
34 activerecord_error_not_a_date: is geen valide datum
34 activerecord_error_not_a_date: is geen valide datum
35 activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum
35 activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum
36 activerecord_error_not_same_project: hoort niet bij hetzelfde project
36 activerecord_error_not_same_project: hoort niet bij hetzelfde project
37 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
37 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
38
38
39 general_fmt_age: %d jr
39 general_fmt_age: %d jr
40 general_fmt_age_plural: %d jr
40 general_fmt_age_plural: %d jr
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nee'
45 general_text_No: 'Nee'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nee'
47 general_text_no: 'nee'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Nederlands'
49 general_lang_name: 'Nederlands'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
53 general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
54
54
55 notice_account_updated: Account is met succes gewijzigd
55 notice_account_updated: Account is met succes gewijzigd
56 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
56 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
57 notice_account_password_updated: Wachtwoord is met succes gewijzigd
57 notice_account_password_updated: Wachtwoord is met succes gewijzigd
58 notice_account_wrong_password: Incorrect wachtwoord
58 notice_account_wrong_password: Incorrect wachtwoord
59 notice_account_register_done: Account is met succes aangemaakt.
59 notice_account_register_done: Account is met succes aangemaakt.
60 notice_account_unknown_email: Onbekende gebruiker.
60 notice_account_unknown_email: Onbekende gebruiker.
61 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
61 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
62 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
62 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
63 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
63 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
64 notice_successful_create: Maken succesvol.
64 notice_successful_create: Maken succesvol.
65 notice_successful_update: Wijzigen succesvol.
65 notice_successful_update: Wijzigen succesvol.
66 notice_successful_delete: Verwijderen succesvol.
66 notice_successful_delete: Verwijderen succesvol.
67 notice_successful_connection: Verbinding succesvol.
67 notice_successful_connection: Verbinding succesvol.
68 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
68 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
69 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
69 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
70 notice_scm_error: Deze ingang of revisie bestaat niet in de repository.
70 notice_scm_error: Deze ingang of revisie bestaat niet in de repository.
71 notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen.
71 notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)"
74
74
75 mail_subject_lost_password: Uw redMine wachtwoord
75 mail_subject_lost_password: Uw redMine wachtwoord
76 mail_subject_register: redMine account activatie
76 mail_subject_register: redMine account activatie
77
77
78 gui_validation_error: 1 fout
78 gui_validation_error: 1 fout
79 gui_validation_error_plural: %d fouten
79 gui_validation_error_plural: %d fouten
80
80
81 field_name: Naam
81 field_name: Naam
82 field_description: Beschrijving
82 field_description: Beschrijving
83 field_summary: Samenvatting
83 field_summary: Samenvatting
84 field_is_required: Verplicht
84 field_is_required: Verplicht
85 field_firstname: Voornaam
85 field_firstname: Voornaam
86 field_lastname: Achternaam
86 field_lastname: Achternaam
87 field_mail: Email
87 field_mail: Email
88 field_filename: Bestand
88 field_filename: Bestand
89 field_filesize: Grootte
89 field_filesize: Grootte
90 field_downloads: Downloads
90 field_downloads: Downloads
91 field_author: Auteur
91 field_author: Auteur
92 field_created_on: Aangemaakt
92 field_created_on: Aangemaakt
93 field_updated_on: Gewijzigd
93 field_updated_on: Gewijzigd
94 field_field_format: Formaat
94 field_field_format: Formaat
95 field_is_for_all: Voor alle projecten
95 field_is_for_all: Voor alle projecten
96 field_possible_values: Mogelijke waarden
96 field_possible_values: Mogelijke waarden
97 field_regexp: Reguliere expressie
97 field_regexp: Reguliere expressie
98 field_min_length: Minimale lengte
98 field_min_length: Minimale lengte
99 field_max_length: Maximale lengte
99 field_max_length: Maximale lengte
100 field_value: Waarde
100 field_value: Waarde
101 field_category: Categorie
101 field_category: Categorie
102 field_title: Titel
102 field_title: Titel
103 field_project: Project
103 field_project: Project
104 field_issue: Issue
104 field_issue: Issue
105 field_status: Status
105 field_status: Status
106 field_notes: Notities
106 field_notes: Notities
107 field_is_closed: Issue gesloten
107 field_is_closed: Issue gesloten
108 field_is_default: Default status
108 field_is_default: Default status
109 field_html_color: Kleur
109 field_html_color: Kleur
110 field_tracker: Tracker
110 field_tracker: Tracker
111 field_subject: Onderwerp
111 field_subject: Onderwerp
112 field_due_date: Verwachte datum gereed
112 field_due_date: Verwachte datum gereed
113 field_assigned_to: Toegewezen aan
113 field_assigned_to: Toegewezen aan
114 field_priority: Prioriteit
114 field_priority: Prioriteit
115 field_fixed_version: Opgeloste versie
115 field_fixed_version: Opgeloste versie
116 field_user: Gebruiker
116 field_user: Gebruiker
117 field_role: Rol
117 field_role: Rol
118 field_homepage: Homepage
118 field_homepage: Homepage
119 field_is_public: Publiek
119 field_is_public: Publiek
120 field_parent: Subproject van
120 field_parent: Subproject van
121 field_is_in_chlog: Issues weergegeven in wijzigingslog
121 field_is_in_chlog: Issues weergegeven in wijzigingslog
122 field_is_in_roadmap: Issues weergegeven in roadmap
122 field_is_in_roadmap: Issues weergegeven in roadmap
123 field_login: Inloggen
123 field_login: Inloggen
124 field_mail_notification: Mail mededelingen
124 field_mail_notification: Mail mededelingen
125 field_admin: Administrateur
125 field_admin: Administrateur
126 field_last_login_on: Laatste bezoek
126 field_last_login_on: Laatste bezoek
127 field_language: Taal
127 field_language: Taal
128 field_effective_date: Datum
128 field_effective_date: Datum
129 field_password: Wachtwoord
129 field_password: Wachtwoord
130 field_new_password: Nieuw wachtwoord
130 field_new_password: Nieuw wachtwoord
131 field_password_confirmation: Bevestigen
131 field_password_confirmation: Bevestigen
132 field_version: Versie
132 field_version: Versie
133 field_type: Type
133 field_type: Type
134 field_host: Host
134 field_host: Host
135 field_port: Port
135 field_port: Port
136 field_account: Account
136 field_account: Account
137 field_base_dn: Base DN
137 field_base_dn: Base DN
138 field_attr_login: Login attribuut
138 field_attr_login: Login attribuut
139 field_attr_firstname: Voornaam attribuut
139 field_attr_firstname: Voornaam attribuut
140 field_attr_lastname: Achternaam attribuut
140 field_attr_lastname: Achternaam attribuut
141 field_attr_mail: Email attribuut
141 field_attr_mail: Email attribuut
142 field_onthefly: On-the-fly aanmaken van een gebruiker
142 field_onthefly: On-the-fly aanmaken van een gebruiker
143 field_start_date: Start
143 field_start_date: Start
144 field_done_ratio: %% Gereed
144 field_done_ratio: %% Gereed
145 field_auth_source: Authenticatiemethode
145 field_auth_source: Authenticatiemethode
146 field_hide_mail: Verberg mijn emailadres
146 field_hide_mail: Verberg mijn emailadres
147 field_comments: Commentaar
147 field_comments: Commentaar
148 field_url: URL
148 field_url: URL
149 field_start_page: Startpagina
149 field_start_page: Startpagina
150 field_subproject: Subproject
150 field_subproject: Subproject
151 field_hours: Uren
151 field_hours: Uren
152 field_activity: Activiteit
152 field_activity: Activiteit
153 field_spent_on: Datum
153 field_spent_on: Datum
154 field_identifier: Identificatiecode
154 field_identifier: Identificatiecode
155 field_is_filter: Gebruikt als een filter
155 field_is_filter: Gebruikt als een filter
156 field_issue_to_id: Gerelateerd issue
156 field_issue_to_id: Gerelateerd issue
157 field_delay: Vertraging
157 field_delay: Vertraging
158 field_assignable: Issues can be assigned to this role
158
159
159 setting_app_title: Applicatie titel
160 setting_app_title: Applicatie titel
160 setting_app_subtitle: Applicatie ondertitel
161 setting_app_subtitle: Applicatie ondertitel
161 setting_welcome_text: Welkomsttekst
162 setting_welcome_text: Welkomsttekst
162 setting_default_language: Default taal
163 setting_default_language: Default taal
163 setting_login_required: Authent. nodig
164 setting_login_required: Authent. nodig
164 setting_self_registration: Zelf-registratie toegestaan
165 setting_self_registration: Zelf-registratie toegestaan
165 setting_attachment_max_size: Attachment max. grootte
166 setting_attachment_max_size: Attachment max. grootte
166 setting_issues_export_limit: Limiet export issues
167 setting_issues_export_limit: Limiet export issues
167 setting_mail_from: Afzender mail adres
168 setting_mail_from: Afzender mail adres
168 setting_host_name: Host naam
169 setting_host_name: Host naam
169 setting_text_formatting: Tekst formaat
170 setting_text_formatting: Tekst formaat
170 setting_wiki_compression: Wiki geschiedenis comprimeren
171 setting_wiki_compression: Wiki geschiedenis comprimeren
171 setting_feeds_limit: Feed inhoud limiet
172 setting_feeds_limit: Feed inhoud limiet
172 setting_autofetch_changesets: Haal commits automatisch op
173 setting_autofetch_changesets: Haal commits automatisch op
173 setting_sys_api_enabled: Gebruik WS voor repository beheer
174 setting_sys_api_enabled: Gebruik WS voor repository beheer
174 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_fix_keywords: Fixing keywords
176 setting_commit_fix_keywords: Fixing keywords
176 setting_autologin: Autologin
177 setting_autologin: Autologin
177 setting_date_format: Date format
178 setting_date_format: Date format
178 setting_cross_project_issue_relations: Allow cross-project issue relations
179 setting_cross_project_issue_relations: Allow cross-project issue relations
179
180
180 label_user: Gebruiker
181 label_user: Gebruiker
181 label_user_plural: Gebruikers
182 label_user_plural: Gebruikers
182 label_user_new: Nieuwe gebruiker
183 label_user_new: Nieuwe gebruiker
183 label_project: Project
184 label_project: Project
184 label_project_new: Nieuw project
185 label_project_new: Nieuw project
185 label_project_plural: Projecten
186 label_project_plural: Projecten
186 label_project_all: Alle Projecten
187 label_project_all: Alle Projecten
187 label_project_latest: Nieuwste projecten
188 label_project_latest: Nieuwste projecten
188 label_issue: Issue
189 label_issue: Issue
189 label_issue_new: Nieuw issue
190 label_issue_new: Nieuw issue
190 label_issue_plural: Issues
191 label_issue_plural: Issues
191 label_issue_view_all: Bekijk alle issues
192 label_issue_view_all: Bekijk alle issues
192 label_document: Document
193 label_document: Document
193 label_document_new: Nieuw document
194 label_document_new: Nieuw document
194 label_document_plural: Documenten
195 label_document_plural: Documenten
195 label_role: Rol
196 label_role: Rol
196 label_role_plural: Rollen
197 label_role_plural: Rollen
197 label_role_new: Nieuwe rol
198 label_role_new: Nieuwe rol
198 label_role_and_permissions: Rollen en permissies
199 label_role_and_permissions: Rollen en permissies
199 label_member: Lid
200 label_member: Lid
200 label_member_new: Nieuw lid
201 label_member_new: Nieuw lid
201 label_member_plural: Leden
202 label_member_plural: Leden
202 label_tracker: Tracker
203 label_tracker: Tracker
203 label_tracker_plural: Trackers
204 label_tracker_plural: Trackers
204 label_tracker_new: Nieuwe tracker
205 label_tracker_new: Nieuwe tracker
205 label_workflow: Workflow
206 label_workflow: Workflow
206 label_issue_status: Issue status
207 label_issue_status: Issue status
207 label_issue_status_plural: Issue statussen
208 label_issue_status_plural: Issue statussen
208 label_issue_status_new: Nieuwe status
209 label_issue_status_new: Nieuwe status
209 label_issue_category: Issue categorie
210 label_issue_category: Issue categorie
210 label_issue_category_plural: Issue categorieën
211 label_issue_category_plural: Issue categorieën
211 label_issue_category_new: Nieuwe categorie
212 label_issue_category_new: Nieuwe categorie
212 label_custom_field: Custom veld
213 label_custom_field: Custom veld
213 label_custom_field_plural: Custom velden
214 label_custom_field_plural: Custom velden
214 label_custom_field_new: Nieuw custom veld
215 label_custom_field_new: Nieuw custom veld
215 label_enumerations: Enumeraties
216 label_enumerations: Enumeraties
216 label_enumeration_new: Nieuwe waarde
217 label_enumeration_new: Nieuwe waarde
217 label_information: Informatie
218 label_information: Informatie
218 label_information_plural: Informatie
219 label_information_plural: Informatie
219 label_please_login: Gaarne inloggen
220 label_please_login: Gaarne inloggen
220 label_register: Registreer
221 label_register: Registreer
221 label_password_lost: Wachtwoord verloren
222 label_password_lost: Wachtwoord verloren
222 label_home: Home
223 label_home: Home
223 label_my_page: Mijn pagina
224 label_my_page: Mijn pagina
224 label_my_account: Mijn account
225 label_my_account: Mijn account
225 label_my_projects: Mijn projecten
226 label_my_projects: Mijn projecten
226 label_administration: Administratie
227 label_administration: Administratie
227 label_login: Inloggen
228 label_login: Inloggen
228 label_logout: Uitloggen
229 label_logout: Uitloggen
229 label_help: Help
230 label_help: Help
230 label_reported_issues: Gemelde issues
231 label_reported_issues: Gemelde issues
231 label_assigned_to_me_issues: Aan mij toegewezen issues
232 label_assigned_to_me_issues: Aan mij toegewezen issues
232 label_last_login: Laatste bezoek
233 label_last_login: Laatste bezoek
233 label_last_updates: Laatste wijziging
234 label_last_updates: Laatste wijziging
234 label_last_updates_plural: %d laatste wijziging
235 label_last_updates_plural: %d laatste wijziging
235 label_registered_on: Geregistreerd op
236 label_registered_on: Geregistreerd op
236 label_activity: Activiteit
237 label_activity: Activiteit
237 label_new: Nieuw
238 label_new: Nieuw
238 label_logged_as: Ingelogd als
239 label_logged_as: Ingelogd als
239 label_environment: Omgeving
240 label_environment: Omgeving
240 label_authentication: Authenticatie
241 label_authentication: Authenticatie
241 label_auth_source: Authenticatie modus
242 label_auth_source: Authenticatie modus
242 label_auth_source_new: Nieuwe authenticatie modus
243 label_auth_source_new: Nieuwe authenticatie modus
243 label_auth_source_plural: Authenticatie modi
244 label_auth_source_plural: Authenticatie modi
244 label_subproject_plural: Subprojecten
245 label_subproject_plural: Subprojecten
245 label_min_max_length: Min - Max lengte
246 label_min_max_length: Min - Max lengte
246 label_list: Lijst
247 label_list: Lijst
247 label_date: Datum
248 label_date: Datum
248 label_integer: Integer
249 label_integer: Integer
249 label_boolean: Boolean
250 label_boolean: Boolean
250 label_string: Tekst
251 label_string: Tekst
251 label_text: Lange tekst
252 label_text: Lange tekst
252 label_attribute: Attribuut
253 label_attribute: Attribuut
253 label_attribute_plural: Attributen
254 label_attribute_plural: Attributen
254 label_download: %d Download
255 label_download: %d Download
255 label_download_plural: %d Downloads
256 label_download_plural: %d Downloads
256 label_no_data: Geen gegevens om te tonen
257 label_no_data: Geen gegevens om te tonen
257 label_change_status: Wijzig status
258 label_change_status: Wijzig status
258 label_history: Geschiedenis
259 label_history: Geschiedenis
259 label_attachment: Bestand
260 label_attachment: Bestand
260 label_attachment_new: Nieuw bestand
261 label_attachment_new: Nieuw bestand
261 label_attachment_delete: Verwijder bestand
262 label_attachment_delete: Verwijder bestand
262 label_attachment_plural: Bestanden
263 label_attachment_plural: Bestanden
263 label_report: Rapport
264 label_report: Rapport
264 label_report_plural: Rapporten
265 label_report_plural: Rapporten
265 label_news: Nieuws
266 label_news: Nieuws
266 label_news_new: Voeg nieuws toe
267 label_news_new: Voeg nieuws toe
267 label_news_plural: Nieuws
268 label_news_plural: Nieuws
268 label_news_latest: Laatste nieuws
269 label_news_latest: Laatste nieuws
269 label_news_view_all: Bekijk al het nieuws
270 label_news_view_all: Bekijk al het nieuws
270 label_change_log: Wijzigingslog
271 label_change_log: Wijzigingslog
271 label_settings: Instellingen
272 label_settings: Instellingen
272 label_overview: Overzicht
273 label_overview: Overzicht
273 label_version: Versie
274 label_version: Versie
274 label_version_new: Nieuwe versie
275 label_version_new: Nieuwe versie
275 label_version_plural: Versies
276 label_version_plural: Versies
276 label_confirmation: Bevestiging
277 label_confirmation: Bevestiging
277 label_export_to: Exporteer naar
278 label_export_to: Exporteer naar
278 label_read: Lees...
279 label_read: Lees...
279 label_public_projects: Publieke projecten
280 label_public_projects: Publieke projecten
280 label_open_issues: open
281 label_open_issues: open
281 label_open_issues_plural: open
282 label_open_issues_plural: open
282 label_closed_issues: gesloten
283 label_closed_issues: gesloten
283 label_closed_issues_plural: gesloten
284 label_closed_issues_plural: gesloten
284 label_total: Totaal
285 label_total: Totaal
285 label_permissions: Permissies
286 label_permissions: Permissies
286 label_current_status: Huidige status
287 label_current_status: Huidige status
287 label_new_statuses_allowed: Nieuwe statuses toegestaan
288 label_new_statuses_allowed: Nieuwe statuses toegestaan
288 label_all: alle
289 label_all: alle
289 label_none: geen
290 label_none: geen
290 label_next: Volgende
291 label_next: Volgende
291 label_previous: Vorige
292 label_previous: Vorige
292 label_used_by: Gebruikt door
293 label_used_by: Gebruikt door
293 label_details: Details
294 label_details: Details
294 label_add_note: Voeg een notitie toe
295 label_add_note: Voeg een notitie toe
295 label_per_page: Per pagina
296 label_per_page: Per pagina
296 label_calendar: Kalender
297 label_calendar: Kalender
297 label_months_from: maanden vanaf
298 label_months_from: maanden vanaf
298 label_gantt: Gantt
299 label_gantt: Gantt
299 label_internal: Intern
300 label_internal: Intern
300 label_last_changes: laatste %d wijzigingen
301 label_last_changes: laatste %d wijzigingen
301 label_change_view_all: Bekijk alle wijzigingen
302 label_change_view_all: Bekijk alle wijzigingen
302 label_personalize_page: Personaliseer deze pagina
303 label_personalize_page: Personaliseer deze pagina
303 label_comment: Commentaar
304 label_comment: Commentaar
304 label_comment_plural: Commentaar
305 label_comment_plural: Commentaar
305 label_comment_add: Voeg commentaar toe
306 label_comment_add: Voeg commentaar toe
306 label_comment_added: Commentaar toegevoegd
307 label_comment_added: Commentaar toegevoegd
307 label_comment_delete: Verwijder commentaar
308 label_comment_delete: Verwijder commentaar
308 label_query: Eigen zoekvraag
309 label_query: Eigen zoekvraag
309 label_query_plural: Eigen zoekvragen
310 label_query_plural: Eigen zoekvragen
310 label_query_new: Nieuwe zoekvraag
311 label_query_new: Nieuwe zoekvraag
311 label_filter_add: Voeg filter toe
312 label_filter_add: Voeg filter toe
312 label_filter_plural: Filters
313 label_filter_plural: Filters
313 label_equals: is gelijk
314 label_equals: is gelijk
314 label_not_equals: is niet gelijk
315 label_not_equals: is niet gelijk
315 label_in_less_than: in minder dan
316 label_in_less_than: in minder dan
316 label_in_more_than: in meer dan
317 label_in_more_than: in meer dan
317 label_in: in
318 label_in: in
318 label_today: vandaag
319 label_today: vandaag
319 label_less_than_ago: minder dan dagen geleden
320 label_less_than_ago: minder dan dagen geleden
320 label_more_than_ago: meer dan dagen geleden
321 label_more_than_ago: meer dan dagen geleden
321 label_ago: dagen geleden
322 label_ago: dagen geleden
322 label_contains: bevat
323 label_contains: bevat
323 label_not_contains: bevat niet
324 label_not_contains: bevat niet
324 label_day_plural: dagen
325 label_day_plural: dagen
325 label_repository: Repository
326 label_repository: Repository
326 label_browse: Blader
327 label_browse: Blader
327 label_modification: %d wijziging
328 label_modification: %d wijziging
328 label_modification_plural: %d wijzigingen
329 label_modification_plural: %d wijzigingen
329 label_revision: Revisie
330 label_revision: Revisie
330 label_revision_plural: Revisies
331 label_revision_plural: Revisies
331 label_added: toegevoegd
332 label_added: toegevoegd
332 label_modified: gewijzigd
333 label_modified: gewijzigd
333 label_deleted: verwijderd
334 label_deleted: verwijderd
334 label_latest_revision: Meest recente revisie
335 label_latest_revision: Meest recente revisie
335 label_latest_revision_plural: Meest recente revisies
336 label_latest_revision_plural: Meest recente revisies
336 label_view_revisions: Bekijk revisies
337 label_view_revisions: Bekijk revisies
337 label_max_size: Maximum grootte
338 label_max_size: Maximum grootte
338 label_on: 'van'
339 label_on: 'van'
339 label_sort_highest: Verplaats naar begin
340 label_sort_highest: Verplaats naar begin
340 label_sort_higher: Verplaats naar boven
341 label_sort_higher: Verplaats naar boven
341 label_sort_lower: Verplaats naar beneden
342 label_sort_lower: Verplaats naar beneden
342 label_sort_lowest: Verplaats naar eind
343 label_sort_lowest: Verplaats naar eind
343 label_roadmap: Roadmap
344 label_roadmap: Roadmap
344 label_roadmap_due_in: Due in
345 label_roadmap_due_in: Due in
345 label_roadmap_overdue: %s late
346 label_roadmap_overdue: %s late
346 label_roadmap_no_issues: Geen issues voor deze versie
347 label_roadmap_no_issues: Geen issues voor deze versie
347 label_search: Zoeken
348 label_search: Zoeken
348 label_result: %d resultaat
349 label_result: %d resultaat
349 label_result_plural: %d resultaten
350 label_result_plural: %d resultaten
350 label_all_words: Alle woorden
351 label_all_words: Alle woorden
351 label_wiki: Wiki
352 label_wiki: Wiki
352 label_wiki_edit: Wiki edit
353 label_wiki_edit: Wiki edit
353 label_wiki_edit_plural: Wiki edits
354 label_wiki_edit_plural: Wiki edits
354 label_wiki_page: Wiki page
355 label_wiki_page: Wiki page
355 label_wiki_page_plural: Wiki pages
356 label_wiki_page_plural: Wiki pages
356 label_page_index: Index
357 label_page_index: Index
357 label_current_version: Huidige versie
358 label_current_version: Huidige versie
358 label_preview: Testweergave
359 label_preview: Testweergave
359 label_feed_plural: Feeds
360 label_feed_plural: Feeds
360 label_changes_details: Details van alle wijzigingen
361 label_changes_details: Details van alle wijzigingen
361 label_issue_tracking: Issue tracking
362 label_issue_tracking: Issue tracking
362 label_spent_time: Gespendeerde tijd
363 label_spent_time: Gespendeerde tijd
363 label_f_hour: %.2f uur
364 label_f_hour: %.2f uur
364 label_f_hour_plural: %.2f uren
365 label_f_hour_plural: %.2f uren
365 label_time_tracking: Tijd tracking
366 label_time_tracking: Tijd tracking
366 label_change_plural: Wijzigingen
367 label_change_plural: Wijzigingen
367 label_statistics: Statistieken
368 label_statistics: Statistieken
368 label_commits_per_month: Commits per maand
369 label_commits_per_month: Commits per maand
369 label_commits_per_author: Commits per auteur
370 label_commits_per_author: Commits per auteur
370 label_view_diff: Bekijk verschillen
371 label_view_diff: Bekijk verschillen
371 label_diff_inline: inline
372 label_diff_inline: inline
372 label_diff_side_by_side: naast elkaar
373 label_diff_side_by_side: naast elkaar
373 label_options: Opties
374 label_options: Opties
374 label_copy_workflow_from: Kopieer workflow van
375 label_copy_workflow_from: Kopieer workflow van
375 label_permissions_report: Permissies rapport
376 label_permissions_report: Permissies rapport
376 label_watched_issues: Gemonitorde issues
377 label_watched_issues: Gemonitorde issues
377 label_related_issues: Gerelateerde issues
378 label_related_issues: Gerelateerde issues
378 label_applied_status: Toegekende status
379 label_applied_status: Toegekende status
379 label_loading: Laden...
380 label_loading: Laden...
380 label_relation_new: Nieuwe relatie
381 label_relation_new: Nieuwe relatie
381 label_relation_delete: Verwijder relatie
382 label_relation_delete: Verwijder relatie
382 label_relates_to: gerelateerd aan
383 label_relates_to: gerelateerd aan
383 label_duplicates: dupliceert
384 label_duplicates: dupliceert
384 label_blocks: blokkeert
385 label_blocks: blokkeert
385 label_blocked_by: geblokkeerd door
386 label_blocked_by: geblokkeerd door
386 label_precedes: gaat vooraf aan
387 label_precedes: gaat vooraf aan
387 label_follows: volgt op
388 label_follows: volgt op
388 label_end_to_start: eind tot start
389 label_end_to_start: eind tot start
389 label_end_to_end: eind tot eind
390 label_end_to_end: eind tot eind
390 label_start_to_start: start tot start
391 label_start_to_start: start tot start
391 label_start_to_end: start tot eind
392 label_start_to_end: start tot eind
392 label_stay_logged_in: Blijf ingelogd
393 label_stay_logged_in: Blijf ingelogd
393 label_disabled: uitgeschakeld
394 label_disabled: uitgeschakeld
394 label_show_completed_versions: Toon afgeronde versies
395 label_show_completed_versions: Toon afgeronde versies
395 label_me: ik
396 label_me: ik
396 label_board: Forum
397 label_board: Forum
397 label_board_new: Nieuw forum
398 label_board_new: Nieuw forum
398 label_board_plural: Forums
399 label_board_plural: Forums
399 label_topic_plural: Onderwerpen
400 label_topic_plural: Onderwerpen
400 label_message_plural: Berichten
401 label_message_plural: Berichten
401 label_message_last: Laatste bericht
402 label_message_last: Laatste bericht
402 label_message_new: Nieuw bericht
403 label_message_new: Nieuw bericht
403 label_reply_plural: Antwoorden
404 label_reply_plural: Antwoorden
404 label_send_information: Send account information to the user
405 label_send_information: Send account information to the user
405 label_year: Year
406 label_year: Year
406 label_month: Month
407 label_month: Month
407 label_week: Week
408 label_week: Week
408 label_date_from: From
409 label_date_from: From
409 label_date_to: To
410 label_date_to: To
410 label_language_based: Language based
411 label_language_based: Language based
411 label_sort_by: Sort by "%s"
412 label_sort_by: Sort by "%s"
412 label_send_test_email: Send a test email
413 label_send_test_email: Send a test email
413
414
414 button_login: Inloggen
415 button_login: Inloggen
415 button_submit: Toevoegen
416 button_submit: Toevoegen
416 button_save: Bewaren
417 button_save: Bewaren
417 button_check_all: Selecteer alle
418 button_check_all: Selecteer alle
418 button_uncheck_all: Deselecteer alle
419 button_uncheck_all: Deselecteer alle
419 button_delete: Verwijder
420 button_delete: Verwijder
420 button_create: Maak
421 button_create: Maak
421 button_test: Test
422 button_test: Test
422 button_edit: Bewerk
423 button_edit: Bewerk
423 button_add: Voeg toe
424 button_add: Voeg toe
424 button_change: Wijzig
425 button_change: Wijzig
425 button_apply: Pas toe
426 button_apply: Pas toe
426 button_clear: Leeg maken
427 button_clear: Leeg maken
427 button_lock: Lock
428 button_lock: Lock
428 button_unlock: Unlock
429 button_unlock: Unlock
429 button_download: Download
430 button_download: Download
430 button_list: Lijst
431 button_list: Lijst
431 button_view: Bekijken
432 button_view: Bekijken
432 button_move: Verplaatsen
433 button_move: Verplaatsen
433 button_back: Terug
434 button_back: Terug
434 button_cancel: Annuleer
435 button_cancel: Annuleer
435 button_activate: Activeer
436 button_activate: Activeer
436 button_sort: Sorteer
437 button_sort: Sorteer
437 button_log_time: Log tijd
438 button_log_time: Log tijd
438 button_rollback: Rollback naar deze versie
439 button_rollback: Rollback naar deze versie
439 button_watch: Monitor
440 button_watch: Monitor
440 button_unwatch: Niet meer monitoren
441 button_unwatch: Niet meer monitoren
441 button_reply: Antwoord
442 button_reply: Antwoord
442 button_archive: Archive
443 button_archive: Archive
443 button_unarchive: Unarchive
444 button_unarchive: Unarchive
444
445
445 status_active: Actief
446 status_active: Actief
446 status_registered: geregistreerd
447 status_registered: geregistreerd
447 status_locked: gelockt
448 status_locked: gelockt
448
449
449 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
450 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
450 text_regexp_info: bv. ^[A-Z0-9]+$
451 text_regexp_info: bv. ^[A-Z0-9]+$
451 text_min_max_length_info: 0 betekent geen restrictie
452 text_min_max_length_info: 0 betekent geen restrictie
452 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
453 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
453 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
454 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
454 text_are_you_sure: Weet U het zeker ?
455 text_are_you_sure: Weet U het zeker ?
455 text_journal_changed: gewijzigd van %s naar %s
456 text_journal_changed: gewijzigd van %s naar %s
456 text_journal_set_to: ingesteld op %s
457 text_journal_set_to: ingesteld op %s
457 text_journal_deleted: verwijderd
458 text_journal_deleted: verwijderd
458 text_tip_task_begin_day: taak die op deze dag begint
459 text_tip_task_begin_day: taak die op deze dag begint
459 text_tip_task_end_day: taak die op deze dag eindigt
460 text_tip_task_end_day: taak die op deze dag eindigt
460 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
461 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
461 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
462 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
462 text_caracters_maximum: %d van maximum aantal tekens.
463 text_caracters_maximum: %d van maximum aantal tekens.
463 text_length_between: Lengte tussen %d en %d tekens.
464 text_length_between: Lengte tussen %d en %d tekens.
464 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
465 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
465 text_unallowed_characters: Niet toegestane tekens
466 text_unallowed_characters: Niet toegestane tekens
466 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
467 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
467 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
468 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
468
469
469 default_role_manager: Manager
470 default_role_manager: Manager
470 default_role_developper: Ontwikkelaar
471 default_role_developper: Ontwikkelaar
471 default_role_reporter: Rapporteur
472 default_role_reporter: Rapporteur
472 default_tracker_bug: Bug
473 default_tracker_bug: Bug
473 default_tracker_feature: Feature
474 default_tracker_feature: Feature
474 default_tracker_support: Support
475 default_tracker_support: Support
475 default_issue_status_new: Nieuw
476 default_issue_status_new: Nieuw
476 default_issue_status_assigned: Toegewezen
477 default_issue_status_assigned: Toegewezen
477 default_issue_status_resolved: Opgelost
478 default_issue_status_resolved: Opgelost
478 default_issue_status_feedback: Terugkoppeling
479 default_issue_status_feedback: Terugkoppeling
479 default_issue_status_closed: Gesloten
480 default_issue_status_closed: Gesloten
480 default_issue_status_rejected: Afgewezen
481 default_issue_status_rejected: Afgewezen
481 default_doc_category_user: Gebruikersdocumentatie
482 default_doc_category_user: Gebruikersdocumentatie
482 default_doc_category_tech: Technische documentatie
483 default_doc_category_tech: Technische documentatie
483 default_priority_low: Laag
484 default_priority_low: Laag
484 default_priority_normal: Normaal
485 default_priority_normal: Normaal
485 default_priority_high: Hoog
486 default_priority_high: Hoog
486 default_priority_urgent: Spoed
487 default_priority_urgent: Spoed
487 default_priority_immediate: Onmiddellijk
488 default_priority_immediate: Onmiddellijk
488 default_activity_design: Design
489 default_activity_design: Design
489 default_activity_development: Development
490 default_activity_development: Development
490
491
491 enumeration_issue_priorities: Issue prioriteiten
492 enumeration_issue_priorities: Issue prioriteiten
492 enumeration_doc_categories: Document categorieën
493 enumeration_doc_categories: Document categorieën
493 enumeration_activities: Activiteiten (tijd tracking)
494 enumeration_activities: Activiteiten (tijd tracking)
@@ -1,493 +1,494
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dia
8 actionview_datehelper_time_in_words_day: 1 dia
9 actionview_datehelper_time_in_words_day_plural: %d dias
9 actionview_datehelper_time_in_words_day_plural: %d dias
10 actionview_datehelper_time_in_words_hour_about: sobre uma hora
10 actionview_datehelper_time_in_words_hour_about: sobre uma hora
11 actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas
12 actionview_datehelper_time_in_words_hour_about_single: sobre uma hora
12 actionview_datehelper_time_in_words_hour_about_single: sobre uma hora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos que um minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos que um minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: menos que um segundo
18 actionview_datehelper_time_in_words_second_less_than: menos que um segundo
19 actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos
19 actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos
20 actionview_instancetag_blank_option: Selecione
20 actionview_instancetag_blank_option: Selecione
21
21
22 activerecord_error_inclusion: nao esta incluido na lista
22 activerecord_error_inclusion: nao esta incluido na lista
23 activerecord_error_exclusion: esta reservado
23 activerecord_error_exclusion: esta reservado
24 activerecord_error_invalid: e invalido
24 activerecord_error_invalid: e invalido
25 activerecord_error_confirmation: confirmacao nao confere
25 activerecord_error_confirmation: confirmacao nao confere
26 activerecord_error_accepted: deve ser aceito
26 activerecord_error_accepted: deve ser aceito
27 activerecord_error_empty: nao pode ser vazio
27 activerecord_error_empty: nao pode ser vazio
28 activerecord_error_blank: nao pode estar em branco
28 activerecord_error_blank: nao pode estar em branco
29 activerecord_error_too_long: e muito longo
29 activerecord_error_too_long: e muito longo
30 activerecord_error_too_short: e muito comprido
30 activerecord_error_too_short: e muito comprido
31 activerecord_error_wrong_length: esta com o comprimento errado
31 activerecord_error_wrong_length: esta com o comprimento errado
32 activerecord_error_taken: ja esta examinado
32 activerecord_error_taken: ja esta examinado
33 activerecord_error_not_a_number: nao e um numero
33 activerecord_error_not_a_number: nao e um numero
34 activerecord_error_not_a_date: nao e uma data valida
34 activerecord_error_not_a_date: nao e uma data valida
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nao'
45 general_text_No: 'Nao'
46 general_text_Yes: 'Sim'
46 general_text_Yes: 'Sim'
47 general_text_no: 'nao'
47 general_text_no: 'nao'
48 general_text_yes: 'sim'
48 general_text_yes: 'sim'
49 general_lang_name: 'Portugues Brasileiro'
49 general_lang_name: 'Portugues Brasileiro'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
53 general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
54
54
55 notice_account_updated: Conta foi alterada com sucesso.
55 notice_account_updated: Conta foi alterada com sucesso.
56 notice_account_invalid_creditentials: Usuario ou senha invalido.
56 notice_account_invalid_creditentials: Usuario ou senha invalido.
57 notice_account_password_updated: Senha foi alterada com sucesso.
57 notice_account_password_updated: Senha foi alterada com sucesso.
58 notice_account_wrong_password: Senha errada.
58 notice_account_wrong_password: Senha errada.
59 notice_account_register_done: Conta foi criada com sucesso.
59 notice_account_register_done: Conta foi criada com sucesso.
60 notice_account_unknown_email: Usuario desconhecido.
60 notice_account_unknown_email: Usuario desconhecido.
61 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
61 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
62 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
62 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
63 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
63 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
64 notice_successful_create: Criado com sucesso.
64 notice_successful_create: Criado com sucesso.
65 notice_successful_update: Alterado com sucesso.
65 notice_successful_update: Alterado com sucesso.
66 notice_successful_delete: Apagado com sucesso.
66 notice_successful_delete: Apagado com sucesso.
67 notice_successful_connection: Conectado com sucesso.
67 notice_successful_connection: Conectado com sucesso.
68 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
68 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
69 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
69 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
70 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
70 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
71 notice_not_authorized: You are not authorized to access this page.
71 notice_not_authorized: You are not authorized to access this page.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)"
74
74
75 mail_subject_lost_password: Sua senha do redMine.
75 mail_subject_lost_password: Sua senha do redMine.
76 mail_subject_register: Ativacao de conta do redMine.
76 mail_subject_register: Ativacao de conta do redMine.
77
77
78 gui_validation_error: 1 erro
78 gui_validation_error: 1 erro
79 gui_validation_error_plural: %d erros
79 gui_validation_error_plural: %d erros
80
80
81 field_name: Nome
81 field_name: Nome
82 field_description: Descricao
82 field_description: Descricao
83 field_summary: Sumario
83 field_summary: Sumario
84 field_is_required: Obrigatorio
84 field_is_required: Obrigatorio
85 field_firstname: Primeiro nome
85 field_firstname: Primeiro nome
86 field_lastname: Ultimo nome
86 field_lastname: Ultimo nome
87 field_mail: Email
87 field_mail: Email
88 field_filename: Arquivo
88 field_filename: Arquivo
89 field_filesize: Tamanho
89 field_filesize: Tamanho
90 field_downloads: Downloads
90 field_downloads: Downloads
91 field_author: Autor
91 field_author: Autor
92 field_created_on: Criado
92 field_created_on: Criado
93 field_updated_on: Alterado
93 field_updated_on: Alterado
94 field_field_format: Formato
94 field_field_format: Formato
95 field_is_for_all: Para todos os projetos
95 field_is_for_all: Para todos os projetos
96 field_possible_values: Possiveis valores
96 field_possible_values: Possiveis valores
97 field_regexp: Expressao regular
97 field_regexp: Expressao regular
98 field_min_length: Tamanho minimo
98 field_min_length: Tamanho minimo
99 field_max_length: Tamanho maximo
99 field_max_length: Tamanho maximo
100 field_value: Valor
100 field_value: Valor
101 field_category: Categoria
101 field_category: Categoria
102 field_title: Titulo
102 field_title: Titulo
103 field_project: Projeto
103 field_project: Projeto
104 field_issue: Tarefa
104 field_issue: Tarefa
105 field_status: Status
105 field_status: Status
106 field_notes: Notas
106 field_notes: Notas
107 field_is_closed: Tarefa fechada
107 field_is_closed: Tarefa fechada
108 field_is_default: Status padrao
108 field_is_default: Status padrao
109 field_html_color: Cor
109 field_html_color: Cor
110 field_tracker: Tipo
110 field_tracker: Tipo
111 field_subject: Titulo
111 field_subject: Titulo
112 field_due_date: Data devida
112 field_due_date: Data devida
113 field_assigned_to: Atribuido para
113 field_assigned_to: Atribuido para
114 field_priority: Prioridade
114 field_priority: Prioridade
115 field_fixed_version: Versao corrigida
115 field_fixed_version: Versao corrigida
116 field_user: Usuario
116 field_user: Usuario
117 field_role: Regra
117 field_role: Regra
118 field_homepage: Pagina inicial
118 field_homepage: Pagina inicial
119 field_is_public: Publico
119 field_is_public: Publico
120 field_parent: Sub-projeto de
120 field_parent: Sub-projeto de
121 field_is_in_chlog: Tarefas mostradas no changelog
121 field_is_in_chlog: Tarefas mostradas no changelog
122 field_is_in_roadmap: Tarefas mostradas no roadmap
122 field_is_in_roadmap: Tarefas mostradas no roadmap
123 field_login: Login
123 field_login: Login
124 field_mail_notification: Notificacoes por email
124 field_mail_notification: Notificacoes por email
125 field_admin: Administrador
125 field_admin: Administrador
126 field_last_login_on: Ultima conexao
126 field_last_login_on: Ultima conexao
127 field_language: Lingua
127 field_language: Lingua
128 field_effective_date: Data
128 field_effective_date: Data
129 field_password: Senha
129 field_password: Senha
130 field_new_password: Nova senha
130 field_new_password: Nova senha
131 field_password_confirmation: Confirmacao
131 field_password_confirmation: Confirmacao
132 field_version: Versao
132 field_version: Versao
133 field_type: Tipo
133 field_type: Tipo
134 field_host: Servidor
134 field_host: Servidor
135 field_port: Porta
135 field_port: Porta
136 field_account: Conta
136 field_account: Conta
137 field_base_dn: Base DN
137 field_base_dn: Base DN
138 field_attr_login: Atributo login
138 field_attr_login: Atributo login
139 field_attr_firstname: Atributo primeiro nome
139 field_attr_firstname: Atributo primeiro nome
140 field_attr_lastname: Atributo ultimo nome
140 field_attr_lastname: Atributo ultimo nome
141 field_attr_mail: Atributo email
141 field_attr_mail: Atributo email
142 field_onthefly: Criacao de usuario on-the-fly
142 field_onthefly: Criacao de usuario on-the-fly
143 field_start_date: Inicio
143 field_start_date: Inicio
144 field_done_ratio: %% Terminado
144 field_done_ratio: %% Terminado
145 field_auth_source: Modo de autenticacao
145 field_auth_source: Modo de autenticacao
146 field_hide_mail: Esconder meu email
146 field_hide_mail: Esconder meu email
147 field_comments: Comentario
147 field_comments: Comentario
148 field_url: URL
148 field_url: URL
149 field_start_page: Pagina inicial
149 field_start_page: Pagina inicial
150 field_subproject: Sub-projeto
150 field_subproject: Sub-projeto
151 field_hours: Horas
151 field_hours: Horas
152 field_activity: Atividade
152 field_activity: Atividade
153 field_spent_on: Data
153 field_spent_on: Data
154 field_identifier: Identificador
154 field_identifier: Identificador
155 field_is_filter: Used as a filter
155 field_is_filter: Used as a filter
156 field_issue_to_id: Related issue
156 field_issue_to_id: Related issue
157 field_delay: Delay
157 field_delay: Delay
158 field_assignable: Issues can be assigned to this role
158
159
159 setting_app_title: Titulo da aplicacao
160 setting_app_title: Titulo da aplicacao
160 setting_app_subtitle: Sub-titulo da aplicacao
161 setting_app_subtitle: Sub-titulo da aplicacao
161 setting_welcome_text: Texto de boa-vinda
162 setting_welcome_text: Texto de boa-vinda
162 setting_default_language: Lingua padrao
163 setting_default_language: Lingua padrao
163 setting_login_required: Autenticacao obrigatoria
164 setting_login_required: Autenticacao obrigatoria
164 setting_self_registration: Registro de si mesmo permitido
165 setting_self_registration: Registro de si mesmo permitido
165 setting_attachment_max_size: Tamanho maximo do anexo
166 setting_attachment_max_size: Tamanho maximo do anexo
166 setting_issues_export_limit: Limite de exportacao das tarefas
167 setting_issues_export_limit: Limite de exportacao das tarefas
167 setting_mail_from: Email enviado de
168 setting_mail_from: Email enviado de
168 setting_host_name: Servidor
169 setting_host_name: Servidor
169 setting_text_formatting: Formato do texto
170 setting_text_formatting: Formato do texto
170 setting_wiki_compression: Compactacao do historio do Wiki
171 setting_wiki_compression: Compactacao do historio do Wiki
171 setting_feeds_limit: Limite do Feed
172 setting_feeds_limit: Limite do Feed
172 setting_autofetch_changesets: Autofetch commits
173 setting_autofetch_changesets: Autofetch commits
173 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
174 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
174 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_fix_keywords: Fixing keywords
176 setting_commit_fix_keywords: Fixing keywords
176 setting_autologin: Autologin
177 setting_autologin: Autologin
177 setting_date_format: Date format
178 setting_date_format: Date format
178 setting_cross_project_issue_relations: Allow cross-project issue relations
179 setting_cross_project_issue_relations: Allow cross-project issue relations
179
180
180 label_user: Usuario
181 label_user: Usuario
181 label_user_plural: Usuarios
182 label_user_plural: Usuarios
182 label_user_new: Novo usuario
183 label_user_new: Novo usuario
183 label_project: Projeto
184 label_project: Projeto
184 label_project_new: Novo projeto
185 label_project_new: Novo projeto
185 label_project_plural: Projetos
186 label_project_plural: Projetos
186 label_project_all: All Projects
187 label_project_all: All Projects
187 label_project_latest: Ultimos projetos
188 label_project_latest: Ultimos projetos
188 label_issue: Tarefa
189 label_issue: Tarefa
189 label_issue_new: Nova tarefa
190 label_issue_new: Nova tarefa
190 label_issue_plural: Tarefas
191 label_issue_plural: Tarefas
191 label_issue_view_all: Ver todas as tarefas
192 label_issue_view_all: Ver todas as tarefas
192 label_document: Documento
193 label_document: Documento
193 label_document_new: Novo documento
194 label_document_new: Novo documento
194 label_document_plural: Documentos
195 label_document_plural: Documentos
195 label_role: Regra
196 label_role: Regra
196 label_role_plural: Regras
197 label_role_plural: Regras
197 label_role_new: Nova regra
198 label_role_new: Nova regra
198 label_role_and_permissions: Regras e permissoes
199 label_role_and_permissions: Regras e permissoes
199 label_member: Membro
200 label_member: Membro
200 label_member_new: Novo membro
201 label_member_new: Novo membro
201 label_member_plural: Membros
202 label_member_plural: Membros
202 label_tracker: Tipo
203 label_tracker: Tipo
203 label_tracker_plural: Tipos
204 label_tracker_plural: Tipos
204 label_tracker_new: Novo tipo
205 label_tracker_new: Novo tipo
205 label_workflow: Workflow
206 label_workflow: Workflow
206 label_issue_status: Status da tarefa
207 label_issue_status: Status da tarefa
207 label_issue_status_plural: Status das tarefas
208 label_issue_status_plural: Status das tarefas
208 label_issue_status_new: Novo status
209 label_issue_status_new: Novo status
209 label_issue_category: Categoria de tarefa
210 label_issue_category: Categoria de tarefa
210 label_issue_category_plural: Categorias de tarefa
211 label_issue_category_plural: Categorias de tarefa
211 label_issue_category_new: Nova categoria
212 label_issue_category_new: Nova categoria
212 label_custom_field: Campo personalizado
213 label_custom_field: Campo personalizado
213 label_custom_field_plural: Campos personalizado
214 label_custom_field_plural: Campos personalizado
214 label_custom_field_new: Novo campo personalizado
215 label_custom_field_new: Novo campo personalizado
215 label_enumerations: Enumeracao
216 label_enumerations: Enumeracao
216 label_enumeration_new: Novo valor
217 label_enumeration_new: Novo valor
217 label_information: Informacao
218 label_information: Informacao
218 label_information_plural: Informacoes
219 label_information_plural: Informacoes
219 label_please_login: Efetue login
220 label_please_login: Efetue login
220 label_register: Registre-se
221 label_register: Registre-se
221 label_password_lost: Perdi a senha
222 label_password_lost: Perdi a senha
222 label_home: Pagina inicial
223 label_home: Pagina inicial
223 label_my_page: Minha pagina
224 label_my_page: Minha pagina
224 label_my_account: Minha conta
225 label_my_account: Minha conta
225 label_my_projects: Meus projetos
226 label_my_projects: Meus projetos
226 label_administration: Administracao
227 label_administration: Administracao
227 label_login: Login
228 label_login: Login
228 label_logout: Logout
229 label_logout: Logout
229 label_help: Ajuda
230 label_help: Ajuda
230 label_reported_issues: Tarefas reportadas
231 label_reported_issues: Tarefas reportadas
231 label_assigned_to_me_issues: Tarefas atribuidas a mim
232 label_assigned_to_me_issues: Tarefas atribuidas a mim
232 label_last_login: Utima conexao
233 label_last_login: Utima conexao
233 label_last_updates: Ultima alteracao
234 label_last_updates: Ultima alteracao
234 label_last_updates_plural: %d Ultimas alteracoes
235 label_last_updates_plural: %d Ultimas alteracoes
235 label_registered_on: Registrado em
236 label_registered_on: Registrado em
236 label_activity: Atividade
237 label_activity: Atividade
237 label_new: Novo
238 label_new: Novo
238 label_logged_as: Logado como
239 label_logged_as: Logado como
239 label_environment: Ambiente
240 label_environment: Ambiente
240 label_authentication: Autenticacao
241 label_authentication: Autenticacao
241 label_auth_source: Modo de autenticacao
242 label_auth_source: Modo de autenticacao
242 label_auth_source_new: Novo modo de autenticacao
243 label_auth_source_new: Novo modo de autenticacao
243 label_auth_source_plural: Modos de autenticacao
244 label_auth_source_plural: Modos de autenticacao
244 label_subproject_plural: Sub-projetos
245 label_subproject_plural: Sub-projetos
245 label_min_max_length: Tamanho min-max
246 label_min_max_length: Tamanho min-max
246 label_list: Lista
247 label_list: Lista
247 label_date: Data
248 label_date: Data
248 label_integer: Inteiro
249 label_integer: Inteiro
249 label_boolean: Boleano
250 label_boolean: Boleano
250 label_string: Texto
251 label_string: Texto
251 label_text: Texto longo
252 label_text: Texto longo
252 label_attribute: Atributo
253 label_attribute: Atributo
253 label_attribute_plural: Atributos
254 label_attribute_plural: Atributos
254 label_download: %d Download
255 label_download: %d Download
255 label_download_plural: %d Downloads
256 label_download_plural: %d Downloads
256 label_no_data: Sem dados para mostrar
257 label_no_data: Sem dados para mostrar
257 label_change_status: Mudar status
258 label_change_status: Mudar status
258 label_history: Historico
259 label_history: Historico
259 label_attachment: Arquivo
260 label_attachment: Arquivo
260 label_attachment_new: Novo arquivo
261 label_attachment_new: Novo arquivo
261 label_attachment_delete: Apagar arquivo
262 label_attachment_delete: Apagar arquivo
262 label_attachment_plural: Arquivos
263 label_attachment_plural: Arquivos
263 label_report: Relatorio
264 label_report: Relatorio
264 label_report_plural: Relatorio
265 label_report_plural: Relatorio
265 label_news: Noticias
266 label_news: Noticias
266 label_news_new: Adicionar noticias
267 label_news_new: Adicionar noticias
267 label_news_plural: Noticias
268 label_news_plural: Noticias
268 label_news_latest: Ultimas noticias
269 label_news_latest: Ultimas noticias
269 label_news_view_all: Ver todas as noticias
270 label_news_view_all: Ver todas as noticias
270 label_change_log: Change log
271 label_change_log: Change log
271 label_settings: Ajustes
272 label_settings: Ajustes
272 label_overview: Visao geral
273 label_overview: Visao geral
273 label_version: Versao
274 label_version: Versao
274 label_version_new: Nova versao
275 label_version_new: Nova versao
275 label_version_plural: Versoes
276 label_version_plural: Versoes
276 label_confirmation: Confirmacao
277 label_confirmation: Confirmacao
277 label_export_to: Exportar para
278 label_export_to: Exportar para
278 label_read: Ler...
279 label_read: Ler...
279 label_public_projects: Projetos publicos
280 label_public_projects: Projetos publicos
280 label_open_issues: Aberto
281 label_open_issues: Aberto
281 label_open_issues_plural: Abertos
282 label_open_issues_plural: Abertos
282 label_closed_issues: Fechado
283 label_closed_issues: Fechado
283 label_closed_issues_plural: Fechados
284 label_closed_issues_plural: Fechados
284 label_total: Total
285 label_total: Total
285 label_permissions: Permissoes
286 label_permissions: Permissoes
286 label_current_status: Status atual
287 label_current_status: Status atual
287 label_new_statuses_allowed: Novo status permitido
288 label_new_statuses_allowed: Novo status permitido
288 label_all: todos
289 label_all: todos
289 label_none: nenhum
290 label_none: nenhum
290 label_next: Proximo
291 label_next: Proximo
291 label_previous: Anterior
292 label_previous: Anterior
292 label_used_by: Usado por
293 label_used_by: Usado por
293 label_details: Detalhes
294 label_details: Detalhes
294 label_add_note: Adicionar nota
295 label_add_note: Adicionar nota
295 label_per_page: Por pagina
296 label_per_page: Por pagina
296 label_calendar: Calendario
297 label_calendar: Calendario
297 label_months_from: Meses de
298 label_months_from: Meses de
298 label_gantt: Gantt
299 label_gantt: Gantt
299 label_internal: Interno
300 label_internal: Interno
300 label_last_changes: utlimas %d mudancas
301 label_last_changes: utlimas %d mudancas
301 label_change_view_all: Mostrar todas as mudancas
302 label_change_view_all: Mostrar todas as mudancas
302 label_personalize_page: Personalizar esta pagina
303 label_personalize_page: Personalizar esta pagina
303 label_comment: Comentario
304 label_comment: Comentario
304 label_comment_plural: Comentarios
305 label_comment_plural: Comentarios
305 label_comment_add: Adicionar comentario
306 label_comment_add: Adicionar comentario
306 label_comment_added: Comentario adicionado
307 label_comment_added: Comentario adicionado
307 label_comment_delete: Apagar comentario
308 label_comment_delete: Apagar comentario
308 label_query: Consulta personalizada
309 label_query: Consulta personalizada
309 label_query_plural: Consultas personalizadas
310 label_query_plural: Consultas personalizadas
310 label_query_new: Nova consulta
311 label_query_new: Nova consulta
311 label_filter_add: Adicionar filtro
312 label_filter_add: Adicionar filtro
312 label_filter_plural: Filtros
313 label_filter_plural: Filtros
313 label_equals: e
314 label_equals: e
314 label_not_equals: nao e
315 label_not_equals: nao e
315 label_in_less_than: e maior que
316 label_in_less_than: e maior que
316 label_in_more_than: e menor que
317 label_in_more_than: e menor que
317 label_in: em
318 label_in: em
318 label_today: hoje
319 label_today: hoje
319 label_less_than_ago: faz menos de
320 label_less_than_ago: faz menos de
320 label_more_than_ago: faz mais de
321 label_more_than_ago: faz mais de
321 label_ago: dias atras
322 label_ago: dias atras
322 label_contains: contem
323 label_contains: contem
323 label_not_contains: nao contem
324 label_not_contains: nao contem
324 label_day_plural: dias
325 label_day_plural: dias
325 label_repository: Repository
326 label_repository: Repository
326 label_browse: Browse
327 label_browse: Browse
327 label_modification: %d change
328 label_modification: %d change
328 label_modification_plural: %d changes
329 label_modification_plural: %d changes
329 label_revision: Revision
330 label_revision: Revision
330 label_revision_plural: Revisions
331 label_revision_plural: Revisions
331 label_added: added
332 label_added: added
332 label_modified: modified
333 label_modified: modified
333 label_deleted: deleted
334 label_deleted: deleted
334 label_latest_revision: Latest revision
335 label_latest_revision: Latest revision
335 label_latest_revision_plural: Latest revisions
336 label_latest_revision_plural: Latest revisions
336 label_view_revisions: View revisions
337 label_view_revisions: View revisions
337 label_max_size: Maximum size
338 label_max_size: Maximum size
338 label_on: 'em'
339 label_on: 'em'
339 label_sort_highest: Mover para o inicio
340 label_sort_highest: Mover para o inicio
340 label_sort_higher: Mover para cima
341 label_sort_higher: Mover para cima
341 label_sort_lower: Mover para baixo
342 label_sort_lower: Mover para baixo
342 label_sort_lowest: Mover para o fim
343 label_sort_lowest: Mover para o fim
343 label_roadmap: Roadmap
344 label_roadmap: Roadmap
344 label_roadmap_due_in: Due in
345 label_roadmap_due_in: Due in
345 label_roadmap_overdue: %s late
346 label_roadmap_overdue: %s late
346 label_roadmap_no_issues: Sem tarefas para essa versao
347 label_roadmap_no_issues: Sem tarefas para essa versao
347 label_search: Busca
348 label_search: Busca
348 label_result: %d resultado
349 label_result: %d resultado
349 label_result_plural: %d resultados
350 label_result_plural: %d resultados
350 label_all_words: Todas as palavras
351 label_all_words: Todas as palavras
351 label_wiki: Wiki
352 label_wiki: Wiki
352 label_wiki_edit: Wiki edit
353 label_wiki_edit: Wiki edit
353 label_wiki_edit_plural: Wiki edits
354 label_wiki_edit_plural: Wiki edits
354 label_wiki_page: Wiki page
355 label_wiki_page: Wiki page
355 label_wiki_page_plural: Wiki pages
356 label_wiki_page_plural: Wiki pages
356 label_page_index: Index
357 label_page_index: Index
357 label_current_version: Versao atual
358 label_current_version: Versao atual
358 label_preview: Previa
359 label_preview: Previa
359 label_feed_plural: Feeds
360 label_feed_plural: Feeds
360 label_changes_details: Detalhes de todas as mudancas
361 label_changes_details: Detalhes de todas as mudancas
361 label_issue_tracking: Tarefas
362 label_issue_tracking: Tarefas
362 label_spent_time: Tempo gasto
363 label_spent_time: Tempo gasto
363 label_f_hour: %.2f hora
364 label_f_hour: %.2f hora
364 label_f_hour_plural: %.2f horas
365 label_f_hour_plural: %.2f horas
365 label_time_tracking: Tempo trabalhado
366 label_time_tracking: Tempo trabalhado
366 label_change_plural: Mudancas
367 label_change_plural: Mudancas
367 label_statistics: Estatisticas
368 label_statistics: Estatisticas
368 label_commits_per_month: Commits por mes
369 label_commits_per_month: Commits por mes
369 label_commits_per_author: Commits por autor
370 label_commits_per_author: Commits por autor
370 label_view_diff: Ver diferencas
371 label_view_diff: Ver diferencas
371 label_diff_inline: inline
372 label_diff_inline: inline
372 label_diff_side_by_side: side by side
373 label_diff_side_by_side: side by side
373 label_options: Opcoes
374 label_options: Opcoes
374 label_copy_workflow_from: Copiar workflow de
375 label_copy_workflow_from: Copiar workflow de
375 label_permissions_report: Relatorio de permissoes
376 label_permissions_report: Relatorio de permissoes
376 label_watched_issues: Watched issues
377 label_watched_issues: Watched issues
377 label_related_issues: Related issues
378 label_related_issues: Related issues
378 label_applied_status: Applied status
379 label_applied_status: Applied status
379 label_loading: Loading...
380 label_loading: Loading...
380 label_relation_new: New relation
381 label_relation_new: New relation
381 label_relation_delete: Delete relation
382 label_relation_delete: Delete relation
382 label_relates_to: related to
383 label_relates_to: related to
383 label_duplicates: duplicates
384 label_duplicates: duplicates
384 label_blocks: blocks
385 label_blocks: blocks
385 label_blocked_by: blocked by
386 label_blocked_by: blocked by
386 label_precedes: precedes
387 label_precedes: precedes
387 label_follows: follows
388 label_follows: follows
388 label_end_to_start: start to end
389 label_end_to_start: start to end
389 label_end_to_end: end to end
390 label_end_to_end: end to end
390 label_start_to_start: start to start
391 label_start_to_start: start to start
391 label_start_to_end: start to end
392 label_start_to_end: start to end
392 label_stay_logged_in: Stay logged in
393 label_stay_logged_in: Stay logged in
393 label_disabled: disabled
394 label_disabled: disabled
394 label_show_completed_versions: Show completed versions
395 label_show_completed_versions: Show completed versions
395 label_me: me
396 label_me: me
396 label_board: Forum
397 label_board: Forum
397 label_board_new: New forum
398 label_board_new: New forum
398 label_board_plural: Forums
399 label_board_plural: Forums
399 label_topic_plural: Topics
400 label_topic_plural: Topics
400 label_message_plural: Messages
401 label_message_plural: Messages
401 label_message_last: Last message
402 label_message_last: Last message
402 label_message_new: New message
403 label_message_new: New message
403 label_reply_plural: Replies
404 label_reply_plural: Replies
404 label_send_information: Send account information to the user
405 label_send_information: Send account information to the user
405 label_year: Year
406 label_year: Year
406 label_month: Month
407 label_month: Month
407 label_week: Week
408 label_week: Week
408 label_date_from: From
409 label_date_from: From
409 label_date_to: To
410 label_date_to: To
410 label_language_based: Language based
411 label_language_based: Language based
411 label_sort_by: Sort by "%s"
412 label_sort_by: Sort by "%s"
412 label_send_test_email: Send a test email
413 label_send_test_email: Send a test email
413
414
414 button_login: Login
415 button_login: Login
415 button_submit: Enviar
416 button_submit: Enviar
416 button_save: Salvar
417 button_save: Salvar
417 button_check_all: Marcar todos
418 button_check_all: Marcar todos
418 button_uncheck_all: Desmarcar todos
419 button_uncheck_all: Desmarcar todos
419 button_delete: Apagar
420 button_delete: Apagar
420 button_create: Criar
421 button_create: Criar
421 button_test: Testar
422 button_test: Testar
422 button_edit: Editar
423 button_edit: Editar
423 button_add: Adicionar
424 button_add: Adicionar
424 button_change: Mudar
425 button_change: Mudar
425 button_apply: Aplicar
426 button_apply: Aplicar
426 button_clear: Limpar
427 button_clear: Limpar
427 button_lock: Bloquear
428 button_lock: Bloquear
428 button_unlock: Desbloquear
429 button_unlock: Desbloquear
429 button_download: Download
430 button_download: Download
430 button_list: Listar
431 button_list: Listar
431 button_view: Ver
432 button_view: Ver
432 button_move: Mover
433 button_move: Mover
433 button_back: Voltar
434 button_back: Voltar
434 button_cancel: Cancelar
435 button_cancel: Cancelar
435 button_activate: Ativar
436 button_activate: Ativar
436 button_sort: Ordenar
437 button_sort: Ordenar
437 button_log_time: Tempo de trabalho
438 button_log_time: Tempo de trabalho
438 button_rollback: Voltar para esta versao
439 button_rollback: Voltar para esta versao
439 button_watch: Watch
440 button_watch: Watch
440 button_unwatch: Unwatch
441 button_unwatch: Unwatch
441 button_reply: Reply
442 button_reply: Reply
442 button_archive: Archive
443 button_archive: Archive
443 button_unarchive: Unarchive
444 button_unarchive: Unarchive
444
445
445 status_active: ativo
446 status_active: ativo
446 status_registered: registrado
447 status_registered: registrado
447 status_locked: bloqueado
448 status_locked: bloqueado
448
449
449 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
450 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
450 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_min_max_length_info: 0 siginifica sem restricao
452 text_min_max_length_info: 0 siginifica sem restricao
452 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
453 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
453 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
454 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
454 text_are_you_sure: Voce tem certeza ?
455 text_are_you_sure: Voce tem certeza ?
455 text_journal_changed: alterado de %s para %s
456 text_journal_changed: alterado de %s para %s
456 text_journal_set_to: setar para %s
457 text_journal_set_to: setar para %s
457 text_journal_deleted: apagado
458 text_journal_deleted: apagado
458 text_tip_task_begin_day: tarefa comeca neste dia
459 text_tip_task_begin_day: tarefa comeca neste dia
459 text_tip_task_end_day: tarefa termina neste dia
460 text_tip_task_end_day: tarefa termina neste dia
460 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
461 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
461 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
462 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
462 text_caracters_maximum: %d maximo de caracteres
463 text_caracters_maximum: %d maximo de caracteres
463 text_length_between: Tamanho entre %d e %d caracteres.
464 text_length_between: Tamanho entre %d e %d caracteres.
464 text_tracker_no_workflow: Sem workflow definido para este tipo.
465 text_tracker_no_workflow: Sem workflow definido para este tipo.
465 text_unallowed_characters: Unallowed characters
466 text_unallowed_characters: Unallowed characters
466 text_comma_separated: Multiple values allowed (comma separated).
467 text_comma_separated: Multiple values allowed (comma separated).
467 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468
469
469 default_role_manager: Analista de Negocio ou Gerente de Projeto
470 default_role_manager: Analista de Negocio ou Gerente de Projeto
470 default_role_developper: Desenvolvedor
471 default_role_developper: Desenvolvedor
471 default_role_reporter: Analista de Suporte
472 default_role_reporter: Analista de Suporte
472 default_tracker_bug: Bug
473 default_tracker_bug: Bug
473 default_tracker_feature: Implementacao
474 default_tracker_feature: Implementacao
474 default_tracker_support: Suporte
475 default_tracker_support: Suporte
475 default_issue_status_new: Novo
476 default_issue_status_new: Novo
476 default_issue_status_assigned: Atribuido
477 default_issue_status_assigned: Atribuido
477 default_issue_status_resolved: Resolvido
478 default_issue_status_resolved: Resolvido
478 default_issue_status_feedback: Feedback
479 default_issue_status_feedback: Feedback
479 default_issue_status_closed: Fechado
480 default_issue_status_closed: Fechado
480 default_issue_status_rejected: Rejeitado
481 default_issue_status_rejected: Rejeitado
481 default_doc_category_user: Documentacao do usuario
482 default_doc_category_user: Documentacao do usuario
482 default_doc_category_tech: Documentacao do tecnica
483 default_doc_category_tech: Documentacao do tecnica
483 default_priority_low: Baixo
484 default_priority_low: Baixo
484 default_priority_normal: Normal
485 default_priority_normal: Normal
485 default_priority_high: Alto
486 default_priority_high: Alto
486 default_priority_urgent: Urgente
487 default_priority_urgent: Urgente
487 default_priority_immediate: Imediato
488 default_priority_immediate: Imediato
488 default_activity_design: Design
489 default_activity_design: Design
489 default_activity_development: Desenvolvimento
490 default_activity_development: Desenvolvimento
490
491
491 enumeration_issue_priorities: Prioridade das tarefas
492 enumeration_issue_priorities: Prioridade das tarefas
492 enumeration_doc_categories: Categorias de documento
493 enumeration_doc_categories: Categorias de documento
493 enumeration_activities: Atividades (time tracking)
494 enumeration_activities: Atividades (time tracking)
@@ -1,493 +1,494
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dia
8 actionview_datehelper_time_in_words_day: 1 dia
9 actionview_datehelper_time_in_words_day_plural: %d dias
9 actionview_datehelper_time_in_words_day_plural: %d dias
10 actionview_datehelper_time_in_words_hour_about: em torno de uma hora
10 actionview_datehelper_time_in_words_hour_about: em torno de uma hora
11 actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas
12 actionview_datehelper_time_in_words_hour_about_single: em torno de uma hora
12 actionview_datehelper_time_in_words_hour_about_single: em torno de uma hora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de um minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de um minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: menos de um segundo
18 actionview_datehelper_time_in_words_second_less_than: menos de um segundo
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 actionview_instancetag_blank_option: Selecione
20 actionview_instancetag_blank_option: Selecione
21
21
22 activerecord_error_inclusion: não existe na lista
22 activerecord_error_inclusion: não existe na lista
23 activerecord_error_exclusion: já existe na lista
23 activerecord_error_exclusion: já existe na lista
24 activerecord_error_invalid: é inválido
24 activerecord_error_invalid: é inválido
25 activerecord_error_confirmation: não confere com sua confirmação
25 activerecord_error_confirmation: não confere com sua confirmação
26 activerecord_error_accepted: deve ser aceito
26 activerecord_error_accepted: deve ser aceito
27 activerecord_error_empty: não pode ser vazio
27 activerecord_error_empty: não pode ser vazio
28 activerecord_error_blank: não pode estar em branco
28 activerecord_error_blank: não pode estar em branco
29 activerecord_error_too_long: é muito longo
29 activerecord_error_too_long: é muito longo
30 activerecord_error_too_short: é muito curto
30 activerecord_error_too_short: é muito curto
31 activerecord_error_wrong_length: possui o comprimento errado
31 activerecord_error_wrong_length: possui o comprimento errado
32 activerecord_error_taken: já foi usado em outro registro
32 activerecord_error_taken: já foi usado em outro registro
33 activerecord_error_not_a_number: não é um número
33 activerecord_error_not_a_number: não é um número
34 activerecord_error_not_a_date: não é uma data válida
34 activerecord_error_not_a_date: não é uma data válida
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 activerecord_error_not_same_project: não pertence ao mesmo projeto
36 activerecord_error_not_same_project: não pertence ao mesmo projeto
37 activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular
37 activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular
38
38
39 general_fmt_age: %d ano
39 general_fmt_age: %d ano
40 general_fmt_age_plural: %d anos
40 general_fmt_age_plural: %d anos
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Não'
45 general_text_No: 'Não'
46 general_text_Yes: 'Sim'
46 general_text_Yes: 'Sim'
47 general_text_no: 'não'
47 general_text_no: 'não'
48 general_text_yes: 'sim'
48 general_text_yes: 'sim'
49 general_lang_name: 'Português'
49 general_lang_name: 'Português'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo
53 general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo
54
54
55 notice_account_updated: Conta foi atualizada com sucesso.
55 notice_account_updated: Conta foi atualizada com sucesso.
56 notice_account_invalid_creditentials: Usuário ou senha inválidos.
56 notice_account_invalid_creditentials: Usuário ou senha inválidos.
57 notice_account_password_updated: Senha foi alterada com sucesso.
57 notice_account_password_updated: Senha foi alterada com sucesso.
58 notice_account_wrong_password: Senha errada.
58 notice_account_wrong_password: Senha errada.
59 notice_account_register_done: Conta foi criada com sucesso.
59 notice_account_register_done: Conta foi criada com sucesso.
60 notice_account_unknown_email: Usuário desconhecido.
60 notice_account_unknown_email: Usuário desconhecido.
61 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha.
61 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha.
62 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
62 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
63 notice_account_activated: Sua conta foi ativada. Você pode logar agora
63 notice_account_activated: Sua conta foi ativada. Você pode logar agora
64 notice_successful_create: Criado com sucesso.
64 notice_successful_create: Criado com sucesso.
65 notice_successful_update: Alterado com sucesso.
65 notice_successful_update: Alterado com sucesso.
66 notice_successful_delete: Apagado com sucesso.
66 notice_successful_delete: Apagado com sucesso.
67 notice_successful_connection: Conectado com sucesso.
67 notice_successful_connection: Conectado com sucesso.
68 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
68 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
69 notice_locking_conflict: Os dados foram atualizados por um outro usuário.
69 notice_locking_conflict: Os dados foram atualizados por um outro usuário.
70 notice_scm_error: A entrada e/ou a revisão não existem no repositório.
70 notice_scm_error: A entrada e/ou a revisão não existem no repositório.
71 notice_not_authorized: Você não está autorizado a acessar esta página.
71 notice_not_authorized: Você não está autorizado a acessar esta página.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)"
74
74
75 mail_subject_lost_password: Sua senha do redMine.
75 mail_subject_lost_password: Sua senha do redMine.
76 mail_subject_register: Ativação de conta do redMine.
76 mail_subject_register: Ativação de conta do redMine.
77
77
78 gui_validation_error: 1 erro
78 gui_validation_error: 1 erro
79 gui_validation_error_plural: %d erros
79 gui_validation_error_plural: %d erros
80
80
81 field_name: Nome
81 field_name: Nome
82 field_description: Descrição
82 field_description: Descrição
83 field_summary: Sumário
83 field_summary: Sumário
84 field_is_required: Obrigatório
84 field_is_required: Obrigatório
85 field_firstname: Primeiro nome
85 field_firstname: Primeiro nome
86 field_lastname: Último nome
86 field_lastname: Último nome
87 field_mail: Email
87 field_mail: Email
88 field_filename: Arquivo
88 field_filename: Arquivo
89 field_filesize: Tamanho
89 field_filesize: Tamanho
90 field_downloads: Downloads
90 field_downloads: Downloads
91 field_author: Autor
91 field_author: Autor
92 field_created_on: Criado
92 field_created_on: Criado
93 field_updated_on: Alterado
93 field_updated_on: Alterado
94 field_field_format: Formato
94 field_field_format: Formato
95 field_is_for_all: Para todos os projetos
95 field_is_for_all: Para todos os projetos
96 field_possible_values: Possíveis valores
96 field_possible_values: Possíveis valores
97 field_regexp: Expressão regular
97 field_regexp: Expressão regular
98 field_min_length: Tamanho mínimo
98 field_min_length: Tamanho mínimo
99 field_max_length: Tamanho máximo
99 field_max_length: Tamanho máximo
100 field_value: Valor
100 field_value: Valor
101 field_category: Categoria
101 field_category: Categoria
102 field_title: Título
102 field_title: Título
103 field_project: Projeto
103 field_project: Projeto
104 field_issue: Tarefa
104 field_issue: Tarefa
105 field_status: Status
105 field_status: Status
106 field_notes: Notas
106 field_notes: Notas
107 field_is_closed: Tarefa fechada
107 field_is_closed: Tarefa fechada
108 field_is_default: Status padrão
108 field_is_default: Status padrão
109 field_html_color: Cor
109 field_html_color: Cor
110 field_tracker: Tipo
110 field_tracker: Tipo
111 field_subject: Assunto
111 field_subject: Assunto
112 field_due_date: Data final
112 field_due_date: Data final
113 field_assigned_to: Atribuído para
113 field_assigned_to: Atribuído para
114 field_priority: Prioridade
114 field_priority: Prioridade
115 field_fixed_version: Versão corrigida
115 field_fixed_version: Versão corrigida
116 field_user: Usuário
116 field_user: Usuário
117 field_role: Regra
117 field_role: Regra
118 field_homepage: Página inicial
118 field_homepage: Página inicial
119 field_is_public: Público
119 field_is_public: Público
120 field_parent: Sub-projeto de
120 field_parent: Sub-projeto de
121 field_is_in_chlog: Tarefas mostradas no changelog
121 field_is_in_chlog: Tarefas mostradas no changelog
122 field_is_in_roadmap: Tarefas mostradas no roadmap
122 field_is_in_roadmap: Tarefas mostradas no roadmap
123 field_login: Login
123 field_login: Login
124 field_mail_notification: Notificações por email
124 field_mail_notification: Notificações por email
125 field_admin: Administrador
125 field_admin: Administrador
126 field_last_login_on: Última conexão
126 field_last_login_on: Última conexão
127 field_language: Língua
127 field_language: Língua
128 field_effective_date: Data
128 field_effective_date: Data
129 field_password: Senha
129 field_password: Senha
130 field_new_password: Nova senha
130 field_new_password: Nova senha
131 field_password_confirmation: Confirmação
131 field_password_confirmation: Confirmação
132 field_version: Versão
132 field_version: Versão
133 field_type: Tipo
133 field_type: Tipo
134 field_host: Servidor
134 field_host: Servidor
135 field_port: Porta
135 field_port: Porta
136 field_account: Conta
136 field_account: Conta
137 field_base_dn: Base DN
137 field_base_dn: Base DN
138 field_attr_login: Atributo login
138 field_attr_login: Atributo login
139 field_attr_firstname: Atributo primeiro nome
139 field_attr_firstname: Atributo primeiro nome
140 field_attr_lastname: Atributo último nome
140 field_attr_lastname: Atributo último nome
141 field_attr_mail: Atributo email
141 field_attr_mail: Atributo email
142 field_onthefly: Criação de usuário sob-demanda
142 field_onthefly: Criação de usuário sob-demanda
143 field_start_date: Início
143 field_start_date: Início
144 field_done_ratio: %% Terminado
144 field_done_ratio: %% Terminado
145 field_auth_source: Modo de autenticação
145 field_auth_source: Modo de autenticação
146 field_hide_mail: Esconda meu email
146 field_hide_mail: Esconda meu email
147 field_comments: Comentário
147 field_comments: Comentário
148 field_url: URL
148 field_url: URL
149 field_start_page: Página inicial
149 field_start_page: Página inicial
150 field_subproject: Sub-projeto
150 field_subproject: Sub-projeto
151 field_hours: Horas
151 field_hours: Horas
152 field_activity: Atividade
152 field_activity: Atividade
153 field_spent_on: Data
153 field_spent_on: Data
154 field_identifier: Identificador
154 field_identifier: Identificador
155 field_is_filter: Usado como filtro
155 field_is_filter: Usado como filtro
156 field_issue_to_id: Tarefa relacionada
156 field_issue_to_id: Tarefa relacionada
157 field_delay: Atraso
157 field_delay: Atraso
158 field_assignable: Issues can be assigned to this role
158
159
159 setting_app_title: Título da aplicação
160 setting_app_title: Título da aplicação
160 setting_app_subtitle: Sub-título da aplicação
161 setting_app_subtitle: Sub-título da aplicação
161 setting_welcome_text: Texto de boas-vindas
162 setting_welcome_text: Texto de boas-vindas
162 setting_default_language: Linguagem padrão
163 setting_default_language: Linguagem padrão
163 setting_login_required: Autenticação obrigatória
164 setting_login_required: Autenticação obrigatória
164 setting_self_registration: Registro permitido
165 setting_self_registration: Registro permitido
165 setting_attachment_max_size: Tamanho máximo do anexo
166 setting_attachment_max_size: Tamanho máximo do anexo
166 setting_issues_export_limit: Limite de exportação das tarefas
167 setting_issues_export_limit: Limite de exportação das tarefas
167 setting_mail_from: Email enviado de
168 setting_mail_from: Email enviado de
168 setting_host_name: Servidor
169 setting_host_name: Servidor
169 setting_text_formatting: Formato do texto
170 setting_text_formatting: Formato do texto
170 setting_wiki_compression: Compactação do histórico do Wiki
171 setting_wiki_compression: Compactação do histórico do Wiki
171 setting_feeds_limit: Limite do Feed
172 setting_feeds_limit: Limite do Feed
172 setting_autofetch_changesets: Buscar automaticamente commits
173 setting_autofetch_changesets: Buscar automaticamente commits
173 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
174 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
174 setting_commit_ref_keywords: Palavras-chave de referôncia
175 setting_commit_ref_keywords: Palavras-chave de referôncia
175 setting_commit_fix_keywords: Palavras-chave fixas
176 setting_commit_fix_keywords: Palavras-chave fixas
176 setting_autologin: Autologin
177 setting_autologin: Autologin
177 setting_date_format: Date format
178 setting_date_format: Date format
178 setting_cross_project_issue_relations: Allow cross-project issue relations
179 setting_cross_project_issue_relations: Allow cross-project issue relations
179
180
180 label_user: Usuário
181 label_user: Usuário
181 label_user_plural: Usuários
182 label_user_plural: Usuários
182 label_user_new: Novo usuário
183 label_user_new: Novo usuário
183 label_project: Projeto
184 label_project: Projeto
184 label_project_new: Novo projeto
185 label_project_new: Novo projeto
185 label_project_plural: Projetos
186 label_project_plural: Projetos
186 label_project_all: All Projects
187 label_project_all: All Projects
187 label_project_latest: Últimos projetos
188 label_project_latest: Últimos projetos
188 label_issue: Tarefa
189 label_issue: Tarefa
189 label_issue_new: Nova tarefa
190 label_issue_new: Nova tarefa
190 label_issue_plural: Tarefas
191 label_issue_plural: Tarefas
191 label_issue_view_all: Ver todas as tarefas
192 label_issue_view_all: Ver todas as tarefas
192 label_document: Documento
193 label_document: Documento
193 label_document_new: Novo documento
194 label_document_new: Novo documento
194 label_document_plural: Documentos
195 label_document_plural: Documentos
195 label_role: Regra
196 label_role: Regra
196 label_role_plural: Regras
197 label_role_plural: Regras
197 label_role_new: Nova regra
198 label_role_new: Nova regra
198 label_role_and_permissions: Regras e permissões
199 label_role_and_permissions: Regras e permissões
199 label_member: Membro
200 label_member: Membro
200 label_member_new: Novo membro
201 label_member_new: Novo membro
201 label_member_plural: Membros
202 label_member_plural: Membros
202 label_tracker: Tipo
203 label_tracker: Tipo
203 label_tracker_plural: Tipos
204 label_tracker_plural: Tipos
204 label_tracker_new: Novo tipo
205 label_tracker_new: Novo tipo
205 label_workflow: Workflow
206 label_workflow: Workflow
206 label_issue_status: Status da tarefa
207 label_issue_status: Status da tarefa
207 label_issue_status_plural: Status das tarefas
208 label_issue_status_plural: Status das tarefas
208 label_issue_status_new: Novo status
209 label_issue_status_new: Novo status
209 label_issue_category: Categoria da tarefa
210 label_issue_category: Categoria da tarefa
210 label_issue_category_plural: Categorias das tarefas
211 label_issue_category_plural: Categorias das tarefas
211 label_issue_category_new: Nova categoria
212 label_issue_category_new: Nova categoria
212 label_custom_field: Campo personalizado
213 label_custom_field: Campo personalizado
213 label_custom_field_plural: Campos personalizados
214 label_custom_field_plural: Campos personalizados
214 label_custom_field_new: Novo campo personalizado
215 label_custom_field_new: Novo campo personalizado
215 label_enumerations: Enumeração
216 label_enumerations: Enumeração
216 label_enumeration_new: Novo valor
217 label_enumeration_new: Novo valor
217 label_information: Informação
218 label_information: Informação
218 label_information_plural: Informações
219 label_information_plural: Informações
219 label_please_login: Efetue login
220 label_please_login: Efetue login
220 label_register: Registre-se
221 label_register: Registre-se
221 label_password_lost: Perdi a senha
222 label_password_lost: Perdi a senha
222 label_home: Página inicial
223 label_home: Página inicial
223 label_my_page: Minha página
224 label_my_page: Minha página
224 label_my_account: Minha conta
225 label_my_account: Minha conta
225 label_my_projects: Meus projetos
226 label_my_projects: Meus projetos
226 label_administration: Administração
227 label_administration: Administração
227 label_login: Login
228 label_login: Login
228 label_logout: Logout
229 label_logout: Logout
229 label_help: Ajuda
230 label_help: Ajuda
230 label_reported_issues: Tarefas reportadas
231 label_reported_issues: Tarefas reportadas
231 label_assigned_to_me_issues: Tarefas atribuídas à mim
232 label_assigned_to_me_issues: Tarefas atribuídas à mim
232 label_last_login: Útima conexão
233 label_last_login: Útima conexão
233 label_last_updates: Última alteração
234 label_last_updates: Última alteração
234 label_last_updates_plural: %d Últimas alterações
235 label_last_updates_plural: %d Últimas alterações
235 label_registered_on: Registrado em
236 label_registered_on: Registrado em
236 label_activity: Atividade
237 label_activity: Atividade
237 label_new: Novo
238 label_new: Novo
238 label_logged_as: Logado como
239 label_logged_as: Logado como
239 label_environment: Ambiente
240 label_environment: Ambiente
240 label_authentication: Autenticação
241 label_authentication: Autenticação
241 label_auth_source: Modo de autenticação
242 label_auth_source: Modo de autenticação
242 label_auth_source_new: Novo modo de autenticação
243 label_auth_source_new: Novo modo de autenticação
243 label_auth_source_plural: Modos de autenticação
244 label_auth_source_plural: Modos de autenticação
244 label_subproject_plural: Sub-projetos
245 label_subproject_plural: Sub-projetos
245 label_min_max_length: Tamanho min-max
246 label_min_max_length: Tamanho min-max
246 label_list: Lista
247 label_list: Lista
247 label_date: Data
248 label_date: Data
248 label_integer: Inteiro
249 label_integer: Inteiro
249 label_boolean: Booleano
250 label_boolean: Booleano
250 label_string: Texto
251 label_string: Texto
251 label_text: Texto longo
252 label_text: Texto longo
252 label_attribute: Atributo
253 label_attribute: Atributo
253 label_attribute_plural: Atributos
254 label_attribute_plural: Atributos
254 label_download: %d Download
255 label_download: %d Download
255 label_download_plural: %d Downloads
256 label_download_plural: %d Downloads
256 label_no_data: Sem dados para mostrar
257 label_no_data: Sem dados para mostrar
257 label_change_status: Mudar status
258 label_change_status: Mudar status
258 label_history: Histórico
259 label_history: Histórico
259 label_attachment: Arquivo
260 label_attachment: Arquivo
260 label_attachment_new: Novo arquivo
261 label_attachment_new: Novo arquivo
261 label_attachment_delete: Apagar arquivo
262 label_attachment_delete: Apagar arquivo
262 label_attachment_plural: Arquivos
263 label_attachment_plural: Arquivos
263 label_report: Relatório
264 label_report: Relatório
264 label_report_plural: Relatório
265 label_report_plural: Relatório
265 label_news: Notícias
266 label_news: Notícias
266 label_news_new: Adicionar notícias
267 label_news_new: Adicionar notícias
267 label_news_plural: Notícias
268 label_news_plural: Notícias
268 label_news_latest: Últimas notícias
269 label_news_latest: Últimas notícias
269 label_news_view_all: Ver todas as notícias
270 label_news_view_all: Ver todas as notícias
270 label_change_log: Log de mudanças
271 label_change_log: Log de mudanças
271 label_settings: Configurações
272 label_settings: Configurações
272 label_overview: Visão geral
273 label_overview: Visão geral
273 label_version: Versão
274 label_version: Versão
274 label_version_new: Nova versão
275 label_version_new: Nova versão
275 label_version_plural: Versões
276 label_version_plural: Versões
276 label_confirmation: Confirmação
277 label_confirmation: Confirmação
277 label_export_to: Exportar para
278 label_export_to: Exportar para
278 label_read: Ler...
279 label_read: Ler...
279 label_public_projects: Projetos públicos
280 label_public_projects: Projetos públicos
280 label_open_issues: Aberto
281 label_open_issues: Aberto
281 label_open_issues_plural: Abertos
282 label_open_issues_plural: Abertos
282 label_closed_issues: Fechado
283 label_closed_issues: Fechado
283 label_closed_issues_plural: Fechados
284 label_closed_issues_plural: Fechados
284 label_total: Total
285 label_total: Total
285 label_permissions: Permissões
286 label_permissions: Permissões
286 label_current_status: Status atual
287 label_current_status: Status atual
287 label_new_statuses_allowed: Novo status permitido
288 label_new_statuses_allowed: Novo status permitido
288 label_all: todos
289 label_all: todos
289 label_none: nenhum
290 label_none: nenhum
290 label_next: Próximo
291 label_next: Próximo
291 label_previous: Anterior
292 label_previous: Anterior
292 label_used_by: Usado por
293 label_used_by: Usado por
293 label_details: Detalhes
294 label_details: Detalhes
294 label_add_note: Adicionar nota
295 label_add_note: Adicionar nota
295 label_per_page: Por página
296 label_per_page: Por página
296 label_calendar: Calendário
297 label_calendar: Calendário
297 label_months_from: Meses de
298 label_months_from: Meses de
298 label_gantt: Gantt
299 label_gantt: Gantt
299 label_internal: Interno
300 label_internal: Interno
300 label_last_changes: últimas %d mudanças
301 label_last_changes: últimas %d mudanças
301 label_change_view_all: Mostrar todas as mudanças
302 label_change_view_all: Mostrar todas as mudanças
302 label_personalize_page: Personalizar esta página
303 label_personalize_page: Personalizar esta página
303 label_comment: Comentário
304 label_comment: Comentário
304 label_comment_plural: Comentários
305 label_comment_plural: Comentários
305 label_comment_add: Adicionar comentário
306 label_comment_add: Adicionar comentário
306 label_comment_added: Comentário adicionado
307 label_comment_added: Comentário adicionado
307 label_comment_delete: Apagar comentário
308 label_comment_delete: Apagar comentário
308 label_query: Consulta personalizada
309 label_query: Consulta personalizada
309 label_query_plural: Consultas personalizadas
310 label_query_plural: Consultas personalizadas
310 label_query_new: Nova consulta
311 label_query_new: Nova consulta
311 label_filter_add: Adicionar filtro
312 label_filter_add: Adicionar filtro
312 label_filter_plural: Filtros
313 label_filter_plural: Filtros
313 label_equals: é
314 label_equals: é
314 label_not_equals: não e
315 label_not_equals: não e
315 label_in_less_than: é maior que
316 label_in_less_than: é maior que
316 label_in_more_than: é menor que
317 label_in_more_than: é menor que
317 label_in: em
318 label_in: em
318 label_today: hoje
319 label_today: hoje
319 label_less_than_ago: faz menos de
320 label_less_than_ago: faz menos de
320 label_more_than_ago: faz mais de
321 label_more_than_ago: faz mais de
321 label_ago: dias atrás
322 label_ago: dias atrás
322 label_contains: contém
323 label_contains: contém
323 label_not_contains: não contém
324 label_not_contains: não contém
324 label_day_plural: dias
325 label_day_plural: dias
325 label_repository: Repositório
326 label_repository: Repositório
326 label_browse: Procurar
327 label_browse: Procurar
327 label_modification: %d mudança
328 label_modification: %d mudança
328 label_modification_plural: %d mudanças
329 label_modification_plural: %d mudanças
329 label_revision: Revisão
330 label_revision: Revisão
330 label_revision_plural: Revisões
331 label_revision_plural: Revisões
331 label_added: adicionado
332 label_added: adicionado
332 label_modified: modificado
333 label_modified: modificado
333 label_deleted: deletado
334 label_deleted: deletado
334 label_latest_revision: Última revisão
335 label_latest_revision: Última revisão
335 label_latest_revision_plural: Últimas revisões
336 label_latest_revision_plural: Últimas revisões
336 label_view_revisions: Ver revisões
337 label_view_revisions: Ver revisões
337 label_max_size: Tamanho máximo
338 label_max_size: Tamanho máximo
338 label_on: em
339 label_on: em
339 label_sort_highest: Mover para o início
340 label_sort_highest: Mover para o início
340 label_sort_higher: Mover para cima
341 label_sort_higher: Mover para cima
341 label_sort_lower: Mover para baixo
342 label_sort_lower: Mover para baixo
342 label_sort_lowest: Mover para o fim
343 label_sort_lowest: Mover para o fim
343 label_roadmap: Roadmap
344 label_roadmap: Roadmap
344 label_roadmap_due_in: Termina em
345 label_roadmap_due_in: Termina em
345 label_roadmap_overdue: %s late
346 label_roadmap_overdue: %s late
346 label_roadmap_no_issues: Sem tarefas para essa versão
347 label_roadmap_no_issues: Sem tarefas para essa versão
347 label_search: Busca
348 label_search: Busca
348 label_result: %d resultado
349 label_result: %d resultado
349 label_result_plural: %d resultados
350 label_result_plural: %d resultados
350 label_all_words: Todas as palavras
351 label_all_words: Todas as palavras
351 label_wiki: Wiki
352 label_wiki: Wiki
352 label_wiki_edit: Wiki edit
353 label_wiki_edit: Wiki edit
353 label_wiki_edit_plural: Wiki edits
354 label_wiki_edit_plural: Wiki edits
354 label_wiki_page: Wiki page
355 label_wiki_page: Wiki page
355 label_wiki_page_plural: Wiki pages
356 label_wiki_page_plural: Wiki pages
356 label_page_index: Index
357 label_page_index: Index
357 label_current_version: Versão atual
358 label_current_version: Versão atual
358 label_preview: Prévia
359 label_preview: Prévia
359 label_feed_plural: Feeds
360 label_feed_plural: Feeds
360 label_changes_details: Detalhes de todas as mudanças
361 label_changes_details: Detalhes de todas as mudanças
361 label_issue_tracking: Tarefas
362 label_issue_tracking: Tarefas
362 label_spent_time: Tempo gasto
363 label_spent_time: Tempo gasto
363 label_f_hour: %.2f hora
364 label_f_hour: %.2f hora
364 label_f_hour_plural: %.2f horas
365 label_f_hour_plural: %.2f horas
365 label_time_tracking: Tempo trabalhado
366 label_time_tracking: Tempo trabalhado
366 label_change_plural: Mudanças
367 label_change_plural: Mudanças
367 label_statistics: Estatísticas
368 label_statistics: Estatísticas
368 label_commits_per_month: Commits por mês
369 label_commits_per_month: Commits por mês
369 label_commits_per_author: Commits por autor
370 label_commits_per_author: Commits por autor
370 label_view_diff: Ver diferenças
371 label_view_diff: Ver diferenças
371 label_diff_inline: inline
372 label_diff_inline: inline
372 label_diff_side_by_side: lado a lado
373 label_diff_side_by_side: lado a lado
373 label_options: Opções
374 label_options: Opções
374 label_copy_workflow_from: Copiar workflow de
375 label_copy_workflow_from: Copiar workflow de
375 label_permissions_report: Relatório de permissões
376 label_permissions_report: Relatório de permissões
376 label_watched_issues: Tarefas observadas
377 label_watched_issues: Tarefas observadas
377 label_related_issues: tarefas relacionadas
378 label_related_issues: tarefas relacionadas
378 label_applied_status: Status aplicado
379 label_applied_status: Status aplicado
379 label_loading: Carregando...
380 label_loading: Carregando...
380 label_relation_new: Nova relação
381 label_relation_new: Nova relação
381 label_relation_delete: Deletar relação
382 label_relation_delete: Deletar relação
382 label_relates_to: relacionado à
383 label_relates_to: relacionado à
383 label_duplicates: duplicadas
384 label_duplicates: duplicadas
384 label_blocks: bloqueios
385 label_blocks: bloqueios
385 label_blocked_by: bloqueado por
386 label_blocked_by: bloqueado por
386 label_precedes: procede
387 label_precedes: procede
387 label_follows: segue
388 label_follows: segue
388 label_end_to_start: fim ao início
389 label_end_to_start: fim ao início
389 label_end_to_end: fim ao fim
390 label_end_to_end: fim ao fim
390 label_start_to_start: ínícia ao inícia
391 label_start_to_start: ínícia ao inícia
391 label_start_to_end: inícia ao fim
392 label_start_to_end: inícia ao fim
392 label_stay_logged_in: Rester connecté
393 label_stay_logged_in: Rester connecté
393 label_disabled: désactivé
394 label_disabled: désactivé
394 label_show_completed_versions: Voire les versions passées
395 label_show_completed_versions: Voire les versions passées
395 label_me: me
396 label_me: me
396 label_board: Forum
397 label_board: Forum
397 label_board_new: New forum
398 label_board_new: New forum
398 label_board_plural: Forums
399 label_board_plural: Forums
399 label_topic_plural: Topics
400 label_topic_plural: Topics
400 label_message_plural: Messages
401 label_message_plural: Messages
401 label_message_last: Last message
402 label_message_last: Last message
402 label_message_new: New message
403 label_message_new: New message
403 label_reply_plural: Replies
404 label_reply_plural: Replies
404 label_send_information: Send account information to the user
405 label_send_information: Send account information to the user
405 label_year: Year
406 label_year: Year
406 label_month: Month
407 label_month: Month
407 label_week: Week
408 label_week: Week
408 label_date_from: From
409 label_date_from: From
409 label_date_to: To
410 label_date_to: To
410 label_language_based: Language based
411 label_language_based: Language based
411 label_sort_by: Sort by "%s"
412 label_sort_by: Sort by "%s"
412 label_send_test_email: Send a test email
413 label_send_test_email: Send a test email
413
414
414 button_login: Login
415 button_login: Login
415 button_submit: Enviar
416 button_submit: Enviar
416 button_save: Salvar
417 button_save: Salvar
417 button_check_all: Marcar todos
418 button_check_all: Marcar todos
418 button_uncheck_all: Desmarcar todos
419 button_uncheck_all: Desmarcar todos
419 button_delete: Apagar
420 button_delete: Apagar
420 button_create: Criar
421 button_create: Criar
421 button_test: Testar
422 button_test: Testar
422 button_edit: Editar
423 button_edit: Editar
423 button_add: Adicionar
424 button_add: Adicionar
424 button_change: Mudar
425 button_change: Mudar
425 button_apply: Aplicar
426 button_apply: Aplicar
426 button_clear: Limpar
427 button_clear: Limpar
427 button_lock: Bloquear
428 button_lock: Bloquear
428 button_unlock: Desbloquear
429 button_unlock: Desbloquear
429 button_download: Download
430 button_download: Download
430 button_list: Listar
431 button_list: Listar
431 button_view: Ver
432 button_view: Ver
432 button_move: Mover
433 button_move: Mover
433 button_back: Voltar
434 button_back: Voltar
434 button_cancel: Cancelar
435 button_cancel: Cancelar
435 button_activate: Ativar
436 button_activate: Ativar
436 button_sort: Ordenar
437 button_sort: Ordenar
437 button_log_time: Tempo de trabalho
438 button_log_time: Tempo de trabalho
438 button_rollback: Voltar para esta versão
439 button_rollback: Voltar para esta versão
439 button_watch: Observar
440 button_watch: Observar
440 button_unwatch: Não observar
441 button_unwatch: Não observar
441 button_reply: Reply
442 button_reply: Reply
442 button_archive: Archive
443 button_archive: Archive
443 button_unarchive: Unarchive
444 button_unarchive: Unarchive
444
445
445 status_active: ativo
446 status_active: ativo
446 status_registered: registrado
447 status_registered: registrado
447 status_locked: bloqueado
448 status_locked: bloqueado
448
449
449 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
450 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
450 text_regexp_info: ex. ^[A-Z0-9]+$
451 text_regexp_info: ex. ^[A-Z0-9]+$
451 text_min_max_length_info: 0 siginifica sem restrição
452 text_min_max_length_info: 0 siginifica sem restrição
452 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
453 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
453 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
454 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
454 text_are_you_sure: Você tem certeza ?
455 text_are_you_sure: Você tem certeza ?
455 text_journal_changed: alterado de %s para %s
456 text_journal_changed: alterado de %s para %s
456 text_journal_set_to: alterar para %s
457 text_journal_set_to: alterar para %s
457 text_journal_deleted: apagado
458 text_journal_deleted: apagado
458 text_tip_task_begin_day: tarefa começa neste dia
459 text_tip_task_begin_day: tarefa começa neste dia
459 text_tip_task_end_day: tarefa termina neste dia
460 text_tip_task_end_day: tarefa termina neste dia
460 text_tip_task_begin_end_day: tarefa começa e termina neste dia
461 text_tip_task_begin_end_day: tarefa começa e termina neste dia
461 text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
462 text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
462 text_caracters_maximum: %d móximo de caracteres
463 text_caracters_maximum: %d móximo de caracteres
463 text_length_between: Tamanho entre %d e %d caracteres.
464 text_length_between: Tamanho entre %d e %d caracteres.
464 text_tracker_no_workflow: Sem workflow definido para este tipo.
465 text_tracker_no_workflow: Sem workflow definido para este tipo.
465 text_unallowed_characters: Caracteres não permitidos
466 text_unallowed_characters: Caracteres não permitidos
466 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
467 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
467 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
468 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
468
469
469 default_role_manager: Analista de Negócio ou Gerente de Projeto
470 default_role_manager: Analista de Negócio ou Gerente de Projeto
470 default_role_developper: Desenvolvedor
471 default_role_developper: Desenvolvedor
471 default_role_reporter: Analista de Suporte
472 default_role_reporter: Analista de Suporte
472 default_tracker_bug: Bug
473 default_tracker_bug: Bug
473 default_tracker_feature: Implementaçõo
474 default_tracker_feature: Implementaçõo
474 default_tracker_support: Suporte
475 default_tracker_support: Suporte
475 default_issue_status_new: Novo
476 default_issue_status_new: Novo
476 default_issue_status_assigned: Atribuído
477 default_issue_status_assigned: Atribuído
477 default_issue_status_resolved: Resolvido
478 default_issue_status_resolved: Resolvido
478 default_issue_status_feedback: Feedback
479 default_issue_status_feedback: Feedback
479 default_issue_status_closed: Fechado
480 default_issue_status_closed: Fechado
480 default_issue_status_rejected: Rejeitado
481 default_issue_status_rejected: Rejeitado
481 default_doc_category_user: Documentação do usuário
482 default_doc_category_user: Documentação do usuário
482 default_doc_category_tech: Documentação técnica
483 default_doc_category_tech: Documentação técnica
483 default_priority_low: Baixo
484 default_priority_low: Baixo
484 default_priority_normal: Normal
485 default_priority_normal: Normal
485 default_priority_high: Alto
486 default_priority_high: Alto
486 default_priority_urgent: Urgente
487 default_priority_urgent: Urgente
487 default_priority_immediate: Imediato
488 default_priority_immediate: Imediato
488 default_activity_design: Design
489 default_activity_design: Design
489 default_activity_development: Desenvolvimento
490 default_activity_development: Desenvolvimento
490
491
491 enumeration_issue_priorities: Prioridade das tarefas
492 enumeration_issue_priorities: Prioridade das tarefas
492 enumeration_doc_categories: Categorias de documento
493 enumeration_doc_categories: Categorias de documento
493 enumeration_activities: Atividades (time tracking)
494 enumeration_activities: Atividades (time tracking)
@@ -1,493 +1,494
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December
4 actionview_datehelper_select_month_names: Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dagar
9 actionview_datehelper_time_in_words_day_plural: %d dagar
10 actionview_datehelper_time_in_words_hour_about: cirka en timme
10 actionview_datehelper_time_in_words_hour_about: cirka en timme
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar
12 actionview_datehelper_time_in_words_hour_about_single: cirka en timme
12 actionview_datehelper_time_in_words_hour_about_single: cirka en timme
13 actionview_datehelper_time_in_words_minute: 1 minut
13 actionview_datehelper_time_in_words_minute: 1 minut
14 actionview_datehelper_time_in_words_minute_half: en halv minute
14 actionview_datehelper_time_in_words_minute_half: en halv minute
15 actionview_datehelper_time_in_words_minute_less_than: mindre än en minut
15 actionview_datehelper_time_in_words_minute_less_than: mindre än en minut
16 actionview_datehelper_time_in_words_minute_plural: %d minuter
16 actionview_datehelper_time_in_words_minute_plural: %d minuter
17 actionview_datehelper_time_in_words_minute_single: 1 minut
17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 actionview_datehelper_time_in_words_second_less_than: mindre än en sekund
18 actionview_datehelper_time_in_words_second_less_than: mindre än en sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder
20 actionview_instancetag_blank_option: Var god välj
20 actionview_instancetag_blank_option: Var god välj
21
21
22 activerecord_error_inclusion: finns inte i listan
22 activerecord_error_inclusion: finns inte i listan
23 activerecord_error_exclusion: är reserverad
23 activerecord_error_exclusion: är reserverad
24 activerecord_error_invalid: är ogiltig
24 activerecord_error_invalid: är ogiltig
25 activerecord_error_confirmation: överränsstämmer inte med bekräftelsen
25 activerecord_error_confirmation: överränsstämmer inte med bekräftelsen
26 activerecord_error_accepted: måste accepteras
26 activerecord_error_accepted: måste accepteras
27 activerecord_error_empty: får inte vara tom
27 activerecord_error_empty: får inte vara tom
28 activerecord_error_blank: får inte vara tom
28 activerecord_error_blank: får inte vara tom
29 activerecord_error_too_long: är för lång
29 activerecord_error_too_long: är för lång
30 activerecord_error_too_short: är för kort
30 activerecord_error_too_short: är för kort
31 activerecord_error_wrong_length: har fel längd
31 activerecord_error_wrong_length: har fel längd
32 activerecord_error_taken: har redan blivit tagen
32 activerecord_error_taken: har redan blivit tagen
33 activerecord_error_not_a_number: är inte ett nummer
33 activerecord_error_not_a_number: är inte ett nummer
34 activerecord_error_not_a_date: är inte ett korrekt datum
34 activerecord_error_not_a_date: är inte ett korrekt datum
35 activerecord_error_greater_than_start_date: måste vara senare än startdatumet
35 activerecord_error_greater_than_start_date: måste vara senare än startdatumet
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d år
39 general_fmt_age: %d år
40 general_fmt_age_plural: %d år
40 general_fmt_age_plural: %d år
41 general_fmt_date: %%Y-%%m-%%d
41 general_fmt_date: %%Y-%%m-%%d
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nej'
45 general_text_No: 'Nej'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nej'
47 general_text_no: 'nej'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Svenska'
49 general_lang_name: 'Svenska'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag
53 general_day_names: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag
54
54
55 notice_account_updated: Kontot har uppdaterats
55 notice_account_updated: Kontot har uppdaterats
56 notice_account_invalid_creditentials: Fel användarnamn eller lösenord
56 notice_account_invalid_creditentials: Fel användarnamn eller lösenord
57 notice_account_password_updated: Lösenordet har uppdaterats
57 notice_account_password_updated: Lösenordet har uppdaterats
58 notice_account_wrong_password: Fel lösenord
58 notice_account_wrong_password: Fel lösenord
59 notice_account_register_done: Kontot har skapats.
59 notice_account_register_done: Kontot har skapats.
60 notice_account_unknown_email: Okäns användare.
60 notice_account_unknown_email: Okäns användare.
61 notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord.
61 notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord.
62 notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig.
62 notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig.
63 notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in.
63 notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in.
64 notice_successful_create: Lyckat skapande.
64 notice_successful_create: Lyckat skapande.
65 notice_successful_update: Lyckad uppdatering.
65 notice_successful_update: Lyckad uppdatering.
66 notice_successful_delete: Lyckad borttagning.
66 notice_successful_delete: Lyckad borttagning.
67 notice_successful_connection: Lyckad uppkoppling.
67 notice_successful_connection: Lyckad uppkoppling.
68 notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen.
68 notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen.
69 notice_locking_conflict: Data har uppdaterats av en annan användare.
69 notice_locking_conflict: Data har uppdaterats av en annan användare.
70 notice_scm_error: Inlägg och/eller revision finns inte i repositoriet.
70 notice_scm_error: Inlägg och/eller revision finns inte i repositoriet.
71 notice_not_authorized: You are not authorized to access this page.
71 notice_not_authorized: You are not authorized to access this page.
72 notice_email_sent: An email was sent to %s
72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)"
74
74
75 mail_subject_lost_password: Ditt redMine lösenord
75 mail_subject_lost_password: Ditt redMine lösenord
76 mail_subject_register: redMine kontoaktivering
76 mail_subject_register: redMine kontoaktivering
77
77
78 gui_validation_error: 1 fel
78 gui_validation_error: 1 fel
79 gui_validation_error_plural: %d fel
79 gui_validation_error_plural: %d fel
80
80
81 field_name: Namn
81 field_name: Namn
82 field_description: Beskrivning
82 field_description: Beskrivning
83 field_summary: Sammanfattning
83 field_summary: Sammanfattning
84 field_is_required: Obligatorisk
84 field_is_required: Obligatorisk
85 field_firstname: Förnamn
85 field_firstname: Förnamn
86 field_lastname: Efternamn
86 field_lastname: Efternamn
87 field_mail: Email
87 field_mail: Email
88 field_filename: Fil
88 field_filename: Fil
89 field_filesize: Storlek
89 field_filesize: Storlek
90 field_downloads: Nerladdningar
90 field_downloads: Nerladdningar
91 field_author: Författare
91 field_author: Författare
92 field_created_on: Skapad
92 field_created_on: Skapad
93 field_updated_on: Uppdaterad
93 field_updated_on: Uppdaterad
94 field_field_format: Format
94 field_field_format: Format
95 field_is_for_all: För alla projekt
95 field_is_for_all: För alla projekt
96 field_possible_values: Möjliga värden
96 field_possible_values: Möjliga värden
97 field_regexp: Regular expression
97 field_regexp: Regular expression
98 field_min_length: Minimilängd
98 field_min_length: Minimilängd
99 field_max_length: Maximumlängd
99 field_max_length: Maximumlängd
100 field_value: Värde
100 field_value: Värde
101 field_category: Kategori
101 field_category: Kategori
102 field_title: Titel
102 field_title: Titel
103 field_project: Projekt
103 field_project: Projekt
104 field_issue: Brist
104 field_issue: Brist
105 field_status: Status
105 field_status: Status
106 field_notes: Anteckningar
106 field_notes: Anteckningar
107 field_is_closed: Brist stängd
107 field_is_closed: Brist stängd
108 field_is_default: Defaultstatus
108 field_is_default: Defaultstatus
109 field_html_color: Färg
109 field_html_color: Färg
110 field_tracker: Tracker
110 field_tracker: Tracker
111 field_subject: Rubrik
111 field_subject: Rubrik
112 field_due_date: Färdigdatum
112 field_due_date: Färdigdatum
113 field_assigned_to: Tilldelad
113 field_assigned_to: Tilldelad
114 field_priority: Prioritet
114 field_priority: Prioritet
115 field_fixed_version: Fixed version
115 field_fixed_version: Fixed version
116 field_user: Användare
116 field_user: Användare
117 field_role: Roll
117 field_role: Roll
118 field_homepage: Hemsida
118 field_homepage: Hemsida
119 field_is_public: Offentlig
119 field_is_public: Offentlig
120 field_parent: Delprojekt av
120 field_parent: Delprojekt av
121 field_is_in_chlog: Brister visade i ändringslogg
121 field_is_in_chlog: Brister visade i ändringslogg
122 field_is_in_roadmap: Bsiter visade i roadmap
122 field_is_in_roadmap: Bsiter visade i roadmap
123 field_login: Inloggning
123 field_login: Inloggning
124 field_mail_notification: Emailnotifieringar
124 field_mail_notification: Emailnotifieringar
125 field_admin: Administratör
125 field_admin: Administratör
126 field_last_login_on: Senaste inloggning
126 field_last_login_on: Senaste inloggning
127 field_language: Språk
127 field_language: Språk
128 field_effective_date: Datum
128 field_effective_date: Datum
129 field_password: Lösenord
129 field_password: Lösenord
130 field_new_password: Nytt lösenord
130 field_new_password: Nytt lösenord
131 field_password_confirmation: Bekräfta
131 field_password_confirmation: Bekräfta
132 field_version: Version
132 field_version: Version
133 field_type: Typ
133 field_type: Typ
134 field_host: Värddator
134 field_host: Värddator
135 field_port: Port
135 field_port: Port
136 field_account: Konto
136 field_account: Konto
137 field_base_dn: Bas DN
137 field_base_dn: Bas DN
138 field_attr_login: Inloggningsattribut
138 field_attr_login: Inloggningsattribut
139 field_attr_firstname: Förnamnattribut
139 field_attr_firstname: Förnamnattribut
140 field_attr_lastname: Efternamnattribut
140 field_attr_lastname: Efternamnattribut
141 field_attr_mail: Emailattribut
141 field_attr_mail: Emailattribut
142 field_onthefly: On-the-fly användarskapning
142 field_onthefly: On-the-fly användarskapning
143 field_start_date: Start
143 field_start_date: Start
144 field_done_ratio: %% Done
144 field_done_ratio: %% Done
145 field_auth_source: Authentikeringsläge
145 field_auth_source: Authentikeringsläge
146 field_hide_mail: Dölj min emailadress
146 field_hide_mail: Dölj min emailadress
147 field_comment: Kommentar
147 field_comment: Kommentar
148 field_url: URL
148 field_url: URL
149 field_start_page: Startsida
149 field_start_page: Startsida
150 field_subproject: Delprojekt
150 field_subproject: Delprojekt
151 field_hours: Timmar
151 field_hours: Timmar
152 field_activity: Aktivitet
152 field_activity: Aktivitet
153 field_spent_on: Datum
153 field_spent_on: Datum
154 field_identifier: Identifierare
154 field_identifier: Identifierare
155 field_is_filter: Used as a filter
155 field_is_filter: Used as a filter
156 field_issue_to_id: Related issue
156 field_issue_to_id: Related issue
157 field_delay: Delay
157 field_delay: Delay
158 field_assignable: Issues can be assigned to this role
158
159
159 setting_app_title: Applikationstitel
160 setting_app_title: Applikationstitel
160 setting_app_subtitle: Applicationsunderrubrik
161 setting_app_subtitle: Applicationsunderrubrik
161 setting_welcome_text: Välkommentext
162 setting_welcome_text: Välkommentext
162 setting_default_language: Default språk
163 setting_default_language: Default språk
163 setting_login_required: Authent. obligatoriskt
164 setting_login_required: Authent. obligatoriskt
164 setting_self_registration: Självregistrering påslaget
165 setting_self_registration: Självregistrering påslaget
165 setting_attachment_max_size: Bifogad maxstorlek
166 setting_attachment_max_size: Bifogad maxstorlek
166 setting_issues_export_limit: Brist exportgräns
167 setting_issues_export_limit: Brist exportgräns
167 setting_mail_from: Emailavsändare
168 setting_mail_from: Emailavsändare
168 setting_host_name: Värddatornamn
169 setting_host_name: Värddatornamn
169 setting_text_formatting: Textformattering
170 setting_text_formatting: Textformattering
170 setting_wiki_compression: Wiki historiekomprimering
171 setting_wiki_compression: Wiki historiekomprimering
171 setting_feeds_limit: Feed innehållsgräns
172 setting_feeds_limit: Feed innehållsgräns
172 setting_autofetch_changesets: Automatisk hämtning av commits
173 setting_autofetch_changesets: Automatisk hämtning av commits
173 setting_sys_api_enabled: Aktivera WS för repository management
174 setting_sys_api_enabled: Aktivera WS för repository management
174 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_fix_keywords: Fixing keywords
176 setting_commit_fix_keywords: Fixing keywords
176 setting_autologin: Autologin
177 setting_autologin: Autologin
177 setting_date_format: Date format
178 setting_date_format: Date format
178 setting_cross_project_issue_relations: Allow cross-project issue relations
179 setting_cross_project_issue_relations: Allow cross-project issue relations
179
180
180 label_user: Användare
181 label_user: Användare
181 label_user_plural: Användare
182 label_user_plural: Användare
182 label_user_new: Ny användare
183 label_user_new: Ny användare
183 label_project: Projekt
184 label_project: Projekt
184 label_project_new: Nytt projekt
185 label_project_new: Nytt projekt
185 label_project_plural: Projekt
186 label_project_plural: Projekt
186 label_project_all: All Projects
187 label_project_all: All Projects
187 label_project_latest: Senaste projekt
188 label_project_latest: Senaste projekt
188 label_issue: Brist
189 label_issue: Brist
189 label_issue_new: Ny brist
190 label_issue_new: Ny brist
190 label_issue_plural: Brister
191 label_issue_plural: Brister
191 label_issue_view_all: Visa alla brister
192 label_issue_view_all: Visa alla brister
192 label_document: Dokument
193 label_document: Dokument
193 label_document_new: Nytt dokument
194 label_document_new: Nytt dokument
194 label_document_plural: Dokument
195 label_document_plural: Dokument
195 label_role: Roll
196 label_role: Roll
196 label_role_plural: Roller
197 label_role_plural: Roller
197 label_role_new: Ny roll
198 label_role_new: Ny roll
198 label_role_and_permissions: Roller och rättigheter
199 label_role_and_permissions: Roller och rättigheter
199 label_member: Medlem
200 label_member: Medlem
200 label_member_new: Ny medlem
201 label_member_new: Ny medlem
201 label_member_plural: Medlemmar
202 label_member_plural: Medlemmar
202 label_tracker: Tracker
203 label_tracker: Tracker
203 label_tracker_plural: Trackers
204 label_tracker_plural: Trackers
204 label_tracker_new: Ny tracker
205 label_tracker_new: Ny tracker
205 label_workflow: Workflow
206 label_workflow: Workflow
206 label_issue_status: Briststatus
207 label_issue_status: Briststatus
207 label_issue_status_plural: Briststatusar
208 label_issue_status_plural: Briststatusar
208 label_issue_status_new: Ny status
209 label_issue_status_new: Ny status
209 label_issue_category: Bristkategori
210 label_issue_category: Bristkategori
210 label_issue_category_plural: Bristkategorier
211 label_issue_category_plural: Bristkategorier
211 label_issue_category_new: Ny kategori
212 label_issue_category_new: Ny kategori
212 label_custom_field: Användardefinerat fält
213 label_custom_field: Användardefinerat fält
213 label_custom_field_plural: Användardefinerade fält
214 label_custom_field_plural: Användardefinerade fält
214 label_custom_field_new: Nytt Användardefinerat fält
215 label_custom_field_new: Nytt Användardefinerat fält
215 label_enumerations: Uppräkningar
216 label_enumerations: Uppräkningar
216 label_enumeration_new: Nytt värde
217 label_enumeration_new: Nytt värde
217 label_information: Information
218 label_information: Information
218 label_information_plural: Information
219 label_information_plural: Information
219 label_please_login: Var god logga in
220 label_please_login: Var god logga in
220 label_register: Registrera
221 label_register: Registrera
221 label_password_lost: Glömt lösenord
222 label_password_lost: Glömt lösenord
222 label_home: Hem
223 label_home: Hem
223 label_my_page: Min sida
224 label_my_page: Min sida
224 label_my_account: Mitt konto
225 label_my_account: Mitt konto
225 label_my_projects: Mina projekt
226 label_my_projects: Mina projekt
226 label_administration: Administration
227 label_administration: Administration
227 label_login: Logga in
228 label_login: Logga in
228 label_logout: Logga ut
229 label_logout: Logga ut
229 label_help: Hjälp
230 label_help: Hjälp
230 label_reported_issues: Rapporterade brister
231 label_reported_issues: Rapporterade brister
231 label_assigned_to_me_issues: Brister tilldelade mig
232 label_assigned_to_me_issues: Brister tilldelade mig
232 label_last_login: Senaste inloggning
233 label_last_login: Senaste inloggning
233 label_last_updates: Senast uppdaterad
234 label_last_updates: Senast uppdaterad
234 label_last_updates_plural: %d senaste uppdateringarna
235 label_last_updates_plural: %d senaste uppdateringarna
235 label_registered_on: Registrerad
236 label_registered_on: Registrerad
236 label_activity: Aktivitet
237 label_activity: Aktivitet
237 label_new: Ny
238 label_new: Ny
238 label_logged_as: Loggad som
239 label_logged_as: Loggad som
239 label_environment: Miljö
240 label_environment: Miljö
240 label_authentication: Authentikering
241 label_authentication: Authentikering
241 label_auth_source: Authentikeringsläge
242 label_auth_source: Authentikeringsläge
242 label_auth_source_new: Nytt authentikeringsläge
243 label_auth_source_new: Nytt authentikeringsläge
243 label_auth_source_plural: Authentikeringslägen
244 label_auth_source_plural: Authentikeringslägen
244 label_subproject_plural: Delprojekt
245 label_subproject_plural: Delprojekt
245 label_min_max_length: Min - Max längd
246 label_min_max_length: Min - Max längd
246 label_list: Lista
247 label_list: Lista
247 label_date: Datum
248 label_date: Datum
248 label_integer: Heltal
249 label_integer: Heltal
249 label_boolean: Boolean
250 label_boolean: Boolean
250 label_string: Text
251 label_string: Text
251 label_text: Long text
252 label_text: Long text
252 label_attribute: Attribut
253 label_attribute: Attribut
253 label_attribute_plural: Attribut
254 label_attribute_plural: Attribut
254 label_download: %d Nerladdning
255 label_download: %d Nerladdning
255 label_download_plural: %d Nerladdningar
256 label_download_plural: %d Nerladdningar
256 label_no_data: Ingen data att visa
257 label_no_data: Ingen data att visa
257 label_change_status: Ändra status
258 label_change_status: Ändra status
258 label_history: Historia
259 label_history: Historia
259 label_attachment: Fil
260 label_attachment: Fil
260 label_attachment_new: Ny fil
261 label_attachment_new: Ny fil
261 label_attachment_delete: Ta bort fil
262 label_attachment_delete: Ta bort fil
262 label_attachment_plural: Filer
263 label_attachment_plural: Filer
263 label_report: Rapport
264 label_report: Rapport
264 label_report_plural: Rapporter
265 label_report_plural: Rapporter
265 label_news: Nyhet
266 label_news: Nyhet
266 label_news_new: Lägg till nyhet
267 label_news_new: Lägg till nyhet
267 label_news_plural: Nyheter
268 label_news_plural: Nyheter
268 label_news_latest: Senaste neheten
269 label_news_latest: Senaste neheten
269 label_news_view_all: Visa alla nyheter
270 label_news_view_all: Visa alla nyheter
270 label_change_log: Ändringslogg
271 label_change_log: Ändringslogg
271 label_settings: Inställningar
272 label_settings: Inställningar
272 label_overview: Överblick
273 label_overview: Överblick
273 label_version: Version
274 label_version: Version
274 label_version_new: Ny version
275 label_version_new: Ny version
275 label_version_plural: Versioner
276 label_version_plural: Versioner
276 label_confirmation: Bekräftelse
277 label_confirmation: Bekräftelse
277 label_export_to: Exportera till
278 label_export_to: Exportera till
278 label_read: Läs...
279 label_read: Läs...
279 label_public_projects: Offentligt projekt
280 label_public_projects: Offentligt projekt
280 label_open_issues: öppen
281 label_open_issues: öppen
281 label_open_issues_plural: öppna
282 label_open_issues_plural: öppna
282 label_closed_issues: stängd
283 label_closed_issues: stängd
283 label_closed_issues_plural: stängda
284 label_closed_issues_plural: stängda
284 label_total: Total
285 label_total: Total
285 label_permissions: Rättigheter
286 label_permissions: Rättigheter
286 label_current_status: Nuvarande status
287 label_current_status: Nuvarande status
287 label_new_statuses_allowed: Nya statusar tillåtna
288 label_new_statuses_allowed: Nya statusar tillåtna
288 label_all: alla
289 label_all: alla
289 label_none: inga
290 label_none: inga
290 label_next: Nästa
291 label_next: Nästa
291 label_previous: Föregående
292 label_previous: Föregående
292 label_used_by: Använd av
293 label_used_by: Använd av
293 label_details: Detaljer
294 label_details: Detaljer
294 label_add_note: Lägg till anteckning
295 label_add_note: Lägg till anteckning
295 label_per_page: Per sida
296 label_per_page: Per sida
296 label_calendar: Kalender
297 label_calendar: Kalender
297 label_months_from: månader från
298 label_months_from: månader från
298 label_gantt: Gantt
299 label_gantt: Gantt
299 label_internal: Intern
300 label_internal: Intern
300 label_last_changes: senaste %d ändringar
301 label_last_changes: senaste %d ändringar
301 label_change_view_all: Visa alla ändringar
302 label_change_view_all: Visa alla ändringar
302 label_personalize_page: Anpassa denna sida
303 label_personalize_page: Anpassa denna sida
303 label_comment: Kommentar
304 label_comment: Kommentar
304 label_comment_plural: Kommentarer
305 label_comment_plural: Kommentarer
305 label_comment_add: Lägg till kommentar
306 label_comment_add: Lägg till kommentar
306 label_comment_added: Kommentar tillagd
307 label_comment_added: Kommentar tillagd
307 label_comment_delete: Ta bort kommentar
308 label_comment_delete: Ta bort kommentar
308 label_query: Användardefinerad fråga
309 label_query: Användardefinerad fråga
309 label_query_plural: Användardefinerade frågor
310 label_query_plural: Användardefinerade frågor
310 label_query_new: Ny fråga
311 label_query_new: Ny fråga
311 label_filter_add: Lägg till filter
312 label_filter_add: Lägg till filter
312 label_filter_plural: Filter
313 label_filter_plural: Filter
313 label_equals: är
314 label_equals: är
314 label_not_equals: är inte
315 label_not_equals: är inte
315 label_in_less_than: i mindre än
316 label_in_less_than: i mindre än
316 label_in_more_than: i mer än
317 label_in_more_than: i mer än
317 label_in: i
318 label_in: i
318 label_today: idag
319 label_today: idag
319 label_less_than_ago: mindre än dagar sedan
320 label_less_than_ago: mindre än dagar sedan
320 label_more_than_ago: mer än dagar sedan
321 label_more_than_ago: mer än dagar sedan
321 label_ago: dagar sedan
322 label_ago: dagar sedan
322 label_contains: innehåller
323 label_contains: innehåller
323 label_not_contains: innehåller inte
324 label_not_contains: innehåller inte
324 label_day_plural: dagar
325 label_day_plural: dagar
325 label_repository: Repositorie
326 label_repository: Repositorie
326 label_browse: Bläddra
327 label_browse: Bläddra
327 label_modification: %d ändring
328 label_modification: %d ändring
328 label_modification_plural: %d ändringar
329 label_modification_plural: %d ändringar
329 label_revision: Revision
330 label_revision: Revision
330 label_revision_plural: Revisioner
331 label_revision_plural: Revisioner
331 label_added: tillagd
332 label_added: tillagd
332 label_modified: modifierad
333 label_modified: modifierad
333 label_deleted: borttagen
334 label_deleted: borttagen
334 label_latest_revision: Senaste revisionen
335 label_latest_revision: Senaste revisionen
335 label_latest_revision_plural: Senaste revisionerna
336 label_latest_revision_plural: Senaste revisionerna
336 label_view_revisions: Visa revisioner
337 label_view_revisions: Visa revisioner
337 label_max_size: Maximumstorlek
338 label_max_size: Maximumstorlek
338 label_on: 'på'
339 label_on: 'på'
339 label_sort_highest: Flytta till top
340 label_sort_highest: Flytta till top
340 label_sort_higher: Flytta up
341 label_sort_higher: Flytta up
341 label_sort_lower: Flytta ner
342 label_sort_lower: Flytta ner
342 label_sort_lowest: Flytta till botten
343 label_sort_lowest: Flytta till botten
343 label_roadmap: Roadmap
344 label_roadmap: Roadmap
344 label_roadmap_due_in: Färdig om
345 label_roadmap_due_in: Färdig om
345 label_roadmap_overdue: %s late
346 label_roadmap_overdue: %s late
346 label_roadmap_no_issues: Inga brister för denna version
347 label_roadmap_no_issues: Inga brister för denna version
347 label_search: Sök
348 label_search: Sök
348 label_result: %d resultat
349 label_result: %d resultat
349 label_result_plural: %d resultat
350 label_result_plural: %d resultat
350 label_all_words: Alla ord
351 label_all_words: Alla ord
351 label_wiki: Wiki
352 label_wiki: Wiki
352 label_wiki_edit: Wiki editera
353 label_wiki_edit: Wiki editera
353 label_wiki_edit_plural: Wiki editeringar
354 label_wiki_edit_plural: Wiki editeringar
354 label_wiki_page: Wiki page
355 label_wiki_page: Wiki page
355 label_wiki_page_plural: Wiki pages
356 label_wiki_page_plural: Wiki pages
356 label_page_index: Index
357 label_page_index: Index
357 label_current_version: Nuvarande version
358 label_current_version: Nuvarande version
358 label_preview: Preview
359 label_preview: Preview
359 label_feed_plural: Feeder
360 label_feed_plural: Feeder
360 label_changes_details: Detaljer om alla ändringar
361 label_changes_details: Detaljer om alla ändringar
361 label_issue_tracking: Bristspårning
362 label_issue_tracking: Bristspårning
362 label_spent_time: Spenderad tid
363 label_spent_time: Spenderad tid
363 label_f_hour: %.2f timmar
364 label_f_hour: %.2f timmar
364 label_f_hour_plural: %.2f timmar
365 label_f_hour_plural: %.2f timmar
365 label_time_tracking: Tidsspårning
366 label_time_tracking: Tidsspårning
366 label_change_plural: Ändringar
367 label_change_plural: Ändringar
367 label_statistics: Statistik
368 label_statistics: Statistik
368 label_commits_per_month: Commit per månad
369 label_commits_per_month: Commit per månad
369 label_commits_per_author: Commit per författare
370 label_commits_per_author: Commit per författare
370 label_view_diff: Visa skillnader
371 label_view_diff: Visa skillnader
371 label_diff_inline: inline
372 label_diff_inline: inline
372 label_diff_side_by_side: sida vid sida
373 label_diff_side_by_side: sida vid sida
373 label_options: Inställningar
374 label_options: Inställningar
374 label_copy_workflow_from: Kopiera workflow från
375 label_copy_workflow_from: Kopiera workflow från
375 label_permissions_report: Rättighetsrapport
376 label_permissions_report: Rättighetsrapport
376 label_watched_issues: Watched issues
377 label_watched_issues: Watched issues
377 label_related_issues: Related issues
378 label_related_issues: Related issues
378 label_applied_status: Applied status
379 label_applied_status: Applied status
379 label_loading: Loading...
380 label_loading: Loading...
380 label_relation_new: New relation
381 label_relation_new: New relation
381 label_relation_delete: Delete relation
382 label_relation_delete: Delete relation
382 label_relates_to: related to
383 label_relates_to: related to
383 label_duplicates: duplicates
384 label_duplicates: duplicates
384 label_blocks: blocks
385 label_blocks: blocks
385 label_blocked_by: blocked by
386 label_blocked_by: blocked by
386 label_precedes: precedes
387 label_precedes: precedes
387 label_follows: follows
388 label_follows: follows
388 label_end_to_start: start to end
389 label_end_to_start: start to end
389 label_end_to_end: end to end
390 label_end_to_end: end to end
390 label_start_to_start: start to start
391 label_start_to_start: start to start
391 label_start_to_end: start to end
392 label_start_to_end: start to end
392 label_stay_logged_in: Stay logged in
393 label_stay_logged_in: Stay logged in
393 label_disabled: disabled
394 label_disabled: disabled
394 label_show_completed_versions: Show completed versions
395 label_show_completed_versions: Show completed versions
395 label_me: me
396 label_me: me
396 label_board: Forum
397 label_board: Forum
397 label_board_new: New forum
398 label_board_new: New forum
398 label_board_plural: Forums
399 label_board_plural: Forums
399 label_topic_plural: Topics
400 label_topic_plural: Topics
400 label_message_plural: Messages
401 label_message_plural: Messages
401 label_message_last: Last message
402 label_message_last: Last message
402 label_message_new: New message
403 label_message_new: New message
403 label_reply_plural: Replies
404 label_reply_plural: Replies
404 label_send_information: Send account information to the user
405 label_send_information: Send account information to the user
405 label_year: Year
406 label_year: Year
406 label_month: Month
407 label_month: Month
407 label_week: Week
408 label_week: Week
408 label_date_from: From
409 label_date_from: From
409 label_date_to: To
410 label_date_to: To
410 label_language_based: Language based
411 label_language_based: Language based
411 label_sort_by: Sort by "%s"
412 label_sort_by: Sort by "%s"
412 label_send_test_email: Send a test email
413 label_send_test_email: Send a test email
413
414
414 button_login: Logga in
415 button_login: Logga in
415 button_submit: Skicka
416 button_submit: Skicka
416 button_save: Spara
417 button_save: Spara
417 button_check_all: Markera alla
418 button_check_all: Markera alla
418 button_uncheck_all: Avmarkera alla
419 button_uncheck_all: Avmarkera alla
419 button_delete: Ta bort
420 button_delete: Ta bort
420 button_create: Skapa
421 button_create: Skapa
421 button_test: Testa
422 button_test: Testa
422 button_edit: Editera
423 button_edit: Editera
423 button_add: Lägg till
424 button_add: Lägg till
424 button_change: Ändra
425 button_change: Ändra
425 button_apply: Värkställ
426 button_apply: Värkställ
426 button_clear: Rensa
427 button_clear: Rensa
427 button_lock: Lås
428 button_lock: Lås
428 button_unlock: Lås upp
429 button_unlock: Lås upp
429 button_download: Ladda ner
430 button_download: Ladda ner
430 button_list: Lista
431 button_list: Lista
431 button_view: Visa
432 button_view: Visa
432 button_move: Flytta
433 button_move: Flytta
433 button_back: Tillbaka
434 button_back: Tillbaka
434 button_cancel: Avbryt
435 button_cancel: Avbryt
435 button_activate: Aktivera
436 button_activate: Aktivera
436 button_sort: Sortera
437 button_sort: Sortera
437 button_log_time: Logga tid
438 button_log_time: Logga tid
438 button_rollback: Rulla tillbaka till denna version
439 button_rollback: Rulla tillbaka till denna version
439 button_watch: Watch
440 button_watch: Watch
440 button_unwatch: Unwatch
441 button_unwatch: Unwatch
441 button_reply: Reply
442 button_reply: Reply
442 button_archive: Archive
443 button_archive: Archive
443 button_unarchive: Unarchive
444 button_unarchive: Unarchive
444
445
445 status_active: activ
446 status_active: activ
446 status_registered: registrerad
447 status_registered: registrerad
447 status_locked: låst
448 status_locked: låst
448
449
449 text_select_mail_notifications: Väl action för vilka email ska skickas.
450 text_select_mail_notifications: Väl action för vilka email ska skickas.
450 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_regexp_info: eg. ^[A-Z0-9]+$
451 text_min_max_length_info: 0 betyder ingen gräns
452 text_min_max_length_info: 0 betyder ingen gräns
452 text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data?
453 text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data?
453 text_workflow_edit: Väl en roll och en tracker för att editera workflow.
454 text_workflow_edit: Väl en roll och en tracker för att editera workflow.
454 text_are_you_sure: Är du säker?
455 text_are_you_sure: Är du säker?
455 text_journal_changed: ändrad från %s till %s
456 text_journal_changed: ändrad från %s till %s
456 text_journal_set_to: satt till %s
457 text_journal_set_to: satt till %s
457 text_journal_deleted: borttagen
458 text_journal_deleted: borttagen
458 text_tip_task_begin_day: arbetsuppgift börjar denna dag
459 text_tip_task_begin_day: arbetsuppgift börjar denna dag
459 text_tip_task_end_day: arbetsuppgift slutar denna dag
460 text_tip_task_end_day: arbetsuppgift slutar denna dag
460 text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag
461 text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag
461 text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.'
462 text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.'
462 text_caracters_maximum: %d tecken maximum.
463 text_caracters_maximum: %d tecken maximum.
463 text_length_between: Längd mellan %d och %d tecken.
464 text_length_between: Längd mellan %d och %d tecken.
464 text_tracker_no_workflow: Inget workflow definerat för denna tracker
465 text_tracker_no_workflow: Inget workflow definerat för denna tracker
465 text_unallowed_characters: Unallowed characters
466 text_unallowed_characters: Unallowed characters
466 text_comma_separated: Multiple values allowed (comma separated).
467 text_comma_separated: Multiple values allowed (comma separated).
467 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
468
469
469 default_role_manager: Förvaltare
470 default_role_manager: Förvaltare
470 default_role_developper: Utvecklare
471 default_role_developper: Utvecklare
471 default_role_reporter: Rapporterare
472 default_role_reporter: Rapporterare
472 default_tracker_bug: Bugg
473 default_tracker_bug: Bugg
473 default_tracker_feature: Finess
474 default_tracker_feature: Finess
474 default_tracker_support: Support
475 default_tracker_support: Support
475 default_issue_status_new: Ny
476 default_issue_status_new: Ny
476 default_issue_status_assigned: Tilldelad
477 default_issue_status_assigned: Tilldelad
477 default_issue_status_resolved: Löst
478 default_issue_status_resolved: Löst
478 default_issue_status_feedback: Feedback
479 default_issue_status_feedback: Feedback
479 default_issue_status_closed: Stängd
480 default_issue_status_closed: Stängd
480 default_issue_status_rejected: Avslagen
481 default_issue_status_rejected: Avslagen
481 default_doc_category_user: Användardokumentation
482 default_doc_category_user: Användardokumentation
482 default_doc_category_tech: Teknisk dokumentation
483 default_doc_category_tech: Teknisk dokumentation
483 default_priority_low: Låg
484 default_priority_low: Låg
484 default_priority_normal: Normal
485 default_priority_normal: Normal
485 default_priority_high: Hög
486 default_priority_high: Hög
486 default_priority_urgent: Bråttom
487 default_priority_urgent: Bråttom
487 default_priority_immediate: Omedelbar
488 default_priority_immediate: Omedelbar
488 default_activity_design: Design
489 default_activity_design: Design
489 default_activity_development: Utveckling
490 default_activity_development: Utveckling
490
491
491 enumeration_issue_priorities: Bristprioriteringar
492 enumeration_issue_priorities: Bristprioriteringar
492 enumeration_doc_categories: Dokumentkategorier
493 enumeration_doc_categories: Dokumentkategorier
493 enumeration_activities: Aktiviteter (tidsspårning)
494 enumeration_activities: Aktiviteter (tidsspårning)
@@ -1,495 +1,496
1 # translated by andy wu
1 # translated by andy wu
2 # email:andywu.zh@gmail.com
2 # email:andywu.zh@gmail.com
3
3
4 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
4 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
5
5
6 actionview_datehelper_select_day_prefix:
6 actionview_datehelper_select_day_prefix:
7 actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月
7 actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月
8 actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二
8 actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二
9 actionview_datehelper_select_month_prefix:
9 actionview_datehelper_select_month_prefix:
10 actionview_datehelper_select_year_prefix:
10 actionview_datehelper_select_year_prefix:
11 actionview_datehelper_time_in_words_day: 1 天
11 actionview_datehelper_time_in_words_day: 1 天
12 actionview_datehelper_time_in_words_day_plural: %d 天
12 actionview_datehelper_time_in_words_day_plural: %d 天
13 actionview_datehelper_time_in_words_hour_about: 约1小时
13 actionview_datehelper_time_in_words_hour_about: 约1小时
14 actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时
14 actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时
15 actionview_datehelper_time_in_words_hour_about_single: 约1小时
15 actionview_datehelper_time_in_words_hour_about_single: 约1小时
16 actionview_datehelper_time_in_words_minute: 1分钟
16 actionview_datehelper_time_in_words_minute: 1分钟
17 actionview_datehelper_time_in_words_minute_half: 半分钟
17 actionview_datehelper_time_in_words_minute_half: 半分钟
18 actionview_datehelper_time_in_words_minute_less_than: 1分钟以内
18 actionview_datehelper_time_in_words_minute_less_than: 1分钟以内
19 actionview_datehelper_time_in_words_minute_plural: %d 分钟
19 actionview_datehelper_time_in_words_minute_plural: %d 分钟
20 actionview_datehelper_time_in_words_minute_single: 1分钟
20 actionview_datehelper_time_in_words_minute_single: 1分钟
21 actionview_datehelper_time_in_words_second_less_than: 1秒以内
21 actionview_datehelper_time_in_words_second_less_than: 1秒以内
22 actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内
22 actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内
23 actionview_instancetag_blank_option: 请选择
23 actionview_instancetag_blank_option: 请选择
24
24
25 activerecord_error_inclusion: 未包含在列表中
25 activerecord_error_inclusion: 未包含在列表中
26 activerecord_error_exclusion: 保留的
26 activerecord_error_exclusion: 保留的
27 activerecord_error_invalid: 无效的
27 activerecord_error_invalid: 无效的
28 activerecord_error_confirmation: 和确认输入不匹配
28 activerecord_error_confirmation: 和确认输入不匹配
29 activerecord_error_accepted: 必需被接受
29 activerecord_error_accepted: 必需被接受
30 activerecord_error_empty: 不能为空
30 activerecord_error_empty: 不能为空
31 activerecord_error_blank: 不能是空格
31 activerecord_error_blank: 不能是空格
32 activerecord_error_too_long: 太长
32 activerecord_error_too_long: 太长
33 activerecord_error_too_short: 太短
33 activerecord_error_too_short: 太短
34 activerecord_error_wrong_length: 长度有问题
34 activerecord_error_wrong_length: 长度有问题
35 activerecord_error_taken: has already been taken
35 activerecord_error_taken: has already been taken
36 activerecord_error_not_a_number: 不是数字
36 activerecord_error_not_a_number: 不是数字
37 activerecord_error_not_a_date: 不是有效的日期
37 activerecord_error_not_a_date: 不是有效的日期
38 activerecord_error_greater_than_start_date: 必需大于开始日期
38 activerecord_error_greater_than_start_date: 必需大于开始日期
39 activerecord_error_not_same_project: doesn't belong to the same project
39 activerecord_error_not_same_project: doesn't belong to the same project
40 activerecord_error_circular_dependency: This relation would create a circular dependency
40 activerecord_error_circular_dependency: This relation would create a circular dependency
41
41
42 general_fmt_age: %d yr
42 general_fmt_age: %d yr
43 general_fmt_age_plural: %d yrs
43 general_fmt_age_plural: %d yrs
44 general_fmt_date: %%m/%%d/%%Y
44 general_fmt_date: %%m/%%d/%%Y
45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
47 general_fmt_time: %%I:%%M %%p
47 general_fmt_time: %%I:%%M %%p
48 general_text_No: '否'
48 general_text_No: '否'
49 general_text_Yes: '是'
49 general_text_Yes: '是'
50 general_text_no: '否'
50 general_text_no: '否'
51 general_text_yes: '是'
51 general_text_yes: '是'
52 general_lang_name: 'Chinese (简体中文)'
52 general_lang_name: 'Chinese (简体中文)'
53 general_csv_separator: ','
53 general_csv_separator: ','
54 general_csv_encoding: gb2312
54 general_csv_encoding: gb2312
55 general_pdf_encoding: Big5
55 general_pdf_encoding: Big5
56 general_day_names: 一,二,三,四,五,六,日
56 general_day_names: 一,二,三,四,五,六,日
57
57
58 notice_account_updated: 帐户更新成功。
58 notice_account_updated: 帐户更新成功。
59 notice_account_invalid_creditentials: 用户名或密码不正确
59 notice_account_invalid_creditentials: 用户名或密码不正确
60 notice_account_password_updated: 成功更新口令
60 notice_account_password_updated: 成功更新口令
61 notice_account_wrong_password: 错误的口令
61 notice_account_wrong_password: 错误的口令
62 notice_account_register_done: 帐户已创建成功
62 notice_account_register_done: 帐户已创建成功
63 notice_account_unknown_email: 未知用户
63 notice_account_unknown_email: 未知用户
64 notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。
64 notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。
65 notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导
65 notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导
66 notice_account_activated: 您的帐号已被激活。您现在可以登录了。
66 notice_account_activated: 您的帐号已被激活。您现在可以登录了。
67 notice_successful_create: 创建成功
67 notice_successful_create: 创建成功
68 notice_successful_update: 更新成功
68 notice_successful_update: 更新成功
69 notice_successful_delete: 删除成功
69 notice_successful_delete: 删除成功
70 notice_successful_connection: 连接成功
70 notice_successful_connection: 连接成功
71 notice_file_not_found: 您访问的页面不存在或已被删除。
71 notice_file_not_found: 您访问的页面不存在或已被删除。
72 notice_locking_conflict: 数据已被另一个用户更新
72 notice_locking_conflict: 数据已被另一个用户更新
73 notice_scm_error: 在版本库中不存在该条目或修订
73 notice_scm_error: 在版本库中不存在该条目或修订
74 notice_not_authorized: You are not authorized to access this page.
74 notice_not_authorized: You are not authorized to access this page.
75 notice_email_sent: An email was sent to %s
75 notice_email_sent: An email was sent to %s
76 notice_email_error: An error occurred while sending mail (%s)"
76 notice_email_error: An error occurred while sending mail (%s)"
77
77
78 mail_subject_lost_password: 您的redMine口令
78 mail_subject_lost_password: 您的redMine口令
79 mail_subject_register: redMine帐户激活
79 mail_subject_register: redMine帐户激活
80
80
81 gui_validation_error: 1 个错误
81 gui_validation_error: 1 个错误
82 gui_validation_error_plural: %d 个错误
82 gui_validation_error_plural: %d 个错误
83
83
84 field_name: 名称
84 field_name: 名称
85 field_description: 描述
85 field_description: 描述
86 field_summary: 摘要
86 field_summary: 摘要
87 field_is_required: 必填
87 field_is_required: 必填
88 field_firstname: 名字
88 field_firstname: 名字
89 field_lastname:
89 field_lastname:
90 field_mail: 邮件地址
90 field_mail: 邮件地址
91 field_filename: 文件
91 field_filename: 文件
92 field_filesize: 大小
92 field_filesize: 大小
93 field_downloads: 下载次数
93 field_downloads: 下载次数
94 field_author: 作者
94 field_author: 作者
95 field_created_on: 创建于
95 field_created_on: 创建于
96 field_updated_on: 更新于
96 field_updated_on: 更新于
97 field_field_format: 格式
97 field_field_format: 格式
98 field_is_for_all: 应用于所有项目
98 field_is_for_all: 应用于所有项目
99 field_possible_values: 可能的值
99 field_possible_values: 可能的值
100 field_regexp: 正则表达式
100 field_regexp: 正则表达式
101 field_min_length: 最小长度
101 field_min_length: 最小长度
102 field_max_length: 最大长度
102 field_max_length: 最大长度
103 field_value:
103 field_value:
104 field_category: 分类
104 field_category: 分类
105 field_title: 标题
105 field_title: 标题
106 field_project: 项目
106 field_project: 项目
107 field_issue: 任务
107 field_issue: 任务
108 field_status: 状态
108 field_status: 状态
109 field_notes: 说明
109 field_notes: 说明
110 field_is_closed: 已关闭的任务
110 field_is_closed: 已关闭的任务
111 field_is_default: 默认状态
111 field_is_default: 默认状态
112 field_html_color: 颜色
112 field_html_color: 颜色
113 field_tracker: 跟踪
113 field_tracker: 跟踪
114 field_subject: 主题
114 field_subject: 主题
115 field_due_date: 到期日
115 field_due_date: 到期日
116 field_assigned_to: 指派
116 field_assigned_to: 指派
117 field_priority: 优先级
117 field_priority: 优先级
118 field_fixed_version: 修订版本
118 field_fixed_version: 修订版本
119 field_user: 用户
119 field_user: 用户
120 field_role: 角色
120 field_role: 角色
121 field_homepage: 主页
121 field_homepage: 主页
122 field_is_public: 公开
122 field_is_public: 公开
123 field_parent: 上级项目
123 field_parent: 上级项目
124 field_is_in_chlog: 在更新日志中显示任务
124 field_is_in_chlog: 在更新日志中显示任务
125 field_is_in_roadmap: 在路线图中显示任务
125 field_is_in_roadmap: 在路线图中显示任务
126 field_login: 登录名
126 field_login: 登录名
127 field_mail_notification: 邮件通知
127 field_mail_notification: 邮件通知
128 field_admin: 管理员
128 field_admin: 管理员
129 field_last_login_on: 最后登录
129 field_last_login_on: 最后登录
130 field_language: 语言
130 field_language: 语言
131 field_effective_date: 日期
131 field_effective_date: 日期
132 field_password: 口令
132 field_password: 口令
133 field_new_password: 新口令
133 field_new_password: 新口令
134 field_password_confirmation: 确认
134 field_password_confirmation: 确认
135 field_version: 版本
135 field_version: 版本
136 field_type: 类别
136 field_type: 类别
137 field_host: 主机
137 field_host: 主机
138 field_port: 端口
138 field_port: 端口
139 field_account: 帐号
139 field_account: 帐号
140 field_base_dn: Base DN
140 field_base_dn: Base DN
141 field_attr_login: 登录名属性
141 field_attr_login: 登录名属性
142 field_attr_firstname: 名字属性
142 field_attr_firstname: 名字属性
143 field_attr_lastname: 姓属性
143 field_attr_lastname: 姓属性
144 field_attr_mail: 邮件属性
144 field_attr_mail: 邮件属性
145 field_onthefly: On-the-fly user creation
145 field_onthefly: On-the-fly user creation
146 field_start_date: 开始
146 field_start_date: 开始
147 field_done_ratio: %% 完成
147 field_done_ratio: %% 完成
148 field_auth_source: 认证模式
148 field_auth_source: 认证模式
149 field_hide_mail: 隐藏我的邮件
149 field_hide_mail: 隐藏我的邮件
150 field_comments: 注释
150 field_comments: 注释
151 field_url: URL
151 field_url: URL
152 field_start_page: 起始页
152 field_start_page: 起始页
153 field_subproject: 子项目
153 field_subproject: 子项目
154 field_hours: Hours
154 field_hours: Hours
155 field_activity: 活动
155 field_activity: 活动
156 field_spent_on: 日期
156 field_spent_on: 日期
157 field_identifier: Identifier
157 field_identifier: Identifier
158 field_is_filter: Used as a filter
158 field_is_filter: Used as a filter
159 field_issue_to_id: Related issue
159 field_issue_to_id: Related issue
160 field_delay: Delay
160 field_delay: Delay
161 field_assignable: Issues can be assigned to this role
161
162
162 setting_app_title: 应用程序标题
163 setting_app_title: 应用程序标题
163 setting_app_subtitle: 应用程序子标题
164 setting_app_subtitle: 应用程序子标题
164 setting_welcome_text: 欢迎文字
165 setting_welcome_text: 欢迎文字
165 setting_default_language: 默认语言
166 setting_default_language: 默认语言
166 setting_login_required: 要求认证
167 setting_login_required: 要求认证
167 setting_self_registration: 允许自注册
168 setting_self_registration: 允许自注册
168 setting_attachment_max_size: 附件最大尺寸
169 setting_attachment_max_size: 附件最大尺寸
169 setting_issues_export_limit: Issues export limit
170 setting_issues_export_limit: Issues export limit
170 setting_mail_from: Emission mail address
171 setting_mail_from: Emission mail address
171 setting_host_name: 主机名称
172 setting_host_name: 主机名称
172 setting_text_formatting: 文本格式
173 setting_text_formatting: 文本格式
173 setting_wiki_compression: Wiki history compression
174 setting_wiki_compression: Wiki history compression
174 setting_feeds_limit: Feed content limit
175 setting_feeds_limit: Feed content limit
175 setting_autofetch_changesets: Autofetch commits
176 setting_autofetch_changesets: Autofetch commits
176 setting_sys_api_enabled: Enable WS for repository management
177 setting_sys_api_enabled: Enable WS for repository management
177 setting_commit_ref_keywords: Referencing keywords
178 setting_commit_ref_keywords: Referencing keywords
178 setting_commit_fix_keywords: Fixing keywords
179 setting_commit_fix_keywords: Fixing keywords
179 setting_autologin: Autologin
180 setting_autologin: Autologin
180 setting_date_format: Date format
181 setting_date_format: Date format
181 setting_cross_project_issue_relations: Allow cross-project issue relations
182 setting_cross_project_issue_relations: Allow cross-project issue relations
182
183
183 label_user: 用户
184 label_user: 用户
184 label_user_plural: 用户列表
185 label_user_plural: 用户列表
185 label_user_new: 新建用户
186 label_user_new: 新建用户
186 label_project: 项目
187 label_project: 项目
187 label_project_new: 新建项目
188 label_project_new: 新建项目
188 label_project_plural: 项目列表
189 label_project_plural: 项目列表
189 label_project_all: All Projects
190 label_project_all: All Projects
190 label_project_latest: 最近的项目列表
191 label_project_latest: 最近的项目列表
191 label_issue: 任务
192 label_issue: 任务
192 label_issue_new: 新建任务
193 label_issue_new: 新建任务
193 label_issue_plural: 任务列表
194 label_issue_plural: 任务列表
194 label_issue_view_all: 查看所有任务
195 label_issue_view_all: 查看所有任务
195 label_document: 文档
196 label_document: 文档
196 label_document_new: 新建文档
197 label_document_new: 新建文档
197 label_document_plural: 文档列表
198 label_document_plural: 文档列表
198 label_role: 角色
199 label_role: 角色
199 label_role_plural: 角色列表
200 label_role_plural: 角色列表
200 label_role_new: 新建角色
201 label_role_new: 新建角色
201 label_role_and_permissions: 角色和权限
202 label_role_and_permissions: 角色和权限
202 label_member: 成员
203 label_member: 成员
203 label_member_new: 新建成员
204 label_member_new: 新建成员
204 label_member_plural: 成员列表
205 label_member_plural: 成员列表
205 label_tracker: 跟踪标签
206 label_tracker: 跟踪标签
206 label_tracker_plural: 跟踪标签列表
207 label_tracker_plural: 跟踪标签列表
207 label_tracker_new: 新建跟踪标签
208 label_tracker_new: 新建跟踪标签
208 label_workflow: 工作流
209 label_workflow: 工作流
209 label_issue_status: 任务状态列表
210 label_issue_status: 任务状态列表
210 label_issue_status_plural: 任务状态列表
211 label_issue_status_plural: 任务状态列表
211 label_issue_status_new: 新建任务状态列表
212 label_issue_status_new: 新建任务状态列表
212 label_issue_category: 任务类别
213 label_issue_category: 任务类别
213 label_issue_category_plural: 任务类别列表
214 label_issue_category_plural: 任务类别列表
214 label_issue_category_new: 新建任务类别
215 label_issue_category_new: 新建任务类别
215 label_custom_field: 自定义字段
216 label_custom_field: 自定义字段
216 label_custom_field_plural: 自定义字段列表
217 label_custom_field_plural: 自定义字段列表
217 label_custom_field_new: 新建自定义字段
218 label_custom_field_new: 新建自定义字段
218 label_enumerations: 枚举列表
219 label_enumerations: 枚举列表
219 label_enumeration_new: 新建枚举值
220 label_enumeration_new: 新建枚举值
220 label_information: 信息
221 label_information: 信息
221 label_information_plural: 信息
222 label_information_plural: 信息
222 label_please_login: 请登录
223 label_please_login: 请登录
223 label_register: 注册
224 label_register: 注册
224 label_password_lost: 忘记口令
225 label_password_lost: 忘记口令
225 label_home: 主页
226 label_home: 主页
226 label_my_page: 我的工作台
227 label_my_page: 我的工作台
227 label_my_account: 我的帐号
228 label_my_account: 我的帐号
228 label_my_projects: 我的项目列表
229 label_my_projects: 我的项目列表
229 label_administration: 管理
230 label_administration: 管理
230 label_login: 登录
231 label_login: 登录
231 label_logout: 退出
232 label_logout: 退出
232 label_help: 帮助
233 label_help: 帮助
233 label_reported_issues: 已报告的问题
234 label_reported_issues: 已报告的问题
234 label_assigned_to_me_issues: 分配给我的任务
235 label_assigned_to_me_issues: 分配给我的任务
235 label_last_login: 最后登录
236 label_last_login: 最后登录
236 label_last_updates: 最后更新
237 label_last_updates: 最后更新
237 label_last_updates_plural: %d 最后更新
238 label_last_updates_plural: %d 最后更新
238 label_registered_on: 注册于
239 label_registered_on: 注册于
239 label_activity: 活动
240 label_activity: 活动
240 label_new: 新建
241 label_new: 新建
241 label_logged_as: 登录为
242 label_logged_as: 登录为
242 label_environment: 环境
243 label_environment: 环境
243 label_authentication: 认证
244 label_authentication: 认证
244 label_auth_source: 认证模式
245 label_auth_source: 认证模式
245 label_auth_source_new: 新建认证模式
246 label_auth_source_new: 新建认证模式
246 label_auth_source_plural: 认证模式列表
247 label_auth_source_plural: 认证模式列表
247 label_subproject_plural: 子项目列表
248 label_subproject_plural: 子项目列表
248 label_min_max_length: 最小 - 最大 长度
249 label_min_max_length: 最小 - 最大 长度
249 label_list: list
250 label_list: list
250 label_date: Date
251 label_date: Date
251 label_integer: Integer
252 label_integer: Integer
252 label_boolean: Boolean
253 label_boolean: Boolean
253 label_string: Text
254 label_string: Text
254 label_text: Long text
255 label_text: Long text
255 label_attribute: 属性
256 label_attribute: 属性
256 label_attribute_plural: 属性
257 label_attribute_plural: 属性
257 label_download: %d 个下载次数
258 label_download: %d 个下载次数
258 label_download_plural: %d 个下载次数
259 label_download_plural: %d 个下载次数
259 label_no_data: 没有数据用于显示
260 label_no_data: 没有数据用于显示
260 label_change_status: 改变状态
261 label_change_status: 改变状态
261 label_history: 历史记录
262 label_history: 历史记录
262 label_attachment: 文件
263 label_attachment: 文件
263 label_attachment_new: 新建文件
264 label_attachment_new: 新建文件
264 label_attachment_delete: 删除文件
265 label_attachment_delete: 删除文件
265 label_attachment_plural: 文件列表
266 label_attachment_plural: 文件列表
266 label_report: 报表
267 label_report: 报表
267 label_report_plural: 报表列表
268 label_report_plural: 报表列表
268 label_news: 新闻
269 label_news: 新闻
269 label_news_new: 增加新闻
270 label_news_new: 增加新闻
270 label_news_plural: 新闻列表
271 label_news_plural: 新闻列表
271 label_news_latest: 最近的新闻
272 label_news_latest: 最近的新闻
272 label_news_view_all: 查看所有新闻
273 label_news_view_all: 查看所有新闻
273 label_change_log: 更新日志
274 label_change_log: 更新日志
274 label_settings: 配置
275 label_settings: 配置
275 label_overview: 概述
276 label_overview: 概述
276 label_version: 版本
277 label_version: 版本
277 label_version_new: 新建版本
278 label_version_new: 新建版本
278 label_version_plural: 版本列表
279 label_version_plural: 版本列表
279 label_confirmation: 确认
280 label_confirmation: 确认
280 label_export_to: 导出
281 label_export_to: 导出
281 label_read: 读取...
282 label_read: 读取...
282 label_public_projects: 公开的项目列表
283 label_public_projects: 公开的项目列表
283 label_open_issues: 打开
284 label_open_issues: 打开
284 label_open_issues_plural: 打开
285 label_open_issues_plural: 打开
285 label_closed_issues: 已关闭
286 label_closed_issues: 已关闭
286 label_closed_issues_plural: 已关闭
287 label_closed_issues_plural: 已关闭
287 label_total: 合计
288 label_total: 合计
288 label_permissions: 权限列表
289 label_permissions: 权限列表
289 label_current_status: 当前状态
290 label_current_status: 当前状态
290 label_new_statuses_allowed: New statuses allowed
291 label_new_statuses_allowed: New statuses allowed
291 label_all: 全部
292 label_all: 全部
292 label_none:
293 label_none:
293 label_next: 下一个
294 label_next: 下一个
294 label_previous: 上一个
295 label_previous: 上一个
295 label_used_by: 使用中
296 label_used_by: 使用中
296 label_details: 详情
297 label_details: 详情
297 label_add_note: 添加说明
298 label_add_note: 添加说明
298 label_per_page: 每面
299 label_per_page: 每面
299 label_calendar: 日历
300 label_calendar: 日历
300 label_months_from: months from
301 label_months_from: months from
301 label_gantt: 甘特图(Gantt)
302 label_gantt: 甘特图(Gantt)
302 label_internal: 内部
303 label_internal: 内部
303 label_last_changes: 最近的 %d 次更改
304 label_last_changes: 最近的 %d 次更改
304 label_change_view_all: 查看所有更改
305 label_change_view_all: 查看所有更改
305 label_personalize_page: 个性化定制本页
306 label_personalize_page: 个性化定制本页
306 label_comment: 注释
307 label_comment: 注释
307 label_comment_plural: 注释列表
308 label_comment_plural: 注释列表
308 label_comment_add: 添加注释
309 label_comment_add: 添加注释
309 label_comment_added: 已加入注释
310 label_comment_added: 已加入注释
310 label_comment_delete: 删除注释
311 label_comment_delete: 删除注释
311 label_query: 自定义查询
312 label_query: 自定义查询
312 label_query_plural: 自定义查询列表
313 label_query_plural: 自定义查询列表
313 label_query_new: 新建查询
314 label_query_new: 新建查询
314 label_filter_add: 增加过滤器
315 label_filter_add: 增加过滤器
315 label_filter_plural: 过滤器列表
316 label_filter_plural: 过滤器列表
316 label_equals: 等于
317 label_equals: 等于
317 label_not_equals: 不等于
318 label_not_equals: 不等于
318 label_in_less_than: 剩余天数小于
319 label_in_less_than: 剩余天数小于
319 label_in_more_than: 剩余天数大于
320 label_in_more_than: 剩余天数大于
320 label_in: 剩余天数
321 label_in: 剩余天数
321 label_today: 今天
322 label_today: 今天
322 label_less_than_ago: 之前天数少于
323 label_less_than_ago: 之前天数少于
323 label_more_than_ago: 之前天数大于
324 label_more_than_ago: 之前天数大于
324 label_ago: 之前天数
325 label_ago: 之前天数
325 label_contains: 包含
326 label_contains: 包含
326 label_not_contains: 不包含
327 label_not_contains: 不包含
327 label_day_plural: 天数
328 label_day_plural: 天数
328 label_repository: 版本库
329 label_repository: 版本库
329 label_browse: 浏览
330 label_browse: 浏览
330 label_modification: %d 个更新
331 label_modification: %d 个更新
331 label_modification_plural: %d 个更新
332 label_modification_plural: %d 个更新
332 label_revision: 修订
333 label_revision: 修订
333 label_revision_plural: 修订
334 label_revision_plural: 修订
334 label_added: 已增加
335 label_added: 已增加
335 label_modified: 已修改
336 label_modified: 已修改
336 label_deleted: 已删除
337 label_deleted: 已删除
337 label_latest_revision: 最近的版本
338 label_latest_revision: 最近的版本
338 label_latest_revision_plural: 最近的版本列表
339 label_latest_revision_plural: 最近的版本列表
339 label_view_revisions: 查看修订列表
340 label_view_revisions: 查看修订列表
340 label_max_size: 最大尺寸
341 label_max_size: 最大尺寸
341 label_on: 'on'
342 label_on: 'on'
342 label_sort_highest: 置顶
343 label_sort_highest: 置顶
343 label_sort_higher: 上移
344 label_sort_higher: 上移
344 label_sort_lower: 下移
345 label_sort_lower: 下移
345 label_sort_lowest: 置底
346 label_sort_lowest: 置底
346 label_roadmap: 路线图
347 label_roadmap: 路线图
347 label_roadmap_due_in: Due in
348 label_roadmap_due_in: Due in
348 label_roadmap_overdue: %s late
349 label_roadmap_overdue: %s late
349 label_roadmap_no_issues: 该版本没有任务
350 label_roadmap_no_issues: 该版本没有任务
350 label_search: 查找
351 label_search: 查找
351 label_result: %d 个结果
352 label_result: %d 个结果
352 label_result_plural: %d 个结果
353 label_result_plural: %d 个结果
353 label_all_words: 所有单词
354 label_all_words: 所有单词
354 label_wiki: Wiki
355 label_wiki: Wiki
355 label_wiki_edit: Wiki edit
356 label_wiki_edit: Wiki edit
356 label_wiki_edit_plural: Wiki edits
357 label_wiki_edit_plural: Wiki edits
357 label_wiki_page_plural: Wiki pages
358 label_wiki_page_plural: Wiki pages
358 label_page_index: 索引
359 label_page_index: 索引
359 label_current_version: 当前版本
360 label_current_version: 当前版本
360 label_preview: 预览
361 label_preview: 预览
361 label_feed_plural: Feeds
362 label_feed_plural: Feeds
362 label_changes_details: 所有更改的详情
363 label_changes_details: 所有更改的详情
363 label_issue_tracking: 任务跟踪
364 label_issue_tracking: 任务跟踪
364 label_spent_time: 耗时
365 label_spent_time: 耗时
365 label_f_hour: %.2f 小时
366 label_f_hour: %.2f 小时
366 label_f_hour_plural: %.2f 小时
367 label_f_hour_plural: %.2f 小时
367 label_time_tracking: 时间跟踪
368 label_time_tracking: 时间跟踪
368 label_change_plural: 更改列表
369 label_change_plural: 更改列表
369 label_statistics: 统计
370 label_statistics: 统计
370 label_commits_per_month: Commits per month
371 label_commits_per_month: Commits per month
371 label_commits_per_author: Commits per author
372 label_commits_per_author: Commits per author
372 label_view_diff: View differences
373 label_view_diff: View differences
373 label_diff_inline: inline
374 label_diff_inline: inline
374 label_diff_side_by_side: side by side
375 label_diff_side_by_side: side by side
375 label_options: Options
376 label_options: Options
376 label_copy_workflow_from: Copy workflow from
377 label_copy_workflow_from: Copy workflow from
377 label_permissions_report: Permissions report
378 label_permissions_report: Permissions report
378 label_watched_issues: Watched issues
379 label_watched_issues: Watched issues
379 label_related_issues: Related issues
380 label_related_issues: Related issues
380 label_applied_status: Applied status
381 label_applied_status: Applied status
381 label_loading: Loading...
382 label_loading: Loading...
382 label_relation_new: New relation
383 label_relation_new: New relation
383 label_relation_delete: Delete relation
384 label_relation_delete: Delete relation
384 label_relates_to: related to
385 label_relates_to: related to
385 label_duplicates: duplicates
386 label_duplicates: duplicates
386 label_blocks: blocks
387 label_blocks: blocks
387 label_blocked_by: blocked by
388 label_blocked_by: blocked by
388 label_precedes: precedes
389 label_precedes: precedes
389 label_follows: follows
390 label_follows: follows
390 label_end_to_start: start to end
391 label_end_to_start: start to end
391 label_end_to_end: end to end
392 label_end_to_end: end to end
392 label_start_to_start: start to start
393 label_start_to_start: start to start
393 label_start_to_end: start to end
394 label_start_to_end: start to end
394 label_stay_logged_in: Stay logged in
395 label_stay_logged_in: Stay logged in
395 label_disabled: disabled
396 label_disabled: disabled
396 label_show_completed_versions: Show completed versions
397 label_show_completed_versions: Show completed versions
397 label_me: me
398 label_me: me
398 label_board: Forum
399 label_board: Forum
399 label_board_new: New forum
400 label_board_new: New forum
400 label_board_plural: Forums
401 label_board_plural: Forums
401 label_topic_plural: Topics
402 label_topic_plural: Topics
402 label_message_plural: Messages
403 label_message_plural: Messages
403 label_message_last: Last message
404 label_message_last: Last message
404 label_message_new: New message
405 label_message_new: New message
405 label_reply_plural: Replies
406 label_reply_plural: Replies
406 label_send_information: Send account information to the user
407 label_send_information: Send account information to the user
407 label_year: Year
408 label_year: Year
408 label_month: Month
409 label_month: Month
409 label_week: Week
410 label_week: Week
410 label_date_from: From
411 label_date_from: From
411 label_date_to: To
412 label_date_to: To
412 label_language_based: Language based
413 label_language_based: Language based
413 label_sort_by: Sort by "%s"
414 label_sort_by: Sort by "%s"
414 label_send_test_email: Send a test email
415 label_send_test_email: Send a test email
415
416
416 button_login: 登录
417 button_login: 登录
417 button_submit: 提交
418 button_submit: 提交
418 button_save: 保存
419 button_save: 保存
419 button_check_all: 全选
420 button_check_all: 全选
420 button_uncheck_all: 清除
421 button_uncheck_all: 清除
421 button_delete: 删除
422 button_delete: 删除
422 button_create: 创建
423 button_create: 创建
423 button_test: 测试
424 button_test: 测试
424 button_edit: 编辑
425 button_edit: 编辑
425 button_add: 新增
426 button_add: 新增
426 button_change: 修改
427 button_change: 修改
427 button_apply: 应用
428 button_apply: 应用
428 button_clear: 清除
429 button_clear: 清除
429 button_lock: 锁定
430 button_lock: 锁定
430 button_unlock: 解锁
431 button_unlock: 解锁
431 button_download: 下载
432 button_download: 下载
432 button_list: 列表
433 button_list: 列表
433 button_view: 查看
434 button_view: 查看
434 button_move: 移动
435 button_move: 移动
435 button_back: 返回
436 button_back: 返回
436 button_cancel: 取消
437 button_cancel: 取消
437 button_activate: 激活
438 button_activate: 激活
438 button_sort: 排序
439 button_sort: 排序
439 button_log_time: 登记工时
440 button_log_time: 登记工时
440 button_rollback: Rollback to this version
441 button_rollback: Rollback to this version
441 button_watch: Watch
442 button_watch: Watch
442 button_unwatch: Unwatch
443 button_unwatch: Unwatch
443 button_reply: Reply
444 button_reply: Reply
444 button_archive: Archive
445 button_archive: Archive
445 button_unarchive: Unarchive
446 button_unarchive: Unarchive
446
447
447 status_active: 激活
448 status_active: 激活
448 status_registered: 已注册
449 status_registered: 已注册
449 status_locked: 已锁定
450 status_locked: 已锁定
450
451
451 text_select_mail_notifications: 选择需要发送邮件通知的动作。
452 text_select_mail_notifications: 选择需要发送邮件通知的动作。
452 text_regexp_info: eg. ^[A-Z0-9]+$
453 text_regexp_info: eg. ^[A-Z0-9]+$
453 text_min_max_length_info: 0 表示没有限制
454 text_min_max_length_info: 0 表示没有限制
454 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
455 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
455 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
456 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
456 text_are_you_sure: 您确定?
457 text_are_you_sure: 您确定?
457 text_journal_changed: 从 %s 更改为 %s
458 text_journal_changed: 从 %s 更改为 %s
458 text_journal_set_to: 设置为 %s
459 text_journal_set_to: 设置为 %s
459 text_journal_deleted: 已删除
460 text_journal_deleted: 已删除
460 text_tip_task_begin_day: 开始于此
461 text_tip_task_begin_day: 开始于此
461 text_tip_task_end_day: 在此结束
462 text_tip_task_end_day: 在此结束
462 text_tip_task_begin_end_day: 开始并结束于此
463 text_tip_task_begin_end_day: 开始并结束于此
463 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
464 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
464 text_caracters_maximum: %d characters maximum.
465 text_caracters_maximum: %d characters maximum.
465 text_length_between: Length between %d and %d characters.
466 text_length_between: Length between %d and %d characters.
466 text_tracker_no_workflow: No workflow defined for this tracker
467 text_tracker_no_workflow: No workflow defined for this tracker
467 text_unallowed_characters: Unallowed characters
468 text_unallowed_characters: Unallowed characters
468 text_comma_separated: Multiple values allowed (comma separated).
469 text_comma_separated: Multiple values allowed (comma separated).
469 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
470 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
470
471
471 default_role_manager: 管理员
472 default_role_manager: 管理员
472 default_role_developper: 开发人员
473 default_role_developper: 开发人员
473 default_role_reporter: 报告人员
474 default_role_reporter: 报告人员
474 default_tracker_bug: 问题
475 default_tracker_bug: 问题
475 default_tracker_feature: 功能
476 default_tracker_feature: 功能
476 default_tracker_support: 支持
477 default_tracker_support: 支持
477 default_issue_status_new: 新建
478 default_issue_status_new: 新建
478 default_issue_status_assigned: 已分配
479 default_issue_status_assigned: 已分配
479 default_issue_status_resolved: 已解决
480 default_issue_status_resolved: 已解决
480 default_issue_status_feedback: 回复
481 default_issue_status_feedback: 回复
481 default_issue_status_closed: 已关闭
482 default_issue_status_closed: 已关闭
482 default_issue_status_rejected: 已打回
483 default_issue_status_rejected: 已打回
483 default_doc_category_user: 用户文档
484 default_doc_category_user: 用户文档
484 default_doc_category_tech: 技术文档
485 default_doc_category_tech: 技术文档
485 default_priority_low:
486 default_priority_low:
486 default_priority_normal: 普通
487 default_priority_normal: 普通
487 default_priority_high:
488 default_priority_high:
488 default_priority_urgent: 紧急
489 default_priority_urgent: 紧急
489 default_priority_immediate: 立刻
490 default_priority_immediate: 立刻
490 default_activity_design: 设计
491 default_activity_design: 设计
491 default_activity_development: 开发
492 default_activity_development: 开发
492
493
493 enumeration_issue_priorities: 任务优先级
494 enumeration_issue_priorities: 任务优先级
494 enumeration_doc_categories: 文档类别
495 enumeration_doc_categories: 文档类别
495 enumeration_activities: Activities (time tracking)
496 enumeration_activities: Activities (time tracking)
General Comments 0
You need to be logged in to leave comments. Login now