##// END OF EJS Templates
Added default value for custom fields. Fixed javascript on custom field form for project and user custom fields....
Jean-Philippe Lang -
r1076:d6bfb7fa4da4
parent child
Show More

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

@@ -1,70 +1,75
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
2 # Copyright (C) 2006 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class CustomField < ActiveRecord::Base
18 class CustomField < ActiveRecord::Base
19 has_many :custom_values, :dependent => :delete_all
19 has_many :custom_values, :dependent => :delete_all
20 acts_as_list :scope => 'type = \'#{self.class}\''
20 acts_as_list :scope => 'type = \'#{self.class}\''
21 serialize :possible_values
21 serialize :possible_values
22
22
23 FIELD_FORMATS = { "string" => { :name => :label_string, :order => 1 },
23 FIELD_FORMATS = { "string" => { :name => :label_string, :order => 1 },
24 "text" => { :name => :label_text, :order => 2 },
24 "text" => { :name => :label_text, :order => 2 },
25 "int" => { :name => :label_integer, :order => 3 },
25 "int" => { :name => :label_integer, :order => 3 },
26 "float" => { :name => :label_float, :order => 4 },
26 "float" => { :name => :label_float, :order => 4 },
27 "list" => { :name => :label_list, :order => 5 },
27 "list" => { :name => :label_list, :order => 5 },
28 "date" => { :name => :label_date, :order => 6 },
28 "date" => { :name => :label_date, :order => 6 },
29 "bool" => { :name => :label_boolean, :order => 7 }
29 "bool" => { :name => :label_boolean, :order => 7 }
30 }.freeze
30 }.freeze
31
31
32 validates_presence_of :name, :field_format
32 validates_presence_of :name, :field_format
33 validates_uniqueness_of :name
33 validates_uniqueness_of :name
34 validates_length_of :name, :maximum => 30
34 validates_length_of :name, :maximum => 30
35 validates_format_of :name, :with => /^[\w\s\'\-]*$/i
35 validates_format_of :name, :with => /^[\w\s\'\-]*$/i
36 validates_inclusion_of :field_format, :in => FIELD_FORMATS.keys
36 validates_inclusion_of :field_format, :in => FIELD_FORMATS.keys
37
37
38 def initialize(attributes = nil)
38 def initialize(attributes = nil)
39 super
39 super
40 self.possible_values ||= []
40 self.possible_values ||= []
41 end
41 end
42
42
43 def before_validation
43 def before_validation
44 # remove empty values
44 # remove empty values
45 self.possible_values = self.possible_values.collect{|v| v unless v.empty?}.compact
45 self.possible_values = self.possible_values.collect{|v| v unless v.empty?}.compact
46 # make sure these fields are not searchable
46 # make sure these fields are not searchable
47 self.searchable = false if %w(int float date bool).include?(field_format)
47 self.searchable = false if %w(int float date bool).include?(field_format)
48 true
48 true
49 end
49 end
50
50
51 def validate
51 def validate
52 if self.field_format == "list"
52 if self.field_format == "list"
53 errors.add(:possible_values, :activerecord_error_blank) if self.possible_values.nil? || self.possible_values.empty?
53 errors.add(:possible_values, :activerecord_error_blank) if self.possible_values.nil? || self.possible_values.empty?
54 errors.add(:possible_values, :activerecord_error_invalid) unless self.possible_values.is_a? Array
54 errors.add(:possible_values, :activerecord_error_invalid) unless self.possible_values.is_a? Array
55 end
55 end
56
57 # validate default value
58 v = CustomValue.new(:custom_field => self.dup, :value => default_value, :customized => nil)
59 v.custom_field.is_required = false
60 errors.add(:default_value, :activerecord_error_invalid) unless v.valid?
56 end
61 end
57
62
58 def <=>(field)
63 def <=>(field)
59 position <=> field.position
64 position <=> field.position
60 end
65 end
61
66
62 # to move in project_custom_field
67 # to move in project_custom_field
63 def self.for_all
68 def self.for_all
64 find(:all, :conditions => ["is_for_all=?", true])
69 find(:all, :conditions => ["is_for_all=?", true])
65 end
70 end
66
71
67 def type_name
72 def type_name
68 nil
73 nil
69 end
74 end
70 end
75 end
@@ -1,39 +1,45
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
2 # Copyright (C) 2006 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class CustomValue < ActiveRecord::Base
18 class CustomValue < ActiveRecord::Base
19 belongs_to :custom_field
19 belongs_to :custom_field
20 belongs_to :customized, :polymorphic => true
20 belongs_to :customized, :polymorphic => true
21
21
22 def after_initialize
23 if custom_field && new_record? && (customized_type.blank? || (customized && customized.new_record?))
24 self.value ||= custom_field.default_value
25 end
26 end
27
22 protected
28 protected
23 def validate
29 def validate
24 errors.add(:value, :activerecord_error_blank) and return if custom_field.is_required? and value.blank?
30 errors.add(:value, :activerecord_error_blank) and return if custom_field.is_required? and value.blank?
25 errors.add(:value, :activerecord_error_invalid) unless custom_field.regexp.blank? or value =~ Regexp.new(custom_field.regexp)
31 errors.add(:value, :activerecord_error_invalid) unless custom_field.regexp.blank? or value =~ Regexp.new(custom_field.regexp)
26 errors.add(:value, :activerecord_error_too_short) if custom_field.min_length > 0 and value.length < custom_field.min_length and value.length > 0
32 errors.add(:value, :activerecord_error_too_short) if custom_field.min_length > 0 and value.length < custom_field.min_length and value.length > 0
27 errors.add(:value, :activerecord_error_too_long) if custom_field.max_length > 0 and value.length > custom_field.max_length
33 errors.add(:value, :activerecord_error_too_long) if custom_field.max_length > 0 and value.length > custom_field.max_length
28 case custom_field.field_format
34 case custom_field.field_format
29 when 'int'
35 when 'int'
30 errors.add(:value, :activerecord_error_not_a_number) unless value.blank? || value =~ /^[+-]?\d+$/
36 errors.add(:value, :activerecord_error_not_a_number) unless value.blank? || value =~ /^[+-]?\d+$/
31 when 'float'
37 when 'float'
32 begin; !value.blank? && Kernel.Float(value); rescue; errors.add(:value, :activerecord_error_invalid) end
38 begin; !value.blank? && Kernel.Float(value); rescue; errors.add(:value, :activerecord_error_invalid) end
33 when 'date'
39 when 'date'
34 errors.add(:value, :activerecord_error_not_a_date) unless value =~ /^\d{4}-\d{2}-\d{2}$/ or value.blank?
40 errors.add(:value, :activerecord_error_not_a_date) unless value =~ /^\d{4}-\d{2}-\d{2}$/ or value.blank?
35 when 'list'
41 when 'list'
36 errors.add(:value, :activerecord_error_inclusion) unless custom_field.possible_values.include?(value) or value.blank?
42 errors.add(:value, :activerecord_error_inclusion) unless custom_field.possible_values.include?(value) or value.blank?
37 end
43 end
38 end
44 end
39 end
45 end
@@ -1,98 +1,110
1 <%= error_messages_for 'custom_field' %>
1 <%= error_messages_for 'custom_field' %>
2
2
3 <script type="text/javascript">
3 <script type="text/javascript">
4 //<![CDATA[
4 //<![CDATA[
5 function toggle_custom_field_format() {
5 function toggle_custom_field_format() {
6 format = $("custom_field_field_format");
6 format = $("custom_field_field_format");
7 p_length = $("custom_field_min_length");
7 p_length = $("custom_field_min_length");
8 p_regexp = $("custom_field_regexp");
8 p_regexp = $("custom_field_regexp");
9 p_values = $("custom_field_possible_values");
9 p_values = $("custom_field_possible_values");
10 p_searchable = $("custom_field_searchable");
10 p_searchable = $("custom_field_searchable");
11 p_default = $("custom_field_default_value");
12
13 p_default.setAttribute('type','text');
14 Element.show(p_default.parentNode);
15
11 switch (format.value) {
16 switch (format.value) {
12 case "list":
17 case "list":
13 Element.hide(p_length.parentNode);
18 Element.hide(p_length.parentNode);
14 Element.hide(p_regexp.parentNode);
19 Element.hide(p_regexp.parentNode);
15 Element.show(p_searchable.parentNode);
20 if (p_searchable) Element.show(p_searchable.parentNode);
16 Element.show(p_values);
21 Element.show(p_values);
17 break;
22 break;
18 case "date":
19 case "bool":
23 case "bool":
24 p_default.setAttribute('type','checkbox');
25 Element.hide(p_length.parentNode);
26 Element.hide(p_regexp.parentNode);
27 if (p_searchable) Element.hide(p_searchable.parentNode);
28 Element.hide(p_values);
29 break;
30 case "date":
20 Element.hide(p_length.parentNode);
31 Element.hide(p_length.parentNode);
21 Element.hide(p_regexp.parentNode);
32 Element.hide(p_regexp.parentNode);
22 Element.hide(p_searchable.parentNode);
33 if (p_searchable) Element.hide(p_searchable.parentNode);
23 Element.hide(p_values);
34 Element.hide(p_values);
24 break;
35 break;
25 case "float":
36 case "float":
26 case "int":
37 case "int":
27 Element.show(p_length.parentNode);
38 Element.show(p_length.parentNode);
28 Element.show(p_regexp.parentNode);
39 Element.show(p_regexp.parentNode);
29 Element.hide(p_searchable.parentNode);
40 if (p_searchable) Element.hide(p_searchable.parentNode);
30 Element.hide(p_values);
41 Element.hide(p_values);
31 break;
42 break;
32 default:
43 default:
33 Element.show(p_length.parentNode);
44 Element.show(p_length.parentNode);
34 Element.show(p_regexp.parentNode);
45 Element.show(p_regexp.parentNode);
35 Element.show(p_searchable.parentNode);
46 if (p_searchable) Element.show(p_searchable.parentNode);
36 Element.hide(p_values);
47 Element.hide(p_values);
37 break;
48 break;
38 }
49 }
39 }
50 }
40
51
41 function addValueField() {
52 function addValueField() {
42 var f = $$('p#custom_field_possible_values span');
53 var f = $$('p#custom_field_possible_values span');
43 p = document.getElementById("custom_field_possible_values");
54 p = document.getElementById("custom_field_possible_values");
44 var v = f[0].cloneNode(true);
55 var v = f[0].cloneNode(true);
45 v.childNodes[0].value = "";
56 v.childNodes[0].value = "";
46 p.appendChild(v);
57 p.appendChild(v);
47 }
58 }
48
59
49 function deleteValueField(e) {
60 function deleteValueField(e) {
50 var f = $$('p#custom_field_possible_values span');
61 var f = $$('p#custom_field_possible_values span');
51 if (f.length == 1) {
62 if (f.length == 1) {
52 e.parentNode.childNodes[0].value = "";
63 e.parentNode.childNodes[0].value = "";
53 } else {
64 } else {
54 Element.remove(e.parentNode);
65 Element.remove(e.parentNode);
55 }
66 }
56 }
67 }
57
68
58 //]]>
69 //]]>
59 </script>
70 </script>
60
71
61 <div class="box">
72 <div class="box">
62 <p><%= f.text_field :name, :required => true %></p>
73 <p><%= f.text_field :name, :required => true %></p>
63 <p><%= f.select :field_format, custom_field_formats_for_select, {}, :onchange => "toggle_custom_field_format();" %></p>
74 <p><%= f.select :field_format, custom_field_formats_for_select, {}, :onchange => "toggle_custom_field_format();" %></p>
64 <p><label for="custom_field_min_length"><%=l(:label_min_max_length)%></label>
75 <p><label for="custom_field_min_length"><%=l(:label_min_max_length)%></label>
65 <%= f.text_field :min_length, :size => 5, :no_label => true %> -
76 <%= f.text_field :min_length, :size => 5, :no_label => true %> -
66 <%= f.text_field :max_length, :size => 5, :no_label => true %><br>(<%=l(:text_min_max_length_info)%>)</p>
77 <%= f.text_field :max_length, :size => 5, :no_label => true %><br>(<%=l(:text_min_max_length_info)%>)</p>
67 <p><%= f.text_field :regexp, :size => 50 %><br>(<%=l(:text_regexp_info)%>)</p>
78 <p><%= f.text_field :regexp, :size => 50 %><br>(<%=l(:text_regexp_info)%>)</p>
68 <p id="custom_field_possible_values"><label><%= l(:field_possible_values) %> <%= image_to_function "add.png", "addValueField();return false" %></label>
79 <p id="custom_field_possible_values"><label><%= l(:field_possible_values) %> <%= image_to_function "add.png", "addValueField();return false" %></label>
69 <% (@custom_field.possible_values.to_a + [""]).each do |value| %>
80 <% (@custom_field.possible_values.to_a + [""]).each do |value| %>
70 <span><%= text_field_tag 'custom_field[possible_values][]', value, :size => 30 %> <%= image_to_function "delete.png", "deleteValueField(this);return false" %><br /></span>
81 <span><%= text_field_tag 'custom_field[possible_values][]', value, :size => 30 %> <%= image_to_function "delete.png", "deleteValueField(this);return false" %><br /></span>
71 <% end %>
82 <% end %>
72 </p>
83 </p>
84 <p><%= @custom_field.field_format == 'bool' ? f.check_box(:default_value) : f.text_field(:default_value) %></p>
73 </div>
85 </div>
74
86
75 <div class="box">
87 <div class="box">
76 <% case @custom_field.type.to_s
88 <% case @custom_field.type.to_s
77 when "IssueCustomField" %>
89 when "IssueCustomField" %>
78
90
79 <fieldset><legend><%=l(:label_tracker_plural)%></legend>
91 <fieldset><legend><%=l(:label_tracker_plural)%></legend>
80 <% for tracker in @trackers %>
92 <% for tracker in @trackers %>
81 <%= check_box_tag "tracker_ids[]", tracker.id, (@custom_field.trackers.include? tracker) %> <%= tracker.name %>
93 <%= check_box_tag "tracker_ids[]", tracker.id, (@custom_field.trackers.include? tracker) %> <%= tracker.name %>
82 <% end %>
94 <% end %>
83 </fieldset>
95 </fieldset>
84 &nbsp;
96 &nbsp;
85 <p><%= f.check_box :is_required %></p>
97 <p><%= f.check_box :is_required %></p>
86 <p><%= f.check_box :is_for_all %></p>
98 <p><%= f.check_box :is_for_all %></p>
87 <p><%= f.check_box :is_filter %></p>
99 <p><%= f.check_box :is_filter %></p>
88 <p><%= f.check_box :searchable %></p>
100 <p><%= f.check_box :searchable %></p>
89
101
90 <% when "UserCustomField" %>
102 <% when "UserCustomField" %>
91 <p><%= f.check_box :is_required %></p>
103 <p><%= f.check_box :is_required %></p>
92
104
93 <% when "ProjectCustomField" %>
105 <% when "ProjectCustomField" %>
94 <p><%= f.check_box :is_required %></p>
106 <p><%= f.check_box :is_required %></p>
95
107
96 <% end %>
108 <% end %>
97 </div>
109 </div>
98 <%= javascript_tag "toggle_custom_field_format();" %>
110 <%= javascript_tag "toggle_custom_field_format();" %>
@@ -1,564 +1,565
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 ден
8 actionview_datehelper_time_in_words_day: 1 ден
9 actionview_datehelper_time_in_words_day_plural: %d дни
9 actionview_datehelper_time_in_words_day_plural: %d дни
10 actionview_datehelper_time_in_words_hour_about: около час
10 actionview_datehelper_time_in_words_hour_about: около час
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
12 actionview_datehelper_time_in_words_hour_about_single: около час
12 actionview_datehelper_time_in_words_hour_about_single: около час
13 actionview_datehelper_time_in_words_minute: 1 минута
13 actionview_datehelper_time_in_words_minute: 1 минута
14 actionview_datehelper_time_in_words_minute_half: половин минута
14 actionview_datehelper_time_in_words_minute_half: половин минута
15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
16 actionview_datehelper_time_in_words_minute_plural: %d минути
16 actionview_datehelper_time_in_words_minute_plural: %d минути
17 actionview_datehelper_time_in_words_minute_single: 1 минута
17 actionview_datehelper_time_in_words_minute_single: 1 минута
18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
20 actionview_instancetag_blank_option: Изберете
20 actionview_instancetag_blank_option: Изберете
21
21
22 activerecord_error_inclusion: не съществува в списъка
22 activerecord_error_inclusion: не съществува в списъка
23 activerecord_error_exclusion: е запазено
23 activerecord_error_exclusion: е запазено
24 activerecord_error_invalid: е невалидно
24 activerecord_error_invalid: е невалидно
25 activerecord_error_confirmation: липсва одобрение
25 activerecord_error_confirmation: липсва одобрение
26 activerecord_error_accepted: трябва да се приеме
26 activerecord_error_accepted: трябва да се приеме
27 activerecord_error_empty: не може да е празно
27 activerecord_error_empty: не може да е празно
28 activerecord_error_blank: не може да е празно
28 activerecord_error_blank: не може да е празно
29 activerecord_error_too_long: е прекалено дълго
29 activerecord_error_too_long: е прекалено дълго
30 activerecord_error_too_short: е прекалено късо
30 activerecord_error_too_short: е прекалено късо
31 activerecord_error_wrong_length: е с грешна дължина
31 activerecord_error_wrong_length: е с грешна дължина
32 activerecord_error_taken: вече съществува
32 activerecord_error_taken: вече съществува
33 activerecord_error_not_a_number: не е число
33 activerecord_error_not_a_number: не е число
34 activerecord_error_not_a_date: е невалидна дата
34 activerecord_error_not_a_date: е невалидна дата
35 activerecord_error_greater_than_start_date: трябва да е след началната дата
35 activerecord_error_greater_than_start_date: трябва да е след началната дата
36 activerecord_error_not_same_project: не е от същия проект
36 activerecord_error_not_same_project: не е от същия проект
37 activerecord_error_circular_dependency: Тази релация ще доведе до безкрайна зависимост
37 activerecord_error_circular_dependency: Тази релация ще доведе до безкрайна зависимост
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%d.%%m.%%Y
41 general_fmt_date: %%d.%%m.%%Y
42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Не'
45 general_text_No: 'Не'
46 general_text_Yes: 'Да'
46 general_text_Yes: 'Да'
47 general_text_no: 'не'
47 general_text_no: 'не'
48 general_text_yes: 'да'
48 general_text_yes: 'да'
49 general_lang_name: 'Bulgarian'
49 general_lang_name: 'Bulgarian'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: cp1251
51 general_csv_encoding: cp1251
52 general_pdf_encoding: cp1251
52 general_pdf_encoding: cp1251
53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Профилът е обновен успешно.
56 notice_account_updated: Профилът е обновен успешно.
57 notice_account_invalid_creditentials: Невалиден потребител или парола.
57 notice_account_invalid_creditentials: Невалиден потребител или парола.
58 notice_account_password_updated: Паролата е успешно променена.
58 notice_account_password_updated: Паролата е успешно променена.
59 notice_account_wrong_password: Грешна парола
59 notice_account_wrong_password: Грешна парола
60 notice_account_register_done: Акаунтът е създаден успешно.
60 notice_account_register_done: Акаунтът е създаден успешно.
61 notice_account_unknown_email: Непознат потребител.
61 notice_account_unknown_email: Непознат потребител.
62 notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата.
62 notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата.
63 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
63 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
64 notice_account_activated: Акаунтът ви е активиран. Вече може да влезете.
64 notice_account_activated: Акаунтът ви е активиран. Вече може да влезете.
65 notice_successful_create: Успешно създаване.
65 notice_successful_create: Успешно създаване.
66 notice_successful_update: Успешно обновяване.
66 notice_successful_update: Успешно обновяване.
67 notice_successful_delete: Успешно изтриване.
67 notice_successful_delete: Успешно изтриване.
68 notice_successful_connection: Успешно свързване.
68 notice_successful_connection: Успешно свързване.
69 notice_file_not_found: Несъществуваща или преместена страница.
69 notice_file_not_found: Несъществуваща или преместена страница.
70 notice_locking_conflict: Друг потребител променя тези данни в момента.
70 notice_locking_conflict: Друг потребител променя тези данни в момента.
71 notice_scm_error: Несъществуващ обект в склада.
71 notice_scm_error: Несъществуващ обект в склада.
72 notice_not_authorized: Нямате право на достъп до тази страница.
72 notice_not_authorized: Нямате право на достъп до тази страница.
73 notice_email_sent: Изпратен e-mail на %s
73 notice_email_sent: Изпратен e-mail на %s
74 notice_email_error: Грешка при изпращане на e-mail (%s)
74 notice_email_error: Грешка при изпращане на e-mail (%s)
75 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
75 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
76
76
77 mail_subject_lost_password: Вашата парола
77 mail_subject_lost_password: Вашата парола
78 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
78 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
79 mail_subject_register: Активация на акаунт
79 mail_subject_register: Активация на акаунт
80 mail_body_register: 'За да активирате акаунта си използвайте следния линк:'
80 mail_body_register: 'За да активирате акаунта си използвайте следния линк:'
81
81
82 gui_validation_error: 1 грешка
82 gui_validation_error: 1 грешка
83 gui_validation_error_plural: %d грешки
83 gui_validation_error_plural: %d грешки
84
84
85 field_name: Име
85 field_name: Име
86 field_description: Описание
86 field_description: Описание
87 field_summary: Групиран изглед
87 field_summary: Групиран изглед
88 field_is_required: Задължително
88 field_is_required: Задължително
89 field_firstname: Име
89 field_firstname: Име
90 field_lastname: Фамилия
90 field_lastname: Фамилия
91 field_mail: Email
91 field_mail: Email
92 field_filename: Файл
92 field_filename: Файл
93 field_filesize: Големина
93 field_filesize: Големина
94 field_downloads: Downloads
94 field_downloads: Downloads
95 field_author: Автор
95 field_author: Автор
96 field_created_on: Създадена
96 field_created_on: Създадена
97 field_updated_on: Обновена
97 field_updated_on: Обновена
98 field_field_format: Формат
98 field_field_format: Формат
99 field_is_for_all: За всички проекти
99 field_is_for_all: За всички проекти
100 field_possible_values: Възможни стойности
100 field_possible_values: Възможни стойности
101 field_regexp: Регулярен израз
101 field_regexp: Регулярен израз
102 field_min_length: Мин. дължина
102 field_min_length: Мин. дължина
103 field_max_length: Макс. дължина
103 field_max_length: Макс. дължина
104 field_value: Стойност
104 field_value: Стойност
105 field_category: Категория
105 field_category: Категория
106 field_title: Заглавие
106 field_title: Заглавие
107 field_project: Проект
107 field_project: Проект
108 field_issue: Задача
108 field_issue: Задача
109 field_status: Статус
109 field_status: Статус
110 field_notes: Бележка
110 field_notes: Бележка
111 field_is_closed: Затворена задача
111 field_is_closed: Затворена задача
112 field_is_default: Статус по подразбиране
112 field_is_default: Статус по подразбиране
113 field_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: Login attribute
141 field_attr_login: Login attribute
142 field_attr_firstname: Firstname attribute
142 field_attr_firstname: Firstname attribute
143 field_attr_lastname: Lastname attribute
143 field_attr_lastname: Lastname attribute
144 field_attr_mail: Email attribute
144 field_attr_mail: Email attribute
145 field_onthefly: Динамично създаване на потребител
145 field_onthefly: Динамично създаване на потребител
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: Скрий e-mail адреса ми
149 field_hide_mail: Скрий e-mail адреса ми
150 field_comments: Коментар
150 field_comments: Коментар
151 field_url: Адрес
151 field_url: Адрес
152 field_start_page: Начална страница
152 field_start_page: Начална страница
153 field_subproject: Подпроект
153 field_subproject: Подпроект
154 field_hours: Часове
154 field_hours: Часове
155 field_activity: Дейност
155 field_activity: Дейност
156 field_spent_on: Дата
156 field_spent_on: Дата
157 field_identifier: Идентификатор
157 field_identifier: Идентификатор
158 field_is_filter: Използва се за филтър
158 field_is_filter: Използва се за филтър
159 field_issue_to_id: Свързана задача
159 field_issue_to_id: Свързана задача
160 field_delay: Отместване
160 field_delay: Отместване
161 field_assignable: Възможно е възлагане на задачи за тази роля
161 field_assignable: Възможно е възлагане на задачи за тази роля
162 field_redirect_existing_links: Пренасочване на съществуващи линкове
162 field_redirect_existing_links: Пренасочване на съществуващи линкове
163 field_estimated_hours: Изчислено време
163 field_estimated_hours: Изчислено време
164 field_default_value: Статус по подразбиране
164
165
165 setting_app_title: Заглавие
166 setting_app_title: Заглавие
166 setting_app_subtitle: Описание
167 setting_app_subtitle: Описание
167 setting_welcome_text: Допълнителен текст
168 setting_welcome_text: Допълнителен текст
168 setting_default_language: Език по подразбиране
169 setting_default_language: Език по подразбиране
169 setting_login_required: Изискване за вход в системата
170 setting_login_required: Изискване за вход в системата
170 setting_self_registration: Регистрация от потребители
171 setting_self_registration: Регистрация от потребители
171 setting_attachment_max_size: Максимално голям приложен файл
172 setting_attachment_max_size: Максимално голям приложен файл
172 setting_issues_export_limit: Лимит за експорт на задачи
173 setting_issues_export_limit: Лимит за експорт на задачи
173 setting_mail_from: E-mail адрес за емисии
174 setting_mail_from: E-mail адрес за емисии
174 setting_host_name: Хост
175 setting_host_name: Хост
175 setting_text_formatting: Форматиране на текста
176 setting_text_formatting: Форматиране на текста
176 setting_wiki_compression: Wiki компресиране на историята
177 setting_wiki_compression: Wiki компресиране на историята
177 setting_feeds_limit: Лимит на Feeds
178 setting_feeds_limit: Лимит на Feeds
178 setting_autofetch_changesets: Автоматично обработване на commits в склада
179 setting_autofetch_changesets: Автоматично обработване на commits в склада
179 setting_sys_api_enabled: Разрешаване на WS за управление на склада
180 setting_sys_api_enabled: Разрешаване на WS за управление на склада
180 setting_commit_ref_keywords: Отбелязващи ключови думи
181 setting_commit_ref_keywords: Отбелязващи ключови думи
181 setting_commit_fix_keywords: Приключващи ключови думи
182 setting_commit_fix_keywords: Приключващи ключови думи
182 setting_autologin: Автоматичен вход
183 setting_autologin: Автоматичен вход
183 setting_date_format: Формат на датата
184 setting_date_format: Формат на датата
184 setting_cross_project_issue_relations: Релации на задачи между проекти
185 setting_cross_project_issue_relations: Релации на задачи между проекти
185
186
186 label_user: Потребител
187 label_user: Потребител
187 label_user_plural: Потребители
188 label_user_plural: Потребители
188 label_user_new: Нов потребител
189 label_user_new: Нов потребител
189 label_project: Проект
190 label_project: Проект
190 label_project_new: Нов проект
191 label_project_new: Нов проект
191 label_project_plural: Проекти
192 label_project_plural: Проекти
192 label_project_all: Всички проекти
193 label_project_all: Всички проекти
193 label_project_latest: Последни проекти
194 label_project_latest: Последни проекти
194 label_issue: Задача
195 label_issue: Задача
195 label_issue_new: Нова задача
196 label_issue_new: Нова задача
196 label_issue_plural: Задачи
197 label_issue_plural: Задачи
197 label_issue_view_all: Всички задачи
198 label_issue_view_all: Всички задачи
198 label_document: Документ
199 label_document: Документ
199 label_document_new: Нов документ
200 label_document_new: Нов документ
200 label_document_plural: Документи
201 label_document_plural: Документи
201 label_role: Роля
202 label_role: Роля
202 label_role_plural: Роли
203 label_role_plural: Роли
203 label_role_new: Нова роля
204 label_role_new: Нова роля
204 label_role_and_permissions: Роли и права
205 label_role_and_permissions: Роли и права
205 label_member: Член
206 label_member: Член
206 label_member_new: Нов член
207 label_member_new: Нов член
207 label_member_plural: Членове
208 label_member_plural: Членове
208 label_tracker: Тракер
209 label_tracker: Тракер
209 label_tracker_plural: Тракери
210 label_tracker_plural: Тракери
210 label_tracker_new: Нов тракер
211 label_tracker_new: Нов тракер
211 label_workflow: Работен процес
212 label_workflow: Работен процес
212 label_issue_status: Статус на задача
213 label_issue_status: Статус на задача
213 label_issue_status_plural: Статуси на задачи
214 label_issue_status_plural: Статуси на задачи
214 label_issue_status_new: Нов статус
215 label_issue_status_new: Нов статус
215 label_issue_category: Категория задача
216 label_issue_category: Категория задача
216 label_issue_category_plural: Категории задачи
217 label_issue_category_plural: Категории задачи
217 label_issue_category_new: Нова категория
218 label_issue_category_new: Нова категория
218 label_custom_field: Потребителско поле
219 label_custom_field: Потребителско поле
219 label_custom_field_plural: Потребителски полета
220 label_custom_field_plural: Потребителски полета
220 label_custom_field_new: Ново потребителско поле
221 label_custom_field_new: Ново потребителско поле
221 label_enumerations: Списъци
222 label_enumerations: Списъци
222 label_enumeration_new: Нова стойност
223 label_enumeration_new: Нова стойност
223 label_information: Информация
224 label_information: Информация
224 label_information_plural: Информация
225 label_information_plural: Информация
225 label_please_login: Вход
226 label_please_login: Вход
226 label_register: Регистрация
227 label_register: Регистрация
227 label_password_lost: Забравена парола
228 label_password_lost: Забравена парола
228 label_home: Начало
229 label_home: Начало
229 label_my_page: Лична страница
230 label_my_page: Лична страница
230 label_my_account: Профил
231 label_my_account: Профил
231 label_my_projects: Моите проекти
232 label_my_projects: Моите проекти
232 label_administration: Администрация
233 label_administration: Администрация
233 label_login: Вход
234 label_login: Вход
234 label_logout: Изход
235 label_logout: Изход
235 label_help: Помощ
236 label_help: Помощ
236 label_reported_issues: Публикувани задачи
237 label_reported_issues: Публикувани задачи
237 label_assigned_to_me_issues: Възложени на мен
238 label_assigned_to_me_issues: Възложени на мен
238 label_last_login: Последно свързване
239 label_last_login: Последно свързване
239 label_last_updates: Последно обновена
240 label_last_updates: Последно обновена
240 label_last_updates_plural: %d последно обновени
241 label_last_updates_plural: %d последно обновени
241 label_registered_on: Регистрация
242 label_registered_on: Регистрация
242 label_activity: Дейност
243 label_activity: Дейност
243 label_new: Нов
244 label_new: Нов
244 label_logged_as: Логнат като
245 label_logged_as: Логнат като
245 label_environment: Среда
246 label_environment: Среда
246 label_authentication: Оторизация
247 label_authentication: Оторизация
247 label_auth_source: Начин на оторозация
248 label_auth_source: Начин на оторозация
248 label_auth_source_new: Нов начин на оторизация
249 label_auth_source_new: Нов начин на оторизация
249 label_auth_source_plural: Начини на оторизация
250 label_auth_source_plural: Начини на оторизация
250 label_subproject_plural: Подпроекти
251 label_subproject_plural: Подпроекти
251 label_min_max_length: Мин. - Макс. дължина
252 label_min_max_length: Мин. - Макс. дължина
252 label_list: Списък
253 label_list: Списък
253 label_date: Дата
254 label_date: Дата
254 label_integer: Число
255 label_integer: Число
255 label_boolean: Чекбокс
256 label_boolean: Чекбокс
256 label_string: Текст
257 label_string: Текст
257 label_text: Дълъг текст
258 label_text: Дълъг текст
258 label_attribute: Атрибут
259 label_attribute: Атрибут
259 label_attribute_plural: Атрибути
260 label_attribute_plural: Атрибути
260 label_download: %d Download
261 label_download: %d Download
261 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
262 label_no_data: Няма изходни данни
263 label_no_data: Няма изходни данни
263 label_change_status: Промяна на статуса
264 label_change_status: Промяна на статуса
264 label_history: История
265 label_history: История
265 label_attachment: Файл
266 label_attachment: Файл
266 label_attachment_new: Нов файл
267 label_attachment_new: Нов файл
267 label_attachment_delete: Изтриване
268 label_attachment_delete: Изтриване
268 label_attachment_plural: Файлове
269 label_attachment_plural: Файлове
269 label_report: Справка
270 label_report: Справка
270 label_report_plural: Справки
271 label_report_plural: Справки
271 label_news: Новини
272 label_news: Новини
272 label_news_new: Добави
273 label_news_new: Добави
273 label_news_plural: Новини
274 label_news_plural: Новини
274 label_news_latest: Последни новини
275 label_news_latest: Последни новини
275 label_news_view_all: Виж всички
276 label_news_view_all: Виж всички
276 label_change_log: Изменения
277 label_change_log: Изменения
277 label_settings: Настройки
278 label_settings: Настройки
278 label_overview: Общ изглед
279 label_overview: Общ изглед
279 label_version: Версия
280 label_version: Версия
280 label_version_new: Нова версия
281 label_version_new: Нова версия
281 label_version_plural: Версии
282 label_version_plural: Версии
282 label_confirmation: Одобрение
283 label_confirmation: Одобрение
283 label_export_to: Експорт към
284 label_export_to: Експорт към
284 label_read: Read...
285 label_read: Read...
285 label_public_projects: Публични проекти
286 label_public_projects: Публични проекти
286 label_open_issues: отворена
287 label_open_issues: отворена
287 label_open_issues_plural: отворени
288 label_open_issues_plural: отворени
288 label_closed_issues: затворена
289 label_closed_issues: затворена
289 label_closed_issues_plural: затворени
290 label_closed_issues_plural: затворени
290 label_total: Общо
291 label_total: Общо
291 label_permissions: Права
292 label_permissions: Права
292 label_current_status: Текущ статус
293 label_current_status: Текущ статус
293 label_new_statuses_allowed: Позволени статуси
294 label_new_statuses_allowed: Позволени статуси
294 label_all: всички
295 label_all: всички
295 label_none: никакви
296 label_none: никакви
296 label_next: Следващ
297 label_next: Следващ
297 label_previous: Предишен
298 label_previous: Предишен
298 label_used_by: Използва се от
299 label_used_by: Използва се от
299 label_details: Детайли
300 label_details: Детайли
300 label_add_note: Добавяне на бележка
301 label_add_note: Добавяне на бележка
301 label_per_page: На страница
302 label_per_page: На страница
302 label_calendar: Календар
303 label_calendar: Календар
303 label_months_from: месеца от
304 label_months_from: месеца от
304 label_gantt: Gantt
305 label_gantt: Gantt
305 label_internal: Вътрешен
306 label_internal: Вътрешен
306 label_last_changes: последни %d промени
307 label_last_changes: последни %d промени
307 label_change_view_all: Виж всички промени
308 label_change_view_all: Виж всички промени
308 label_personalize_page: Персонализиране
309 label_personalize_page: Персонализиране
309 label_comment: Коментар
310 label_comment: Коментар
310 label_comment_plural: Коментари
311 label_comment_plural: Коментари
311 label_comment_add: Добавяне на коментар
312 label_comment_add: Добавяне на коментар
312 label_comment_added: Добавен коментар
313 label_comment_added: Добавен коментар
313 label_comment_delete: Изтриване на коментари
314 label_comment_delete: Изтриване на коментари
314 label_query: Потребителска справка
315 label_query: Потребителска справка
315 label_query_plural: Потребителски справки
316 label_query_plural: Потребителски справки
316 label_query_new: Нова заявка
317 label_query_new: Нова заявка
317 label_filter_add: Добави филтър
318 label_filter_add: Добави филтър
318 label_filter_plural: Филтри
319 label_filter_plural: Филтри
319 label_equals: е
320 label_equals: е
320 label_not_equals: не е
321 label_not_equals: не е
321 label_in_less_than: след по-малко от
322 label_in_less_than: след по-малко от
322 label_in_more_than: след повече от
323 label_in_more_than: след повече от
323 label_in: в следващите
324 label_in: в следващите
324 label_today: днес
325 label_today: днес
325 label_this_week: тази седмица
326 label_this_week: тази седмица
326 label_less_than_ago: преди по-малко от
327 label_less_than_ago: преди по-малко от
327 label_more_than_ago: преди повече от
328 label_more_than_ago: преди повече от
328 label_ago: преди
329 label_ago: преди
329 label_contains: съдържа
330 label_contains: съдържа
330 label_not_contains: не съдържа
331 label_not_contains: не съдържа
331 label_day_plural: дни
332 label_day_plural: дни
332 label_repository: Склад
333 label_repository: Склад
333 label_browse: Разглеждане
334 label_browse: Разглеждане
334 label_modification: %d промяна
335 label_modification: %d промяна
335 label_modification_plural: %d промени
336 label_modification_plural: %d промени
336 label_revision: Ревизия
337 label_revision: Ревизия
337 label_revision_plural: Ревизии
338 label_revision_plural: Ревизии
338 label_added: добавено
339 label_added: добавено
339 label_modified: променено
340 label_modified: променено
340 label_deleted: изтрито
341 label_deleted: изтрито
341 label_latest_revision: Последна ревизия
342 label_latest_revision: Последна ревизия
342 label_latest_revision_plural: Последни ревизии
343 label_latest_revision_plural: Последни ревизии
343 label_view_revisions: Виж ревизиите
344 label_view_revisions: Виж ревизиите
344 label_max_size: Максимална големина
345 label_max_size: Максимална големина
345 label_on: 'от'
346 label_on: 'от'
346 label_sort_highest: Премести най-горе
347 label_sort_highest: Премести най-горе
347 label_sort_higher: Премести по-горе
348 label_sort_higher: Премести по-горе
348 label_sort_lower: Премести по-долу
349 label_sort_lower: Премести по-долу
349 label_sort_lowest: Премести най-долу
350 label_sort_lowest: Премести най-долу
350 label_roadmap: Пътна карта
351 label_roadmap: Пътна карта
351 label_roadmap_due_in: Излиза след
352 label_roadmap_due_in: Излиза след
352 label_roadmap_overdue: %s закъснение
353 label_roadmap_overdue: %s закъснение
353 label_roadmap_no_issues: Няма задачи за тази версия
354 label_roadmap_no_issues: Няма задачи за тази версия
354 label_search: Търсене
355 label_search: Търсене
355 label_result_plural: Pезултати
356 label_result_plural: Pезултати
356 label_all_words: Всички думи
357 label_all_words: Всички думи
357 label_wiki: Wiki
358 label_wiki: Wiki
358 label_wiki_edit: Wiki редакция
359 label_wiki_edit: Wiki редакция
359 label_wiki_edit_plural: Wiki редакции
360 label_wiki_edit_plural: Wiki редакции
360 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
361 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
362 label_index_by_title: Индекс
363 label_index_by_title: Индекс
363 label_index_by_date: Индекс по дата
364 label_index_by_date: Индекс по дата
364 label_current_version: Текуща версия
365 label_current_version: Текуща версия
365 label_preview: Преглед
366 label_preview: Преглед
366 label_feed_plural: Feeds
367 label_feed_plural: Feeds
367 label_changes_details: Подробни промени
368 label_changes_details: Подробни промени
368 label_issue_tracking: Тракинг
369 label_issue_tracking: Тракинг
369 label_spent_time: Отделено време
370 label_spent_time: Отделено време
370 label_f_hour: %.2f час
371 label_f_hour: %.2f час
371 label_f_hour_plural: %.2f часа
372 label_f_hour_plural: %.2f часа
372 label_time_tracking: Отделяне на време
373 label_time_tracking: Отделяне на време
373 label_change_plural: Промени
374 label_change_plural: Промени
374 label_statistics: Статистики
375 label_statistics: Статистики
375 label_commits_per_month: Commits за месец
376 label_commits_per_month: Commits за месец
376 label_commits_per_author: Commits за автор
377 label_commits_per_author: Commits за автор
377 label_view_diff: Виж разликите
378 label_view_diff: Виж разликите
378 label_diff_inline: хоризонтално
379 label_diff_inline: хоризонтално
379 label_diff_side_by_side: вертикално
380 label_diff_side_by_side: вертикално
380 label_options: Опции
381 label_options: Опции
381 label_copy_workflow_from: Копирай работния процес от
382 label_copy_workflow_from: Копирай работния процес от
382 label_permissions_report: Справка за права
383 label_permissions_report: Справка за права
383 label_watched_issues: Наблюдавани задачи
384 label_watched_issues: Наблюдавани задачи
384 label_related_issues: Свързани задачи
385 label_related_issues: Свързани задачи
385 label_applied_status: Промени статуса на
386 label_applied_status: Промени статуса на
386 label_loading: Зареждане...
387 label_loading: Зареждане...
387 label_relation_new: Нова релация
388 label_relation_new: Нова релация
388 label_relation_delete: Изтриване на релация
389 label_relation_delete: Изтриване на релация
389 label_relates_to: Свързана със
390 label_relates_to: Свързана със
390 label_duplicates: дублира
391 label_duplicates: дублира
391 label_blocks: блокира
392 label_blocks: блокира
392 label_blocked_by: блокирана от
393 label_blocked_by: блокирана от
393 label_precedes: предшества
394 label_precedes: предшества
394 label_follows: изпълнява се след
395 label_follows: изпълнява се след
395 label_end_to_start: end to start
396 label_end_to_start: end to start
396 label_end_to_end: end to end
397 label_end_to_end: end to end
397 label_start_to_start: start to start
398 label_start_to_start: start to start
398 label_start_to_end: start to end
399 label_start_to_end: start to end
399 label_stay_logged_in: Запомни ме
400 label_stay_logged_in: Запомни ме
400 label_disabled: забранено
401 label_disabled: забранено
401 label_show_completed_versions: Показване на реализирани версии
402 label_show_completed_versions: Показване на реализирани версии
402 label_me: аз
403 label_me: аз
403 label_board: Форум
404 label_board: Форум
404 label_board_new: Нов форум
405 label_board_new: Нов форум
405 label_board_plural: Форуми
406 label_board_plural: Форуми
406 label_topic_plural: Теми
407 label_topic_plural: Теми
407 label_message_plural: Съобщения
408 label_message_plural: Съобщения
408 label_message_last: Последно съобщение
409 label_message_last: Последно съобщение
409 label_message_new: Нова тема
410 label_message_new: Нова тема
410 label_reply_plural: Отговори
411 label_reply_plural: Отговори
411 label_send_information: Изпращане на информацията до потребителя
412 label_send_information: Изпращане на информацията до потребителя
412 label_year: Година
413 label_year: Година
413 label_month: Месец
414 label_month: Месец
414 label_week: Седмица
415 label_week: Седмица
415 label_date_from: От
416 label_date_from: От
416 label_date_to: До
417 label_date_to: До
417 label_language_based: В зависимост от езика
418 label_language_based: В зависимост от езика
418 label_sort_by: Sort by %s
419 label_sort_by: Sort by %s
419 label_send_test_email: Изпращане на тестов e-mail
420 label_send_test_email: Изпращане на тестов e-mail
420 label_feeds_access_key_created_on: %s от създаването на RSS ключа
421 label_feeds_access_key_created_on: %s от създаването на RSS ключа
421 label_module_plural: Модули
422 label_module_plural: Модули
422 label_added_time_by: Публикувана от %s преди %s
423 label_added_time_by: Публикувана от %s преди %s
423 label_updated_time: Обновена преди %s
424 label_updated_time: Обновена преди %s
424 label_jump_to_a_project: Проект...
425 label_jump_to_a_project: Проект...
425
426
426 button_login: Вход
427 button_login: Вход
427 button_submit: Приложи
428 button_submit: Приложи
428 button_save: Запис
429 button_save: Запис
429 button_check_all: Маркирай всички
430 button_check_all: Маркирай всички
430 button_uncheck_all: Изчисти всички
431 button_uncheck_all: Изчисти всички
431 button_delete: Изтриване
432 button_delete: Изтриване
432 button_create: Създаване
433 button_create: Създаване
433 button_test: Тест
434 button_test: Тест
434 button_edit: Редакция
435 button_edit: Редакция
435 button_add: Добавяне
436 button_add: Добавяне
436 button_change: Промяна
437 button_change: Промяна
437 button_apply: Приложи
438 button_apply: Приложи
438 button_clear: Изчисти
439 button_clear: Изчисти
439 button_lock: Заключване
440 button_lock: Заключване
440 button_unlock: Отключване
441 button_unlock: Отключване
441 button_download: Download
442 button_download: Download
442 button_list: Списък
443 button_list: Списък
443 button_view: Преглед
444 button_view: Преглед
444 button_move: Преместване
445 button_move: Преместване
445 button_back: Назад
446 button_back: Назад
446 button_cancel: Отказ
447 button_cancel: Отказ
447 button_activate: Активация
448 button_activate: Активация
448 button_sort: Сортиране
449 button_sort: Сортиране
449 button_log_time: Отделяне на време
450 button_log_time: Отделяне на време
450 button_rollback: Върни се към тази ревизия
451 button_rollback: Върни се към тази ревизия
451 button_watch: Наблюдавай
452 button_watch: Наблюдавай
452 button_unwatch: Спри наблюдението
453 button_unwatch: Спри наблюдението
453 button_reply: Отговор
454 button_reply: Отговор
454 button_archive: Архивиране
455 button_archive: Архивиране
455 button_unarchive: Разархивиране
456 button_unarchive: Разархивиране
456 button_reset: Генериране наново
457 button_reset: Генериране наново
457 button_rename: Преименуване
458 button_rename: Преименуване
458
459
459 status_active: активен
460 status_active: активен
460 status_registered: регистриран
461 status_registered: регистриран
461 status_locked: заключен
462 status_locked: заключен
462
463
463 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
464 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
464 text_regexp_info: пр. ^[A-Z0-9]+$
465 text_regexp_info: пр. ^[A-Z0-9]+$
465 text_min_max_length_info: 0 - без ограничения
466 text_min_max_length_info: 0 - без ограничения
466 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
467 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
467 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
468 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
468 text_are_you_sure: Сигурни ли сте?
469 text_are_you_sure: Сигурни ли сте?
469 text_journal_changed: промяна от %s на %s
470 text_journal_changed: промяна от %s на %s
470 text_journal_set_to: установено на %s
471 text_journal_set_to: установено на %s
471 text_journal_deleted: изтрито
472 text_journal_deleted: изтрито
472 text_tip_task_begin_day: задача започваща този ден
473 text_tip_task_begin_day: задача започваща този ден
473 text_tip_task_end_day: задача завършваща този ден
474 text_tip_task_end_day: задача завършваща този ден
474 text_tip_task_begin_end_day: задача започваща и завършваща този ден
475 text_tip_task_begin_end_day: задача започваща и завършваща този ден
475 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
476 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
476 text_caracters_maximum: До %d символа.
477 text_caracters_maximum: До %d символа.
477 text_length_between: От %d до %d символа.
478 text_length_between: От %d до %d символа.
478 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
479 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
479 text_unallowed_characters: Непозволени символи
480 text_unallowed_characters: Непозволени символи
480 text_comma_separated: Позволено е изброяване (с разделител запетая).
481 text_comma_separated: Позволено е изброяване (с разделител запетая).
481 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
482 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
482 text_issue_added: Публикувана е нова задача с номер %s.
483 text_issue_added: Публикувана е нова задача с номер %s.
483 text_issue_updated: Задача %s е обновена.
484 text_issue_updated: Задача %s е обновена.
484 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
485 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
485 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
486 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
486 text_issue_category_destroy_assignments: Премахване на връзките с категорията
487 text_issue_category_destroy_assignments: Премахване на връзките с категорията
487 text_issue_category_reassign_to: Преобвързване с категория
488 text_issue_category_reassign_to: Преобвързване с категория
488
489
489 default_role_manager: Мениджър
490 default_role_manager: Мениджър
490 default_role_developper: Разработчик
491 default_role_developper: Разработчик
491 default_role_reporter: Публикуващ
492 default_role_reporter: Публикуващ
492 default_tracker_bug: Бъг
493 default_tracker_bug: Бъг
493 default_tracker_feature: Функционалност
494 default_tracker_feature: Функционалност
494 default_tracker_support: Поддръжка
495 default_tracker_support: Поддръжка
495 default_issue_status_new: Нова
496 default_issue_status_new: Нова
496 default_issue_status_assigned: Възложена
497 default_issue_status_assigned: Възложена
497 default_issue_status_resolved: Приключена
498 default_issue_status_resolved: Приключена
498 default_issue_status_feedback: Обратна връзка
499 default_issue_status_feedback: Обратна връзка
499 default_issue_status_closed: Затворена
500 default_issue_status_closed: Затворена
500 default_issue_status_rejected: Отхвърлена
501 default_issue_status_rejected: Отхвърлена
501 default_doc_category_user: Документация за потребителя
502 default_doc_category_user: Документация за потребителя
502 default_doc_category_tech: Техническа документация
503 default_doc_category_tech: Техническа документация
503 default_priority_low: Нисък
504 default_priority_low: Нисък
504 default_priority_normal: Нормален
505 default_priority_normal: Нормален
505 default_priority_high: Висок
506 default_priority_high: Висок
506 default_priority_urgent: Спешен
507 default_priority_urgent: Спешен
507 default_priority_immediate: Веднага
508 default_priority_immediate: Веднага
508 default_activity_design: Дизайн
509 default_activity_design: Дизайн
509 default_activity_development: Разработка
510 default_activity_development: Разработка
510
511
511 enumeration_issue_priorities: Приоритети на задачи
512 enumeration_issue_priorities: Приоритети на задачи
512 enumeration_doc_categories: Категории документи
513 enumeration_doc_categories: Категории документи
513 enumeration_activities: Дейности (time tracking)
514 enumeration_activities: Дейности (time tracking)
514 label_file_plural: Files
515 label_file_plural: Files
515 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
516 field_column_names: Колони
517 field_column_names: Колони
517 label_default_columns: По подразбиране
518 label_default_columns: По подразбиране
518 setting_issue_list_default_columns: Показвани колони по подразбиране
519 setting_issue_list_default_columns: Показвани колони по подразбиране
519 setting_repositories_encodings: Encodings на складовете
520 setting_repositories_encodings: Encodings на складовете
520 notice_no_issue_selected: "Няма избрани задачи."
521 notice_no_issue_selected: "Няма избрани задачи."
521 label_bulk_edit_selected_issues: Редактиране на задачи
522 label_bulk_edit_selected_issues: Редактиране на задачи
522 label_no_change_option: (Без промяна)
523 label_no_change_option: (Без промяна)
523 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
524 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
524 label_theme: Тема
525 label_theme: Тема
525 label_default: По подразбиране
526 label_default: По подразбиране
526 label_search_titles_only: Само в заглавията
527 label_search_titles_only: Само в заглавията
527 label_nobody: nobody
528 label_nobody: nobody
528 button_change_password: Change password
529 button_change_password: Change password
529 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 setting_emails_footer: Emails footer
534 setting_emails_footer: Emails footer
534 label_float: Float
535 label_float: Float
535 button_copy: Copy
536 button_copy: Copy
536 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information: Your Redmine account information
538 mail_body_account_information: Your Redmine account information
538 setting_protocol: Protocol
539 setting_protocol: Protocol
539 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 setting_time_format: Time format
541 setting_time_format: Time format
541 label_registration_activation_by_email: account activation by email
542 label_registration_activation_by_email: account activation by email
542 mail_subject_account_activation_request: Redmine account activation request
543 mail_subject_account_activation_request: Redmine account activation request
543 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 label_registration_automatic_activation: automatic account activation
545 label_registration_automatic_activation: automatic account activation
545 label_registration_manual_activation: manual account activation
546 label_registration_manual_activation: manual account activation
546 notice_account_pending: "Your account was created and is now pending administrator approval."
547 notice_account_pending: "Your account was created and is now pending administrator approval."
547 field_time_zone: Time zone
548 field_time_zone: Time zone
548 text_caracters_minimum: Must be at least %d characters long.
549 text_caracters_minimum: Must be at least %d characters long.
549 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 button_annotate: Annotate
551 button_annotate: Annotate
551 label_issues_by: Issues by %s
552 label_issues_by: Issues by %s
552 field_searchable: Searchable
553 field_searchable: Searchable
553 label_display_per_page: 'Per page: %s'
554 label_display_per_page: 'Per page: %s'
554 setting_per_page_options: Objects per page options
555 setting_per_page_options: Objects per page options
555 label_age: Age
556 label_age: Age
556 notice_default_data_loaded: Default configuration successfully loaded.
557 notice_default_data_loaded: Default configuration successfully loaded.
557 text_load_default_configuration: Load the default configuration
558 text_load_default_configuration: Load the default configuration
558 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 button_update: Update
561 button_update: Update
561 label_change_properties: Change properties
562 label_change_properties: Change properties
562 label_general: General
563 label_general: General
563 label_repository_plural: Repositories
564 label_repository_plural: Repositories
564 label_associated_revisions: Associated revisions
565 label_associated_revisions: Associated revisions
@@ -1,564 +1,565
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
4 actionview_datehelper_select_month_names: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
5 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
5 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 den
8 actionview_datehelper_time_in_words_day: 1 den
9 actionview_datehelper_time_in_words_day_plural: %d dny
9 actionview_datehelper_time_in_words_day_plural: %d dny
10 actionview_datehelper_time_in_words_hour_about: asi hodinu
10 actionview_datehelper_time_in_words_hour_about: asi hodinu
11 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodin
11 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodin
12 actionview_datehelper_time_in_words_hour_about_single: asi hodinu
12 actionview_datehelper_time_in_words_hour_about_single: asi hodinu
13 actionview_datehelper_time_in_words_minute: 1 minuta
13 actionview_datehelper_time_in_words_minute: 1 minuta
14 actionview_datehelper_time_in_words_minute_half: půl minuty
14 actionview_datehelper_time_in_words_minute_half: půl minuty
15 actionview_datehelper_time_in_words_minute_less_than: méně než minutu
15 actionview_datehelper_time_in_words_minute_less_than: méně než minutu
16 actionview_datehelper_time_in_words_minute_plural: %d minut
16 actionview_datehelper_time_in_words_minute_plural: %d minut
17 actionview_datehelper_time_in_words_minute_single: 1 minuta
17 actionview_datehelper_time_in_words_minute_single: 1 minuta
18 actionview_datehelper_time_in_words_second_less_than: méně než sekunda
18 actionview_datehelper_time_in_words_second_less_than: méně než sekunda
19 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekund
20 actionview_instancetag_blank_option: Prosím vyberte
20 actionview_instancetag_blank_option: Prosím vyberte
21
21
22 activerecord_error_inclusion: není zahrnuto v seznamu
22 activerecord_error_inclusion: není zahrnuto v seznamu
23 activerecord_error_exclusion: je rezervováno
23 activerecord_error_exclusion: je rezervováno
24 activerecord_error_invalid: je neplatné
24 activerecord_error_invalid: je neplatné
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: nemůže být prázdný
27 activerecord_error_empty: nemůže být prázdný
28 activerecord_error_blank: nemůže být prázdný
28 activerecord_error_blank: nemůže být prázdný
29 activerecord_error_too_long: je příliš dlouhý
29 activerecord_error_too_long: je příliš dlouhý
30 activerecord_error_too_short: je příliš krátký
30 activerecord_error_too_short: je příliš krátký
31 activerecord_error_wrong_length: má chybnou délku
31 activerecord_error_wrong_length: má chybnou délku
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: není číslo
33 activerecord_error_not_a_number: není číslo
34 activerecord_error_not_a_date: není platný datum
34 activerecord_error_not_a_date: není platný datum
35 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
35 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
36 activerecord_error_not_same_project: nepatří stejnému projektu
36 activerecord_error_not_same_project: nepatří stejnému projektu
37 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
37 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
38
38
39 general_fmt_age: %d rok
39 general_fmt_age: %d rok
40 general_fmt_age_plural: %d roků
40 general_fmt_age_plural: %d roků
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Ne'
45 general_text_No: 'Ne'
46 general_text_Yes: 'Ano'
46 general_text_Yes: 'Ano'
47 general_text_no: 'ne'
47 general_text_no: 'ne'
48 general_text_yes: 'Ano'
48 general_text_yes: 'Ano'
49 general_lang_name: 'Čeština'
49 general_lang_name: 'Čeština'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: UTF-8
51 general_csv_encoding: UTF-8
52 general_pdf_encoding: UTF-8
52 general_pdf_encoding: UTF-8
53 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
53 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Účet byl úspěšně změněn.
56 notice_account_updated: Účet byl úspěšně změněn.
57 notice_account_invalid_creditentials: Chybné jméno nebo heslo
57 notice_account_invalid_creditentials: Chybné jméno nebo heslo
58 notice_account_password_updated: Heslo bylo úspěšně změněno.
58 notice_account_password_updated: Heslo bylo úspěšně změněno.
59 notice_account_wrong_password: Chybné heslo
59 notice_account_wrong_password: Chybné heslo
60 notice_account_register_done: Účet byl úspěšně vytvořen. Pro aktivaci účtu klikněte na odkaz v emailu, který vám byl zaslán.
60 notice_account_register_done: Účet byl úspěšně vytvořen. Pro aktivaci účtu klikněte na odkaz v emailu, který vám byl zaslán.
61 notice_account_unknown_email: Neznámý uživatel.
61 notice_account_unknown_email: Neznámý uživatel.
62 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
62 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
63 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
63 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
64 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
64 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
65 notice_successful_create: Úspěšné vytvoření.
65 notice_successful_create: Úspěšné vytvoření.
66 notice_successful_update: Úspěšná aktualizace.
66 notice_successful_update: Úspěšná aktualizace.
67 notice_successful_delete: Úspěšné smazání.
67 notice_successful_delete: Úspěšné smazání.
68 notice_successful_connection: Úspěšné připojení.
68 notice_successful_connection: Úspěšné připojení.
69 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
69 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
70 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
70 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
72 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
72 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
73 notice_email_sent: Na adresu %s byl odeslán email
73 notice_email_sent: Na adresu %s byl odeslán email
74 notice_email_error: Při odesílání emailu nastala chyba (%s)
74 notice_email_error: Při odesílání emailu nastala chyba (%s)
75 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
75 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
76
76
77 mail_subject_lost_password: Vaše heslo
77 mail_subject_lost_password: Vaše heslo
78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
79 mail_subject_register: aktivace účtu
79 mail_subject_register: aktivace účtu
80 mail_body_register: 'To activate your Redmine account, click on the following link:'
80 mail_body_register: 'To activate your Redmine account, click on the following link:'
81
81
82 gui_validation_error: 1 chyba
82 gui_validation_error: 1 chyba
83 gui_validation_error_plural: %d chyb(y)
83 gui_validation_error_plural: %d chyb(y)
84
84
85 field_name: Jméno
85 field_name: Jméno
86 field_description: Popis
86 field_description: Popis
87 field_summary: Shrnutí
87 field_summary: Shrnutí
88 field_is_required: Požadovaný
88 field_is_required: Požadovaný
89 field_firstname: Jméno
89 field_firstname: Jméno
90 field_lastname: Příjmení
90 field_lastname: Příjmení
91 field_mail: Email
91 field_mail: Email
92 field_filename: Soubor
92 field_filename: Soubor
93 field_filesize: Velikost
93 field_filesize: Velikost
94 field_downloads: Staženo
94 field_downloads: Staženo
95 field_author: Autor
95 field_author: Autor
96 field_created_on: Vytvořeno
96 field_created_on: Vytvořeno
97 field_updated_on: Aktualizováno
97 field_updated_on: Aktualizováno
98 field_field_format: Formát
98 field_field_format: Formát
99 field_is_for_all: Pro všechny projekty
99 field_is_for_all: Pro všechny projekty
100 field_possible_values: Možné hodnoty
100 field_possible_values: Možné hodnoty
101 field_regexp: Regulární výraz
101 field_regexp: Regulární výraz
102 field_min_length: Minimální délka
102 field_min_length: Minimální délka
103 field_max_length: Maximální délka
103 field_max_length: Maximální délka
104 field_value: Hodnota
104 field_value: Hodnota
105 field_category: Kategorie
105 field_category: Kategorie
106 field_title: Titulek
106 field_title: Titulek
107 field_project: Projekt
107 field_project: Projekt
108 field_issue: Požadavek
108 field_issue: Požadavek
109 field_status: Stav
109 field_status: Stav
110 field_notes: Poznámka
110 field_notes: Poznámka
111 field_is_closed: Požadavek uzavřen
111 field_is_closed: Požadavek uzavřen
112 field_is_default: Výchozí stav
112 field_is_default: Výchozí stav
113 field_tracker: Fronta
113 field_tracker: Fronta
114 field_subject: Předmět
114 field_subject: Předmět
115 field_due_date: Po lhůtě
115 field_due_date: Po lhůtě
116 field_assigned_to: Přiřazeno
116 field_assigned_to: Přiřazeno
117 field_priority: Priorita
117 field_priority: Priorita
118 field_fixed_version: Pevná verze
118 field_fixed_version: Pevná verze
119 field_user: Uživatel
119 field_user: Uživatel
120 field_role: Role
120 field_role: Role
121 field_homepage: Úvodní
121 field_homepage: Úvodní
122 field_is_public: Veřejný
122 field_is_public: Veřejný
123 field_parent: Podprojekt
123 field_parent: Podprojekt
124 field_is_in_chlog: Požadavky zobrazené v změnovém logu
124 field_is_in_chlog: Požadavky zobrazené v změnovém logu
125 field_is_in_roadmap: Požadavky zobrazené v roadmapě
125 field_is_in_roadmap: Požadavky zobrazené v roadmapě
126 field_login: Přihlášení
126 field_login: Přihlášení
127 field_mail_notification: Emailové oznámení
127 field_mail_notification: Emailové oznámení
128 field_admin: Administrátor
128 field_admin: Administrátor
129 field_last_login_on: Poslední připojení
129 field_last_login_on: Poslední připojení
130 field_language: Jazyk
130 field_language: Jazyk
131 field_effective_date: Datum
131 field_effective_date: Datum
132 field_password: Heslo
132 field_password: Heslo
133 field_new_password: Nové heslo
133 field_new_password: Nové heslo
134 field_password_confirmation: Potvrzení
134 field_password_confirmation: Potvrzení
135 field_version: Verze
135 field_version: Verze
136 field_type: Typ
136 field_type: Typ
137 field_host: Host
137 field_host: Host
138 field_port: Port
138 field_port: Port
139 field_account: Účet
139 field_account: Účet
140 field_base_dn: Base DN
140 field_base_dn: Base DN
141 field_attr_login: Login attribute
141 field_attr_login: Login attribute
142 field_attr_firstname: Firstname attribute
142 field_attr_firstname: Firstname attribute
143 field_attr_lastname: Lastname attribute
143 field_attr_lastname: Lastname attribute
144 field_attr_mail: Email attribute
144 field_attr_mail: Email attribute
145 field_onthefly: Automatické vytváření uživatelů
145 field_onthefly: Automatické vytváření uživatelů
146 field_start_date: Start
146 field_start_date: Start
147 field_done_ratio: %% Hotovo
147 field_done_ratio: %% Hotovo
148 field_auth_source: Autentifikační mód
148 field_auth_source: Autentifikační mód
149 field_hide_mail: Nezobrazovat můj email
149 field_hide_mail: Nezobrazovat můj email
150 field_comments: Komentář
150 field_comments: Komentář
151 field_url: URL
151 field_url: URL
152 field_start_page: Výchozí stránka
152 field_start_page: Výchozí stránka
153 field_subproject: Podprojekt
153 field_subproject: Podprojekt
154 field_hours: Hodiny
154 field_hours: Hodiny
155 field_activity: Aktivita
155 field_activity: Aktivita
156 field_spent_on: Datum
156 field_spent_on: Datum
157 field_identifier: Identifikátor
157 field_identifier: Identifikátor
158 field_is_filter: Used as a filter
158 field_is_filter: Used as a filter
159 field_issue_to_id: Vztažený požadavek
159 field_issue_to_id: Vztažený požadavek
160 field_delay: Zpoždění
160 field_delay: Zpoždění
161 field_assignable: Požadavky mohou být přiřazeny této roli
161 field_assignable: Požadavky mohou být přiřazeny této roli
162 field_default_value: Výchozí stav
162
163
163 setting_app_title: Titulek aplikace
164 setting_app_title: Titulek aplikace
164 setting_app_subtitle: Podtitulek aplikace
165 setting_app_subtitle: Podtitulek aplikace
165 setting_welcome_text: Uvítací text
166 setting_welcome_text: Uvítací text
166 setting_default_language: Výchozí jazyk
167 setting_default_language: Výchozí jazyk
167 setting_login_required: Auten. vyžadována
168 setting_login_required: Auten. vyžadována
168 setting_self_registration: Povolena automatická registrace
169 setting_self_registration: Povolena automatická registrace
169 setting_attachment_max_size: Maximální velikost přílohy
170 setting_attachment_max_size: Maximální velikost přílohy
170 setting_issues_export_limit: Limit pro export požadavků
171 setting_issues_export_limit: Limit pro export požadavků
171 setting_mail_from: Emission mail adresa
172 setting_mail_from: Emission mail adresa
172 setting_host_name: Host name
173 setting_host_name: Host name
173 setting_text_formatting: Formátování textu
174 setting_text_formatting: Formátování textu
174 setting_wiki_compression: Komperese historie Wiki
175 setting_wiki_compression: Komperese historie Wiki
175 setting_feeds_limit: Feed content limit
176 setting_feeds_limit: Feed content limit
176 setting_autofetch_changesets: Autofetch commits
177 setting_autofetch_changesets: Autofetch commits
177 setting_sys_api_enabled: Povolit WS pro správu repozitory
178 setting_sys_api_enabled: Povolit WS pro správu repozitory
178 setting_commit_ref_keywords: Referencing keywords
179 setting_commit_ref_keywords: Referencing keywords
179 setting_commit_fix_keywords: Fixing keywords
180 setting_commit_fix_keywords: Fixing keywords
180 setting_autologin: Automatické přihlašování
181 setting_autologin: Automatické přihlašování
181 setting_date_format: Formát datumu
182 setting_date_format: Formát datumu
182 setting_cross_project_issue_relations: Povolit vztahy požadavků mezi projekty
183 setting_cross_project_issue_relations: Povolit vztahy požadavků mezi projekty
183
184
184 label_user: Uživatel
185 label_user: Uživatel
185 label_user_plural: Uživatelé
186 label_user_plural: Uživatelé
186 label_user_new: Nový uživatel
187 label_user_new: Nový uživatel
187 label_project: Projekt
188 label_project: Projekt
188 label_project_new: Nový projekt
189 label_project_new: Nový projekt
189 label_project_plural: Projekty
190 label_project_plural: Projekty
190 label_project_all: Všechny projekty
191 label_project_all: Všechny projekty
191 label_project_latest: Poslední projekty
192 label_project_latest: Poslední projekty
192 label_issue: Požadavek
193 label_issue: Požadavek
193 label_issue_new: Nový požadavek
194 label_issue_new: Nový požadavek
194 label_issue_plural: Požadavky
195 label_issue_plural: Požadavky
195 label_issue_view_all: Všechny požadavky
196 label_issue_view_all: Všechny požadavky
196 label_document: Dokument
197 label_document: Dokument
197 label_document_new: Nový dokument
198 label_document_new: Nový dokument
198 label_document_plural: Dokumenty
199 label_document_plural: Dokumenty
199 label_role: Role
200 label_role: Role
200 label_role_plural: Role
201 label_role_plural: Role
201 label_role_new: Nová role
202 label_role_new: Nová role
202 label_role_and_permissions: Role a práva
203 label_role_and_permissions: Role a práva
203 label_member: Člen
204 label_member: Člen
204 label_member_new: Nový člen
205 label_member_new: Nový člen
205 label_member_plural: Členové
206 label_member_plural: Členové
206 label_tracker: Fronta
207 label_tracker: Fronta
207 label_tracker_plural: Fronty
208 label_tracker_plural: Fronty
208 label_tracker_new: Nová fronta
209 label_tracker_new: Nová fronta
209 label_workflow: Workflow
210 label_workflow: Workflow
210 label_issue_status: Stav požadavku
211 label_issue_status: Stav požadavku
211 label_issue_status_plural: Stavy požadavku
212 label_issue_status_plural: Stavy požadavku
212 label_issue_status_new: Nový stav
213 label_issue_status_new: Nový stav
213 label_issue_category: Kategorie požadavku
214 label_issue_category: Kategorie požadavku
214 label_issue_category_plural: Kategorie požadavku
215 label_issue_category_plural: Kategorie požadavku
215 label_issue_category_new: Nová kategorie
216 label_issue_category_new: Nová kategorie
216 label_custom_field: Uživatelské pole
217 label_custom_field: Uživatelské pole
217 label_custom_field_plural: Uživatelské pole
218 label_custom_field_plural: Uživatelské pole
218 label_custom_field_new: Nové uživatelské pole
219 label_custom_field_new: Nové uživatelské pole
219 label_enumerations: Číselníky
220 label_enumerations: Číselníky
220 label_enumeration_new: Nová hodnota
221 label_enumeration_new: Nová hodnota
221 label_information: Informace
222 label_information: Informace
222 label_information_plural: Informace
223 label_information_plural: Informace
223 label_please_login: Prosím přihlašte se
224 label_please_login: Prosím přihlašte se
224 label_register: Registrovat
225 label_register: Registrovat
225 label_password_lost: Zapomenuté heslo
226 label_password_lost: Zapomenuté heslo
226 label_home: Úvodní
227 label_home: Úvodní
227 label_my_page: Moje stránka
228 label_my_page: Moje stránka
228 label_my_account: Můj účet
229 label_my_account: Můj účet
229 label_my_projects: Moje projekty
230 label_my_projects: Moje projekty
230 label_administration: Administrace
231 label_administration: Administrace
231 label_login: Přihlášení
232 label_login: Přihlášení
232 label_logout: Odhlášení
233 label_logout: Odhlášení
233 label_help: Nápověda
234 label_help: Nápověda
234 label_reported_issues: Nahlášené požadavky
235 label_reported_issues: Nahlášené požadavky
235 label_assigned_to_me_issues: Moje požadavky
236 label_assigned_to_me_issues: Moje požadavky
236 label_last_login: Poslední přihlášení
237 label_last_login: Poslední přihlášení
237 label_last_updates: Poslední změna
238 label_last_updates: Poslední změna
238 label_last_updates_plural: %d poslední změny
239 label_last_updates_plural: %d poslední změny
239 label_registered_on: Registered on
240 label_registered_on: Registered on
240 label_activity: Aktivita
241 label_activity: Aktivita
241 label_new: Nový
242 label_new: Nový
242 label_logged_as: Přihlášen jako
243 label_logged_as: Přihlášen jako
243 label_environment: Prostředí
244 label_environment: Prostředí
244 label_authentication: Autentifikace
245 label_authentication: Autentifikace
245 label_auth_source: Mód autentifikace
246 label_auth_source: Mód autentifikace
246 label_auth_source_new: Nový mód autentifikace
247 label_auth_source_new: Nový mód autentifikace
247 label_auth_source_plural: Módy autentifikace
248 label_auth_source_plural: Módy autentifikace
248 label_subproject_plural: Podprojekty
249 label_subproject_plural: Podprojekty
249 label_min_max_length: Min - Max délka
250 label_min_max_length: Min - Max délka
250 label_list: Seznam
251 label_list: Seznam
251 label_date: Datum
252 label_date: Datum
252 label_integer: Integer
253 label_integer: Integer
253 label_boolean: Boolean
254 label_boolean: Boolean
254 label_string: Text
255 label_string: Text
255 label_text: Dlouhý text
256 label_text: Dlouhý text
256 label_attribute: Atribut
257 label_attribute: Atribut
257 label_attribute_plural: Atributy
258 label_attribute_plural: Atributy
258 label_download: %d Download
259 label_download: %d Download
259 label_download_plural: %d Downloads
260 label_download_plural: %d Downloads
260 label_no_data: Žádná data k zobrazení
261 label_no_data: Žádná data k zobrazení
261 label_change_status: Změnit stav
262 label_change_status: Změnit stav
262 label_history: Historie
263 label_history: Historie
263 label_attachment: Soubor
264 label_attachment: Soubor
264 label_attachment_new: Nový soubor
265 label_attachment_new: Nový soubor
265 label_attachment_delete: Smazat soubor
266 label_attachment_delete: Smazat soubor
266 label_attachment_plural: Soubory
267 label_attachment_plural: Soubory
267 label_report: Report
268 label_report: Report
268 label_report_plural: Reporty
269 label_report_plural: Reporty
269 label_news: Novinky
270 label_news: Novinky
270 label_news_new: Přidat novinku
271 label_news_new: Přidat novinku
271 label_news_plural: Novinky
272 label_news_plural: Novinky
272 label_news_latest: Poslední novinky
273 label_news_latest: Poslední novinky
273 label_news_view_all: Zobrazit všechny novinky
274 label_news_view_all: Zobrazit všechny novinky
274 label_change_log: Change log
275 label_change_log: Change log
275 label_settings: Nastavení
276 label_settings: Nastavení
276 label_overview: Přehled
277 label_overview: Přehled
277 label_version: Verze
278 label_version: Verze
278 label_version_new: Nová verze
279 label_version_new: Nová verze
279 label_version_plural: Verze
280 label_version_plural: Verze
280 label_confirmation: Potvrzení
281 label_confirmation: Potvrzení
281 label_export_to: Exportovat do
282 label_export_to: Exportovat do
282 label_read: Načítá se...
283 label_read: Načítá se...
283 label_public_projects: Veřejné projekty
284 label_public_projects: Veřejné projekty
284 label_open_issues: otevřený
285 label_open_issues: otevřený
285 label_open_issues_plural: otevřené
286 label_open_issues_plural: otevřené
286 label_closed_issues: uzavřený
287 label_closed_issues: uzavřený
287 label_closed_issues_plural: uzavřené
288 label_closed_issues_plural: uzavřené
288 label_total: Celkem
289 label_total: Celkem
289 label_permissions: Práva
290 label_permissions: Práva
290 label_current_status: Aktuální stav
291 label_current_status: Aktuální stav
291 label_new_statuses_allowed: Nové povolené stavy
292 label_new_statuses_allowed: Nové povolené stavy
292 label_all: vše
293 label_all: vše
293 label_none: nic
294 label_none: nic
294 label_next: Další
295 label_next: Další
295 label_previous: Předchozí
296 label_previous: Předchozí
296 label_used_by: Použito
297 label_used_by: Použito
297 label_details: Detaily
298 label_details: Detaily
298 label_add_note: Přidat poznánku
299 label_add_note: Přidat poznánku
299 label_per_page: Na stránku
300 label_per_page: Na stránku
300 label_calendar: Kalendář
301 label_calendar: Kalendář
301 label_months_from: měsíců od
302 label_months_from: měsíců od
302 label_gantt: Gantův graf
303 label_gantt: Gantův graf
303 label_internal: Interní
304 label_internal: Interní
304 label_last_changes: posledních %d změn
305 label_last_changes: posledních %d změn
305 label_change_view_all: Zobrazit všechny změny
306 label_change_view_all: Zobrazit všechny změny
306 label_personalize_page: Přizpůsobit tuto stránku
307 label_personalize_page: Přizpůsobit tuto stránku
307 label_comment: Komentář
308 label_comment: Komentář
308 label_comment_plural: Komentáře
309 label_comment_plural: Komentáře
309 label_comment_add: Přidat komentáře
310 label_comment_add: Přidat komentáře
310 label_comment_added: Komentář přidán
311 label_comment_added: Komentář přidán
311 label_comment_delete: Smazat komentář
312 label_comment_delete: Smazat komentář
312 label_query: Uživatelský dotaz
313 label_query: Uživatelský dotaz
313 label_query_plural: Uživatelské dotazy
314 label_query_plural: Uživatelské dotazy
314 label_query_new: Nový dotaz
315 label_query_new: Nový dotaz
315 label_filter_add: Přidat filtr
316 label_filter_add: Přidat filtr
316 label_filter_plural: Filtry
317 label_filter_plural: Filtry
317 label_equals: je
318 label_equals: je
318 label_not_equals: není
319 label_not_equals: není
319 label_in_less_than: je měší než
320 label_in_less_than: je měší než
320 label_in_more_than: je větší než
321 label_in_more_than: je větší než
321 label_in: v
322 label_in: v
322 label_today: dnes
323 label_today: dnes
323 label_this_week: tento týden
324 label_this_week: tento týden
324 label_less_than_ago: před méně jak (dny)
325 label_less_than_ago: před méně jak (dny)
325 label_more_than_ago: před více jak (dny)
326 label_more_than_ago: před více jak (dny)
326 label_ago: před (dny)
327 label_ago: před (dny)
327 label_contains: obsahuje
328 label_contains: obsahuje
328 label_not_contains: neobsahuje
329 label_not_contains: neobsahuje
329 label_day_plural: dny
330 label_day_plural: dny
330 label_repository: Repository
331 label_repository: Repository
331 label_browse: Procházet
332 label_browse: Procházet
332 label_modification: %d změna
333 label_modification: %d změna
333 label_modification_plural: %d změn
334 label_modification_plural: %d změn
334 label_revision: Revize
335 label_revision: Revize
335 label_revision_plural: Revizí
336 label_revision_plural: Revizí
336 label_added: přidáno
337 label_added: přidáno
337 label_modified: změněno
338 label_modified: změněno
338 label_deleted: smazáno
339 label_deleted: smazáno
339 label_latest_revision: Poslední revize
340 label_latest_revision: Poslední revize
340 label_latest_revision_plural: Poslední revize
341 label_latest_revision_plural: Poslední revize
341 label_view_revisions: Zobrazit revize
342 label_view_revisions: Zobrazit revize
342 label_max_size: Maximální velikost
343 label_max_size: Maximální velikost
343 label_on: 'on'
344 label_on: 'on'
344 label_sort_highest: Posunout na vrchol
345 label_sort_highest: Posunout na vrchol
345 label_sort_higher: Posunout nahoru
346 label_sort_higher: Posunout nahoru
346 label_sort_lower: Posunout dolů
347 label_sort_lower: Posunout dolů
347 label_sort_lowest: Posunout dospod
348 label_sort_lowest: Posunout dospod
348 label_roadmap: Plán
349 label_roadmap: Plán
349 label_roadmap_due_in: Due in
350 label_roadmap_due_in: Due in
350 label_roadmap_overdue: %s pozdě
351 label_roadmap_overdue: %s pozdě
351 label_roadmap_no_issues: Pro tuto verzi nejsou žádné požadavky
352 label_roadmap_no_issues: Pro tuto verzi nejsou žádné požadavky
352 label_search: Hledej
353 label_search: Hledej
353 label_result_plural: Výsledky
354 label_result_plural: Výsledky
354 label_all_words: Všechna slova
355 label_all_words: Všechna slova
355 label_wiki: Wiki
356 label_wiki: Wiki
356 label_wiki_edit: Wiki úprava
357 label_wiki_edit: Wiki úprava
357 label_wiki_edit_plural: Wiki úpravy
358 label_wiki_edit_plural: Wiki úpravy
358 label_wiki_page: Wiki stránka
359 label_wiki_page: Wiki stránka
359 label_wiki_page_plural: Wiki stránky
360 label_wiki_page_plural: Wiki stránky
360 label_index_by_title: Rejstřík
361 label_index_by_title: Rejstřík
361 label_index_by_date: Index by date
362 label_index_by_date: Index by date
362 label_current_version: Aktuální verze
363 label_current_version: Aktuální verze
363 label_preview: Náhled
364 label_preview: Náhled
364 label_feed_plural: Feeds
365 label_feed_plural: Feeds
365 label_changes_details: Detail všech změn
366 label_changes_details: Detail všech změn
366 label_issue_tracking: Sledování požadavků
367 label_issue_tracking: Sledování požadavků
367 label_spent_time: Strávený čas
368 label_spent_time: Strávený čas
368 label_f_hour: %.2f hodina
369 label_f_hour: %.2f hodina
369 label_f_hour_plural: %.2f hodin
370 label_f_hour_plural: %.2f hodin
370 label_time_tracking: Sledování času
371 label_time_tracking: Sledování času
371 label_change_plural: Změny
372 label_change_plural: Změny
372 label_statistics: Statistika
373 label_statistics: Statistika
373 label_commits_per_month: Pořízení za měsíc
374 label_commits_per_month: Pořízení za měsíc
374 label_commits_per_author: Pořízení za autora
375 label_commits_per_author: Pořízení za autora
375 label_view_diff: Zobrazit rozdíly
376 label_view_diff: Zobrazit rozdíly
376 label_diff_inline: uvnitř
377 label_diff_inline: uvnitř
377 label_diff_side_by_side: vedle sebe
378 label_diff_side_by_side: vedle sebe
378 label_options: Nastavení
379 label_options: Nastavení
379 label_copy_workflow_from: Kopírovat workflow z
380 label_copy_workflow_from: Kopírovat workflow z
380 label_permissions_report: Opis práv
381 label_permissions_report: Opis práv
381 label_watched_issues: Prohlédnuté požadavky
382 label_watched_issues: Prohlédnuté požadavky
382 label_related_issues: Vztažené požadavky
383 label_related_issues: Vztažené požadavky
383 label_applied_status: Použitý stav
384 label_applied_status: Použitý stav
384 label_loading: Nahrávám...
385 label_loading: Nahrávám...
385 label_relation_new: Nový vztah
386 label_relation_new: Nový vztah
386 label_relation_delete: Smazat vztah
387 label_relation_delete: Smazat vztah
387 label_relates_to: vztažený k
388 label_relates_to: vztažený k
388 label_duplicates: duplicity
389 label_duplicates: duplicity
389 label_blocks: zámků
390 label_blocks: zámků
390 label_blocked_by: zamčeno
391 label_blocked_by: zamčeno
391 label_precedes: předchází
392 label_precedes: předchází
392 label_follows: následuje
393 label_follows: následuje
393 label_end_to_start: od konce do začátku
394 label_end_to_start: od konce do začátku
394 label_end_to_end: od konce do konce
395 label_end_to_end: od konce do konce
395 label_start_to_start: od začátku do začátku
396 label_start_to_start: od začátku do začátku
396 label_start_to_end: od začátku do konce
397 label_start_to_end: od začátku do konce
397 label_stay_logged_in: Zůstat přihlášený
398 label_stay_logged_in: Zůstat přihlášený
398 label_disabled: zakázáno
399 label_disabled: zakázáno
399 label_show_completed_versions: Ukaž dokončené verze
400 label_show_completed_versions: Ukaž dokončené verze
400 label_me:
401 label_me:
401 label_board: Fórum
402 label_board: Fórum
402 label_board_new: Nové fórum
403 label_board_new: Nové fórum
403 label_board_plural: Fora
404 label_board_plural: Fora
404 label_topic_plural: Témata
405 label_topic_plural: Témata
405 label_message_plural: Zprávy
406 label_message_plural: Zprávy
406 label_message_last: Poslední zpráva
407 label_message_last: Poslední zpráva
407 label_message_new: Nové zprávy
408 label_message_new: Nové zprávy
408 label_reply_plural: Odpovědi
409 label_reply_plural: Odpovědi
409 label_send_information: Zaslat informace o účtu uživateli
410 label_send_information: Zaslat informace o účtu uživateli
410 label_year: Rok
411 label_year: Rok
411 label_month: Měsíc
412 label_month: Měsíc
412 label_week: Týden
413 label_week: Týden
413 label_date_from: Od
414 label_date_from: Od
414 label_date_to: Do
415 label_date_to: Do
415 label_language_based: Language based
416 label_language_based: Language based
416 label_sort_by: Seřadit podle %s
417 label_sort_by: Seřadit podle %s
417 label_send_test_email: Poslat testovací email
418 label_send_test_email: Poslat testovací email
418 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
419 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
419
420
420 button_login: Přihlásit
421 button_login: Přihlásit
421 button_submit: Potvrdit
422 button_submit: Potvrdit
422 button_save: Uložit
423 button_save: Uložit
423 button_check_all: Zašrtnout vše
424 button_check_all: Zašrtnout vše
424 button_uncheck_all: Odšrtnout vše
425 button_uncheck_all: Odšrtnout vše
425 button_delete: Smazat
426 button_delete: Smazat
426 button_create: Vytvořit
427 button_create: Vytvořit
427 button_test: Test
428 button_test: Test
428 button_edit: Upravit
429 button_edit: Upravit
429 button_add: Přidat
430 button_add: Přidat
430 button_change: Změnit
431 button_change: Změnit
431 button_apply: Použít
432 button_apply: Použít
432 button_clear: Odstranit
433 button_clear: Odstranit
433 button_lock: Zamknout
434 button_lock: Zamknout
434 button_unlock: Odemknout
435 button_unlock: Odemknout
435 button_download: Stáhnout
436 button_download: Stáhnout
436 button_list: Vypsat
437 button_list: Vypsat
437 button_view: Zobrazit
438 button_view: Zobrazit
438 button_move: Přesunout
439 button_move: Přesunout
439 button_back: Zpět
440 button_back: Zpět
440 button_cancel: Storno
441 button_cancel: Storno
441 button_activate: Activovat
442 button_activate: Activovat
442 button_sort: Seřadit
443 button_sort: Seřadit
443 button_log_time: Čas přihlášení
444 button_log_time: Čas přihlášení
444 button_rollback: Zpět k této verzi
445 button_rollback: Zpět k této verzi
445 button_watch: Sledovat
446 button_watch: Sledovat
446 button_unwatch: Unwatch
447 button_unwatch: Unwatch
447 button_reply: Odpovědět
448 button_reply: Odpovědět
448 button_archive: Archivovat
449 button_archive: Archivovat
449 button_unarchive: Odarchivovat
450 button_unarchive: Odarchivovat
450 button_reset: Reset
451 button_reset: Reset
451
452
452 status_active: aktivní
453 status_active: aktivní
453 status_registered: registrovaný
454 status_registered: registrovaný
454 status_locked: uzamčený
455 status_locked: uzamčený
455
456
456 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
457 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
457 text_regexp_info: např. ^[A-Z0-9]+$
458 text_regexp_info: např. ^[A-Z0-9]+$
458 text_min_max_length_info: 0 znamená bez limitu
459 text_min_max_length_info: 0 znamená bez limitu
459 text_project_destroy_confirmation: Jste si jistí, že chcete smazat tento projekt a všechna související data ?
460 text_project_destroy_confirmation: Jste si jistí, že chcete smazat tento projekt a všechna související data ?
460 text_workflow_edit: Vyberte roli a frontu k editaci workflow
461 text_workflow_edit: Vyberte roli a frontu k editaci workflow
461 text_are_you_sure: Jste si jist ?
462 text_are_you_sure: Jste si jist ?
462 text_journal_changed: změněno z %s na %s
463 text_journal_changed: změněno z %s na %s
463 text_journal_set_to: nastaveno na %s
464 text_journal_set_to: nastaveno na %s
464 text_journal_deleted: smazáno
465 text_journal_deleted: smazáno
465 text_tip_task_begin_day: úkol začíná v tento den
466 text_tip_task_begin_day: úkol začíná v tento den
466 text_tip_task_end_day: úkol končí v tento den
467 text_tip_task_end_day: úkol končí v tento den
467 text_tip_task_begin_end_day: úkol začíná a končí v tento den
468 text_tip_task_begin_end_day: úkol začíná a končí v tento den
468 text_project_identifier_info: 'Jsou povolena malá písmena (a-z), čísla a pomlčky.<br />Po uložení již není možné identifikátor změnit.'
469 text_project_identifier_info: 'Jsou povolena malá písmena (a-z), čísla a pomlčky.<br />Po uložení již není možné identifikátor změnit.'
469 text_caracters_maximum: %d znaků maximálně.
470 text_caracters_maximum: %d znaků maximálně.
470 text_length_between: Délka mezi %d a %d znaky.
471 text_length_between: Délka mezi %d a %d znaky.
471 text_tracker_no_workflow: Pro tuto frontu není definováno žádné workflow
472 text_tracker_no_workflow: Pro tuto frontu není definováno žádné workflow
472 text_unallowed_characters: Nepovolené znaky
473 text_unallowed_characters: Nepovolené znaky
473 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
474 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
474 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
475 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
475
476
476 default_role_manager: Manažer
477 default_role_manager: Manažer
477 default_role_developper: Agent
478 default_role_developper: Agent
478 default_role_reporter: Reporter
479 default_role_reporter: Reporter
479 default_tracker_bug: Reklamace
480 default_tracker_bug: Reklamace
480 default_tracker_feature: Vlastnost
481 default_tracker_feature: Vlastnost
481 default_tracker_support: Požadavek
482 default_tracker_support: Požadavek
482 default_issue_status_new: Nový
483 default_issue_status_new: Nový
483 default_issue_status_assigned: Přiřazený
484 default_issue_status_assigned: Přiřazený
484 default_issue_status_resolved: Vyřešený
485 default_issue_status_resolved: Vyřešený
485 default_issue_status_feedback: Čeká se
486 default_issue_status_feedback: Čeká se
486 default_issue_status_closed: Uzavřený
487 default_issue_status_closed: Uzavřený
487 default_issue_status_rejected: Odmítnutý
488 default_issue_status_rejected: Odmítnutý
488 default_doc_category_user: Uživatelská dokumentace
489 default_doc_category_user: Uživatelská dokumentace
489 default_doc_category_tech: Technická dokumentace
490 default_doc_category_tech: Technická dokumentace
490 default_priority_low: Nízká
491 default_priority_low: Nízká
491 default_priority_normal: Normální
492 default_priority_normal: Normální
492 default_priority_high: Vysoká
493 default_priority_high: Vysoká
493 default_priority_urgent: Urgentní
494 default_priority_urgent: Urgentní
494 default_priority_immediate: Bezodkladné
495 default_priority_immediate: Bezodkladné
495 default_activity_design: Návrh
496 default_activity_design: Návrh
496 default_activity_development: Vývoj
497 default_activity_development: Vývoj
497
498
498 enumeration_issue_priorities: Priority požadavků
499 enumeration_issue_priorities: Priority požadavků
499 enumeration_doc_categories: Kategorie dokumentů
500 enumeration_doc_categories: Kategorie dokumentů
500 enumeration_activities: Aktivity (sledování času)
501 enumeration_activities: Aktivity (sledování času)
501 button_rename: Rename
502 button_rename: Rename
502 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
503 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
503 label_module_plural: Modules
504 label_module_plural: Modules
504 label_jump_to_a_project: Jump to a project...
505 label_jump_to_a_project: Jump to a project...
505 text_issue_updated: Issue %s has been updated.
506 text_issue_updated: Issue %s has been updated.
506 field_redirect_existing_links: Redirect existing links
507 field_redirect_existing_links: Redirect existing links
507 text_issue_category_reassign_to: Reassing issues to this category
508 text_issue_category_reassign_to: Reassing issues to this category
508 text_issue_added: Issue %s has been reported.
509 text_issue_added: Issue %s has been reported.
509 label_file_plural: Files
510 label_file_plural: Files
510 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
511 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
511 label_updated_time: Updated %s ago
512 label_updated_time: Updated %s ago
512 text_issue_category_destroy_assignments: Remove category assignments
513 text_issue_category_destroy_assignments: Remove category assignments
513 label_added_time_by: Added by %s %s ago
514 label_added_time_by: Added by %s %s ago
514 field_estimated_hours: Estimated time
515 field_estimated_hours: Estimated time
515 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
516 field_column_names: Columns
517 field_column_names: Columns
517 label_default_columns: Default columns
518 label_default_columns: Default columns
518 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_repositories_encodings: Repositories encodings
520 setting_repositories_encodings: Repositories encodings
520 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_no_change_option: (No change)
523 label_no_change_option: (No change)
523 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 label_theme: Theme
525 label_theme: Theme
525 label_default: Default
526 label_default: Default
526 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
527 label_nobody: nobody
528 label_nobody: nobody
528 button_change_password: Change password
529 button_change_password: Change password
529 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 setting_emails_footer: Emails footer
534 setting_emails_footer: Emails footer
534 label_float: Float
535 label_float: Float
535 button_copy: Copy
536 button_copy: Copy
536 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information: Your Redmine account information
538 mail_body_account_information: Your Redmine account information
538 setting_protocol: Protocol
539 setting_protocol: Protocol
539 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 setting_time_format: Time format
541 setting_time_format: Time format
541 label_registration_activation_by_email: account activation by email
542 label_registration_activation_by_email: account activation by email
542 mail_subject_account_activation_request: Redmine account activation request
543 mail_subject_account_activation_request: Redmine account activation request
543 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 label_registration_automatic_activation: automatic account activation
545 label_registration_automatic_activation: automatic account activation
545 label_registration_manual_activation: manual account activation
546 label_registration_manual_activation: manual account activation
546 notice_account_pending: "Your account was created and is now pending administrator approval."
547 notice_account_pending: "Your account was created and is now pending administrator approval."
547 field_time_zone: Time zone
548 field_time_zone: Time zone
548 text_caracters_minimum: Must be at least %d characters long.
549 text_caracters_minimum: Must be at least %d characters long.
549 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 button_annotate: Annotate
551 button_annotate: Annotate
551 label_issues_by: Issues by %s
552 label_issues_by: Issues by %s
552 field_searchable: Searchable
553 field_searchable: Searchable
553 label_display_per_page: 'Per page: %s'
554 label_display_per_page: 'Per page: %s'
554 setting_per_page_options: Objects per page options
555 setting_per_page_options: Objects per page options
555 label_age: Age
556 label_age: Age
556 notice_default_data_loaded: Default configuration successfully loaded.
557 notice_default_data_loaded: Default configuration successfully loaded.
557 text_load_default_configuration: Load the default configuration
558 text_load_default_configuration: Load the default configuration
558 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 button_update: Update
561 button_update: Update
561 label_change_properties: Change properties
562 label_change_properties: Change properties
562 label_general: General
563 label_general: General
563 label_repository_plural: Repositories
564 label_repository_plural: Repositories
564 label_associated_revisions: Associated revisions
565 label_associated_revisions: Associated revisions
@@ -1,564 +1,565
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 Tag
8 actionview_datehelper_time_in_words_day: 1 Tag
9 actionview_datehelper_time_in_words_day_plural: %d Tagen
9 actionview_datehelper_time_in_words_day_plural: %d Tagen
10 actionview_datehelper_time_in_words_hour_about: ungefähr einer Stunde
10 actionview_datehelper_time_in_words_hour_about: ungefähr einer Stunde
11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
12 actionview_datehelper_time_in_words_hour_about_single: ungefähr einer Stunde
12 actionview_datehelper_time_in_words_hour_about_single: ungefähr einer Stunde
13 actionview_datehelper_time_in_words_minute: 1 Minute
13 actionview_datehelper_time_in_words_minute: 1 Minute
14 actionview_datehelper_time_in_words_minute_half: einer halben Minute
14 actionview_datehelper_time_in_words_minute_half: einer halben Minute
15 actionview_datehelper_time_in_words_minute_less_than: weniger als einer Minute
15 actionview_datehelper_time_in_words_minute_less_than: weniger als einer Minute
16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
17 actionview_datehelper_time_in_words_minute_single: 1 Minute
17 actionview_datehelper_time_in_words_minute_single: 1 Minute
18 actionview_datehelper_time_in_words_second_less_than: weniger als einer Sekunde
18 actionview_datehelper_time_in_words_second_less_than: weniger als einer Sekunde
19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
20 actionview_instancetag_blank_option: Bitte auswählen
20 actionview_instancetag_blank_option: Bitte auswählen
21
21
22 activerecord_error_inclusion: ist nicht inbegriffen
22 activerecord_error_inclusion: ist nicht inbegriffen
23 activerecord_error_exclusion: ist reserviert
23 activerecord_error_exclusion: ist reserviert
24 activerecord_error_invalid: ist unzulässig
24 activerecord_error_invalid: ist unzulässig
25 activerecord_error_confirmation: Bestätigung nötig
25 activerecord_error_confirmation: Bestätigung nötig
26 activerecord_error_accepted: muss angenommen werden
26 activerecord_error_accepted: muss angenommen werden
27 activerecord_error_empty: darf nicht leer sein
27 activerecord_error_empty: darf nicht leer sein
28 activerecord_error_blank: darf nicht leer sein
28 activerecord_error_blank: darf nicht leer sein
29 activerecord_error_too_long: ist zu lang
29 activerecord_error_too_long: ist zu lang
30 activerecord_error_too_short: ist zu kurz
30 activerecord_error_too_short: ist zu kurz
31 activerecord_error_wrong_length: hat die falsche Länge
31 activerecord_error_wrong_length: hat die falsche Länge
32 activerecord_error_taken: ist bereits vergeben
32 activerecord_error_taken: ist bereits vergeben
33 activerecord_error_not_a_number: ist keine Zahl
33 activerecord_error_not_a_number: ist keine Zahl
34 activerecord_error_not_a_date: ist kein gültiges Datum
34 activerecord_error_not_a_date: ist kein gültiges Datum
35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
36 activerecord_error_not_same_project: gehört nicht zum selben Projekt
36 activerecord_error_not_same_project: gehört nicht zum selben Projekt
37 activerecord_error_circular_dependency: Diese Beziehung würde eine zyklische Abhängigkeit erzeugen
37 activerecord_error_circular_dependency: Diese Beziehung würde eine zyklische Abhängigkeit erzeugen
38
38
39 general_fmt_age: %d Jahr
39 general_fmt_age: %d Jahr
40 general_fmt_age_plural: %d Jahre
40 general_fmt_age_plural: %d Jahre
41 general_fmt_date: %%d.%%m.%%y
41 general_fmt_date: %%d.%%m.%%y
42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Nein'
45 general_text_No: 'Nein'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nein'
47 general_text_no: 'nein'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Deutsch'
49 general_lang_name: 'Deutsch'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
53 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Konto wurde erfolgreich aktualisiert.
56 notice_account_updated: Konto wurde erfolgreich aktualisiert.
57 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
57 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
58 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
58 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
59 notice_account_wrong_password: Falsches Kennwort
59 notice_account_wrong_password: Falsches Kennwort
60 notice_account_register_done: Konto wurde erfolgreich angelegt.
60 notice_account_register_done: Konto wurde erfolgreich angelegt.
61 notice_account_unknown_email: Unbekannter Benutzer.
61 notice_account_unknown_email: Unbekannter Benutzer.
62 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
62 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
63 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
63 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
64 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
64 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
65 notice_successful_create: Erfolgreich angelegt
65 notice_successful_create: Erfolgreich angelegt
66 notice_successful_update: Erfolgreich aktualisiert.
66 notice_successful_update: Erfolgreich aktualisiert.
67 notice_successful_delete: Erfolgreich gelöscht.
67 notice_successful_delete: Erfolgreich gelöscht.
68 notice_successful_connection: Verbindung erfolgreich.
68 notice_successful_connection: Verbindung erfolgreich.
69 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
69 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
70 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
70 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
71 notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv.
71 notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv.
72 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
72 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
73 notice_email_sent: Eine E-Mail wurde an %s gesendet.
73 notice_email_sent: Eine E-Mail wurde an %s gesendet.
74 notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s).
74 notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s).
75 notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt.
75 notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt.
76
76
77 mail_subject_lost_password: Ihr Redmine-Kennwort
77 mail_subject_lost_password: Ihr Redmine-Kennwort
78 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
78 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
79 mail_subject_register: Redmine Kontoaktivierung
79 mail_subject_register: Redmine Kontoaktivierung
80 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
80 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
81
81
82 gui_validation_error: 1 Fehler
82 gui_validation_error: 1 Fehler
83 gui_validation_error_plural: %d Fehler
83 gui_validation_error_plural: %d Fehler
84
84
85 field_name: Name
85 field_name: Name
86 field_description: Beschreibung
86 field_description: Beschreibung
87 field_summary: Zusammenfassung
87 field_summary: Zusammenfassung
88 field_is_required: Erforderlich
88 field_is_required: Erforderlich
89 field_firstname: Vorname
89 field_firstname: Vorname
90 field_lastname: Nachname
90 field_lastname: Nachname
91 field_mail: E-Mail
91 field_mail: E-Mail
92 field_filename: Datei
92 field_filename: Datei
93 field_filesize: Größe
93 field_filesize: Größe
94 field_downloads: Downloads
94 field_downloads: Downloads
95 field_author: Autor
95 field_author: Autor
96 field_created_on: Angelegt
96 field_created_on: Angelegt
97 field_updated_on: Aktualisiert
97 field_updated_on: Aktualisiert
98 field_field_format: Format
98 field_field_format: Format
99 field_is_for_all: Für alle Projekte
99 field_is_for_all: Für alle Projekte
100 field_possible_values: Mögliche Werte
100 field_possible_values: Mögliche Werte
101 field_regexp: Regulärer Ausdruck
101 field_regexp: Regulärer Ausdruck
102 field_min_length: Minimale Länge
102 field_min_length: Minimale Länge
103 field_max_length: Maximale Länge
103 field_max_length: Maximale Länge
104 field_value: Wert
104 field_value: Wert
105 field_category: Kategorie
105 field_category: Kategorie
106 field_title: Titel
106 field_title: Titel
107 field_project: Projekt
107 field_project: Projekt
108 field_issue: Ticket
108 field_issue: Ticket
109 field_status: Status
109 field_status: Status
110 field_notes: Kommentare
110 field_notes: Kommentare
111 field_is_closed: Problem erledigt
111 field_is_closed: Problem erledigt
112 field_is_default: Default
112 field_is_default: Default
113 field_tracker: Tracker
113 field_tracker: Tracker
114 field_subject: Thema
114 field_subject: Thema
115 field_due_date: Abgabedatum
115 field_due_date: Abgabedatum
116 field_assigned_to: Zugewiesen an
116 field_assigned_to: Zugewiesen an
117 field_priority: Priorität
117 field_priority: Priorität
118 field_fixed_version: Erledigt in Version
118 field_fixed_version: Erledigt in Version
119 field_user: Benutzer
119 field_user: Benutzer
120 field_role: Rolle
120 field_role: Rolle
121 field_homepage: Startseite
121 field_homepage: Startseite
122 field_is_public: Öffentlich
122 field_is_public: Öffentlich
123 field_parent: Unterprojekt von
123 field_parent: Unterprojekt von
124 field_is_in_chlog: Ansicht im Change-Log
124 field_is_in_chlog: Ansicht im Change-Log
125 field_is_in_roadmap: Ansicht in der Roadmap
125 field_is_in_roadmap: Ansicht in der Roadmap
126 field_login: Mitgliedsname
126 field_login: Mitgliedsname
127 field_mail_notification: Mailbenachrichtigung
127 field_mail_notification: Mailbenachrichtigung
128 field_admin: Administrator
128 field_admin: Administrator
129 field_last_login_on: Letzte Anmeldung
129 field_last_login_on: Letzte Anmeldung
130 field_language: Sprache
130 field_language: Sprache
131 field_effective_date: Datum
131 field_effective_date: Datum
132 field_password: Kennwort
132 field_password: Kennwort
133 field_new_password: Neues Kennwort
133 field_new_password: Neues Kennwort
134 field_password_confirmation: Bestätigung
134 field_password_confirmation: Bestätigung
135 field_version: Version
135 field_version: Version
136 field_type: Typ
136 field_type: Typ
137 field_host: Host
137 field_host: Host
138 field_port: Port
138 field_port: Port
139 field_account: Konto
139 field_account: Konto
140 field_base_dn: Base DN
140 field_base_dn: Base DN
141 field_attr_login: Mitgliedsname-Attribut
141 field_attr_login: Mitgliedsname-Attribut
142 field_attr_firstname: Vorname-Attribut
142 field_attr_firstname: Vorname-Attribut
143 field_attr_lastname: Name-Attribut
143 field_attr_lastname: Name-Attribut
144 field_attr_mail: E-Mail-Attribut
144 field_attr_mail: E-Mail-Attribut
145 field_onthefly: On-the-fly-Benutzererstellung
145 field_onthefly: On-the-fly-Benutzererstellung
146 field_start_date: Beginn
146 field_start_date: Beginn
147 field_done_ratio: %% erledigt
147 field_done_ratio: %% erledigt
148 field_auth_source: Authentifizierungs-Modus
148 field_auth_source: Authentifizierungs-Modus
149 field_hide_mail: E-Mail-Adresse nicht anzeigen
149 field_hide_mail: E-Mail-Adresse nicht anzeigen
150 field_comments: Kommentar
150 field_comments: Kommentar
151 field_url: URL
151 field_url: URL
152 field_start_page: Hauptseite
152 field_start_page: Hauptseite
153 field_subproject: Subprojekt von
153 field_subproject: Subprojekt von
154 field_hours: Stunden
154 field_hours: Stunden
155 field_activity: Aktivität
155 field_activity: Aktivität
156 field_spent_on: Datum
156 field_spent_on: Datum
157 field_identifier: Kennung
157 field_identifier: Kennung
158 field_is_filter: Als Fiter benutzen
158 field_is_filter: Als Fiter benutzen
159 field_issue_to_id: Zugehöriges Ticket
159 field_issue_to_id: Zugehöriges Ticket
160 field_delay: Pufferzeit
160 field_delay: Pufferzeit
161 field_assignable: Tickets können dieser Rolle zugewiesen werden
161 field_assignable: Tickets können dieser Rolle zugewiesen werden
162 field_redirect_existing_links: Existierende Links umleiten
162 field_redirect_existing_links: Existierende Links umleiten
163 field_estimated_hours: Geschätzter Aufwand
163 field_estimated_hours: Geschätzter Aufwand
164 field_default_value: Default
164
165
165 setting_app_title: Applikations-Titel
166 setting_app_title: Applikations-Titel
166 setting_app_subtitle: Applikations-Untertitel
167 setting_app_subtitle: Applikations-Untertitel
167 setting_welcome_text: Willkommenstext
168 setting_welcome_text: Willkommenstext
168 setting_default_language: Default-Sprache
169 setting_default_language: Default-Sprache
169 setting_login_required: Authentisierung erforderlich
170 setting_login_required: Authentisierung erforderlich
170 setting_self_registration: Anmeldung ermöglicht
171 setting_self_registration: Anmeldung ermöglicht
171 setting_attachment_max_size: Max. Dateigröße
172 setting_attachment_max_size: Max. Dateigröße
172 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
173 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
173 setting_mail_from: E-Mail-Absender
174 setting_mail_from: E-Mail-Absender
174 setting_host_name: Hostname
175 setting_host_name: Hostname
175 setting_text_formatting: Textformatierung
176 setting_text_formatting: Textformatierung
176 setting_wiki_compression: Wiki-Historie komprimieren
177 setting_wiki_compression: Wiki-Historie komprimieren
177 setting_feeds_limit: Feed-Inhalt begrenzen
178 setting_feeds_limit: Feed-Inhalt begrenzen
178 setting_autofetch_changesets: Commits automatisch abrufen
179 setting_autofetch_changesets: Commits automatisch abrufen
179 setting_sys_api_enabled: Webservice für Repository-Verwaltung benutzen
180 setting_sys_api_enabled: Webservice für Repository-Verwaltung benutzen
180 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
181 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
181 setting_commit_fix_keywords: Schlüsselwörter (Status)
182 setting_commit_fix_keywords: Schlüsselwörter (Status)
182 setting_autologin: Automatische Anmeldung
183 setting_autologin: Automatische Anmeldung
183 setting_date_format: Datumsformat
184 setting_date_format: Datumsformat
184 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
185 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
185
186
186 label_user: Benutzer
187 label_user: Benutzer
187 label_user_plural: Benutzer
188 label_user_plural: Benutzer
188 label_user_new: Neuer Benutzer
189 label_user_new: Neuer Benutzer
189 label_project: Projekt
190 label_project: Projekt
190 label_project_new: Neues Projekt
191 label_project_new: Neues Projekt
191 label_project_plural: Projekte
192 label_project_plural: Projekte
192 label_project_all: Alle Projekte
193 label_project_all: Alle Projekte
193 label_project_latest: Neueste Projekte
194 label_project_latest: Neueste Projekte
194 label_issue: Ticket
195 label_issue: Ticket
195 label_issue_new: Neues Ticket
196 label_issue_new: Neues Ticket
196 label_issue_plural: Tickets
197 label_issue_plural: Tickets
197 label_issue_view_all: Alle Tickets ansehen
198 label_issue_view_all: Alle Tickets ansehen
198 label_document: Dokument
199 label_document: Dokument
199 label_document_new: Neues Dokument
200 label_document_new: Neues Dokument
200 label_document_plural: Dokumente
201 label_document_plural: Dokumente
201 label_role: Rolle
202 label_role: Rolle
202 label_role_plural: Rollen
203 label_role_plural: Rollen
203 label_role_new: Neue Rolle
204 label_role_new: Neue Rolle
204 label_role_and_permissions: Rollen und Rechte
205 label_role_and_permissions: Rollen und Rechte
205 label_member: Mitglied
206 label_member: Mitglied
206 label_member_new: Neues Mitglied
207 label_member_new: Neues Mitglied
207 label_member_plural: Mitglieder
208 label_member_plural: Mitglieder
208 label_tracker: Tracker
209 label_tracker: Tracker
209 label_tracker_plural: Tracker
210 label_tracker_plural: Tracker
210 label_tracker_new: Neuer Tracker
211 label_tracker_new: Neuer Tracker
211 label_workflow: Workflow
212 label_workflow: Workflow
212 label_issue_status: Ticket-Status
213 label_issue_status: Ticket-Status
213 label_issue_status_plural: Ticket-Status
214 label_issue_status_plural: Ticket-Status
214 label_issue_status_new: Neuer Status
215 label_issue_status_new: Neuer Status
215 label_issue_category: Ticket-Kategorie
216 label_issue_category: Ticket-Kategorie
216 label_issue_category_plural: Ticket-Kategorien
217 label_issue_category_plural: Ticket-Kategorien
217 label_issue_category_new: Neue Kategorie
218 label_issue_category_new: Neue Kategorie
218 label_custom_field: Benutzerdefiniertes Feld
219 label_custom_field: Benutzerdefiniertes Feld
219 label_custom_field_plural: Benutzerdefinierte Felder
220 label_custom_field_plural: Benutzerdefinierte Felder
220 label_custom_field_new: Neues Feld
221 label_custom_field_new: Neues Feld
221 label_enumerations: Aufzählungen
222 label_enumerations: Aufzählungen
222 label_enumeration_new: Neuer Wert
223 label_enumeration_new: Neuer Wert
223 label_information: Information
224 label_information: Information
224 label_information_plural: Informationen
225 label_information_plural: Informationen
225 label_please_login: Anmelden
226 label_please_login: Anmelden
226 label_register: Registrieren
227 label_register: Registrieren
227 label_password_lost: Kennwort vergessen
228 label_password_lost: Kennwort vergessen
228 label_home: Hauptseite
229 label_home: Hauptseite
229 label_my_page: Meine Seite
230 label_my_page: Meine Seite
230 label_my_account: Mein Konto
231 label_my_account: Mein Konto
231 label_my_projects: Meine Projekte
232 label_my_projects: Meine Projekte
232 label_administration: Administration
233 label_administration: Administration
233 label_login: Anmelden
234 label_login: Anmelden
234 label_logout: Abmelden
235 label_logout: Abmelden
235 label_help: Hilfe
236 label_help: Hilfe
236 label_reported_issues: Gemeldete Tickets
237 label_reported_issues: Gemeldete Tickets
237 label_assigned_to_me_issues: Mir zugewiesen
238 label_assigned_to_me_issues: Mir zugewiesen
238 label_last_login: Letzte Anmeldung
239 label_last_login: Letzte Anmeldung
239 label_last_updates: zuletzt aktualisiert
240 label_last_updates: zuletzt aktualisiert
240 label_last_updates_plural: %d zuletzt aktualisierten
241 label_last_updates_plural: %d zuletzt aktualisierten
241 label_registered_on: Angemeldet am
242 label_registered_on: Angemeldet am
242 label_activity: Aktivität
243 label_activity: Aktivität
243 label_new: Neu
244 label_new: Neu
244 label_logged_as: Angemeldet als
245 label_logged_as: Angemeldet als
245 label_environment: Environment
246 label_environment: Environment
246 label_authentication: Authentifizierung
247 label_authentication: Authentifizierung
247 label_auth_source: Authentifizierungs-Modus
248 label_auth_source: Authentifizierungs-Modus
248 label_auth_source_new: Neuer Authentifizierungs-Modus
249 label_auth_source_new: Neuer Authentifizierungs-Modus
249 label_auth_source_plural: Authentifizierungs-Arten
250 label_auth_source_plural: Authentifizierungs-Arten
250 label_subproject_plural: Unterprojekte
251 label_subproject_plural: Unterprojekte
251 label_min_max_length: Länge (Min. - Max.)
252 label_min_max_length: Länge (Min. - Max.)
252 label_list: Liste
253 label_list: Liste
253 label_date: Datum
254 label_date: Datum
254 label_integer: Zahl
255 label_integer: Zahl
255 label_boolean: Boolean
256 label_boolean: Boolean
256 label_string: Text
257 label_string: Text
257 label_text: Langer Text
258 label_text: Langer Text
258 label_attribute: Attribut
259 label_attribute: Attribut
259 label_attribute_plural: Attribute
260 label_attribute_plural: Attribute
260 label_download: %d Download
261 label_download: %d Download
261 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
262 label_no_data: Nichts anzuzeigen
263 label_no_data: Nichts anzuzeigen
263 label_change_status: Statuswechsel
264 label_change_status: Statuswechsel
264 label_history: Historie
265 label_history: Historie
265 label_attachment: Datei
266 label_attachment: Datei
266 label_attachment_new: Neue Datei
267 label_attachment_new: Neue Datei
267 label_attachment_delete: Anhang löschen
268 label_attachment_delete: Anhang löschen
268 label_attachment_plural: Dateien
269 label_attachment_plural: Dateien
269 label_report: Bericht
270 label_report: Bericht
270 label_report_plural: Berichte
271 label_report_plural: Berichte
271 label_news: News
272 label_news: News
272 label_news_new: News hinzufügen
273 label_news_new: News hinzufügen
273 label_news_plural: News
274 label_news_plural: News
274 label_news_latest: Letzte News
275 label_news_latest: Letzte News
275 label_news_view_all: Alle News anzeigen
276 label_news_view_all: Alle News anzeigen
276 label_change_log: Change-Log
277 label_change_log: Change-Log
277 label_settings: Konfiguration
278 label_settings: Konfiguration
278 label_overview: Übersicht
279 label_overview: Übersicht
279 label_version: Version
280 label_version: Version
280 label_version_new: Neue Version
281 label_version_new: Neue Version
281 label_version_plural: Versionen
282 label_version_plural: Versionen
282 label_confirmation: Bestätigung
283 label_confirmation: Bestätigung
283 label_export_to: Export zu
284 label_export_to: Export zu
284 label_read: Lesen...
285 label_read: Lesen...
285 label_public_projects: Öffentliche Projekte
286 label_public_projects: Öffentliche Projekte
286 label_open_issues: offen
287 label_open_issues: offen
287 label_open_issues_plural: offen
288 label_open_issues_plural: offen
288 label_closed_issues: geschlossen
289 label_closed_issues: geschlossen
289 label_closed_issues_plural: geschlossen
290 label_closed_issues_plural: geschlossen
290 label_total: Gesamtzahl
291 label_total: Gesamtzahl
291 label_permissions: Berechtigungen
292 label_permissions: Berechtigungen
292 label_current_status: Gegenwärtiger Status
293 label_current_status: Gegenwärtiger Status
293 label_new_statuses_allowed: Neue Berechtigungen
294 label_new_statuses_allowed: Neue Berechtigungen
294 label_all: alle
295 label_all: alle
295 label_none: kein
296 label_none: kein
296 label_next: Weiter
297 label_next: Weiter
297 label_previous: Zurück
298 label_previous: Zurück
298 label_used_by: Benutzt von
299 label_used_by: Benutzt von
299 label_details: Details
300 label_details: Details
300 label_add_note: Kommentar hinzufügen
301 label_add_note: Kommentar hinzufügen
301 label_per_page: Pro Seite
302 label_per_page: Pro Seite
302 label_calendar: Kalender
303 label_calendar: Kalender
303 label_months_from: Monate ab
304 label_months_from: Monate ab
304 label_gantt: Gantt
305 label_gantt: Gantt
305 label_internal: Intern
306 label_internal: Intern
306 label_last_changes: %d letzte Änderungen
307 label_last_changes: %d letzte Änderungen
307 label_change_view_all: Alle Änderungen ansehen
308 label_change_view_all: Alle Änderungen ansehen
308 label_personalize_page: Diese Seite anpassen
309 label_personalize_page: Diese Seite anpassen
309 label_comment: Kommentar
310 label_comment: Kommentar
310 label_comment_plural: Kommentare
311 label_comment_plural: Kommentare
311 label_comment_add: Kommentar hinzufügen
312 label_comment_add: Kommentar hinzufügen
312 label_comment_added: Kommentar hinzugefügt
313 label_comment_added: Kommentar hinzugefügt
313 label_comment_delete: Kommentar löschen
314 label_comment_delete: Kommentar löschen
314 label_query: Benutzerdefinierte Abfrage
315 label_query: Benutzerdefinierte Abfrage
315 label_query_plural: Benutzerdefinierte Berichte
316 label_query_plural: Benutzerdefinierte Berichte
316 label_query_new: Neuer Bericht
317 label_query_new: Neuer Bericht
317 label_filter_add: Filter hinzufügen
318 label_filter_add: Filter hinzufügen
318 label_filter_plural: Filter
319 label_filter_plural: Filter
319 label_equals: ist
320 label_equals: ist
320 label_not_equals: ist nicht
321 label_not_equals: ist nicht
321 label_in_less_than: in weniger als
322 label_in_less_than: in weniger als
322 label_in_more_than: in mehr als
323 label_in_more_than: in mehr als
323 label_in: an
324 label_in: an
324 label_today: heute
325 label_today: heute
325 label_this_week: diese Woche
326 label_this_week: diese Woche
326 label_less_than_ago: vor weniger als
327 label_less_than_ago: vor weniger als
327 label_more_than_ago: vor mehr als
328 label_more_than_ago: vor mehr als
328 label_ago: vor
329 label_ago: vor
329 label_contains: enthält
330 label_contains: enthält
330 label_not_contains: enthält nicht
331 label_not_contains: enthält nicht
331 label_day_plural: Tage
332 label_day_plural: Tage
332 label_repository: Projektarchiv
333 label_repository: Projektarchiv
333 label_browse: Codebrowser
334 label_browse: Codebrowser
334 label_modification: %d Änderung
335 label_modification: %d Änderung
335 label_modification_plural: %d Änderungen
336 label_modification_plural: %d Änderungen
336 label_revision: Revision
337 label_revision: Revision
337 label_revision_plural: Revisionen
338 label_revision_plural: Revisionen
338 label_added: hinzugefügt
339 label_added: hinzugefügt
339 label_modified: geändert
340 label_modified: geändert
340 label_deleted: gelöscht
341 label_deleted: gelöscht
341 label_latest_revision: Aktuellste Revision
342 label_latest_revision: Aktuellste Revision
342 label_latest_revision_plural: Aktuellste Revisionen
343 label_latest_revision_plural: Aktuellste Revisionen
343 label_view_revisions: Revisionen anzeigen
344 label_view_revisions: Revisionen anzeigen
344 label_max_size: Maximale Größe
345 label_max_size: Maximale Größe
345 label_on: von
346 label_on: von
346 label_sort_highest: Anfang
347 label_sort_highest: Anfang
347 label_sort_higher: eins höher
348 label_sort_higher: eins höher
348 label_sort_lower: eins tiefer
349 label_sort_lower: eins tiefer
349 label_sort_lowest: Ende
350 label_sort_lowest: Ende
350 label_roadmap: Roadmap
351 label_roadmap: Roadmap
351 label_roadmap_due_in: Fällig in
352 label_roadmap_due_in: Fällig in
352 label_roadmap_overdue: %s verspätet
353 label_roadmap_overdue: %s verspätet
353 label_roadmap_no_issues: Keine Tickets für diese Version
354 label_roadmap_no_issues: Keine Tickets für diese Version
354 label_search: Suche
355 label_search: Suche
355 label_result_plural: Resultate
356 label_result_plural: Resultate
356 label_all_words: Alle Wörter
357 label_all_words: Alle Wörter
357 label_wiki: Wiki
358 label_wiki: Wiki
358 label_wiki_edit: Wiki-Bearbeitung
359 label_wiki_edit: Wiki-Bearbeitung
359 label_wiki_edit_plural: Wiki-Bearbeitungen
360 label_wiki_edit_plural: Wiki-Bearbeitungen
360 label_wiki_page: Wiki-Seite
361 label_wiki_page: Wiki-Seite
361 label_wiki_page_plural: Wiki-Seiten
362 label_wiki_page_plural: Wiki-Seiten
362 label_index_by_title: Index by title
363 label_index_by_title: Index by title
363 label_index_by_date: Index by date
364 label_index_by_date: Index by date
364 label_current_version: Gegenwärtige Version
365 label_current_version: Gegenwärtige Version
365 label_preview: Vorschau
366 label_preview: Vorschau
366 label_feed_plural: Feeds
367 label_feed_plural: Feeds
367 label_changes_details: Details aller Änderungen
368 label_changes_details: Details aller Änderungen
368 label_issue_tracking: Tickets
369 label_issue_tracking: Tickets
369 label_spent_time: Aufgewendete Zeit
370 label_spent_time: Aufgewendete Zeit
370 label_f_hour: %.2f Stunde
371 label_f_hour: %.2f Stunde
371 label_f_hour_plural: %.2f Stunden
372 label_f_hour_plural: %.2f Stunden
372 label_time_tracking: Zeiterfassung
373 label_time_tracking: Zeiterfassung
373 label_change_plural: Änderungen
374 label_change_plural: Änderungen
374 label_statistics: Statistiken
375 label_statistics: Statistiken
375 label_commits_per_month: Übertragungen pro Monat
376 label_commits_per_month: Übertragungen pro Monat
376 label_commits_per_author: Übertragungen pro Autor
377 label_commits_per_author: Übertragungen pro Autor
377 label_view_diff: Unterschiede anzeigen
378 label_view_diff: Unterschiede anzeigen
378 label_diff_inline: inline
379 label_diff_inline: inline
379 label_diff_side_by_side: nebeneinander
380 label_diff_side_by_side: nebeneinander
380 label_options: Optionen
381 label_options: Optionen
381 label_copy_workflow_from: Workflow kopieren von
382 label_copy_workflow_from: Workflow kopieren von
382 label_permissions_report: Berechtigungsübersicht
383 label_permissions_report: Berechtigungsübersicht
383 label_watched_issues: Beobachtete Tickets
384 label_watched_issues: Beobachtete Tickets
384 label_related_issues: Zugehörige Tickets
385 label_related_issues: Zugehörige Tickets
385 label_applied_status: Zugewiesener Status
386 label_applied_status: Zugewiesener Status
386 label_loading: Lade...
387 label_loading: Lade...
387 label_relation_new: Neue Beziehung
388 label_relation_new: Neue Beziehung
388 label_relation_delete: Beziehung löschen
389 label_relation_delete: Beziehung löschen
389 label_relates_to: Beziehung mit
390 label_relates_to: Beziehung mit
390 label_duplicates: Duplikat von
391 label_duplicates: Duplikat von
391 label_blocks: Blockiert
392 label_blocks: Blockiert
392 label_blocked_by: Blockiert durch
393 label_blocked_by: Blockiert durch
393 label_precedes: Vorgänger von
394 label_precedes: Vorgänger von
394 label_follows: folgt
395 label_follows: folgt
395 label_end_to_start: Ende - Anfang
396 label_end_to_start: Ende - Anfang
396 label_end_to_end: Ende - Ende
397 label_end_to_end: Ende - Ende
397 label_start_to_start: Anfang - Anfang
398 label_start_to_start: Anfang - Anfang
398 label_start_to_end: Anfang - Ende
399 label_start_to_end: Anfang - Ende
399 label_stay_logged_in: Angemeldet bleiben
400 label_stay_logged_in: Angemeldet bleiben
400 label_disabled: gesperrt
401 label_disabled: gesperrt
401 label_show_completed_versions: Abgeschlossene Versionen anzeigen
402 label_show_completed_versions: Abgeschlossene Versionen anzeigen
402 label_me: ich
403 label_me: ich
403 label_board: Forum
404 label_board: Forum
404 label_board_new: Neues Forum
405 label_board_new: Neues Forum
405 label_board_plural: Foren
406 label_board_plural: Foren
406 label_topic_plural: Themen
407 label_topic_plural: Themen
407 label_message_plural: Nachrichten
408 label_message_plural: Nachrichten
408 label_message_last: Letzte Nachricht
409 label_message_last: Letzte Nachricht
409 label_message_new: Neue Nachricht
410 label_message_new: Neue Nachricht
410 label_reply_plural: Antworten
411 label_reply_plural: Antworten
411 label_send_information: Sende Kontoinformationen zum Benutzer
412 label_send_information: Sende Kontoinformationen zum Benutzer
412 label_year: Jahr
413 label_year: Jahr
413 label_month: Monat
414 label_month: Monat
414 label_week: Woche
415 label_week: Woche
415 label_date_from: Von
416 label_date_from: Von
416 label_date_to: Bis
417 label_date_to: Bis
417 label_language_based: Sprachabhängig
418 label_language_based: Sprachabhängig
418 label_sort_by: Sortiert nach %s
419 label_sort_by: Sortiert nach %s
419 label_send_test_email: Test-E-Mail senden
420 label_send_test_email: Test-E-Mail senden
420 label_feeds_access_key_created_on: RSS-Zugriffsschlüssel vor %s erstellt
421 label_feeds_access_key_created_on: RSS-Zugriffsschlüssel vor %s erstellt
421 label_module_plural: Module
422 label_module_plural: Module
422 label_added_time_by: Von %s vor %s hinzugefügt
423 label_added_time_by: Von %s vor %s hinzugefügt
423 label_updated_time: Vor %s aktualisiert
424 label_updated_time: Vor %s aktualisiert
424 label_jump_to_a_project: Zu einem Projekt springen...
425 label_jump_to_a_project: Zu einem Projekt springen...
425
426
426 button_login: Anmelden
427 button_login: Anmelden
427 button_submit: OK
428 button_submit: OK
428 button_save: Speichern
429 button_save: Speichern
429 button_check_all: Alles auswählen
430 button_check_all: Alles auswählen
430 button_uncheck_all: Alles abwählen
431 button_uncheck_all: Alles abwählen
431 button_delete: Löschen
432 button_delete: Löschen
432 button_create: Anlegen
433 button_create: Anlegen
433 button_test: Testen
434 button_test: Testen
434 button_edit: Bearbeiten
435 button_edit: Bearbeiten
435 button_add: Hinzufügen
436 button_add: Hinzufügen
436 button_change: Wechseln
437 button_change: Wechseln
437 button_apply: Anwenden
438 button_apply: Anwenden
438 button_clear: Zurücksetzen
439 button_clear: Zurücksetzen
439 button_lock: Sperren
440 button_lock: Sperren
440 button_unlock: Entsperren
441 button_unlock: Entsperren
441 button_download: Download
442 button_download: Download
442 button_list: Liste
443 button_list: Liste
443 button_view: Siehe
444 button_view: Siehe
444 button_move: Verschieben
445 button_move: Verschieben
445 button_back: Zurück
446 button_back: Zurück
446 button_cancel: Abbrechen
447 button_cancel: Abbrechen
447 button_activate: Aktivieren
448 button_activate: Aktivieren
448 button_sort: Sortieren
449 button_sort: Sortieren
449 button_log_time: Aufwand buchen
450 button_log_time: Aufwand buchen
450 button_rollback: Auf diese Version zurücksetzen
451 button_rollback: Auf diese Version zurücksetzen
451 button_watch: Beobachten
452 button_watch: Beobachten
452 button_unwatch: Nicht beobachten
453 button_unwatch: Nicht beobachten
453 button_reply: Antworten
454 button_reply: Antworten
454 button_archive: Archivieren
455 button_archive: Archivieren
455 button_unarchive: Entarchivieren
456 button_unarchive: Entarchivieren
456 button_reset: Zurücksetzen
457 button_reset: Zurücksetzen
457 button_rename: Umbenennen
458 button_rename: Umbenennen
458
459
459 status_active: aktiv
460 status_active: aktiv
460 status_registered: angemeldet
461 status_registered: angemeldet
461 status_locked: gesperrt
462 status_locked: gesperrt
462
463
463 text_select_mail_notifications: Aktionen, für die Mailbenachrichtigung aktiviert werden soll.
464 text_select_mail_notifications: Aktionen, für die Mailbenachrichtigung aktiviert werden soll.
464 text_regexp_info: z. B. ^[A-Z0-9]+$
465 text_regexp_info: z. B. ^[A-Z0-9]+$
465 text_min_max_length_info: 0 heißt keine Beschränkung
466 text_min_max_length_info: 0 heißt keine Beschränkung
466 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
467 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
467 text_workflow_edit: Workflow zum Bearbeiten auswählen
468 text_workflow_edit: Workflow zum Bearbeiten auswählen
468 text_are_you_sure: Sind Sie sicher?
469 text_are_you_sure: Sind Sie sicher?
469 text_journal_changed: geändert von %s zu %s
470 text_journal_changed: geändert von %s zu %s
470 text_journal_set_to: gestellt zu %s
471 text_journal_set_to: gestellt zu %s
471 text_journal_deleted: gelöscht
472 text_journal_deleted: gelöscht
472 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
473 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
473 text_tip_task_end_day: Aufgabe, die an diesem Tag endet
474 text_tip_task_end_day: Aufgabe, die an diesem Tag endet
474 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
475 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
475 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
476 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
476 text_caracters_maximum: Max. %d Zeichen.
477 text_caracters_maximum: Max. %d Zeichen.
477 text_length_between: Länge zwischen %d und %d Zeichen.
478 text_length_between: Länge zwischen %d und %d Zeichen.
478 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
479 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
479 text_unallowed_characters: Nicht erlaubte Zeichen
480 text_unallowed_characters: Nicht erlaubte Zeichen
480 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
481 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
481 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
482 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
482 text_issue_added: Ticket %s wurde erstellt.
483 text_issue_added: Ticket %s wurde erstellt.
483 text_issue_updated: Ticket %s wurde aktualisiert.
484 text_issue_updated: Ticket %s wurde aktualisiert.
484 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
485 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
485 text_issue_category_destroy_question: Einige Tickets (%d) sind dieser Kategorie zugeodnet. Was möchten Sie tun?
486 text_issue_category_destroy_question: Einige Tickets (%d) sind dieser Kategorie zugeodnet. Was möchten Sie tun?
486 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
487 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
487 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
488 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
488
489
489 default_role_manager: Manager
490 default_role_manager: Manager
490 default_role_developper: Developer
491 default_role_developper: Developer
491 default_role_reporter: Reporter
492 default_role_reporter: Reporter
492 default_tracker_bug: Fehler
493 default_tracker_bug: Fehler
493 default_tracker_feature: Feature
494 default_tracker_feature: Feature
494 default_tracker_support: Support
495 default_tracker_support: Support
495 default_issue_status_new: Neu
496 default_issue_status_new: Neu
496 default_issue_status_assigned: Zugewiesen
497 default_issue_status_assigned: Zugewiesen
497 default_issue_status_resolved: Gelöst
498 default_issue_status_resolved: Gelöst
498 default_issue_status_feedback: Feedback
499 default_issue_status_feedback: Feedback
499 default_issue_status_closed: Erledigt
500 default_issue_status_closed: Erledigt
500 default_issue_status_rejected: Abgewiesen
501 default_issue_status_rejected: Abgewiesen
501 default_doc_category_user: Benutzerdokumentation
502 default_doc_category_user: Benutzerdokumentation
502 default_doc_category_tech: Technische Dokumentation
503 default_doc_category_tech: Technische Dokumentation
503 default_priority_low: Niedrig
504 default_priority_low: Niedrig
504 default_priority_normal: Normal
505 default_priority_normal: Normal
505 default_priority_high: Hoch
506 default_priority_high: Hoch
506 default_priority_urgent: Dringend
507 default_priority_urgent: Dringend
507 default_priority_immediate: Sofort
508 default_priority_immediate: Sofort
508 default_activity_design: Design
509 default_activity_design: Design
509 default_activity_development: Development
510 default_activity_development: Development
510
511
511 enumeration_issue_priorities: Ticket-Prioritäten
512 enumeration_issue_priorities: Ticket-Prioritäten
512 enumeration_doc_categories: Dokumentenkategorien
513 enumeration_doc_categories: Dokumentenkategorien
513 enumeration_activities: Aktivitäten (Zeiterfassung)
514 enumeration_activities: Aktivitäten (Zeiterfassung)
514 label_file_plural: Dateien
515 label_file_plural: Dateien
515 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
516 field_column_names: Spalten
517 field_column_names: Spalten
517 label_default_columns: Default-Spalten
518 label_default_columns: Default-Spalten
518 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
519 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
519 setting_repositories_encodings: Repository-Kodierung
520 setting_repositories_encodings: Repository-Kodierung
520 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
521 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
521 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
522 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
522 label_no_change_option: (Keine Änderung)
523 label_no_change_option: (Keine Änderung)
523 notice_failed_to_save_issues: "%d von %d ausgewählten Tickets konnte(n) nicht gespeichert werden: %s."
524 notice_failed_to_save_issues: "%d von %d ausgewählten Tickets konnte(n) nicht gespeichert werden: %s."
524 label_theme: Stil
525 label_theme: Stil
525 label_default: Default
526 label_default: Default
526 label_search_titles_only: Nur Titel durchsuchen
527 label_search_titles_only: Nur Titel durchsuchen
527 label_nobody: Niemand
528 label_nobody: Niemand
528 button_change_password: Kennwort ändern
529 button_change_password: Kennwort ändern
529 text_user_mail_option: "Für nicht ausgewählte Projekte werden Sie nur Benachrichtigungen für Dinge erhalten, die Sie beobachten oder an denen Sie beteiligt sind (z.B. Tickets, deren Autor Sie sind oder die Ihnen zugewiesen sind)."
530 text_user_mail_option: "Für nicht ausgewählte Projekte werden Sie nur Benachrichtigungen für Dinge erhalten, die Sie beobachten oder an denen Sie beteiligt sind (z.B. Tickets, deren Autor Sie sind oder die Ihnen zugewiesen sind)."
530 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
531 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
531 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
532 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
532 label_user_mail_option_none: "Nur für Dinge, die ich beobachte oder an denen ich beteiligt bin"
533 label_user_mail_option_none: "Nur für Dinge, die ich beobachte oder an denen ich beteiligt bin"
533 setting_emails_footer: E-Mail-Fußzeile
534 setting_emails_footer: E-Mail-Fußzeile
534 label_float: Fließkommazahl
535 label_float: Fließkommazahl
535 button_copy: Kopieren
536 button_copy: Kopieren
536 mail_body_account_information_external: Sie können sich mit Ihrem Konto "%s" an Redmine anmelden.
537 mail_body_account_information_external: Sie können sich mit Ihrem Konto "%s" an Redmine anmelden.
537 mail_body_account_information: Ihre Redmine Konto-Informationen
538 mail_body_account_information: Ihre Redmine Konto-Informationen
538 setting_protocol: Protokoll
539 setting_protocol: Protokoll
539 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
540 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
540 setting_time_format: Zeitformat
541 setting_time_format: Zeitformat
541 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
542 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
542 mail_subject_account_activation_request: Antrag auf Redmine Kontoaktivierung
543 mail_subject_account_activation_request: Antrag auf Redmine Kontoaktivierung
543 mail_body_account_activation_request: 'Ein neuer Benutzer (%s) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'
544 mail_body_account_activation_request: 'Ein neuer Benutzer (%s) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'
544 label_registration_automatic_activation: Automatische Kontoaktivierung
545 label_registration_automatic_activation: Automatische Kontoaktivierung
545 label_registration_manual_activation: Manuelle Kontoaktivierung
546 label_registration_manual_activation: Manuelle Kontoaktivierung
546 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
547 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
547 field_time_zone: Zeitzone
548 field_time_zone: Zeitzone
548 text_caracters_minimum: Muss mindestens %d Zeichen lang sein.
549 text_caracters_minimum: Muss mindestens %d Zeichen lang sein.
549 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 button_annotate: Annotate
551 button_annotate: Annotate
551 label_issues_by: Issues by %s
552 label_issues_by: Issues by %s
552 field_searchable: Searchable
553 field_searchable: Searchable
553 label_display_per_page: 'Per page: %s'
554 label_display_per_page: 'Per page: %s'
554 setting_per_page_options: Objects per page options
555 setting_per_page_options: Objects per page options
555 label_age: Age
556 label_age: Age
556 notice_default_data_loaded: Default configuration successfully loaded.
557 notice_default_data_loaded: Default configuration successfully loaded.
557 text_load_default_configuration: Load the default configuration
558 text_load_default_configuration: Load the default configuration
558 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 button_update: Update
561 button_update: Update
561 label_change_properties: Change properties
562 label_change_properties: Change properties
562 label_general: General
563 label_general: General
563 label_repository_plural: Repositories
564 label_repository_plural: Repositories
564 label_associated_revisions: Associated revisions
565 label_associated_revisions: Associated revisions
@@ -1,565 +1,566
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: less than a second
18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 actionview_instancetag_blank_option: Please select
20 actionview_instancetag_blank_option: Please select
21
21
22 activerecord_error_inclusion: is not included in the list
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: is too long
29 activerecord_error_too_long: is too long
30 activerecord_error_too_short: is too short
30 activerecord_error_too_short: is too short
31 activerecord_error_wrong_length: is the wrong length
31 activerecord_error_wrong_length: is the wrong length
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: is not a number
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: is not a valid date
34 activerecord_error_not_a_date: is not a valid date
35 activerecord_error_greater_than_start_date: must be greater than start date
35 activerecord_error_greater_than_start_date: must be greater than start date
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Yes'
46 general_text_Yes: 'Yes'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'yes'
48 general_text_yes: 'yes'
49 general_lang_name: 'English'
49 general_lang_name: 'English'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
53 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Account was successfully updated.
56 notice_account_updated: Account was successfully updated.
57 notice_account_invalid_creditentials: Invalid user or password
57 notice_account_invalid_creditentials: Invalid user or password
58 notice_account_password_updated: Password was successfully updated.
58 notice_account_password_updated: Password was successfully updated.
59 notice_account_wrong_password: Wrong password
59 notice_account_wrong_password: Wrong password
60 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
60 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
61 notice_account_unknown_email: Unknown user.
61 notice_account_unknown_email: Unknown user.
62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
63 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
64 notice_account_activated: Your account has been activated. You can now log in.
64 notice_account_activated: Your account has been activated. You can now log in.
65 notice_successful_create: Successful creation.
65 notice_successful_create: Successful creation.
66 notice_successful_update: Successful update.
66 notice_successful_update: Successful update.
67 notice_successful_delete: Successful deletion.
67 notice_successful_delete: Successful deletion.
68 notice_successful_connection: Successful connection.
68 notice_successful_connection: Successful connection.
69 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
69 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
70 notice_locking_conflict: Data have been updated by another user.
70 notice_locking_conflict: Data have been updated by another user.
71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
72 notice_not_authorized: You are not authorized to access this page.
72 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
77 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
77 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
78 notice_account_pending: "Your account was created and is now pending administrator approval."
78 notice_account_pending: "Your account was created and is now pending administrator approval."
79 notice_default_data_loaded: Default configuration successfully loaded.
79 notice_default_data_loaded: Default configuration successfully loaded.
80
80
81 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
81 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
82
82
83 mail_subject_lost_password: Your Redmine password
83 mail_subject_lost_password: Your Redmine password
84 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
84 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
85 mail_subject_register: Redmine account activation
85 mail_subject_register: Redmine account activation
86 mail_body_register: 'To activate your Redmine account, click on the following link:'
86 mail_body_register: 'To activate your Redmine account, click on the following link:'
87 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
87 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
88 mail_body_account_information: Your Redmine account information
88 mail_body_account_information: Your Redmine account information
89 mail_subject_account_activation_request: Redmine account activation request
89 mail_subject_account_activation_request: Redmine account activation request
90 mail_body_account_activation_request: 'A new user (%s) has registered. His account is pending your approval:'
90 mail_body_account_activation_request: 'A new user (%s) has registered. His account is pending your approval:'
91
91
92 gui_validation_error: 1 error
92 gui_validation_error: 1 error
93 gui_validation_error_plural: %d errors
93 gui_validation_error_plural: %d errors
94
94
95 field_name: Name
95 field_name: Name
96 field_description: Description
96 field_description: Description
97 field_summary: Summary
97 field_summary: Summary
98 field_is_required: Required
98 field_is_required: Required
99 field_firstname: Firstname
99 field_firstname: Firstname
100 field_lastname: Lastname
100 field_lastname: Lastname
101 field_mail: Email
101 field_mail: Email
102 field_filename: File
102 field_filename: File
103 field_filesize: Size
103 field_filesize: Size
104 field_downloads: Downloads
104 field_downloads: Downloads
105 field_author: Author
105 field_author: Author
106 field_created_on: Created
106 field_created_on: Created
107 field_updated_on: Updated
107 field_updated_on: Updated
108 field_field_format: Format
108 field_field_format: Format
109 field_is_for_all: For all projects
109 field_is_for_all: For all projects
110 field_possible_values: Possible values
110 field_possible_values: Possible values
111 field_regexp: Regular expression
111 field_regexp: Regular expression
112 field_min_length: Minimum length
112 field_min_length: Minimum length
113 field_max_length: Maximum length
113 field_max_length: Maximum length
114 field_value: Value
114 field_value: Value
115 field_category: Category
115 field_category: Category
116 field_title: Title
116 field_title: Title
117 field_project: Project
117 field_project: Project
118 field_issue: Issue
118 field_issue: Issue
119 field_status: Status
119 field_status: Status
120 field_notes: Notes
120 field_notes: Notes
121 field_is_closed: Issue closed
121 field_is_closed: Issue closed
122 field_is_default: Default value
122 field_is_default: Default value
123 field_tracker: Tracker
123 field_tracker: Tracker
124 field_subject: Subject
124 field_subject: Subject
125 field_due_date: Due date
125 field_due_date: Due date
126 field_assigned_to: Assigned to
126 field_assigned_to: Assigned to
127 field_priority: Priority
127 field_priority: Priority
128 field_fixed_version: Fixed version
128 field_fixed_version: Fixed version
129 field_user: User
129 field_user: User
130 field_role: Role
130 field_role: Role
131 field_homepage: Homepage
131 field_homepage: Homepage
132 field_is_public: Public
132 field_is_public: Public
133 field_parent: Subproject of
133 field_parent: Subproject of
134 field_is_in_chlog: Issues displayed in changelog
134 field_is_in_chlog: Issues displayed in changelog
135 field_is_in_roadmap: Issues displayed in roadmap
135 field_is_in_roadmap: Issues displayed in roadmap
136 field_login: Login
136 field_login: Login
137 field_mail_notification: Email notifications
137 field_mail_notification: Email notifications
138 field_admin: Administrator
138 field_admin: Administrator
139 field_last_login_on: Last connection
139 field_last_login_on: Last connection
140 field_language: Language
140 field_language: Language
141 field_effective_date: Date
141 field_effective_date: Date
142 field_password: Password
142 field_password: Password
143 field_new_password: New password
143 field_new_password: New password
144 field_password_confirmation: Confirmation
144 field_password_confirmation: Confirmation
145 field_version: Version
145 field_version: Version
146 field_type: Type
146 field_type: Type
147 field_host: Host
147 field_host: Host
148 field_port: Port
148 field_port: Port
149 field_account: Account
149 field_account: Account
150 field_base_dn: Base DN
150 field_base_dn: Base DN
151 field_attr_login: Login attribute
151 field_attr_login: Login attribute
152 field_attr_firstname: Firstname attribute
152 field_attr_firstname: Firstname attribute
153 field_attr_lastname: Lastname attribute
153 field_attr_lastname: Lastname attribute
154 field_attr_mail: Email attribute
154 field_attr_mail: Email attribute
155 field_onthefly: On-the-fly user creation
155 field_onthefly: On-the-fly user creation
156 field_start_date: Start
156 field_start_date: Start
157 field_done_ratio: %% Done
157 field_done_ratio: %% Done
158 field_auth_source: Authentication mode
158 field_auth_source: Authentication mode
159 field_hide_mail: Hide my email address
159 field_hide_mail: Hide my email address
160 field_comments: Comment
160 field_comments: Comment
161 field_url: URL
161 field_url: URL
162 field_start_page: Start page
162 field_start_page: Start page
163 field_subproject: Subproject
163 field_subproject: Subproject
164 field_hours: Hours
164 field_hours: Hours
165 field_activity: Activity
165 field_activity: Activity
166 field_spent_on: Date
166 field_spent_on: Date
167 field_identifier: Identifier
167 field_identifier: Identifier
168 field_is_filter: Used as a filter
168 field_is_filter: Used as a filter
169 field_issue_to_id: Related issue
169 field_issue_to_id: Related issue
170 field_delay: Delay
170 field_delay: Delay
171 field_assignable: Issues can be assigned to this role
171 field_assignable: Issues can be assigned to this role
172 field_redirect_existing_links: Redirect existing links
172 field_redirect_existing_links: Redirect existing links
173 field_estimated_hours: Estimated time
173 field_estimated_hours: Estimated time
174 field_column_names: Columns
174 field_column_names: Columns
175 field_time_zone: Time zone
175 field_time_zone: Time zone
176 field_searchable: Searchable
176 field_searchable: Searchable
177 field_default_value: Default value
177
178
178 setting_app_title: Application title
179 setting_app_title: Application title
179 setting_app_subtitle: Application subtitle
180 setting_app_subtitle: Application subtitle
180 setting_welcome_text: Welcome text
181 setting_welcome_text: Welcome text
181 setting_default_language: Default language
182 setting_default_language: Default language
182 setting_login_required: Authentication required
183 setting_login_required: Authentication required
183 setting_self_registration: Self-registration
184 setting_self_registration: Self-registration
184 setting_attachment_max_size: Attachment max. size
185 setting_attachment_max_size: Attachment max. size
185 setting_issues_export_limit: Issues export limit
186 setting_issues_export_limit: Issues export limit
186 setting_mail_from: Emission email address
187 setting_mail_from: Emission email address
187 setting_bcc_recipients: Blind carbon copy recipients (bcc)
188 setting_bcc_recipients: Blind carbon copy recipients (bcc)
188 setting_host_name: Host name
189 setting_host_name: Host name
189 setting_text_formatting: Text formatting
190 setting_text_formatting: Text formatting
190 setting_wiki_compression: Wiki history compression
191 setting_wiki_compression: Wiki history compression
191 setting_feeds_limit: Feed content limit
192 setting_feeds_limit: Feed content limit
192 setting_autofetch_changesets: Autofetch commits
193 setting_autofetch_changesets: Autofetch commits
193 setting_sys_api_enabled: Enable WS for repository management
194 setting_sys_api_enabled: Enable WS for repository management
194 setting_commit_ref_keywords: Referencing keywords
195 setting_commit_ref_keywords: Referencing keywords
195 setting_commit_fix_keywords: Fixing keywords
196 setting_commit_fix_keywords: Fixing keywords
196 setting_autologin: Autologin
197 setting_autologin: Autologin
197 setting_date_format: Date format
198 setting_date_format: Date format
198 setting_time_format: Time format
199 setting_time_format: Time format
199 setting_cross_project_issue_relations: Allow cross-project issue relations
200 setting_cross_project_issue_relations: Allow cross-project issue relations
200 setting_issue_list_default_columns: Default columns displayed on the issue list
201 setting_issue_list_default_columns: Default columns displayed on the issue list
201 setting_repositories_encodings: Repositories encodings
202 setting_repositories_encodings: Repositories encodings
202 setting_emails_footer: Emails footer
203 setting_emails_footer: Emails footer
203 setting_protocol: Protocol
204 setting_protocol: Protocol
204 setting_per_page_options: Objects per page options
205 setting_per_page_options: Objects per page options
205
206
206 label_user: User
207 label_user: User
207 label_user_plural: Users
208 label_user_plural: Users
208 label_user_new: New user
209 label_user_new: New user
209 label_project: Project
210 label_project: Project
210 label_project_new: New project
211 label_project_new: New project
211 label_project_plural: Projects
212 label_project_plural: Projects
212 label_project_all: All Projects
213 label_project_all: All Projects
213 label_project_latest: Latest projects
214 label_project_latest: Latest projects
214 label_issue: Issue
215 label_issue: Issue
215 label_issue_new: New issue
216 label_issue_new: New issue
216 label_issue_plural: Issues
217 label_issue_plural: Issues
217 label_issue_view_all: View all issues
218 label_issue_view_all: View all issues
218 label_issues_by: Issues by %s
219 label_issues_by: Issues by %s
219 label_document: Document
220 label_document: Document
220 label_document_new: New document
221 label_document_new: New document
221 label_document_plural: Documents
222 label_document_plural: Documents
222 label_role: Role
223 label_role: Role
223 label_role_plural: Roles
224 label_role_plural: Roles
224 label_role_new: New role
225 label_role_new: New role
225 label_role_and_permissions: Roles and permissions
226 label_role_and_permissions: Roles and permissions
226 label_member: Member
227 label_member: Member
227 label_member_new: New member
228 label_member_new: New member
228 label_member_plural: Members
229 label_member_plural: Members
229 label_tracker: Tracker
230 label_tracker: Tracker
230 label_tracker_plural: Trackers
231 label_tracker_plural: Trackers
231 label_tracker_new: New tracker
232 label_tracker_new: New tracker
232 label_workflow: Workflow
233 label_workflow: Workflow
233 label_issue_status: Issue status
234 label_issue_status: Issue status
234 label_issue_status_plural: Issue statuses
235 label_issue_status_plural: Issue statuses
235 label_issue_status_new: New status
236 label_issue_status_new: New status
236 label_issue_category: Issue category
237 label_issue_category: Issue category
237 label_issue_category_plural: Issue categories
238 label_issue_category_plural: Issue categories
238 label_issue_category_new: New category
239 label_issue_category_new: New category
239 label_custom_field: Custom field
240 label_custom_field: Custom field
240 label_custom_field_plural: Custom fields
241 label_custom_field_plural: Custom fields
241 label_custom_field_new: New custom field
242 label_custom_field_new: New custom field
242 label_enumerations: Enumerations
243 label_enumerations: Enumerations
243 label_enumeration_new: New value
244 label_enumeration_new: New value
244 label_information: Information
245 label_information: Information
245 label_information_plural: Information
246 label_information_plural: Information
246 label_please_login: Please login
247 label_please_login: Please login
247 label_register: Register
248 label_register: Register
248 label_password_lost: Lost password
249 label_password_lost: Lost password
249 label_home: Home
250 label_home: Home
250 label_my_page: My page
251 label_my_page: My page
251 label_my_account: My account
252 label_my_account: My account
252 label_my_projects: My projects
253 label_my_projects: My projects
253 label_administration: Administration
254 label_administration: Administration
254 label_login: Sign in
255 label_login: Sign in
255 label_logout: Sign out
256 label_logout: Sign out
256 label_help: Help
257 label_help: Help
257 label_reported_issues: Reported issues
258 label_reported_issues: Reported issues
258 label_assigned_to_me_issues: Issues assigned to me
259 label_assigned_to_me_issues: Issues assigned to me
259 label_last_login: Last connection
260 label_last_login: Last connection
260 label_last_updates: Last updated
261 label_last_updates: Last updated
261 label_last_updates_plural: %d last updated
262 label_last_updates_plural: %d last updated
262 label_registered_on: Registered on
263 label_registered_on: Registered on
263 label_activity: Activity
264 label_activity: Activity
264 label_new: New
265 label_new: New
265 label_logged_as: Logged as
266 label_logged_as: Logged as
266 label_environment: Environment
267 label_environment: Environment
267 label_authentication: Authentication
268 label_authentication: Authentication
268 label_auth_source: Authentication mode
269 label_auth_source: Authentication mode
269 label_auth_source_new: New authentication mode
270 label_auth_source_new: New authentication mode
270 label_auth_source_plural: Authentication modes
271 label_auth_source_plural: Authentication modes
271 label_subproject_plural: Subprojects
272 label_subproject_plural: Subprojects
272 label_min_max_length: Min - Max length
273 label_min_max_length: Min - Max length
273 label_list: List
274 label_list: List
274 label_date: Date
275 label_date: Date
275 label_integer: Integer
276 label_integer: Integer
276 label_float: Float
277 label_float: Float
277 label_boolean: Boolean
278 label_boolean: Boolean
278 label_string: Text
279 label_string: Text
279 label_text: Long text
280 label_text: Long text
280 label_attribute: Attribute
281 label_attribute: Attribute
281 label_attribute_plural: Attributes
282 label_attribute_plural: Attributes
282 label_download: %d Download
283 label_download: %d Download
283 label_download_plural: %d Downloads
284 label_download_plural: %d Downloads
284 label_no_data: No data to display
285 label_no_data: No data to display
285 label_change_status: Change status
286 label_change_status: Change status
286 label_history: History
287 label_history: History
287 label_attachment: File
288 label_attachment: File
288 label_attachment_new: New file
289 label_attachment_new: New file
289 label_attachment_delete: Delete file
290 label_attachment_delete: Delete file
290 label_attachment_plural: Files
291 label_attachment_plural: Files
291 label_report: Report
292 label_report: Report
292 label_report_plural: Reports
293 label_report_plural: Reports
293 label_news: News
294 label_news: News
294 label_news_new: Add news
295 label_news_new: Add news
295 label_news_plural: News
296 label_news_plural: News
296 label_news_latest: Latest news
297 label_news_latest: Latest news
297 label_news_view_all: View all news
298 label_news_view_all: View all news
298 label_change_log: Change log
299 label_change_log: Change log
299 label_settings: Settings
300 label_settings: Settings
300 label_overview: Overview
301 label_overview: Overview
301 label_version: Version
302 label_version: Version
302 label_version_new: New version
303 label_version_new: New version
303 label_version_plural: Versions
304 label_version_plural: Versions
304 label_confirmation: Confirmation
305 label_confirmation: Confirmation
305 label_export_to: Export to
306 label_export_to: Export to
306 label_read: Read...
307 label_read: Read...
307 label_public_projects: Public projects
308 label_public_projects: Public projects
308 label_open_issues: open
309 label_open_issues: open
309 label_open_issues_plural: open
310 label_open_issues_plural: open
310 label_closed_issues: closed
311 label_closed_issues: closed
311 label_closed_issues_plural: closed
312 label_closed_issues_plural: closed
312 label_total: Total
313 label_total: Total
313 label_permissions: Permissions
314 label_permissions: Permissions
314 label_current_status: Current status
315 label_current_status: Current status
315 label_new_statuses_allowed: New statuses allowed
316 label_new_statuses_allowed: New statuses allowed
316 label_all: all
317 label_all: all
317 label_none: none
318 label_none: none
318 label_nobody: nobody
319 label_nobody: nobody
319 label_next: Next
320 label_next: Next
320 label_previous: Previous
321 label_previous: Previous
321 label_used_by: Used by
322 label_used_by: Used by
322 label_details: Details
323 label_details: Details
323 label_add_note: Add a note
324 label_add_note: Add a note
324 label_per_page: Per page
325 label_per_page: Per page
325 label_calendar: Calendar
326 label_calendar: Calendar
326 label_months_from: months from
327 label_months_from: months from
327 label_gantt: Gantt
328 label_gantt: Gantt
328 label_internal: Internal
329 label_internal: Internal
329 label_last_changes: last %d changes
330 label_last_changes: last %d changes
330 label_change_view_all: View all changes
331 label_change_view_all: View all changes
331 label_personalize_page: Personalize this page
332 label_personalize_page: Personalize this page
332 label_comment: Comment
333 label_comment: Comment
333 label_comment_plural: Comments
334 label_comment_plural: Comments
334 label_comment_add: Add a comment
335 label_comment_add: Add a comment
335 label_comment_added: Comment added
336 label_comment_added: Comment added
336 label_comment_delete: Delete comments
337 label_comment_delete: Delete comments
337 label_query: Custom query
338 label_query: Custom query
338 label_query_plural: Custom queries
339 label_query_plural: Custom queries
339 label_query_new: New query
340 label_query_new: New query
340 label_filter_add: Add filter
341 label_filter_add: Add filter
341 label_filter_plural: Filters
342 label_filter_plural: Filters
342 label_equals: is
343 label_equals: is
343 label_not_equals: is not
344 label_not_equals: is not
344 label_in_less_than: in less than
345 label_in_less_than: in less than
345 label_in_more_than: in more than
346 label_in_more_than: in more than
346 label_in: in
347 label_in: in
347 label_today: today
348 label_today: today
348 label_this_week: this week
349 label_this_week: this week
349 label_less_than_ago: less than days ago
350 label_less_than_ago: less than days ago
350 label_more_than_ago: more than days ago
351 label_more_than_ago: more than days ago
351 label_ago: days ago
352 label_ago: days ago
352 label_contains: contains
353 label_contains: contains
353 label_not_contains: doesn't contain
354 label_not_contains: doesn't contain
354 label_day_plural: days
355 label_day_plural: days
355 label_repository: Repository
356 label_repository: Repository
356 label_repository_plural: Repositories
357 label_repository_plural: Repositories
357 label_browse: Browse
358 label_browse: Browse
358 label_modification: %d change
359 label_modification: %d change
359 label_modification_plural: %d changes
360 label_modification_plural: %d changes
360 label_revision: Revision
361 label_revision: Revision
361 label_revision_plural: Revisions
362 label_revision_plural: Revisions
362 label_associated_revisions: Associated revisions
363 label_associated_revisions: Associated revisions
363 label_added: added
364 label_added: added
364 label_modified: modified
365 label_modified: modified
365 label_deleted: deleted
366 label_deleted: deleted
366 label_latest_revision: Latest revision
367 label_latest_revision: Latest revision
367 label_latest_revision_plural: Latest revisions
368 label_latest_revision_plural: Latest revisions
368 label_view_revisions: View revisions
369 label_view_revisions: View revisions
369 label_max_size: Maximum size
370 label_max_size: Maximum size
370 label_on: 'on'
371 label_on: 'on'
371 label_sort_highest: Move to top
372 label_sort_highest: Move to top
372 label_sort_higher: Move up
373 label_sort_higher: Move up
373 label_sort_lower: Move down
374 label_sort_lower: Move down
374 label_sort_lowest: Move to bottom
375 label_sort_lowest: Move to bottom
375 label_roadmap: Roadmap
376 label_roadmap: Roadmap
376 label_roadmap_due_in: Due in
377 label_roadmap_due_in: Due in
377 label_roadmap_overdue: %s late
378 label_roadmap_overdue: %s late
378 label_roadmap_no_issues: No issues for this version
379 label_roadmap_no_issues: No issues for this version
379 label_search: Search
380 label_search: Search
380 label_result_plural: Results
381 label_result_plural: Results
381 label_all_words: All words
382 label_all_words: All words
382 label_wiki: Wiki
383 label_wiki: Wiki
383 label_wiki_edit: Wiki edit
384 label_wiki_edit: Wiki edit
384 label_wiki_edit_plural: Wiki edits
385 label_wiki_edit_plural: Wiki edits
385 label_wiki_page: Wiki page
386 label_wiki_page: Wiki page
386 label_wiki_page_plural: Wiki pages
387 label_wiki_page_plural: Wiki pages
387 label_index_by_title: Index by title
388 label_index_by_title: Index by title
388 label_index_by_date: Index by date
389 label_index_by_date: Index by date
389 label_current_version: Current version
390 label_current_version: Current version
390 label_preview: Preview
391 label_preview: Preview
391 label_feed_plural: Feeds
392 label_feed_plural: Feeds
392 label_changes_details: Details of all changes
393 label_changes_details: Details of all changes
393 label_issue_tracking: Issue tracking
394 label_issue_tracking: Issue tracking
394 label_spent_time: Spent time
395 label_spent_time: Spent time
395 label_f_hour: %.2f hour
396 label_f_hour: %.2f hour
396 label_f_hour_plural: %.2f hours
397 label_f_hour_plural: %.2f hours
397 label_time_tracking: Time tracking
398 label_time_tracking: Time tracking
398 label_change_plural: Changes
399 label_change_plural: Changes
399 label_statistics: Statistics
400 label_statistics: Statistics
400 label_commits_per_month: Commits per month
401 label_commits_per_month: Commits per month
401 label_commits_per_author: Commits per author
402 label_commits_per_author: Commits per author
402 label_view_diff: View differences
403 label_view_diff: View differences
403 label_diff_inline: inline
404 label_diff_inline: inline
404 label_diff_side_by_side: side by side
405 label_diff_side_by_side: side by side
405 label_options: Options
406 label_options: Options
406 label_copy_workflow_from: Copy workflow from
407 label_copy_workflow_from: Copy workflow from
407 label_permissions_report: Permissions report
408 label_permissions_report: Permissions report
408 label_watched_issues: Watched issues
409 label_watched_issues: Watched issues
409 label_related_issues: Related issues
410 label_related_issues: Related issues
410 label_applied_status: Applied status
411 label_applied_status: Applied status
411 label_loading: Loading...
412 label_loading: Loading...
412 label_relation_new: New relation
413 label_relation_new: New relation
413 label_relation_delete: Delete relation
414 label_relation_delete: Delete relation
414 label_relates_to: related to
415 label_relates_to: related to
415 label_duplicates: duplicates
416 label_duplicates: duplicates
416 label_blocks: blocks
417 label_blocks: blocks
417 label_blocked_by: blocked by
418 label_blocked_by: blocked by
418 label_precedes: precedes
419 label_precedes: precedes
419 label_follows: follows
420 label_follows: follows
420 label_end_to_start: end to start
421 label_end_to_start: end to start
421 label_end_to_end: end to end
422 label_end_to_end: end to end
422 label_start_to_start: start to start
423 label_start_to_start: start to start
423 label_start_to_end: start to end
424 label_start_to_end: start to end
424 label_stay_logged_in: Stay logged in
425 label_stay_logged_in: Stay logged in
425 label_disabled: disabled
426 label_disabled: disabled
426 label_show_completed_versions: Show completed versions
427 label_show_completed_versions: Show completed versions
427 label_me: me
428 label_me: me
428 label_board: Forum
429 label_board: Forum
429 label_board_new: New forum
430 label_board_new: New forum
430 label_board_plural: Forums
431 label_board_plural: Forums
431 label_topic_plural: Topics
432 label_topic_plural: Topics
432 label_message_plural: Messages
433 label_message_plural: Messages
433 label_message_last: Last message
434 label_message_last: Last message
434 label_message_new: New message
435 label_message_new: New message
435 label_reply_plural: Replies
436 label_reply_plural: Replies
436 label_send_information: Send account information to the user
437 label_send_information: Send account information to the user
437 label_year: Year
438 label_year: Year
438 label_month: Month
439 label_month: Month
439 label_week: Week
440 label_week: Week
440 label_date_from: From
441 label_date_from: From
441 label_date_to: To
442 label_date_to: To
442 label_language_based: Based on user's language
443 label_language_based: Based on user's language
443 label_sort_by: Sort by %s
444 label_sort_by: Sort by %s
444 label_send_test_email: Send a test email
445 label_send_test_email: Send a test email
445 label_feeds_access_key_created_on: RSS access key created %s ago
446 label_feeds_access_key_created_on: RSS access key created %s ago
446 label_module_plural: Modules
447 label_module_plural: Modules
447 label_added_time_by: Added by %s %s ago
448 label_added_time_by: Added by %s %s ago
448 label_updated_time: Updated %s ago
449 label_updated_time: Updated %s ago
449 label_jump_to_a_project: Jump to a project...
450 label_jump_to_a_project: Jump to a project...
450 label_file_plural: Files
451 label_file_plural: Files
451 label_changeset_plural: Changesets
452 label_changeset_plural: Changesets
452 label_default_columns: Default columns
453 label_default_columns: Default columns
453 label_no_change_option: (No change)
454 label_no_change_option: (No change)
454 label_bulk_edit_selected_issues: Bulk edit selected issues
455 label_bulk_edit_selected_issues: Bulk edit selected issues
455 label_theme: Theme
456 label_theme: Theme
456 label_default: Default
457 label_default: Default
457 label_search_titles_only: Search titles only
458 label_search_titles_only: Search titles only
458 label_user_mail_option_all: "For any event on all my projects"
459 label_user_mail_option_all: "For any event on all my projects"
459 label_user_mail_option_selected: "For any event on the selected projects only..."
460 label_user_mail_option_selected: "For any event on the selected projects only..."
460 label_user_mail_option_none: "Only for things I watch or I'm involved in"
461 label_user_mail_option_none: "Only for things I watch or I'm involved in"
461 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
462 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
462 label_registration_activation_by_email: account activation by email
463 label_registration_activation_by_email: account activation by email
463 label_registration_manual_activation: manual account activation
464 label_registration_manual_activation: manual account activation
464 label_registration_automatic_activation: automatic account activation
465 label_registration_automatic_activation: automatic account activation
465 label_display_per_page: 'Per page: %s'
466 label_display_per_page: 'Per page: %s'
466 label_age: Age
467 label_age: Age
467 label_change_properties: Change properties
468 label_change_properties: Change properties
468 label_general: General
469 label_general: General
469
470
470 button_login: Login
471 button_login: Login
471 button_submit: Submit
472 button_submit: Submit
472 button_save: Save
473 button_save: Save
473 button_check_all: Check all
474 button_check_all: Check all
474 button_uncheck_all: Uncheck all
475 button_uncheck_all: Uncheck all
475 button_delete: Delete
476 button_delete: Delete
476 button_create: Create
477 button_create: Create
477 button_test: Test
478 button_test: Test
478 button_edit: Edit
479 button_edit: Edit
479 button_add: Add
480 button_add: Add
480 button_change: Change
481 button_change: Change
481 button_apply: Apply
482 button_apply: Apply
482 button_clear: Clear
483 button_clear: Clear
483 button_lock: Lock
484 button_lock: Lock
484 button_unlock: Unlock
485 button_unlock: Unlock
485 button_download: Download
486 button_download: Download
486 button_list: List
487 button_list: List
487 button_view: View
488 button_view: View
488 button_move: Move
489 button_move: Move
489 button_back: Back
490 button_back: Back
490 button_cancel: Cancel
491 button_cancel: Cancel
491 button_activate: Activate
492 button_activate: Activate
492 button_sort: Sort
493 button_sort: Sort
493 button_log_time: Log time
494 button_log_time: Log time
494 button_rollback: Rollback to this version
495 button_rollback: Rollback to this version
495 button_watch: Watch
496 button_watch: Watch
496 button_unwatch: Unwatch
497 button_unwatch: Unwatch
497 button_reply: Reply
498 button_reply: Reply
498 button_archive: Archive
499 button_archive: Archive
499 button_unarchive: Unarchive
500 button_unarchive: Unarchive
500 button_reset: Reset
501 button_reset: Reset
501 button_rename: Rename
502 button_rename: Rename
502 button_change_password: Change password
503 button_change_password: Change password
503 button_copy: Copy
504 button_copy: Copy
504 button_annotate: Annotate
505 button_annotate: Annotate
505 button_update: Update
506 button_update: Update
506
507
507 status_active: active
508 status_active: active
508 status_registered: registered
509 status_registered: registered
509 status_locked: locked
510 status_locked: locked
510
511
511 text_select_mail_notifications: Select actions for which email notifications should be sent.
512 text_select_mail_notifications: Select actions for which email notifications should be sent.
512 text_regexp_info: eg. ^[A-Z0-9]+$
513 text_regexp_info: eg. ^[A-Z0-9]+$
513 text_min_max_length_info: 0 means no restriction
514 text_min_max_length_info: 0 means no restriction
514 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
515 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
515 text_workflow_edit: Select a role and a tracker to edit the workflow
516 text_workflow_edit: Select a role and a tracker to edit the workflow
516 text_are_you_sure: Are you sure ?
517 text_are_you_sure: Are you sure ?
517 text_journal_changed: changed from %s to %s
518 text_journal_changed: changed from %s to %s
518 text_journal_set_to: set to %s
519 text_journal_set_to: set to %s
519 text_journal_deleted: deleted
520 text_journal_deleted: deleted
520 text_tip_task_begin_day: task beginning this day
521 text_tip_task_begin_day: task beginning this day
521 text_tip_task_end_day: task ending this day
522 text_tip_task_end_day: task ending this day
522 text_tip_task_begin_end_day: task beginning and ending this day
523 text_tip_task_begin_end_day: task beginning and ending this day
523 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
524 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
524 text_caracters_maximum: %d characters maximum.
525 text_caracters_maximum: %d characters maximum.
525 text_caracters_minimum: Must be at least %d characters long.
526 text_caracters_minimum: Must be at least %d characters long.
526 text_length_between: Length between %d and %d characters.
527 text_length_between: Length between %d and %d characters.
527 text_tracker_no_workflow: No workflow defined for this tracker
528 text_tracker_no_workflow: No workflow defined for this tracker
528 text_unallowed_characters: Unallowed characters
529 text_unallowed_characters: Unallowed characters
529 text_comma_separated: Multiple values allowed (comma separated).
530 text_comma_separated: Multiple values allowed (comma separated).
530 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
531 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
531 text_issue_added: Issue %s has been reported.
532 text_issue_added: Issue %s has been reported.
532 text_issue_updated: Issue %s has been updated.
533 text_issue_updated: Issue %s has been updated.
533 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
534 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
534 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
535 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
535 text_issue_category_destroy_assignments: Remove category assignments
536 text_issue_category_destroy_assignments: Remove category assignments
536 text_issue_category_reassign_to: Reassign issues to this category
537 text_issue_category_reassign_to: Reassign issues to this category
537 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
538 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
538 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
539 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
539 text_load_default_configuration: Load the default configuration
540 text_load_default_configuration: Load the default configuration
540
541
541 default_role_manager: Manager
542 default_role_manager: Manager
542 default_role_developper: Developer
543 default_role_developper: Developer
543 default_role_reporter: Reporter
544 default_role_reporter: Reporter
544 default_tracker_bug: Bug
545 default_tracker_bug: Bug
545 default_tracker_feature: Feature
546 default_tracker_feature: Feature
546 default_tracker_support: Support
547 default_tracker_support: Support
547 default_issue_status_new: New
548 default_issue_status_new: New
548 default_issue_status_assigned: Assigned
549 default_issue_status_assigned: Assigned
549 default_issue_status_resolved: Resolved
550 default_issue_status_resolved: Resolved
550 default_issue_status_feedback: Feedback
551 default_issue_status_feedback: Feedback
551 default_issue_status_closed: Closed
552 default_issue_status_closed: Closed
552 default_issue_status_rejected: Rejected
553 default_issue_status_rejected: Rejected
553 default_doc_category_user: User documentation
554 default_doc_category_user: User documentation
554 default_doc_category_tech: Technical documentation
555 default_doc_category_tech: Technical documentation
555 default_priority_low: Low
556 default_priority_low: Low
556 default_priority_normal: Normal
557 default_priority_normal: Normal
557 default_priority_high: High
558 default_priority_high: High
558 default_priority_urgent: Urgent
559 default_priority_urgent: Urgent
559 default_priority_immediate: Immediate
560 default_priority_immediate: Immediate
560 default_activity_design: Design
561 default_activity_design: Design
561 default_activity_development: Development
562 default_activity_development: Development
562
563
563 enumeration_issue_priorities: Issue priorities
564 enumeration_issue_priorities: Issue priorities
564 enumeration_doc_categories: Document categories
565 enumeration_doc_categories: Document categories
565 enumeration_activities: Activities (time tracking)
566 enumeration_activities: Activities (time tracking)
@@ -1,567 +1,568
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 día
8 actionview_datehelper_time_in_words_day: 1 día
9 actionview_datehelper_time_in_words_day_plural: %d días
9 actionview_datehelper_time_in_words_day_plural: %d días
10 actionview_datehelper_time_in_words_hour_about: una hora aproximadamente
10 actionview_datehelper_time_in_words_hour_about: una hora aproximadamente
11 actionview_datehelper_time_in_words_hour_about_plural: aproximadamente %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: aproximadamente %d horas
12 actionview_datehelper_time_in_words_hour_about_single: una hora aproximadamente
12 actionview_datehelper_time_in_words_hour_about_single: una hora aproximadamente
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: medio minuto
14 actionview_datehelper_time_in_words_minute_half: medio minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de un minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de un minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: menos de un segundo
18 actionview_datehelper_time_in_words_second_less_than: menos de un segundo
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 actionview_instancetag_blank_option: Por favor seleccione
20 actionview_instancetag_blank_option: Por favor seleccione
21
21
22 activerecord_error_inclusion: no está incluído en la lista
22 activerecord_error_inclusion: no está incluído en la lista
23 activerecord_error_exclusion: está reservado
23 activerecord_error_exclusion: está reservado
24 activerecord_error_invalid: no es válido
24 activerecord_error_invalid: no es válido
25 activerecord_error_confirmation: la confirmación no coincide
25 activerecord_error_confirmation: la confirmación no coincide
26 activerecord_error_accepted: debe ser aceptado
26 activerecord_error_accepted: debe ser aceptado
27 activerecord_error_empty: no puede estar vacío
27 activerecord_error_empty: no puede estar vacío
28 activerecord_error_blank: no puede estar en blanco
28 activerecord_error_blank: no puede estar en blanco
29 activerecord_error_too_long: es demasiado largo
29 activerecord_error_too_long: es demasiado largo
30 activerecord_error_too_short: es demasiado corto
30 activerecord_error_too_short: es demasiado corto
31 activerecord_error_wrong_length: la longitud es incorrecta
31 activerecord_error_wrong_length: la longitud es incorrecta
32 activerecord_error_taken: ya está siendo usado
32 activerecord_error_taken: ya está siendo usado
33 activerecord_error_not_a_number: no es un número
33 activerecord_error_not_a_number: no es un número
34 activerecord_error_not_a_date: no es una fecha válida
34 activerecord_error_not_a_date: no es una fecha válida
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
36 activerecord_error_not_same_project: no pertenece al mismo proyecto
36 activerecord_error_not_same_project: no pertenece al mismo proyecto
37 activerecord_error_circular_dependency: Esta relación podría crear una dependencia anidada
37 activerecord_error_circular_dependency: Esta relación podría crear una dependencia anidada
38
38
39 general_fmt_age: %d año
39 general_fmt_age: %d año
40 general_fmt_age_plural: %d años
40 general_fmt_age_plural: %d años
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Sí'
46 general_text_Yes: 'Sí'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'sí'
48 general_text_yes: 'sí'
49 general_lang_name: 'Español'
49 general_lang_name: 'Español'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-15
51 general_csv_encoding: ISO-8859-15
52 general_pdf_encoding: ISO-8859-15
52 general_pdf_encoding: ISO-8859-15
53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Cuenta actualizada correctamente.
56 notice_account_updated: Cuenta actualizada correctamente.
57 notice_account_invalid_creditentials: Usuario o contraseña inválido.
57 notice_account_invalid_creditentials: Usuario o contraseña inválido.
58 notice_account_password_updated: Contraseña modificada correctamente.
58 notice_account_password_updated: Contraseña modificada correctamente.
59 notice_account_wrong_password: Contraseña incorrecta.
59 notice_account_wrong_password: Contraseña incorrecta.
60 notice_account_register_done: Cuenta creada correctamente.
60 notice_account_register_done: Cuenta creada correctamente.
61 notice_account_unknown_email: Usuario desconocido.
61 notice_account_unknown_email: Usuario desconocido.
62 notice_can_t_change_password: Esta cuenta utiliza una fuente de autenticación externa. No es posible cambiar la contraseña.
62 notice_can_t_change_password: Esta cuenta utiliza una fuente de autenticación externa. No es posible cambiar la contraseña.
63 notice_account_lost_email_sent: Se le ha enviado un correo con instrucciones para elegir una nueva contraseña.
63 notice_account_lost_email_sent: Se le ha enviado un correo con instrucciones para elegir una nueva contraseña.
64 notice_account_activated: Su cuenta ha sido activada. Ahora se encuentra conectado.
64 notice_account_activated: Su cuenta ha sido activada. Ahora se encuentra conectado.
65 notice_successful_create: Creación correcta.
65 notice_successful_create: Creación correcta.
66 notice_successful_update: Modificación correcta.
66 notice_successful_update: Modificación correcta.
67 notice_successful_delete: Borrado correcto.
67 notice_successful_delete: Borrado correcto.
68 notice_successful_connection: Conexión correcta.
68 notice_successful_connection: Conexión correcta.
69 notice_file_not_found: La página a la que intentas acceder no existe.
69 notice_file_not_found: La página a la que intentas acceder no existe.
70 notice_locking_conflict: Los datos han sido modificados por otro usuario.
70 notice_locking_conflict: Los datos han sido modificados por otro usuario.
71 notice_scm_error: La entrada y/o la revisión no existe en el repositorio.
71 notice_scm_error: La entrada y/o la revisión no existe en el repositorio.
72 notice_not_authorized: No tiene autorización para acceder a esta página.
72 notice_not_authorized: No tiene autorización para acceder a esta página.
73
73
74 mail_subject_lost_password: Tu contraseña del CIYAT - Gestor de Solicitudes
74 mail_subject_lost_password: Tu contraseña del CIYAT - Gestor de Solicitudes
75 mail_body_lost_password: 'Para cambiar su contraseña de Redmine, haga click en el siguiente enlace:'
75 mail_body_lost_password: 'Para cambiar su contraseña de Redmine, haga click en el siguiente enlace:'
76 mail_subject_register: Activación de la cuenta del CIYAT - Gestor de Solicitudes
76 mail_subject_register: Activación de la cuenta del CIYAT - Gestor de Solicitudes
77 mail_body_register: 'Para activar su cuenta Redmine, haga click en el siguiente enlace:'
77 mail_body_register: 'Para activar su cuenta Redmine, haga click en el siguiente enlace:'
78
78
79 gui_validation_error: 1 error
79 gui_validation_error: 1 error
80 gui_validation_error_plural: %d errores
80 gui_validation_error_plural: %d errores
81
81
82 field_name: Nombre
82 field_name: Nombre
83 field_description: Descripción
83 field_description: Descripción
84 field_summary: Resumen
84 field_summary: Resumen
85 field_is_required: Obligatorio
85 field_is_required: Obligatorio
86 field_firstname: Nombre
86 field_firstname: Nombre
87 field_lastname: Apellido
87 field_lastname: Apellido
88 field_mail: Correo electrónico
88 field_mail: Correo electrónico
89 field_filename: Fichero
89 field_filename: Fichero
90 field_filesize: Tamaño
90 field_filesize: Tamaño
91 field_downloads: Descargas
91 field_downloads: Descargas
92 field_author: Autor
92 field_author: Autor
93 field_created_on: Creado
93 field_created_on: Creado
94 field_updated_on: Actualizado
94 field_updated_on: Actualizado
95 field_field_format: Formato
95 field_field_format: Formato
96 field_is_for_all: Para todos los proyectos
96 field_is_for_all: Para todos los proyectos
97 field_possible_values: Valores posibles
97 field_possible_values: Valores posibles
98 field_regexp: Expresión regular
98 field_regexp: Expresión regular
99 field_min_length: Longitud mínima
99 field_min_length: Longitud mínima
100 field_max_length: Longitud máxima
100 field_max_length: Longitud máxima
101 field_value: Valor
101 field_value: Valor
102 field_category: Categoría
102 field_category: Categoría
103 field_title: Título
103 field_title: Título
104 field_project: Proyecto
104 field_project: Proyecto
105 field_issue: Petición
105 field_issue: Petición
106 field_status: Estado
106 field_status: Estado
107 field_notes: Notas
107 field_notes: Notas
108 field_is_closed: Petición resuelta
108 field_is_closed: Petición resuelta
109 field_is_default: Estado por defecto
109 field_is_default: Estado por defecto
110 field_tracker: Tracker
110 field_tracker: Tracker
111 field_subject: Tema
111 field_subject: Tema
112 field_due_date: Fecha fin
112 field_due_date: Fecha fin
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
115 field_fixed_version: Versión
116 field_user: Usuario
116 field_user: Usuario
117 field_role: Perfil
117 field_role: Perfil
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 padre
120 field_parent: Proyecto padre
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: Notificaciones por correo
124 field_mail_notification: Notificaciones por correo
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: Idioma
127 field_language: Idioma
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: DN base
137 field_base_dn: DN base
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 "al vuelo"
142 field_onthefly: Creación del usuario "al vuelo"
143 field_start_date: Fecha de inicio
143 field_start_date: Fecha de inicio
144 field_done_ratio: %% Realizado
144 field_done_ratio: %% Realizado
145 field_auth_source: Modo de identificación
145 field_auth_source: Modo de identificación
146 field_hide_mail: Ocultar mi dirección de correo
146 field_hide_mail: Ocultar mi dirección de correo
147 field_comment: Comentario
147 field_comment: 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: Horas
151 field_hours: Horas
152 field_activity: Actividad
152 field_activity: Actividad
153 field_spent_on: Fecha
153 field_spent_on: Fecha
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: Petición Relacionada
156 field_issue_to_id: Petición Relacionada
157 field_delay: Retraso
157 field_delay: Retraso
158 field_default_value: Estado por defecto
158
159
159 setting_app_title: Título de la aplicación
160 setting_app_title: Título de la aplicación
160 setting_app_subtitle: Subtítulo de la aplicación
161 setting_app_subtitle: Subtítulo de la aplicación
161 setting_welcome_text: Texto de bienvenida
162 setting_welcome_text: Texto de bienvenida
162 setting_default_language: Idioma por defecto
163 setting_default_language: Idioma por defecto
163 setting_login_required: Se requiere identificación
164 setting_login_required: Se requiere identificación
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: Límite de exportación de peticiones
167 setting_issues_export_limit: Límite de exportación de peticiones
167 setting_mail_from: Correo desde el que enviar mensajes
168 setting_mail_from: Correo desde el que enviar mensajes
168 setting_host_name: Nombre de host
169 setting_host_name: Nombre de host
169 setting_text_formatting: Formato de texto
170 setting_text_formatting: Formato de texto
170 setting_wiki_compression: Compresión del historial de Wiki
171 setting_wiki_compression: Compresión del historial de Wiki
171 setting_feeds_limit: Límite de contenido para sindicación
172 setting_feeds_limit: Límite de contenido para sindicación
172 setting_autofetch_changesets: Autorellenar los commits del repositorio
173 setting_autofetch_changesets: Autorellenar los commits del repositorio
173 setting_sys_api_enabled: Habilitar WS para la gestión del repositorio
174 setting_sys_api_enabled: Habilitar WS para la gestión del repositorio
174 setting_commit_ref_keywords: Palabras clave para la referencia
175 setting_commit_ref_keywords: Palabras clave para la referencia
175 setting_commit_fix_keywords: Palabras clave para la corrección
176 setting_commit_fix_keywords: Palabras clave para la corrección
176 setting_autologin: Conexión automática
177 setting_autologin: Conexión automática
177 setting_date_format: Formato de la fecha
178 setting_date_format: Formato de la fecha
178
179
179 label_user: Usuario
180 label_user: Usuario
180 label_user_plural: Usuarios
181 label_user_plural: Usuarios
181 label_user_new: Nuevo usuario
182 label_user_new: Nuevo usuario
182 label_project: Proyecto
183 label_project: Proyecto
183 label_project_new: Nuevo proyecto
184 label_project_new: Nuevo proyecto
184 label_project_plural: Proyectos
185 label_project_plural: Proyectos
185 label_project_all: Todos los proyectos
186 label_project_all: Todos los proyectos
186 label_project_latest: Últimos proyectos
187 label_project_latest: Últimos proyectos
187 label_issue: Petición
188 label_issue: Petición
188 label_issue_new: Nueva petición
189 label_issue_new: Nueva petición
189 label_issue_plural: Peticiones
190 label_issue_plural: Peticiones
190 label_issue_view_all: Ver todas las peticiones
191 label_issue_view_all: Ver todas las peticiones
191 label_document: Documento
192 label_document: Documento
192 label_document_new: Nuevo documento
193 label_document_new: Nuevo documento
193 label_document_plural: Documentos
194 label_document_plural: Documentos
194 label_role: Perfil
195 label_role: Perfil
195 label_role_plural: Perfiles
196 label_role_plural: Perfiles
196 label_role_new: Nuevo perfil
197 label_role_new: Nuevo perfil
197 label_role_and_permissions: Perfiles y permisos
198 label_role_and_permissions: Perfiles y permisos
198 label_member: Miembro
199 label_member: Miembro
199 label_member_new: Nuevo miembro
200 label_member_new: Nuevo miembro
200 label_member_plural: Miembros
201 label_member_plural: Miembros
201 label_tracker: Tracker
202 label_tracker: Tracker
202 label_tracker_plural: Trackers
203 label_tracker_plural: Trackers
203 label_tracker_new: Nuevo tracker
204 label_tracker_new: Nuevo tracker
204 label_workflow: Flujo de trabajo
205 label_workflow: Flujo de trabajo
205 label_issue_status: Estado de petición
206 label_issue_status: Estado de petición
206 label_issue_status_plural: Estados de las peticiones
207 label_issue_status_plural: Estados de las peticiones
207 label_issue_status_new: Nuevo estado
208 label_issue_status_new: Nuevo estado
208 label_issue_category: Categoría de las peticiones
209 label_issue_category: Categoría de las peticiones
209 label_issue_category_plural: Categorías de las peticiones
210 label_issue_category_plural: Categorías de las peticiones
210 label_issue_category_new: Nueva categoría
211 label_issue_category_new: Nueva categoría
211 label_custom_field: Campo personalizado
212 label_custom_field: Campo personalizado
212 label_custom_field_plural: Campos personalizados
213 label_custom_field_plural: Campos personalizados
213 label_custom_field_new: Nuevo campo personalizado
214 label_custom_field_new: Nuevo campo personalizado
214 label_enumerations: Listas de valores
215 label_enumerations: Listas de valores
215 label_enumeration_new: Nuevo valor
216 label_enumeration_new: Nuevo valor
216 label_information: Información
217 label_information: Información
217 label_information_plural: Información
218 label_information_plural: Información
218 label_please_login: Conexión
219 label_please_login: Conexión
219 label_register: Registrar
220 label_register: Registrar
220 label_password_lost: ¿Olvidaste la contraseña?
221 label_password_lost: ¿Olvidaste la contraseña?
221 label_home: Inicio
222 label_home: Inicio
222 label_my_page: Mi página
223 label_my_page: Mi página
223 label_my_account: Mi cuenta
224 label_my_account: Mi cuenta
224 label_my_projects: Mis proyectos
225 label_my_projects: Mis proyectos
225 label_administration: Administración
226 label_administration: Administración
226 label_login: Conexión
227 label_login: Conexión
227 label_logout: Desconexión
228 label_logout: Desconexión
228 label_help: Ayuda
229 label_help: Ayuda
229 label_reported_issues: Peticiones registradas por mí
230 label_reported_issues: Peticiones registradas por mí
230 label_assigned_to_me_issues: Peticiones que me están asignadas
231 label_assigned_to_me_issues: Peticiones que me están asignadas
231 label_last_login: Última conexión
232 label_last_login: Última conexión
232 label_last_updates: Actualizado
233 label_last_updates: Actualizado
233 label_last_updates_plural: %d Actualizados
234 label_last_updates_plural: %d Actualizados
234 label_registered_on: Inscrito el
235 label_registered_on: Inscrito el
235 label_activity: Actividad
236 label_activity: Actividad
236 label_new: Nuevo
237 label_new: Nuevo
237 label_logged_as: Conectado como
238 label_logged_as: Conectado como
238 label_environment: Entorno
239 label_environment: Entorno
239 label_authentication: Autenticación
240 label_authentication: Autenticación
240 label_auth_source: Modo de autenticación
241 label_auth_source: Modo de autenticación
241 label_auth_source_new: Nuevo modo de autenticación
242 label_auth_source_new: Nuevo modo de autenticación
242 label_auth_source_plural: Modos de autenticación
243 label_auth_source_plural: Modos de autenticación
243 label_subproject_plural: Proyectos secundarios
244 label_subproject_plural: Proyectos secundarios
244 label_min_max_length: Longitud mín - máx
245 label_min_max_length: Longitud mín - máx
245 label_list: Lista
246 label_list: Lista
246 label_date: Fecha
247 label_date: Fecha
247 label_integer: Número
248 label_integer: Número
248 label_boolean: Boleano
249 label_boolean: Boleano
249 label_string: Texto
250 label_string: Texto
250 label_text: Texto largo
251 label_text: Texto largo
251 label_attribute: Cualidad
252 label_attribute: Cualidad
252 label_attribute_plural: Cualidades
253 label_attribute_plural: Cualidades
253 label_download: %d Descarga
254 label_download: %d Descarga
254 label_download_plural: %d Descargas
255 label_download_plural: %d Descargas
255 label_no_data: Ningun dato a mostrar
256 label_no_data: Ningun dato a mostrar
256 label_change_status: Cambiar el estado
257 label_change_status: Cambiar el estado
257 label_history: Histórico
258 label_history: Histórico
258 label_attachment: Fichero
259 label_attachment: Fichero
259 label_attachment_new: Nuevo fichero
260 label_attachment_new: Nuevo fichero
260 label_attachment_delete: Borrar el fichero
261 label_attachment_delete: Borrar el fichero
261 label_attachment_plural: Ficheros
262 label_attachment_plural: Ficheros
262 label_report: Informe
263 label_report: Informe
263 label_report_plural: Informes
264 label_report_plural: Informes
264 label_news: Noticia
265 label_news: Noticia
265 label_news_new: Nueva noticia
266 label_news_new: Nueva noticia
266 label_news_plural: Noticias
267 label_news_plural: Noticias
267 label_news_latest: Últimas noticias
268 label_news_latest: Últimas noticias
268 label_news_view_all: Ver todas las noticias
269 label_news_view_all: Ver todas las noticias
269 label_change_log: Cambios
270 label_change_log: Cambios
270 label_settings: Configuración
271 label_settings: Configuración
271 label_overview: Vistazo
272 label_overview: Vistazo
272 label_version: Versión
273 label_version: Versión
273 label_version_new: Nueva versión
274 label_version_new: Nueva versión
274 label_version_plural: Versiones
275 label_version_plural: Versiones
275 label_confirmation: Confirmación
276 label_confirmation: Confirmación
276 label_export_to: Exportar a
277 label_export_to: Exportar a
277 label_read: Leer...
278 label_read: Leer...
278 label_public_projects: Proyectos públicos
279 label_public_projects: Proyectos públicos
279 label_open_issues: abierta
280 label_open_issues: abierta
280 label_open_issues_plural: abiertas
281 label_open_issues_plural: abiertas
281 label_closed_issues: cerrada
282 label_closed_issues: cerrada
282 label_closed_issues_plural: cerradas
283 label_closed_issues_plural: cerradas
283 label_total: Total
284 label_total: Total
284 label_permissions: Permisos
285 label_permissions: Permisos
285 label_current_status: Estado actual
286 label_current_status: Estado actual
286 label_new_statuses_allowed: Nuevos estados autorizados
287 label_new_statuses_allowed: Nuevos estados autorizados
287 label_all: todos
288 label_all: todos
288 label_none: ninguno
289 label_none: ninguno
289 label_next: Próximo
290 label_next: Próximo
290 label_previous: Anterior
291 label_previous: Anterior
291 label_used_by: Utilizado por
292 label_used_by: Utilizado por
292 label_details: Detalles
293 label_details: Detalles
293 label_add_note: Añadir una nota
294 label_add_note: Añadir una nota
294 label_per_page: Por la página
295 label_per_page: Por la página
295 label_calendar: Calendario
296 label_calendar: Calendario
296 label_months_from: meses de
297 label_months_from: meses de
297 label_gantt: Gantt
298 label_gantt: Gantt
298 label_internal: Interno
299 label_internal: Interno
299 label_last_changes: %d cambios del último
300 label_last_changes: %d cambios del último
300 label_change_view_all: Ver todos los cambios
301 label_change_view_all: Ver todos los cambios
301 label_personalize_page: Personalizar esta página
302 label_personalize_page: Personalizar esta página
302 label_comment: Comentario
303 label_comment: Comentario
303 label_comment_plural: Comentarios
304 label_comment_plural: Comentarios
304 label_comment_add: Añadir un comentario
305 label_comment_add: Añadir un comentario
305 label_comment_added: Comentario añadido
306 label_comment_added: Comentario añadido
306 label_comment_delete: Borrar comentarios
307 label_comment_delete: Borrar comentarios
307 label_query: Consulta personalizada
308 label_query: Consulta personalizada
308 label_query_plural: Consultas personalizadas
309 label_query_plural: Consultas personalizadas
309 label_query_new: Nueva consulta
310 label_query_new: Nueva consulta
310 label_filter_add: Añadir el filtro
311 label_filter_add: Añadir el filtro
311 label_filter_plural: Filtros
312 label_filter_plural: Filtros
312 label_equals: igual
313 label_equals: igual
313 label_not_equals: no igual
314 label_not_equals: no igual
314 label_in_less_than: en menos que
315 label_in_less_than: en menos que
315 label_in_more_than: en más que
316 label_in_more_than: en más que
316 label_in: en
317 label_in: en
317 label_today: hoy
318 label_today: hoy
318 label_less_than_ago: hace menos de
319 label_less_than_ago: hace menos de
319 label_more_than_ago: hace más de
320 label_more_than_ago: hace más de
320 label_ago: hace
321 label_ago: hace
321 label_contains: contiene
322 label_contains: contiene
322 label_not_contains: no contiene
323 label_not_contains: no contiene
323 label_day_plural: días
324 label_day_plural: días
324 label_repository: Repositorio
325 label_repository: Repositorio
325 label_browse: Hojear
326 label_browse: Hojear
326 label_modification: %d modificación
327 label_modification: %d modificación
327 label_modification_plural: %d modificaciones
328 label_modification_plural: %d modificaciones
328 label_revision: Revisión
329 label_revision: Revisión
329 label_revision_plural: Revisiones
330 label_revision_plural: Revisiones
330 label_added: añadido
331 label_added: añadido
331 label_modified: modificado
332 label_modified: modificado
332 label_deleted: suprimido
333 label_deleted: suprimido
333 label_latest_revision: La revisión más actual
334 label_latest_revision: La revisión más actual
334 label_latest_revision_plural: Las revisiones más actuales
335 label_latest_revision_plural: Las revisiones más actuales
335 label_view_revisions: Ver las revisiones
336 label_view_revisions: Ver las revisiones
336 label_max_size: Tamaño máximo
337 label_max_size: Tamaño máximo
337 label_on: de
338 label_on: de
338 label_sort_highest: Primero
339 label_sort_highest: Primero
339 label_sort_higher: Subir
340 label_sort_higher: Subir
340 label_sort_lower: Bajar
341 label_sort_lower: Bajar
341 label_sort_lowest: Último
342 label_sort_lowest: Último
342 label_roadmap: Roadmap
343 label_roadmap: Roadmap
343 label_roadmap_due_in: Finaliza en
344 label_roadmap_due_in: Finaliza en
344 label_roadmap_no_issues: No hay peticiones para esta versión
345 label_roadmap_no_issues: No hay peticiones para esta versión
345 label_search: Búsqueda
346 label_search: Búsqueda
346 label_result: %d resultado
347 label_result: %d resultado
347 label_result_plural: Resultados
348 label_result_plural: Resultados
348 label_all_words: Todas las palabras
349 label_all_words: Todas las palabras
349 label_wiki: Wiki
350 label_wiki: Wiki
350 label_wiki_edit: Wiki edicción
351 label_wiki_edit: Wiki edicción
351 label_wiki_edit_plural: Wiki edicciones
352 label_wiki_edit_plural: Wiki edicciones
352 label_wiki_page: Wiki página
353 label_wiki_page: Wiki página
353 label_wiki_page_plural: Wiki páginas
354 label_wiki_page_plural: Wiki páginas
354 label_page_index: Índice
355 label_page_index: Índice
355 label_current_version: Versión actual
356 label_current_version: Versión actual
356 label_preview: Previsualizar
357 label_preview: Previsualizar
357 label_feed_plural: Feeds
358 label_feed_plural: Feeds
358 label_changes_details: Detalles de todos los cambios
359 label_changes_details: Detalles de todos los cambios
359 label_issue_tracking: Peticiones
360 label_issue_tracking: Peticiones
360 label_spent_time: Tiempo dedicado
361 label_spent_time: Tiempo dedicado
361 label_f_hour: %.2f hora
362 label_f_hour: %.2f hora
362 label_f_hour_plural: %.2f horas
363 label_f_hour_plural: %.2f horas
363 label_time_tracking: Tiempo tracking
364 label_time_tracking: Tiempo tracking
364 label_change_plural: Cambios
365 label_change_plural: Cambios
365 label_statistics: Estadísticas
366 label_statistics: Estadísticas
366 label_commits_per_month: Commits por mes
367 label_commits_per_month: Commits por mes
367 label_commits_per_author: Commits por autor
368 label_commits_per_author: Commits por autor
368 label_view_diff: Ver diferencias
369 label_view_diff: Ver diferencias
369 label_diff_inline: en línea
370 label_diff_inline: en línea
370 label_diff_side_by_side: cara a cara
371 label_diff_side_by_side: cara a cara
371 label_options: Opciones
372 label_options: Opciones
372 label_copy_workflow_from: Copiar workflow desde
373 label_copy_workflow_from: Copiar workflow desde
373 label_permissions_report: Informe de permisos
374 label_permissions_report: Informe de permisos
374 label_watched_issues: Peticiones monitorizadas
375 label_watched_issues: Peticiones monitorizadas
375 label_related_issues: Peticiones relacionadas
376 label_related_issues: Peticiones relacionadas
376 label_applied_status: Aplicar estado
377 label_applied_status: Aplicar estado
377 label_loading: Cargando...
378 label_loading: Cargando...
378 label_relation_new: Nueva relación
379 label_relation_new: Nueva relación
379 label_relation_delete: Eliminar relación
380 label_relation_delete: Eliminar relación
380 label_relates_to: relacionada con
381 label_relates_to: relacionada con
381 label_duplicates: duplicada de
382 label_duplicates: duplicada de
382 label_blocks: bloquea a
383 label_blocks: bloquea a
383 label_blocked_by: bloqueado por
384 label_blocked_by: bloqueado por
384 label_precedes: anterior a
385 label_precedes: anterior a
385 label_follows: posterior a
386 label_follows: posterior a
386 label_end_to_start: fin a principio
387 label_end_to_start: fin a principio
387 label_end_to_end: fin a fin
388 label_end_to_end: fin a fin
388 label_start_to_start: principio a principio
389 label_start_to_start: principio a principio
389 label_start_to_end: principio a fin
390 label_start_to_end: principio a fin
390 label_stay_logged_in: Recordar conexión
391 label_stay_logged_in: Recordar conexión
391 label_disabled: deshabilitado
392 label_disabled: deshabilitado
392 label_show_completed_versions: Muestra las versiones completas
393 label_show_completed_versions: Muestra las versiones completas
393 label_me: yo mismo
394 label_me: yo mismo
394 label_board: Foro
395 label_board: Foro
395 label_board_new: Nuevo foro
396 label_board_new: Nuevo foro
396 label_board_plural: Foros
397 label_board_plural: Foros
397 label_topic_plural: Temas
398 label_topic_plural: Temas
398 label_message_plural: Mensajes
399 label_message_plural: Mensajes
399 label_message_last: Último mensaje
400 label_message_last: Último mensaje
400 label_message_new: Nuevo mensaje
401 label_message_new: Nuevo mensaje
401 label_reply_plural: Respuestas
402 label_reply_plural: Respuestas
402 label_send_information: Enviar información de la cuenta al usuario
403 label_send_information: Enviar información de la cuenta al usuario
403 label_year: Año
404 label_year: Año
404 label_month: Mes
405 label_month: Mes
405 label_week: Semana
406 label_week: Semana
406 label_date_from: Desde
407 label_date_from: Desde
407 label_date_to: Hasta
408 label_date_to: Hasta
408 label_language_based: Badado en el idioma
409 label_language_based: Badado en el idioma
409
410
410 button_login: Conexión
411 button_login: Conexión
411 button_submit: Aceptar
412 button_submit: Aceptar
412 button_save: Guardar
413 button_save: Guardar
413 button_check_all: Seleccionar todo
414 button_check_all: Seleccionar todo
414 button_uncheck_all: No seleccionar nada
415 button_uncheck_all: No seleccionar nada
415 button_delete: Borrar
416 button_delete: Borrar
416 button_create: Crear
417 button_create: Crear
417 button_test: Probar
418 button_test: Probar
418 button_edit: Modificar
419 button_edit: Modificar
419 button_add: Añadir
420 button_add: Añadir
420 button_change: Cambiar
421 button_change: Cambiar
421 button_apply: Aceptar
422 button_apply: Aceptar
422 button_clear: Anular
423 button_clear: Anular
423 button_lock: Bloquear
424 button_lock: Bloquear
424 button_unlock: Desbloquear
425 button_unlock: Desbloquear
425 button_download: Descargar
426 button_download: Descargar
426 button_list: Listar
427 button_list: Listar
427 button_view: Ver
428 button_view: Ver
428 button_move: Mover
429 button_move: Mover
429 button_back: Atrás
430 button_back: Atrás
430 button_cancel: Cancelar
431 button_cancel: Cancelar
431 button_activate: Activar
432 button_activate: Activar
432 button_sort: Clasificar
433 button_sort: Clasificar
433 button_log_time: Tiempo dedicado
434 button_log_time: Tiempo dedicado
434 button_rollback: Volver a esta versión
435 button_rollback: Volver a esta versión
435 button_watch: Monitorizar
436 button_watch: Monitorizar
436 button_unwatch: No monitorizar
437 button_unwatch: No monitorizar
437 button_reply: Responder
438 button_reply: Responder
438 button_archive: Archivar
439 button_archive: Archivar
439 button_unarchive: Desarchivar
440 button_unarchive: Desarchivar
440
441
441 status_active: activo
442 status_active: activo
442 status_registered: registrado
443 status_registered: registrado
443 status_locked: bloqueado
444 status_locked: bloqueado
444
445
445 text_select_mail_notifications: Seleccionar los eventos a notificar
446 text_select_mail_notifications: Seleccionar los eventos a notificar
446 text_regexp_info: eg. ^[A-Z0-9]+$
447 text_regexp_info: eg. ^[A-Z0-9]+$
447 text_min_max_length_info: 0 para ninguna restricción
448 text_min_max_length_info: 0 para ninguna restricción
448 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
449 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
449 text_workflow_edit: Seleccionar un flujo de trabajo para actualizar
450 text_workflow_edit: Seleccionar un flujo de trabajo para actualizar
450 text_are_you_sure: ¿ Estás seguro ?
451 text_are_you_sure: ¿ Estás seguro ?
451 text_journal_changed: cambiado de %s a %s
452 text_journal_changed: cambiado de %s a %s
452 text_journal_set_to: fijado a %s
453 text_journal_set_to: fijado a %s
453 text_journal_deleted: suprimido
454 text_journal_deleted: suprimido
454 text_tip_task_begin_day: tarea que comienza este día
455 text_tip_task_begin_day: tarea que comienza este día
455 text_tip_task_end_day: tarea que termina este día
456 text_tip_task_end_day: tarea que termina este día
456 text_tip_task_begin_end_day: tarea que comienza y termina este día
457 text_tip_task_begin_end_day: tarea que comienza y termina este día
457 text_project_identifier_info: 'Letras minúsculas (a-z), números y signos de puntuación permitidos.<br />Una vez guardado, el identificador no puede modificarse.'
458 text_project_identifier_info: 'Letras minúsculas (a-z), números y signos de puntuación permitidos.<br />Una vez guardado, el identificador no puede modificarse.'
458 text_caracters_maximum: %d carácteres como máximo.
459 text_caracters_maximum: %d carácteres como máximo.
459 text_length_between: Longitud entre %d y %d carácteres.
460 text_length_between: Longitud entre %d y %d carácteres.
460 text_tracker_no_workflow: No hay ningún workflow definido para este tracker
461 text_tracker_no_workflow: No hay ningún workflow definido para este tracker
461 text_unallowed_characters: Carácteres no permitidos
462 text_unallowed_characters: Carácteres no permitidos
462 text_comma_separated: Múltiples valores permitidos (separados por coma).
463 text_comma_separated: Múltiples valores permitidos (separados por coma).
463 text_issues_ref_in_commit_messages: Referencia y petición de corrección en los mensajes
464 text_issues_ref_in_commit_messages: Referencia y petición de corrección en los mensajes
464
465
465 default_role_manager: Jefe de proyecto
466 default_role_manager: Jefe de proyecto
466 default_role_developper: Desarrollador
467 default_role_developper: Desarrollador
467 default_role_reporter: Informador
468 default_role_reporter: Informador
468 default_tracker_bug: Errores
469 default_tracker_bug: Errores
469 default_tracker_feature: Tareas
470 default_tracker_feature: Tareas
470 default_tracker_support: Soporte
471 default_tracker_support: Soporte
471 default_issue_status_new: Nueva
472 default_issue_status_new: Nueva
472 default_issue_status_assigned: Asignada
473 default_issue_status_assigned: Asignada
473 default_issue_status_resolved: Resuelta
474 default_issue_status_resolved: Resuelta
474 default_issue_status_feedback: Comentarios
475 default_issue_status_feedback: Comentarios
475 default_issue_status_closed: Cerrada
476 default_issue_status_closed: Cerrada
476 default_issue_status_rejected: Rechazada
477 default_issue_status_rejected: Rechazada
477 default_doc_category_user: Documentación de usuario
478 default_doc_category_user: Documentación de usuario
478 default_doc_category_tech: Documentación técnica
479 default_doc_category_tech: Documentación técnica
479 default_priority_low: Baja
480 default_priority_low: Baja
480 default_priority_normal: Normal
481 default_priority_normal: Normal
481 default_priority_high: Alta
482 default_priority_high: Alta
482 default_priority_urgent: Urgente
483 default_priority_urgent: Urgente
483 default_priority_immediate: Inmediata
484 default_priority_immediate: Inmediata
484 default_activity_design: Diseño
485 default_activity_design: Diseño
485 default_activity_development: Desarrollo
486 default_activity_development: Desarrollo
486
487
487 enumeration_issue_priorities: Prioridad de las peticiones
488 enumeration_issue_priorities: Prioridad de las peticiones
488 enumeration_doc_categories: Categorías del documento
489 enumeration_doc_categories: Categorías del documento
489 enumeration_activities: Actividades (tiempo dedicado)
490 enumeration_activities: Actividades (tiempo dedicado)
490 label_index_by_date: Índice por fecha
491 label_index_by_date: Índice por fecha
491 field_column_names: Columnas
492 field_column_names: Columnas
492 button_rename: Renombrar
493 button_rename: Renombrar
493 text_issue_category_destroy_question: Algunas peticiones (%d) están asignadas a esta categoría. ¿Qué desea hacer?
494 text_issue_category_destroy_question: Algunas peticiones (%d) están asignadas a esta categoría. ¿Qué desea hacer?
494 label_feeds_access_key_created_on: Clave de acceso por RSS creada hace %s
495 label_feeds_access_key_created_on: Clave de acceso por RSS creada hace %s
495 label_default_columns: Columnas por defecto
496 label_default_columns: Columnas por defecto
496 setting_cross_project_issue_relations: Permitir relacionar peticiones de distintos proyectos
497 setting_cross_project_issue_relations: Permitir relacionar peticiones de distintos proyectos
497 label_roadmap_overdue: %s tarde
498 label_roadmap_overdue: %s tarde
498 label_module_plural: Módulos
499 label_module_plural: Módulos
499 label_this_week: esta semana
500 label_this_week: esta semana
500 label_index_by_title: Índice por título
501 label_index_by_title: Índice por título
501 label_jump_to_a_project: Ir al proyecto...
502 label_jump_to_a_project: Ir al proyecto...
502 field_assignable: Se pueden asignar peticiones a este perfil
503 field_assignable: Se pueden asignar peticiones a este perfil
503 label_sort_by: Ordenar por %s
504 label_sort_by: Ordenar por %s
504 setting_issue_list_default_columns: Columnas por defecto para la lista de peticiones
505 setting_issue_list_default_columns: Columnas por defecto para la lista de peticiones
505 text_issue_updated: La petición %s ha sido actualizada.
506 text_issue_updated: La petición %s ha sido actualizada.
506 notice_feeds_access_key_reseted: Su clave de acceso para RSS ha sido reiniciada
507 notice_feeds_access_key_reseted: Su clave de acceso para RSS ha sido reiniciada
507 field_redirect_existing_links: Redireccionar enlaces existentes
508 field_redirect_existing_links: Redireccionar enlaces existentes
508 text_issue_category_reassign_to: Reasignar las peticiones a la categoría
509 text_issue_category_reassign_to: Reasignar las peticiones a la categoría
509 notice_email_sent: Se ha enviado un correo a %s
510 notice_email_sent: Se ha enviado un correo a %s
510 text_issue_added: Petición añadida
511 text_issue_added: Petición añadida
511 field_comments: Comentario
512 field_comments: Comentario
512 label_file_plural: Archivos
513 label_file_plural: Archivos
513 text_wiki_destroy_confirmation: ¿Seguro que quiere borrar el wiki y todo su contenido?
514 text_wiki_destroy_confirmation: ¿Seguro que quiere borrar el wiki y todo su contenido?
514 notice_email_error: Ha ocurrido un error mientras enviando el correo (%s)
515 notice_email_error: Ha ocurrido un error mientras enviando el correo (%s)
515 label_updated_time: Actualizado hace %s
516 label_updated_time: Actualizado hace %s
516 text_issue_category_destroy_assignments: Dejar las peticiones sin categoría
517 text_issue_category_destroy_assignments: Dejar las peticiones sin categoría
517 label_send_test_email: Enviar un correo de prueba
518 label_send_test_email: Enviar un correo de prueba
518 button_reset: Reestablecer
519 button_reset: Reestablecer
519 label_added_time_by: Añadido por %s hace %s
520 label_added_time_by: Añadido por %s hace %s
520 field_estimated_hours: Tiempo estimado
521 field_estimated_hours: Tiempo estimado
521 label_changeset_plural: Cambios
522 label_changeset_plural: Cambios
522 setting_repositories_encodings: Codificaciones del repositorio
523 setting_repositories_encodings: Codificaciones del repositorio
523 notice_no_issue_selected: "Ninguna petición seleccionada. Por favor, compruebe la petición que quiere modificar"
524 notice_no_issue_selected: "Ninguna petición seleccionada. Por favor, compruebe la petición que quiere modificar"
524 label_bulk_edit_selected_issues: Editar las peticiones seleccionadas
525 label_bulk_edit_selected_issues: Editar las peticiones seleccionadas
525 label_no_change_option: (Sin cambios)
526 label_no_change_option: (Sin cambios)
526 notice_failed_to_save_issues: "Imposible salvar %s peticion(es) en %d seleccionado: %s."
527 notice_failed_to_save_issues: "Imposible salvar %s peticion(es) en %d seleccionado: %s."
527 label_theme: Tema
528 label_theme: Tema
528 label_default: Por defecto
529 label_default: Por defecto
529 label_search_titles_only: Buscar sólo en títulos
530 label_search_titles_only: Buscar sólo en títulos
530 label_nobody: nadie
531 label_nobody: nadie
531 button_change_password: Cambiar contraseña
532 button_change_password: Cambiar contraseña
532 text_user_mail_option: "En los proyectos no seleccionados, sólo recibirá notificaciones sobre elementos monitorizados o elementos en los que esté involucrado (por ejemplo, peticiones de las que usted sea autor o asignadas a usted)."
533 text_user_mail_option: "En los proyectos no seleccionados, sólo recibirá notificaciones sobre elementos monitorizados o elementos en los que esté involucrado (por ejemplo, peticiones de las que usted sea autor o asignadas a usted)."
533 label_user_mail_option_selected: "Para cualquier evento del proyecto seleccionado..."
534 label_user_mail_option_selected: "Para cualquier evento del proyecto seleccionado..."
534 label_user_mail_option_all: "Para cualquier evento en todos mis proyectos"
535 label_user_mail_option_all: "Para cualquier evento en todos mis proyectos"
535 label_user_mail_option_none: "Sólo para elementos monitorizados o relacionados conmigo"
536 label_user_mail_option_none: "Sólo para elementos monitorizados o relacionados conmigo"
536 setting_emails_footer: Pie de mensajes
537 setting_emails_footer: Pie de mensajes
537 label_float: Flotante
538 label_float: Flotante
538 button_copy: Copiar
539 button_copy: Copiar
539 mail_body_account_information_external: Puede usar su cuenta "%s" para conectarse a Redmine.
540 mail_body_account_information_external: Puede usar su cuenta "%s" para conectarse a Redmine.
540 mail_body_account_information: Información sobre su cuenta de Redmine
541 mail_body_account_information: Información sobre su cuenta de Redmine
541 setting_protocol: Protocolo
542 setting_protocol: Protocolo
542 text_caracters_minimum: %d carácteres como mínimo
543 text_caracters_minimum: %d carácteres como mínimo
543 field_time_zone: Zona horaria
544 field_time_zone: Zona horaria
544 label_registration_activation_by_email: activación de cuenta por correo
545 label_registration_activation_by_email: activación de cuenta por correo
545 label_user_mail_no_self_notified: "No quiero ser avisado de cambios hechos por mí"
546 label_user_mail_no_self_notified: "No quiero ser avisado de cambios hechos por mí"
546 mail_subject_account_activation_request: Petición de activación de cuenta Redmine
547 mail_subject_account_activation_request: Petición de activación de cuenta Redmine
547 mail_body_account_activation_request: "Un nuevo usuario (%s) ha sido registrado. Esta cuenta está pendiende de aprobación"
548 mail_body_account_activation_request: "Un nuevo usuario (%s) ha sido registrado. Esta cuenta está pendiende de aprobación"
548 label_registration_automatic_activation: activación automática de cuenta
549 label_registration_automatic_activation: activación automática de cuenta
549 label_registration_manual_activation: activación manual de cuenta
550 label_registration_manual_activation: activación manual de cuenta
550 notice_account_pending: "Su cuenta ha sido creada y está pendiende de la aprobación por parte de administrador"
551 notice_account_pending: "Su cuenta ha sido creada y está pendiende de la aprobación por parte de administrador"
551 setting_time_format: Formato de hora
552 setting_time_format: Formato de hora
552 setting_bcc_recipients: Ocultar las copias de carbon (bcc)
553 setting_bcc_recipients: Ocultar las copias de carbon (bcc)
553 button_annotate: Anotar
554 button_annotate: Anotar
554 label_issues_by: Peticiones por %s
555 label_issues_by: Peticiones por %s
555 field_searchable: Incluir en las búsquedas
556 field_searchable: Incluir en las búsquedas
556 label_display_per_page: 'Por página: %s'
557 label_display_per_page: 'Por página: %s'
557 setting_per_page_options: Objetos por página
558 setting_per_page_options: Objetos por página
558 label_age: Edad
559 label_age: Edad
559 notice_default_data_loaded: Default configuration successfully loaded.
560 notice_default_data_loaded: Default configuration successfully loaded.
560 text_load_default_configuration: Load the default configuration
561 text_load_default_configuration: Load the default configuration
561 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
562 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
562 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
563 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
563 button_update: Update
564 button_update: Update
564 label_change_properties: Change properties
565 label_change_properties: Change properties
565 label_general: General
566 label_general: General
566 label_repository_plural: Repositories
567 label_repository_plural: Repositories
567 label_associated_revisions: Associated revisions
568 label_associated_revisions: Associated revisions
@@ -1,569 +1,570
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Tammikuu,Helmikuu,Maaliskuu,Huhtikuu,Toukokuu,Kesäkuu,Heinäkuu,Elokuu,Syyskuu,Lokakuu,Marraskuu,Joulukuu
4 actionview_datehelper_select_month_names: Tammikuu,Helmikuu,Maaliskuu,Huhtikuu,Toukokuu,Kesäkuu,Heinäkuu,Elokuu,Syyskuu,Lokakuu,Marraskuu,Joulukuu
5 actionview_datehelper_select_month_names_abbr: Tammi,Helmi,Maalis,Huhti,Touko,Kesä,Heinä,Elo,Syys,Loka,Marras,Joulu
5 actionview_datehelper_select_month_names_abbr: Tammi,Helmi,Maalis,Huhti,Touko,Kesä,Heinä,Elo,Syys,Loka,Marras,Joulu
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 päivä
8 actionview_datehelper_time_in_words_day: 1 päivä
9 actionview_datehelper_time_in_words_day_plural: %d päivää
9 actionview_datehelper_time_in_words_day_plural: %d päivää
10 actionview_datehelper_time_in_words_hour_about: noin tunti
10 actionview_datehelper_time_in_words_hour_about: noin tunti
11 actionview_datehelper_time_in_words_hour_about_plural: noin %d tuntia
11 actionview_datehelper_time_in_words_hour_about_plural: noin %d tuntia
12 actionview_datehelper_time_in_words_hour_about_single: noin tunnin
12 actionview_datehelper_time_in_words_hour_about_single: noin tunnin
13 actionview_datehelper_time_in_words_minute: 1 minuutti
13 actionview_datehelper_time_in_words_minute: 1 minuutti
14 actionview_datehelper_time_in_words_minute_half: puoli minuuttia
14 actionview_datehelper_time_in_words_minute_half: puoli minuuttia
15 actionview_datehelper_time_in_words_minute_less_than: vähemmän kuin minuuttia
15 actionview_datehelper_time_in_words_minute_less_than: vähemmän kuin minuuttia
16 actionview_datehelper_time_in_words_minute_plural: %d minuuttia
16 actionview_datehelper_time_in_words_minute_plural: %d minuuttia
17 actionview_datehelper_time_in_words_minute_single: 1 minuutti
17 actionview_datehelper_time_in_words_minute_single: 1 minuutti
18 actionview_datehelper_time_in_words_second_less_than: vähemmän kuin sekuntin
18 actionview_datehelper_time_in_words_second_less_than: vähemmän kuin sekuntin
19 actionview_datehelper_time_in_words_second_less_than_plural: vähemmän kuin %d sekunttia
19 actionview_datehelper_time_in_words_second_less_than_plural: vähemmän kuin %d sekunttia
20 actionview_instancetag_blank_option: Valitse, ole hyvä
20 actionview_instancetag_blank_option: Valitse, ole hyvä
21
21
22 activerecord_error_inclusion: ei ole listalla
22 activerecord_error_inclusion: ei ole listalla
23 activerecord_error_exclusion: on varattu
23 activerecord_error_exclusion: on varattu
24 activerecord_error_invalid: ei ole kelpaava
24 activerecord_error_invalid: ei ole kelpaava
25 activerecord_error_confirmation: ei vastaa vahvistusta
25 activerecord_error_confirmation: ei vastaa vahvistusta
26 activerecord_error_accepted: tulee hyväksyä
26 activerecord_error_accepted: tulee hyväksyä
27 activerecord_error_empty: ei voi olla tyhjä
27 activerecord_error_empty: ei voi olla tyhjä
28 activerecord_error_blank: ei voi olla tyhjä
28 activerecord_error_blank: ei voi olla tyhjä
29 activerecord_error_too_long: on liian pitkä
29 activerecord_error_too_long: on liian pitkä
30 activerecord_error_too_short: on liian lyhyt
30 activerecord_error_too_short: on liian lyhyt
31 activerecord_error_wrong_length: on väärän pituinen
31 activerecord_error_wrong_length: on väärän pituinen
32 activerecord_error_taken: on jo varattu
32 activerecord_error_taken: on jo varattu
33 activerecord_error_not_a_number: ei ole numero
33 activerecord_error_not_a_number: ei ole numero
34 activerecord_error_not_a_date: ei ole oikea päivä
34 activerecord_error_not_a_date: ei ole oikea päivä
35 activerecord_error_greater_than_start_date: tulee olla aloituspäivän jälkeinen
35 activerecord_error_greater_than_start_date: tulee olla aloituspäivän jälkeinen
36 activerecord_error_not_same_project: ei kuulu samaan projektiin
36 activerecord_error_not_same_project: ei kuulu samaan projektiin
37 activerecord_error_circular_dependency: Tämä suhde loisi kiertävän suhteen.
37 activerecord_error_circular_dependency: Tämä suhde loisi kiertävän suhteen.
38
38
39 general_fmt_age: %d v.
39 general_fmt_age: %d v.
40 general_fmt_age_plural: %d vuotta
40 general_fmt_age_plural: %d vuotta
41 general_fmt_date: %%d.%%m.%%Y
41 general_fmt_date: %%d.%%m.%%Y
42 general_fmt_datetime: %%d.%%m.%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d.%%m.%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Ei'
45 general_text_No: 'Ei'
46 general_text_Yes: 'Kyllä'
46 general_text_Yes: 'Kyllä'
47 general_text_no: 'ei'
47 general_text_no: 'ei'
48 general_text_yes: 'kyllä'
48 general_text_yes: 'kyllä'
49 general_lang_name: 'Finnish (Suomi)'
49 general_lang_name: 'Finnish (Suomi)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Maanantai,Tiistai,Keskiviikko,Torstai,Perjantai,Lauantai,Sunnuntai
53 general_day_names: Maanantai,Tiistai,Keskiviikko,Torstai,Perjantai,Lauantai,Sunnuntai
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Tilin päivitys onnistui.
56 notice_account_updated: Tilin päivitys onnistui.
57 notice_account_invalid_creditentials: Väärä käyttäjä tai salasana
57 notice_account_invalid_creditentials: Väärä käyttäjä tai salasana
58 notice_account_password_updated: Salasanan päivitys onnistui.
58 notice_account_password_updated: Salasanan päivitys onnistui.
59 notice_account_wrong_password: Väärä salasana
59 notice_account_wrong_password: Väärä salasana
60 notice_account_register_done: Tilin luonti onnistui. Aktivoidaksesi tilin seuraa linkkiä joka välitettiin sähköpostiisi.
60 notice_account_register_done: Tilin luonti onnistui. Aktivoidaksesi tilin seuraa linkkiä joka välitettiin sähköpostiisi.
61 notice_account_unknown_email: Tuntematon käyttäjä.
61 notice_account_unknown_email: Tuntematon käyttäjä.
62 notice_can_t_change_password: Tämä tili käyttää ulkoista autentikointi järjestelmää. Mahdotonta muuttaa salasanaa.
62 notice_can_t_change_password: Tämä tili käyttää ulkoista autentikointi järjestelmää. Mahdotonta muuttaa salasanaa.
63 notice_account_lost_email_sent: Sinulle on lähetetty sähköposti jossa on ohje miten vaihdat salasanasi.
63 notice_account_lost_email_sent: Sinulle on lähetetty sähköposti jossa on ohje miten vaihdat salasanasi.
64 notice_account_activated: Tilisi on nyt aktivoitu, voit kirjautua sisälle.
64 notice_account_activated: Tilisi on nyt aktivoitu, voit kirjautua sisälle.
65 notice_successful_create: Luonti onnistui.
65 notice_successful_create: Luonti onnistui.
66 notice_successful_update: Päivitys onnistui.
66 notice_successful_update: Päivitys onnistui.
67 notice_successful_delete: Poisto onnistui.
67 notice_successful_delete: Poisto onnistui.
68 notice_successful_connection: Yhteyden muodostus onnistui.
68 notice_successful_connection: Yhteyden muodostus onnistui.
69 notice_file_not_found: Hakemaasi sivua ei löytynyt tai se on poistettu.
69 notice_file_not_found: Hakemaasi sivua ei löytynyt tai se on poistettu.
70 notice_locking_conflict: Toinen käyttäjä on päivittänyt tiedot.
70 notice_locking_conflict: Toinen käyttäjä on päivittänyt tiedot.
71 notice_scm_error: Syötettä ja/tai versiota ei löydy säiliöstä.
71 notice_scm_error: Syötettä ja/tai versiota ei löydy säiliöstä.
72 notice_not_authorized: Sinulla ei ole oikeutta näyttää tätä sivua.
72 notice_not_authorized: Sinulla ei ole oikeutta näyttää tätä sivua.
73 notice_email_sent: Sähköposti on lähetty osoitteeseen %s
73 notice_email_sent: Sähköposti on lähetty osoitteeseen %s
74 notice_email_error: Sähköpostilähetyksessä tapahtui virhe (%s)
74 notice_email_error: Sähköpostilähetyksessä tapahtui virhe (%s)
75 notice_feeds_access_key_reseted: RSS pääsy avaimesi on nollaantunut.
75 notice_feeds_access_key_reseted: RSS pääsy avaimesi on nollaantunut.
76 notice_failed_to_save_issues: "%d Tapahtum(an/ien) tallennus epäonnistui %d valitut: %s."
76 notice_failed_to_save_issues: "%d Tapahtum(an/ien) tallennus epäonnistui %d valitut: %s."
77 notice_no_issue_selected: "Tapahtumia ei ole valittu! Valitse tapahtumat joita haluat muokata."
77 notice_no_issue_selected: "Tapahtumia ei ole valittu! Valitse tapahtumat joita haluat muokata."
78 notice_account_pending: "Tilisi on luotu ja odottaa ylläpitäjän hyväksyntää."
78 notice_account_pending: "Tilisi on luotu ja odottaa ylläpitäjän hyväksyntää."
79 notice_default_data_loaded: Vakio asetusten palautus onnistui.
79 notice_default_data_loaded: Vakio asetusten palautus onnistui.
80
80
81 error_can_t_load_default_data: "Vakio asetuksia ei voitu ladata: %s"
81 error_can_t_load_default_data: "Vakio asetuksia ei voitu ladata: %s"
82
82
83 mail_subject_lost_password: Sinun Redmine salasanasi
83 mail_subject_lost_password: Sinun Redmine salasanasi
84 mail_body_lost_password: 'Vaihtaaksesi Redmine salasanasi, paina seuraavaa linkkiä:'
84 mail_body_lost_password: 'Vaihtaaksesi Redmine salasanasi, paina seuraavaa linkkiä:'
85 mail_subject_register: Redmine tilin aktivointi
85 mail_subject_register: Redmine tilin aktivointi
86 mail_body_register: 'Aktivoidaksesi Redmine tilisi, paina seuraavaa linkkiä:'
86 mail_body_register: 'Aktivoidaksesi Redmine tilisi, paina seuraavaa linkkiä:'
87 mail_body_account_information_external: Voit nyt käyttää "%s" tiliäsi kirjautuaksesi Redmine järjestelmään.
87 mail_body_account_information_external: Voit nyt käyttää "%s" tiliäsi kirjautuaksesi Redmine järjestelmään.
88 mail_body_account_information: Sinun Redmine tilin tiedot
88 mail_body_account_information: Sinun Redmine tilin tiedot
89 mail_subject_account_activation_request: Redmine tilin aktivointi pyyntö
89 mail_subject_account_activation_request: Redmine tilin aktivointi pyyntö
90 mail_body_account_activation_request: 'Uusi käyttäjä (%s) on rekisteröitynyt. Hänen tili odottaa hyväksyntääsi:'
90 mail_body_account_activation_request: 'Uusi käyttäjä (%s) on rekisteröitynyt. Hänen tili odottaa hyväksyntääsi:'
91
91
92 gui_validation_error: 1 virhe
92 gui_validation_error: 1 virhe
93 gui_validation_error_plural: %d virhettä
93 gui_validation_error_plural: %d virhettä
94
94
95 field_name: Nimi
95 field_name: Nimi
96 field_description: Kuvaus
96 field_description: Kuvaus
97 field_summary: Yhteenveto
97 field_summary: Yhteenveto
98 field_is_required: Vaaditaan
98 field_is_required: Vaaditaan
99 field_firstname: Etu nimi
99 field_firstname: Etu nimi
100 field_lastname: Suku nimi
100 field_lastname: Suku nimi
101 field_mail: Sähköposti
101 field_mail: Sähköposti
102 field_filename: Tiedosto
102 field_filename: Tiedosto
103 field_filesize: Koko
103 field_filesize: Koko
104 field_downloads: Latausta
104 field_downloads: Latausta
105 field_author: Tekijä
105 field_author: Tekijä
106 field_created_on: Luotu
106 field_created_on: Luotu
107 field_updated_on: Päivitetty
107 field_updated_on: Päivitetty
108 field_field_format: Muoto
108 field_field_format: Muoto
109 field_is_for_all: Kaikille projekteille
109 field_is_for_all: Kaikille projekteille
110 field_possible_values: Mahdolliset arvot
110 field_possible_values: Mahdolliset arvot
111 field_regexp: Säännönmukainen ilmentymä (reg exp)
111 field_regexp: Säännönmukainen ilmentymä (reg exp)
112 field_min_length: Minimi pituus
112 field_min_length: Minimi pituus
113 field_max_length: Maksimi pituus
113 field_max_length: Maksimi pituus
114 field_value: Arvo
114 field_value: Arvo
115 field_category: Luokka
115 field_category: Luokka
116 field_title: Otsikko
116 field_title: Otsikko
117 field_project: Projekti
117 field_project: Projekti
118 field_issue: Tapahtuma
118 field_issue: Tapahtuma
119 field_status: Tila
119 field_status: Tila
120 field_notes: Muistiinpanot
120 field_notes: Muistiinpanot
121 field_is_closed: Tapahtuma suljettu
121 field_is_closed: Tapahtuma suljettu
122 field_is_default: Vakio arvo
122 field_is_default: Vakio arvo
123 field_tracker: Tiketti
123 field_tracker: Tiketti
124 field_subject: Aihe
124 field_subject: Aihe
125 field_due_date: Määräaika
125 field_due_date: Määräaika
126 field_assigned_to: Nimetty
126 field_assigned_to: Nimetty
127 field_priority: Prioriteetti
127 field_priority: Prioriteetti
128 field_fixed_version: Määrätty versio
128 field_fixed_version: Määrätty versio
129 field_user: Käyttäjä
129 field_user: Käyttäjä
130 field_role: Rooli
130 field_role: Rooli
131 field_homepage: Kotisivu
131 field_homepage: Kotisivu
132 field_is_public: Julkinen
132 field_is_public: Julkinen
133 field_parent: Alaprojekti
133 field_parent: Alaprojekti
134 field_is_in_chlog: Tapahtumat näytetään muutoslokissa
134 field_is_in_chlog: Tapahtumat näytetään muutoslokissa
135 field_is_in_roadmap: Tapahtumat näytetään roadmap näkymässä
135 field_is_in_roadmap: Tapahtumat näytetään roadmap näkymässä
136 field_login: Kirjautuminen
136 field_login: Kirjautuminen
137 field_mail_notification: Sähköposti muistutukset
137 field_mail_notification: Sähköposti muistutukset
138 field_admin: Ylläpitäjä
138 field_admin: Ylläpitäjä
139 field_last_login_on: Viimeinen yhteys
139 field_last_login_on: Viimeinen yhteys
140 field_language: Kieli
140 field_language: Kieli
141 field_effective_date: Päivä
141 field_effective_date: Päivä
142 field_password: Salasana
142 field_password: Salasana
143 field_new_password: Uusi salasana
143 field_new_password: Uusi salasana
144 field_password_confirmation: Vahvistus
144 field_password_confirmation: Vahvistus
145 field_version: Versio
145 field_version: Versio
146 field_type: Tyyppi
146 field_type: Tyyppi
147 field_host: Isäntä
147 field_host: Isäntä
148 field_port: Portti
148 field_port: Portti
149 field_account: Tili
149 field_account: Tili
150 field_base_dn: Base DN
150 field_base_dn: Base DN
151 field_attr_login: Kirjautumis määre
151 field_attr_login: Kirjautumis määre
152 field_attr_firstname: Etuminen määre
152 field_attr_firstname: Etuminen määre
153 field_attr_lastname: Sukunimen määre
153 field_attr_lastname: Sukunimen määre
154 field_attr_mail: Sähköpostin määre
154 field_attr_mail: Sähköpostin määre
155 field_onthefly: Automaattinen käyttäjien luonti
155 field_onthefly: Automaattinen käyttäjien luonti
156 field_start_date: Alku
156 field_start_date: Alku
157 field_done_ratio: %% Tehty
157 field_done_ratio: %% Tehty
158 field_auth_source: Autentikointi muoto
158 field_auth_source: Autentikointi muoto
159 field_hide_mail: Piiloita sähköpostiosoitteeni
159 field_hide_mail: Piiloita sähköpostiosoitteeni
160 field_comments: Kommentti
160 field_comments: Kommentti
161 field_url: URL
161 field_url: URL
162 field_start_page: Aloitus sivu
162 field_start_page: Aloitus sivu
163 field_subproject: Alaprojekti
163 field_subproject: Alaprojekti
164 field_hours: Tuntia
164 field_hours: Tuntia
165 field_activity: Aktiviteetti
165 field_activity: Aktiviteetti
166 field_spent_on: Päivä
166 field_spent_on: Päivä
167 field_identifier: Tunniste
167 field_identifier: Tunniste
168 field_is_filter: Käytetään suodattimena
168 field_is_filter: Käytetään suodattimena
169 field_issue_to_id: Liittyvä tapahtuma
169 field_issue_to_id: Liittyvä tapahtuma
170 field_delay: Viive
170 field_delay: Viive
171 field_assignable: Tapahtumia voidaan nimetä tälle roolille
171 field_assignable: Tapahtumia voidaan nimetä tälle roolille
172 field_redirect_existing_links: Uudelleenohjaa olemassa olevat linkit
172 field_redirect_existing_links: Uudelleenohjaa olemassa olevat linkit
173 field_estimated_hours: Arvioitu aika
173 field_estimated_hours: Arvioitu aika
174 field_column_names: Saraketta
174 field_column_names: Saraketta
175 field_time_zone: Aikavyöhyke
175 field_time_zone: Aikavyöhyke
176 field_searchable: Haettava
176 field_searchable: Haettava
177 field_default_value: Vakio arvo
177
178
178 setting_app_title: Ohjelman otsikko
179 setting_app_title: Ohjelman otsikko
179 setting_app_subtitle: Ohjelman alaotsikko
180 setting_app_subtitle: Ohjelman alaotsikko
180 setting_welcome_text: Tervetulo teksti
181 setting_welcome_text: Tervetulo teksti
181 setting_default_language: Vakio kieli
182 setting_default_language: Vakio kieli
182 setting_login_required: Pakollinen autentikointi
183 setting_login_required: Pakollinen autentikointi
183 setting_self_registration: Tee-Se-Itse rekisteröinti
184 setting_self_registration: Tee-Se-Itse rekisteröinti
184 setting_attachment_max_size: Liitteen maksimi koko
185 setting_attachment_max_size: Liitteen maksimi koko
185 setting_issues_export_limit: Tapahtumien vienti rajoite
186 setting_issues_export_limit: Tapahtumien vienti rajoite
186 setting_mail_from: Lähettäjän sähköpostiosoite
187 setting_mail_from: Lähettäjän sähköpostiosoite
187 setting_bcc_recipients: Blind carbon copy vastaanottajat (bcc)
188 setting_bcc_recipients: Blind carbon copy vastaanottajat (bcc)
188 setting_host_name: Isännän nimi
189 setting_host_name: Isännän nimi
189 setting_text_formatting: Tekstin muotoilu
190 setting_text_formatting: Tekstin muotoilu
190 setting_wiki_compression: Wiki historian pakkaus
191 setting_wiki_compression: Wiki historian pakkaus
191 setting_feeds_limit: Syötteen sisällön raja
192 setting_feeds_limit: Syötteen sisällön raja
192 setting_autofetch_changesets: Automaatisen haun souritukset
193 setting_autofetch_changesets: Automaatisen haun souritukset
193 setting_sys_api_enabled: Salli WS säiliön hallintaan
194 setting_sys_api_enabled: Salli WS säiliön hallintaan
194 setting_commit_ref_keywords: Viittaavat hakusanat
195 setting_commit_ref_keywords: Viittaavat hakusanat
195 setting_commit_fix_keywords: Korjaavat hakusanat
196 setting_commit_fix_keywords: Korjaavat hakusanat
196 setting_autologin: Automaatinen kirjautuminen
197 setting_autologin: Automaatinen kirjautuminen
197 setting_date_format: Päivän muoto
198 setting_date_format: Päivän muoto
198 setting_time_format: Ajan muoto
199 setting_time_format: Ajan muoto
199 setting_cross_project_issue_relations: Salli projektien väliset tapahtuminen suhteet
200 setting_cross_project_issue_relations: Salli projektien väliset tapahtuminen suhteet
200 setting_issue_list_default_columns: Vakio sarakkeiden näyttö tapahtuma listauksessa
201 setting_issue_list_default_columns: Vakio sarakkeiden näyttö tapahtuma listauksessa
201 setting_repositories_encodings: Säiliön koodaus
202 setting_repositories_encodings: Säiliön koodaus
202 setting_emails_footer: Sähköpostin alatunniste
203 setting_emails_footer: Sähköpostin alatunniste
203 setting_protocol: Protokolla
204 setting_protocol: Protokolla
204 setting_per_page_options: Sivun objektien määrän asetukset
205 setting_per_page_options: Sivun objektien määrän asetukset
205
206
206 label_user: Käyttäjä
207 label_user: Käyttäjä
207 label_user_plural: Käyttäjiä
208 label_user_plural: Käyttäjiä
208 label_user_new: Uusi käyttäjä
209 label_user_new: Uusi käyttäjä
209 label_project: Projekti
210 label_project: Projekti
210 label_project_new: Uusi projekti
211 label_project_new: Uusi projekti
211 label_project_plural: Projektit
212 label_project_plural: Projektit
212 label_project_all: Kaikki projektit
213 label_project_all: Kaikki projektit
213 label_project_latest: Uusimmat projektit
214 label_project_latest: Uusimmat projektit
214 label_issue: Tapahtuma
215 label_issue: Tapahtuma
215 label_issue_new: Uusi tapahtuma
216 label_issue_new: Uusi tapahtuma
216 label_issue_plural: Tapahtumat
217 label_issue_plural: Tapahtumat
217 label_issue_view_all: Näytä kaikki tapahtumat
218 label_issue_view_all: Näytä kaikki tapahtumat
218 label_issues_by: Tapahtumat %s
219 label_issues_by: Tapahtumat %s
219 label_document: Dokumentti
220 label_document: Dokumentti
220 label_document_new: Uusi dokumentti
221 label_document_new: Uusi dokumentti
221 label_document_plural: Dokumentit
222 label_document_plural: Dokumentit
222 label_role: Rooli
223 label_role: Rooli
223 label_role_plural: Roolit
224 label_role_plural: Roolit
224 label_role_new: Uusi rooli
225 label_role_new: Uusi rooli
225 label_role_and_permissions: Roolit ja oikeudet
226 label_role_and_permissions: Roolit ja oikeudet
226 label_member: Jäsen
227 label_member: Jäsen
227 label_member_new: Uusi jäsen
228 label_member_new: Uusi jäsen
228 label_member_plural: Jäsenet
229 label_member_plural: Jäsenet
229 label_tracker: Tiketti
230 label_tracker: Tiketti
230 label_tracker_plural: Tiketit
231 label_tracker_plural: Tiketit
231 label_tracker_new: Uusi tiketti
232 label_tracker_new: Uusi tiketti
232 label_workflow: Työnkulku
233 label_workflow: Työnkulku
233 label_issue_status: Tapahtuman tila
234 label_issue_status: Tapahtuman tila
234 label_issue_status_plural: Tapahtumien tilat
235 label_issue_status_plural: Tapahtumien tilat
235 label_issue_status_new: Uusi tila
236 label_issue_status_new: Uusi tila
236 label_issue_category: Tapahtuma luokka
237 label_issue_category: Tapahtuma luokka
237 label_issue_category_plural: Tapahtuma luokat
238 label_issue_category_plural: Tapahtuma luokat
238 label_issue_category_new: Uusi luokka
239 label_issue_category_new: Uusi luokka
239 label_custom_field: Räätälöity kenttä
240 label_custom_field: Räätälöity kenttä
240 label_custom_field_plural: Räätälöidyt kentät
241 label_custom_field_plural: Räätälöidyt kentät
241 label_custom_field_new: Uusi räätälöity kenttä
242 label_custom_field_new: Uusi räätälöity kenttä
242 label_enumerations: Lista
243 label_enumerations: Lista
243 label_enumeration_new: Uusi arvo
244 label_enumeration_new: Uusi arvo
244 label_information: Tieto
245 label_information: Tieto
245 label_information_plural: Tiedot
246 label_information_plural: Tiedot
246 label_please_login: Kirjaudu ole hyvä
247 label_please_login: Kirjaudu ole hyvä
247 label_register: Rekisteröidy
248 label_register: Rekisteröidy
248 label_password_lost: Hukattu salasana
249 label_password_lost: Hukattu salasana
249 label_home: Koti
250 label_home: Koti
250 label_my_page: Minun sivu
251 label_my_page: Minun sivu
251 label_my_account: Minun tili
252 label_my_account: Minun tili
252 label_my_projects: Minun projektit
253 label_my_projects: Minun projektit
253 label_administration: Ylläpito
254 label_administration: Ylläpito
254 label_login: Kirjaudu sisään
255 label_login: Kirjaudu sisään
255 label_logout: Kirjaudu ulos
256 label_logout: Kirjaudu ulos
256 label_help: Apua
257 label_help: Apua
257 label_reported_issues: Raportoidut tapahtumat
258 label_reported_issues: Raportoidut tapahtumat
258 label_assigned_to_me_issues: Minulle nimetyt tapahtumat
259 label_assigned_to_me_issues: Minulle nimetyt tapahtumat
259 label_last_login: Viimeinen yhteys
260 label_last_login: Viimeinen yhteys
260 label_last_updates: Viimeinen päivitys
261 label_last_updates: Viimeinen päivitys
261 label_last_updates_plural: %d päivitetty viimeksi
262 label_last_updates_plural: %d päivitetty viimeksi
262 label_registered_on: Rekisteröity
263 label_registered_on: Rekisteröity
263 label_activity: Aktiviteetti
264 label_activity: Aktiviteetti
264 label_new: Uusi
265 label_new: Uusi
265 label_logged_as: Kirjauduttu nimellä
266 label_logged_as: Kirjauduttu nimellä
266 label_environment: Ympäristö
267 label_environment: Ympäristö
267 label_authentication: Autentikointi
268 label_authentication: Autentikointi
268 label_auth_source: Autentikointi tapa
269 label_auth_source: Autentikointi tapa
269 label_auth_source_new: Uusi autentikointi tapa
270 label_auth_source_new: Uusi autentikointi tapa
270 label_auth_source_plural: Autentikointi tavat
271 label_auth_source_plural: Autentikointi tavat
271 label_subproject_plural: Alaprojektit
272 label_subproject_plural: Alaprojektit
272 label_min_max_length: Min - Max pituudet
273 label_min_max_length: Min - Max pituudet
273 label_list: Lista
274 label_list: Lista
274 label_date: Päivä
275 label_date: Päivä
275 label_integer: Kokonaisluku
276 label_integer: Kokonaisluku
276 label_float: Liukuluku
277 label_float: Liukuluku
277 label_boolean: Totuusarvomuuttuja
278 label_boolean: Totuusarvomuuttuja
278 label_string: Merkkijono
279 label_string: Merkkijono
279 label_text: Pitkä merkkijono
280 label_text: Pitkä merkkijono
280 label_attribute: Määre
281 label_attribute: Määre
281 label_attribute_plural: Määreet
282 label_attribute_plural: Määreet
282 label_download: %d Lataus
283 label_download: %d Lataus
283 label_download_plural: %d Lataukset
284 label_download_plural: %d Lataukset
284 label_no_data: Ei tietoa näytettäväksi
285 label_no_data: Ei tietoa näytettäväksi
285 label_change_status: Muutos tila
286 label_change_status: Muutos tila
286 label_history: Historia
287 label_history: Historia
287 label_attachment: Tiedosto
288 label_attachment: Tiedosto
288 label_attachment_new: Uusi tiedosto
289 label_attachment_new: Uusi tiedosto
289 label_attachment_delete: Poista tiedosto
290 label_attachment_delete: Poista tiedosto
290 label_attachment_plural: Tiedostot
291 label_attachment_plural: Tiedostot
291 label_report: Raportti
292 label_report: Raportti
292 label_report_plural: Raportit
293 label_report_plural: Raportit
293 label_news: Uutinen
294 label_news: Uutinen
294 label_news_new: Lisää uutinen
295 label_news_new: Lisää uutinen
295 label_news_plural: Uutiset
296 label_news_plural: Uutiset
296 label_news_latest: Viimeisimmät uutiset
297 label_news_latest: Viimeisimmät uutiset
297 label_news_view_all: Näytä kaikki uutiset
298 label_news_view_all: Näytä kaikki uutiset
298 label_change_log: Muutosloki
299 label_change_log: Muutosloki
299 label_settings: Asetukset
300 label_settings: Asetukset
300 label_overview: Yleiskatsaus
301 label_overview: Yleiskatsaus
301 label_version: Versio
302 label_version: Versio
302 label_version_new: Uusi versio
303 label_version_new: Uusi versio
303 label_version_plural: Versiot
304 label_version_plural: Versiot
304 label_confirmation: Vahvistus
305 label_confirmation: Vahvistus
305 label_export_to: Vie
306 label_export_to: Vie
306 label_read: Lukee...
307 label_read: Lukee...
307 label_public_projects: Julkiset projektit
308 label_public_projects: Julkiset projektit
308 label_open_issues: avoin
309 label_open_issues: avoin
309 label_open_issues_plural: avointa
310 label_open_issues_plural: avointa
310 label_closed_issues: suljettu
311 label_closed_issues: suljettu
311 label_closed_issues_plural: suljettua
312 label_closed_issues_plural: suljettua
312 label_total: Yhteensä
313 label_total: Yhteensä
313 label_permissions: Oikeudet
314 label_permissions: Oikeudet
314 label_current_status: Nykyinen tila
315 label_current_status: Nykyinen tila
315 label_new_statuses_allowed: Uudet tilat sallittu
316 label_new_statuses_allowed: Uudet tilat sallittu
316 label_all: kaikki
317 label_all: kaikki
317 label_none: ei mitään
318 label_none: ei mitään
318 label_nobody: ei kukaan
319 label_nobody: ei kukaan
319 label_next: Seuraava
320 label_next: Seuraava
320 label_previous: Edellinen
321 label_previous: Edellinen
321 label_used_by: Käytetty
322 label_used_by: Käytetty
322 label_details: Yksityiskohdat
323 label_details: Yksityiskohdat
323 label_add_note: Lisää muistiinpano
324 label_add_note: Lisää muistiinpano
324 label_per_page: Per sivu
325 label_per_page: Per sivu
325 label_calendar: Kalenteri
326 label_calendar: Kalenteri
326 label_months_from: kuukauden päässä
327 label_months_from: kuukauden päässä
327 label_gantt: Gantt
328 label_gantt: Gantt
328 label_internal: Sisäinen
329 label_internal: Sisäinen
329 label_last_changes: viimeiset %d muutokset
330 label_last_changes: viimeiset %d muutokset
330 label_change_view_all: Näytä kaikki muutokset
331 label_change_view_all: Näytä kaikki muutokset
331 label_personalize_page: Personoi tämä sivu
332 label_personalize_page: Personoi tämä sivu
332 label_comment: Kommentti
333 label_comment: Kommentti
333 label_comment_plural: Kommentit
334 label_comment_plural: Kommentit
334 label_comment_add: Lisää kommentti
335 label_comment_add: Lisää kommentti
335 label_comment_added: Kommentti lisätty
336 label_comment_added: Kommentti lisätty
336 label_comment_delete: Poista kommentti
337 label_comment_delete: Poista kommentti
337 label_query: Räätälöity haku
338 label_query: Räätälöity haku
338 label_query_plural: Räätälöidyt haut
339 label_query_plural: Räätälöidyt haut
339 label_query_new: Uusi haku
340 label_query_new: Uusi haku
340 label_filter_add: Lisää suodatin
341 label_filter_add: Lisää suodatin
341 label_filter_plural: Suodattimet
342 label_filter_plural: Suodattimet
342 label_equals: yhtä kuin
343 label_equals: yhtä kuin
343 label_not_equals: epäsuuri kuin
344 label_not_equals: epäsuuri kuin
344 label_in_less_than: pienempi kuin
345 label_in_less_than: pienempi kuin
345 label_in_more_than: suurempi kuin
346 label_in_more_than: suurempi kuin
346 label_in:
347 label_in:
347 label_today: tänään
348 label_today: tänään
348 label_this_week: tämä viikko
349 label_this_week: tämä viikko
349 label_less_than_ago: vähemmän kuin päivää sitten
350 label_less_than_ago: vähemmän kuin päivää sitten
350 label_more_than_ago: enemän kuin päivää sitten
351 label_more_than_ago: enemän kuin päivää sitten
351 label_ago: päiviä sitten
352 label_ago: päiviä sitten
352 label_contains: sisältää
353 label_contains: sisältää
353 label_not_contains: ei sisällä
354 label_not_contains: ei sisällä
354 label_day_plural: päivät
355 label_day_plural: päivät
355 label_repository: Säiliö
356 label_repository: Säiliö
356 label_repository_plural: Säiliötä
357 label_repository_plural: Säiliötä
357 label_browse: Selata
358 label_browse: Selata
358 label_modification: %d muutos
359 label_modification: %d muutos
359 label_modification_plural: %d muutettu
360 label_modification_plural: %d muutettu
360 label_revision: Versio
361 label_revision: Versio
361 label_revision_plural: Versiot
362 label_revision_plural: Versiot
362 label_added: lisätty
363 label_added: lisätty
363 label_modified: muokattu
364 label_modified: muokattu
364 label_deleted: poistettu
365 label_deleted: poistettu
365 label_latest_revision: Viimeisin versio
366 label_latest_revision: Viimeisin versio
366 label_latest_revision_plural: Viimeisimmät versiot
367 label_latest_revision_plural: Viimeisimmät versiot
367 label_view_revisions: Näytä versiot
368 label_view_revisions: Näytä versiot
368 label_max_size: Maksimi koko
369 label_max_size: Maksimi koko
369 label_on:
370 label_on:
370 label_sort_highest: Siirrä ylimmäiseksi
371 label_sort_highest: Siirrä ylimmäiseksi
371 label_sort_higher: Siirrä ylös
372 label_sort_higher: Siirrä ylös
372 label_sort_lower: Siirrä alas
373 label_sort_lower: Siirrä alas
373 label_sort_lowest: Siirrä alimmaiseksi
374 label_sort_lowest: Siirrä alimmaiseksi
374 label_roadmap: Roadmap
375 label_roadmap: Roadmap
375 label_roadmap_due_in: Määräaika
376 label_roadmap_due_in: Määräaika
376 label_roadmap_overdue: %s myöhässä
377 label_roadmap_overdue: %s myöhässä
377 label_roadmap_no_issues: Ei tapahtumia tälle versiolle
378 label_roadmap_no_issues: Ei tapahtumia tälle versiolle
378 label_search: Haku
379 label_search: Haku
379 label_result_plural: Tulokset
380 label_result_plural: Tulokset
380 label_all_words: kaikki sanat
381 label_all_words: kaikki sanat
381 label_wiki: Wiki
382 label_wiki: Wiki
382 label_wiki_edit: Wiki muokkaus
383 label_wiki_edit: Wiki muokkaus
383 label_wiki_edit_plural: Wiki muokkaukset
384 label_wiki_edit_plural: Wiki muokkaukset
384 label_wiki_page: Wiki sivu
385 label_wiki_page: Wiki sivu
385 label_wiki_page_plural: Wiki sivut
386 label_wiki_page_plural: Wiki sivut
386 label_index_by_title: Hakemisto otsikoittain
387 label_index_by_title: Hakemisto otsikoittain
387 label_index_by_date: Hakemisto päivittäin
388 label_index_by_date: Hakemisto päivittäin
388 label_current_version: Nykyinen versio
389 label_current_version: Nykyinen versio
389 label_preview: Esikatselu
390 label_preview: Esikatselu
390 label_feed_plural: Syötteet
391 label_feed_plural: Syötteet
391 label_changes_details: Kaikkien muutosten yksityiskohdat
392 label_changes_details: Kaikkien muutosten yksityiskohdat
392 label_issue_tracking: Tapahtumien seuranta
393 label_issue_tracking: Tapahtumien seuranta
393 label_spent_time: Käytetty aika
394 label_spent_time: Käytetty aika
394 label_f_hour: %.2f tunti
395 label_f_hour: %.2f tunti
395 label_f_hour_plural: %.2f tuntia
396 label_f_hour_plural: %.2f tuntia
396 label_time_tracking: Ajan seuranta
397 label_time_tracking: Ajan seuranta
397 label_change_plural: Muutokset
398 label_change_plural: Muutokset
398 label_statistics: Tilastot
399 label_statistics: Tilastot
399 label_commits_per_month: Tapahtumaa per kuukausi
400 label_commits_per_month: Tapahtumaa per kuukausi
400 label_commits_per_author: Tapahtumaa per tekijä
401 label_commits_per_author: Tapahtumaa per tekijä
401 label_view_diff: Näytä erot
402 label_view_diff: Näytä erot
402 label_diff_inline: sisällössä
403 label_diff_inline: sisällössä
403 label_diff_side_by_side: vierekkäin
404 label_diff_side_by_side: vierekkäin
404 label_options: Valinnat
405 label_options: Valinnat
405 label_copy_workflow_from: Kopioi työnkulku
406 label_copy_workflow_from: Kopioi työnkulku
406 label_permissions_report: Oikeuksien raportti
407 label_permissions_report: Oikeuksien raportti
407 label_watched_issues: Seurattavat tapahtumat
408 label_watched_issues: Seurattavat tapahtumat
408 label_related_issues: Liittyvät tapahtumat
409 label_related_issues: Liittyvät tapahtumat
409 label_applied_status: Lisätty tila
410 label_applied_status: Lisätty tila
410 label_loading: Lataa...
411 label_loading: Lataa...
411 label_relation_new: Uusi suhde
412 label_relation_new: Uusi suhde
412 label_relation_delete: Poista suhde
413 label_relation_delete: Poista suhde
413 label_relates_to: liittyy
414 label_relates_to: liittyy
414 label_duplicates: kaksoiskappale
415 label_duplicates: kaksoiskappale
415 label_blocks: estää
416 label_blocks: estää
416 label_blocked_by: estetty
417 label_blocked_by: estetty
417 label_precedes: edeltää
418 label_precedes: edeltää
418 label_follows: seuraa
419 label_follows: seuraa
419 label_end_to_start: loppu alkuun
420 label_end_to_start: loppu alkuun
420 label_end_to_end: loppu loppuun
421 label_end_to_end: loppu loppuun
421 label_start_to_start: alku alkuun
422 label_start_to_start: alku alkuun
422 label_start_to_end: alku loppuun
423 label_start_to_end: alku loppuun
423 label_stay_logged_in: Pysy kirjautuneena
424 label_stay_logged_in: Pysy kirjautuneena
424 label_disabled: poistettu käytöstä
425 label_disabled: poistettu käytöstä
425 label_show_completed_versions: Näytä valmiit versiot
426 label_show_completed_versions: Näytä valmiit versiot
426 label_me: minä
427 label_me: minä
427 label_board: Keskustelupalsta
428 label_board: Keskustelupalsta
428 label_board_new: Uusi keskustelupalsta
429 label_board_new: Uusi keskustelupalsta
429 label_board_plural: Keskustelupalstat
430 label_board_plural: Keskustelupalstat
430 label_topic_plural: Aiheet
431 label_topic_plural: Aiheet
431 label_message_plural: Viestit
432 label_message_plural: Viestit
432 label_message_last: Viimeisin viesti
433 label_message_last: Viimeisin viesti
433 label_message_new: Uusi viesti
434 label_message_new: Uusi viesti
434 label_reply_plural: Vastaukset
435 label_reply_plural: Vastaukset
435 label_send_information: Lähetä tilin tiedot käyttäjälle
436 label_send_information: Lähetä tilin tiedot käyttäjälle
436 label_year: Vuosi
437 label_year: Vuosi
437 label_month: Kuukausi
438 label_month: Kuukausi
438 label_week: Viikko
439 label_week: Viikko
439 label_date_from:
440 label_date_from:
440 label_date_to:
441 label_date_to:
441 label_language_based: Pohjautuen käyttäjän kieleen
442 label_language_based: Pohjautuen käyttäjän kieleen
442 label_sort_by: Lajittele %s
443 label_sort_by: Lajittele %s
443 label_send_test_email: Lähetä testi sähköposti
444 label_send_test_email: Lähetä testi sähköposti
444 label_feeds_access_key_created_on: RSS pääsy avain luotiin %s sitten
445 label_feeds_access_key_created_on: RSS pääsy avain luotiin %s sitten
445 label_module_plural: Moduulit
446 label_module_plural: Moduulit
446 label_added_time_by: Lisännyt %s %s sitten
447 label_added_time_by: Lisännyt %s %s sitten
447 label_updated_time: Päivitetty %s sitten
448 label_updated_time: Päivitetty %s sitten
448 label_jump_to_a_project: Siirry projektiin...
449 label_jump_to_a_project: Siirry projektiin...
449 label_file_plural: Tiedostot
450 label_file_plural: Tiedostot
450 label_changeset_plural: Muutosryhmät
451 label_changeset_plural: Muutosryhmät
451 label_default_columns: Vakio sarakkeet
452 label_default_columns: Vakio sarakkeet
452 label_no_change_option: (Ei muutosta)
453 label_no_change_option: (Ei muutosta)
453 label_bulk_edit_selected_issues: Perusmuotoile valitut tapahtumat
454 label_bulk_edit_selected_issues: Perusmuotoile valitut tapahtumat
454 label_theme: Teema
455 label_theme: Teema
455 label_default: Vakio
456 label_default: Vakio
456 label_search_titles_only: Haek vain otsikot
457 label_search_titles_only: Haek vain otsikot
457 label_user_mail_option_all: "Kaikista tapahtumista kaikissa projekteistani"
458 label_user_mail_option_all: "Kaikista tapahtumista kaikissa projekteistani"
458 label_user_mail_option_selected: "Kaikista tapahtumista vain valitsemistani projekteista..."
459 label_user_mail_option_selected: "Kaikista tapahtumista vain valitsemistani projekteista..."
459 label_user_mail_option_none: "Vain tapahtumista joita valvon tai olen mukana"
460 label_user_mail_option_none: "Vain tapahtumista joita valvon tai olen mukana"
460 label_user_mail_no_self_notified: "En halua muistutusta muutoksista joita itse teen"
461 label_user_mail_no_self_notified: "En halua muistutusta muutoksista joita itse teen"
461 label_registration_activation_by_email: tilin aktivointi sähköpostitse
462 label_registration_activation_by_email: tilin aktivointi sähköpostitse
462 label_registration_manual_activation: manuaalinen tilin aktivointi
463 label_registration_manual_activation: manuaalinen tilin aktivointi
463 label_registration_automatic_activation: automaattinen tilin aktivointi
464 label_registration_automatic_activation: automaattinen tilin aktivointi
464 label_display_per_page: 'Per sivu: %s'
465 label_display_per_page: 'Per sivu: %s'
465 label_age: Ikä
466 label_age: Ikä
466 label_change_properties: Vaihda asetuksia
467 label_change_properties: Vaihda asetuksia
467 label_general: Yleinen
468 label_general: Yleinen
468 label_date_to: To
469 label_date_to: To
469 label_date_from: From
470 label_date_from: From
470 label_in: in
471 label_in: in
471 label_on: 'on'
472 label_on: 'on'
472
473
473 button_login: Kirjaudu
474 button_login: Kirjaudu
474 button_submit: Lähetä
475 button_submit: Lähetä
475 button_save: Tallenna
476 button_save: Tallenna
476 button_check_all: Valitse kaikki
477 button_check_all: Valitse kaikki
477 button_uncheck_all: Poista valinnat
478 button_uncheck_all: Poista valinnat
478 button_delete: Poista
479 button_delete: Poista
479 button_create: Luo
480 button_create: Luo
480 button_test: Testaa
481 button_test: Testaa
481 button_edit: Muokkaa
482 button_edit: Muokkaa
482 button_add: Lisää
483 button_add: Lisää
483 button_change: Muuta
484 button_change: Muuta
484 button_apply: Ota käyttöön
485 button_apply: Ota käyttöön
485 button_clear: Tyhjää
486 button_clear: Tyhjää
486 button_lock: Lukitse
487 button_lock: Lukitse
487 button_unlock: Vapauta
488 button_unlock: Vapauta
488 button_download: Lataa
489 button_download: Lataa
489 button_list: Lista
490 button_list: Lista
490 button_view: Näytä
491 button_view: Näytä
491 button_move: Siirrä
492 button_move: Siirrä
492 button_back: Takaisin
493 button_back: Takaisin
493 button_cancel: Peruuta
494 button_cancel: Peruuta
494 button_activate: Aktivoi
495 button_activate: Aktivoi
495 button_sort: Järjestä
496 button_sort: Järjestä
496 button_log_time: Seuraa aikaa
497 button_log_time: Seuraa aikaa
497 button_rollback: Siirry takaisin tähän versioon
498 button_rollback: Siirry takaisin tähän versioon
498 button_watch: Vahdi
499 button_watch: Vahdi
499 button_unwatch: Älä vahdi
500 button_unwatch: Älä vahdi
500 button_reply: Vastaa
501 button_reply: Vastaa
501 button_archive: Arkistoi
502 button_archive: Arkistoi
502 button_unarchive: Palauta
503 button_unarchive: Palauta
503 button_reset: Nollaus
504 button_reset: Nollaus
504 button_rename: Uudelleen nimeä
505 button_rename: Uudelleen nimeä
505 button_change_password: Vaihda salasana
506 button_change_password: Vaihda salasana
506 button_copy: Kopioi
507 button_copy: Kopioi
507 button_annotate: Lisää selitys
508 button_annotate: Lisää selitys
508 button_update: Päivitä
509 button_update: Päivitä
509
510
510 status_active: aktiivinen
511 status_active: aktiivinen
511 status_registered: rekisteröity
512 status_registered: rekisteröity
512 status_locked: lukittu
513 status_locked: lukittu
513
514
514 text_select_mail_notifications: Valitse tapahtumat joista tulisi lähettää sähköpostimuistutus.
515 text_select_mail_notifications: Valitse tapahtumat joista tulisi lähettää sähköpostimuistutus.
515 text_regexp_info: esim. ^[A-Z0-9]+$
516 text_regexp_info: esim. ^[A-Z0-9]+$
516 text_min_max_length_info: 0 tarkoitta, ei rajoitusta
517 text_min_max_length_info: 0 tarkoitta, ei rajoitusta
517 text_project_destroy_confirmation: Oletko varma että haluat poistaa tämän projektin ja kaikki siihen kuuluvat tiedot?
518 text_project_destroy_confirmation: Oletko varma että haluat poistaa tämän projektin ja kaikki siihen kuuluvat tiedot?
518 text_workflow_edit: Valitse rooli ja tiketti muokataksesi työnkulkua
519 text_workflow_edit: Valitse rooli ja tiketti muokataksesi työnkulkua
519 text_are_you_sure: Oletko varma?
520 text_are_you_sure: Oletko varma?
520 text_journal_changed: %s muutettu arvoksi %s
521 text_journal_changed: %s muutettu arvoksi %s
521 text_journal_set_to: muutettu %s
522 text_journal_set_to: muutettu %s
522 text_journal_deleted: poistettu
523 text_journal_deleted: poistettu
523 text_tip_task_begin_day: tehtävä joka alkaa tänä päivänä
524 text_tip_task_begin_day: tehtävä joka alkaa tänä päivänä
524 text_tip_task_end_day: tehtävä joka loppuu tänä päivänä
525 text_tip_task_end_day: tehtävä joka loppuu tänä päivänä
525 text_tip_task_begin_end_day: tehtävä joka alkaa ja loppuu tänä päivänä
526 text_tip_task_begin_end_day: tehtävä joka alkaa ja loppuu tänä päivänä
526 text_project_identifier_info: 'Pienet kirjaimet (a-z), numerot ja viivat ovat sallittu.<br />Tallentamisen jälkeen tunnistetta ei voi muuttaa.'
527 text_project_identifier_info: 'Pienet kirjaimet (a-z), numerot ja viivat ovat sallittu.<br />Tallentamisen jälkeen tunnistetta ei voi muuttaa.'
527 text_caracters_maximum: %d merkkiä enintään.
528 text_caracters_maximum: %d merkkiä enintään.
528 text_caracters_minimum: Täytyy olla vähintään %d merkkiä pitkä.
529 text_caracters_minimum: Täytyy olla vähintään %d merkkiä pitkä.
529 text_length_between: Pituus välillä %d ja %d merkkiä.
530 text_length_between: Pituus välillä %d ja %d merkkiä.
530 text_tracker_no_workflow: Ei työnkulkua määritelty tälle tiketille
531 text_tracker_no_workflow: Ei työnkulkua määritelty tälle tiketille
531 text_unallowed_characters: Kiellettyjä merkkejä
532 text_unallowed_characters: Kiellettyjä merkkejä
532 text_comma_separated: Useat arvot sallittu (pilkku eroteltuna).
533 text_comma_separated: Useat arvot sallittu (pilkku eroteltuna).
533 text_issues_ref_in_commit_messages: Liitän ja korjaan ongelmia syötetyssä viestissä
534 text_issues_ref_in_commit_messages: Liitän ja korjaan ongelmia syötetyssä viestissä
534 text_issue_added: Tapahtuma %s on kirjattu.
535 text_issue_added: Tapahtuma %s on kirjattu.
535 text_issue_updated: Tapahtuma %s on päivitetty.
536 text_issue_updated: Tapahtuma %s on päivitetty.
536 text_wiki_destroy_confirmation: Oletko varma että haluat poistaa tämän wiki:n ja kaikki sen sisältämän tiedon?
537 text_wiki_destroy_confirmation: Oletko varma että haluat poistaa tämän wiki:n ja kaikki sen sisältämän tiedon?
537 text_issue_category_destroy_question: Jotkut tapahtumat (%d) ovat nimetty tälle luokalle. Mitä haluat tehdä?
538 text_issue_category_destroy_question: Jotkut tapahtumat (%d) ovat nimetty tälle luokalle. Mitä haluat tehdä?
538 text_issue_category_destroy_assignments: Poista luokan tehtävät
539 text_issue_category_destroy_assignments: Poista luokan tehtävät
539 text_issue_category_reassign_to: Vaihda tapahtuma tähän luokkaan
540 text_issue_category_reassign_to: Vaihda tapahtuma tähän luokkaan
540 text_user_mail_option: "Valitesemattomille projekteille, saat vain muistutuksen asioista joita vahdit tai olet mukana (esim. tapahtumat joissa olet tekijä tai nimettynä)."
541 text_user_mail_option: "Valitesemattomille projekteille, saat vain muistutuksen asioista joita vahdit tai olet mukana (esim. tapahtumat joissa olet tekijä tai nimettynä)."
541 text_no_configuration_data: "Rooleja, tikettejä, tapahtumien tiloja ja työnkulkua ei vielä olla määritelty.\nOn erittäin suotavaa ladata vakioasetukset. Voit muuttaa sitä latauksen jälkeen."
542 text_no_configuration_data: "Rooleja, tikettejä, tapahtumien tiloja ja työnkulkua ei vielä olla määritelty.\nOn erittäin suotavaa ladata vakioasetukset. Voit muuttaa sitä latauksen jälkeen."
542 text_load_default_configuration: Lataa vakioasetukset
543 text_load_default_configuration: Lataa vakioasetukset
543
544
544 default_role_manager: Päälikkö
545 default_role_manager: Päälikkö
545 default_role_developper: Kehittäjä
546 default_role_developper: Kehittäjä
546 default_role_reporter: Tarkastelija
547 default_role_reporter: Tarkastelija
547 default_tracker_bug: Ohjelmointivirhe
548 default_tracker_bug: Ohjelmointivirhe
548 default_tracker_feature: Ominaisuus
549 default_tracker_feature: Ominaisuus
549 default_tracker_support: Tuki
550 default_tracker_support: Tuki
550 default_issue_status_new: Uusi
551 default_issue_status_new: Uusi
551 default_issue_status_assigned: Nimetty
552 default_issue_status_assigned: Nimetty
552 default_issue_status_resolved: Hyväksytty
553 default_issue_status_resolved: Hyväksytty
553 default_issue_status_feedback: Palaute
554 default_issue_status_feedback: Palaute
554 default_issue_status_closed: Suljettu
555 default_issue_status_closed: Suljettu
555 default_issue_status_rejected: Hylätty
556 default_issue_status_rejected: Hylätty
556 default_doc_category_user: Käyttäjä dokumentaatio
557 default_doc_category_user: Käyttäjä dokumentaatio
557 default_doc_category_tech: Tekninen dokumentaatio
558 default_doc_category_tech: Tekninen dokumentaatio
558 default_priority_low: Matala
559 default_priority_low: Matala
559 default_priority_normal: Normaali
560 default_priority_normal: Normaali
560 default_priority_high: Korkea
561 default_priority_high: Korkea
561 default_priority_urgent: Kiireellinen
562 default_priority_urgent: Kiireellinen
562 default_priority_immediate: Valitön
563 default_priority_immediate: Valitön
563 default_activity_design: Suunnittelu
564 default_activity_design: Suunnittelu
564 default_activity_development: Kehitys
565 default_activity_development: Kehitys
565
566
566 enumeration_issue_priorities: Tapahtuman prioriteetit
567 enumeration_issue_priorities: Tapahtuman prioriteetit
567 enumeration_doc_categories: Dokumentin luokat
568 enumeration_doc_categories: Dokumentin luokat
568 enumeration_activities: Aktiviteetit (ajan seuranta)
569 enumeration_activities: Aktiviteetit (ajan seuranta)
569 label_associated_revisions: Associated revisions
570 label_associated_revisions: Associated revisions
@@ -1,565 +1,566
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 jour
8 actionview_datehelper_time_in_words_day: 1 jour
9 actionview_datehelper_time_in_words_day_plural: %d jours
9 actionview_datehelper_time_in_words_day_plural: %d jours
10 actionview_datehelper_time_in_words_hour_about: environ une heure
10 actionview_datehelper_time_in_words_hour_about: environ une heure
11 actionview_datehelper_time_in_words_hour_about_plural: environ %d heures
11 actionview_datehelper_time_in_words_hour_about_plural: environ %d heures
12 actionview_datehelper_time_in_words_hour_about_single: environ une heure
12 actionview_datehelper_time_in_words_hour_about_single: environ une heure
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
20 actionview_instancetag_blank_option: Choisir
20 actionview_instancetag_blank_option: Choisir
21
21
22 activerecord_error_inclusion: n'est pas inclus dans la liste
22 activerecord_error_inclusion: n'est pas inclus dans la liste
23 activerecord_error_exclusion: est reservé
23 activerecord_error_exclusion: est reservé
24 activerecord_error_invalid: est invalide
24 activerecord_error_invalid: est invalide
25 activerecord_error_confirmation: ne correspond pas à la confirmation
25 activerecord_error_confirmation: ne correspond pas à la confirmation
26 activerecord_error_accepted: doit être accepté
26 activerecord_error_accepted: doit être accepté
27 activerecord_error_empty: doit être renseigné
27 activerecord_error_empty: doit être renseigné
28 activerecord_error_blank: doit être renseigné
28 activerecord_error_blank: doit être renseigné
29 activerecord_error_too_long: est trop long
29 activerecord_error_too_long: est trop long
30 activerecord_error_too_short: est trop court
30 activerecord_error_too_short: est trop court
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
32 activerecord_error_taken: est déjà utilisé
32 activerecord_error_taken: est déjà utilisé
33 activerecord_error_not_a_number: n'est pas un nombre
33 activerecord_error_not_a_number: n'est pas un nombre
34 activerecord_error_not_a_date: n'est pas une date valide
34 activerecord_error_not_a_date: n'est pas une date valide
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
36 activerecord_error_not_same_project: n'appartient pas au même projet
36 activerecord_error_not_same_project: n'appartient pas au même projet
37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
38
38
39 general_fmt_age: %d an
39 general_fmt_age: %d an
40 general_fmt_age_plural: %d ans
40 general_fmt_age_plural: %d ans
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Non'
45 general_text_No: 'Non'
46 general_text_Yes: 'Oui'
46 general_text_Yes: 'Oui'
47 general_text_no: 'non'
47 general_text_no: 'non'
48 general_text_yes: 'oui'
48 general_text_yes: 'oui'
49 general_lang_name: 'Français'
49 general_lang_name: 'Français'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
53 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Le compte a été mis à jour avec succès.
56 notice_account_updated: Le compte a été mis à jour avec succès.
57 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
57 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
58 notice_account_password_updated: Mot de passe mis à jour avec succès.
58 notice_account_password_updated: Mot de passe mis à jour avec succès.
59 notice_account_wrong_password: Mot de passe incorrect
59 notice_account_wrong_password: Mot de passe incorrect
60 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
60 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
61 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
61 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
62 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
62 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
63 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
63 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
64 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
64 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
65 notice_successful_create: Création effectuée avec succès.
65 notice_successful_create: Création effectuée avec succès.
66 notice_successful_update: Mise à jour effectuée avec succès.
66 notice_successful_update: Mise à jour effectuée avec succès.
67 notice_successful_delete: Suppression effectuée avec succès.
67 notice_successful_delete: Suppression effectuée avec succès.
68 notice_successful_connection: Connection réussie.
68 notice_successful_connection: Connection réussie.
69 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
69 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
70 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
70 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
71 notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
71 notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
72 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
72 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
73 notice_email_sent: "Un email a été envoyé à %s"
73 notice_email_sent: "Un email a été envoyé à %s"
74 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
74 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
75 notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée."
75 notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée."
76 notice_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s."
76 notice_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s."
77 notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour."
77 notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour."
78 notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur."
78 notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur."
79 notice_default_data_loaded: Paramétrage par défaut chargé avec succès.
79 notice_default_data_loaded: Paramétrage par défaut chargé avec succès.
80
80
81 error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s"
81 error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s"
82
82
83 mail_subject_lost_password: Votre mot de passe redMine
83 mail_subject_lost_password: Votre mot de passe redMine
84 mail_body_lost_password: 'Pour changer votre mot de passe Redmine, cliquez sur le lien suivant:'
84 mail_body_lost_password: 'Pour changer votre mot de passe Redmine, cliquez sur le lien suivant:'
85 mail_subject_register: Activation de votre compte redMine
85 mail_subject_register: Activation de votre compte redMine
86 mail_body_register: 'Pour activer votre compte Redmine, cliquez sur le lien suivant:'
86 mail_body_register: 'Pour activer votre compte Redmine, cliquez sur le lien suivant:'
87 mail_body_account_information_external: Vous pouvez utiliser votre compte "%s" pour vous connecter à Redmine.
87 mail_body_account_information_external: Vous pouvez utiliser votre compte "%s" pour vous connecter à Redmine.
88 mail_body_account_information: Paramètres de connexion de votre compte Redmine
88 mail_body_account_information: Paramètres de connexion de votre compte Redmine
89 mail_subject_account_activation_request: "Demande d'activation d'un compte Redmine"
89 mail_subject_account_activation_request: "Demande d'activation d'un compte Redmine"
90 mail_body_account_activation_request: "Un nouvel utilisateur (%s) s'est inscrit. Son compte nécessite votre approbation:"
90 mail_body_account_activation_request: "Un nouvel utilisateur (%s) s'est inscrit. Son compte nécessite votre approbation:"
91
91
92 gui_validation_error: 1 erreur
92 gui_validation_error: 1 erreur
93 gui_validation_error_plural: %d erreurs
93 gui_validation_error_plural: %d erreurs
94
94
95 field_name: Nom
95 field_name: Nom
96 field_description: Description
96 field_description: Description
97 field_summary: Résumé
97 field_summary: Résumé
98 field_is_required: Obligatoire
98 field_is_required: Obligatoire
99 field_firstname: Prénom
99 field_firstname: Prénom
100 field_lastname: Nom
100 field_lastname: Nom
101 field_mail: Email
101 field_mail: Email
102 field_filename: Fichier
102 field_filename: Fichier
103 field_filesize: Taille
103 field_filesize: Taille
104 field_downloads: Téléchargements
104 field_downloads: Téléchargements
105 field_author: Auteur
105 field_author: Auteur
106 field_created_on: Créé
106 field_created_on: Créé
107 field_updated_on: Mis à jour
107 field_updated_on: Mis à jour
108 field_field_format: Format
108 field_field_format: Format
109 field_is_for_all: Pour tous les projets
109 field_is_for_all: Pour tous les projets
110 field_possible_values: Valeurs possibles
110 field_possible_values: Valeurs possibles
111 field_regexp: Expression régulière
111 field_regexp: Expression régulière
112 field_min_length: Longueur minimum
112 field_min_length: Longueur minimum
113 field_max_length: Longueur maximum
113 field_max_length: Longueur maximum
114 field_value: Valeur
114 field_value: Valeur
115 field_category: Catégorie
115 field_category: Catégorie
116 field_title: Titre
116 field_title: Titre
117 field_project: Projet
117 field_project: Projet
118 field_issue: Demande
118 field_issue: Demande
119 field_status: Statut
119 field_status: Statut
120 field_notes: Notes
120 field_notes: Notes
121 field_is_closed: Demande fermée
121 field_is_closed: Demande fermée
122 field_is_default: Valeur par défaut
122 field_is_default: Valeur par défaut
123 field_tracker: Tracker
123 field_tracker: Tracker
124 field_subject: Sujet
124 field_subject: Sujet
125 field_due_date: Date d'échéance
125 field_due_date: Date d'échéance
126 field_assigned_to: Assigné à
126 field_assigned_to: Assigné à
127 field_priority: Priorité
127 field_priority: Priorité
128 field_fixed_version: Version corrigée
128 field_fixed_version: Version corrigée
129 field_user: Utilisateur
129 field_user: Utilisateur
130 field_role: Rôle
130 field_role: Rôle
131 field_homepage: Site web
131 field_homepage: Site web
132 field_is_public: Public
132 field_is_public: Public
133 field_parent: Sous-projet de
133 field_parent: Sous-projet de
134 field_is_in_chlog: Demandes affichées dans l'historique
134 field_is_in_chlog: Demandes affichées dans l'historique
135 field_is_in_roadmap: Demandes affichées dans la roadmap
135 field_is_in_roadmap: Demandes affichées dans la roadmap
136 field_login: Identifiant
136 field_login: Identifiant
137 field_mail_notification: Notifications par mail
137 field_mail_notification: Notifications par mail
138 field_admin: Administrateur
138 field_admin: Administrateur
139 field_last_login_on: Dernière connexion
139 field_last_login_on: Dernière connexion
140 field_language: Langue
140 field_language: Langue
141 field_effective_date: Date
141 field_effective_date: Date
142 field_password: Mot de passe
142 field_password: Mot de passe
143 field_new_password: Nouveau mot de passe
143 field_new_password: Nouveau mot de passe
144 field_password_confirmation: Confirmation
144 field_password_confirmation: Confirmation
145 field_version: Version
145 field_version: Version
146 field_type: Type
146 field_type: Type
147 field_host: Hôte
147 field_host: Hôte
148 field_port: Port
148 field_port: Port
149 field_account: Compte
149 field_account: Compte
150 field_base_dn: Base DN
150 field_base_dn: Base DN
151 field_attr_login: Attribut Identifiant
151 field_attr_login: Attribut Identifiant
152 field_attr_firstname: Attribut Prénom
152 field_attr_firstname: Attribut Prénom
153 field_attr_lastname: Attribut Nom
153 field_attr_lastname: Attribut Nom
154 field_attr_mail: Attribut Email
154 field_attr_mail: Attribut Email
155 field_onthefly: Création des utilisateurs à la volée
155 field_onthefly: Création des utilisateurs à la volée
156 field_start_date: Début
156 field_start_date: Début
157 field_done_ratio: %% Réalisé
157 field_done_ratio: %% Réalisé
158 field_auth_source: Mode d'authentification
158 field_auth_source: Mode d'authentification
159 field_hide_mail: Cacher mon adresse mail
159 field_hide_mail: Cacher mon adresse mail
160 field_comments: Commentaire
160 field_comments: Commentaire
161 field_url: URL
161 field_url: URL
162 field_start_page: Page de démarrage
162 field_start_page: Page de démarrage
163 field_subproject: Sous-projet
163 field_subproject: Sous-projet
164 field_hours: Heures
164 field_hours: Heures
165 field_activity: Activité
165 field_activity: Activité
166 field_spent_on: Date
166 field_spent_on: Date
167 field_identifier: Identifiant
167 field_identifier: Identifiant
168 field_is_filter: Utilisé comme filtre
168 field_is_filter: Utilisé comme filtre
169 field_issue_to_id: Demande liée
169 field_issue_to_id: Demande liée
170 field_delay: Retard
170 field_delay: Retard
171 field_assignable: Demandes assignables à ce rôle
171 field_assignable: Demandes assignables à ce rôle
172 field_redirect_existing_links: Rediriger les liens existants
172 field_redirect_existing_links: Rediriger les liens existants
173 field_estimated_hours: Temps estimé
173 field_estimated_hours: Temps estimé
174 field_column_names: Colonnes
174 field_column_names: Colonnes
175 field_time_zone: Fuseau horaire
175 field_time_zone: Fuseau horaire
176 field_searchable: Utilisé pour les recherches
176 field_searchable: Utilisé pour les recherches
177 field_default_value: Valeur par défaut
177
178
178 setting_app_title: Titre de l'application
179 setting_app_title: Titre de l'application
179 setting_app_subtitle: Sous-titre de l'application
180 setting_app_subtitle: Sous-titre de l'application
180 setting_welcome_text: Texte d'accueil
181 setting_welcome_text: Texte d'accueil
181 setting_default_language: Langue par défaut
182 setting_default_language: Langue par défaut
182 setting_login_required: Authentification obligatoire
183 setting_login_required: Authentification obligatoire
183 setting_self_registration: Inscription des nouveaux utilisateurs
184 setting_self_registration: Inscription des nouveaux utilisateurs
184 setting_attachment_max_size: Taille max des fichiers
185 setting_attachment_max_size: Taille max des fichiers
185 setting_issues_export_limit: Limite export demandes
186 setting_issues_export_limit: Limite export demandes
186 setting_mail_from: Adresse d'émission
187 setting_mail_from: Adresse d'émission
187 setting_bcc_recipients: Destinataires en copie cachée (cci)
188 setting_bcc_recipients: Destinataires en copie cachée (cci)
188 setting_host_name: Nom d'hôte
189 setting_host_name: Nom d'hôte
189 setting_text_formatting: Formatage du texte
190 setting_text_formatting: Formatage du texte
190 setting_wiki_compression: Compression historique wiki
191 setting_wiki_compression: Compression historique wiki
191 setting_feeds_limit: Limite du contenu des flux RSS
192 setting_feeds_limit: Limite du contenu des flux RSS
192 setting_autofetch_changesets: Récupération auto. des commits
193 setting_autofetch_changesets: Récupération auto. des commits
193 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
194 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
194 setting_commit_ref_keywords: Mot-clés de référencement
195 setting_commit_ref_keywords: Mot-clés de référencement
195 setting_commit_fix_keywords: Mot-clés de résolution
196 setting_commit_fix_keywords: Mot-clés de résolution
196 setting_autologin: Autologin
197 setting_autologin: Autologin
197 setting_date_format: Format de date
198 setting_date_format: Format de date
198 setting_time_format: Format d'heure
199 setting_time_format: Format d'heure
199 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
200 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
200 setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes
201 setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes
201 setting_repositories_encodings: Encodages des dépôts
202 setting_repositories_encodings: Encodages des dépôts
202 setting_emails_footer: Pied-de-page des emails
203 setting_emails_footer: Pied-de-page des emails
203 setting_protocol: Protocole
204 setting_protocol: Protocole
204 setting_per_page_options: Options d'objets affichés par page
205 setting_per_page_options: Options d'objets affichés par page
205
206
206 label_user: Utilisateur
207 label_user: Utilisateur
207 label_user_plural: Utilisateurs
208 label_user_plural: Utilisateurs
208 label_user_new: Nouvel utilisateur
209 label_user_new: Nouvel utilisateur
209 label_project: Projet
210 label_project: Projet
210 label_project_new: Nouveau projet
211 label_project_new: Nouveau projet
211 label_project_plural: Projets
212 label_project_plural: Projets
212 label_project_all: Tous les projets
213 label_project_all: Tous les projets
213 label_project_latest: Derniers projets
214 label_project_latest: Derniers projets
214 label_issue: Demande
215 label_issue: Demande
215 label_issue_new: Nouvelle demande
216 label_issue_new: Nouvelle demande
216 label_issue_plural: Demandes
217 label_issue_plural: Demandes
217 label_issue_view_all: Voir toutes les demandes
218 label_issue_view_all: Voir toutes les demandes
218 label_issues_by: Demandes par %s
219 label_issues_by: Demandes par %s
219 label_document: Document
220 label_document: Document
220 label_document_new: Nouveau document
221 label_document_new: Nouveau document
221 label_document_plural: Documents
222 label_document_plural: Documents
222 label_role: Rôle
223 label_role: Rôle
223 label_role_plural: Rôles
224 label_role_plural: Rôles
224 label_role_new: Nouveau rôle
225 label_role_new: Nouveau rôle
225 label_role_and_permissions: Rôles et permissions
226 label_role_and_permissions: Rôles et permissions
226 label_member: Membre
227 label_member: Membre
227 label_member_new: Nouveau membre
228 label_member_new: Nouveau membre
228 label_member_plural: Membres
229 label_member_plural: Membres
229 label_tracker: Tracker
230 label_tracker: Tracker
230 label_tracker_plural: Trackers
231 label_tracker_plural: Trackers
231 label_tracker_new: Nouveau tracker
232 label_tracker_new: Nouveau tracker
232 label_workflow: Workflow
233 label_workflow: Workflow
233 label_issue_status: Statut de demandes
234 label_issue_status: Statut de demandes
234 label_issue_status_plural: Statuts de demandes
235 label_issue_status_plural: Statuts de demandes
235 label_issue_status_new: Nouveau statut
236 label_issue_status_new: Nouveau statut
236 label_issue_category: Catégorie de demandes
237 label_issue_category: Catégorie de demandes
237 label_issue_category_plural: Catégories de demandes
238 label_issue_category_plural: Catégories de demandes
238 label_issue_category_new: Nouvelle catégorie
239 label_issue_category_new: Nouvelle catégorie
239 label_custom_field: Champ personnalisé
240 label_custom_field: Champ personnalisé
240 label_custom_field_plural: Champs personnalisés
241 label_custom_field_plural: Champs personnalisés
241 label_custom_field_new: Nouveau champ personnalisé
242 label_custom_field_new: Nouveau champ personnalisé
242 label_enumerations: Listes de valeurs
243 label_enumerations: Listes de valeurs
243 label_enumeration_new: Nouvelle valeur
244 label_enumeration_new: Nouvelle valeur
244 label_information: Information
245 label_information: Information
245 label_information_plural: Informations
246 label_information_plural: Informations
246 label_please_login: Identification
247 label_please_login: Identification
247 label_register: S'enregistrer
248 label_register: S'enregistrer
248 label_password_lost: Mot de passe perdu
249 label_password_lost: Mot de passe perdu
249 label_home: Accueil
250 label_home: Accueil
250 label_my_page: Ma page
251 label_my_page: Ma page
251 label_my_account: Mon compte
252 label_my_account: Mon compte
252 label_my_projects: Mes projets
253 label_my_projects: Mes projets
253 label_administration: Administration
254 label_administration: Administration
254 label_login: Connexion
255 label_login: Connexion
255 label_logout: Déconnexion
256 label_logout: Déconnexion
256 label_help: Aide
257 label_help: Aide
257 label_reported_issues: Demandes soumises
258 label_reported_issues: Demandes soumises
258 label_assigned_to_me_issues: Demandes qui me sont assignées
259 label_assigned_to_me_issues: Demandes qui me sont assignées
259 label_last_login: Dernière connexion
260 label_last_login: Dernière connexion
260 label_last_updates: Dernière mise à jour
261 label_last_updates: Dernière mise à jour
261 label_last_updates_plural: %d dernières mises à jour
262 label_last_updates_plural: %d dernières mises à jour
262 label_registered_on: Inscrit le
263 label_registered_on: Inscrit le
263 label_activity: Activité
264 label_activity: Activité
264 label_new: Nouveau
265 label_new: Nouveau
265 label_logged_as: Connecté en tant que
266 label_logged_as: Connecté en tant que
266 label_environment: Environnement
267 label_environment: Environnement
267 label_authentication: Authentification
268 label_authentication: Authentification
268 label_auth_source: Mode d'authentification
269 label_auth_source: Mode d'authentification
269 label_auth_source_new: Nouveau mode d'authentification
270 label_auth_source_new: Nouveau mode d'authentification
270 label_auth_source_plural: Modes d'authentification
271 label_auth_source_plural: Modes d'authentification
271 label_subproject_plural: Sous-projets
272 label_subproject_plural: Sous-projets
272 label_min_max_length: Longueurs mini - maxi
273 label_min_max_length: Longueurs mini - maxi
273 label_list: Liste
274 label_list: Liste
274 label_date: Date
275 label_date: Date
275 label_integer: Entier
276 label_integer: Entier
276 label_float: Nombre décimal
277 label_float: Nombre décimal
277 label_boolean: Booléen
278 label_boolean: Booléen
278 label_string: Texte
279 label_string: Texte
279 label_text: Texte long
280 label_text: Texte long
280 label_attribute: Attribut
281 label_attribute: Attribut
281 label_attribute_plural: Attributs
282 label_attribute_plural: Attributs
282 label_download: %d Téléchargement
283 label_download: %d Téléchargement
283 label_download_plural: %d Téléchargements
284 label_download_plural: %d Téléchargements
284 label_no_data: Aucune donnée à afficher
285 label_no_data: Aucune donnée à afficher
285 label_change_status: Changer le statut
286 label_change_status: Changer le statut
286 label_history: Historique
287 label_history: Historique
287 label_attachment: Fichier
288 label_attachment: Fichier
288 label_attachment_new: Nouveau fichier
289 label_attachment_new: Nouveau fichier
289 label_attachment_delete: Supprimer le fichier
290 label_attachment_delete: Supprimer le fichier
290 label_attachment_plural: Fichiers
291 label_attachment_plural: Fichiers
291 label_report: Rapport
292 label_report: Rapport
292 label_report_plural: Rapports
293 label_report_plural: Rapports
293 label_news: Annonce
294 label_news: Annonce
294 label_news_new: Nouvelle annonce
295 label_news_new: Nouvelle annonce
295 label_news_plural: Annonces
296 label_news_plural: Annonces
296 label_news_latest: Dernières annonces
297 label_news_latest: Dernières annonces
297 label_news_view_all: Voir toutes les annonces
298 label_news_view_all: Voir toutes les annonces
298 label_change_log: Historique
299 label_change_log: Historique
299 label_settings: Configuration
300 label_settings: Configuration
300 label_overview: Aperçu
301 label_overview: Aperçu
301 label_version: Version
302 label_version: Version
302 label_version_new: Nouvelle version
303 label_version_new: Nouvelle version
303 label_version_plural: Versions
304 label_version_plural: Versions
304 label_confirmation: Confirmation
305 label_confirmation: Confirmation
305 label_export_to: Exporter en
306 label_export_to: Exporter en
306 label_read: Lire...
307 label_read: Lire...
307 label_public_projects: Projets publics
308 label_public_projects: Projets publics
308 label_open_issues: ouvert
309 label_open_issues: ouvert
309 label_open_issues_plural: ouverts
310 label_open_issues_plural: ouverts
310 label_closed_issues: fermé
311 label_closed_issues: fermé
311 label_closed_issues_plural: fermés
312 label_closed_issues_plural: fermés
312 label_total: Total
313 label_total: Total
313 label_permissions: Permissions
314 label_permissions: Permissions
314 label_current_status: Statut actuel
315 label_current_status: Statut actuel
315 label_new_statuses_allowed: Nouveaux statuts autorisés
316 label_new_statuses_allowed: Nouveaux statuts autorisés
316 label_all: tous
317 label_all: tous
317 label_none: aucun
318 label_none: aucun
318 label_nobody: personne
319 label_nobody: personne
319 label_next: Suivant
320 label_next: Suivant
320 label_previous: Précédent
321 label_previous: Précédent
321 label_used_by: Utilisé par
322 label_used_by: Utilisé par
322 label_details: Détails
323 label_details: Détails
323 label_add_note: Ajouter une note
324 label_add_note: Ajouter une note
324 label_per_page: Par page
325 label_per_page: Par page
325 label_calendar: Calendrier
326 label_calendar: Calendrier
326 label_months_from: mois depuis
327 label_months_from: mois depuis
327 label_gantt: Gantt
328 label_gantt: Gantt
328 label_internal: Interne
329 label_internal: Interne
329 label_last_changes: %d derniers changements
330 label_last_changes: %d derniers changements
330 label_change_view_all: Voir tous les changements
331 label_change_view_all: Voir tous les changements
331 label_personalize_page: Personnaliser cette page
332 label_personalize_page: Personnaliser cette page
332 label_comment: Commentaire
333 label_comment: Commentaire
333 label_comment_plural: Commentaires
334 label_comment_plural: Commentaires
334 label_comment_add: Ajouter un commentaire
335 label_comment_add: Ajouter un commentaire
335 label_comment_added: Commentaire ajouté
336 label_comment_added: Commentaire ajouté
336 label_comment_delete: Supprimer les commentaires
337 label_comment_delete: Supprimer les commentaires
337 label_query: Rapport personnalisé
338 label_query: Rapport personnalisé
338 label_query_plural: Rapports personnalisés
339 label_query_plural: Rapports personnalisés
339 label_query_new: Nouveau rapport
340 label_query_new: Nouveau rapport
340 label_filter_add: Ajouter le filtre
341 label_filter_add: Ajouter le filtre
341 label_filter_plural: Filtres
342 label_filter_plural: Filtres
342 label_equals: égal
343 label_equals: égal
343 label_not_equals: différent
344 label_not_equals: différent
344 label_in_less_than: dans moins de
345 label_in_less_than: dans moins de
345 label_in_more_than: dans plus de
346 label_in_more_than: dans plus de
346 label_in: dans
347 label_in: dans
347 label_today: aujourd'hui
348 label_today: aujourd'hui
348 label_this_week: cette semaine
349 label_this_week: cette semaine
349 label_less_than_ago: il y a moins de
350 label_less_than_ago: il y a moins de
350 label_more_than_ago: il y a plus de
351 label_more_than_ago: il y a plus de
351 label_ago: il y a
352 label_ago: il y a
352 label_contains: contient
353 label_contains: contient
353 label_not_contains: ne contient pas
354 label_not_contains: ne contient pas
354 label_day_plural: jours
355 label_day_plural: jours
355 label_repository: Dépôt
356 label_repository: Dépôt
356 label_repository_plural: Dépôts
357 label_repository_plural: Dépôts
357 label_browse: Parcourir
358 label_browse: Parcourir
358 label_modification: %d modification
359 label_modification: %d modification
359 label_modification_plural: %d modifications
360 label_modification_plural: %d modifications
360 label_revision: Révision
361 label_revision: Révision
361 label_revision_plural: Révisions
362 label_revision_plural: Révisions
362 label_associated_revisions: Révisions associées
363 label_associated_revisions: Révisions associées
363 label_added: ajouté
364 label_added: ajouté
364 label_modified: modifié
365 label_modified: modifié
365 label_deleted: supprimé
366 label_deleted: supprimé
366 label_latest_revision: Dernière révision
367 label_latest_revision: Dernière révision
367 label_latest_revision_plural: Dernières révisions
368 label_latest_revision_plural: Dernières révisions
368 label_view_revisions: Voir les révisions
369 label_view_revisions: Voir les révisions
369 label_max_size: Taille maximale
370 label_max_size: Taille maximale
370 label_on: sur
371 label_on: sur
371 label_sort_highest: Remonter en premier
372 label_sort_highest: Remonter en premier
372 label_sort_higher: Remonter
373 label_sort_higher: Remonter
373 label_sort_lower: Descendre
374 label_sort_lower: Descendre
374 label_sort_lowest: Descendre en dernier
375 label_sort_lowest: Descendre en dernier
375 label_roadmap: Roadmap
376 label_roadmap: Roadmap
376 label_roadmap_due_in: Echéance dans
377 label_roadmap_due_in: Echéance dans
377 label_roadmap_overdue: En retard de %s
378 label_roadmap_overdue: En retard de %s
378 label_roadmap_no_issues: Aucune demande pour cette version
379 label_roadmap_no_issues: Aucune demande pour cette version
379 label_search: Recherche
380 label_search: Recherche
380 label_result_plural: Résultats
381 label_result_plural: Résultats
381 label_all_words: Tous les mots
382 label_all_words: Tous les mots
382 label_wiki: Wiki
383 label_wiki: Wiki
383 label_wiki_edit: Révision wiki
384 label_wiki_edit: Révision wiki
384 label_wiki_edit_plural: Révisions wiki
385 label_wiki_edit_plural: Révisions wiki
385 label_wiki_page: Page wiki
386 label_wiki_page: Page wiki
386 label_wiki_page_plural: Pages wiki
387 label_wiki_page_plural: Pages wiki
387 label_index_by_title: Index par titre
388 label_index_by_title: Index par titre
388 label_index_by_date: Index par date
389 label_index_by_date: Index par date
389 label_current_version: Version actuelle
390 label_current_version: Version actuelle
390 label_preview: Prévisualisation
391 label_preview: Prévisualisation
391 label_feed_plural: Flux RSS
392 label_feed_plural: Flux RSS
392 label_changes_details: Détails de tous les changements
393 label_changes_details: Détails de tous les changements
393 label_issue_tracking: Suivi des demandes
394 label_issue_tracking: Suivi des demandes
394 label_spent_time: Temps passé
395 label_spent_time: Temps passé
395 label_f_hour: %.2f heure
396 label_f_hour: %.2f heure
396 label_f_hour_plural: %.2f heures
397 label_f_hour_plural: %.2f heures
397 label_time_tracking: Suivi du temps
398 label_time_tracking: Suivi du temps
398 label_change_plural: Changements
399 label_change_plural: Changements
399 label_statistics: Statistiques
400 label_statistics: Statistiques
400 label_commits_per_month: Commits par mois
401 label_commits_per_month: Commits par mois
401 label_commits_per_author: Commits par auteur
402 label_commits_per_author: Commits par auteur
402 label_view_diff: Voir les différences
403 label_view_diff: Voir les différences
403 label_diff_inline: en ligne
404 label_diff_inline: en ligne
404 label_diff_side_by_side: côte à côte
405 label_diff_side_by_side: côte à côte
405 label_options: Options
406 label_options: Options
406 label_copy_workflow_from: Copier le workflow de
407 label_copy_workflow_from: Copier le workflow de
407 label_permissions_report: Synthèse des permissions
408 label_permissions_report: Synthèse des permissions
408 label_watched_issues: Demandes surveillées
409 label_watched_issues: Demandes surveillées
409 label_related_issues: Demandes liées
410 label_related_issues: Demandes liées
410 label_applied_status: Statut appliqué
411 label_applied_status: Statut appliqué
411 label_loading: Chargement...
412 label_loading: Chargement...
412 label_relation_new: Nouvelle relation
413 label_relation_new: Nouvelle relation
413 label_relation_delete: Supprimer la relation
414 label_relation_delete: Supprimer la relation
414 label_relates_to: lié à
415 label_relates_to: lié à
415 label_duplicates: doublon de
416 label_duplicates: doublon de
416 label_blocks: bloque
417 label_blocks: bloque
417 label_blocked_by: bloqué par
418 label_blocked_by: bloqué par
418 label_precedes: précède
419 label_precedes: précède
419 label_follows: suit
420 label_follows: suit
420 label_end_to_start: fin à début
421 label_end_to_start: fin à début
421 label_end_to_end: fin à fin
422 label_end_to_end: fin à fin
422 label_start_to_start: début à début
423 label_start_to_start: début à début
423 label_start_to_end: début à fin
424 label_start_to_end: début à fin
424 label_stay_logged_in: Rester connecté
425 label_stay_logged_in: Rester connecté
425 label_disabled: désactivé
426 label_disabled: désactivé
426 label_show_completed_versions: Voire les versions passées
427 label_show_completed_versions: Voire les versions passées
427 label_me: moi
428 label_me: moi
428 label_board: Forum
429 label_board: Forum
429 label_board_new: Nouveau forum
430 label_board_new: Nouveau forum
430 label_board_plural: Forums
431 label_board_plural: Forums
431 label_topic_plural: Discussions
432 label_topic_plural: Discussions
432 label_message_plural: Messages
433 label_message_plural: Messages
433 label_message_last: Dernier message
434 label_message_last: Dernier message
434 label_message_new: Nouveau message
435 label_message_new: Nouveau message
435 label_reply_plural: Réponses
436 label_reply_plural: Réponses
436 label_send_information: Envoyer les informations à l'utilisateur
437 label_send_information: Envoyer les informations à l'utilisateur
437 label_year: Année
438 label_year: Année
438 label_month: Mois
439 label_month: Mois
439 label_week: Semaine
440 label_week: Semaine
440 label_date_from: Du
441 label_date_from: Du
441 label_date_to: Au
442 label_date_to: Au
442 label_language_based: Basé sur la langue de l'utilisateur
443 label_language_based: Basé sur la langue de l'utilisateur
443 label_sort_by: Trier par %s
444 label_sort_by: Trier par %s
444 label_send_test_email: Envoyer un email de test
445 label_send_test_email: Envoyer un email de test
445 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
446 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
446 label_module_plural: Modules
447 label_module_plural: Modules
447 label_added_time_by: Ajouté par %s il y a %s
448 label_added_time_by: Ajouté par %s il y a %s
448 label_updated_time: Mis à jour il y a %s
449 label_updated_time: Mis à jour il y a %s
449 label_jump_to_a_project: Aller à un projet...
450 label_jump_to_a_project: Aller à un projet...
450 label_file_plural: Fichiers
451 label_file_plural: Fichiers
451 label_changeset_plural: Révisions
452 label_changeset_plural: Révisions
452 label_default_columns: Colonnes par défaut
453 label_default_columns: Colonnes par défaut
453 label_no_change_option: (Pas de changement)
454 label_no_change_option: (Pas de changement)
454 label_bulk_edit_selected_issues: Modifier les demandes sélectionnées
455 label_bulk_edit_selected_issues: Modifier les demandes sélectionnées
455 label_theme: Thème
456 label_theme: Thème
456 label_default: Défaut
457 label_default: Défaut
457 label_search_titles_only: Uniquement dans les titres
458 label_search_titles_only: Uniquement dans les titres
458 label_user_mail_option_all: "Pour tous les événements de tous mes projets"
459 label_user_mail_option_all: "Pour tous les événements de tous mes projets"
459 label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..."
460 label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..."
460 label_user_mail_option_none: "Seulement pour ce que je surveille ou à quoi je participe"
461 label_user_mail_option_none: "Seulement pour ce que je surveille ou à quoi je participe"
461 label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements que j'effectue"
462 label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements que j'effectue"
462 label_registration_activation_by_email: activation du compte par email
463 label_registration_activation_by_email: activation du compte par email
463 label_registration_manual_activation: activation manuelle du compte
464 label_registration_manual_activation: activation manuelle du compte
464 label_registration_automatic_activation: activation automatique du compte
465 label_registration_automatic_activation: activation automatique du compte
465 label_display_per_page: 'Par page: %s'
466 label_display_per_page: 'Par page: %s'
466 label_age: Age
467 label_age: Age
467 label_change_properties: Changer les propriétés
468 label_change_properties: Changer les propriétés
468 label_general: Général
469 label_general: Général
469
470
470 button_login: Connexion
471 button_login: Connexion
471 button_submit: Soumettre
472 button_submit: Soumettre
472 button_save: Sauvegarder
473 button_save: Sauvegarder
473 button_check_all: Tout cocher
474 button_check_all: Tout cocher
474 button_uncheck_all: Tout décocher
475 button_uncheck_all: Tout décocher
475 button_delete: Supprimer
476 button_delete: Supprimer
476 button_create: Créer
477 button_create: Créer
477 button_test: Tester
478 button_test: Tester
478 button_edit: Modifier
479 button_edit: Modifier
479 button_add: Ajouter
480 button_add: Ajouter
480 button_change: Changer
481 button_change: Changer
481 button_apply: Appliquer
482 button_apply: Appliquer
482 button_clear: Effacer
483 button_clear: Effacer
483 button_lock: Verrouiller
484 button_lock: Verrouiller
484 button_unlock: Déverrouiller
485 button_unlock: Déverrouiller
485 button_download: Télécharger
486 button_download: Télécharger
486 button_list: Lister
487 button_list: Lister
487 button_view: Voir
488 button_view: Voir
488 button_move: Déplacer
489 button_move: Déplacer
489 button_back: Retour
490 button_back: Retour
490 button_cancel: Annuler
491 button_cancel: Annuler
491 button_activate: Activer
492 button_activate: Activer
492 button_sort: Trier
493 button_sort: Trier
493 button_log_time: Saisir temps
494 button_log_time: Saisir temps
494 button_rollback: Revenir à cette version
495 button_rollback: Revenir à cette version
495 button_watch: Surveiller
496 button_watch: Surveiller
496 button_unwatch: Ne plus surveiller
497 button_unwatch: Ne plus surveiller
497 button_reply: Répondre
498 button_reply: Répondre
498 button_archive: Archiver
499 button_archive: Archiver
499 button_unarchive: Désarchiver
500 button_unarchive: Désarchiver
500 button_reset: Réinitialiser
501 button_reset: Réinitialiser
501 button_rename: Renommer
502 button_rename: Renommer
502 button_change_password: Changer de mot de passe
503 button_change_password: Changer de mot de passe
503 button_copy: Copier
504 button_copy: Copier
504 button_annotate: Annoter
505 button_annotate: Annoter
505 button_update: Mettre à jour
506 button_update: Mettre à jour
506
507
507 status_active: actif
508 status_active: actif
508 status_registered: enregistré
509 status_registered: enregistré
509 status_locked: vérouillé
510 status_locked: vérouillé
510
511
511 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
512 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
512 text_regexp_info: ex. ^[A-Z0-9]+$
513 text_regexp_info: ex. ^[A-Z0-9]+$
513 text_min_max_length_info: 0 pour aucune restriction
514 text_min_max_length_info: 0 pour aucune restriction
514 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
515 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
515 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
516 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
516 text_are_you_sure: Etes-vous sûr ?
517 text_are_you_sure: Etes-vous sûr ?
517 text_journal_changed: changé de %s à %s
518 text_journal_changed: changé de %s à %s
518 text_journal_set_to: mis à %s
519 text_journal_set_to: mis à %s
519 text_journal_deleted: supprimé
520 text_journal_deleted: supprimé
520 text_tip_task_begin_day: tâche commençant ce jour
521 text_tip_task_begin_day: tâche commençant ce jour
521 text_tip_task_end_day: tâche finissant ce jour
522 text_tip_task_end_day: tâche finissant ce jour
522 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
523 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
523 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
524 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
524 text_caracters_maximum: %d caractères maximum.
525 text_caracters_maximum: %d caractères maximum.
525 text_caracters_minimum: %d caractères minimum.
526 text_caracters_minimum: %d caractères minimum.
526 text_length_between: Longueur comprise entre %d et %d caractères.
527 text_length_between: Longueur comprise entre %d et %d caractères.
527 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
528 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
528 text_unallowed_characters: Caractères non autorisés
529 text_unallowed_characters: Caractères non autorisés
529 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
530 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
530 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
531 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
531 text_issue_added: La demande %s a été soumise.
532 text_issue_added: La demande %s a été soumise.
532 text_issue_updated: La demande %s a été mise à jour.
533 text_issue_updated: La demande %s a été mise à jour.
533 text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ?
534 text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ?
534 text_issue_category_destroy_question: Des demandes (%d) sont affectées à cette catégories. Que voulez-vous faire ?
535 text_issue_category_destroy_question: Des demandes (%d) sont affectées à cette catégories. Que voulez-vous faire ?
535 text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie
536 text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie
536 text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie
537 text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie
537 text_user_mail_option: "Pour les projets non sélectionnés, vous recevrez seulement des notifications pour ce que vous surveillez ou à quoi vous participez (exemple: demandes dont vous êtes l'auteur ou la personne assignée)."
538 text_user_mail_option: "Pour les projets non sélectionnés, vous recevrez seulement des notifications pour ce que vous surveillez ou à quoi vous participez (exemple: demandes dont vous êtes l'auteur ou la personne assignée)."
538 text_no_configuration_data: "Les rôles, trackers, statuts et le workflow ne sont pas encore paramétrés.\nIl est vivement recommandé de charger le paramétrage par defaut. Vous pourrez le modifier une fois chargé."
539 text_no_configuration_data: "Les rôles, trackers, statuts et le workflow ne sont pas encore paramétrés.\nIl est vivement recommandé de charger le paramétrage par defaut. Vous pourrez le modifier une fois chargé."
539 text_load_default_configuration: Charger le paramétrage par défaut
540 text_load_default_configuration: Charger le paramétrage par défaut
540
541
541 default_role_manager: Manager
542 default_role_manager: Manager
542 default_role_developper: Développeur
543 default_role_developper: Développeur
543 default_role_reporter: Rapporteur
544 default_role_reporter: Rapporteur
544 default_tracker_bug: Anomalie
545 default_tracker_bug: Anomalie
545 default_tracker_feature: Evolution
546 default_tracker_feature: Evolution
546 default_tracker_support: Assistance
547 default_tracker_support: Assistance
547 default_issue_status_new: Nouveau
548 default_issue_status_new: Nouveau
548 default_issue_status_assigned: Assigné
549 default_issue_status_assigned: Assigné
549 default_issue_status_resolved: Résolu
550 default_issue_status_resolved: Résolu
550 default_issue_status_feedback: Commentaire
551 default_issue_status_feedback: Commentaire
551 default_issue_status_closed: Fermé
552 default_issue_status_closed: Fermé
552 default_issue_status_rejected: Rejeté
553 default_issue_status_rejected: Rejeté
553 default_doc_category_user: Documentation utilisateur
554 default_doc_category_user: Documentation utilisateur
554 default_doc_category_tech: Documentation technique
555 default_doc_category_tech: Documentation technique
555 default_priority_low: Bas
556 default_priority_low: Bas
556 default_priority_normal: Normal
557 default_priority_normal: Normal
557 default_priority_high: Haut
558 default_priority_high: Haut
558 default_priority_urgent: Urgent
559 default_priority_urgent: Urgent
559 default_priority_immediate: Immédiat
560 default_priority_immediate: Immédiat
560 default_activity_design: Conception
561 default_activity_design: Conception
561 default_activity_development: Développement
562 default_activity_development: Développement
562
563
563 enumeration_issue_priorities: Priorités des demandes
564 enumeration_issue_priorities: Priorités des demandes
564 enumeration_doc_categories: Catégories des documents
565 enumeration_doc_categories: Catégories des documents
565 enumeration_activities: Activités (suivi du temps)
566 enumeration_activities: Activités (suivi du temps)
@@ -1,564 +1,565
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: ינואר,פברואר,מרץ,אפריל,מאי,יוני,יולי,אוגוסט,ספטמבר,אוקטובר,נובמבר,דצבמבר
4 actionview_datehelper_select_month_names: ינואר,פברואר,מרץ,אפריל,מאי,יוני,יולי,אוגוסט,ספטמבר,אוקטובר,נובמבר,דצבמבר
5 actionview_datehelper_select_month_names_abbr: ינו',פבו',מרץ,אפר',מאי,יונ',יול',אוג',ספט',אוקט',נוב',דצמ'
5 actionview_datehelper_select_month_names_abbr: ינו',פבו',מרץ,אפר',מאי,יונ',יול',אוג',ספט',אוקט',נוב',דצמ'
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: יום 1
8 actionview_datehelper_time_in_words_day: יום 1
9 actionview_datehelper_time_in_words_day_plural: %d ימים
9 actionview_datehelper_time_in_words_day_plural: %d ימים
10 actionview_datehelper_time_in_words_hour_about: כשעה
10 actionview_datehelper_time_in_words_hour_about: כשעה
11 actionview_datehelper_time_in_words_hour_about_plural: כ-%d שעות
11 actionview_datehelper_time_in_words_hour_about_plural: כ-%d שעות
12 actionview_datehelper_time_in_words_hour_about_single: כשעה
12 actionview_datehelper_time_in_words_hour_about_single: כשעה
13 actionview_datehelper_time_in_words_minute: דקה 1
13 actionview_datehelper_time_in_words_minute: דקה 1
14 actionview_datehelper_time_in_words_minute_half: חצי דקה
14 actionview_datehelper_time_in_words_minute_half: חצי דקה
15 actionview_datehelper_time_in_words_minute_less_than: פחות מדקה
15 actionview_datehelper_time_in_words_minute_less_than: פחות מדקה
16 actionview_datehelper_time_in_words_minute_plural: %d דקות
16 actionview_datehelper_time_in_words_minute_plural: %d דקות
17 actionview_datehelper_time_in_words_minute_single: דקה 1
17 actionview_datehelper_time_in_words_minute_single: דקה 1
18 actionview_datehelper_time_in_words_second_less_than: פחות משניה
18 actionview_datehelper_time_in_words_second_less_than: פחות משניה
19 actionview_datehelper_time_in_words_second_less_than_plural: פחות מ-%d שניות
19 actionview_datehelper_time_in_words_second_less_than_plural: פחות מ-%d שניות
20 actionview_instancetag_blank_option: בחר בבקשה
20 actionview_instancetag_blank_option: בחר בבקשה
21
21
22 activerecord_error_inclusion: לא כלול ברשימה
22 activerecord_error_inclusion: לא כלול ברשימה
23 activerecord_error_exclusion: שמור
23 activerecord_error_exclusion: שמור
24 activerecord_error_invalid: לא קביל
24 activerecord_error_invalid: לא קביל
25 activerecord_error_confirmation: לא מתאים לאישור
25 activerecord_error_confirmation: לא מתאים לאישור
26 activerecord_error_accepted: חייב להסכים
26 activerecord_error_accepted: חייב להסכים
27 activerecord_error_empty: לא יכול להיות ריק
27 activerecord_error_empty: לא יכול להיות ריק
28 activerecord_error_blank: לא יכול להיות חסר
28 activerecord_error_blank: לא יכול להיות חסר
29 activerecord_error_too_long: ארוך מדי
29 activerecord_error_too_long: ארוך מדי
30 activerecord_error_too_short: קצר מדי
30 activerecord_error_too_short: קצר מדי
31 activerecord_error_wrong_length: בארוך שגוי
31 activerecord_error_wrong_length: בארוך שגוי
32 activerecord_error_taken: כבר נלקח
32 activerecord_error_taken: כבר נלקח
33 activerecord_error_not_a_number: אינו מספר
33 activerecord_error_not_a_number: אינו מספר
34 activerecord_error_not_a_date: אינו תאריך קביל
34 activerecord_error_not_a_date: אינו תאריך קביל
35 activerecord_error_greater_than_start_date: חייב להיות מאוחר יותר מתאריך ההתחלה
35 activerecord_error_greater_than_start_date: חייב להיות מאוחר יותר מתאריך ההתחלה
36 activerecord_error_not_same_project: לא שייך לאותו הפרויקט
36 activerecord_error_not_same_project: לא שייך לאותו הפרויקט
37 activerecord_error_circular_dependency: הקשר הזה יצור תלות מעגלית
37 activerecord_error_circular_dependency: הקשר הזה יצור תלות מעגלית
38
38
39 general_fmt_age: שנה %d
39 general_fmt_age: שנה %d
40 general_fmt_age_plural: %d שנים
40 general_fmt_age_plural: %d שנים
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'לא'
45 general_text_No: 'לא'
46 general_text_Yes: 'כן'
46 general_text_Yes: 'כן'
47 general_text_no: 'לא'
47 general_text_no: 'לא'
48 general_text_yes: 'כן'
48 general_text_yes: 'כן'
49 general_lang_name: 'Hebrew (עברית)'
49 general_lang_name: 'Hebrew (עברית)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-8-I
51 general_csv_encoding: ISO-8859-8-I
52 general_pdf_encoding: ISO-8859-8-I
52 general_pdf_encoding: ISO-8859-8-I
53 general_day_names: שני,שלישי,רביעי,חמישי,שישי,שבת,ראשון
53 general_day_names: שני,שלישי,רביעי,חמישי,שישי,שבת,ראשון
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: החשבון עודכן בהצלחה!
56 notice_account_updated: החשבון עודכן בהצלחה!
57 notice_account_invalid_creditentials: שם משתמש או סיסמה שגויים
57 notice_account_invalid_creditentials: שם משתמש או סיסמה שגויים
58 notice_account_password_updated: הסיסמה עודכנה בהצלחה!
58 notice_account_password_updated: הסיסמה עודכנה בהצלחה!
59 notice_account_wrong_password: סיסמה שגויה
59 notice_account_wrong_password: סיסמה שגויה
60 notice_account_register_done: החשבון נוצר בהצלחה. להפעלת החשבון לחץ על הקישור שנשלח לדוא"ל שלך.
60 notice_account_register_done: החשבון נוצר בהצלחה. להפעלת החשבון לחץ על הקישור שנשלח לדוא"ל שלך.
61 notice_account_unknown_email: משתמש לא מוכר.
61 notice_account_unknown_email: משתמש לא מוכר.
62 notice_can_t_change_password: החשבון הזה משתמש במקור אימות חיצוני. שינוי סיסמה הינו בילתי אפשר
62 notice_can_t_change_password: החשבון הזה משתמש במקור אימות חיצוני. שינוי סיסמה הינו בילתי אפשר
63 notice_account_lost_email_sent: דוא"ל עם הוראות לבחירת סיסמה חדשה נשלח אליך.
63 notice_account_lost_email_sent: דוא"ל עם הוראות לבחירת סיסמה חדשה נשלח אליך.
64 notice_account_activated: חשבונך הופעל. אתה יכול להתחבר כעת.
64 notice_account_activated: חשבונך הופעל. אתה יכול להתחבר כעת.
65 notice_successful_create: יצירה מוצלחת.
65 notice_successful_create: יצירה מוצלחת.
66 notice_successful_update: עידכון מוצלח.
66 notice_successful_update: עידכון מוצלח.
67 notice_successful_delete: מחיקה מוצלחת.
67 notice_successful_delete: מחיקה מוצלחת.
68 notice_successful_connection: חיבור מוצלח.
68 notice_successful_connection: חיבור מוצלח.
69 notice_file_not_found: הדף שאת\ה מנסה לגשת אליו אינו קיים או שהוסר.
69 notice_file_not_found: הדף שאת\ה מנסה לגשת אליו אינו קיים או שהוסר.
70 notice_locking_conflict: המידע עודכן על ידי משתמש אחר.
70 notice_locking_conflict: המידע עודכן על ידי משתמש אחר.
71 notice_scm_error: כניסה ו\או גירסא אינם קיימים במאגר.
71 notice_scm_error: כניסה ו\או גירסא אינם קיימים במאגר.
72 notice_not_authorized: אינך מורשה לראות דף זה.
72 notice_not_authorized: אינך מורשה לראות דף זה.
73 notice_email_sent: דוא"ל נשלח לכתובת %s
73 notice_email_sent: דוא"ל נשלח לכתובת %s
74 notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s)
74 notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s)
75 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס.
75 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס.
76 notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s."
76 notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s."
77 notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך."
77 notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך."
78
78
79 mail_subject_lost_password: סיסמת ה-Redmine שלך
79 mail_subject_lost_password: סיסמת ה-Redmine שלך
80 mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:'
80 mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:'
81 mail_subject_register: הפעלת חשבון Redmine
81 mail_subject_register: הפעלת חשבון Redmine
82 mail_body_register: 'להפעלת חשבון ה-Redmine שלך, לחץ על הקישור הבא:'
82 mail_body_register: 'להפעלת חשבון ה-Redmine שלך, לחץ על הקישור הבא:'
83
83
84 gui_validation_error: שגיאה 1
84 gui_validation_error: שגיאה 1
85 gui_validation_error_plural: %d שגיאות
85 gui_validation_error_plural: %d שגיאות
86
86
87 field_name: שם
87 field_name: שם
88 field_description: תיאור
88 field_description: תיאור
89 field_summary: תקציר
89 field_summary: תקציר
90 field_is_required: נדרש
90 field_is_required: נדרש
91 field_firstname: שם פרטי
91 field_firstname: שם פרטי
92 field_lastname: שם משפחה
92 field_lastname: שם משפחה
93 field_mail: דוא"ל
93 field_mail: דוא"ל
94 field_filename: קובץ
94 field_filename: קובץ
95 field_filesize: גודל
95 field_filesize: גודל
96 field_downloads: הורדות
96 field_downloads: הורדות
97 field_author: כותב
97 field_author: כותב
98 field_created_on: נוצר
98 field_created_on: נוצר
99 field_updated_on: עודגן
99 field_updated_on: עודגן
100 field_field_format: פורמט
100 field_field_format: פורמט
101 field_is_for_all: לכל הפרויקטים
101 field_is_for_all: לכל הפרויקטים
102 field_possible_values: ערכים אפשריים
102 field_possible_values: ערכים אפשריים
103 field_regexp: ביטוי רגיל
103 field_regexp: ביטוי רגיל
104 field_min_length: אורך מינימאלי
104 field_min_length: אורך מינימאלי
105 field_max_length: אורך מקסימאלי
105 field_max_length: אורך מקסימאלי
106 field_value: ערך
106 field_value: ערך
107 field_category: קטגוריה
107 field_category: קטגוריה
108 field_title: כותרת
108 field_title: כותרת
109 field_project: פרויקט
109 field_project: פרויקט
110 field_issue: נושא
110 field_issue: נושא
111 field_status: מצב
111 field_status: מצב
112 field_notes: הערות
112 field_notes: הערות
113 field_is_closed: נושא סגור
113 field_is_closed: נושא סגור
114 field_is_default: ערך ברירת מחדל
114 field_is_default: ערך ברירת מחדל
115 field_tracker: עוקב
115 field_tracker: עוקב
116 field_subject: שם נושא
116 field_subject: שם נושא
117 field_due_date: תאריך סיום
117 field_due_date: תאריך סיום
118 field_assigned_to: מוצב ל
118 field_assigned_to: מוצב ל
119 field_priority: עדיפות
119 field_priority: עדיפות
120 field_fixed_version: גירסא מקובעת
120 field_fixed_version: גירסא מקובעת
121 field_user: מתשמש
121 field_user: מתשמש
122 field_role: תפקיד
122 field_role: תפקיד
123 field_homepage: דף הבית
123 field_homepage: דף הבית
124 field_is_public: פומבי
124 field_is_public: פומבי
125 field_parent: תת פרויקט של
125 field_parent: תת פרויקט של
126 field_is_in_chlog: נושאים המוצגים בדו"ח השינויים
126 field_is_in_chlog: נושאים המוצגים בדו"ח השינויים
127 field_is_in_roadmap: נושאים המוצגים במפת הדרכים
127 field_is_in_roadmap: נושאים המוצגים במפת הדרכים
128 field_login: שם משתמש
128 field_login: שם משתמש
129 field_mail_notification: הודעות דוא"ל
129 field_mail_notification: הודעות דוא"ל
130 field_admin: אדמיניסטרציה
130 field_admin: אדמיניסטרציה
131 field_last_login_on: חיבור אחרון
131 field_last_login_on: חיבור אחרון
132 field_language: שפה
132 field_language: שפה
133 field_effective_date: תאריך
133 field_effective_date: תאריך
134 field_password: סיסמה
134 field_password: סיסמה
135 field_new_password: סיסמה חדשה
135 field_new_password: סיסמה חדשה
136 field_password_confirmation: אישור
136 field_password_confirmation: אישור
137 field_version: גירסא
137 field_version: גירסא
138 field_type: סוג
138 field_type: סוג
139 field_host: שרת
139 field_host: שרת
140 field_port: פורט
140 field_port: פורט
141 field_account: חשבום
141 field_account: חשבום
142 field_base_dn: בסיס DN
142 field_base_dn: בסיס DN
143 field_attr_login: תכונת התחברות
143 field_attr_login: תכונת התחברות
144 field_attr_firstname: תכונת שם פרטים
144 field_attr_firstname: תכונת שם פרטים
145 field_attr_lastname: תכונת שם משפחה
145 field_attr_lastname: תכונת שם משפחה
146 field_attr_mail: תכונת דוא"ל
146 field_attr_mail: תכונת דוא"ל
147 field_onthefly: יצירת משתמשים זריזה
147 field_onthefly: יצירת משתמשים זריזה
148 field_start_date: התחל
148 field_start_date: התחל
149 field_done_ratio: %% גמור
149 field_done_ratio: %% גמור
150 field_auth_source: מצב אימות
150 field_auth_source: מצב אימות
151 field_hide_mail: החבא את כתובת הדוא"ל שלי
151 field_hide_mail: החבא את כתובת הדוא"ל שלי
152 field_comments: הערות
152 field_comments: הערות
153 field_url: URL
153 field_url: URL
154 field_start_page: דף התחלתי
154 field_start_page: דף התחלתי
155 field_subproject: תת פרויקט
155 field_subproject: תת פרויקט
156 field_hours: שעות
156 field_hours: שעות
157 field_activity: פעילות
157 field_activity: פעילות
158 field_spent_on: תאריך
158 field_spent_on: תאריך
159 field_identifier: מזהה
159 field_identifier: מזהה
160 field_is_filter: משמש כמסנן
160 field_is_filter: משמש כמסנן
161 field_issue_to_id: נושאים קשורים
161 field_issue_to_id: נושאים קשורים
162 field_delay: עיקוב
162 field_delay: עיקוב
163 field_assignable: ניתן להקצות נושאים לתפקיד זה
163 field_assignable: ניתן להקצות נושאים לתפקיד זה
164 field_redirect_existing_links: העבר קישורים קיימים
164 field_redirect_existing_links: העבר קישורים קיימים
165 field_estimated_hours: זמן משוער
165 field_estimated_hours: זמן משוער
166 field_column_names: עמודות
166 field_column_names: עמודות
167 field_default_value: ערך ברירת מחדל
167
168
168 setting_app_title: כותרת ישום
169 setting_app_title: כותרת ישום
169 setting_app_subtitle: תת-כותרת ישום
170 setting_app_subtitle: תת-כותרת ישום
170 setting_welcome_text: טקסט "ברוך הבא"
171 setting_welcome_text: טקסט "ברוך הבא"
171 setting_default_language: שפת ברירת מחדל
172 setting_default_language: שפת ברירת מחדל
172 setting_login_required: דרוש אימות
173 setting_login_required: דרוש אימות
173 setting_self_registration: אפשר הרשמות עצמית
174 setting_self_registration: אפשר הרשמות עצמית
174 setting_attachment_max_size: גודל דבוקה מקסימאלי
175 setting_attachment_max_size: גודל דבוקה מקסימאלי
175 setting_issues_export_limit: גבול יצוא נושאים
176 setting_issues_export_limit: גבול יצוא נושאים
176 setting_mail_from: כתובת שליחת דוא"ל
177 setting_mail_from: כתובת שליחת דוא"ל
177 setting_host_name: שם שרת
178 setting_host_name: שם שרת
178 setting_text_formatting: עיצוב טקסט
179 setting_text_formatting: עיצוב טקסט
179 setting_wiki_compression: כיווץ היסטורית WIKI
180 setting_wiki_compression: כיווץ היסטורית WIKI
180 setting_feeds_limit: גבול תוכן הזנות
181 setting_feeds_limit: גבול תוכן הזנות
181 setting_autofetch_changesets: משיכה אוטומתי של עידכונים
182 setting_autofetch_changesets: משיכה אוטומתי של עידכונים
182 setting_sys_api_enabled: Enable WS for repository management
183 setting_sys_api_enabled: Enable WS for repository management
183 setting_commit_ref_keywords: מילות מפתח מקשרות
184 setting_commit_ref_keywords: מילות מפתח מקשרות
184 setting_commit_fix_keywords: מילות מפתח מתקנות
185 setting_commit_fix_keywords: מילות מפתח מתקנות
185 setting_autologin: חיבור אוטומטי
186 setting_autologin: חיבור אוטומטי
186 setting_date_format: פורמט תאריך
187 setting_date_format: פורמט תאריך
187 setting_cross_project_issue_relations: הרשה קישור נושאים בין פרויקטים
188 setting_cross_project_issue_relations: הרשה קישור נושאים בין פרויקטים
188 setting_issue_list_default_columns: עמודות ברירת מחדל המוצגות ברשימת הנושאים
189 setting_issue_list_default_columns: עמודות ברירת מחדל המוצגות ברשימת הנושאים
189 setting_repositories_encodings: קידוד המאגרים
190 setting_repositories_encodings: קידוד המאגרים
190
191
191 label_user: משתמש
192 label_user: משתמש
192 label_user_plural: משתמשים
193 label_user_plural: משתמשים
193 label_user_new: משתמש חדש
194 label_user_new: משתמש חדש
194 label_project: פרויקט
195 label_project: פרויקט
195 label_project_new: פרויקט חדש
196 label_project_new: פרויקט חדש
196 label_project_plural: פרויקטים
197 label_project_plural: פרויקטים
197 label_project_all: כל הפרויקטים
198 label_project_all: כל הפרויקטים
198 label_project_latest: הפרויקטים החדשים ביותר
199 label_project_latest: הפרויקטים החדשים ביותר
199 label_issue: נושא
200 label_issue: נושא
200 label_issue_new: נושא חדש
201 label_issue_new: נושא חדש
201 label_issue_plural: נושאים
202 label_issue_plural: נושאים
202 label_issue_view_all: צפה בכל הנושאים
203 label_issue_view_all: צפה בכל הנושאים
203 label_document: מסמך
204 label_document: מסמך
204 label_document_new: מסמך חדש
205 label_document_new: מסמך חדש
205 label_document_plural: מסמכים
206 label_document_plural: מסמכים
206 label_role: תפקיד
207 label_role: תפקיד
207 label_role_plural: תפקידים
208 label_role_plural: תפקידים
208 label_role_new: תפקיד חדש
209 label_role_new: תפקיד חדש
209 label_role_and_permissions: תפקידים והרשאות
210 label_role_and_permissions: תפקידים והרשאות
210 label_member: חבר
211 label_member: חבר
211 label_member_new: חבר חדש
212 label_member_new: חבר חדש
212 label_member_plural: חברים
213 label_member_plural: חברים
213 label_tracker: עוקב
214 label_tracker: עוקב
214 label_tracker_plural: עוקבים
215 label_tracker_plural: עוקבים
215 label_tracker_new: עוקב חדש
216 label_tracker_new: עוקב חדש
216 label_workflow: זרימת עבודה
217 label_workflow: זרימת עבודה
217 label_issue_status: מצב נושא
218 label_issue_status: מצב נושא
218 label_issue_status_plural: מצבי נושא
219 label_issue_status_plural: מצבי נושא
219 label_issue_status_new: מצב חדש
220 label_issue_status_new: מצב חדש
220 label_issue_category: קטגורית נושא
221 label_issue_category: קטגורית נושא
221 label_issue_category_plural: קטגוריות נושא
222 label_issue_category_plural: קטגוריות נושא
222 label_issue_category_new: קטגוריה חדשה
223 label_issue_category_new: קטגוריה חדשה
223 label_custom_field: שדה אישי
224 label_custom_field: שדה אישי
224 label_custom_field_plural: שדות אישיים
225 label_custom_field_plural: שדות אישיים
225 label_custom_field_new: שדה אישי חדש
226 label_custom_field_new: שדה אישי חדש
226 label_enumerations: אינומרציות
227 label_enumerations: אינומרציות
227 label_enumeration_new: ערך חדש
228 label_enumeration_new: ערך חדש
228 label_information: מידע
229 label_information: מידע
229 label_information_plural: מידע
230 label_information_plural: מידע
230 label_please_login: התחבר בבקשה
231 label_please_login: התחבר בבקשה
231 label_register: הרשמה
232 label_register: הרשמה
232 label_password_lost: אבדה הסיסמה?
233 label_password_lost: אבדה הסיסמה?
233 label_home: דך הבית
234 label_home: דך הבית
234 label_my_page: הדף שלי
235 label_my_page: הדף שלי
235 label_my_account: השבון שלי
236 label_my_account: השבון שלי
236 label_my_projects: הפרויקטים שלי
237 label_my_projects: הפרויקטים שלי
237 label_administration: אדמיניסטרציה
238 label_administration: אדמיניסטרציה
238 label_login: התחבר
239 label_login: התחבר
239 label_logout: התנתק
240 label_logout: התנתק
240 label_help: עזרה
241 label_help: עזרה
241 label_reported_issues: נושאים שדווחו
242 label_reported_issues: נושאים שדווחו
242 label_assigned_to_me_issues: נושאים שהוצבו לי
243 label_assigned_to_me_issues: נושאים שהוצבו לי
243 label_last_login: חיבור אחרון
244 label_last_login: חיבור אחרון
244 label_last_updates: עידכון אחרון
245 label_last_updates: עידכון אחרון
245 label_last_updates_plural: %d עידכונים אחרונים
246 label_last_updates_plural: %d עידכונים אחרונים
246 label_registered_on: נרשם בתאריך
247 label_registered_on: נרשם בתאריך
247 label_activity: פעילות
248 label_activity: פעילות
248 label_new: חדש
249 label_new: חדש
249 label_logged_as: מחובר כ
250 label_logged_as: מחובר כ
250 label_environment: סביבה
251 label_environment: סביבה
251 label_authentication: אישור
252 label_authentication: אישור
252 label_auth_source: מצב אישור
253 label_auth_source: מצב אישור
253 label_auth_source_new: מצב אישור חדש
254 label_auth_source_new: מצב אישור חדש
254 label_auth_source_plural: מצבי אישור
255 label_auth_source_plural: מצבי אישור
255 label_subproject_plural: תת-פרויקטים
256 label_subproject_plural: תת-פרויקטים
256 label_min_max_length: אורך מינימאלי - מקסימאלי
257 label_min_max_length: אורך מינימאלי - מקסימאלי
257 label_list: רשימה
258 label_list: רשימה
258 label_date: תאריך
259 label_date: תאריך
259 label_integer: מספר שלים
260 label_integer: מספר שלים
260 label_boolean: ערך בוליאני
261 label_boolean: ערך בוליאני
261 label_string: טקסט
262 label_string: טקסט
262 label_text: טקסט ארוך
263 label_text: טקסט ארוך
263 label_attribute: תכונה
264 label_attribute: תכונה
264 label_attribute_plural: תכונות
265 label_attribute_plural: תכונות
265 label_download: הורדה %d
266 label_download: הורדה %d
266 label_download_plural: %d הורדות
267 label_download_plural: %d הורדות
267 label_no_data: אין מידע להציג
268 label_no_data: אין מידע להציג
268 label_change_status: שנה מצב
269 label_change_status: שנה מצב
269 label_history: הידטוריה
270 label_history: הידטוריה
270 label_attachment: קובץ
271 label_attachment: קובץ
271 label_attachment_new: קובץ חדש
272 label_attachment_new: קובץ חדש
272 label_attachment_delete: מחק קובץ
273 label_attachment_delete: מחק קובץ
273 label_attachment_plural: קבצים
274 label_attachment_plural: קבצים
274 label_report: דו"ח
275 label_report: דו"ח
275 label_report_plural: דו"חות
276 label_report_plural: דו"חות
276 label_news: חדשות
277 label_news: חדשות
277 label_news_new: הוסף חדשות
278 label_news_new: הוסף חדשות
278 label_news_plural: חדשות
279 label_news_plural: חדשות
279 label_news_latest: חדשות חדשות
280 label_news_latest: חדשות חדשות
280 label_news_view_all: צפה בכל החדשות
281 label_news_view_all: צפה בכל החדשות
281 label_change_log: דו"ח שינויים
282 label_change_log: דו"ח שינויים
282 label_settings: הגדרות
283 label_settings: הגדרות
283 label_overview: מבט רחב
284 label_overview: מבט רחב
284 label_version: גירסא
285 label_version: גירסא
285 label_version_new: גירסא חדשה
286 label_version_new: גירסא חדשה
286 label_version_plural: גירסאות
287 label_version_plural: גירסאות
287 label_confirmation: אישור
288 label_confirmation: אישור
288 label_export_to: יצא ל
289 label_export_to: יצא ל
289 label_read: קרא...
290 label_read: קרא...
290 label_public_projects: פרויקטים פומביים
291 label_public_projects: פרויקטים פומביים
291 label_open_issues: פותח
292 label_open_issues: פותח
292 label_open_issues_plural: פתוחים
293 label_open_issues_plural: פתוחים
293 label_closed_issues: סגור
294 label_closed_issues: סגור
294 label_closed_issues_plural: סגורים
295 label_closed_issues_plural: סגורים
295 label_total: סה"כ
296 label_total: סה"כ
296 label_permissions: הרשאות
297 label_permissions: הרשאות
297 label_current_status: מצב נוכחי
298 label_current_status: מצב נוכחי
298 label_new_statuses_allowed: מצבים חדשים אפשריים
299 label_new_statuses_allowed: מצבים חדשים אפשריים
299 label_all: הכל
300 label_all: הכל
300 label_none: כלום
301 label_none: כלום
301 label_next: הבא
302 label_next: הבא
302 label_previous: הקודם
303 label_previous: הקודם
303 label_used_by: בשימוש ע"י
304 label_used_by: בשימוש ע"י
304 label_details: פרטים
305 label_details: פרטים
305 label_add_note: הוסף הערה
306 label_add_note: הוסף הערה
306 label_per_page: לכל דף
307 label_per_page: לכל דף
307 label_calendar: לו"ח שנה
308 label_calendar: לו"ח שנה
308 label_months_from: חודשים מ
309 label_months_from: חודשים מ
309 label_gantt: גאנט
310 label_gantt: גאנט
310 label_internal: פנימי
311 label_internal: פנימי
311 label_last_changes: %d שינוים אחרונים
312 label_last_changes: %d שינוים אחרונים
312 label_change_view_all: צפה בכל השינוים
313 label_change_view_all: צפה בכל השינוים
313 label_personalize_page: הפוך דף זה לשלך
314 label_personalize_page: הפוך דף זה לשלך
314 label_comment: תגובה
315 label_comment: תגובה
315 label_comment_plural: תגובות
316 label_comment_plural: תגובות
316 label_comment_add: הוסף תגובה
317 label_comment_add: הוסף תגובה
317 label_comment_added: תגובה הוספה
318 label_comment_added: תגובה הוספה
318 label_comment_delete: מחק תגובות
319 label_comment_delete: מחק תגובות
319 label_query: שאילתה אישית
320 label_query: שאילתה אישית
320 label_query_plural: שאילתות אישיות
321 label_query_plural: שאילתות אישיות
321 label_query_new: שאילתה חדשה
322 label_query_new: שאילתה חדשה
322 label_filter_add: הוסף מסנן
323 label_filter_add: הוסף מסנן
323 label_filter_plural: מסננים
324 label_filter_plural: מסננים
324 label_equals: הוא
325 label_equals: הוא
325 label_not_equals: הוא לא
326 label_not_equals: הוא לא
326 label_in_less_than: בפחות מ
327 label_in_less_than: בפחות מ
327 label_in_more_than: ביותר מ
328 label_in_more_than: ביותר מ
328 label_in: ב
329 label_in: ב
329 label_today: היום
330 label_today: היום
330 label_this_week: השבוע
331 label_this_week: השבוע
331 label_less_than_ago: פחות ממספר ימים
332 label_less_than_ago: פחות ממספר ימים
332 label_more_than_ago: יותר ממספר ימים
333 label_more_than_ago: יותר ממספר ימים
333 label_ago: מספר ימים
334 label_ago: מספר ימים
334 label_contains: מכיל
335 label_contains: מכיל
335 label_not_contains: לא מכיל
336 label_not_contains: לא מכיל
336 label_day_plural: ימים
337 label_day_plural: ימים
337 label_repository: מאגר
338 label_repository: מאגר
338 label_browse: סייר
339 label_browse: סייר
339 label_modification: שינוי %d
340 label_modification: שינוי %d
340 label_modification_plural: %d שינויים
341 label_modification_plural: %d שינויים
341 label_revision: גירסא
342 label_revision: גירסא
342 label_revision_plural: גירסאות
343 label_revision_plural: גירסאות
343 label_added: הוסף
344 label_added: הוסף
344 label_modified: שונה
345 label_modified: שונה
345 label_deleted: נמחק
346 label_deleted: נמחק
346 label_latest_revision: גירסא אחרונה
347 label_latest_revision: גירסא אחרונה
347 label_latest_revision_plural: גירסאות אחרונות
348 label_latest_revision_plural: גירסאות אחרונות
348 label_view_revisions: צפה בגירסאות
349 label_view_revisions: צפה בגירסאות
349 label_max_size: גודל מקסימאלי
350 label_max_size: גודל מקסימאלי
350 label_on: 'ב'
351 label_on: 'ב'
351 label_sort_highest: הזז לראשית
352 label_sort_highest: הזז לראשית
352 label_sort_higher: הזז למעלה
353 label_sort_higher: הזז למעלה
353 label_sort_lower: הזז למטה
354 label_sort_lower: הזז למטה
354 label_sort_lowest: הזז לתחתית
355 label_sort_lowest: הזז לתחתית
355 label_roadmap: מפת הדרכים
356 label_roadmap: מפת הדרכים
356 label_roadmap_due_in: נגמר בעוד
357 label_roadmap_due_in: נגמר בעוד
357 label_roadmap_overdue: %s מאחר
358 label_roadmap_overdue: %s מאחר
358 label_roadmap_no_issues: אין נושאים לגירסא זו
359 label_roadmap_no_issues: אין נושאים לגירסא זו
359 label_search: חפש
360 label_search: חפש
360 label_result_plural: תוצאות
361 label_result_plural: תוצאות
361 label_all_words: כל המילים
362 label_all_words: כל המילים
362 label_wiki: Wiki
363 label_wiki: Wiki
363 label_wiki_edit: ערוך Wiki
364 label_wiki_edit: ערוך Wiki
364 label_wiki_edit_plural: עריכות Wiki
365 label_wiki_edit_plural: עריכות Wiki
365 label_wiki_page: דף Wiki
366 label_wiki_page: דף Wiki
366 label_wiki_page_plural: דפי Wiki
367 label_wiki_page_plural: דפי Wiki
367 label_index_by_title: סדר עך פי כותרת
368 label_index_by_title: סדר עך פי כותרת
368 label_index_by_date: סדר על פי תאריך
369 label_index_by_date: סדר על פי תאריך
369 label_current_version: גירסא נוכאית
370 label_current_version: גירסא נוכאית
370 label_preview: תצוגה מקדימה
371 label_preview: תצוגה מקדימה
371 label_feed_plural: הזנות
372 label_feed_plural: הזנות
372 label_changes_details: פירוט כל השינויים
373 label_changes_details: פירוט כל השינויים
373 label_issue_tracking: מעקב אחר נושאים
374 label_issue_tracking: מעקב אחר נושאים
374 label_spent_time: זמן שבוזבז
375 label_spent_time: זמן שבוזבז
375 label_f_hour: %.2f שעה
376 label_f_hour: %.2f שעה
376 label_f_hour_plural: %.2f שעות
377 label_f_hour_plural: %.2f שעות
377 label_time_tracking: מעקב זמנים
378 label_time_tracking: מעקב זמנים
378 label_change_plural: שינויים
379 label_change_plural: שינויים
379 label_statistics: סטטיסטיקות
380 label_statistics: סטטיסטיקות
380 label_commits_per_month: הפקדות לפי חודש
381 label_commits_per_month: הפקדות לפי חודש
381 label_commits_per_author: הפקדות לפי כותב
382 label_commits_per_author: הפקדות לפי כותב
382 label_view_diff: צפה בהבדלים
383 label_view_diff: צפה בהבדלים
383 label_diff_inline: בתוך השורה
384 label_diff_inline: בתוך השורה
384 label_diff_side_by_side: צד לצד
385 label_diff_side_by_side: צד לצד
385 label_options: אפשרויות
386 label_options: אפשרויות
386 label_copy_workflow_from: העתק זירמת עבודה מ
387 label_copy_workflow_from: העתק זירמת עבודה מ
387 label_permissions_report: דו"ח הרשאות
388 label_permissions_report: דו"ח הרשאות
388 label_watched_issues: נושאים שנצפו
389 label_watched_issues: נושאים שנצפו
389 label_related_issues: נושאים קשורים
390 label_related_issues: נושאים קשורים
390 label_applied_status: מוצב מוחל
391 label_applied_status: מוצב מוחל
391 label_loading: טוען...
392 label_loading: טוען...
392 label_relation_new: קשר חדש
393 label_relation_new: קשר חדש
393 label_relation_delete: מחק קשר
394 label_relation_delete: מחק קשר
394 label_relates_to: קשור ל
395 label_relates_to: קשור ל
395 label_duplicates: מכפיל את
396 label_duplicates: מכפיל את
396 label_blocks: חוסם את
397 label_blocks: חוסם את
397 label_blocked_by: חסום ע"י
398 label_blocked_by: חסום ע"י
398 label_precedes: מקדים את
399 label_precedes: מקדים את
399 label_follows: עוקב אחרי
400 label_follows: עוקב אחרי
400 label_end_to_start: מהתחלה לסוף
401 label_end_to_start: מהתחלה לסוף
401 label_end_to_end: מהסוף לסוף
402 label_end_to_end: מהסוף לסוף
402 label_start_to_start: מהתחלה להתחלה
403 label_start_to_start: מהתחלה להתחלה
403 label_start_to_end: מהתחלה לסוף
404 label_start_to_end: מהתחלה לסוף
404 label_stay_logged_in: השאר מחובר
405 label_stay_logged_in: השאר מחובר
405 label_disabled: מבוטל
406 label_disabled: מבוטל
406 label_show_completed_versions: הצג גירזאות גמורות
407 label_show_completed_versions: הצג גירזאות גמורות
407 label_me: אני
408 label_me: אני
408 label_board: פורום
409 label_board: פורום
409 label_board_new: פורום חדש
410 label_board_new: פורום חדש
410 label_board_plural: פורומים
411 label_board_plural: פורומים
411 label_topic_plural: נושאים
412 label_topic_plural: נושאים
412 label_message_plural: הודעות
413 label_message_plural: הודעות
413 label_message_last: הודעה אחרונה
414 label_message_last: הודעה אחרונה
414 label_message_new: הודעה חדשה
415 label_message_new: הודעה חדשה
415 label_reply_plural: השבות
416 label_reply_plural: השבות
416 label_send_information: שלח מידע על חשבון למשתמש
417 label_send_information: שלח מידע על חשבון למשתמש
417 label_year: שנה
418 label_year: שנה
418 label_month: חודש
419 label_month: חודש
419 label_week: שבו
420 label_week: שבו
420 label_date_from: מאת
421 label_date_from: מאת
421 label_date_to: אל
422 label_date_to: אל
422 label_language_based: מבוסס שפה
423 label_language_based: מבוסס שפה
423 label_sort_by: מין לפי %s
424 label_sort_by: מין לפי %s
424 label_send_test_email: שלח דו"ל בדיקה
425 label_send_test_email: שלח דו"ל בדיקה
425 label_feeds_access_key_created_on: מפתח הזנת RSS נוצר לפני%s
426 label_feeds_access_key_created_on: מפתח הזנת RSS נוצר לפני%s
426 label_module_plural: מודולים
427 label_module_plural: מודולים
427 label_added_time_by: הוסף על ידי %s לפני %s
428 label_added_time_by: הוסף על ידי %s לפני %s
428 label_updated_time: עודכן לפני %s
429 label_updated_time: עודכן לפני %s
429 label_jump_to_a_project: קפוץ לפרויקט...
430 label_jump_to_a_project: קפוץ לפרויקט...
430 label_file_plural: קבצים
431 label_file_plural: קבצים
431 label_changeset_plural: אוסף שינוים
432 label_changeset_plural: אוסף שינוים
432 label_default_columns: עמודת ברירת מחדל
433 label_default_columns: עמודת ברירת מחדל
433 label_no_change_option: (אין שינוים)
434 label_no_change_option: (אין שינוים)
434 label_bulk_edit_selected_issues: ערוך את הנושאים המסומנים
435 label_bulk_edit_selected_issues: ערוך את הנושאים המסומנים
435 label_theme: ערכת נושא
436 label_theme: ערכת נושא
436 label_default: ברירת מחדש
437 label_default: ברירת מחדש
437
438
438 button_login: התחבר
439 button_login: התחבר
439 button_submit: הגש
440 button_submit: הגש
440 button_save: שמור
441 button_save: שמור
441 button_check_all: בחר הכל
442 button_check_all: בחר הכל
442 button_uncheck_all: בחר כלום
443 button_uncheck_all: בחר כלום
443 button_delete: מחק
444 button_delete: מחק
444 button_create: צוק
445 button_create: צוק
445 button_test: בדוק
446 button_test: בדוק
446 button_edit: ערוך
447 button_edit: ערוך
447 button_add: הוסף
448 button_add: הוסף
448 button_change: שנה
449 button_change: שנה
449 button_apply: הוצא לפועל
450 button_apply: הוצא לפועל
450 button_clear: נקה
451 button_clear: נקה
451 button_lock: נעל
452 button_lock: נעל
452 button_unlock: בטל נעילה
453 button_unlock: בטל נעילה
453 button_download: הורד
454 button_download: הורד
454 button_list: קשימה
455 button_list: קשימה
455 button_view: צפה
456 button_view: צפה
456 button_move: הזז
457 button_move: הזז
457 button_back: הקודם
458 button_back: הקודם
458 button_cancel: בטח
459 button_cancel: בטח
459 button_activate: הפעל
460 button_activate: הפעל
460 button_sort: מין
461 button_sort: מין
461 button_log_time: זמן לוג
462 button_log_time: זמן לוג
462 button_rollback: חזור לגירסא זו
463 button_rollback: חזור לגירסא זו
463 button_watch: צפה
464 button_watch: צפה
464 button_unwatch: בטל צפיה
465 button_unwatch: בטל צפיה
465 button_reply: השב
466 button_reply: השב
466 button_archive: ארכיון
467 button_archive: ארכיון
467 button_unarchive: הוצא מהארכיון
468 button_unarchive: הוצא מהארכיון
468 button_reset: אפס
469 button_reset: אפס
469 button_rename: שנה שם
470 button_rename: שנה שם
470
471
471 status_active: פעיל
472 status_active: פעיל
472 status_registered: רשום
473 status_registered: רשום
473 status_locked: נעול
474 status_locked: נעול
474
475
475 text_select_mail_notifications: בחר פעולת שבגללן ישלח דוא"ל.
476 text_select_mail_notifications: בחר פעולת שבגללן ישלח דוא"ל.
476 text_regexp_info: כגון. ^[A-Z0-9]+$
477 text_regexp_info: כגון. ^[A-Z0-9]+$
477 text_min_max_length_info: 0 משמעו ללא הגבלות
478 text_min_max_length_info: 0 משמעו ללא הגבלות
478 text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו ?
479 text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו ?
479 text_workflow_edit: בחר תפקיד ועוקב כדי לערות את זרימת העבודה
480 text_workflow_edit: בחר תפקיד ועוקב כדי לערות את זרימת העבודה
480 text_are_you_sure: האם אתה בטוח ?
481 text_are_you_sure: האם אתה בטוח ?
481 text_journal_changed: שונה מ %s ל %s
482 text_journal_changed: שונה מ %s ל %s
482 text_journal_set_to: שונה ל %s
483 text_journal_set_to: שונה ל %s
483 text_journal_deleted: נמחק
484 text_journal_deleted: נמחק
484 text_tip_task_begin_day: מטלה המתחילה היום
485 text_tip_task_begin_day: מטלה המתחילה היום
485 text_tip_task_end_day: מטלה המסתיימת היום
486 text_tip_task_end_day: מטלה המסתיימת היום
486 text_tip_task_begin_end_day: מתלה המתחילה ומסתיימת היום
487 text_tip_task_begin_end_day: מתלה המתחילה ומסתיימת היום
487 text_project_identifier_info: 'אותיות לטיניות (a-z), מספרים ומקפים.<br />ברגע שנשמר, לא ניתן לשנות את המזהה.'
488 text_project_identifier_info: 'אותיות לטיניות (a-z), מספרים ומקפים.<br />ברגע שנשמר, לא ניתן לשנות את המזהה.'
488 text_caracters_maximum: מקסימום %d תווים.
489 text_caracters_maximum: מקסימום %d תווים.
489 text_length_between: אורך בין %d ל %d תווים.
490 text_length_between: אורך בין %d ל %d תווים.
490 text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור עוקב זה
491 text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור עוקב זה
491 text_unallowed_characters: תווים לא מורשים
492 text_unallowed_characters: תווים לא מורשים
492 text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים).
493 text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים).
493 text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדות
494 text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדות
494 text_issue_added: הנושא %s דווח.
495 text_issue_added: הנושא %s דווח.
495 text_issue_updated: הנושא %s עודכן.
496 text_issue_updated: הנושא %s עודכן.
496 text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו?
497 text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו?
497 text_issue_category_destroy_question: כמה נושאים (%d) מוצבים לקטגוריה הזו. מה ברצונך לעשות?
498 text_issue_category_destroy_question: כמה נושאים (%d) מוצבים לקטגוריה הזו. מה ברצונך לעשות?
498 text_issue_category_destroy_assignments: הסר הצבת קטגוריה
499 text_issue_category_destroy_assignments: הסר הצבת קטגוריה
499 text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים
500 text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים
500
501
501 default_role_manager: מנהל
502 default_role_manager: מנהל
502 default_role_developper: מפתח
503 default_role_developper: מפתח
503 default_role_reporter: מדווח
504 default_role_reporter: מדווח
504 default_tracker_bug: באג
505 default_tracker_bug: באג
505 default_tracker_feature: פיצ'ר
506 default_tracker_feature: פיצ'ר
506 default_tracker_support: תמיכה
507 default_tracker_support: תמיכה
507 default_issue_status_new: חדש
508 default_issue_status_new: חדש
508 default_issue_status_assigned: מוצב
509 default_issue_status_assigned: מוצב
509 default_issue_status_resolved: פתור
510 default_issue_status_resolved: פתור
510 default_issue_status_feedback: משוב
511 default_issue_status_feedback: משוב
511 default_issue_status_closed: סגור
512 default_issue_status_closed: סגור
512 default_issue_status_rejected: דחוי
513 default_issue_status_rejected: דחוי
513 default_doc_category_user: תיעוד משתמש
514 default_doc_category_user: תיעוד משתמש
514 default_doc_category_tech: תיעוד טכני
515 default_doc_category_tech: תיעוד טכני
515 default_priority_low: נמוכה
516 default_priority_low: נמוכה
516 default_priority_normal: רגילה
517 default_priority_normal: רגילה
517 default_priority_high: גהבוה
518 default_priority_high: גהבוה
518 default_priority_urgent: דחופה
519 default_priority_urgent: דחופה
519 default_priority_immediate: מידית
520 default_priority_immediate: מידית
520 default_activity_design: עיצוב
521 default_activity_design: עיצוב
521 default_activity_development: פיתוח
522 default_activity_development: פיתוח
522
523
523 enumeration_issue_priorities: עדיפות נושאים
524 enumeration_issue_priorities: עדיפות נושאים
524 enumeration_doc_categories: קטגוריות מסמכים
525 enumeration_doc_categories: קטגוריות מסמכים
525 enumeration_activities: פעילויות (מעקב אחר זמנים)
526 enumeration_activities: פעילויות (מעקב אחר זמנים)
526 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
527 label_nobody: nobody
528 label_nobody: nobody
528 button_change_password: Change password
529 button_change_password: Change password
529 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 setting_emails_footer: Emails footer
534 setting_emails_footer: Emails footer
534 label_float: Float
535 label_float: Float
535 button_copy: Copy
536 button_copy: Copy
536 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information: Your Redmine account information
538 mail_body_account_information: Your Redmine account information
538 setting_protocol: Protocol
539 setting_protocol: Protocol
539 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 setting_time_format: Time format
541 setting_time_format: Time format
541 label_registration_activation_by_email: account activation by email
542 label_registration_activation_by_email: account activation by email
542 mail_subject_account_activation_request: Redmine account activation request
543 mail_subject_account_activation_request: Redmine account activation request
543 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 label_registration_automatic_activation: automatic account activation
545 label_registration_automatic_activation: automatic account activation
545 label_registration_manual_activation: manual account activation
546 label_registration_manual_activation: manual account activation
546 notice_account_pending: "Your account was created and is now pending administrator approval."
547 notice_account_pending: "Your account was created and is now pending administrator approval."
547 field_time_zone: Time zone
548 field_time_zone: Time zone
548 text_caracters_minimum: Must be at least %d characters long.
549 text_caracters_minimum: Must be at least %d characters long.
549 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 button_annotate: Annotate
551 button_annotate: Annotate
551 label_issues_by: Issues by %s
552 label_issues_by: Issues by %s
552 field_searchable: Searchable
553 field_searchable: Searchable
553 label_display_per_page: 'Per page: %s'
554 label_display_per_page: 'Per page: %s'
554 setting_per_page_options: Objects per page options
555 setting_per_page_options: Objects per page options
555 label_age: Age
556 label_age: Age
556 notice_default_data_loaded: Default configuration successfully loaded.
557 notice_default_data_loaded: Default configuration successfully loaded.
557 text_load_default_configuration: Load the default configuration
558 text_load_default_configuration: Load the default configuration
558 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 button_update: Update
561 button_update: Update
561 label_change_properties: Change properties
562 label_change_properties: Change properties
562 label_general: General
563 label_general: General
563 label_repository_plural: Repositories
564 label_repository_plural: Repositories
564 label_associated_revisions: Associated revisions
565 label_associated_revisions: Associated revisions
@@ -1,564 +1,565
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 giorno
8 actionview_datehelper_time_in_words_day: 1 giorno
9 actionview_datehelper_time_in_words_day_plural: %d giorni
9 actionview_datehelper_time_in_words_day_plural: %d giorni
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
20 actionview_instancetag_blank_option: Scegli
20 actionview_instancetag_blank_option: Scegli
21
21
22 activerecord_error_inclusion: non è incluso nella lista
22 activerecord_error_inclusion: non è incluso nella lista
23 activerecord_error_exclusion: e' riservato
23 activerecord_error_exclusion: e' riservato
24 activerecord_error_invalid: non e' valido
24 activerecord_error_invalid: non e' valido
25 activerecord_error_confirmation: non coincide con la conferma
25 activerecord_error_confirmation: non coincide con la conferma
26 activerecord_error_accepted: deve essere accettato
26 activerecord_error_accepted: deve essere accettato
27 activerecord_error_empty: non puo' essere vuoto
27 activerecord_error_empty: non puo' essere vuoto
28 activerecord_error_blank: non puo' essere blank
28 activerecord_error_blank: non puo' essere blank
29 activerecord_error_too_long: e' troppo lungo/a
29 activerecord_error_too_long: e' troppo lungo/a
30 activerecord_error_too_short: e' troppo corto/a
30 activerecord_error_too_short: e' troppo corto/a
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
32 activerecord_error_taken: e' gia' stato/a preso/a
32 activerecord_error_taken: e' gia' stato/a preso/a
33 activerecord_error_not_a_number: non e' un numero
33 activerecord_error_not_a_number: non e' un numero
34 activerecord_error_not_a_date: non e' una data valida
34 activerecord_error_not_a_date: non e' una data valida
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Si'
46 general_text_Yes: 'Si'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'si'
48 general_text_yes: 'si'
49 general_lang_name: 'Italiano'
49 general_lang_name: 'Italiano'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
53 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: L'utenza è stata aggiornata.
56 notice_account_updated: L'utenza è stata aggiornata.
57 notice_account_invalid_creditentials: Nome utente o password non validi.
57 notice_account_invalid_creditentials: Nome utente o password non validi.
58 notice_account_password_updated: La password è stata aggiornata.
58 notice_account_password_updated: La password è stata aggiornata.
59 notice_account_wrong_password: Password errata
59 notice_account_wrong_password: Password errata
60 notice_account_register_done: L'utenza è stata creata.
60 notice_account_register_done: L'utenza è stata creata.
61 notice_account_unknown_email: Utente sconosciuto.
61 notice_account_unknown_email: Utente sconosciuto.
62 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
62 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
63 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
63 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
64 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
64 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
65 notice_successful_create: Creazione effettuata.
65 notice_successful_create: Creazione effettuata.
66 notice_successful_update: Modifica effettuata.
66 notice_successful_update: Modifica effettuata.
67 notice_successful_delete: Eliminazione effettuata.
67 notice_successful_delete: Eliminazione effettuata.
68 notice_successful_connection: Connessione effettuata.
68 notice_successful_connection: Connessione effettuata.
69 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
69 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
70 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
70 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
71 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
71 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
72 notice_not_authorized: You are not authorized to access this page.
72 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
76
77 mail_subject_lost_password: Password redMine
77 mail_subject_lost_password: Password redMine
78 mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:'
78 mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:'
79 mail_subject_register: Attivazione utenza redMine
79 mail_subject_register: Attivazione utenza redMine
80 mail_body_register: 'Per attivare la vostra utenza Redmine, usate il seguente collegamento:'
80 mail_body_register: 'Per attivare la vostra utenza Redmine, usate il seguente collegamento:'
81
81
82 gui_validation_error: 1 errore
82 gui_validation_error: 1 errore
83 gui_validation_error_plural: %d errori
83 gui_validation_error_plural: %d errori
84
84
85 field_name: Nome
85 field_name: Nome
86 field_description: Descrizione
86 field_description: Descrizione
87 field_summary: Sommario
87 field_summary: Sommario
88 field_is_required: Richiesto
88 field_is_required: Richiesto
89 field_firstname: Nome
89 field_firstname: Nome
90 field_lastname: Cognome
90 field_lastname: Cognome
91 field_mail: Email
91 field_mail: Email
92 field_filename: File
92 field_filename: File
93 field_filesize: Dimensione
93 field_filesize: Dimensione
94 field_downloads: Download
94 field_downloads: Download
95 field_author: Autore
95 field_author: Autore
96 field_created_on: Creato
96 field_created_on: Creato
97 field_updated_on: Aggiornato
97 field_updated_on: Aggiornato
98 field_field_format: Formato
98 field_field_format: Formato
99 field_is_for_all: Per tutti i progetti
99 field_is_for_all: Per tutti i progetti
100 field_possible_values: Valori possibili
100 field_possible_values: Valori possibili
101 field_regexp: Espressione regolare
101 field_regexp: Espressione regolare
102 field_min_length: Lunghezza minima
102 field_min_length: Lunghezza minima
103 field_max_length: Lunghezza massima
103 field_max_length: Lunghezza massima
104 field_value: Valore
104 field_value: Valore
105 field_category: Categoria
105 field_category: Categoria
106 field_title: Titolo
106 field_title: Titolo
107 field_project: Progetto
107 field_project: Progetto
108 field_issue: Issue
108 field_issue: Issue
109 field_status: Stato
109 field_status: Stato
110 field_notes: Note
110 field_notes: Note
111 field_is_closed: Chiude il contesto
111 field_is_closed: Chiude il contesto
112 field_is_default: Stato predefinito
112 field_is_default: Stato predefinito
113 field_tracker: Tracker
113 field_tracker: Tracker
114 field_subject: Oggetto
114 field_subject: Oggetto
115 field_due_date: Data ultima
115 field_due_date: Data ultima
116 field_assigned_to: Assegnato a
116 field_assigned_to: Assegnato a
117 field_priority: Priorita'
117 field_priority: Priorita'
118 field_fixed_version: Versione di fix
118 field_fixed_version: Versione di fix
119 field_user: Utente
119 field_user: Utente
120 field_role: Ruolo
120 field_role: Ruolo
121 field_homepage: Homepage
121 field_homepage: Homepage
122 field_is_public: Pubblico
122 field_is_public: Pubblico
123 field_parent: Sottoprogetto di
123 field_parent: Sottoprogetto di
124 field_is_in_chlog: Contesti mostrati nel changelog
124 field_is_in_chlog: Contesti mostrati nel changelog
125 field_is_in_roadmap: Contesti mostrati nel roadmap
125 field_is_in_roadmap: Contesti mostrati nel roadmap
126 field_login: Login
126 field_login: Login
127 field_mail_notification: Notifiche via e-mail
127 field_mail_notification: Notifiche via e-mail
128 field_admin: Amministratore
128 field_admin: Amministratore
129 field_last_login_on: Ultima connessione
129 field_last_login_on: Ultima connessione
130 field_language: Lingua
130 field_language: Lingua
131 field_effective_date: Data
131 field_effective_date: Data
132 field_password: Password
132 field_password: Password
133 field_new_password: Nuova password
133 field_new_password: Nuova password
134 field_password_confirmation: Conferma
134 field_password_confirmation: Conferma
135 field_version: Versione
135 field_version: Versione
136 field_type: Tipo
136 field_type: Tipo
137 field_host: Host
137 field_host: Host
138 field_port: Porta
138 field_port: Porta
139 field_account: Utenza
139 field_account: Utenza
140 field_base_dn: DN base
140 field_base_dn: DN base
141 field_attr_login: Attributo login
141 field_attr_login: Attributo login
142 field_attr_firstname: Attributo nome
142 field_attr_firstname: Attributo nome
143 field_attr_lastname: Attributo cognome
143 field_attr_lastname: Attributo cognome
144 field_attr_mail: Attributo e-mail
144 field_attr_mail: Attributo e-mail
145 field_onthefly: Creazione utenza "al volo"
145 field_onthefly: Creazione utenza "al volo"
146 field_start_date: Inizio
146 field_start_date: Inizio
147 field_done_ratio: %% completo
147 field_done_ratio: %% completo
148 field_auth_source: Modalità di autenticazione
148 field_auth_source: Modalità di autenticazione
149 field_hide_mail: Nascondi il mio indirizzo di e-mail
149 field_hide_mail: Nascondi il mio indirizzo di e-mail
150 field_comments: Commento
150 field_comments: Commento
151 field_url: URL
151 field_url: URL
152 field_start_page: Pagina principale
152 field_start_page: Pagina principale
153 field_subproject: Sottoprogetto
153 field_subproject: Sottoprogetto
154 field_hours: Hours
154 field_hours: Hours
155 field_activity: Activity
155 field_activity: Activity
156 field_spent_on: Data
156 field_spent_on: Data
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 field_assignable: Issues can be assigned to this role
162 field_redirect_existing_links: Redirect existing links
162 field_redirect_existing_links: Redirect existing links
163 field_estimated_hours: Estimated time
163 field_estimated_hours: Estimated time
164 field_default_value: Stato predefinito
164
165
165 setting_app_title: Titolo applicazione
166 setting_app_title: Titolo applicazione
166 setting_app_subtitle: Sottotitolo applicazione
167 setting_app_subtitle: Sottotitolo applicazione
167 setting_welcome_text: Testo di benvenuto
168 setting_welcome_text: Testo di benvenuto
168 setting_default_language: Lingua di default
169 setting_default_language: Lingua di default
169 setting_login_required: Autenticazione richiesta
170 setting_login_required: Autenticazione richiesta
170 setting_self_registration: Auto-registrazione abilitata
171 setting_self_registration: Auto-registrazione abilitata
171 setting_attachment_max_size: Massima dimensione allegati
172 setting_attachment_max_size: Massima dimensione allegati
172 setting_issues_export_limit: Limite esportazione contesti
173 setting_issues_export_limit: Limite esportazione contesti
173 setting_mail_from: Indirizzo sorgente e-mail
174 setting_mail_from: Indirizzo sorgente e-mail
174 setting_host_name: Nome host
175 setting_host_name: Nome host
175 setting_text_formatting: Formattazione testo
176 setting_text_formatting: Formattazione testo
176 setting_wiki_compression: Compressione di storia di Wiki
177 setting_wiki_compression: Compressione di storia di Wiki
177 setting_feeds_limit: Limite contenuti del feed
178 setting_feeds_limit: Limite contenuti del feed
178 setting_autofetch_changesets: Acquisisci automaticamente le commit
179 setting_autofetch_changesets: Acquisisci automaticamente le commit
179 setting_sys_api_enabled: Abilita WS per la gestione del repository
180 setting_sys_api_enabled: Abilita WS per la gestione del repository
180 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_fix_keywords: Fixing keywords
182 setting_commit_fix_keywords: Fixing keywords
182 setting_autologin: Autologin
183 setting_autologin: Autologin
183 setting_date_format: Date format
184 setting_date_format: Date format
184 setting_cross_project_issue_relations: Allow cross-project issue relations
185 setting_cross_project_issue_relations: Allow cross-project issue relations
185
186
186 label_user: Utente
187 label_user: Utente
187 label_user_plural: Utenti
188 label_user_plural: Utenti
188 label_user_new: Nuovo utente
189 label_user_new: Nuovo utente
189 label_project: Progetto
190 label_project: Progetto
190 label_project_new: Nuovo progetto
191 label_project_new: Nuovo progetto
191 label_project_plural: Progetti
192 label_project_plural: Progetti
192 label_project_all: All Projects
193 label_project_all: All Projects
193 label_project_latest: Ultimi progetti registrati
194 label_project_latest: Ultimi progetti registrati
194 label_issue: Contesto
195 label_issue: Contesto
195 label_issue_new: Nuovo contesto
196 label_issue_new: Nuovo contesto
196 label_issue_plural: Contesti
197 label_issue_plural: Contesti
197 label_issue_view_all: Mostra tutti i contesti
198 label_issue_view_all: Mostra tutti i contesti
198 label_document: Documento
199 label_document: Documento
199 label_document_new: Nuovo documento
200 label_document_new: Nuovo documento
200 label_document_plural: Documenti
201 label_document_plural: Documenti
201 label_role: Ruolo
202 label_role: Ruolo
202 label_role_plural: Ruoli
203 label_role_plural: Ruoli
203 label_role_new: Nuovo ruolo
204 label_role_new: Nuovo ruolo
204 label_role_and_permissions: Ruoli e permessi
205 label_role_and_permissions: Ruoli e permessi
205 label_member: Membro
206 label_member: Membro
206 label_member_new: Nuovo membro
207 label_member_new: Nuovo membro
207 label_member_plural: Membri
208 label_member_plural: Membri
208 label_tracker: Tracker
209 label_tracker: Tracker
209 label_tracker_plural: Tracker
210 label_tracker_plural: Tracker
210 label_tracker_new: Nuovo tracker
211 label_tracker_new: Nuovo tracker
211 label_workflow: Workflow
212 label_workflow: Workflow
212 label_issue_status: Stato contesti
213 label_issue_status: Stato contesti
213 label_issue_status_plural: Stati contesto
214 label_issue_status_plural: Stati contesto
214 label_issue_status_new: Nuovo stato
215 label_issue_status_new: Nuovo stato
215 label_issue_category: Categorie contesti
216 label_issue_category: Categorie contesti
216 label_issue_category_plural: Categorie contesto
217 label_issue_category_plural: Categorie contesto
217 label_issue_category_new: Nuova categoria
218 label_issue_category_new: Nuova categoria
218 label_custom_field: Campo personalizzato
219 label_custom_field: Campo personalizzato
219 label_custom_field_plural: Campi personalizzati
220 label_custom_field_plural: Campi personalizzati
220 label_custom_field_new: Nuovo campo personalizzato
221 label_custom_field_new: Nuovo campo personalizzato
221 label_enumerations: Enumerazioni
222 label_enumerations: Enumerazioni
222 label_enumeration_new: Nuovo valore
223 label_enumeration_new: Nuovo valore
223 label_information: Informazione
224 label_information: Informazione
224 label_information_plural: Informazioni
225 label_information_plural: Informazioni
225 label_please_login: Autenticarsi
226 label_please_login: Autenticarsi
226 label_register: Registrati
227 label_register: Registrati
227 label_password_lost: Password dimenticata
228 label_password_lost: Password dimenticata
228 label_home: Home
229 label_home: Home
229 label_my_page: Pagina personale
230 label_my_page: Pagina personale
230 label_my_account: La mia utenza
231 label_my_account: La mia utenza
231 label_my_projects: I miei progetti
232 label_my_projects: I miei progetti
232 label_administration: Amministrazione
233 label_administration: Amministrazione
233 label_login: Login
234 label_login: Login
234 label_logout: Logout
235 label_logout: Logout
235 label_help: Aiuto
236 label_help: Aiuto
236 label_reported_issues: Contesti segnalati
237 label_reported_issues: Contesti segnalati
237 label_assigned_to_me_issues: I miei contesti
238 label_assigned_to_me_issues: I miei contesti
238 label_last_login: Ultimo collegamento
239 label_last_login: Ultimo collegamento
239 label_last_updates: Ultimo aggiornamento
240 label_last_updates: Ultimo aggiornamento
240 label_last_updates_plural: %d ultimo aggiornamento
241 label_last_updates_plural: %d ultimo aggiornamento
241 label_registered_on: Registrato il
242 label_registered_on: Registrato il
242 label_activity: Attività
243 label_activity: Attività
243 label_new: Nuovo
244 label_new: Nuovo
244 label_logged_as: Autenticato come
245 label_logged_as: Autenticato come
245 label_environment: Ambiente
246 label_environment: Ambiente
246 label_authentication: Autenticazione
247 label_authentication: Autenticazione
247 label_auth_source: Modalità di autenticazione
248 label_auth_source: Modalità di autenticazione
248 label_auth_source_new: Nuova modalità di autenticazione
249 label_auth_source_new: Nuova modalità di autenticazione
249 label_auth_source_plural: Modalità di autenticazione
250 label_auth_source_plural: Modalità di autenticazione
250 label_subproject_plural: Sottoprogetti
251 label_subproject_plural: Sottoprogetti
251 label_min_max_length: Lunghezza minima - massima
252 label_min_max_length: Lunghezza minima - massima
252 label_list: Elenco
253 label_list: Elenco
253 label_date: Data
254 label_date: Data
254 label_integer: Intero
255 label_integer: Intero
255 label_boolean: Booleano
256 label_boolean: Booleano
256 label_string: Testo
257 label_string: Testo
257 label_text: Testo esteso
258 label_text: Testo esteso
258 label_attribute: Attributo
259 label_attribute: Attributo
259 label_attribute_plural: Attributi
260 label_attribute_plural: Attributi
260 label_download: %d Download
261 label_download: %d Download
261 label_download_plural: %d Download
262 label_download_plural: %d Download
262 label_no_data: Nessun dato disponibile
263 label_no_data: Nessun dato disponibile
263 label_change_status: Cambia stato
264 label_change_status: Cambia stato
264 label_history: Cronologia
265 label_history: Cronologia
265 label_attachment: File
266 label_attachment: File
266 label_attachment_new: Nuovo file
267 label_attachment_new: Nuovo file
267 label_attachment_delete: Elimina file
268 label_attachment_delete: Elimina file
268 label_attachment_plural: File
269 label_attachment_plural: File
269 label_report: Report
270 label_report: Report
270 label_report_plural: Report
271 label_report_plural: Report
271 label_news: Notizia
272 label_news: Notizia
272 label_news_new: Aggiungi notizia
273 label_news_new: Aggiungi notizia
273 label_news_plural: Notizie
274 label_news_plural: Notizie
274 label_news_latest: Utime notizie
275 label_news_latest: Utime notizie
275 label_news_view_all: Tutte le notizie
276 label_news_view_all: Tutte le notizie
276 label_change_log: Change log
277 label_change_log: Change log
277 label_settings: Impostazioni
278 label_settings: Impostazioni
278 label_overview: Panoramica
279 label_overview: Panoramica
279 label_version: Versione
280 label_version: Versione
280 label_version_new: Nuova versione
281 label_version_new: Nuova versione
281 label_version_plural: Versioni
282 label_version_plural: Versioni
282 label_confirmation: Conferma
283 label_confirmation: Conferma
283 label_export_to: Esporta su
284 label_export_to: Esporta su
284 label_read: Leggi...
285 label_read: Leggi...
285 label_public_projects: Progetti pubblici
286 label_public_projects: Progetti pubblici
286 label_open_issues: aperta
287 label_open_issues: aperta
287 label_open_issues_plural: aperte
288 label_open_issues_plural: aperte
288 label_closed_issues: chiusa
289 label_closed_issues: chiusa
289 label_closed_issues_plural: chiuse
290 label_closed_issues_plural: chiuse
290 label_total: Totale
291 label_total: Totale
291 label_permissions: Permessi
292 label_permissions: Permessi
292 label_current_status: Stato attuale
293 label_current_status: Stato attuale
293 label_new_statuses_allowed: Nuovi stati possibili
294 label_new_statuses_allowed: Nuovi stati possibili
294 label_all: tutti
295 label_all: tutti
295 label_none: nessuno
296 label_none: nessuno
296 label_next: Successivo
297 label_next: Successivo
297 label_previous: Precedente
298 label_previous: Precedente
298 label_used_by: Usato da
299 label_used_by: Usato da
299 label_details: Dettagli
300 label_details: Dettagli
300 label_add_note: Aggiungi una nota
301 label_add_note: Aggiungi una nota
301 label_per_page: Per pagina
302 label_per_page: Per pagina
302 label_calendar: Calendario
303 label_calendar: Calendario
303 label_months_from: mesi da
304 label_months_from: mesi da
304 label_gantt: Gantt
305 label_gantt: Gantt
305 label_internal: Interno
306 label_internal: Interno
306 label_last_changes: ultime %d modifiche
307 label_last_changes: ultime %d modifiche
307 label_change_view_all: Tutte le modifiche
308 label_change_view_all: Tutte le modifiche
308 label_personalize_page: Personalizza la pagina
309 label_personalize_page: Personalizza la pagina
309 label_comment: Commento
310 label_comment: Commento
310 label_comment_plural: Commenti
311 label_comment_plural: Commenti
311 label_comment_add: Aggiungi un commento
312 label_comment_add: Aggiungi un commento
312 label_comment_added: Commento aggiunto
313 label_comment_added: Commento aggiunto
313 label_comment_delete: Elimina commenti
314 label_comment_delete: Elimina commenti
314 label_query: Custom query
315 label_query: Custom query
315 label_query_plural: Query personalizzate
316 label_query_plural: Query personalizzate
316 label_query_new: Nuova query
317 label_query_new: Nuova query
317 label_filter_add: Aggiungi filtro
318 label_filter_add: Aggiungi filtro
318 label_filter_plural: Filtri
319 label_filter_plural: Filtri
319 label_equals: è
320 label_equals: è
320 label_not_equals: non è
321 label_not_equals: non è
321 label_in_less_than: è minore di
322 label_in_less_than: è minore di
322 label_in_more_than: è maggiore di
323 label_in_more_than: è maggiore di
323 label_in: in
324 label_in: in
324 label_today: oggi
325 label_today: oggi
325 label_this_week: this week
326 label_this_week: this week
326 label_less_than_ago: meno di giorni fa
327 label_less_than_ago: meno di giorni fa
327 label_more_than_ago: più di giorni fa
328 label_more_than_ago: più di giorni fa
328 label_ago: giorni fa
329 label_ago: giorni fa
329 label_contains: contiene
330 label_contains: contiene
330 label_not_contains: non contiene
331 label_not_contains: non contiene
331 label_day_plural: giorni
332 label_day_plural: giorni
332 label_repository: Repository
333 label_repository: Repository
333 label_browse: Browse
334 label_browse: Browse
334 label_modification: %d modifica
335 label_modification: %d modifica
335 label_modification_plural: %d modifiche
336 label_modification_plural: %d modifiche
336 label_revision: Versione
337 label_revision: Versione
337 label_revision_plural: Versioni
338 label_revision_plural: Versioni
338 label_added: aggiunto
339 label_added: aggiunto
339 label_modified: modificato
340 label_modified: modificato
340 label_deleted: eliminato
341 label_deleted: eliminato
341 label_latest_revision: Ultima versione
342 label_latest_revision: Ultima versione
342 label_latest_revision_plural: Ultime versioni
343 label_latest_revision_plural: Ultime versioni
343 label_view_revisions: Mostra versioni
344 label_view_revisions: Mostra versioni
344 label_max_size: Dimensione massima
345 label_max_size: Dimensione massima
345 label_on: 'on'
346 label_on: 'on'
346 label_sort_highest: Sposta in cima
347 label_sort_highest: Sposta in cima
347 label_sort_higher: Su
348 label_sort_higher: Su
348 label_sort_lower: Giù
349 label_sort_lower: Giù
349 label_sort_lowest: Sposta in fondo
350 label_sort_lowest: Sposta in fondo
350 label_roadmap: Roadmap
351 label_roadmap: Roadmap
351 label_roadmap_due_in: Da ultimare in
352 label_roadmap_due_in: Da ultimare in
352 label_roadmap_overdue: %s late
353 label_roadmap_overdue: %s late
353 label_roadmap_no_issues: Nessun contesto per questa versione
354 label_roadmap_no_issues: Nessun contesto per questa versione
354 label_search: Ricerca
355 label_search: Ricerca
355 label_result_plural: Risultati
356 label_result_plural: Risultati
356 label_all_words: Tutte le parole
357 label_all_words: Tutte le parole
357 label_wiki: Wiki
358 label_wiki: Wiki
358 label_wiki_edit: Modifica Wiki
359 label_wiki_edit: Modifica Wiki
359 label_wiki_edit_plural: Modfiche wiki
360 label_wiki_edit_plural: Modfiche wiki
360 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
361 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
362 label_index_by_title: Index by title
363 label_index_by_title: Index by title
363 label_index_by_date: Index by date
364 label_index_by_date: Index by date
364 label_current_version: Versione corrente
365 label_current_version: Versione corrente
365 label_preview: Anteprima
366 label_preview: Anteprima
366 label_feed_plural: Feed
367 label_feed_plural: Feed
367 label_changes_details: Particolari di tutti i cambiamenti
368 label_changes_details: Particolari di tutti i cambiamenti
368 label_issue_tracking: tracking dei contesti
369 label_issue_tracking: tracking dei contesti
369 label_spent_time: Tempo impiegato
370 label_spent_time: Tempo impiegato
370 label_f_hour: %.2f ora
371 label_f_hour: %.2f ora
371 label_f_hour_plural: %.2f ore
372 label_f_hour_plural: %.2f ore
372 label_time_tracking: Tracking del tempo
373 label_time_tracking: Tracking del tempo
373 label_change_plural: Modifiche
374 label_change_plural: Modifiche
374 label_statistics: Statistiche
375 label_statistics: Statistiche
375 label_commits_per_month: Commit per mese
376 label_commits_per_month: Commit per mese
376 label_commits_per_author: Commit per autore
377 label_commits_per_author: Commit per autore
377 label_view_diff: mostra differenze
378 label_view_diff: mostra differenze
378 label_diff_inline: inline
379 label_diff_inline: inline
379 label_diff_side_by_side: side by side
380 label_diff_side_by_side: side by side
380 label_options: Opzioni
381 label_options: Opzioni
381 label_copy_workflow_from: Copia workflow da
382 label_copy_workflow_from: Copia workflow da
382 label_permissions_report: Report permessi
383 label_permissions_report: Report permessi
383 label_watched_issues: Watched issues
384 label_watched_issues: Watched issues
384 label_related_issues: Related issues
385 label_related_issues: Related issues
385 label_applied_status: Applied status
386 label_applied_status: Applied status
386 label_loading: Loading...
387 label_loading: Loading...
387 label_relation_new: New relation
388 label_relation_new: New relation
388 label_relation_delete: Delete relation
389 label_relation_delete: Delete relation
389 label_relates_to: related to
390 label_relates_to: related to
390 label_duplicates: duplicates
391 label_duplicates: duplicates
391 label_blocks: blocks
392 label_blocks: blocks
392 label_blocked_by: blocked by
393 label_blocked_by: blocked by
393 label_precedes: precedes
394 label_precedes: precedes
394 label_follows: follows
395 label_follows: follows
395 label_end_to_start: end to start
396 label_end_to_start: end to start
396 label_end_to_end: end to end
397 label_end_to_end: end to end
397 label_start_to_start: start to start
398 label_start_to_start: start to start
398 label_start_to_end: start to end
399 label_start_to_end: start to end
399 label_stay_logged_in: Stay logged in
400 label_stay_logged_in: Stay logged in
400 label_disabled: disabled
401 label_disabled: disabled
401 label_show_completed_versions: Show completed versions
402 label_show_completed_versions: Show completed versions
402 label_me: me
403 label_me: me
403 label_board: Forum
404 label_board: Forum
404 label_board_new: New forum
405 label_board_new: New forum
405 label_board_plural: Forums
406 label_board_plural: Forums
406 label_topic_plural: Topics
407 label_topic_plural: Topics
407 label_message_plural: Messages
408 label_message_plural: Messages
408 label_message_last: Last message
409 label_message_last: Last message
409 label_message_new: New message
410 label_message_new: New message
410 label_reply_plural: Replies
411 label_reply_plural: Replies
411 label_send_information: Send account information to the user
412 label_send_information: Send account information to the user
412 label_year: Year
413 label_year: Year
413 label_month: Month
414 label_month: Month
414 label_week: Week
415 label_week: Week
415 label_date_from: From
416 label_date_from: From
416 label_date_to: To
417 label_date_to: To
417 label_language_based: Language based
418 label_language_based: Language based
418 label_sort_by: Sort by %s
419 label_sort_by: Sort by %s
419 label_send_test_email: Send a test email
420 label_send_test_email: Send a test email
420 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_module_plural: Modules
422 label_module_plural: Modules
422 label_added_time_by: Added by %s %s ago
423 label_added_time_by: Added by %s %s ago
423 label_updated_time: Updated %s ago
424 label_updated_time: Updated %s ago
424 label_jump_to_a_project: Jump to a project...
425 label_jump_to_a_project: Jump to a project...
425
426
426 button_login: Login
427 button_login: Login
427 button_submit: Invia
428 button_submit: Invia
428 button_save: Salva
429 button_save: Salva
429 button_check_all: Seleziona tutti
430 button_check_all: Seleziona tutti
430 button_uncheck_all: Deseleziona tutti
431 button_uncheck_all: Deseleziona tutti
431 button_delete: Elimina
432 button_delete: Elimina
432 button_create: Crea
433 button_create: Crea
433 button_test: Test
434 button_test: Test
434 button_edit: Modifica
435 button_edit: Modifica
435 button_add: Aggiungi
436 button_add: Aggiungi
436 button_change: Modifica
437 button_change: Modifica
437 button_apply: Applica
438 button_apply: Applica
438 button_clear: Pulisci
439 button_clear: Pulisci
439 button_lock: Blocca
440 button_lock: Blocca
440 button_unlock: Sblocca
441 button_unlock: Sblocca
441 button_download: Scarica
442 button_download: Scarica
442 button_list: Elenca
443 button_list: Elenca
443 button_view: Mostra
444 button_view: Mostra
444 button_move: Sposta
445 button_move: Sposta
445 button_back: Indietro
446 button_back: Indietro
446 button_cancel: Annulla
447 button_cancel: Annulla
447 button_activate: Attiva
448 button_activate: Attiva
448 button_sort: Ordina
449 button_sort: Ordina
449 button_log_time: Registra tempo
450 button_log_time: Registra tempo
450 button_rollback: Ripristina questa versione
451 button_rollback: Ripristina questa versione
451 button_watch: Watch
452 button_watch: Watch
452 button_unwatch: Unwatch
453 button_unwatch: Unwatch
453 button_reply: Reply
454 button_reply: Reply
454 button_archive: Archive
455 button_archive: Archive
455 button_unarchive: Unarchive
456 button_unarchive: Unarchive
456 button_reset: Reset
457 button_reset: Reset
457 button_rename: Rename
458 button_rename: Rename
458
459
459 status_active: attivo
460 status_active: attivo
460 status_registered: registrato
461 status_registered: registrato
461 status_locked: bloccato
462 status_locked: bloccato
462
463
463 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
464 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
464 text_regexp_info: eg. ^[A-Z0-9]+$
465 text_regexp_info: eg. ^[A-Z0-9]+$
465 text_min_max_length_info: 0 significa nessuna restrizione
466 text_min_max_length_info: 0 significa nessuna restrizione
466 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
467 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
467 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
468 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
468 text_are_you_sure: Sei sicuro ?
469 text_are_you_sure: Sei sicuro ?
469 text_journal_changed: cambiato da %s a %s
470 text_journal_changed: cambiato da %s a %s
470 text_journal_set_to: impostato a %s
471 text_journal_set_to: impostato a %s
471 text_journal_deleted: cancellato
472 text_journal_deleted: cancellato
472 text_tip_task_begin_day: attività che iniziano in questa giornata
473 text_tip_task_begin_day: attività che iniziano in questa giornata
473 text_tip_task_end_day: attività che terminano in questa giornata
474 text_tip_task_end_day: attività che terminano in questa giornata
474 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
475 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
475 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
476 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
476 text_caracters_maximum: massimo %d caratteri.
477 text_caracters_maximum: massimo %d caratteri.
477 text_length_between: Lunghezza compresa tra %d e %d caratteri.
478 text_length_between: Lunghezza compresa tra %d e %d caratteri.
478 text_tracker_no_workflow: Nessun workflow definito per questo tracker
479 text_tracker_no_workflow: Nessun workflow definito per questo tracker
479 text_unallowed_characters: Unallowed characters
480 text_unallowed_characters: Unallowed characters
480 text_comma_separated: Multiple values allowed (comma separated).
481 text_comma_separated: Multiple values allowed (comma separated).
481 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
482 text_issue_added: "E' stata segnalata l'anomalia %s."
483 text_issue_added: "E' stata segnalata l'anomalia %s."
483 text_issue_updated: "L'anomalia %s e' stata aggiornata."
484 text_issue_updated: "L'anomalia %s e' stata aggiornata."
484 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
488
489
489 default_role_manager: Manager
490 default_role_manager: Manager
490 default_role_developper: Sviluppatore
491 default_role_developper: Sviluppatore
491 default_role_reporter: Reporter
492 default_role_reporter: Reporter
492 default_tracker_bug: Contesto
493 default_tracker_bug: Contesto
493 default_tracker_feature: Funzione
494 default_tracker_feature: Funzione
494 default_tracker_support: Supporto
495 default_tracker_support: Supporto
495 default_issue_status_new: Nuovo/a
496 default_issue_status_new: Nuovo/a
496 default_issue_status_assigned: Assegnato/a
497 default_issue_status_assigned: Assegnato/a
497 default_issue_status_resolved: Risolto/a
498 default_issue_status_resolved: Risolto/a
498 default_issue_status_feedback: Feedback
499 default_issue_status_feedback: Feedback
499 default_issue_status_closed: Chiuso/a
500 default_issue_status_closed: Chiuso/a
500 default_issue_status_rejected: Rifiutato/a
501 default_issue_status_rejected: Rifiutato/a
501 default_doc_category_user: Documentazione utente
502 default_doc_category_user: Documentazione utente
502 default_doc_category_tech: Documentazione tecnica
503 default_doc_category_tech: Documentazione tecnica
503 default_priority_low: Bassa
504 default_priority_low: Bassa
504 default_priority_normal: Normale
505 default_priority_normal: Normale
505 default_priority_high: Alta
506 default_priority_high: Alta
506 default_priority_urgent: Urgente
507 default_priority_urgent: Urgente
507 default_priority_immediate: Immediata
508 default_priority_immediate: Immediata
508 default_activity_design: Design
509 default_activity_design: Design
509 default_activity_development: Development
510 default_activity_development: Development
510
511
511 enumeration_issue_priorities: Priorità contesti
512 enumeration_issue_priorities: Priorità contesti
512 enumeration_doc_categories: Categorie di documenti
513 enumeration_doc_categories: Categorie di documenti
513 enumeration_activities: Attività (time tracking)
514 enumeration_activities: Attività (time tracking)
514 label_file_plural: Files
515 label_file_plural: Files
515 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
516 field_column_names: Columns
517 field_column_names: Columns
517 label_default_columns: Default columns
518 label_default_columns: Default columns
518 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_repositories_encodings: Repositories encodings
520 setting_repositories_encodings: Repositories encodings
520 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_no_change_option: (No change)
523 label_no_change_option: (No change)
523 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 label_theme: Theme
525 label_theme: Theme
525 label_default: Default
526 label_default: Default
526 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
527 label_nobody: nobody
528 label_nobody: nobody
528 button_change_password: Change password
529 button_change_password: Change password
529 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 setting_emails_footer: Emails footer
534 setting_emails_footer: Emails footer
534 label_float: Float
535 label_float: Float
535 button_copy: Copy
536 button_copy: Copy
536 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information: Your Redmine account information
538 mail_body_account_information: Your Redmine account information
538 setting_protocol: Protocol
539 setting_protocol: Protocol
539 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 setting_time_format: Time format
541 setting_time_format: Time format
541 label_registration_activation_by_email: account activation by email
542 label_registration_activation_by_email: account activation by email
542 mail_subject_account_activation_request: Redmine account activation request
543 mail_subject_account_activation_request: Redmine account activation request
543 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 label_registration_automatic_activation: automatic account activation
545 label_registration_automatic_activation: automatic account activation
545 label_registration_manual_activation: manual account activation
546 label_registration_manual_activation: manual account activation
546 notice_account_pending: "Your account was created and is now pending administrator approval."
547 notice_account_pending: "Your account was created and is now pending administrator approval."
547 field_time_zone: Time zone
548 field_time_zone: Time zone
548 text_caracters_minimum: Must be at least %d characters long.
549 text_caracters_minimum: Must be at least %d characters long.
549 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 button_annotate: Annotate
551 button_annotate: Annotate
551 label_issues_by: Issues by %s
552 label_issues_by: Issues by %s
552 field_searchable: Searchable
553 field_searchable: Searchable
553 label_display_per_page: 'Per page: %s'
554 label_display_per_page: 'Per page: %s'
554 setting_per_page_options: Objects per page options
555 setting_per_page_options: Objects per page options
555 label_age: Age
556 label_age: Age
556 notice_default_data_loaded: Default configuration successfully loaded.
557 notice_default_data_loaded: Default configuration successfully loaded.
557 text_load_default_configuration: Load the default configuration
558 text_load_default_configuration: Load the default configuration
558 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 button_update: Update
561 button_update: Update
561 label_change_properties: Change properties
562 label_change_properties: Change properties
562 label_general: General
563 label_general: General
563 label_repository_plural: Repositories
564 label_repository_plural: Repositories
564 label_associated_revisions: Associated revisions
565 label_associated_revisions: Associated revisions
@@ -1,565 +1,566
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
4 actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
5 actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
5 actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_select_year_suffix:
8 actionview_datehelper_select_year_suffix:
9 actionview_datehelper_time_in_words_day: 1日
9 actionview_datehelper_time_in_words_day: 1日
10 actionview_datehelper_time_in_words_day_plural: %d日間
10 actionview_datehelper_time_in_words_day_plural: %d日間
11 actionview_datehelper_time_in_words_hour_about: 約1時間
11 actionview_datehelper_time_in_words_hour_about: 約1時間
12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
14 actionview_datehelper_time_in_words_minute: 1分
14 actionview_datehelper_time_in_words_minute: 1分
15 actionview_datehelper_time_in_words_minute_half: 約30秒
15 actionview_datehelper_time_in_words_minute_half: 約30秒
16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
17 actionview_datehelper_time_in_words_minute_plural: %d分
17 actionview_datehelper_time_in_words_minute_plural: %d分
18 actionview_datehelper_time_in_words_minute_single: 1分
18 actionview_datehelper_time_in_words_minute_single: 1分
19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
21 actionview_instancetag_blank_option: 選んでください
21 actionview_instancetag_blank_option: 選んでください
22
22
23 activerecord_error_inclusion: がリストに含まれていません
23 activerecord_error_inclusion: がリストに含まれていません
24 activerecord_error_exclusion: が予約されています
24 activerecord_error_exclusion: が予約されています
25 activerecord_error_invalid: が無効です
25 activerecord_error_invalid: が無効です
26 activerecord_error_confirmation: 確認のパスワードと合っていません
26 activerecord_error_confirmation: 確認のパスワードと合っていません
27 activerecord_error_accepted: を承諾してください
27 activerecord_error_accepted: を承諾してください
28 activerecord_error_empty: が空です
28 activerecord_error_empty: が空です
29 activerecord_error_blank: が空白です
29 activerecord_error_blank: が空白です
30 activerecord_error_too_long: が長すぎます
30 activerecord_error_too_long: が長すぎます
31 activerecord_error_too_short: が短かすぎます
31 activerecord_error_too_short: が短かすぎます
32 activerecord_error_wrong_length: の長さが間違っています
32 activerecord_error_wrong_length: の長さが間違っています
33 activerecord_error_taken: はすでに登録されています
33 activerecord_error_taken: はすでに登録されています
34 activerecord_error_not_a_number: が数字ではありません
34 activerecord_error_not_a_number: が数字ではありません
35 activerecord_error_not_a_date: の日付が間違っています
35 activerecord_error_not_a_date: の日付が間違っています
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
37 activerecord_error_not_same_project: 同じプロジェクトに属していません
37 activerecord_error_not_same_project: 同じプロジェクトに属していません
38 activerecord_error_circular_dependency: この関係では、循環依存になります
38 activerecord_error_circular_dependency: この関係では、循環依存になります
39
39
40 general_fmt_age: %d歳
40 general_fmt_age: %d歳
41 general_fmt_age_plural: %d歳
41 general_fmt_age_plural: %d歳
42 general_fmt_date: %%Y年%%m月%%d日
42 general_fmt_date: %%Y年%%m月%%d日
43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
45 general_fmt_time: %%H:%%M %%p
45 general_fmt_time: %%H:%%M %%p
46 general_text_No: 'いいえ'
46 general_text_No: 'いいえ'
47 general_text_Yes: 'はい'
47 general_text_Yes: 'はい'
48 general_text_no: 'いいえ'
48 general_text_no: 'いいえ'
49 general_text_yes: 'はい'
49 general_text_yes: 'はい'
50 general_lang_name: 'Japanese (日本語)'
50 general_lang_name: 'Japanese (日本語)'
51 general_csv_separator: ','
51 general_csv_separator: ','
52 general_csv_encoding: SJIS
52 general_csv_encoding: SJIS
53 general_pdf_encoding: SJIS
53 general_pdf_encoding: SJIS
54 general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日
54 general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日
55 general_first_day_of_week: '7'
55 general_first_day_of_week: '7'
56
56
57 notice_account_updated: アカウントが更新されました。
57 notice_account_updated: アカウントが更新されました。
58 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
58 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
59 notice_account_password_updated: パスワードが更新されました。
59 notice_account_password_updated: パスワードが更新されました。
60 notice_account_wrong_password: パスワードが違います
60 notice_account_wrong_password: パスワードが違います
61 notice_account_register_done: アカウントが作成されました。
61 notice_account_register_done: アカウントが作成されました。
62 notice_account_unknown_email: ユーザが存在しません。
62 notice_account_unknown_email: ユーザが存在しません。
63 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
63 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
64 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
64 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
65 notice_account_activated: アカウントが有効になりました。ログインできます。
65 notice_account_activated: アカウントが有効になりました。ログインできます。
66 notice_successful_create: 作成しました。
66 notice_successful_create: 作成しました。
67 notice_successful_update: 更新しました。
67 notice_successful_update: 更新しました。
68 notice_successful_delete: 削除しました。
68 notice_successful_delete: 削除しました。
69 notice_successful_connection: 接続しました。
69 notice_successful_connection: 接続しました。
70 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
70 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
71 notice_locking_conflict: 別のユーザがデータを更新しています。
71 notice_locking_conflict: 別のユーザがデータを更新しています。
72 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
72 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
73 notice_not_authorized: このページにアクセスするには認証が必要です。
73 notice_not_authorized: このページにアクセスするには認証が必要です。
74 notice_email_sent: %s宛にメールを送信しました。
74 notice_email_sent: %s宛にメールを送信しました。
75 notice_email_error: メール送信中にエラーが発生しました(%s)
75 notice_email_error: メール送信中にエラーが発生しました(%s)
76 notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。
76 notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。
77
77
78 mail_subject_lost_password: Redmineパスワード
78 mail_subject_lost_password: Redmineパスワード
79 mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:'
79 mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:'
80 mail_subject_register: Redmineアカウントが有効になりました
80 mail_subject_register: Redmineアカウントが有効になりました
81 mail_body_register: 'Redmineアカウントをアクティブにするには、以下のリンクをたどってください:'
81 mail_body_register: 'Redmineアカウントをアクティブにするには、以下のリンクをたどってください:'
82
82
83 gui_validation_error: 1件のエラー
83 gui_validation_error: 1件のエラー
84 gui_validation_error_plural: %d件のエラー
84 gui_validation_error_plural: %d件のエラー
85
85
86 field_name: 名前
86 field_name: 名前
87 field_description: 説明
87 field_description: 説明
88 field_summary: サマリ
88 field_summary: サマリ
89 field_is_required: 必須
89 field_is_required: 必須
90 field_firstname: 名前
90 field_firstname: 名前
91 field_lastname: 苗字
91 field_lastname: 苗字
92 field_mail: メールアドレス
92 field_mail: メールアドレス
93 field_filename: ファイル
93 field_filename: ファイル
94 field_filesize: サイズ
94 field_filesize: サイズ
95 field_downloads: ダウンロード
95 field_downloads: ダウンロード
96 field_author: 起票者
96 field_author: 起票者
97 field_created_on: 作成日
97 field_created_on: 作成日
98 field_updated_on: 更新日
98 field_updated_on: 更新日
99 field_field_format: 書式
99 field_field_format: 書式
100 field_is_for_all: 全プロジェクト向け
100 field_is_for_all: 全プロジェクト向け
101 field_possible_values: 選択肢
101 field_possible_values: 選択肢
102 field_regexp: 正規表現
102 field_regexp: 正規表現
103 field_min_length: 最小値
103 field_min_length: 最小値
104 field_max_length: 最大値
104 field_max_length: 最大値
105 field_value:
105 field_value:
106 field_category: カテゴリ
106 field_category: カテゴリ
107 field_title: タイトル
107 field_title: タイトル
108 field_project: プロジェクト
108 field_project: プロジェクト
109 field_issue: 問題
109 field_issue: 問題
110 field_status: ステータス
110 field_status: ステータス
111 field_notes: 注記
111 field_notes: 注記
112 field_is_closed: 終了した問題
112 field_is_closed: 終了した問題
113 field_is_default: デフォルトのステータス
113 field_is_default: デフォルトのステータス
114 field_tracker: トラッカー
114 field_tracker: トラッカー
115 field_subject: 題名
115 field_subject: 題名
116 field_due_date: 期限日
116 field_due_date: 期限日
117 field_assigned_to: 担当者
117 field_assigned_to: 担当者
118 field_priority: 優先度
118 field_priority: 優先度
119 field_fixed_version: 修正されたバージョン
119 field_fixed_version: 修正されたバージョン
120 field_user: ユーザ
120 field_user: ユーザ
121 field_role: 役割
121 field_role: 役割
122 field_homepage: ホームページ
122 field_homepage: ホームページ
123 field_is_public: 公開
123 field_is_public: 公開
124 field_parent: 親プロジェクト名
124 field_parent: 親プロジェクト名
125 field_is_in_chlog: 変更記録に表示されている問題
125 field_is_in_chlog: 変更記録に表示されている問題
126 field_is_in_roadmap: ロードマップに表示されている問題
126 field_is_in_roadmap: ロードマップに表示されている問題
127 field_login: ログイン
127 field_login: ログイン
128 field_mail_notification: メール通知
128 field_mail_notification: メール通知
129 field_admin: 管理者
129 field_admin: 管理者
130 field_last_login_on: 最終接続日
130 field_last_login_on: 最終接続日
131 field_language: 言語
131 field_language: 言語
132 field_effective_date: 日付
132 field_effective_date: 日付
133 field_password: パスワード
133 field_password: パスワード
134 field_new_password: 新しいパスワード
134 field_new_password: 新しいパスワード
135 field_password_confirmation: パスワードの確認
135 field_password_confirmation: パスワードの確認
136 field_version: バージョン
136 field_version: バージョン
137 field_type: タイプ
137 field_type: タイプ
138 field_host: ホスト
138 field_host: ホスト
139 field_port: ポート
139 field_port: ポート
140 field_account: アカウント
140 field_account: アカウント
141 field_base_dn: Base DN
141 field_base_dn: Base DN
142 field_attr_login: ログイン名属性
142 field_attr_login: ログイン名属性
143 field_attr_firstname: 名前属性
143 field_attr_firstname: 名前属性
144 field_attr_lastname: 苗字属性
144 field_attr_lastname: 苗字属性
145 field_attr_mail: メール属性
145 field_attr_mail: メール属性
146 field_onthefly: あわせてユーザを作成
146 field_onthefly: あわせてユーザを作成
147 field_start_date: 開始日
147 field_start_date: 開始日
148 field_done_ratio: 進捗 %%
148 field_done_ratio: 進捗 %%
149 field_auth_source: 認証モード
149 field_auth_source: 認証モード
150 field_hide_mail: メールアドレスを隠す
150 field_hide_mail: メールアドレスを隠す
151 field_comments: コメント
151 field_comments: コメント
152 field_url: URL
152 field_url: URL
153 field_start_page: メインページ
153 field_start_page: メインページ
154 field_subproject: サブプロジェクト
154 field_subproject: サブプロジェクト
155 field_hours: 時間
155 field_hours: 時間
156 field_activity: 活動
156 field_activity: 活動
157 field_spent_on: 日付
157 field_spent_on: 日付
158 field_identifier: 識別子
158 field_identifier: 識別子
159 field_is_filter: フィルタとして使う
159 field_is_filter: フィルタとして使う
160 field_issue_to_id: 関連する問題
160 field_issue_to_id: 関連する問題
161 field_delay: 遅延
161 field_delay: 遅延
162 field_assignable: 問題はこのロールに割り当てることができます
162 field_assignable: 問題はこのロールに割り当てることができます
163 field_redirect_existing_links: 既存のリンクをリダイレクトする
163 field_redirect_existing_links: 既存のリンクをリダイレクトする
164 field_estimated_hours: 予定工数
164 field_estimated_hours: 予定工数
165 field_default_value: デフォルトのステータス
165
166
166 setting_app_title: アプリケーションのタイトル
167 setting_app_title: アプリケーションのタイトル
167 setting_app_subtitle: アプリケーションのサブタイトル
168 setting_app_subtitle: アプリケーションのサブタイトル
168 setting_welcome_text: ウェルカムメッセージ
169 setting_welcome_text: ウェルカムメッセージ
169 setting_default_language: 既定の言語
170 setting_default_language: 既定の言語
170 setting_login_required: 認証が必要
171 setting_login_required: 認証が必要
171 setting_self_registration: ユーザは自分で登録できる
172 setting_self_registration: ユーザは自分で登録できる
172 setting_attachment_max_size: 添付の最大サイズ
173 setting_attachment_max_size: 添付の最大サイズ
173 setting_issues_export_limit: 出力する問題数の上限
174 setting_issues_export_limit: 出力する問題数の上限
174 setting_mail_from: 送信元メールアドレス
175 setting_mail_from: 送信元メールアドレス
175 setting_host_name: ホスト名
176 setting_host_name: ホスト名
176 setting_text_formatting: テキストの書式
177 setting_text_formatting: テキストの書式
177 setting_wiki_compression: Wiki履歴を圧縮する
178 setting_wiki_compression: Wiki履歴を圧縮する
178 setting_feeds_limit: フィード内容の上限
179 setting_feeds_limit: フィード内容の上限
179 setting_autofetch_changesets: コミットを自動取得する
180 setting_autofetch_changesets: コミットを自動取得する
180 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
181 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
181 setting_commit_ref_keywords: 参照用キーワード
182 setting_commit_ref_keywords: 参照用キーワード
182 setting_commit_fix_keywords: 修正用キーワード
183 setting_commit_fix_keywords: 修正用キーワード
183 setting_autologin: 自動ログイン
184 setting_autologin: 自動ログイン
184 setting_date_format: 日付の形式
185 setting_date_format: 日付の形式
185 setting_cross_project_issue_relations: 異なるプロジェクトの問題間で関係の設定を許可
186 setting_cross_project_issue_relations: 異なるプロジェクトの問題間で関係の設定を許可
186
187
187 label_user: ユーザ
188 label_user: ユーザ
188 label_user_plural: ユーザ
189 label_user_plural: ユーザ
189 label_user_new: 新しいユーザ
190 label_user_new: 新しいユーザ
190 label_project: プロジェクト
191 label_project: プロジェクト
191 label_project_new: 新しいプロジェクト
192 label_project_new: 新しいプロジェクト
192 label_project_plural: プロジェクト
193 label_project_plural: プロジェクト
193 label_project_all: 全プロジェクト
194 label_project_all: 全プロジェクト
194 label_project_latest: 最近のプロジェクト
195 label_project_latest: 最近のプロジェクト
195 label_issue: 問題
196 label_issue: 問題
196 label_issue_new: 新しい問題
197 label_issue_new: 新しい問題
197 label_issue_plural: 問題
198 label_issue_plural: 問題
198 label_issue_view_all: 問題を全て見る
199 label_issue_view_all: 問題を全て見る
199 label_document: 文書
200 label_document: 文書
200 label_document_new: 新しい文書
201 label_document_new: 新しい文書
201 label_document_plural: 文書
202 label_document_plural: 文書
202 label_role: ロール
203 label_role: ロール
203 label_role_plural: ロール
204 label_role_plural: ロール
204 label_role_new: 新しいロール
205 label_role_new: 新しいロール
205 label_role_and_permissions: ロールと権限
206 label_role_and_permissions: ロールと権限
206 label_member: メンバー
207 label_member: メンバー
207 label_member_new: 新しいメンバー
208 label_member_new: 新しいメンバー
208 label_member_plural: メンバー
209 label_member_plural: メンバー
209 label_tracker: トラッカー
210 label_tracker: トラッカー
210 label_tracker_plural: トラッカー
211 label_tracker_plural: トラッカー
211 label_tracker_new: 新しいトラッカーを作成
212 label_tracker_new: 新しいトラッカーを作成
212 label_workflow: ワークフロー
213 label_workflow: ワークフロー
213 label_issue_status: 問題のステータス
214 label_issue_status: 問題のステータス
214 label_issue_status_plural: 問題のステータス
215 label_issue_status_plural: 問題のステータス
215 label_issue_status_new: 新しいステータス
216 label_issue_status_new: 新しいステータス
216 label_issue_category: 問題のカテゴリ
217 label_issue_category: 問題のカテゴリ
217 label_issue_category_plural: 問題のカテゴリ
218 label_issue_category_plural: 問題のカテゴリ
218 label_issue_category_new: 新しいカテゴリ
219 label_issue_category_new: 新しいカテゴリ
219 label_custom_field: カスタムフィールド
220 label_custom_field: カスタムフィールド
220 label_custom_field_plural: カスタムフィールド
221 label_custom_field_plural: カスタムフィールド
221 label_custom_field_new: 新しいカスタムフィールドを作成
222 label_custom_field_new: 新しいカスタムフィールドを作成
222 label_enumerations: 列挙項目
223 label_enumerations: 列挙項目
223 label_enumeration_new: 新しい値
224 label_enumeration_new: 新しい値
224 label_information: 情報
225 label_information: 情報
225 label_information_plural: 情報
226 label_information_plural: 情報
226 label_please_login: ログインしてください
227 label_please_login: ログインしてください
227 label_register: 登録する
228 label_register: 登録する
228 label_password_lost: パスワードの再発行
229 label_password_lost: パスワードの再発行
229 label_home: ホーム
230 label_home: ホーム
230 label_my_page: マイページ
231 label_my_page: マイページ
231 label_my_account: マイアカウント
232 label_my_account: マイアカウント
232 label_my_projects: マイプロジェクト
233 label_my_projects: マイプロジェクト
233 label_administration: 管理
234 label_administration: 管理
234 label_login: ログイン
235 label_login: ログイン
235 label_logout: ログアウト
236 label_logout: ログアウト
236 label_help: ヘルプ
237 label_help: ヘルプ
237 label_reported_issues: 報告した問題
238 label_reported_issues: 報告した問題
238 label_assigned_to_me_issues: 担当している問題
239 label_assigned_to_me_issues: 担当している問題
239 label_last_login: 最近の接続
240 label_last_login: 最近の接続
240 label_last_updates: 最近の更新1件
241 label_last_updates: 最近の更新1件
241 label_last_updates_plural: 最近の更新%d件
242 label_last_updates_plural: 最近の更新%d件
242 label_registered_on: 登録日
243 label_registered_on: 登録日
243 label_activity: 活動
244 label_activity: 活動
244 label_new: 新しく作成
245 label_new: 新しく作成
245 label_logged_as: ログイン中:
246 label_logged_as: ログイン中:
246 label_environment: 環境
247 label_environment: 環境
247 label_authentication: 認証
248 label_authentication: 認証
248 label_auth_source: 認証モード
249 label_auth_source: 認証モード
249 label_auth_source_new: 新しい認証モード
250 label_auth_source_new: 新しい認証モード
250 label_auth_source_plural: 認証モード
251 label_auth_source_plural: 認証モード
251 label_subproject_plural: サブプロジェクト
252 label_subproject_plural: サブプロジェクト
252 label_min_max_length: 最小値 - 最大値の長さ
253 label_min_max_length: 最小値 - 最大値の長さ
253 label_list: リストから選択
254 label_list: リストから選択
254 label_date: 日付
255 label_date: 日付
255 label_integer: 整数
256 label_integer: 整数
256 label_boolean: 真偽値
257 label_boolean: 真偽値
257 label_string: テキスト
258 label_string: テキスト
258 label_text: 長いテキスト
259 label_text: 長いテキスト
259 label_attribute: 属性
260 label_attribute: 属性
260 label_attribute_plural: 属性
261 label_attribute_plural: 属性
261 label_download: %d ダウンロード
262 label_download: %d ダウンロード
262 label_download_plural: %d ダウンロード
263 label_download_plural: %d ダウンロード
263 label_no_data: 表示するデータがありません
264 label_no_data: 表示するデータがありません
264 label_change_status: ステータスの変更
265 label_change_status: ステータスの変更
265 label_history: 履歴
266 label_history: 履歴
266 label_attachment: ファイル
267 label_attachment: ファイル
267 label_attachment_new: 新しいファイル
268 label_attachment_new: 新しいファイル
268 label_attachment_delete: ファイルを削除
269 label_attachment_delete: ファイルを削除
269 label_attachment_plural: ファイル
270 label_attachment_plural: ファイル
270 label_report: レポート
271 label_report: レポート
271 label_report_plural: レポート
272 label_report_plural: レポート
272 label_news: ニュース
273 label_news: ニュース
273 label_news_new: ニュースを追加
274 label_news_new: ニュースを追加
274 label_news_plural: ニュース
275 label_news_plural: ニュース
275 label_news_latest: 最新ニュース
276 label_news_latest: 最新ニュース
276 label_news_view_all: 全てのニュースを見る
277 label_news_view_all: 全てのニュースを見る
277 label_change_log: 変更記録
278 label_change_log: 変更記録
278 label_settings: 設定
279 label_settings: 設定
279 label_overview: 概要
280 label_overview: 概要
280 label_version: バージョン
281 label_version: バージョン
281 label_version_new: 新しいバージョン
282 label_version_new: 新しいバージョン
282 label_version_plural: バージョン
283 label_version_plural: バージョン
283 label_confirmation: 確認
284 label_confirmation: 確認
284 label_export_to: 他の形式に出力
285 label_export_to: 他の形式に出力
285 label_read: 読む...
286 label_read: 読む...
286 label_public_projects: 公開プロジェクト
287 label_public_projects: 公開プロジェクト
287 label_open_issues: 未完了
288 label_open_issues: 未完了
288 label_open_issues_plural: 未完了
289 label_open_issues_plural: 未完了
289 label_closed_issues: 終了
290 label_closed_issues: 終了
290 label_closed_issues_plural: 終了
291 label_closed_issues_plural: 終了
291 label_total: 合計
292 label_total: 合計
292 label_permissions: 権限
293 label_permissions: 権限
293 label_current_status: 現在のステータス
294 label_current_status: 現在のステータス
294 label_new_statuses_allowed: ステータスの移行先
295 label_new_statuses_allowed: ステータスの移行先
295 label_all: 全て
296 label_all: 全て
296 label_none: なし
297 label_none: なし
297 label_next:
298 label_next:
298 label_previous:
299 label_previous:
299 label_used_by: 使用中
300 label_used_by: 使用中
300 label_details: 詳細
301 label_details: 詳細
301 label_add_note: 注記を追加
302 label_add_note: 注記を追加
302 label_per_page: ページ毎
303 label_per_page: ページ毎
303 label_calendar: カレンダー
304 label_calendar: カレンダー
304 label_months_from: ヶ月 from
305 label_months_from: ヶ月 from
305 label_gantt: ガントチャート
306 label_gantt: ガントチャート
306 label_internal: Internal
307 label_internal: Internal
307 label_last_changes: 最新の変更%d件
308 label_last_changes: 最新の変更%d件
308 label_change_view_all: 全ての変更を見る
309 label_change_view_all: 全ての変更を見る
309 label_personalize_page: このページをパーソナライズする
310 label_personalize_page: このページをパーソナライズする
310 label_comment: コメント
311 label_comment: コメント
311 label_comment_plural: コメント
312 label_comment_plural: コメント
312 label_comment_add: コメント追加
313 label_comment_add: コメント追加
313 label_comment_added: 追加されたコメント
314 label_comment_added: 追加されたコメント
314 label_comment_delete: コメント削除
315 label_comment_delete: コメント削除
315 label_query: カスタムクエリ
316 label_query: カスタムクエリ
316 label_query_plural: カスタムクエリ
317 label_query_plural: カスタムクエリ
317 label_query_new: 新しいクエリ
318 label_query_new: 新しいクエリ
318 label_filter_add: フィルタ追加
319 label_filter_add: フィルタ追加
319 label_filter_plural: フィルタ
320 label_filter_plural: フィルタ
320 label_equals: 等しい
321 label_equals: 等しい
321 label_not_equals: 等しくない
322 label_not_equals: 等しくない
322 label_in_less_than: 残日数がこれより多い
323 label_in_less_than: 残日数がこれより多い
323 label_in_more_than: 残日数がこれより少ない
324 label_in_more_than: 残日数がこれより少ない
324 label_in: 残日数
325 label_in: 残日数
325 label_today: 今日
326 label_today: 今日
326 label_this_week: this week
327 label_this_week: this week
327 label_less_than_ago: 経過日数がこれより少ない
328 label_less_than_ago: 経過日数がこれより少ない
328 label_more_than_ago: 経過日数がこれより多い
329 label_more_than_ago: 経過日数がこれより多い
329 label_ago: 日前
330 label_ago: 日前
330 label_contains: 含む
331 label_contains: 含む
331 label_not_contains: 含まない
332 label_not_contains: 含まない
332 label_day_plural:
333 label_day_plural:
333 label_repository: リポジトリ
334 label_repository: リポジトリ
334 label_browse: ブラウズ
335 label_browse: ブラウズ
335 label_modification: %d点の変更
336 label_modification: %d点の変更
336 label_modification_plural: %d点の変更
337 label_modification_plural: %d点の変更
337 label_revision: リビジョン
338 label_revision: リビジョン
338 label_revision_plural: リビジョン
339 label_revision_plural: リビジョン
339 label_added: 追加
340 label_added: 追加
340 label_modified: 変更
341 label_modified: 変更
341 label_deleted: 削除
342 label_deleted: 削除
342 label_latest_revision: 最新リビジョン
343 label_latest_revision: 最新リビジョン
343 label_latest_revision_plural: 最新リビジョン
344 label_latest_revision_plural: 最新リビジョン
344 label_view_revisions: リビジョンを見る
345 label_view_revisions: リビジョンを見る
345 label_max_size: 最大サイズ
346 label_max_size: 最大サイズ
346 label_on: 合計
347 label_on: 合計
347 label_sort_highest: 一番上へ
348 label_sort_highest: 一番上へ
348 label_sort_higher: 上へ
349 label_sort_higher: 上へ
349 label_sort_lower: 下へ
350 label_sort_lower: 下へ
350 label_sort_lowest: 一番下へ
351 label_sort_lowest: 一番下へ
351 label_roadmap: ロードマップ
352 label_roadmap: ロードマップ
352 label_roadmap_due_in: 期日まで
353 label_roadmap_due_in: 期日まで
353 label_roadmap_overdue: %s late
354 label_roadmap_overdue: %s late
354 label_roadmap_no_issues: このバージョンに向けての問題はありません
355 label_roadmap_no_issues: このバージョンに向けての問題はありません
355 label_search: 検索
356 label_search: 検索
356 label_result_plural: 結果
357 label_result_plural: 結果
357 label_all_words: すべての単語
358 label_all_words: すべての単語
358 label_wiki: Wiki
359 label_wiki: Wiki
359 label_wiki_edit: Wiki編集
360 label_wiki_edit: Wiki編集
360 label_wiki_edit_plural: Wiki編集
361 label_wiki_edit_plural: Wiki編集
361 label_wiki_page: Wiki page
362 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wikiページ
363 label_wiki_page_plural: Wikiページ
363 label_index_by_title: 索引
364 label_index_by_title: 索引
364 label_index_by_date: Index by date
365 label_index_by_date: Index by date
365 label_current_version: 最新版
366 label_current_version: 最新版
366 label_preview: プレビュー
367 label_preview: プレビュー
367 label_feed_plural: フィード
368 label_feed_plural: フィード
368 label_changes_details: 全変更の詳細
369 label_changes_details: 全変更の詳細
369 label_issue_tracking: 問題トラッキング
370 label_issue_tracking: 問題トラッキング
370 label_spent_time: 経過時間
371 label_spent_time: 経過時間
371 label_f_hour: %.2f 時間
372 label_f_hour: %.2f 時間
372 label_f_hour_plural: %.2f 時間
373 label_f_hour_plural: %.2f 時間
373 label_time_tracking: 時間トラッキング
374 label_time_tracking: 時間トラッキング
374 label_change_plural: 変更
375 label_change_plural: 変更
375 label_statistics: 統計
376 label_statistics: 統計
376 label_commits_per_month: 月別のコミット
377 label_commits_per_month: 月別のコミット
377 label_commits_per_author: 起票者別のコミット
378 label_commits_per_author: 起票者別のコミット
378 label_view_diff: 差分を見る
379 label_view_diff: 差分を見る
379 label_diff_inline: インライン
380 label_diff_inline: インライン
380 label_diff_side_by_side: 横に並べる
381 label_diff_side_by_side: 横に並べる
381 label_options: オプション
382 label_options: オプション
382 label_copy_workflow_from: ワークフローをここからコピー
383 label_copy_workflow_from: ワークフローをここからコピー
383 label_permissions_report: 権限レポート
384 label_permissions_report: 権限レポート
384 label_watched_issues: ウォッチ中の問題
385 label_watched_issues: ウォッチ中の問題
385 label_related_issues: 関連する問題
386 label_related_issues: 関連する問題
386 label_applied_status: 適用されたステータス
387 label_applied_status: 適用されたステータス
387 label_loading: ロード中...
388 label_loading: ロード中...
388 label_relation_new: 新しい関連
389 label_relation_new: 新しい関連
389 label_relation_delete: 関連の削除
390 label_relation_delete: 関連の削除
390 label_relates_to: 関係している
391 label_relates_to: 関係している
391 label_duplicates: 重複している
392 label_duplicates: 重複している
392 label_blocks: ブロックしている
393 label_blocks: ブロックしている
393 label_blocked_by: ブロックされている
394 label_blocked_by: ブロックされている
394 label_precedes: 先行する
395 label_precedes: 先行する
395 label_follows: 後続する
396 label_follows: 後続する
396 label_end_to_start: end to start
397 label_end_to_start: end to start
397 label_end_to_end: end to end
398 label_end_to_end: end to end
398 label_start_to_start: start to start
399 label_start_to_start: start to start
399 label_start_to_end: start to end
400 label_start_to_end: start to end
400 label_stay_logged_in: ログインを維持
401 label_stay_logged_in: ログインを維持
401 label_disabled: 無効
402 label_disabled: 無効
402 label_show_completed_versions: 完了したバージョンを表示
403 label_show_completed_versions: 完了したバージョンを表示
403 label_me: 自分
404 label_me: 自分
404 label_board: フォーラム
405 label_board: フォーラム
405 label_board_new: 新しいフォーラム
406 label_board_new: 新しいフォーラム
406 label_board_plural: フォーラム
407 label_board_plural: フォーラム
407 label_topic_plural: トピック
408 label_topic_plural: トピック
408 label_message_plural: メッセージ
409 label_message_plural: メッセージ
409 label_message_last: 最新のメッセージ
410 label_message_last: 最新のメッセージ
410 label_message_new: 新しいメッセージ
411 label_message_new: 新しいメッセージ
411 label_reply_plural: 返答
412 label_reply_plural: 返答
412 label_send_information: アカウント情報をユーザに送信
413 label_send_information: アカウント情報をユーザに送信
413 label_year:
414 label_year:
414 label_month:
415 label_month:
415 label_week:
416 label_week:
416 label_date_from: から
417 label_date_from: から
417 label_date_to: まで
418 label_date_to: まで
418 label_language_based: 既定の言語の設定に従う
419 label_language_based: 既定の言語の設定に従う
419 label_sort_by: %sで並び替え
420 label_sort_by: %sで並び替え
420 label_send_test_email: テストメールを送信
421 label_send_test_email: テストメールを送信
421 label_feeds_access_key_created_on: RSSアクセスキーは%s前に作成されました
422 label_feeds_access_key_created_on: RSSアクセスキーは%s前に作成されました
422 label_module_plural: モジュール
423 label_module_plural: モジュール
423 label_added_time_by: %sが%s前に追加しました
424 label_added_time_by: %sが%s前に追加しました
424 label_updated_time: %s前に更新されました
425 label_updated_time: %s前に更新されました
425 label_jump_to_a_project: プロジェクトへ移動...
426 label_jump_to_a_project: プロジェクトへ移動...
426
427
427 button_login: ログイン
428 button_login: ログイン
428 button_submit: 変更
429 button_submit: 変更
429 button_save: 保存
430 button_save: 保存
430 button_check_all: チェックを全部つける
431 button_check_all: チェックを全部つける
431 button_uncheck_all: チェックを全部外す
432 button_uncheck_all: チェックを全部外す
432 button_delete: 削除
433 button_delete: 削除
433 button_create: 作成
434 button_create: 作成
434 button_test: テスト
435 button_test: テスト
435 button_edit: 編集
436 button_edit: 編集
436 button_add: 追加
437 button_add: 追加
437 button_change: 変更
438 button_change: 変更
438 button_apply: 適用
439 button_apply: 適用
439 button_clear: クリア
440 button_clear: クリア
440 button_lock: ロック
441 button_lock: ロック
441 button_unlock: アンロック
442 button_unlock: アンロック
442 button_download: ダウンロード
443 button_download: ダウンロード
443 button_list: 一覧
444 button_list: 一覧
444 button_view: 見る
445 button_view: 見る
445 button_move: 移動
446 button_move: 移動
446 button_back: 戻る
447 button_back: 戻る
447 button_cancel: キャンセル
448 button_cancel: キャンセル
448 button_activate: 有効にする
449 button_activate: 有効にする
449 button_sort: ソート
450 button_sort: ソート
450 button_log_time: 時間を記録
451 button_log_time: 時間を記録
451 button_rollback: このバージョンにロールバック
452 button_rollback: このバージョンにロールバック
452 button_watch: ウォッチ
453 button_watch: ウォッチ
453 button_unwatch: ウォッチをやめる
454 button_unwatch: ウォッチをやめる
454 button_reply: 返答
455 button_reply: 返答
455 button_archive: 書庫に保存
456 button_archive: 書庫に保存
456 button_unarchive: 書庫から戻す
457 button_unarchive: 書庫から戻す
457 button_reset: リセット
458 button_reset: リセット
458 button_rename: 名前変更
459 button_rename: 名前変更
459
460
460 status_active: 有効
461 status_active: 有効
461 status_registered: 登録
462 status_registered: 登録
462 status_locked: ロック
463 status_locked: ロック
463
464
464 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
465 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
465 text_regexp_info: 例) ^[A-Z0-9]+$
466 text_regexp_info: 例) ^[A-Z0-9]+$
466 text_min_max_length_info: 0だと無制限になります
467 text_min_max_length_info: 0だと無制限になります
467 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
468 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
468 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
469 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
469 text_are_you_sure: よろしいですか?
470 text_are_you_sure: よろしいですか?
470 text_journal_changed: %sから%sに変更
471 text_journal_changed: %sから%sに変更
471 text_journal_set_to: %sにセット
472 text_journal_set_to: %sにセット
472 text_journal_deleted: 削除
473 text_journal_deleted: 削除
473 text_tip_task_begin_day: この日に開始するタスク
474 text_tip_task_begin_day: この日に開始するタスク
474 text_tip_task_end_day: この日に終了するタスク
475 text_tip_task_end_day: この日に終了するタスク
475 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
476 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
476 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
477 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
477 text_caracters_maximum: 最大 %d 文字です。
478 text_caracters_maximum: 最大 %d 文字です。
478 text_length_between: 長さは %d から %d 文字までです。
479 text_length_between: 長さは %d から %d 文字までです。
479 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
480 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
480 text_unallowed_characters: 使えない文字です
481 text_unallowed_characters: 使えない文字です
481 text_comma_separated: (カンマで区切った)複数の値が使えます
482 text_comma_separated: (カンマで区切った)複数の値が使えます
482 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
483 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
483 text_issue_added: 問題 %s が報告されました。
484 text_issue_added: 問題 %s が報告されました。
484 text_issue_updated: 問題 %s が更新されました。
485 text_issue_updated: 問題 %s が更新されました。
485 text_wiki_destroy_confirmation: 本当にこのwikiとその内容の全てを削除しますか?
486 text_wiki_destroy_confirmation: 本当にこのwikiとその内容の全てを削除しますか?
486 text_issue_category_destroy_question: このカテゴリに割り当て済みの問題(%d)があります。何をしようとしていますか?
487 text_issue_category_destroy_question: このカテゴリに割り当て済みの問題(%d)があります。何をしようとしていますか?
487 text_issue_category_destroy_assignments: カテゴリの割り当てを削除する
488 text_issue_category_destroy_assignments: カテゴリの割り当てを削除する
488 text_issue_category_reassign_to: 問題をこのカテゴリに再割り当てする
489 text_issue_category_reassign_to: 問題をこのカテゴリに再割り当てする
489
490
490 default_role_manager: 管理者
491 default_role_manager: 管理者
491 default_role_developper: 開発者
492 default_role_developper: 開発者
492 default_role_reporter: 報告者
493 default_role_reporter: 報告者
493 default_tracker_bug: バグ
494 default_tracker_bug: バグ
494 default_tracker_feature: 機能
495 default_tracker_feature: 機能
495 default_tracker_support: サポート
496 default_tracker_support: サポート
496 default_issue_status_new: 新規
497 default_issue_status_new: 新規
497 default_issue_status_assigned: 担当
498 default_issue_status_assigned: 担当
498 default_issue_status_resolved: 解決
499 default_issue_status_resolved: 解決
499 default_issue_status_feedback: フィードバック
500 default_issue_status_feedback: フィードバック
500 default_issue_status_closed: 終了
501 default_issue_status_closed: 終了
501 default_issue_status_rejected: 却下
502 default_issue_status_rejected: 却下
502 default_doc_category_user: ユーザ文書
503 default_doc_category_user: ユーザ文書
503 default_doc_category_tech: 技術文書
504 default_doc_category_tech: 技術文書
504 default_priority_low: 低め
505 default_priority_low: 低め
505 default_priority_normal: 通常
506 default_priority_normal: 通常
506 default_priority_high: 高め
507 default_priority_high: 高め
507 default_priority_urgent: 急いで
508 default_priority_urgent: 急いで
508 default_priority_immediate: 今すぐ
509 default_priority_immediate: 今すぐ
509 default_activity_design: デザイン作業
510 default_activity_design: デザイン作業
510 default_activity_development: 開発作業
511 default_activity_development: 開発作業
511
512
512 enumeration_issue_priorities: 問題の優先度
513 enumeration_issue_priorities: 問題の優先度
513 enumeration_doc_categories: 文書カテゴリ
514 enumeration_doc_categories: 文書カテゴリ
514 enumeration_activities: 作業分類 (時間トラッキング)
515 enumeration_activities: 作業分類 (時間トラッキング)
515 label_file_plural: ファイル
516 label_file_plural: ファイル
516 label_changeset_plural: チェンジセット
517 label_changeset_plural: チェンジセット
517 field_column_names: 項目
518 field_column_names: 項目
518 label_default_columns: 既定の項目
519 label_default_columns: 既定の項目
519 setting_issue_list_default_columns: 問題の一覧で表示する項目
520 setting_issue_list_default_columns: 問題の一覧で表示する項目
520 setting_repositories_encodings: リポジトリのエンコーディング
521 setting_repositories_encodings: リポジトリのエンコーディング
521 notice_no_issue_selected: "問題が選択されていません! 更新対象の問題を選択してください。"
522 notice_no_issue_selected: "問題が選択されていません! 更新対象の問題を選択してください。"
522 label_bulk_edit_selected_issues: 問題の一括編集
523 label_bulk_edit_selected_issues: 問題の一括編集
523 label_no_change_option: (変更無し)
524 label_no_change_option: (変更無し)
524 notice_failed_to_save_issues: "%d件の問題が保存できませんでした(%d件選択のうち) : %s."
525 notice_failed_to_save_issues: "%d件の問題が保存できませんでした(%d件選択のうち) : %s."
525 label_theme: テーマ
526 label_theme: テーマ
526 label_default: 既定
527 label_default: 既定
527 label_search_titles_only: タイトルのみ
528 label_search_titles_only: タイトルのみ
528 label_nobody: nobody
529 label_nobody: nobody
529 button_change_password: パスワード変更
530 button_change_password: パスワード変更
530 text_user_mail_option: "未選択のプロジェクトでは、ウォッチまたは関係している問題(例: 自分が報告者もしくは担当者である問題)のみメールが送信されます。"
531 text_user_mail_option: "未選択のプロジェクトでは、ウォッチまたは関係している問題(例: 自分が報告者もしくは担当者である問題)のみメールが送信されます。"
531 label_user_mail_option_selected: "選択したプロジェクト..."
532 label_user_mail_option_selected: "選択したプロジェクト..."
532 label_user_mail_option_all: "参加しているプロジェクトの全ての問題"
533 label_user_mail_option_all: "参加しているプロジェクトの全ての問題"
533 label_user_mail_option_none: "ウォッチまたは関係している問題のみ"
534 label_user_mail_option_none: "ウォッチまたは関係している問題のみ"
534 setting_emails_footer: メールのフッタ
535 setting_emails_footer: メールのフッタ
535 label_float: 小数
536 label_float: 小数
536 button_copy: コピー
537 button_copy: コピー
537 mail_body_account_information_external: 「%s」アカウントを使ってRedmineにログインできます。
538 mail_body_account_information_external: 「%s」アカウントを使ってRedmineにログインできます。
538 mail_body_account_information: Redmineアカウント情報
539 mail_body_account_information: Redmineアカウント情報
539 setting_protocol: プロトコル
540 setting_protocol: プロトコル
540 label_user_mail_no_self_notified: 自分自身による変更の通知は不要です
541 label_user_mail_no_self_notified: 自分自身による変更の通知は不要です
541 setting_time_format: 時刻の形式
542 setting_time_format: 時刻の形式
542 label_registration_activation_by_email: メールでアカウントを有効化
543 label_registration_activation_by_email: メールでアカウントを有効化
543 mail_subject_account_activation_request: Redminアカウントの有効化要求
544 mail_subject_account_activation_request: Redminアカウントの有効化要求
544 mail_body_account_activation_request: 新しいユーザ(%s)が登録しています。このアカウントはあなたの承認待ちです:
545 mail_body_account_activation_request: 新しいユーザ(%s)が登録しています。このアカウントはあなたの承認待ちです:
545 label_registration_automatic_activation: 自動でアカウントを有効化
546 label_registration_automatic_activation: 自動でアカウントを有効化
546 label_registration_manual_activation: 手動でアカウントを有効化
547 label_registration_manual_activation: 手動でアカウントを有効化
547 notice_account_pending: アカウントは作成済みで、管理者の承認待ちです。
548 notice_account_pending: アカウントは作成済みで、管理者の承認待ちです。
548 field_time_zone: タイムゾーン
549 field_time_zone: タイムゾーン
549 text_caracters_minimum: 最低%d文字の長さが必要です
550 text_caracters_minimum: 最低%d文字の長さが必要です
550 setting_bcc_recipients: ブラインドカーボンコピーで受信(bcc)
551 setting_bcc_recipients: ブラインドカーボンコピーで受信(bcc)
551 button_annotate: 注釈
552 button_annotate: 注釈
552 label_issues_by: %s別の問題
553 label_issues_by: %s別の問題
553 field_searchable: Searchable
554 field_searchable: Searchable
554 label_display_per_page: 'Per page: %s'
555 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
556 setting_per_page_options: Objects per page options
556 label_age: Age
557 label_age: Age
557 notice_default_data_loaded: Default configuration successfully loaded.
558 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
559 text_load_default_configuration: Load the default configuration
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
560 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
561 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
561 button_update: Update
562 button_update: Update
562 label_change_properties: Change properties
563 label_change_properties: Change properties
563 label_general: General
564 label_general: General
564 label_repository_plural: Repositories
565 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
566 label_associated_revisions: Associated revisions
@@ -1,564 +1,565
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: 1월,2월,3월,4월,5월,6월,7월,8월,9월,10월,11월,12월
4 actionview_datehelper_select_month_names: 1월,2월,3월,4월,5월,6월,7월,8월,9월,10월,11월,12월
5 actionview_datehelper_select_month_names_abbr: 1월,2월,3월,4월,5월,6월,7월,8월,9월,10월,11월,12월
5 actionview_datehelper_select_month_names_abbr: 1월,2월,3월,4월,5월,6월,7월,8월,9월,10월,11월,12월
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 하루
8 actionview_datehelper_time_in_words_day: 하루
9 actionview_datehelper_time_in_words_day_plural: %d 일
9 actionview_datehelper_time_in_words_day_plural: %d 일
10 actionview_datehelper_time_in_words_hour_about: 약 한 시간
10 actionview_datehelper_time_in_words_hour_about: 약 한 시간
11 actionview_datehelper_time_in_words_hour_about_plural: 약 %d 시간
11 actionview_datehelper_time_in_words_hour_about_plural: 약 %d 시간
12 actionview_datehelper_time_in_words_hour_about_single: 약 한 시간
12 actionview_datehelper_time_in_words_hour_about_single: 약 한 시간
13 actionview_datehelper_time_in_words_minute: 1 분
13 actionview_datehelper_time_in_words_minute: 1 분
14 actionview_datehelper_time_in_words_minute_half: 30초
14 actionview_datehelper_time_in_words_minute_half: 30초
15 actionview_datehelper_time_in_words_minute_less_than: 1분 이내
15 actionview_datehelper_time_in_words_minute_less_than: 1분 이내
16 actionview_datehelper_time_in_words_minute_plural: %d 분
16 actionview_datehelper_time_in_words_minute_plural: %d 분
17 actionview_datehelper_time_in_words_minute_single: 1 분
17 actionview_datehelper_time_in_words_minute_single: 1 분
18 actionview_datehelper_time_in_words_second_less_than: 1초 이내
18 actionview_datehelper_time_in_words_second_less_than: 1초 이내
19 actionview_datehelper_time_in_words_second_less_than_plural: %d 초 이전
19 actionview_datehelper_time_in_words_second_less_than_plural: %d 초 이전
20 actionview_instancetag_blank_option: 선택하세요
20 actionview_instancetag_blank_option: 선택하세요
21
21
22 activerecord_error_inclusion: 은(는) 목록에 포함되어 있지 않습니다.
22 activerecord_error_inclusion: 은(는) 목록에 포함되어 있지 않습니다.
23 activerecord_error_exclusion: 은(는) 예약되어 있습니다.
23 activerecord_error_exclusion: 은(는) 예약되어 있습니다.
24 activerecord_error_invalid: 은(는) 유효하지 않습니다.
24 activerecord_error_invalid: 은(는) 유효하지 않습니다.
25 activerecord_error_confirmation: 는 제약조건(confirmation)에 맞지 않습니다.
25 activerecord_error_confirmation: 는 제약조건(confirmation)에 맞지 않습니다.
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: 는 길이가 0일 수가 없습니다.
27 activerecord_error_empty: 는 길이가 0일 수가 없습니다.
28 activerecord_error_blank: 는 빈 값이어서는 안됩니다.
28 activerecord_error_blank: 는 빈 값이어서는 안됩니다.
29 activerecord_error_too_long: 는 너무 깁니다.
29 activerecord_error_too_long: 는 너무 깁니다.
30 activerecord_error_too_short: 는 너무 짧습니다.
30 activerecord_error_too_short: 는 너무 짧습니다.
31 activerecord_error_wrong_length: 는 잘못된 길이입니다.
31 activerecord_error_wrong_length: 는 잘못된 길이입니다.
32 activerecord_error_taken: 가 이미 값을 가지고 있습니다.
32 activerecord_error_taken: 가 이미 값을 가지고 있습니다.
33 activerecord_error_not_a_number: 는 숫자가 아닙니다.
33 activerecord_error_not_a_number: 는 숫자가 아닙니다.
34 activerecord_error_not_a_date: 는 잘못된 날짜 값입니다.
34 activerecord_error_not_a_date: 는 잘못된 날짜 값입니다.
35 activerecord_error_greater_than_start_date: 는 시작날짜보다 커야 합니다.
35 activerecord_error_greater_than_start_date: 는 시작날짜보다 커야 합니다.
36 activerecord_error_not_same_project: 는 같은 프로젝트에 속해 있지 않습니다.
36 activerecord_error_not_same_project: 는 같은 프로젝트에 속해 있지 않습니다.
37 activerecord_error_circular_dependency: 이 관계는 순환 의존관계를 만들 수있습니다.
37 activerecord_error_circular_dependency: 이 관계는 순환 의존관계를 만들 수있습니다.
38
38
39 general_fmt_age: %d 년
39 general_fmt_age: %d 년
40 general_fmt_age_plural: %d 년
40 general_fmt_age_plural: %d 년
41 general_fmt_date: %%Y-%%m-%%d
41 general_fmt_date: %%Y-%%m-%%d
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: '아니오'
45 general_text_No: '아니오'
46 general_text_Yes: '예'
46 general_text_Yes: '예'
47 general_text_no: '아니오'
47 general_text_no: '아니오'
48 general_text_yes: '예'
48 general_text_yes: '예'
49 general_lang_name: 'Korean (한국어)'
49 general_lang_name: 'Korean (한국어)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: CP949
51 general_csv_encoding: CP949
52 general_pdf_encoding: CP949
52 general_pdf_encoding: CP949
53 general_day_names: 월요일,화요일,수요일,목요일,금요일,토요일,일요일
53 general_day_names: 월요일,화요일,수요일,목요일,금요일,토요일,일요일
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: 계정이 성공적으로 변경 되었습니다.
56 notice_account_updated: 계정이 성공적으로 변경 되었습니다.
57 notice_account_invalid_creditentials: 잘못된 계정 또는 패스워드
57 notice_account_invalid_creditentials: 잘못된 계정 또는 패스워드
58 notice_account_password_updated: 비밀번호가 잘 변경되었습니다.
58 notice_account_password_updated: 비밀번호가 잘 변경되었습니다.
59 notice_account_wrong_password: 잘못된 패스워드
59 notice_account_wrong_password: 잘못된 패스워드
60 notice_account_register_done: 계정이 성공적으로 생성되었습니다. 계정을 활성화 하기 위해서 수신한 Email의 링크를 클릭해주세요.
60 notice_account_register_done: 계정이 성공적으로 생성되었습니다. 계정을 활성화 하기 위해서 수신한 Email의 링크를 클릭해주세요.
61 notice_account_unknown_email: 알려지지 않은 사용자.
61 notice_account_unknown_email: 알려지지 않은 사용자.
62 notice_can_t_change_password: 이 계정은 외부 인증을 이용합니다. 비밀번호 변경이 불가능 합니다.
62 notice_can_t_change_password: 이 계정은 외부 인증을 이용합니다. 비밀번호 변경이 불가능 합니다.
63 notice_account_lost_email_sent: 새로운 패스워드를 위한 Email이 발송되었습니다.
63 notice_account_lost_email_sent: 새로운 패스워드를 위한 Email이 발송되었습니다.
64 notice_account_activated: 계정이 활성화 되었습니다. 이제 로그인 하실수 있습니다.
64 notice_account_activated: 계정이 활성화 되었습니다. 이제 로그인 하실수 있습니다.
65 notice_successful_create: 생성 성공.
65 notice_successful_create: 생성 성공.
66 notice_successful_update: 변경 성공.
66 notice_successful_update: 변경 성공.
67 notice_successful_delete: 삭제 성공.
67 notice_successful_delete: 삭제 성공.
68 notice_successful_connection: 연결 성공.
68 notice_successful_connection: 연결 성공.
69 notice_file_not_found: 요청하신 페이지는 삭제되었거나 옮겨졌습니다.
69 notice_file_not_found: 요청하신 페이지는 삭제되었거나 옮겨졌습니다.
70 notice_locking_conflict: 다른 사용자에 의해서 데이터가 변경되었습니다.
70 notice_locking_conflict: 다른 사용자에 의해서 데이터가 변경되었습니다.
71 notice_scm_error: 소스 저장소에 해당 내용이 존재하지 않습니다.
71 notice_scm_error: 소스 저장소에 해당 내용이 존재하지 않습니다.
72 notice_not_authorized: 이 페이지에 접근할 권한이 없습니다.
72 notice_not_authorized: 이 페이지에 접근할 권한이 없습니다.
73 notice_email_sent: %s 님에게 Email이 발송되었습니다.
73 notice_email_sent: %s 님에게 Email이 발송되었습니다.
74 notice_email_error: 메일을 전송하는 과정에 오류가 발생했습니다. (%s)
74 notice_email_error: 메일을 전송하는 과정에 오류가 발생했습니다. (%s)
75 notice_feeds_access_key_reseted: RSS에 접근가능한 열쇠(key)가 생성되었습니다.
75 notice_feeds_access_key_reseted: RSS에 접근가능한 열쇠(key)가 생성되었습니다.
76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
77 notice_no_issue_selected: "티켓이 선택되지 않았습니다. 수정하기 원하는 티켓을 선택하세요"
77 notice_no_issue_selected: "티켓이 선택되지 않았습니다. 수정하기 원하는 티켓을 선택하세요"
78
78
79 mail_subject_lost_password: 당신의 비밀번호
79 mail_subject_lost_password: 당신의 비밀번호
80 mail_body_lost_password: '비밀번호를 변경하기 위해서 링크를 이용하세요'
80 mail_body_lost_password: '비밀번호를 변경하기 위해서 링크를 이용하세요'
81 mail_subject_register: 당신의 계정 활성화
81 mail_subject_register: 당신의 계정 활성화
82 mail_body_register: '계정을 활성화 하기 위해서 링크를 이용하세요 :'
82 mail_body_register: '계정을 활성화 하기 위해서 링크를 이용하세요 :'
83
83
84 gui_validation_error: 1 에러
84 gui_validation_error: 1 에러
85 gui_validation_error_plural: %d 에러
85 gui_validation_error_plural: %d 에러
86
86
87 field_name: 이름
87 field_name: 이름
88 field_description: 설명
88 field_description: 설명
89 field_summary: 요약
89 field_summary: 요약
90 field_is_required: 필수
90 field_is_required: 필수
91 field_firstname: 이름
91 field_firstname: 이름
92 field_lastname:
92 field_lastname:
93 field_mail: 메일
93 field_mail: 메일
94 field_filename: 파일
94 field_filename: 파일
95 field_filesize: 크기
95 field_filesize: 크기
96 field_downloads: 다운로드
96 field_downloads: 다운로드
97 field_author: 보고자
97 field_author: 보고자
98 field_created_on: 보고시간
98 field_created_on: 보고시간
99 field_updated_on: 변경시간
99 field_updated_on: 변경시간
100 field_field_format: 포맷
100 field_field_format: 포맷
101 field_is_for_all: 모든 프로젝트
101 field_is_for_all: 모든 프로젝트
102 field_possible_values: 가능한 값들
102 field_possible_values: 가능한 값들
103 field_regexp: 정규식
103 field_regexp: 정규식
104 field_min_length: 최소 길이
104 field_min_length: 최소 길이
105 field_max_length: 최대 길이
105 field_max_length: 최대 길이
106 field_value:
106 field_value:
107 field_category: 카테고리
107 field_category: 카테고리
108 field_title: 제목
108 field_title: 제목
109 field_project: 프로젝트
109 field_project: 프로젝트
110 field_issue: 티켓
110 field_issue: 티켓
111 field_status: 상태
111 field_status: 상태
112 field_notes: 노트
112 field_notes: 노트
113 field_is_closed: 완료된 티켓
113 field_is_closed: 완료된 티켓
114 field_is_default: 기본값
114 field_is_default: 기본값
115 field_tracker: 구분
115 field_tracker: 구분
116 field_subject: 제목
116 field_subject: 제목
117 field_due_date: 완료 기한
117 field_due_date: 완료 기한
118 field_assigned_to: 담당자
118 field_assigned_to: 담당자
119 field_priority: 우선순위
119 field_priority: 우선순위
120 field_fixed_version: 마일스톤
120 field_fixed_version: 마일스톤
121 field_user: 유저
121 field_user: 유저
122 field_role: 역할
122 field_role: 역할
123 field_homepage: 홈페이지
123 field_homepage: 홈페이지
124 field_is_public: 공개
124 field_is_public: 공개
125 field_parent: 상위 프로젝트
125 field_parent: 상위 프로젝트
126 field_is_in_chlog: 변경이력(changelog)에서 보여지는 티켓들
126 field_is_in_chlog: 변경이력(changelog)에서 보여지는 티켓들
127 field_is_in_roadmap: 로드맵에서 보여지는 티켓들
127 field_is_in_roadmap: 로드맵에서 보여지는 티켓들
128 field_login: 로그인
128 field_login: 로그인
129 field_mail_notification: 메일 알림
129 field_mail_notification: 메일 알림
130 field_admin: 관리자
130 field_admin: 관리자
131 field_last_login_on: 최종 접속
131 field_last_login_on: 최종 접속
132 field_language: 언어
132 field_language: 언어
133 field_effective_date: 일자
133 field_effective_date: 일자
134 field_password: 비밀번호
134 field_password: 비밀번호
135 field_new_password: 신규 비밀번호
135 field_new_password: 신규 비밀번호
136 field_password_confirmation: 비밀번호 확인
136 field_password_confirmation: 비밀번호 확인
137 field_version: 버전
137 field_version: 버전
138 field_type: 타입
138 field_type: 타입
139 field_host: 호스트
139 field_host: 호스트
140 field_port: 포트
140 field_port: 포트
141 field_account: 계정
141 field_account: 계정
142 field_base_dn: Base DN
142 field_base_dn: Base DN
143 field_attr_login: 로그인 속성
143 field_attr_login: 로그인 속성
144 field_attr_firstname: 이름 속성
144 field_attr_firstname: 이름 속성
145 field_attr_lastname: 성 속성
145 field_attr_lastname: 성 속성
146 field_attr_mail: 메일 속성
146 field_attr_mail: 메일 속성
147 field_onthefly: On-the-fly user creation
147 field_onthefly: On-the-fly user creation
148 field_start_date: 시작시간
148 field_start_date: 시작시간
149 field_done_ratio: 완료 %%
149 field_done_ratio: 완료 %%
150 field_auth_source: 인증 방법
150 field_auth_source: 인증 방법
151 field_hide_mail: 내 메일 주소 숨기기
151 field_hide_mail: 내 메일 주소 숨기기
152 field_comments: 코멘트
152 field_comments: 코멘트
153 field_url: URL
153 field_url: URL
154 field_start_page: 시작 페이지
154 field_start_page: 시작 페이지
155 field_subproject: 서브 프로젝트
155 field_subproject: 서브 프로젝트
156 field_hours: 시간
156 field_hours: 시간
157 field_activity: 작업종류
157 field_activity: 작업종류
158 field_spent_on: 작업시간
158 field_spent_on: 작업시간
159 field_identifier: 식별자
159 field_identifier: 식별자
160 field_is_filter: 필터로 사용됨
160 field_is_filter: 필터로 사용됨
161 field_issue_to_id: 연관된 티켓
161 field_issue_to_id: 연관된 티켓
162 field_delay: 지연
162 field_delay: 지연
163 field_assignable: 이 역할에 할당될수 있는 티켓
163 field_assignable: 이 역할에 할당될수 있는 티켓
164 field_redirect_existing_links: Redirect existing links
164 field_redirect_existing_links: Redirect existing links
165 field_estimated_hours: 추정시간
165 field_estimated_hours: 추정시간
166 field_column_names: 컬럼
166 field_column_names: 컬럼
167 field_default_value: 기본값
167
168
168 setting_app_title: 레드마인 제목
169 setting_app_title: 레드마인 제목
169 setting_app_subtitle: 레드마인 부제목
170 setting_app_subtitle: 레드마인 부제목
170 setting_welcome_text: 환영 메시지
171 setting_welcome_text: 환영 메시지
171 setting_default_language: 기본 언어
172 setting_default_language: 기본 언어
172 setting_login_required: 인증이 필요함.
173 setting_login_required: 인증이 필요함.
173 setting_self_registration: Self-registration
174 setting_self_registration: Self-registration
174 setting_attachment_max_size: 최대 첨부파일 크기
175 setting_attachment_max_size: 최대 첨부파일 크기
175 setting_issues_export_limit: Issues export limit
176 setting_issues_export_limit: Issues export limit
176 setting_mail_from: Emission mail address
177 setting_mail_from: Emission mail address
177 setting_host_name: 호스트 이름
178 setting_host_name: 호스트 이름
178 setting_text_formatting: 텍스트 형식
179 setting_text_formatting: 텍스트 형식
179 setting_wiki_compression: 위키 기록(history) 압축
180 setting_wiki_compression: 위키 기록(history) 압축
180 setting_feeds_limit: Feed content limit
181 setting_feeds_limit: Feed content limit
181 setting_autofetch_changesets: Autofetch commits
182 setting_autofetch_changesets: Autofetch commits
182 setting_sys_api_enabled: Enable WS for repository management
183 setting_sys_api_enabled: Enable WS for repository management
183 setting_commit_ref_keywords: 티켓 참조에 사용할 키워드들
184 setting_commit_ref_keywords: 티켓 참조에 사용할 키워드들
184 setting_commit_fix_keywords: 티켓 해결에 사용할 키워드들
185 setting_commit_fix_keywords: 티켓 해결에 사용할 키워드들
185 setting_autologin: 자동 로그인
186 setting_autologin: 자동 로그인
186 setting_date_format: 날짜 형식
187 setting_date_format: 날짜 형식
187 setting_cross_project_issue_relations: 프로젝트 간에 이슈에 관련을 맺는 것을 허용
188 setting_cross_project_issue_relations: 프로젝트 간에 이슈에 관련을 맺는 것을 허용
188 setting_issue_list_default_columns: 티켓 목록에 보여줄 기본 컬럼들
189 setting_issue_list_default_columns: 티켓 목록에 보여줄 기본 컬럼들
189 setting_repositories_encodings: 저장소 인코딩
190 setting_repositories_encodings: 저장소 인코딩
190 setting_emails_footer: 메일 꼬리
191 setting_emails_footer: 메일 꼬리
191
192
192 label_user: 사용자
193 label_user: 사용자
193 label_user_plural: 사용자관리
194 label_user_plural: 사용자관리
194 label_user_new: 신규 유저
195 label_user_new: 신규 유저
195 label_project: 프로젝트
196 label_project: 프로젝트
196 label_project_new: 신규 프로젝트
197 label_project_new: 신규 프로젝트
197 label_project_plural: 프로젝트
198 label_project_plural: 프로젝트
198 label_project_all: 모든 프로젝트
199 label_project_all: 모든 프로젝트
199 label_project_latest: 최근 프로젝트
200 label_project_latest: 최근 프로젝트
200 label_issue: 티켓 보기
201 label_issue: 티켓 보기
201 label_issue_new: 새 티켓만들기
202 label_issue_new: 새 티켓만들기
202 label_issue_plural: 티켓 보기
203 label_issue_plural: 티켓 보기
203 label_issue_view_all: 모든 티켓 보기
204 label_issue_view_all: 모든 티켓 보기
204 label_document: 문서
205 label_document: 문서
205 label_document_new: 새로운 문서
206 label_document_new: 새로운 문서
206 label_document_plural: 문서
207 label_document_plural: 문서
207 label_role: 역할
208 label_role: 역할
208 label_role_plural: 역할
209 label_role_plural: 역할
209 label_role_new: 새로운 역할
210 label_role_new: 새로운 역할
210 label_role_and_permissions: 권한관리
211 label_role_and_permissions: 권한관리
211 label_member: 담당자
212 label_member: 담당자
212 label_member_new: 새로운 담당자
213 label_member_new: 새로운 담당자
213 label_member_plural: 담당자
214 label_member_plural: 담당자
214 label_tracker: 티켓 유형
215 label_tracker: 티켓 유형
215 label_tracker_plural: 티켓 유형
216 label_tracker_plural: 티켓 유형
216 label_tracker_new: 새로운 티켓 유형
217 label_tracker_new: 새로운 티켓 유형
217 label_workflow: 워크플로(Workflow)
218 label_workflow: 워크플로(Workflow)
218 label_issue_status: 티켓 상태
219 label_issue_status: 티켓 상태
219 label_issue_status_plural: 티켓 상태
220 label_issue_status_plural: 티켓 상태
220 label_issue_status_new: 새로운 티켓 상태
221 label_issue_status_new: 새로운 티켓 상태
221 label_issue_category: 카테고리
222 label_issue_category: 카테고리
222 label_issue_category_plural: 카테고리
223 label_issue_category_plural: 카테고리
223 label_issue_category_new: 새 카테고리
224 label_issue_category_new: 새 카테고리
224 label_custom_field: 사용자 정의 항목
225 label_custom_field: 사용자 정의 항목
225 label_custom_field_plural: 사용자 정의 항목
226 label_custom_field_plural: 사용자 정의 항목
226 label_custom_field_new: 새로운 사용자 정의 항목
227 label_custom_field_new: 새로운 사용자 정의 항목
227 label_enumerations: 코드값 설정
228 label_enumerations: 코드값 설정
228 label_enumeration_new: 새로운 코드값
229 label_enumeration_new: 새로운 코드값
229 label_information: 정보
230 label_information: 정보
230 label_information_plural: 정보
231 label_information_plural: 정보
231 label_please_login: 로그인하세요.
232 label_please_login: 로그인하세요.
232 label_register: 등록
233 label_register: 등록
233 label_password_lost: 비밀번호 찾기
234 label_password_lost: 비밀번호 찾기
234 label_home: 초기화면
235 label_home: 초기화면
235 label_my_page: 내페이지
236 label_my_page: 내페이지
236 label_my_account: 내계정
237 label_my_account: 내계정
237 label_my_projects: 나의 프로젝트
238 label_my_projects: 나의 프로젝트
238 label_administration: 관리자
239 label_administration: 관리자
239 label_login: 로그인
240 label_login: 로그인
240 label_logout: 로그아웃
241 label_logout: 로그아웃
241 label_help: 도움말
242 label_help: 도움말
242 label_reported_issues: 보고된 티켓
243 label_reported_issues: 보고된 티켓
243 label_assigned_to_me_issues: 나에게 할당된 티켓
244 label_assigned_to_me_issues: 나에게 할당된 티켓
244 label_last_login: 최종 접속
245 label_last_login: 최종 접속
245 label_last_updates: 최종 변경 내역
246 label_last_updates: 최종 변경 내역
246 label_last_updates_plural: 최종변경 %d
247 label_last_updates_plural: 최종변경 %d
247 label_registered_on: Registered on
248 label_registered_on: Registered on
248 label_activity: 진행중인 작업
249 label_activity: 진행중인 작업
249 label_new: 신규
250 label_new: 신규
250 label_logged_as:
251 label_logged_as:
251 label_environment: 환경
252 label_environment: 환경
252 label_authentication: 인증설정
253 label_authentication: 인증설정
253 label_auth_source: 인증 모드
254 label_auth_source: 인증 모드
254 label_auth_source_new: 신규 인증 모드
255 label_auth_source_new: 신규 인증 모드
255 label_auth_source_plural: 인증 모드
256 label_auth_source_plural: 인증 모드
256 label_subproject_plural: 서브 프로젝트
257 label_subproject_plural: 서브 프로젝트
257 label_min_max_length: 최소 - 최대 길이
258 label_min_max_length: 최소 - 최대 길이
258 label_list: 리스트
259 label_list: 리스트
259 label_date: 날짜
260 label_date: 날짜
260 label_integer: 정수
261 label_integer: 정수
261 label_float: 부동상수
262 label_float: 부동상수
262 label_boolean: 부울린
263 label_boolean: 부울린
263 label_string: 문자열
264 label_string: 문자열
264 label_text: 텍스트
265 label_text: 텍스트
265 label_attribute: 속성
266 label_attribute: 속성
266 label_attribute_plural: 속성
267 label_attribute_plural: 속성
267 label_download: %d 다운로드
268 label_download: %d 다운로드
268 label_download_plural: %d 다운로드
269 label_download_plural: %d 다운로드
269 label_no_data: 데이터가 없습니다.
270 label_no_data: 데이터가 없습니다.
270 label_change_status: 상태 변경
271 label_change_status: 상태 변경
271 label_history: 히스토리
272 label_history: 히스토리
272 label_attachment: 파일
273 label_attachment: 파일
273 label_attachment_new: 파일추가
274 label_attachment_new: 파일추가
274 label_attachment_delete: 파일삭제
275 label_attachment_delete: 파일삭제
275 label_attachment_plural: 관련파일
276 label_attachment_plural: 관련파일
276 label_report: 보고서
277 label_report: 보고서
277 label_report_plural: 보고서
278 label_report_plural: 보고서
278 label_news: 뉴스
279 label_news: 뉴스
279 label_news_new: 뉴스추가
280 label_news_new: 뉴스추가
280 label_news_plural: 뉴스
281 label_news_plural: 뉴스
281 label_news_latest: 최근 뉴스
282 label_news_latest: 최근 뉴스
282 label_news_view_all: 모든 뉴스
283 label_news_view_all: 모든 뉴스
283 label_change_log: 변경 로그
284 label_change_log: 변경 로그
284 label_settings: 설정
285 label_settings: 설정
285 label_overview: 개요
286 label_overview: 개요
286 label_version: 버전
287 label_version: 버전
287 label_version_new: 새로운 버전
288 label_version_new: 새로운 버전
288 label_version_plural: 버전
289 label_version_plural: 버전
289 label_confirmation: 확인
290 label_confirmation: 확인
290 label_export_to: 내보내기
291 label_export_to: 내보내기
291 label_read: 읽기...
292 label_read: 읽기...
292 label_public_projects: 공개된 프로젝트
293 label_public_projects: 공개된 프로젝트
293 label_open_issues: 진행중
294 label_open_issues: 진행중
294 label_open_issues_plural: 진행중
295 label_open_issues_plural: 진행중
295 label_closed_issues: 완료됨
296 label_closed_issues: 완료됨
296 label_closed_issues_plural: 완료됨
297 label_closed_issues_plural: 완료됨
297 label_total: Total
298 label_total: Total
298 label_permissions: 허가권한
299 label_permissions: 허가권한
299 label_current_status: 티켓 상태
300 label_current_status: 티켓 상태
300 label_new_statuses_allowed: 허용되는 티켓 상태
301 label_new_statuses_allowed: 허용되는 티켓 상태
301 label_all: 모두
302 label_all: 모두
302 label_none: 없음
303 label_none: 없음
303 label_next: 다음
304 label_next: 다음
304 label_previous: 이전
305 label_previous: 이전
305 label_used_by: 사용됨
306 label_used_by: 사용됨
306 label_details: 상세
307 label_details: 상세
307 label_add_note: 티켓노트 추가
308 label_add_note: 티켓노트 추가
308 label_per_page: 페이지별
309 label_per_page: 페이지별
309 label_calendar: 달력
310 label_calendar: 달력
310 label_months_from: 개월 동안 | 다음부터
311 label_months_from: 개월 동안 | 다음부터
311 label_gantt: Gantt 챠트
312 label_gantt: Gantt 챠트
312 label_internal: Internal
313 label_internal: Internal
313 label_last_changes: 지난 변경사항 %d 건
314 label_last_changes: 지난 변경사항 %d 건
314 label_change_view_all: 모든 변경 내역 보기
315 label_change_view_all: 모든 변경 내역 보기
315 label_personalize_page: 입맛대로 구성하기(Drag & Drop)
316 label_personalize_page: 입맛대로 구성하기(Drag & Drop)
316 label_comment: 댓글
317 label_comment: 댓글
317 label_comment_plural: 댓글
318 label_comment_plural: 댓글
318 label_comment_add: 댓글 추가
319 label_comment_add: 댓글 추가
319 label_comment_added: 댓글이 추가되었습니다.
320 label_comment_added: 댓글이 추가되었습니다.
320 label_comment_delete: 댓글 삭제
321 label_comment_delete: 댓글 삭제
321 label_query: 사용자 검색조건
322 label_query: 사용자 검색조건
322 label_query_plural: 사용자 검색조건
323 label_query_plural: 사용자 검색조건
323 label_query_new: 새로운 사용자 검색조건
324 label_query_new: 새로운 사용자 검색조건
324 label_filter_add: 필터 추가
325 label_filter_add: 필터 추가
325 label_filter_plural: 필터
326 label_filter_plural: 필터
326 label_equals: 이다
327 label_equals: 이다
327 label_not_equals: 아니다
328 label_not_equals: 아니다
328 label_in_less_than: 이내
329 label_in_less_than: 이내
329 label_in_more_than: 이후
330 label_in_more_than: 이후
330 label_in: 이내
331 label_in: 이내
331 label_today: 오늘
332 label_today: 오늘
332 label_this_week: 이번주
333 label_this_week: 이번주
333 label_less_than_ago: 이전
334 label_less_than_ago: 이전
334 label_more_than_ago: 이후
335 label_more_than_ago: 이후
335 label_ago: 일 전
336 label_ago: 일 전
336 label_contains: 포함되는 키워드
337 label_contains: 포함되는 키워드
337 label_not_contains: 포함하지 않는 키워드
338 label_not_contains: 포함하지 않는 키워드
338 label_day_plural:
339 label_day_plural:
339 label_repository: 저장소
340 label_repository: 저장소
340 label_browse: 저장소 살피기
341 label_browse: 저장소 살피기
341 label_modification: %d 변경
342 label_modification: %d 변경
342 label_modification_plural: %d 변경
343 label_modification_plural: %d 변경
343 label_revision: 개정판(Revision)
344 label_revision: 개정판(Revision)
344 label_revision_plural: 개정판(Revisions)
345 label_revision_plural: 개정판(Revisions)
345 label_added: added
346 label_added: added
346 label_modified: modified
347 label_modified: modified
347 label_deleted: deleted
348 label_deleted: deleted
348 label_latest_revision: 최근 개정판
349 label_latest_revision: 최근 개정판
349 label_latest_revision_plural: 최근 개정판
350 label_latest_revision_plural: 최근 개정판
350 label_view_revisions: 개정판 보기
351 label_view_revisions: 개정판 보기
351 label_max_size: 최대 크기
352 label_max_size: 최대 크기
352 label_on: 'on'
353 label_on: 'on'
353 label_sort_highest: 최상단으로
354 label_sort_highest: 최상단으로
354 label_sort_higher: 위로
355 label_sort_higher: 위로
355 label_sort_lower: 아래로
356 label_sort_lower: 아래로
356 label_sort_lowest: 최하단으로
357 label_sort_lowest: 최하단으로
357 label_roadmap: 로드맵
358 label_roadmap: 로드맵
358 label_roadmap_due_in: 기한
359 label_roadmap_due_in: 기한
359 label_roadmap_overdue: %s 지연
360 label_roadmap_overdue: %s 지연
360 label_roadmap_no_issues: 이버전에 해당하는 티켓 없음
361 label_roadmap_no_issues: 이버전에 해당하는 티켓 없음
361 label_search: 검색
362 label_search: 검색
362 label_result_plural: 결과
363 label_result_plural: 결과
363 label_all_words: 모든 단어
364 label_all_words: 모든 단어
364 label_wiki: 위키
365 label_wiki: 위키
365 label_wiki_edit: 위키 편집
366 label_wiki_edit: 위키 편집
366 label_wiki_edit_plural: 위키 편집
367 label_wiki_edit_plural: 위키 편집
367 label_wiki_page: 위키
368 label_wiki_page: 위키
368 label_wiki_page_plural: 위키
369 label_wiki_page_plural: 위키
369 label_index_by_title: 제목별 색인
370 label_index_by_title: 제목별 색인
370 label_index_by_date: 날짜별 색인
371 label_index_by_date: 날짜별 색인
371 label_current_version: 현재 버전
372 label_current_version: 현재 버전
372 label_preview: 미리보기
373 label_preview: 미리보기
373 label_feed_plural: 피드(Feeds)
374 label_feed_plural: 피드(Feeds)
374 label_changes_details: 모든 상세 변경 내역
375 label_changes_details: 모든 상세 변경 내역
375 label_issue_tracking: 티켓 추적
376 label_issue_tracking: 티켓 추적
376 label_spent_time: 작업 시간
377 label_spent_time: 작업 시간
377 label_f_hour: %.2f 시간
378 label_f_hour: %.2f 시간
378 label_f_hour_plural: %.2f 시간
379 label_f_hour_plural: %.2f 시간
379 label_time_tracking: 시간추적
380 label_time_tracking: 시간추적
380 label_change_plural: 변경사항들
381 label_change_plural: 변경사항들
381 label_statistics: 통계
382 label_statistics: 통계
382 label_commits_per_month: 월별 커밋 내역
383 label_commits_per_month: 월별 커밋 내역
383 label_commits_per_author: 아이디별 커밋 내역
384 label_commits_per_author: 아이디별 커밋 내역
384 label_view_diff: diff 보기
385 label_view_diff: diff 보기
385 label_diff_inline: 한줄로
386 label_diff_inline: 한줄로
386 label_diff_side_by_side: 두줄로
387 label_diff_side_by_side: 두줄로
387 label_options: Options
388 label_options: Options
388 label_copy_workflow_from: Copy workflow from
389 label_copy_workflow_from: Copy workflow from
389 label_permissions_report: 권한 보고서
390 label_permissions_report: 권한 보고서
390 label_watched_issues: 감시중인 티켓
391 label_watched_issues: 감시중인 티켓
391 label_related_issues: 연결된 티켓
392 label_related_issues: 연결된 티켓
392 label_applied_status: Applied status
393 label_applied_status: Applied status
393 label_loading: 읽는 중...
394 label_loading: 읽는 중...
394 label_relation_new: New relation
395 label_relation_new: New relation
395 label_relation_delete: Delete relation
396 label_relation_delete: Delete relation
396 label_relates_to: 다음 티켓과 관련되어 있음
397 label_relates_to: 다음 티켓과 관련되어 있음
397 label_duplicates: 다음 티켓과 중복됨.
398 label_duplicates: 다음 티켓과 중복됨.
398 label_blocks: 다음 티켓을 해결을 막고 있음.
399 label_blocks: 다음 티켓을 해결을 막고 있음.
399 label_blocked_by: 막고 있는 티켓
400 label_blocked_by: 막고 있는 티켓
400 label_precedes: 다음 티켓보다 앞서서 처리해야 함.
401 label_precedes: 다음 티켓보다 앞서서 처리해야 함.
401 label_follows: 선처리티켓
402 label_follows: 선처리티켓
402 label_end_to_start: end to start
403 label_end_to_start: end to start
403 label_end_to_end: end to end
404 label_end_to_end: end to end
404 label_start_to_start: start to start
405 label_start_to_start: start to start
405 label_start_to_end: start to end
406 label_start_to_end: start to end
406 label_stay_logged_in: 로그인 유지
407 label_stay_logged_in: 로그인 유지
407 label_disabled: 비활성화
408 label_disabled: 비활성화
408 label_show_completed_versions: 완료된 버전 보기
409 label_show_completed_versions: 완료된 버전 보기
409 label_me:
410 label_me:
410 label_board: 게시판
411 label_board: 게시판
411 label_board_new: 신규 게시판
412 label_board_new: 신규 게시판
412 label_board_plural: 게시판
413 label_board_plural: 게시판
413 label_topic_plural: 주제
414 label_topic_plural: 주제
414 label_message_plural: 관련글
415 label_message_plural: 관련글
415 label_message_last: 최종 글
416 label_message_last: 최종 글
416 label_message_new: 새글쓰기
417 label_message_new: 새글쓰기
417 label_reply_plural: 답글
418 label_reply_plural: 답글
418 label_send_information: 사용자에게 계정정보를 보냄
419 label_send_information: 사용자에게 계정정보를 보냄
419 label_year:
420 label_year:
420 label_month:
421 label_month:
421 label_week:
422 label_week:
422 label_date_from: 에서
423 label_date_from: 에서
423 label_date_to: (으)로
424 label_date_to: (으)로
424 label_language_based: Language based
425 label_language_based: Language based
425 label_sort_by: 정렬방법(%s)
426 label_sort_by: 정렬방법(%s)
426 label_send_test_email: 테스트 메일 보내기
427 label_send_test_email: 테스트 메일 보내기
427 label_feeds_access_key_created_on: RSS access key created %s ago
428 label_feeds_access_key_created_on: RSS access key created %s ago
428 label_module_plural: 모듈
429 label_module_plural: 모듈
429 label_added_time_by: %s이(가) %s 전에 추가함
430 label_added_time_by: %s이(가) %s 전에 추가함
430 label_updated_time: %s 전에 수정됨
431 label_updated_time: %s 전에 수정됨
431 label_jump_to_a_project: 다른 프로젝트로 이동하기
432 label_jump_to_a_project: 다른 프로젝트로 이동하기
432 label_file_plural: 파일
433 label_file_plural: 파일
433 label_changeset_plural: 변경사항
434 label_changeset_plural: 변경사항
434 label_default_columns: 기본 컬럼
435 label_default_columns: 기본 컬럼
435 label_no_change_option: (수정 안함)
436 label_no_change_option: (수정 안함)
436 label_bulk_edit_selected_issues: 선택된 티켓들을 한꺼번에 수정하기
437 label_bulk_edit_selected_issues: 선택된 티켓들을 한꺼번에 수정하기
437 label_theme: 테마
438 label_theme: 테마
438 label_default: 기본
439 label_default: 기본
439 label_search_titles_only: 제목에서만 찾기
440 label_search_titles_only: 제목에서만 찾기
440 label_user_mail_option_all: "내가 속한 프로젝트로들부터 모든 메일 받기"
441 label_user_mail_option_all: "내가 속한 프로젝트로들부터 모든 메일 받기"
441 label_user_mail_option_selected: "선택한 프로젝트들로부터 모든 메일 받기.."
442 label_user_mail_option_selected: "선택한 프로젝트들로부터 모든 메일 받기.."
442 label_user_mail_option_none: "내가 속하거나 감시 중인 사항에 대해서만"
443 label_user_mail_option_none: "내가 속하거나 감시 중인 사항에 대해서만"
443
444
444 button_login: 로그인
445 button_login: 로그인
445 button_submit: 확인
446 button_submit: 확인
446 button_save: 저장
447 button_save: 저장
447 button_check_all: 모두선택
448 button_check_all: 모두선택
448 button_uncheck_all: 선택해제
449 button_uncheck_all: 선택해제
449 button_delete: 삭제
450 button_delete: 삭제
450 button_create: 완료
451 button_create: 완료
451 button_test: 테스트
452 button_test: 테스트
452 button_edit: 편집
453 button_edit: 편집
453 button_add: 추가
454 button_add: 추가
454 button_change: 변경
455 button_change: 변경
455 button_apply: 적용
456 button_apply: 적용
456 button_clear: 초기화
457 button_clear: 초기화
457 button_lock: 잠금
458 button_lock: 잠금
458 button_unlock: 잠금해제
459 button_unlock: 잠금해제
459 button_download: 다운로드
460 button_download: 다운로드
460 button_list: 목록
461 button_list: 목록
461 button_view: 보기
462 button_view: 보기
462 button_move: 이동
463 button_move: 이동
463 button_back: 뒤로
464 button_back: 뒤로
464 button_cancel: 취소
465 button_cancel: 취소
465 button_activate: 활성화
466 button_activate: 활성화
466 button_sort: 정렬
467 button_sort: 정렬
467 button_log_time: 작업시간 기록
468 button_log_time: 작업시간 기록
468 button_rollback: 이 버전으로 롤백
469 button_rollback: 이 버전으로 롤백
469 button_watch: 감시하기
470 button_watch: 감시하기
470 button_unwatch: 감시해제
471 button_unwatch: 감시해제
471 button_reply: 답글
472 button_reply: 답글
472 button_archive: 잠금보관
473 button_archive: 잠금보관
473 button_unarchive: 잠금보관해제
474 button_unarchive: 잠금보관해제
474 button_reset: 리셋
475 button_reset: 리셋
475 button_rename: 이름 변경
476 button_rename: 이름 변경
476
477
477 status_active: 사용중
478 status_active: 사용중
478 status_registered: 등록대기
479 status_registered: 등록대기
479 status_locked: 잠김
480 status_locked: 잠김
480
481
481 text_select_mail_notifications: 알림메일이 필요한 작업을 선택하세요.
482 text_select_mail_notifications: 알림메일이 필요한 작업을 선택하세요.
482 text_regexp_info: 예) ^[A-Z0-9]+$
483 text_regexp_info: 예) ^[A-Z0-9]+$
483 text_min_max_length_info: 0 는 제한이 없음을 의미함
484 text_min_max_length_info: 0 는 제한이 없음을 의미함
484 text_project_destroy_confirmation: 이 프로젝트를 삭제하고 모든 데이터를 지우시겠습니까?
485 text_project_destroy_confirmation: 이 프로젝트를 삭제하고 모든 데이터를 지우시겠습니까?
485 text_workflow_edit: 워크플로를 수정하기 위해서 역할과 티켓유형을 선택하세요.
486 text_workflow_edit: 워크플로를 수정하기 위해서 역할과 티켓유형을 선택하세요.
486 text_are_you_sure: 계속 진행 하시겠습니까?
487 text_are_you_sure: 계속 진행 하시겠습니까?
487 text_journal_changed: %s에서 %s(으)로 변경
488 text_journal_changed: %s에서 %s(으)로 변경
488 text_journal_set_to: %s로 설정
489 text_journal_set_to: %s로 설정
489 text_journal_deleted: 삭제됨
490 text_journal_deleted: 삭제됨
490 text_tip_task_begin_day: 오늘 시작하는 업무(task)
491 text_tip_task_begin_day: 오늘 시작하는 업무(task)
491 text_tip_task_end_day: 오늘 종료하는 업무(task)
492 text_tip_task_end_day: 오늘 종료하는 업무(task)
492 text_tip_task_begin_end_day: 오늘 시작하고 종료하는 업무(task)
493 text_tip_task_begin_end_day: 오늘 시작하고 종료하는 업무(task)
493 text_project_identifier_info: '영문 소문자 (a-z), 숫자 대쉬(-) 가능.<br />저장된후에는 식별자 변경 불가능.'
494 text_project_identifier_info: '영문 소문자 (a-z), 숫자 대쉬(-) 가능.<br />저장된후에는 식별자 변경 불가능.'
494 text_caracters_maximum: 최대 %d 글자 가능.
495 text_caracters_maximum: 최대 %d 글자 가능.
495 text_length_between: %d 에서 %d 글자
496 text_length_between: %d 에서 %d 글자
496 text_tracker_no_workflow: 이 추적타입(tracker)에 워크플로우가 정의되지 않았습니다.
497 text_tracker_no_workflow: 이 추적타입(tracker)에 워크플로우가 정의되지 않았습니다.
497 text_unallowed_characters: 허용되지 않는 문자열
498 text_unallowed_characters: 허용되지 않는 문자열
498 text_comma_separated: 복수의 값들이 허용됩니다.(구분자 ,)
499 text_comma_separated: 복수의 값들이 허용됩니다.(구분자 ,)
499 text_issues_ref_in_commit_messages: 커밋메시지에서 티켓을 참조하거나 해결하기
500 text_issues_ref_in_commit_messages: 커밋메시지에서 티켓을 참조하거나 해결하기
500 text_issue_added: 티켓[%s]이 보고되었습니다.
501 text_issue_added: 티켓[%s]이 보고되었습니다.
501 text_issue_updated: 티켓[%s]이 수정되었습니다.
502 text_issue_updated: 티켓[%s]이 수정되었습니다.
502 text_wiki_destroy_confirmation: 이 위키와 모든 내용을 지우시겠습니까?
503 text_wiki_destroy_confirmation: 이 위키와 모든 내용을 지우시겠습니까?
503 text_issue_category_destroy_question: 일부 티켓들(%d개)이 이 카테고리에 할당되어 있습니다. 어떻게 하시겠습니까?
504 text_issue_category_destroy_question: 일부 티켓들(%d개)이 이 카테고리에 할당되어 있습니다. 어떻게 하시겠습니까?
504 text_issue_category_destroy_assignments: 카테고리 할당 지우기
505 text_issue_category_destroy_assignments: 카테고리 할당 지우기
505 text_issue_category_reassign_to: 티켓을 이 카테고리에 다시 할당하기
506 text_issue_category_reassign_to: 티켓을 이 카테고리에 다시 할당하기
506 text_user_mail_option: "선택하지 않은 프로젝트에서도, 모니터링 중이거나 속해있는 사항(티켓을 발행했거나 할당된 경우)이 있으면 알림메일을 받게 됩니다."
507 text_user_mail_option: "선택하지 않은 프로젝트에서도, 모니터링 중이거나 속해있는 사항(티켓을 발행했거나 할당된 경우)이 있으면 알림메일을 받게 됩니다."
507
508
508 default_role_manager: 관리자
509 default_role_manager: 관리자
509 default_role_developper: 개발자
510 default_role_developper: 개발자
510 default_role_reporter: 보고자
511 default_role_reporter: 보고자
511 default_tracker_bug: 버그
512 default_tracker_bug: 버그
512 default_tracker_feature: 새기능
513 default_tracker_feature: 새기능
513 default_tracker_support: 지원
514 default_tracker_support: 지원
514 default_issue_status_new: 신규
515 default_issue_status_new: 신규
515 default_issue_status_assigned: 확인
516 default_issue_status_assigned: 확인
516 default_issue_status_resolved: 해결
517 default_issue_status_resolved: 해결
517 default_issue_status_feedback: 피드백
518 default_issue_status_feedback: 피드백
518 default_issue_status_closed: 완료
519 default_issue_status_closed: 완료
519 default_issue_status_rejected: 재처리
520 default_issue_status_rejected: 재처리
520 default_doc_category_user: 사용자 문서
521 default_doc_category_user: 사용자 문서
521 default_doc_category_tech: 기술 문서
522 default_doc_category_tech: 기술 문서
522 default_priority_low: 낮음
523 default_priority_low: 낮음
523 default_priority_normal: 보통
524 default_priority_normal: 보통
524 default_priority_high: 높음
525 default_priority_high: 높음
525 default_priority_urgent: 긴급
526 default_priority_urgent: 긴급
526 default_priority_immediate: 즉시
527 default_priority_immediate: 즉시
527 default_activity_design: 설계
528 default_activity_design: 설계
528 default_activity_development: 개발
529 default_activity_development: 개발
529
530
530 enumeration_issue_priorities: 티켓 우선순위
531 enumeration_issue_priorities: 티켓 우선순위
531 enumeration_doc_categories: 문서 카테고리
532 enumeration_doc_categories: 문서 카테고리
532 enumeration_activities: 진행활동(시간 추적)
533 enumeration_activities: 진행활동(시간 추적)
533 button_copy: 복사
534 button_copy: 복사
534 mail_body_account_information_external: 레드마인에 로그인할 때 "%s" 계정을 사용하실 수 있습니다.
535 mail_body_account_information_external: 레드마인에 로그인할 때 "%s" 계정을 사용하실 수 있습니다.
535 button_change_password: 비밀번호 변경
536 button_change_password: 비밀번호 변경
536 label_nobody: nobody
537 label_nobody: nobody
537 setting_protocol: 프로토콜
538 setting_protocol: 프로토콜
538 mail_body_account_information: Redmine 계정 정보
539 mail_body_account_information: Redmine 계정 정보
539 label_user_mail_no_self_notified: "내가 만든 변경사항들에 대해서는 알림메일을 받지 않습니다."
540 label_user_mail_no_self_notified: "내가 만든 변경사항들에 대해서는 알림메일을 받지 않습니다."
540 setting_time_format: 시간 형식
541 setting_time_format: 시간 형식
541 label_registration_activation_by_email: 메일로 계정을 활성화하기
542 label_registration_activation_by_email: 메일로 계정을 활성화하기
542 mail_subject_account_activation_request: 레드마인 계정 활성화 요청
543 mail_subject_account_activation_request: 레드마인 계정 활성화 요청
543 mail_body_account_activation_request: '새 계정(%s)이 등록되었습니다. 관리자님의 승인을 기다리고 있습니다.:'
544 mail_body_account_activation_request: '새 계정(%s)이 등록되었습니다. 관리자님의 승인을 기다리고 있습니다.:'
544 label_registration_automatic_activation: 자동 계정 활성화
545 label_registration_automatic_activation: 자동 계정 활성화
545 label_registration_manual_activation: 수동 계정 활성화
546 label_registration_manual_activation: 수동 계정 활성화
546 notice_account_pending: "계정이 만들어 졌습니다. 관리자의 승인이 있을 때까지 기다려야 합니다."
547 notice_account_pending: "계정이 만들어 졌습니다. 관리자의 승인이 있을 때까지 기다려야 합니다."
547 field_time_zone: 타임존
548 field_time_zone: 타임존
548 text_caracters_minimum: 최소한 %d 글자 이상이어야 합니다.
549 text_caracters_minimum: 최소한 %d 글자 이상이어야 합니다.
549 setting_bcc_recipients: 참조자들을 bcc로 숨기기
550 setting_bcc_recipients: 참조자들을 bcc로 숨기기
550 button_annotate: Annotate
551 button_annotate: Annotate
551 label_issues_by: Issues by %s
552 label_issues_by: Issues by %s
552 field_searchable: 검색가능
553 field_searchable: 검색가능
553 label_display_per_page: 'Per page: %s'
554 label_display_per_page: 'Per page: %s'
554 setting_per_page_options: Objects per page options
555 setting_per_page_options: Objects per page options
555 label_age: Age
556 label_age: Age
556 notice_default_data_loaded: 기본 설정을 성공적으로 로드하였습니다.
557 notice_default_data_loaded: 기본 설정을 성공적으로 로드하였습니다.
557 text_load_default_configuration: 기본 설정을 로딩하기
558 text_load_default_configuration: 기본 설정을 로딩하기
558 text_no_configuration_data: "역할, 티켓타입, 티켓 상태들과 워크플로가 아직 설정되지 않았습니다.\n기본 설정을 로딩하는 것을 권장합니다. 로드된 후에 수정할 있습니다."
559 text_no_configuration_data: "역할, 티켓타입, 티켓 상태들과 워크플로가 아직 설정되지 않았습니다.\n기본 설정을 로딩하는 것을 권장합니다. 로드된 후에 수정할 있습니다."
559 error_can_t_load_default_data: "기본 설정을 로드할 없습니다.: %s"
560 error_can_t_load_default_data: "기본 설정을 로드할 없습니다.: %s"
560 button_update: 변경사항기록
561 button_update: 변경사항기록
561 label_change_properties: 속성 변경
562 label_change_properties: 속성 변경
562 label_general: 일반
563 label_general: 일반
563 label_repository_plural: 저장소들
564 label_repository_plural: 저장소들
564 label_associated_revisions: Associated revisions
565 label_associated_revisions: Associated revisions
@@ -1,565 +1,566
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: sausis,vasaris,kovas,balandis,gegužė,birželis,liepa,rugpjūtis,rugsėjis,spalis,lapkritis,gruodis
4 actionview_datehelper_select_month_names: sausis,vasaris,kovas,balandis,gegužė,birželis,liepa,rugpjūtis,rugsėjis,spalis,lapkritis,gruodis
5 actionview_datehelper_select_month_names_abbr: sausis,vasaris,kovas,balandis,gegužė,birželis,liepa,rugpjūtis,rugsėjis,spalis,lapkritis,gruodis
5 actionview_datehelper_select_month_names_abbr: sausis,vasaris,kovas,balandis,gegužė,birželis,liepa,rugpjūtis,rugsėjis,spalis,lapkritis,gruodis
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 diena
8 actionview_datehelper_time_in_words_day: 1 diena
9 actionview_datehelper_time_in_words_day_plural: %d dienos
9 actionview_datehelper_time_in_words_day_plural: %d dienos
10 actionview_datehelper_time_in_words_hour_about: apytiksliai valanda
10 actionview_datehelper_time_in_words_hour_about: apytiksliai valanda
11 actionview_datehelper_time_in_words_hour_about_plural: apie %d valandas
11 actionview_datehelper_time_in_words_hour_about_plural: apie %d valandas
12 actionview_datehelper_time_in_words_hour_about_single: apytiksliai valanda
12 actionview_datehelper_time_in_words_hour_about_single: apytiksliai valanda
13 actionview_datehelper_time_in_words_minute: 1 minutė
13 actionview_datehelper_time_in_words_minute: 1 minutė
14 actionview_datehelper_time_in_words_minute_half: pusė minutės
14 actionview_datehelper_time_in_words_minute_half: pusė minutės
15 actionview_datehelper_time_in_words_minute_less_than: mažiau kaip minutė
15 actionview_datehelper_time_in_words_minute_less_than: mažiau kaip minutė
16 actionview_datehelper_time_in_words_minute_plural: %d minutės
16 actionview_datehelper_time_in_words_minute_plural: %d minutės
17 actionview_datehelper_time_in_words_minute_single: 1 minutė
17 actionview_datehelper_time_in_words_minute_single: 1 minutė
18 actionview_datehelper_time_in_words_second_less_than: mažiau kaip sekundė
18 actionview_datehelper_time_in_words_second_less_than: mažiau kaip sekundė
19 actionview_datehelper_time_in_words_second_less_than_plural: mažiau, negu %d sekundės
19 actionview_datehelper_time_in_words_second_less_than_plural: mažiau, negu %d sekundės
20 actionview_instancetag_blank_option: prašom išrinkti
20 actionview_instancetag_blank_option: prašom išrinkti
21
21
22 activerecord_error_inclusion: nėra įtrauktas į sąrašą
22 activerecord_error_inclusion: nėra įtrauktas į sąrašą
23 activerecord_error_exclusion: yra rezervuota(as)
23 activerecord_error_exclusion: yra rezervuota(as)
24 activerecord_error_invalid: yra negaliojanti(is)
24 activerecord_error_invalid: yra negaliojanti(is)
25 activerecord_error_confirmation: neatitinka patvirtinimo
25 activerecord_error_confirmation: neatitinka patvirtinimo
26 activerecord_error_accepted: turi būti priimtas
26 activerecord_error_accepted: turi būti priimtas
27 activerecord_error_empty: negali būti tuščiu
27 activerecord_error_empty: negali būti tuščiu
28 activerecord_error_blank: negali būti tuščiu
28 activerecord_error_blank: negali būti tuščiu
29 activerecord_error_too_long: yra per ilgas
29 activerecord_error_too_long: yra per ilgas
30 activerecord_error_too_short: yra per trumpas
30 activerecord_error_too_short: yra per trumpas
31 activerecord_error_wrong_length: neteisingas ilgis
31 activerecord_error_wrong_length: neteisingas ilgis
32 activerecord_error_taken: buvo jau paimtas
32 activerecord_error_taken: buvo jau paimtas
33 activerecord_error_not_a_number: nėra skaičius
33 activerecord_error_not_a_number: nėra skaičius
34 activerecord_error_not_a_date: data nėra galiojanti
34 activerecord_error_not_a_date: data nėra galiojanti
35 activerecord_error_greater_than_start_date: turi būti didesnė negu pradžios data
35 activerecord_error_greater_than_start_date: turi būti didesnė negu pradžios data
36 activerecord_error_not_same_project: nepriklauso tam pačiam projektui
36 activerecord_error_not_same_project: nepriklauso tam pačiam projektui
37 activerecord_error_circular_dependency: Šis ryšys sukurtų ciklinę priklausomybę
37 activerecord_error_circular_dependency: Šis ryšys sukurtų ciklinę priklausomybę
38
38
39 general_fmt_age: %d m.
39 general_fmt_age: %d m.
40 general_fmt_age_plural: %d metų(ai)
40 general_fmt_age_plural: %d metų(ai)
41 general_fmt_date: %%Y-%%m-%%d
41 general_fmt_date: %%Y-%%m-%%d
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Ne'
45 general_text_No: 'Ne'
46 general_text_Yes: 'Taip'
46 general_text_Yes: 'Taip'
47 general_text_no: 'ne'
47 general_text_no: 'ne'
48 general_text_yes: 'taip'
48 general_text_yes: 'taip'
49 general_lang_name: 'Lithuanian (lietuvių)'
49 general_lang_name: 'Lithuanian (lietuvių)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: UTF-8
51 general_csv_encoding: UTF-8
52 general_pdf_encoding: UTF-8
52 general_pdf_encoding: UTF-8
53 general_day_names: pirmadienis,antradienis,trečiadienis,ketvirtadienis,penktadienis,šeštadienis,sekmadienis
53 general_day_names: pirmadienis,antradienis,trečiadienis,ketvirtadienis,penktadienis,šeštadienis,sekmadienis
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Paskyra buvo sėkmingai atnaujinta.
56 notice_account_updated: Paskyra buvo sėkmingai atnaujinta.
57 notice_account_invalid_creditentials: Negaliojantis vartotojo vardas ar slaptažodis
57 notice_account_invalid_creditentials: Negaliojantis vartotojo vardas ar slaptažodis
58 notice_account_password_updated: Slaptažodis buvo sėkmingai atnaujintas.
58 notice_account_password_updated: Slaptažodis buvo sėkmingai atnaujintas.
59 notice_account_wrong_password: Neteisingas slaptažodis
59 notice_account_wrong_password: Neteisingas slaptažodis
60 notice_account_register_done: Paskyra buvo sėkmingai sukurta. Kad aktyvintumėte savo paskyrą, paspauskite sąsają, kuri jums buvo siųsta elektroniniu paštu.
60 notice_account_register_done: Paskyra buvo sėkmingai sukurta. Kad aktyvintumėte savo paskyrą, paspauskite sąsają, kuri jums buvo siųsta elektroniniu paštu.
61 notice_account_unknown_email: Nežinomas vartotojas.
61 notice_account_unknown_email: Nežinomas vartotojas.
62 notice_can_t_change_password: Šis pranešimas naudoja išorinį autentiškumo nustatymo šaltinį. Neįmanoma pakeisti slaptažodį.
62 notice_can_t_change_password: Šis pranešimas naudoja išorinį autentiškumo nustatymo šaltinį. Neįmanoma pakeisti slaptažodį.
63 notice_account_lost_email_sent: Į Jūsų pašą išsiūstas laiškas su naujo slaptažodžio pasirinkimo instrukcija.
63 notice_account_lost_email_sent: Į Jūsų pašą išsiūstas laiškas su naujo slaptažodžio pasirinkimo instrukcija.
64 notice_account_activated: Jūsų paskyra aktyvuota. Galite prisijungti.
64 notice_account_activated: Jūsų paskyra aktyvuota. Galite prisijungti.
65 notice_successful_create: Sėkmingas sukūrimas.
65 notice_successful_create: Sėkmingas sukūrimas.
66 notice_successful_update: Sėkmingas atnaujinimas.
66 notice_successful_update: Sėkmingas atnaujinimas.
67 notice_successful_delete: Sėkmingas panaikinimas.
67 notice_successful_delete: Sėkmingas panaikinimas.
68 notice_successful_connection: Sėkmingas susijungimas.
68 notice_successful_connection: Sėkmingas susijungimas.
69 notice_file_not_found: Puslapis, į kurį ketinate įeiti, neegzistuoja arba pašalintas.
69 notice_file_not_found: Puslapis, į kurį ketinate įeiti, neegzistuoja arba pašalintas.
70 notice_locking_conflict: Duomenys atnaujinti kito vartotojo.
70 notice_locking_conflict: Duomenys atnaujinti kito vartotojo.
71 notice_scm_error: Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja.
71 notice_scm_error: Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja.
72 notice_not_authorized: Jūs neturite teisių gauti prieigą prie šio puslapio.
72 notice_not_authorized: Jūs neturite teisių gauti prieigą prie šio puslapio.
73 notice_email_sent: Laiškas išsiųstas %s
73 notice_email_sent: Laiškas išsiųstas %s
74 notice_email_error: Laiško siųntimo metu įvyko klaida (%s)
74 notice_email_error: Laiško siųntimo metu įvyko klaida (%s)
75 notice_feeds_access_key_reseted: Jūsų RSS raktas buvo atnaujintas.
75 notice_feeds_access_key_reseted: Jūsų RSS raktas buvo atnaujintas.
76 notice_failed_to_save_issues: "Nepavyko išsaugoti %d problemos(ų) %d pasirinkto: %s."
76 notice_failed_to_save_issues: "Nepavyko išsaugoti %d problemos(ų) %d pasirinkto: %s."
77 notice_no_issue_selected: "Nepasirinkta viena problema! Prašom pažymėti problemą, kurią norite redaguoti."
77 notice_no_issue_selected: "Nepasirinkta viena problema! Prašom pažymėti problemą, kurią norite redaguoti."
78 notice_account_pending: "Jūsų paskyra buvo sukūrta ir dabar laukiama administratoriaus patvirtinimo."
78 notice_account_pending: "Jūsų paskyra buvo sukūrta ir dabar laukiama administratoriaus patvirtinimo."
79
79
80 mail_subject_lost_password: Jūsų Redmine slaptažodis
80 mail_subject_lost_password: Jūsų Redmine slaptažodis
81 mail_body_lost_password: 'Norėdami pakeisti Redmine slaptažodį, spauskite nuorodą:'
81 mail_body_lost_password: 'Norėdami pakeisti Redmine slaptažodį, spauskite nuorodą:'
82 mail_subject_register: 'Redmine paskyros aktyvavymas'
82 mail_subject_register: 'Redmine paskyros aktyvavymas'
83 mail_body_register: 'Norėdami aktyvuoti Redmine paskyrą, spauskite nuorodą:'
83 mail_body_register: 'Norėdami aktyvuoti Redmine paskyrą, spauskite nuorodą:'
84 mail_body_account_information_external: Jūs galite naudoti Jūsų "%s" paskyrą, norėdami prisijungti prie Redmine.
84 mail_body_account_information_external: Jūs galite naudoti Jūsų "%s" paskyrą, norėdami prisijungti prie Redmine.
85 mail_body_account_information: Informacija apie Jūsų Redmine paskyrą
85 mail_body_account_information: Informacija apie Jūsų Redmine paskyrą
86 mail_subject_account_activation_request: Redmine paskyros aktyvavimo prašymas
86 mail_subject_account_activation_request: Redmine paskyros aktyvavimo prašymas
87 mail_body_account_activation_request: 'Užsiregistravo naujas vartotojas (%s). Jo paskyra laukia jūsų patvirtinimo:'
87 mail_body_account_activation_request: 'Užsiregistravo naujas vartotojas (%s). Jo paskyra laukia jūsų patvirtinimo:'
88
88
89 gui_validation_error: 1 klaida
89 gui_validation_error: 1 klaida
90 gui_validation_error_plural: %d klaidų(os)
90 gui_validation_error_plural: %d klaidų(os)
91
91
92 field_name: Pavadinimas
92 field_name: Pavadinimas
93 field_description: Aprašas
93 field_description: Aprašas
94 field_summary: Santrauka
94 field_summary: Santrauka
95 field_is_required: Reikalaujama
95 field_is_required: Reikalaujama
96 field_firstname: Vardas
96 field_firstname: Vardas
97 field_lastname: Pavardė
97 field_lastname: Pavardė
98 field_mail: Email
98 field_mail: Email
99 field_filename: Byla
99 field_filename: Byla
100 field_filesize: Dydis
100 field_filesize: Dydis
101 field_downloads: Atsiuntimai
101 field_downloads: Atsiuntimai
102 field_author: Autorius
102 field_author: Autorius
103 field_created_on: Sukūrta
103 field_created_on: Sukūrta
104 field_updated_on: Atnaujinta
104 field_updated_on: Atnaujinta
105 field_field_format: Formatas
105 field_field_format: Formatas
106 field_is_for_all: Visiems laukasms
106 field_is_for_all: Visiems laukasms
107 field_possible_values: Galimos reikšmės
107 field_possible_values: Galimos reikšmės
108 field_regexp: Pastovi išraiška
108 field_regexp: Pastovi išraiška
109 field_min_length: Minimalus ilgis
109 field_min_length: Minimalus ilgis
110 field_max_length: Maksimalus ilgis
110 field_max_length: Maksimalus ilgis
111 field_value: Vertė
111 field_value: Vertė
112 field_category: Kategorija
112 field_category: Kategorija
113 field_title: Pavadinimas
113 field_title: Pavadinimas
114 field_project: Projektas
114 field_project: Projektas
115 field_issue: Svarstoma problema
115 field_issue: Svarstoma problema
116 field_status: Būsena
116 field_status: Būsena
117 field_notes: Pastabos
117 field_notes: Pastabos
118 field_is_closed: Svarstoma problema uždaryta
118 field_is_closed: Svarstoma problema uždaryta
119 field_is_default: Numatytoji vertė
119 field_is_default: Numatytoji vertė
120 field_tracker: Pėdsekys
120 field_tracker: Pėdsekys
121 field_subject: Dalykas
121 field_subject: Dalykas
122 field_due_date: Mokėjimo terminas
122 field_due_date: Mokėjimo terminas
123 field_assigned_to: Paskirtas
123 field_assigned_to: Paskirtas
124 field_priority: Prioritetas
124 field_priority: Prioritetas
125 field_fixed_version: Pastovi versija
125 field_fixed_version: Pastovi versija
126 field_user: Vartotojas
126 field_user: Vartotojas
127 field_role: Vaidmuo
127 field_role: Vaidmuo
128 field_homepage: Pagrindinis puslapis
128 field_homepage: Pagrindinis puslapis
129 field_is_public: Viešas
129 field_is_public: Viešas
130 field_parent: Yra subprojektas
130 field_parent: Yra subprojektas
131 field_is_in_chlog: Svarstomos problemos rodomos pokyčių žurnale
131 field_is_in_chlog: Svarstomos problemos rodomos pokyčių žurnale
132 field_is_in_roadmap: Svarstomos problemos rodomos veiklos grafike
132 field_is_in_roadmap: Svarstomos problemos rodomos veiklos grafike
133 field_login: Registracijos vardas
133 field_login: Registracijos vardas
134 field_mail_notification: Elektroninio pašto pranešimai
134 field_mail_notification: Elektroninio pašto pranešimai
135 field_admin: Administratorius
135 field_admin: Administratorius
136 field_last_login_on: Paskutinis ryšys
136 field_last_login_on: Paskutinis ryšys
137 field_language: Kalba
137 field_language: Kalba
138 field_effective_date: Data
138 field_effective_date: Data
139 field_password: Slaptažodis
139 field_password: Slaptažodis
140 field_new_password: Naujas slaptažodis
140 field_new_password: Naujas slaptažodis
141 field_password_confirmation: Patvirtinimas
141 field_password_confirmation: Patvirtinimas
142 field_version: Versija
142 field_version: Versija
143 field_type: Tipas
143 field_type: Tipas
144 field_host: Pagrindinis kompiuteris
144 field_host: Pagrindinis kompiuteris
145 field_port: Jungtis
145 field_port: Jungtis
146 field_account: Paskyra
146 field_account: Paskyra
147 field_base_dn: Bazinis skiriamasis vardas
147 field_base_dn: Bazinis skiriamasis vardas
148 field_attr_login: Registracijos vardo požymis
148 field_attr_login: Registracijos vardo požymis
149 field_attr_firstname: Vardo priskiria
149 field_attr_firstname: Vardo priskiria
150 field_attr_lastname: Pavardės priskiria
150 field_attr_lastname: Pavardės priskiria
151 field_attr_mail: Elektroninio pašto požymis
151 field_attr_mail: Elektroninio pašto požymis
152 field_onthefly: Vartotojų sukūrimas paskubomis
152 field_onthefly: Vartotojų sukūrimas paskubomis
153 field_start_date: Pradėti
153 field_start_date: Pradėti
154 field_done_ratio: %% Atlikta
154 field_done_ratio: %% Atlikta
155 field_auth_source: Autentiškumo nustatymo būdas
155 field_auth_source: Autentiškumo nustatymo būdas
156 field_hide_mail: Paslėpkite mano elektroninio pašto adresą
156 field_hide_mail: Paslėpkite mano elektroninio pašto adresą
157 field_comments: Komentaras
157 field_comments: Komentaras
158 field_url: URL
158 field_url: URL
159 field_start_page: Pradžios puslapis
159 field_start_page: Pradžios puslapis
160 field_subproject: Subprojektas
160 field_subproject: Subprojektas
161 field_hours: Valandos
161 field_hours: Valandos
162 field_activity: Veikla
162 field_activity: Veikla
163 field_spent_on: Data
163 field_spent_on: Data
164 field_identifier: Identifikuotojas
164 field_identifier: Identifikuotojas
165 field_is_filter: Panaudotas kaip filtras
165 field_is_filter: Panaudotas kaip filtras
166 field_issue_to_id: Susijusi svarstoma problema
166 field_issue_to_id: Susijusi svarstoma problema
167 field_delay: Užlaikymas
167 field_delay: Užlaikymas
168 field_assignable: Svarstomos problemos gali būti paskirtos šiam vaidmeniui
168 field_assignable: Svarstomos problemos gali būti paskirtos šiam vaidmeniui
169 field_redirect_existing_links: Peradresuokite egzistuojančias sąsajas
169 field_redirect_existing_links: Peradresuokite egzistuojančias sąsajas
170 field_estimated_hours: Apskaičiuotas laikas
170 field_estimated_hours: Apskaičiuotas laikas
171 field_column_names: Skiltys
171 field_column_names: Skiltys
172 field_time_zone: Laiko juosta
172 field_time_zone: Laiko juosta
173 field_searchable: Randamas
173 field_searchable: Randamas
174
174 field_default_value: Numatytoji vertė
175
175 setting_app_title: Programos pavadinimas
176 setting_app_title: Programos pavadinimas
176 setting_app_subtitle: Programos paantraštė
177 setting_app_subtitle: Programos paantraštė
177 setting_welcome_text: Pasveikinimas
178 setting_welcome_text: Pasveikinimas
178 setting_default_language: Numatytoji kalba
179 setting_default_language: Numatytoji kalba
179 setting_login_required: Reikalingas autentiškumo nustatymas
180 setting_login_required: Reikalingas autentiškumo nustatymas
180 setting_self_registration: Saviregistracija
181 setting_self_registration: Saviregistracija
181 setting_attachment_max_size: Priedo maks. dydis
182 setting_attachment_max_size: Priedo maks. dydis
182 setting_issues_export_limit pagal dydį: Svarstomų problemų eksportavimo riba
183 setting_issues_export_limit pagal dydį: Svarstomų problemų eksportavimo riba
183 setting_mail_from: Emisijos elektroninio pašto adresas
184 setting_mail_from: Emisijos elektroninio pašto adresas
184 setting_bcc_recipients: Akli tikslios kopijos gavėjai (bcc)
185 setting_bcc_recipients: Akli tikslios kopijos gavėjai (bcc)
185 setting_host_name: Pagrindinio kompiuterio vardas
186 setting_host_name: Pagrindinio kompiuterio vardas
186 setting_text_formatting: Teksto apipavidalinimas
187 setting_text_formatting: Teksto apipavidalinimas
187 setting_wiki_compression: Wiki istorijos suspaudimas
188 setting_wiki_compression: Wiki istorijos suspaudimas
188 setting_feeds_limit: Perdavimo turinio riba
189 setting_feeds_limit: Perdavimo turinio riba
189 setting_autofetch_changesets: Automatinis pakeitimų siuntimas
190 setting_autofetch_changesets: Automatinis pakeitimų siuntimas
190 setting_sys_api_enabled: Įgalinkite WS sandėlio vadybai
191 setting_sys_api_enabled: Įgalinkite WS sandėlio vadybai
191 setting_commit_ref_keywords: Nurodymo reikšminiai žodžiai
192 setting_commit_ref_keywords: Nurodymo reikšminiai žodžiai
192 setting_commit_fix_keywords: Fiksavimo reikšminiai žodžiai
193 setting_commit_fix_keywords: Fiksavimo reikšminiai žodžiai
193 setting_autologin: Autoregistracija
194 setting_autologin: Autoregistracija
194 setting_date_format: Datos formatas
195 setting_date_format: Datos formatas
195 setting_time_format: Laiko formatas
196 setting_time_format: Laiko formatas
196 setting_cross_project_issue_relations: Leisti tarprojektinius svarstomos problemos ryšius
197 setting_cross_project_issue_relations: Leisti tarprojektinius svarstomos problemos ryšius
197 setting_issue_list_default_columns: Numatytosios skiltys svarstomos problemos sąraše
198 setting_issue_list_default_columns: Numatytosios skiltys svarstomos problemos sąraše
198 setting_repositories_encodings: Saugyklos encodingas
199 setting_repositories_encodings: Saugyklos encodingas
199 setting_emails_footer: elektroninio pašto puslapinė poraštė
200 setting_emails_footer: elektroninio pašto puslapinė poraštė
200 setting_protocol: Protokolas
201 setting_protocol: Protokolas
201
202
202 label_user: Vartotojas
203 label_user: Vartotojas
203 label_user_plural: Vartotojai
204 label_user_plural: Vartotojai
204 label_user_new: Naujas vartotojas
205 label_user_new: Naujas vartotojas
205 label_project: Projektas
206 label_project: Projektas
206 label_project_new: Naujas projektas
207 label_project_new: Naujas projektas
207 label_project_plural: Projektai
208 label_project_plural: Projektai
208 label_project_all: Visi Projektai
209 label_project_all: Visi Projektai
209 label_project_latest: Paskutiniai projektai
210 label_project_latest: Paskutiniai projektai
210 label_issue: Svarstoma problema
211 label_issue: Svarstoma problema
211 label_issue_new: Nauja svarstoma problema
212 label_issue_new: Nauja svarstoma problema
212 label_issue_plural: Svarstomos problemos
213 label_issue_plural: Svarstomos problemos
213 label_issue_view_all: Peržiūrėti visas svarstomas problemas
214 label_issue_view_all: Peržiūrėti visas svarstomas problemas
214 label_issues_by: Svarstomos problemos pagal %s
215 label_issues_by: Svarstomos problemos pagal %s
215 label_document: Dokumentas
216 label_document: Dokumentas
216 label_document_new: Naujas dokumentas
217 label_document_new: Naujas dokumentas
217 label_document_plural: Dokumentai
218 label_document_plural: Dokumentai
218 label_role: Vaidmuo
219 label_role: Vaidmuo
219 label_role_plural: Vaidmenys
220 label_role_plural: Vaidmenys
220 label_role_new: Naujas vaidmuo
221 label_role_new: Naujas vaidmuo
221 label_role_and_permissions: Vaidmenys ir leidimai
222 label_role_and_permissions: Vaidmenys ir leidimai
222 label_member: Narys
223 label_member: Narys
223 label_member_new: Naujas narys
224 label_member_new: Naujas narys
224 label_member_plural: Nariai
225 label_member_plural: Nariai
225 label_tracker: Pėdsekys
226 label_tracker: Pėdsekys
226 label_tracker_plural: Pėdsekiai
227 label_tracker_plural: Pėdsekiai
227 label_tracker_new: Naujas pėdsekys
228 label_tracker_new: Naujas pėdsekys
228 label_workflow: Darbų eiga
229 label_workflow: Darbų eiga
229 label_issue_status: Svarstomos problemos padėtis
230 label_issue_status: Svarstomos problemos padėtis
230 label_issue_status_plural: Svarstomos problemos padėtys
231 label_issue_status_plural: Svarstomos problemos padėtys
231 label_issue_status_new: Nauja padėtis
232 label_issue_status_new: Nauja padėtis
232 label_issue_category: Svarstomos problemos kategorija
233 label_issue_category: Svarstomos problemos kategorija
233 label_issue_category_plural: Svarstomos problemos kategorijos
234 label_issue_category_plural: Svarstomos problemos kategorijos
234 label_issue_category_new: Nauja kategorija
235 label_issue_category_new: Nauja kategorija
235 label_custom_field: Kliento laukas
236 label_custom_field: Kliento laukas
236 label_custom_field_plural: Kliento laukai
237 label_custom_field_plural: Kliento laukai
237 label_custom_field_new: Naujas kliento laukas
238 label_custom_field_new: Naujas kliento laukas
238 label_enumerations: Išvardinimai
239 label_enumerations: Išvardinimai
239 label_enumeration_new: Nauja vertė
240 label_enumeration_new: Nauja vertė
240 label_information: Informacija
241 label_information: Informacija
241 label_information_plural: Informacija
242 label_information_plural: Informacija
242 label_please_login: Prašom prisijungti
243 label_please_login: Prašom prisijungti
243 label_register: Užsiregistruoti
244 label_register: Užsiregistruoti
244 label_password_lost: Prarastas slaptažodis
245 label_password_lost: Prarastas slaptažodis
245 label_home: Pagrindinis
246 label_home: Pagrindinis
246 label_my_page: Mano puslapis
247 label_my_page: Mano puslapis
247 label_my_account: Mano pranešimas
248 label_my_account: Mano pranešimas
248 label_my_projects: Mano projektai
249 label_my_projects: Mano projektai
249 label_administration: Administracija
250 label_administration: Administracija
250 label_login: Prisijungti
251 label_login: Prisijungti
251 label_logout: Atsijungti
252 label_logout: Atsijungti
252 label_help: Pagalba
253 label_help: Pagalba
253 label_reported_issues: Praneštos svarstomos problemos
254 label_reported_issues: Praneštos svarstomos problemos
254 label_assigned_to_me_issues: Svarstomos problemos, paskirtos man
255 label_assigned_to_me_issues: Svarstomos problemos, paskirtos man
255 label_last_login: Paskutinis ryšys
256 label_last_login: Paskutinis ryšys
256 label_last_updates: Paskutinis atnaujinimas
257 label_last_updates: Paskutinis atnaujinimas
257 label_last_updates_plural: %d paskutinis atnaujinimas
258 label_last_updates_plural: %d paskutinis atnaujinimas
258 label_registered_on: Užregistruota
259 label_registered_on: Užregistruota
259 label_activity: Veikla
260 label_activity: Veikla
260 label_new: Naujas
261 label_new: Naujas
261 label_logged_as: Prisijungęs kaip
262 label_logged_as: Prisijungęs kaip
262 label_environment: Aplinka
263 label_environment: Aplinka
263 label_authentication: Autentiškumo nustatymas
264 label_authentication: Autentiškumo nustatymas
264 label_auth_source: Autentiškumo nustatymo būdas
265 label_auth_source: Autentiškumo nustatymo būdas
265 label_auth_source_new: Naujas autentiškumo nustatymo būdas
266 label_auth_source_new: Naujas autentiškumo nustatymo būdas
266 label_auth_source_plural: Autentiškumo nustatymo būdai
267 label_auth_source_plural: Autentiškumo nustatymo būdai
267 label_subproject_plural: Subprojektai
268 label_subproject_plural: Subprojektai
268 label_min_max_length: Min - Maks ilgis
269 label_min_max_length: Min - Maks ilgis
269 label_list: Sąrašas
270 label_list: Sąrašas
270 label_date: Data
271 label_date: Data
271 label_integer: Sveikasis skaičius
272 label_integer: Sveikasis skaičius
272 label_float: Float
273 label_float: Float
273 label_boolean: Boolean
274 label_boolean: Boolean
274 label_string: Tekstas
275 label_string: Tekstas
275 label_text: Ilgas tekstas
276 label_text: Ilgas tekstas
276 label_attribute: Požymis
277 label_attribute: Požymis
277 label_attribute_plural: Požymiai
278 label_attribute_plural: Požymiai
278 label_download: %d Persiuntimas
279 label_download: %d Persiuntimas
279 label_download_plural: %d Persiuntimai
280 label_download_plural: %d Persiuntimai
280 label_no_data: Nėra ką atvaizduoti
281 label_no_data: Nėra ką atvaizduoti
281 label_change_status: Pakeitimo padėtis
282 label_change_status: Pakeitimo padėtis
282 label_history: Istorija
283 label_history: Istorija
283 label_attachment: Rinkmena
284 label_attachment: Rinkmena
284 label_attachment_new: Nauja rinkmena
285 label_attachment_new: Nauja rinkmena
285 label_attachment_delete: Pašalinkite rinkmeną
286 label_attachment_delete: Pašalinkite rinkmeną
286 label_attachment_plural: Rinkmenos
287 label_attachment_plural: Rinkmenos
287 label_report: Ataskaita
288 label_report: Ataskaita
288 label_report_plural: Ataskaitos
289 label_report_plural: Ataskaitos
289 label_news: Žinia
290 label_news: Žinia
290 label_news_new: Pridėkite žinią
291 label_news_new: Pridėkite žinią
291 label_news_plural: Žinios
292 label_news_plural: Žinios
292 label_news_latest: Paskutinės naujienos
293 label_news_latest: Paskutinės naujienos
293 label_news_view_all: Peržiūrėti visas žinias
294 label_news_view_all: Peržiūrėti visas žinias
294 label_change_log: Pakeitimų žurnalas
295 label_change_log: Pakeitimų žurnalas
295 label_settings: Nustatymai
296 label_settings: Nustatymai
296 label_overview: Apžvalga
297 label_overview: Apžvalga
297 label_version: Versija
298 label_version: Versija
298 label_version_new: Nauja versija
299 label_version_new: Nauja versija
299 label_version_plural: Versijos
300 label_version_plural: Versijos
300 label_confirmation: Patvirtinimas
301 label_confirmation: Patvirtinimas
301 label_export_to: Eksportuoti į
302 label_export_to: Eksportuoti į
302 label_read: Skaitykite...
303 label_read: Skaitykite...
303 label_public_projects: Vieši projektai
304 label_public_projects: Vieši projektai
304 label_open_issues: atidarytas
305 label_open_issues: atidarytas
305 label_open_issues_plural: atidaryti
306 label_open_issues_plural: atidaryti
306 label_closed_issues: uždarytas
307 label_closed_issues: uždarytas
307 label_closed_issues_plural: uždaryti
308 label_closed_issues_plural: uždaryti
308 label_total: Bendra suma
309 label_total: Bendra suma
309 label_permissions: Leidimai
310 label_permissions: Leidimai
310 label_current_status: Einamoji padėtis
311 label_current_status: Einamoji padėtis
311 label_new_statuses_allowed: Naujos padėtys galimos
312 label_new_statuses_allowed: Naujos padėtys galimos
312 label_all: visi
313 label_all: visi
313 label_none: niekas
314 label_none: niekas
314 label_nobody: niekas
315 label_nobody: niekas
315 label_next: Kitas
316 label_next: Kitas
316 label_previous: Ankstesnis
317 label_previous: Ankstesnis
317 label_used_by: Naudotas
318 label_used_by: Naudotas
318 label_details: Detalės
319 label_details: Detalės
319 label_add_note: Pridėkite pastabą
320 label_add_note: Pridėkite pastabą
320 label_per_page: Per puslapį
321 label_per_page: Per puslapį
321 label_calendar: Kalendorius
322 label_calendar: Kalendorius
322 label_months_from: mėnesiai nuo
323 label_months_from: mėnesiai nuo
323 label_gantt: Gantt
324 label_gantt: Gantt
324 label_internal: Vidinis
325 label_internal: Vidinis
325 label_last_changes: paskutiniai %d, pokyčiai
326 label_last_changes: paskutiniai %d, pokyčiai
326 label_change_view_all: Peržiūrėti visus pakeitimus
327 label_change_view_all: Peržiūrėti visus pakeitimus
327 label_personalize_page: Suasmeninti šį puslapį
328 label_personalize_page: Suasmeninti šį puslapį
328 label_comment: Komentaras
329 label_comment: Komentaras
329 label_comment_plural: Komentarai
330 label_comment_plural: Komentarai
330 label_comment_add: Pridėkite komentarą
331 label_comment_add: Pridėkite komentarą
331 label_comment_added: Komentaras pridėtas
332 label_comment_added: Komentaras pridėtas
332 label_comment_delete: Pašalinkite komentarus
333 label_comment_delete: Pašalinkite komentarus
333 label_query: Užklausa
334 label_query: Užklausa
334 label_query_plural: Užklausos
335 label_query_plural: Užklausos
335 label_query_new: Nauja užklausa
336 label_query_new: Nauja užklausa
336 label_filter_add: Pridėti filtrą
337 label_filter_add: Pridėti filtrą
337 label_filter_plural: Filtrai
338 label_filter_plural: Filtrai
338 label_equals: yra
339 label_equals: yra
339 label_not_equals: nėra
340 label_not_equals: nėra
340 label_in_less_than: mažiau negu
341 label_in_less_than: mažiau negu
341 label_in_more_than: daugiau negu
342 label_in_more_than: daugiau negu
342 label_in: in
343 label_in: in
343 label_today: šiandien
344 label_today: šiandien
344 label_this_week: šią savaitę
345 label_this_week: šią savaitę
345 label_less_than_ago: mažiau negu dienomis prieš
346 label_less_than_ago: mažiau negu dienomis prieš
346 label_more_than_ago: daugiau negu dienomis prieš
347 label_more_than_ago: daugiau negu dienomis prieš
347 label_ago: dienomis prieš
348 label_ago: dienomis prieš
348 label_contains: turi savyje
349 label_contains: turi savyje
349 label_not_contains: neturi savyje
350 label_not_contains: neturi savyje
350 label_day_plural: dienos
351 label_day_plural: dienos
351 label_repository: Saugykla
352 label_repository: Saugykla
352 label_browse: Naršyti
353 label_browse: Naršyti
353 label_modification: %d pakeitimas
354 label_modification: %d pakeitimas
354 label_modification_plural: %d pakeitimai
355 label_modification_plural: %d pakeitimai
355 label_revision: Revizija
356 label_revision: Revizija
356 label_revision_plural: Revizijos
357 label_revision_plural: Revizijos
357 label_added: pridėtas
358 label_added: pridėtas
358 label_modified: pakeistas
359 label_modified: pakeistas
359 label_deleted: pašalintas
360 label_deleted: pašalintas
360 label_latest_revision: Paskutinė revizija
361 label_latest_revision: Paskutinė revizija
361 label_latest_revision_plural: Paskutinės revizijos
362 label_latest_revision_plural: Paskutinės revizijos
362 label_view_revisions: Pežiūrėti revizijas
363 label_view_revisions: Pežiūrėti revizijas
363 label_max_size: Maksimalus dydis
364 label_max_size: Maksimalus dydis
364 label_on: 'ant'
365 label_on: 'ant'
365 label_sort_highest: Perkelti į viršūnę
366 label_sort_highest: Perkelti į viršūnę
366 label_sort_higher: Perkelti į viršų
367 label_sort_higher: Perkelti į viršų
367 label_sort_lower: Perkelti žemyn
368 label_sort_lower: Perkelti žemyn
368 label_sort_lowest: Perkelti į apačią
369 label_sort_lowest: Perkelti į apačią
369 label_roadmap: Veiklos grafikas
370 label_roadmap: Veiklos grafikas
370 label_roadmap_due_in: Baigiama
371 label_roadmap_due_in: Baigiama
371 label_roadmap_overdue: %s vėluojama
372 label_roadmap_overdue: %s vėluojama
372 label_roadmap_no_issues: Jokios svarstomos problemos šiai versijai
373 label_roadmap_no_issues: Jokios svarstomos problemos šiai versijai
373 label_search: Ieškoti
374 label_search: Ieškoti
374 label_result_plural: Rezultatai
375 label_result_plural: Rezultatai
375 label_all_words: Visi žodžiai
376 label_all_words: Visi žodžiai
376 label_wiki: Wiki
377 label_wiki: Wiki
377 label_wiki_edit: Wiki redakcija
378 label_wiki_edit: Wiki redakcija
378 label_wiki_edit_plural: Wiki redakcijos
379 label_wiki_edit_plural: Wiki redakcijos
379 label_wiki_page: Wiki puslapis
380 label_wiki_page: Wiki puslapis
380 label_wiki_page_plural: Wiki puslapiai
381 label_wiki_page_plural: Wiki puslapiai
381 label_index_by_title: Indeksas prie pavadinimo
382 label_index_by_title: Indeksas prie pavadinimo
382 label_index_by_date: Indeksas prie datos
383 label_index_by_date: Indeksas prie datos
383 label_current_version: Einamoji versija
384 label_current_version: Einamoji versija
384 label_preview: Peržiūra
385 label_preview: Peržiūra
385 label_feed_plural: Įeitys(Feeds)
386 label_feed_plural: Įeitys(Feeds)
386 label_changes_details: Visų pakeitimų detalės
387 label_changes_details: Visų pakeitimų detalės
387 label_issue_tracking: Svarstomų problemų sekimas
388 label_issue_tracking: Svarstomų problemų sekimas
388 label_spent_time: Sugaištas laikas
389 label_spent_time: Sugaištas laikas
389 label_f_hour: %.2f valanda
390 label_f_hour: %.2f valanda
390 label_f_hour_plural: %.2f valandų
391 label_f_hour_plural: %.2f valandų
391 label_time_tracking: Laiko sekimas
392 label_time_tracking: Laiko sekimas
392 label_change_plural: Pakeitimai
393 label_change_plural: Pakeitimai
393 label_statistics: Statistika
394 label_statistics: Statistika
394 label_commits_per_month: Paveda(commit) per mėnesį
395 label_commits_per_month: Paveda(commit) per mėnesį
395 label_commits_per_author: Autoriaus pavedos(commit)
396 label_commits_per_author: Autoriaus pavedos(commit)
396 label_view_diff: Skirtumų peržiūra
397 label_view_diff: Skirtumų peržiūra
397 label_diff_inline: įterptas
398 label_diff_inline: įterptas
398 label_diff_side_by_side: šalia
399 label_diff_side_by_side: šalia
399 label_options: Pasirinkimai
400 label_options: Pasirinkimai
400 label_copy_workflow_from: Kopijuoti darbų eiga iš
401 label_copy_workflow_from: Kopijuoti darbų eiga iš
401 label_permissions_report: Leidimų pranešimas
402 label_permissions_report: Leidimų pranešimas
402 label_watched_issues: Stebėtos svarstomos problemos
403 label_watched_issues: Stebėtos svarstomos problemos
403 label_related_issues: Susijusios svarstomos problemos
404 label_related_issues: Susijusios svarstomos problemos
404 label_applied_status: Taikomoji padėtis
405 label_applied_status: Taikomoji padėtis
405 label_loading: Kraunama...
406 label_loading: Kraunama...
406 label_relation_new: Naujas ryšys
407 label_relation_new: Naujas ryšys
407 label_relation_delete: Pašalinkite ryšį
408 label_relation_delete: Pašalinkite ryšį
408 label_relates_to: susietas su
409 label_relates_to: susietas su
409 label_duplicates: dublikatai
410 label_duplicates: dublikatai
410 label_blocks: blokai
411 label_blocks: blokai
411 label_blocked_by: blokuotas
412 label_blocked_by: blokuotas
412 label_precedes: įvyksta pirma
413 label_precedes: įvyksta pirma
413 label_follows: seka
414 label_follows: seka
414 label_end_to_start: užbaigti, kad pradėti
415 label_end_to_start: užbaigti, kad pradėti
415 label_end_to_end: užbaigti, kad pabaigti
416 label_end_to_end: užbaigti, kad pabaigti
416 label_start_to_start: pradėkite pradėti
417 label_start_to_start: pradėkite pradėti
417 label_start_to_end: pradėkite užbaigti
418 label_start_to_end: pradėkite užbaigti
418 label_stay_logged_in: Likti prisijungus
419 label_stay_logged_in: Likti prisijungus
419 label_disabled: išjungta(as)
420 label_disabled: išjungta(as)
420 label_show_completed_versions: Parodyti užbaigtas versijas
421 label_show_completed_versions: Parodyti užbaigtas versijas
421 label_me:
422 label_me:
422 label_board: Forumas
423 label_board: Forumas
423 label_board_new: Naujas forumas
424 label_board_new: Naujas forumas
424 label_board_plural: Forumai
425 label_board_plural: Forumai
425 label_topic_plural: Temos
426 label_topic_plural: Temos
426 label_message_plural: Pranešimai
427 label_message_plural: Pranešimai
427 label_message_last: Paskutinis pranešimas
428 label_message_last: Paskutinis pranešimas
428 label_message_new: Naujas pranešimas
429 label_message_new: Naujas pranešimas
429 label_reply_plural: Atsakymai
430 label_reply_plural: Atsakymai
430 label_send_information: Nusiųsti paskyros informaciją vartotojui
431 label_send_information: Nusiųsti paskyros informaciją vartotojui
431 label_year: Metai
432 label_year: Metai
432 label_month: Mėnuo
433 label_month: Mėnuo
433 label_week: Savaitė
434 label_week: Savaitė
434 label_date_from: Nuo
435 label_date_from: Nuo
435 label_date_to: Iki
436 label_date_to: Iki
436 label_language_based: Pagrįsta vartotojo kalba
437 label_language_based: Pagrįsta vartotojo kalba
437 label_sort_by: Rūšiuoti pagal %s
438 label_sort_by: Rūšiuoti pagal %s
438 label_send_test_email: Nusiųsti bandomąjį elektroninį laišką
439 label_send_test_email: Nusiųsti bandomąjį elektroninį laišką
439 label_feeds_access_key_created_on: RSS prieigos raktas sukūrtas prieš %s
440 label_feeds_access_key_created_on: RSS prieigos raktas sukūrtas prieš %s
440 label_module_plural: Moduliai
441 label_module_plural: Moduliai
441 label_added_time_by: Pridėjo %s prieš %s
442 label_added_time_by: Pridėjo %s prieš %s
442 label_updated_time: Atnaujinta prieš %s
443 label_updated_time: Atnaujinta prieš %s
443 label_jump_to_a_project: Šuolis į projektą...
444 label_jump_to_a_project: Šuolis į projektą...
444 label_file_plural: Bylos
445 label_file_plural: Bylos
445 label_changeset_plural: Changesets
446 label_changeset_plural: Changesets
446 label_default_columns: Numatytosios skiltys
447 label_default_columns: Numatytosios skiltys
447 label_no_change_option: (Jokio pakeitimo)
448 label_no_change_option: (Jokio pakeitimo)
448 label_bulk_edit_selected_issues: Masinis pasirinktų svarstomųjų problemų(issues) redagavimas
449 label_bulk_edit_selected_issues: Masinis pasirinktų svarstomųjų problemų(issues) redagavimas
449 label_theme: Tema
450 label_theme: Tema
450 label_default: Numatyta(as)
451 label_default: Numatyta(as)
451 label_search_titles_only: Ieškoti pavadinimų tiktai
452 label_search_titles_only: Ieškoti pavadinimų tiktai
452 label_user_mail_option_all: "Bet kokiam įvykiui visuose mano projektuose"
453 label_user_mail_option_all: "Bet kokiam įvykiui visuose mano projektuose"
453 label_user_mail_option_selected: "Bet kokiam įvykiui tiktai pasirinktuose projektuose ..."
454 label_user_mail_option_selected: "Bet kokiam įvykiui tiktai pasirinktuose projektuose ..."
454 label_user_mail_option_none: "Tiktai dalykai kuriuos stebiu ar esu įtrauktas į"
455 label_user_mail_option_none: "Tiktai dalykai kuriuos stebiu ar esu įtrauktas į"
455 label_user_mail_no_self_notified: "Nenoriu būti informuotas apie pakeitimus, kuriuos pats atlieku"
456 label_user_mail_no_self_notified: "Nenoriu būti informuotas apie pakeitimus, kuriuos pats atlieku"
456 label_registration_activation_by_email: "paskyros aktyvacija per e-paštą"
457 label_registration_activation_by_email: "paskyros aktyvacija per e-paštą"
457 label_registration_manual_activation: "rankinė paskyros aktyvacija"
458 label_registration_manual_activation: "rankinė paskyros aktyvacija"
458 label_registration_automatic_activation: "automatinė paskyros aktyvacija"
459 label_registration_automatic_activation: "automatinė paskyros aktyvacija"
459
460
460 button_login: Registruotis
461 button_login: Registruotis
461 button_submit: Pateikti
462 button_submit: Pateikti
462 button_save: Išsaugoti
463 button_save: Išsaugoti
463 button_check_all: Žymėti visus
464 button_check_all: Žymėti visus
464 button_uncheck_all: Atžymėti visus
465 button_uncheck_all: Atžymėti visus
465 button_delete: Trinti
466 button_delete: Trinti
466 button_create: Sukurti
467 button_create: Sukurti
467 button_test: Testas
468 button_test: Testas
468 button_edit: Redaguoti
469 button_edit: Redaguoti
469 button_add: Pridėti
470 button_add: Pridėti
470 button_change: Keisti
471 button_change: Keisti
471 button_apply: Pritaikyti
472 button_apply: Pritaikyti
472 button_clear: Išvalyti
473 button_clear: Išvalyti
473 button_lock: Rakinti
474 button_lock: Rakinti
474 button_unlock: Atrakinti
475 button_unlock: Atrakinti
475 button_download: Atsisiųsti
476 button_download: Atsisiųsti
476 button_list: Sąrašas
477 button_list: Sąrašas
477 button_view: Žiūrėti
478 button_view: Žiūrėti
478 button_move: Perkelti
479 button_move: Perkelti
479 button_back: Atgal
480 button_back: Atgal
480 button_cancel: Atšaukti
481 button_cancel: Atšaukti
481 button_activate: Aktyvinti
482 button_activate: Aktyvinti
482 button_sort: Rūšiuoti
483 button_sort: Rūšiuoti
483 button_log_time: Log laikas
484 button_log_time: Log laikas
484 button_rollback: Grįžti į šią versiją
485 button_rollback: Grįžti į šią versiją
485 button_watch: Stebėti
486 button_watch: Stebėti
486 button_unwatch: Nestebėti
487 button_unwatch: Nestebėti
487 button_reply: Atsakyti
488 button_reply: Atsakyti
488 button_archive: Archyvuoti
489 button_archive: Archyvuoti
489 button_unarchive: Išpakuoti
490 button_unarchive: Išpakuoti
490 button_reset: Reset
491 button_reset: Reset
491 button_rename: Pervadinti
492 button_rename: Pervadinti
492 button_change_password: Pakeisti slaptažodį
493 button_change_password: Pakeisti slaptažodį
493 button_copy: Kopijuoti
494 button_copy: Kopijuoti
494 button_annotate: Rašyti pastabą
495 button_annotate: Rašyti pastabą
495
496
496 status_active: aktyvus
497 status_active: aktyvus
497 status_registered: užregistruotas
498 status_registered: užregistruotas
498 status_locked: užrakintas
499 status_locked: užrakintas
499
500
500 text_select_mail_notifications: Išrinkite veiksmus, apie kuriuos būtų pranešta elektroniniu pasštu.
501 text_select_mail_notifications: Išrinkite veiksmus, apie kuriuos būtų pranešta elektroniniu pasštu.
501 text_regexp_info: pvz. ^[A-Z0-9]+$
502 text_regexp_info: pvz. ^[A-Z0-9]+$
502 text_min_max_length_info: 0 reiškia jokių apribojimų
503 text_min_max_length_info: 0 reiškia jokių apribojimų
503 text_project_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti šį projektą ir visus susijusius duomenis?
504 text_project_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti šį projektą ir visus susijusius duomenis?
504 text_workflow_edit: Išrinkite vaidmenį ir pėdsekį, kad redaguotumėte darbų eigą
505 text_workflow_edit: Išrinkite vaidmenį ir pėdsekį, kad redaguotumėte darbų eigą
505 text_are_you_sure: Ar esate įsitikinęs?
506 text_are_you_sure: Ar esate įsitikinęs?
506 text_journal_changed: pakeistas iš %s į %s
507 text_journal_changed: pakeistas iš %s į %s
507 text_journal_set_to: nustatyta į %s
508 text_journal_set_to: nustatyta į %s
508 text_journal_deleted: ištrintas
509 text_journal_deleted: ištrintas
509 text_tip_task_begin_day: užduotis, prasidedanti šią dieną
510 text_tip_task_begin_day: užduotis, prasidedanti šią dieną
510 text_tip_task_end_day: užduotis, pasibaigianti šią dieną
511 text_tip_task_end_day: užduotis, pasibaigianti šią dieną
511 text_tip_task_begin_end_day: užduoties prasidedanti ir pasibaigianti šią dieną
512 text_tip_task_begin_end_day: užduoties prasidedanti ir pasibaigianti šią dieną
512 text_project_identifier_info: 'Mažosios raidės (a-z), skaičiai ir brūkšniai galimi.<br/>Išsaugojus, identifikuotojas negali būti keičiamas.'
513 text_project_identifier_info: 'Mažosios raidės (a-z), skaičiai ir brūkšniai galimi.<br/>Išsaugojus, identifikuotojas negali būti keičiamas.'
513 text_caracters_maximum: %d simbolių maksimumas.
514 text_caracters_maximum: %d simbolių maksimumas.
514 text_caracters_minimum: Turi būti mažiausiai %d simbolių ilgio.
515 text_caracters_minimum: Turi būti mažiausiai %d simbolių ilgio.
515 text_length_between: Ilgis tarp %d ir %d simbolių.
516 text_length_between: Ilgis tarp %d ir %d simbolių.
516 text_tracker_no_workflow: Jokia darbų eiga neapibrėžta šiam pėdsekiui
517 text_tracker_no_workflow: Jokia darbų eiga neapibrėžta šiam pėdsekiui
517 text_unallowed_characters: Neleistini simboliai
518 text_unallowed_characters: Neleistini simboliai
518 text_comma_separated: Leistinos kelios reikšmės (atskirtos kableliu).
519 text_comma_separated: Leistinos kelios reikšmės (atskirtos kableliu).
519 text_issues_ref_in_commit_messages: Nurodymas ir fiksavimas svarstomų problemų pavedimų(commit) pranešimuose
520 text_issues_ref_in_commit_messages: Nurodymas ir fiksavimas svarstomų problemų pavedimų(commit) pranešimuose
520 text_issue_added: Svarstoma problema %s buvo pranešta.
521 text_issue_added: Svarstoma problema %s buvo pranešta.
521 text_issue_updated: Svarstoma problema %s buvo atnaujinta.
522 text_issue_updated: Svarstoma problema %s buvo atnaujinta.
522 text_wiki_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti wiki ir visą jos turinį?
523 text_wiki_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti wiki ir visą jos turinį?
523 text_issue_category_destroy_question: Kai kurios svarstomos problemos (%d) yra paskirtos šiai kategorijai. Ką jūs norite padaryti?
524 text_issue_category_destroy_question: Kai kurios svarstomos problemos (%d) yra paskirtos šiai kategorijai. Ką jūs norite padaryti?
524 text_issue_category_destroy_assignments: Pašalinti kategorijos užduotis
525 text_issue_category_destroy_assignments: Pašalinti kategorijos užduotis
525 text_issue_category_reassign_to: Iš naujo paskirti svarstomas problemas šiai kategorijai
526 text_issue_category_reassign_to: Iš naujo paskirti svarstomas problemas šiai kategorijai
526 text_user_mail_option: "neišrinktiems projektams, jūs tiktai gausite pranešimus apie daiktus, kuriuos jūs stebite, ar jūs esate įtrauktas į (eg. svarstomos problemos, jūs esate autorius ar įgaliotinis)."
527 text_user_mail_option: "neišrinktiems projektams, jūs tiktai gausite pranešimus apie daiktus, kuriuos jūs stebite, ar jūs esate įtrauktas į (eg. svarstomos problemos, jūs esate autorius ar įgaliotinis)."
527
528
528 default_role_manager: Vadovas
529 default_role_manager: Vadovas
529 default_role_developper: Projektuotojas
530 default_role_developper: Projektuotojas
530 default_role_reporter: Pranešėjas
531 default_role_reporter: Pranešėjas
531 default_tracker_bug: Klaida
532 default_tracker_bug: Klaida
532 default_tracker_feature: Ypatybė
533 default_tracker_feature: Ypatybė
533 default_tracker_support: Palaikymas
534 default_tracker_support: Palaikymas
534 default_issue_status_new: Nauja
535 default_issue_status_new: Nauja
535 default_issue_status_assigned: Priskirta
536 default_issue_status_assigned: Priskirta
536 default_issue_status_resolved: Išspręsta
537 default_issue_status_resolved: Išspręsta
537 default_issue_status_feedback: Grįžtamasis ryšys
538 default_issue_status_feedback: Grįžtamasis ryšys
538 default_issue_status_closed: Uždaryta
539 default_issue_status_closed: Uždaryta
539 default_issue_status_rejected: Atmesta
540 default_issue_status_rejected: Atmesta
540 default_doc_category_user: Vartotojo dokumentacija
541 default_doc_category_user: Vartotojo dokumentacija
541 default_doc_category_tech: Techniniai dokumentacija
542 default_doc_category_tech: Techniniai dokumentacija
542 default_priority_low: Žemas
543 default_priority_low: Žemas
543 default_priority_normal: Normalus
544 default_priority_normal: Normalus
544 default_priority_high: Aukštas
545 default_priority_high: Aukštas
545 default_priority_urgent: Skubus
546 default_priority_urgent: Skubus
546 default_priority_immediate: Neatidėliotinas
547 default_priority_immediate: Neatidėliotinas
547 default_activity_design: Projektavimas
548 default_activity_design: Projektavimas
548 default_activity_development: Vystymas
549 default_activity_development: Vystymas
549
550
550 enumeration_issue_priorities: Svarstomos problemos prioritetai
551 enumeration_issue_priorities: Svarstomos problemos prioritetai
551 enumeration_doc_categories: Dokumento kategorijos
552 enumeration_doc_categories: Dokumento kategorijos
552 enumeration_activities: Veiklos (laiko sekimas)
553 enumeration_activities: Veiklos (laiko sekimas)
553 label_display_per_page: 'Per page: %s'
554 label_display_per_page: 'Per page: %s'
554 setting_per_page_options: Objects per page options
555 setting_per_page_options: Objects per page options
555 notice_default_data_loaded: Default configuration successfully loaded.
556 notice_default_data_loaded: Default configuration successfully loaded.
556 label_age: Age
557 label_age: Age
557 label_general: General
558 label_general: General
558 button_update: Update
559 button_update: Update
559 setting_issues_export_limit: Issues export limit
560 setting_issues_export_limit: Issues export limit
560 label_change_properties: Change properties
561 label_change_properties: Change properties
561 text_load_default_configuration: Load the default configuration
562 text_load_default_configuration: Load the default configuration
562 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
563 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
563 label_repository_plural: Repositories
564 label_repository_plural: Repositories
564 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
565 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
565 label_associated_revisions: Associated revisions
566 label_associated_revisions: Associated revisions
@@ -1,565 +1,566
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
4 actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dagen
9 actionview_datehelper_time_in_words_day_plural: %d dagen
10 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
10 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
11 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
11 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
12 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
12 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
13 actionview_datehelper_time_in_words_minute: 1 minuut
13 actionview_datehelper_time_in_words_minute: 1 minuut
14 actionview_datehelper_time_in_words_minute_half: een halve minuut
14 actionview_datehelper_time_in_words_minute_half: een halve minuut
15 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
15 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
16 actionview_datehelper_time_in_words_minute_plural: %d minuten
16 actionview_datehelper_time_in_words_minute_plural: %d minuten
17 actionview_datehelper_time_in_words_minute_single: 1 minuut
17 actionview_datehelper_time_in_words_minute_single: 1 minuut
18 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
18 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
19 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
19 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
20 actionview_instancetag_blank_option: Selecteer
20 actionview_instancetag_blank_option: Selecteer
21
21
22 activerecord_error_inclusion: staat niet in de lijst
22 activerecord_error_inclusion: staat niet in de lijst
23 activerecord_error_exclusion: is gereserveerd
23 activerecord_error_exclusion: is gereserveerd
24 activerecord_error_invalid: is ongeldig
24 activerecord_error_invalid: is ongeldig
25 activerecord_error_confirmation: komt niet overeen met confirmatie
25 activerecord_error_confirmation: komt niet overeen met confirmatie
26 activerecord_error_accepted: moet geaccepteerd worden
26 activerecord_error_accepted: moet geaccepteerd worden
27 activerecord_error_empty: mag niet leeg zijn
27 activerecord_error_empty: mag niet leeg zijn
28 activerecord_error_blank: mag niet blanco zijn
28 activerecord_error_blank: mag niet blanco zijn
29 activerecord_error_too_long: is te lang
29 activerecord_error_too_long: is te lang
30 activerecord_error_too_short: is te kort
30 activerecord_error_too_short: is te kort
31 activerecord_error_wrong_length: heeft de verkeerde lengte
31 activerecord_error_wrong_length: heeft de verkeerde lengte
32 activerecord_error_taken: is al in gebruik
32 activerecord_error_taken: is al in gebruik
33 activerecord_error_not_a_number: is geen getal
33 activerecord_error_not_a_number: is geen getal
34 activerecord_error_not_a_date: is geen valide datum
34 activerecord_error_not_a_date: is geen valide datum
35 activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum
35 activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum
36 activerecord_error_not_same_project: hoort niet bij hetzelfde project
36 activerecord_error_not_same_project: hoort niet bij hetzelfde project
37 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
37 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
38
38
39 general_fmt_age: %d jr
39 general_fmt_age: %d jr
40 general_fmt_age_plural: %d jr
40 general_fmt_age_plural: %d jr
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nee'
45 general_text_No: 'Nee'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nee'
47 general_text_no: 'nee'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Nederlands'
49 general_lang_name: 'Nederlands'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
53 general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Account is met succes gewijzigd
56 notice_account_updated: Account is met succes gewijzigd
57 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
57 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
58 notice_account_password_updated: Wachtwoord is met succes gewijzigd
58 notice_account_password_updated: Wachtwoord is met succes gewijzigd
59 notice_account_wrong_password: Incorrect wachtwoord
59 notice_account_wrong_password: Incorrect wachtwoord
60 notice_account_register_done: Account is met succes aangemaakt.
60 notice_account_register_done: Account is met succes aangemaakt.
61 notice_account_unknown_email: Onbekende gebruiker.
61 notice_account_unknown_email: Onbekende gebruiker.
62 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
62 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
63 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
63 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
64 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
64 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
65 notice_successful_create: Maken succesvol.
65 notice_successful_create: Maken succesvol.
66 notice_successful_update: Wijzigen succesvol.
66 notice_successful_update: Wijzigen succesvol.
67 notice_successful_delete: Verwijderen succesvol.
67 notice_successful_delete: Verwijderen succesvol.
68 notice_successful_connection: Verbinding succesvol.
68 notice_successful_connection: Verbinding succesvol.
69 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
69 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
70 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
70 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
71 notice_scm_error: Deze ingang of revisie bestaat niet in de repository.
71 notice_scm_error: Deze ingang of revisie bestaat niet in de repository.
72 notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen.
72 notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
76
77 mail_subject_lost_password: Uw redMine wachtwoord
77 mail_subject_lost_password: Uw redMine wachtwoord
78 mail_body_lost_password: 'Gebruik de volgende link om Uw wachtwoord te wijzigen:'
78 mail_body_lost_password: 'Gebruik de volgende link om Uw wachtwoord te wijzigen:'
79 mail_subject_register: redMine account activatie
79 mail_subject_register: redMine account activatie
80 mail_body_register: 'Gebruik de volgende link om Uw Redmine account te activeren:'
80 mail_body_register: 'Gebruik de volgende link om Uw Redmine account te activeren:'
81
81
82 gui_validation_error: 1 fout
82 gui_validation_error: 1 fout
83 gui_validation_error_plural: %d fouten
83 gui_validation_error_plural: %d fouten
84
84
85 field_name: Naam
85 field_name: Naam
86 field_description: Beschrijving
86 field_description: Beschrijving
87 field_summary: Samenvatting
87 field_summary: Samenvatting
88 field_is_required: Verplicht
88 field_is_required: Verplicht
89 field_firstname: Voornaam
89 field_firstname: Voornaam
90 field_lastname: Achternaam
90 field_lastname: Achternaam
91 field_mail: Email
91 field_mail: Email
92 field_filename: Bestand
92 field_filename: Bestand
93 field_filesize: Grootte
93 field_filesize: Grootte
94 field_downloads: Downloads
94 field_downloads: Downloads
95 field_author: Auteur
95 field_author: Auteur
96 field_created_on: Aangemaakt
96 field_created_on: Aangemaakt
97 field_updated_on: Gewijzigd
97 field_updated_on: Gewijzigd
98 field_field_format: Formaat
98 field_field_format: Formaat
99 field_is_for_all: Voor alle projecten
99 field_is_for_all: Voor alle projecten
100 field_possible_values: Mogelijke waarden
100 field_possible_values: Mogelijke waarden
101 field_regexp: Reguliere expressie
101 field_regexp: Reguliere expressie
102 field_min_length: Minimale lengte
102 field_min_length: Minimale lengte
103 field_max_length: Maximale lengte
103 field_max_length: Maximale lengte
104 field_value: Waarde
104 field_value: Waarde
105 field_category: Categorie
105 field_category: Categorie
106 field_title: Titel
106 field_title: Titel
107 field_project: Project
107 field_project: Project
108 field_issue: Issue
108 field_issue: Issue
109 field_status: Status
109 field_status: Status
110 field_notes: Notities
110 field_notes: Notities
111 field_is_closed: Issue gesloten
111 field_is_closed: Issue gesloten
112 field_is_default: Default status
112 field_is_default: Default
113 field_tracker: Tracker
113 field_tracker: Tracker
114 field_subject: Onderwerp
114 field_subject: Onderwerp
115 field_due_date: Verwachte datum gereed
115 field_due_date: Verwachte datum gereed
116 field_assigned_to: Toegewezen aan
116 field_assigned_to: Toegewezen aan
117 field_priority: Prioriteit
117 field_priority: Prioriteit
118 field_fixed_version: Opgeloste versie
118 field_fixed_version: Opgeloste versie
119 field_user: Gebruiker
119 field_user: Gebruiker
120 field_role: Rol
120 field_role: Rol
121 field_homepage: Homepage
121 field_homepage: Homepage
122 field_is_public: Publiek
122 field_is_public: Publiek
123 field_parent: Subproject van
123 field_parent: Subproject van
124 field_is_in_chlog: Issues weergegeven in wijzigingslog
124 field_is_in_chlog: Issues weergegeven in wijzigingslog
125 field_is_in_roadmap: Issues weergegeven in roadmap
125 field_is_in_roadmap: Issues weergegeven in roadmap
126 field_login: Inloggen
126 field_login: Inloggen
127 field_mail_notification: Mail mededelingen
127 field_mail_notification: Mail mededelingen
128 field_admin: Administrateur
128 field_admin: Administrateur
129 field_last_login_on: Laatste bezoek
129 field_last_login_on: Laatste bezoek
130 field_language: Taal
130 field_language: Taal
131 field_effective_date: Datum
131 field_effective_date: Datum
132 field_password: Wachtwoord
132 field_password: Wachtwoord
133 field_new_password: Nieuw wachtwoord
133 field_new_password: Nieuw wachtwoord
134 field_password_confirmation: Bevestigen
134 field_password_confirmation: Bevestigen
135 field_version: Versie
135 field_version: Versie
136 field_type: Type
136 field_type: Type
137 field_host: Host
137 field_host: Host
138 field_port: Port
138 field_port: Port
139 field_account: Account
139 field_account: Account
140 field_base_dn: Base DN
140 field_base_dn: Base DN
141 field_attr_login: Login attribuut
141 field_attr_login: Login attribuut
142 field_attr_firstname: Voornaam attribuut
142 field_attr_firstname: Voornaam attribuut
143 field_attr_lastname: Achternaam attribuut
143 field_attr_lastname: Achternaam attribuut
144 field_attr_mail: Email attribuut
144 field_attr_mail: Email attribuut
145 field_onthefly: On-the-fly aanmaken van een gebruiker
145 field_onthefly: On-the-fly aanmaken van een gebruiker
146 field_start_date: Start
146 field_start_date: Start
147 field_done_ratio: %% Gereed
147 field_done_ratio: %% Gereed
148 field_auth_source: Authenticatiemethode
148 field_auth_source: Authenticatiemethode
149 field_hide_mail: Verberg mijn emailadres
149 field_hide_mail: Verberg mijn emailadres
150 field_comments: Commentaar
150 field_comments: Commentaar
151 field_url: URL
151 field_url: URL
152 field_start_page: Startpagina
152 field_start_page: Startpagina
153 field_subproject: Subproject
153 field_subproject: Subproject
154 field_hours: Uren
154 field_hours: Uren
155 field_activity: Activiteit
155 field_activity: Activiteit
156 field_spent_on: Datum
156 field_spent_on: Datum
157 field_identifier: Identificatiecode
157 field_identifier: Identificatiecode
158 field_is_filter: Gebruikt als een filter
158 field_is_filter: Gebruikt als een filter
159 field_issue_to_id: Gerelateerd issue
159 field_issue_to_id: Gerelateerd issue
160 field_delay: Vertraging
160 field_delay: Vertraging
161 field_assignable: Issues can be assigned to this role
161 field_assignable: Issues can be assigned to this role
162 field_redirect_existing_links: Redirect existing links
162 field_redirect_existing_links: Redirect existing links
163 field_estimated_hours: Estimated time
163 field_estimated_hours: Estimated time
164 field_default_value: Default value
164
165
165 setting_app_title: Applicatie titel
166 setting_app_title: Applicatie titel
166 setting_app_subtitle: Applicatie ondertitel
167 setting_app_subtitle: Applicatie ondertitel
167 setting_welcome_text: Welkomsttekst
168 setting_welcome_text: Welkomsttekst
168 setting_default_language: Default taal
169 setting_default_language: Default taal
169 setting_login_required: Authent. nodig
170 setting_login_required: Authent. nodig
170 setting_self_registration: Zelf-registratie toegestaan
171 setting_self_registration: Zelf-registratie toegestaan
171 setting_attachment_max_size: Attachment max. grootte
172 setting_attachment_max_size: Attachment max. grootte
172 setting_issues_export_limit: Limiet export issues
173 setting_issues_export_limit: Limiet export issues
173 setting_mail_from: Afzender mail adres
174 setting_mail_from: Afzender mail adres
174 setting_host_name: Host naam
175 setting_host_name: Host naam
175 setting_text_formatting: Tekst formaat
176 setting_text_formatting: Tekst formaat
176 setting_wiki_compression: Wiki geschiedenis comprimeren
177 setting_wiki_compression: Wiki geschiedenis comprimeren
177 setting_feeds_limit: Feed inhoud limiet
178 setting_feeds_limit: Feed inhoud limiet
178 setting_autofetch_changesets: Haal commits automatisch op
179 setting_autofetch_changesets: Haal commits automatisch op
179 setting_sys_api_enabled: Gebruik WS voor repository beheer
180 setting_sys_api_enabled: Gebruik WS voor repository beheer
180 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_fix_keywords: Fixing keywords
182 setting_commit_fix_keywords: Fixing keywords
182 setting_autologin: Autologin
183 setting_autologin: Autologin
183 setting_date_format: Date format
184 setting_date_format: Date format
184 setting_cross_project_issue_relations: Allow cross-project issue relations
185 setting_cross_project_issue_relations: Allow cross-project issue relations
185
186
186 label_user: Gebruiker
187 label_user: Gebruiker
187 label_user_plural: Gebruikers
188 label_user_plural: Gebruikers
188 label_user_new: Nieuwe gebruiker
189 label_user_new: Nieuwe gebruiker
189 label_project: Project
190 label_project: Project
190 label_project_new: Nieuw project
191 label_project_new: Nieuw project
191 label_project_plural: Projecten
192 label_project_plural: Projecten
192 label_project_all: Alle Projecten
193 label_project_all: Alle Projecten
193 label_project_latest: Nieuwste projecten
194 label_project_latest: Nieuwste projecten
194 label_issue: Issue
195 label_issue: Issue
195 label_issue_new: Nieuw issue
196 label_issue_new: Nieuw issue
196 label_issue_plural: Issues
197 label_issue_plural: Issues
197 label_issue_view_all: Bekijk alle issues
198 label_issue_view_all: Bekijk alle issues
198 label_document: Document
199 label_document: Document
199 label_document_new: Nieuw document
200 label_document_new: Nieuw document
200 label_document_plural: Documenten
201 label_document_plural: Documenten
201 label_role: Rol
202 label_role: Rol
202 label_role_plural: Rollen
203 label_role_plural: Rollen
203 label_role_new: Nieuwe rol
204 label_role_new: Nieuwe rol
204 label_role_and_permissions: Rollen en permissies
205 label_role_and_permissions: Rollen en permissies
205 label_member: Lid
206 label_member: Lid
206 label_member_new: Nieuw lid
207 label_member_new: Nieuw lid
207 label_member_plural: Leden
208 label_member_plural: Leden
208 label_tracker: Tracker
209 label_tracker: Tracker
209 label_tracker_plural: Trackers
210 label_tracker_plural: Trackers
210 label_tracker_new: Nieuwe tracker
211 label_tracker_new: Nieuwe tracker
211 label_workflow: Workflow
212 label_workflow: Workflow
212 label_issue_status: Issue status
213 label_issue_status: Issue status
213 label_issue_status_plural: Issue statussen
214 label_issue_status_plural: Issue statussen
214 label_issue_status_new: Nieuwe status
215 label_issue_status_new: Nieuwe status
215 label_issue_category: Issue categorie
216 label_issue_category: Issue categorie
216 label_issue_category_plural: Issue categorieën
217 label_issue_category_plural: Issue categorieën
217 label_issue_category_new: Nieuwe categorie
218 label_issue_category_new: Nieuwe categorie
218 label_custom_field: Custom veld
219 label_custom_field: Custom veld
219 label_custom_field_plural: Custom velden
220 label_custom_field_plural: Custom velden
220 label_custom_field_new: Nieuw custom veld
221 label_custom_field_new: Nieuw custom veld
221 label_enumerations: Enumeraties
222 label_enumerations: Enumeraties
222 label_enumeration_new: Nieuwe waarde
223 label_enumeration_new: Nieuwe waarde
223 label_information: Informatie
224 label_information: Informatie
224 label_information_plural: Informatie
225 label_information_plural: Informatie
225 label_please_login: Gaarne inloggen
226 label_please_login: Gaarne inloggen
226 label_register: Registreer
227 label_register: Registreer
227 label_password_lost: Wachtwoord verloren
228 label_password_lost: Wachtwoord verloren
228 label_home: Home
229 label_home: Home
229 label_my_page: Mijn pagina
230 label_my_page: Mijn pagina
230 label_my_account: Mijn account
231 label_my_account: Mijn account
231 label_my_projects: Mijn projecten
232 label_my_projects: Mijn projecten
232 label_administration: Administratie
233 label_administration: Administratie
233 label_login: Inloggen
234 label_login: Inloggen
234 label_logout: Uitloggen
235 label_logout: Uitloggen
235 label_help: Help
236 label_help: Help
236 label_reported_issues: Gemelde issues
237 label_reported_issues: Gemelde issues
237 label_assigned_to_me_issues: Aan mij toegewezen issues
238 label_assigned_to_me_issues: Aan mij toegewezen issues
238 label_last_login: Laatste bezoek
239 label_last_login: Laatste bezoek
239 label_last_updates: Laatste wijziging
240 label_last_updates: Laatste wijziging
240 label_last_updates_plural: %d laatste wijziging
241 label_last_updates_plural: %d laatste wijziging
241 label_registered_on: Geregistreerd op
242 label_registered_on: Geregistreerd op
242 label_activity: Activiteit
243 label_activity: Activiteit
243 label_new: Nieuw
244 label_new: Nieuw
244 label_logged_as: Ingelogd als
245 label_logged_as: Ingelogd als
245 label_environment: Omgeving
246 label_environment: Omgeving
246 label_authentication: Authenticatie
247 label_authentication: Authenticatie
247 label_auth_source: Authenticatie modus
248 label_auth_source: Authenticatie modus
248 label_auth_source_new: Nieuwe authenticatie modus
249 label_auth_source_new: Nieuwe authenticatie modus
249 label_auth_source_plural: Authenticatie modi
250 label_auth_source_plural: Authenticatie modi
250 label_subproject_plural: Subprojecten
251 label_subproject_plural: Subprojecten
251 label_min_max_length: Min - Max lengte
252 label_min_max_length: Min - Max lengte
252 label_list: Lijst
253 label_list: Lijst
253 label_date: Datum
254 label_date: Datum
254 label_integer: Integer
255 label_integer: Integer
255 label_boolean: Boolean
256 label_boolean: Boolean
256 label_string: Tekst
257 label_string: Tekst
257 label_text: Lange tekst
258 label_text: Lange tekst
258 label_attribute: Attribuut
259 label_attribute: Attribuut
259 label_attribute_plural: Attributen
260 label_attribute_plural: Attributen
260 label_download: %d Download
261 label_download: %d Download
261 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
262 label_no_data: Geen gegevens om te tonen
263 label_no_data: Geen gegevens om te tonen
263 label_change_status: Wijzig status
264 label_change_status: Wijzig status
264 label_history: Geschiedenis
265 label_history: Geschiedenis
265 label_attachment: Bestand
266 label_attachment: Bestand
266 label_attachment_new: Nieuw bestand
267 label_attachment_new: Nieuw bestand
267 label_attachment_delete: Verwijder bestand
268 label_attachment_delete: Verwijder bestand
268 label_attachment_plural: Bestanden
269 label_attachment_plural: Bestanden
269 label_report: Rapport
270 label_report: Rapport
270 label_report_plural: Rapporten
271 label_report_plural: Rapporten
271 label_news: Nieuws
272 label_news: Nieuws
272 label_news_new: Voeg nieuws toe
273 label_news_new: Voeg nieuws toe
273 label_news_plural: Nieuws
274 label_news_plural: Nieuws
274 label_news_latest: Laatste nieuws
275 label_news_latest: Laatste nieuws
275 label_news_view_all: Bekijk al het nieuws
276 label_news_view_all: Bekijk al het nieuws
276 label_change_log: Wijzigingslog
277 label_change_log: Wijzigingslog
277 label_settings: Instellingen
278 label_settings: Instellingen
278 label_overview: Overzicht
279 label_overview: Overzicht
279 label_version: Versie
280 label_version: Versie
280 label_version_new: Nieuwe versie
281 label_version_new: Nieuwe versie
281 label_version_plural: Versies
282 label_version_plural: Versies
282 label_confirmation: Bevestiging
283 label_confirmation: Bevestiging
283 label_export_to: Exporteer naar
284 label_export_to: Exporteer naar
284 label_read: Lees...
285 label_read: Lees...
285 label_public_projects: Publieke projecten
286 label_public_projects: Publieke projecten
286 label_open_issues: open
287 label_open_issues: open
287 label_open_issues_plural: open
288 label_open_issues_plural: open
288 label_closed_issues: gesloten
289 label_closed_issues: gesloten
289 label_closed_issues_plural: gesloten
290 label_closed_issues_plural: gesloten
290 label_total: Totaal
291 label_total: Totaal
291 label_permissions: Permissies
292 label_permissions: Permissies
292 label_current_status: Huidige status
293 label_current_status: Huidige status
293 label_new_statuses_allowed: Nieuwe statuses toegestaan
294 label_new_statuses_allowed: Nieuwe statuses toegestaan
294 label_all: alle
295 label_all: alle
295 label_none: geen
296 label_none: geen
296 label_next: Volgende
297 label_next: Volgende
297 label_previous: Vorige
298 label_previous: Vorige
298 label_used_by: Gebruikt door
299 label_used_by: Gebruikt door
299 label_details: Details
300 label_details: Details
300 label_add_note: Voeg een notitie toe
301 label_add_note: Voeg een notitie toe
301 label_per_page: Per pagina
302 label_per_page: Per pagina
302 label_calendar: Kalender
303 label_calendar: Kalender
303 label_months_from: maanden vanaf
304 label_months_from: maanden vanaf
304 label_gantt: Gantt
305 label_gantt: Gantt
305 label_internal: Intern
306 label_internal: Intern
306 label_last_changes: laatste %d wijzigingen
307 label_last_changes: laatste %d wijzigingen
307 label_change_view_all: Bekijk alle wijzigingen
308 label_change_view_all: Bekijk alle wijzigingen
308 label_personalize_page: Personaliseer deze pagina
309 label_personalize_page: Personaliseer deze pagina
309 label_comment: Commentaar
310 label_comment: Commentaar
310 label_comment_plural: Commentaar
311 label_comment_plural: Commentaar
311 label_comment_add: Voeg commentaar toe
312 label_comment_add: Voeg commentaar toe
312 label_comment_added: Commentaar toegevoegd
313 label_comment_added: Commentaar toegevoegd
313 label_comment_delete: Verwijder commentaar
314 label_comment_delete: Verwijder commentaar
314 label_query: Eigen zoekvraag
315 label_query: Eigen zoekvraag
315 label_query_plural: Eigen zoekvragen
316 label_query_plural: Eigen zoekvragen
316 label_query_new: Nieuwe zoekvraag
317 label_query_new: Nieuwe zoekvraag
317 label_filter_add: Voeg filter toe
318 label_filter_add: Voeg filter toe
318 label_filter_plural: Filters
319 label_filter_plural: Filters
319 label_equals: is gelijk
320 label_equals: is gelijk
320 label_not_equals: is niet gelijk
321 label_not_equals: is niet gelijk
321 label_in_less_than: in minder dan
322 label_in_less_than: in minder dan
322 label_in_more_than: in meer dan
323 label_in_more_than: in meer dan
323 label_in: in
324 label_in: in
324 label_today: vandaag
325 label_today: vandaag
325 label_this_week: this week
326 label_this_week: this week
326 label_less_than_ago: minder dan dagen geleden
327 label_less_than_ago: minder dan dagen geleden
327 label_more_than_ago: meer dan dagen geleden
328 label_more_than_ago: meer dan dagen geleden
328 label_ago: dagen geleden
329 label_ago: dagen geleden
329 label_contains: bevat
330 label_contains: bevat
330 label_not_contains: bevat niet
331 label_not_contains: bevat niet
331 label_day_plural: dagen
332 label_day_plural: dagen
332 label_repository: Repository
333 label_repository: Repository
333 label_browse: Blader
334 label_browse: Blader
334 label_modification: %d wijziging
335 label_modification: %d wijziging
335 label_modification_plural: %d wijzigingen
336 label_modification_plural: %d wijzigingen
336 label_revision: Revisie
337 label_revision: Revisie
337 label_revision_plural: Revisies
338 label_revision_plural: Revisies
338 label_added: toegevoegd
339 label_added: toegevoegd
339 label_modified: gewijzigd
340 label_modified: gewijzigd
340 label_deleted: verwijderd
341 label_deleted: verwijderd
341 label_latest_revision: Meest recente revisie
342 label_latest_revision: Meest recente revisie
342 label_latest_revision_plural: Meest recente revisies
343 label_latest_revision_plural: Meest recente revisies
343 label_view_revisions: Bekijk revisies
344 label_view_revisions: Bekijk revisies
344 label_max_size: Maximum grootte
345 label_max_size: Maximum grootte
345 label_on: 'van'
346 label_on: 'van'
346 label_sort_highest: Verplaats naar begin
347 label_sort_highest: Verplaats naar begin
347 label_sort_higher: Verplaats naar boven
348 label_sort_higher: Verplaats naar boven
348 label_sort_lower: Verplaats naar beneden
349 label_sort_lower: Verplaats naar beneden
349 label_sort_lowest: Verplaats naar eind
350 label_sort_lowest: Verplaats naar eind
350 label_roadmap: Roadmap
351 label_roadmap: Roadmap
351 label_roadmap_due_in: Due in
352 label_roadmap_due_in: Due in
352 label_roadmap_overdue: %s late
353 label_roadmap_overdue: %s late
353 label_roadmap_no_issues: Geen issues voor deze versie
354 label_roadmap_no_issues: Geen issues voor deze versie
354 label_search: Zoeken
355 label_search: Zoeken
355 label_result_plural: Resultaten
356 label_result_plural: Resultaten
356 label_all_words: Alle woorden
357 label_all_words: Alle woorden
357 label_wiki: Wiki
358 label_wiki: Wiki
358 label_wiki_edit: Wiki edit
359 label_wiki_edit: Wiki edit
359 label_wiki_edit_plural: Wiki edits
360 label_wiki_edit_plural: Wiki edits
360 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
361 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
362 label_index_by_title: Index by title
363 label_index_by_title: Index by title
363 label_index_by_date: Index by date
364 label_index_by_date: Index by date
364 label_current_version: Huidige versie
365 label_current_version: Huidige versie
365 label_preview: Testweergave
366 label_preview: Testweergave
366 label_feed_plural: Feeds
367 label_feed_plural: Feeds
367 label_changes_details: Details van alle wijzigingen
368 label_changes_details: Details van alle wijzigingen
368 label_issue_tracking: Issue tracking
369 label_issue_tracking: Issue tracking
369 label_spent_time: Gespendeerde tijd
370 label_spent_time: Gespendeerde tijd
370 label_f_hour: %.2f uur
371 label_f_hour: %.2f uur
371 label_f_hour_plural: %.2f uren
372 label_f_hour_plural: %.2f uren
372 label_time_tracking: Tijd tracking
373 label_time_tracking: Tijd tracking
373 label_change_plural: Wijzigingen
374 label_change_plural: Wijzigingen
374 label_statistics: Statistieken
375 label_statistics: Statistieken
375 label_commits_per_month: Commits per maand
376 label_commits_per_month: Commits per maand
376 label_commits_per_author: Commits per auteur
377 label_commits_per_author: Commits per auteur
377 label_view_diff: Bekijk verschillen
378 label_view_diff: Bekijk verschillen
378 label_diff_inline: inline
379 label_diff_inline: inline
379 label_diff_side_by_side: naast elkaar
380 label_diff_side_by_side: naast elkaar
380 label_options: Opties
381 label_options: Opties
381 label_copy_workflow_from: Kopieer workflow van
382 label_copy_workflow_from: Kopieer workflow van
382 label_permissions_report: Permissies rapport
383 label_permissions_report: Permissies rapport
383 label_watched_issues: Gemonitorde issues
384 label_watched_issues: Gemonitorde issues
384 label_related_issues: Gerelateerde issues
385 label_related_issues: Gerelateerde issues
385 label_applied_status: Toegekende status
386 label_applied_status: Toegekende status
386 label_loading: Laden...
387 label_loading: Laden...
387 label_relation_new: Nieuwe relatie
388 label_relation_new: Nieuwe relatie
388 label_relation_delete: Verwijder relatie
389 label_relation_delete: Verwijder relatie
389 label_relates_to: gerelateerd aan
390 label_relates_to: gerelateerd aan
390 label_duplicates: dupliceert
391 label_duplicates: dupliceert
391 label_blocks: blokkeert
392 label_blocks: blokkeert
392 label_blocked_by: geblokkeerd door
393 label_blocked_by: geblokkeerd door
393 label_precedes: gaat vooraf aan
394 label_precedes: gaat vooraf aan
394 label_follows: volgt op
395 label_follows: volgt op
395 label_end_to_start: eind tot start
396 label_end_to_start: eind tot start
396 label_end_to_end: eind tot eind
397 label_end_to_end: eind tot eind
397 label_start_to_start: start tot start
398 label_start_to_start: start tot start
398 label_start_to_end: start tot eind
399 label_start_to_end: start tot eind
399 label_stay_logged_in: Blijf ingelogd
400 label_stay_logged_in: Blijf ingelogd
400 label_disabled: uitgeschakeld
401 label_disabled: uitgeschakeld
401 label_show_completed_versions: Toon afgeronde versies
402 label_show_completed_versions: Toon afgeronde versies
402 label_me: ik
403 label_me: ik
403 label_board: Forum
404 label_board: Forum
404 label_board_new: Nieuw forum
405 label_board_new: Nieuw forum
405 label_board_plural: Forums
406 label_board_plural: Forums
406 label_topic_plural: Onderwerpen
407 label_topic_plural: Onderwerpen
407 label_message_plural: Berichten
408 label_message_plural: Berichten
408 label_message_last: Laatste bericht
409 label_message_last: Laatste bericht
409 label_message_new: Nieuw bericht
410 label_message_new: Nieuw bericht
410 label_reply_plural: Antwoorden
411 label_reply_plural: Antwoorden
411 label_send_information: Send account information to the user
412 label_send_information: Send account information to the user
412 label_year: Year
413 label_year: Year
413 label_month: Month
414 label_month: Month
414 label_week: Week
415 label_week: Week
415 label_date_from: From
416 label_date_from: From
416 label_date_to: To
417 label_date_to: To
417 label_language_based: Language based
418 label_language_based: Language based
418 label_sort_by: Sort by %s
419 label_sort_by: Sort by %s
419 label_send_test_email: Send a test email
420 label_send_test_email: Send a test email
420 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_module_plural: Modules
422 label_module_plural: Modules
422 label_added_time_by: Added by %s %s ago
423 label_added_time_by: Added by %s %s ago
423 label_updated_time: Updated %s ago
424 label_updated_time: Updated %s ago
424 label_jump_to_a_project: Jump to a project...
425 label_jump_to_a_project: Jump to a project...
425
426
426 button_login: Inloggen
427 button_login: Inloggen
427 button_submit: Toevoegen
428 button_submit: Toevoegen
428 button_save: Bewaren
429 button_save: Bewaren
429 button_check_all: Selecteer alle
430 button_check_all: Selecteer alle
430 button_uncheck_all: Deselecteer alle
431 button_uncheck_all: Deselecteer alle
431 button_delete: Verwijder
432 button_delete: Verwijder
432 button_create: Maak
433 button_create: Maak
433 button_test: Test
434 button_test: Test
434 button_edit: Bewerk
435 button_edit: Bewerk
435 button_add: Voeg toe
436 button_add: Voeg toe
436 button_change: Wijzig
437 button_change: Wijzig
437 button_apply: Pas toe
438 button_apply: Pas toe
438 button_clear: Leeg maken
439 button_clear: Leeg maken
439 button_lock: Lock
440 button_lock: Lock
440 button_unlock: Unlock
441 button_unlock: Unlock
441 button_download: Download
442 button_download: Download
442 button_list: Lijst
443 button_list: Lijst
443 button_view: Bekijken
444 button_view: Bekijken
444 button_move: Verplaatsen
445 button_move: Verplaatsen
445 button_back: Terug
446 button_back: Terug
446 button_cancel: Annuleer
447 button_cancel: Annuleer
447 button_activate: Activeer
448 button_activate: Activeer
448 button_sort: Sorteer
449 button_sort: Sorteer
449 button_log_time: Log tijd
450 button_log_time: Log tijd
450 button_rollback: Rollback naar deze versie
451 button_rollback: Rollback naar deze versie
451 button_watch: Monitor
452 button_watch: Monitor
452 button_unwatch: Niet meer monitoren
453 button_unwatch: Niet meer monitoren
453 button_reply: Antwoord
454 button_reply: Antwoord
454 button_archive: Archive
455 button_archive: Archive
455 button_unarchive: Unarchive
456 button_unarchive: Unarchive
456 button_reset: Reset
457 button_reset: Reset
457 button_rename: Rename
458 button_rename: Rename
458
459
459 status_active: Actief
460 status_active: Actief
460 status_registered: geregistreerd
461 status_registered: geregistreerd
461 status_locked: gelockt
462 status_locked: gelockt
462
463
463 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
464 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
464 text_regexp_info: bv. ^[A-Z0-9]+$
465 text_regexp_info: bv. ^[A-Z0-9]+$
465 text_min_max_length_info: 0 betekent geen restrictie
466 text_min_max_length_info: 0 betekent geen restrictie
466 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
467 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
467 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
468 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
468 text_are_you_sure: Weet U het zeker ?
469 text_are_you_sure: Weet U het zeker ?
469 text_journal_changed: gewijzigd van %s naar %s
470 text_journal_changed: gewijzigd van %s naar %s
470 text_journal_set_to: ingesteld op %s
471 text_journal_set_to: ingesteld op %s
471 text_journal_deleted: verwijderd
472 text_journal_deleted: verwijderd
472 text_tip_task_begin_day: taak die op deze dag begint
473 text_tip_task_begin_day: taak die op deze dag begint
473 text_tip_task_end_day: taak die op deze dag eindigt
474 text_tip_task_end_day: taak die op deze dag eindigt
474 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
475 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
475 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
476 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
476 text_caracters_maximum: %d van maximum aantal tekens.
477 text_caracters_maximum: %d van maximum aantal tekens.
477 text_length_between: Lengte tussen %d en %d tekens.
478 text_length_between: Lengte tussen %d en %d tekens.
478 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
479 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
479 text_unallowed_characters: Niet toegestane tekens
480 text_unallowed_characters: Niet toegestane tekens
480 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
481 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
481 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
482 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
482 text_issue_added: Issue %s is gerapporteerd.
483 text_issue_added: Issue %s is gerapporteerd.
483 text_issue_updated: Issue %s is gewijzigd.
484 text_issue_updated: Issue %s is gewijzigd.
484 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
488
489
489 default_role_manager: Manager
490 default_role_manager: Manager
490 default_role_developper: Ontwikkelaar
491 default_role_developper: Ontwikkelaar
491 default_role_reporter: Rapporteur
492 default_role_reporter: Rapporteur
492 default_tracker_bug: Bug
493 default_tracker_bug: Bug
493 default_tracker_feature: Feature
494 default_tracker_feature: Feature
494 default_tracker_support: Support
495 default_tracker_support: Support
495 default_issue_status_new: Nieuw
496 default_issue_status_new: Nieuw
496 default_issue_status_assigned: Toegewezen
497 default_issue_status_assigned: Toegewezen
497 default_issue_status_resolved: Opgelost
498 default_issue_status_resolved: Opgelost
498 default_issue_status_feedback: Terugkoppeling
499 default_issue_status_feedback: Terugkoppeling
499 default_issue_status_closed: Gesloten
500 default_issue_status_closed: Gesloten
500 default_issue_status_rejected: Afgewezen
501 default_issue_status_rejected: Afgewezen
501 default_doc_category_user: Gebruikersdocumentatie
502 default_doc_category_user: Gebruikersdocumentatie
502 default_doc_category_tech: Technische documentatie
503 default_doc_category_tech: Technische documentatie
503 default_priority_low: Laag
504 default_priority_low: Laag
504 default_priority_normal: Normaal
505 default_priority_normal: Normaal
505 default_priority_high: Hoog
506 default_priority_high: Hoog
506 default_priority_urgent: Spoed
507 default_priority_urgent: Spoed
507 default_priority_immediate: Onmiddellijk
508 default_priority_immediate: Onmiddellijk
508 default_activity_design: Design
509 default_activity_design: Design
509 default_activity_development: Development
510 default_activity_development: Development
510
511
511 enumeration_issue_priorities: Issue prioriteiten
512 enumeration_issue_priorities: Issue prioriteiten
512 enumeration_doc_categories: Document categorieën
513 enumeration_doc_categories: Document categorieën
513 enumeration_activities: Activiteiten (tijd tracking)
514 enumeration_activities: Activiteiten (tijd tracking)
514 text_comma_separated: Multiple values allowed (comma separated).
515 text_comma_separated: Multiple values allowed (comma separated).
515 label_file_plural: Files
516 label_file_plural: Files
516 label_changeset_plural: Changesets
517 label_changeset_plural: Changesets
517 field_column_names: Columns
518 field_column_names: Columns
518 label_default_columns: Default columns
519 label_default_columns: Default columns
519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_repositories_encodings: Repositories encodings
521 setting_repositories_encodings: Repositories encodings
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
524 label_no_change_option: (No change)
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 label_theme: Theme
526 label_theme: Theme
526 label_default: Default
527 label_default: Default
527 label_search_titles_only: Search titles only
528 label_search_titles_only: Search titles only
528 label_nobody: nobody
529 label_nobody: nobody
529 button_change_password: Change password
530 button_change_password: Change password
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
534 label_user_mail_option_none: "Only for things I watch or I'm involved in"
534 setting_emails_footer: Emails footer
535 setting_emails_footer: Emails footer
535 label_float: Float
536 label_float: Float
536 button_copy: Copy
537 button_copy: Copy
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
538 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
538 mail_body_account_information: Your Redmine account information
539 mail_body_account_information: Your Redmine account information
539 setting_protocol: Protocol
540 setting_protocol: Protocol
540 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
541 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
541 setting_time_format: Time format
542 setting_time_format: Time format
542 label_registration_activation_by_email: account activation by email
543 label_registration_activation_by_email: account activation by email
543 mail_subject_account_activation_request: Redmine account activation request
544 mail_subject_account_activation_request: Redmine account activation request
544 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
545 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
545 label_registration_automatic_activation: automatic account activation
546 label_registration_automatic_activation: automatic account activation
546 label_registration_manual_activation: manual account activation
547 label_registration_manual_activation: manual account activation
547 notice_account_pending: "Your account was created and is now pending administrator approval."
548 notice_account_pending: "Your account was created and is now pending administrator approval."
548 field_time_zone: Time zone
549 field_time_zone: Time zone
549 text_caracters_minimum: Must be at least %d characters long.
550 text_caracters_minimum: Must be at least %d characters long.
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 button_annotate: Annotate
552 button_annotate: Annotate
552 label_issues_by: Issues by %s
553 label_issues_by: Issues by %s
553 field_searchable: Searchable
554 field_searchable: Searchable
554 label_display_per_page: 'Per page: %s'
555 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
556 setting_per_page_options: Objects per page options
556 label_age: Age
557 label_age: Age
557 notice_default_data_loaded: Default configuration successfully loaded.
558 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
559 text_load_default_configuration: Load the default configuration
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
560 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
561 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
561 button_update: Update
562 button_update: Update
562 label_change_properties: Change properties
563 label_change_properties: Change properties
563 label_general: General
564 label_general: General
564 label_repository_plural: Repositories
565 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
566 label_associated_revisions: Associated revisions
@@ -1,564 +1,565
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Styczeń,Luty,Marzec,Kwiecień,Maj,Czerwiec,Lipiec,Sierpień,Wrzesień,Październik,Listopad,Grudzień
4 actionview_datehelper_select_month_names: Styczeń,Luty,Marzec,Kwiecień,Maj,Czerwiec,Lipiec,Sierpień,Wrzesień,Październik,Listopad,Grudzień
5 actionview_datehelper_select_month_names_abbr: Sty,Lut,Mar,Kwi,Maj,Cze,Lip,Sie,Wrz,Paź,Lis,Gru
5 actionview_datehelper_select_month_names_abbr: Sty,Lut,Mar,Kwi,Maj,Cze,Lip,Sie,Wrz,Paź,Lis,Gru
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dzień
8 actionview_datehelper_time_in_words_day: 1 dzień
9 actionview_datehelper_time_in_words_day_plural: %d dni
9 actionview_datehelper_time_in_words_day_plural: %d dni
10 actionview_datehelper_time_in_words_hour_about: około godziny
10 actionview_datehelper_time_in_words_hour_about: około godziny
11 actionview_datehelper_time_in_words_hour_about_plural: około %d godzin
11 actionview_datehelper_time_in_words_hour_about_plural: około %d godzin
12 actionview_datehelper_time_in_words_hour_about_single: około godziny
12 actionview_datehelper_time_in_words_hour_about_single: około godziny
13 actionview_datehelper_time_in_words_minute: 1 minuta
13 actionview_datehelper_time_in_words_minute: 1 minuta
14 actionview_datehelper_time_in_words_minute_half: pół minuty
14 actionview_datehelper_time_in_words_minute_half: pół minuty
15 actionview_datehelper_time_in_words_minute_less_than: mniej niż minuta
15 actionview_datehelper_time_in_words_minute_less_than: mniej niż minuta
16 actionview_datehelper_time_in_words_minute_plural: %d minut
16 actionview_datehelper_time_in_words_minute_plural: %d minut
17 actionview_datehelper_time_in_words_minute_single: 1 minuta
17 actionview_datehelper_time_in_words_minute_single: 1 minuta
18 actionview_datehelper_time_in_words_second_less_than: mniej niż sekunda
18 actionview_datehelper_time_in_words_second_less_than: mniej niż sekunda
19 actionview_datehelper_time_in_words_second_less_than_plural: mniej niż %d sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mniej niż %d sekund
20 actionview_instancetag_blank_option: Proszę wybierz
20 actionview_instancetag_blank_option: Proszę wybierz
21
21
22 activerecord_error_inclusion: nie jest zawarte na liście
22 activerecord_error_inclusion: nie jest zawarte na liście
23 activerecord_error_exclusion: jest zarezerwowane
23 activerecord_error_exclusion: jest zarezerwowane
24 activerecord_error_invalid: jest nieprawidłowe
24 activerecord_error_invalid: jest nieprawidłowe
25 activerecord_error_confirmation: nie pasuje do potwierdzenia
25 activerecord_error_confirmation: nie pasuje do potwierdzenia
26 activerecord_error_accepted: musi być zaakceptowane
26 activerecord_error_accepted: musi być zaakceptowane
27 activerecord_error_empty: nie może być puste
27 activerecord_error_empty: nie może być puste
28 activerecord_error_blank: nie może być czyste
28 activerecord_error_blank: nie może być czyste
29 activerecord_error_too_long: jest za długie
29 activerecord_error_too_long: jest za długie
30 activerecord_error_too_short: jest za krótkie
30 activerecord_error_too_short: jest za krótkie
31 activerecord_error_wrong_length: ma złą długość
31 activerecord_error_wrong_length: ma złą długość
32 activerecord_error_taken: jest już wybrane
32 activerecord_error_taken: jest już wybrane
33 activerecord_error_not_a_number: nie jest numerem
33 activerecord_error_not_a_number: nie jest numerem
34 activerecord_error_not_a_date: nie jest prawidłową datą
34 activerecord_error_not_a_date: nie jest prawidłową datą
35 activerecord_error_greater_than_start_date: musi być większe niż początkowa data
35 activerecord_error_greater_than_start_date: musi być większe niż początkowa data
36 activerecord_error_not_same_project: nie należy do tego samego projektu
36 activerecord_error_not_same_project: nie należy do tego samego projektu
37 activerecord_error_circular_dependency: Ta relacja może wytworzyć kołową zależność
37 activerecord_error_circular_dependency: Ta relacja może wytworzyć kołową zależność
38
38
39 general_fmt_age: %d lat
39 general_fmt_age: %d lat
40 general_fmt_age_plural: %d lat
40 general_fmt_age_plural: %d lat
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nie'
45 general_text_No: 'Nie'
46 general_text_Yes: 'Tak'
46 general_text_Yes: 'Tak'
47 general_text_no: 'nie'
47 general_text_no: 'nie'
48 general_text_yes: 'tak'
48 general_text_yes: 'tak'
49 general_lang_name: 'Polski'
49 general_lang_name: 'Polski'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-2
51 general_csv_encoding: ISO-8859-2
52 general_pdf_encoding: ISO-8859-2
52 general_pdf_encoding: ISO-8859-2
53 general_day_names: Poniedziałek,Wtorek,Środa,Czwartek,Piątek,Sobota,Niedziela
53 general_day_names: Poniedziałek,Wtorek,Środa,Czwartek,Piątek,Sobota,Niedziela
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Konto prawidłowo zaktualizowane.
56 notice_account_updated: Konto prawidłowo zaktualizowane.
57 notice_account_invalid_creditentials: Zły użytkownik lub hasło
57 notice_account_invalid_creditentials: Zły użytkownik lub hasło
58 notice_account_password_updated: Hasło prawidłowo zmienione.
58 notice_account_password_updated: Hasło prawidłowo zmienione.
59 notice_account_wrong_password: Złe hasło
59 notice_account_wrong_password: Złe hasło
60 notice_account_register_done: Konto prawidłowo stworzone.
60 notice_account_register_done: Konto prawidłowo stworzone.
61 notice_account_unknown_email: Nieznany użytkownik.
61 notice_account_unknown_email: Nieznany użytkownik.
62 notice_can_t_change_password: To konto ma zewnętrzne źródło identyfikacji. Nie możesz zmienić hasła.
62 notice_can_t_change_password: To konto ma zewnętrzne źródło identyfikacji. Nie możesz zmienić hasła.
63 notice_account_lost_email_sent: Email z instrukcjami zmiany hasła został wysłany do Ciebie.
63 notice_account_lost_email_sent: Email z instrukcjami zmiany hasła został wysłany do Ciebie.
64 notice_account_activated: Twoje konto zostało aktywowane. Możesz się zalogować.
64 notice_account_activated: Twoje konto zostało aktywowane. Możesz się zalogować.
65 notice_successful_create: Udane stworzenie.
65 notice_successful_create: Udane stworzenie.
66 notice_successful_update: Udane poprawienie.
66 notice_successful_update: Udane poprawienie.
67 notice_successful_delete: Udane usunięcie.
67 notice_successful_delete: Udane usunięcie.
68 notice_successful_connection: Udane nawiązanie połączenia.
68 notice_successful_connection: Udane nawiązanie połączenia.
69 notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta.
69 notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta.
70 notice_locking_conflict: Dane poprawione przez innego użytkownika.
70 notice_locking_conflict: Dane poprawione przez innego użytkownika.
71 notice_scm_error: Wejście i/lub zmiana nie istnieje w repozytorium.
71 notice_scm_error: Wejście i/lub zmiana nie istnieje w repozytorium.
72 notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę.
72 notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę.
73
73
74 mail_subject_lost_password: Twoje hasło do redMine
74 mail_subject_lost_password: Twoje hasło do redMine
75 mail_body_lost_password: 'W celu zmiany swojego hasła użyj poniższego odnośnika:'
75 mail_body_lost_password: 'W celu zmiany swojego hasła użyj poniższego odnośnika:'
76 mail_subject_register: Aktywacja konta w redMine
76 mail_subject_register: Aktywacja konta w redMine
77 mail_body_register: 'W celu aktywacji Twojego konta w Redmine, użyj poniższego odnośnika:'
77 mail_body_register: 'W celu aktywacji Twojego konta w Redmine, użyj poniższego odnośnika:'
78
78
79 gui_validation_error: 1 błąd
79 gui_validation_error: 1 błąd
80 gui_validation_error_plural: %d błędów
80 gui_validation_error_plural: %d błędów
81
81
82 field_name: Nazwa
82 field_name: Nazwa
83 field_description: Opis
83 field_description: Opis
84 field_summary: Podsumowanie
84 field_summary: Podsumowanie
85 field_is_required: Wymagane
85 field_is_required: Wymagane
86 field_firstname: Imię
86 field_firstname: Imię
87 field_lastname: Nazwisko
87 field_lastname: Nazwisko
88 field_mail: Email
88 field_mail: Email
89 field_filename: Plik
89 field_filename: Plik
90 field_filesize: Rozmiar
90 field_filesize: Rozmiar
91 field_downloads: Pobrań
91 field_downloads: Pobrań
92 field_author: Autor
92 field_author: Autor
93 field_created_on: Stworzone
93 field_created_on: Stworzone
94 field_updated_on: Zmienione
94 field_updated_on: Zmienione
95 field_field_format: Format
95 field_field_format: Format
96 field_is_for_all: Dla wszystkich projektów
96 field_is_for_all: Dla wszystkich projektów
97 field_possible_values: Możliwe wartości
97 field_possible_values: Możliwe wartości
98 field_regexp: Wyrażenie regularne
98 field_regexp: Wyrażenie regularne
99 field_min_length: Minimalna długość
99 field_min_length: Minimalna długość
100 field_max_length: Maksymalna długość
100 field_max_length: Maksymalna długość
101 field_value: Wartość
101 field_value: Wartość
102 field_category: Kategoria
102 field_category: Kategoria
103 field_title: Tytuł
103 field_title: Tytuł
104 field_project: Projekt
104 field_project: Projekt
105 field_issue: Zagadnienie
105 field_issue: Zagadnienie
106 field_status: Status
106 field_status: Status
107 field_notes: Notatki
107 field_notes: Notatki
108 field_is_closed: Zagadnienie zamknięte
108 field_is_closed: Zagadnienie zamknięte
109 field_is_default: Domyślny status
109 field_is_default: Domyślny status
110 field_tracker: Typ zagadnienia
110 field_tracker: Typ zagadnienia
111 field_subject: Temat
111 field_subject: Temat
112 field_due_date: Data oddania
112 field_due_date: Data oddania
113 field_assigned_to: Przydzielony do
113 field_assigned_to: Przydzielony do
114 field_priority: Priorytet
114 field_priority: Priorytet
115 field_fixed_version: Wersja
115 field_fixed_version: Wersja
116 field_user: Użytkownik
116 field_user: Użytkownik
117 field_role: Rola
117 field_role: Rola
118 field_homepage: Strona www
118 field_homepage: Strona www
119 field_is_public: Publiczny
119 field_is_public: Publiczny
120 field_parent: Podprojekt
120 field_parent: Podprojekt
121 field_is_in_chlog: Zagadnienie pokazywane w zapisie zmian
121 field_is_in_chlog: Zagadnienie pokazywane w zapisie zmian
122 field_is_in_roadmap: Zagadnienie pokazywane na mapie
122 field_is_in_roadmap: Zagadnienie pokazywane na mapie
123 field_login: Login
123 field_login: Login
124 field_mail_notification: Powiadomienia Email
124 field_mail_notification: Powiadomienia Email
125 field_admin: Administrator
125 field_admin: Administrator
126 field_last_login_on: Ostatnie połączenie
126 field_last_login_on: Ostatnie połączenie
127 field_language: Język
127 field_language: Język
128 field_effective_date: Data
128 field_effective_date: Data
129 field_password: Hasło
129 field_password: Hasło
130 field_new_password: Nowe hasło
130 field_new_password: Nowe hasło
131 field_password_confirmation: Potwierdzenie
131 field_password_confirmation: Potwierdzenie
132 field_version: Wersja
132 field_version: Wersja
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: Login atrybut
138 field_attr_login: Login atrybut
139 field_attr_firstname: Imię atrybut
139 field_attr_firstname: Imię atrybut
140 field_attr_lastname: Nazwisko atrybut
140 field_attr_lastname: Nazwisko atrybut
141 field_attr_mail: Email atrybut
141 field_attr_mail: Email atrybut
142 field_onthefly: Tworzenie użytkownika w locie
142 field_onthefly: Tworzenie użytkownika w locie
143 field_start_date: Start
143 field_start_date: Start
144 field_done_ratio: %% Wykonane
144 field_done_ratio: %% Wykonane
145 field_auth_source: Tryb identyfikacji
145 field_auth_source: Tryb identyfikacji
146 field_hide_mail: Ukryj mój adres email
146 field_hide_mail: Ukryj mój adres email
147 field_comments: Komentarz
147 field_comments: Komentarz
148 field_url: URL
148 field_url: URL
149 field_start_page: Strona startowa
149 field_start_page: Strona startowa
150 field_subproject: Podprojekt
150 field_subproject: Podprojekt
151 field_hours: Godzin
151 field_hours: Godzin
152 field_activity: Aktywność
152 field_activity: Aktywność
153 field_spent_on: Data
153 field_spent_on: Data
154 field_identifier: Identifikator
154 field_identifier: Identifikator
155 field_is_filter: Atrybut filtrowania
155 field_is_filter: Atrybut filtrowania
156 field_issue_to_id: Powiązania zagadnienia
156 field_issue_to_id: Powiązania zagadnienia
157 field_delay: Opóźnienie
157 field_delay: Opóźnienie
158 field_default_value: Domyślny
158
159
159 setting_app_title: Tytuł aplikacji
160 setting_app_title: Tytuł aplikacji
160 setting_app_subtitle: Podtytuł aplikacji
161 setting_app_subtitle: Podtytuł aplikacji
161 setting_welcome_text: Tekst powitalny
162 setting_welcome_text: Tekst powitalny
162 setting_default_language: Domyślny język
163 setting_default_language: Domyślny język
163 setting_login_required: Identyfikacja wymagana
164 setting_login_required: Identyfikacja wymagana
164 setting_self_registration: Własna rejestracja umożliwiona
165 setting_self_registration: Własna rejestracja umożliwiona
165 setting_attachment_max_size: Maks. rozm. załącznika
166 setting_attachment_max_size: Maks. rozm. załącznika
166 setting_issues_export_limit: Limit eksportu zagadnień
167 setting_issues_export_limit: Limit eksportu zagadnień
167 setting_mail_from: Adres email wysyłki
168 setting_mail_from: Adres email wysyłki
168 setting_host_name: Nazwa hosta
169 setting_host_name: Nazwa hosta
169 setting_text_formatting: Formatowanie tekstu
170 setting_text_formatting: Formatowanie tekstu
170 setting_wiki_compression: Kompresja historii Wiki
171 setting_wiki_compression: Kompresja historii Wiki
171 setting_feeds_limit: Limit danych RSS
172 setting_feeds_limit: Limit danych RSS
172 setting_autofetch_changesets: Auto-odświeżanie CVS
173 setting_autofetch_changesets: Auto-odświeżanie CVS
173 setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium
174 setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium
174 setting_commit_ref_keywords: Terminy odnoszące (CVS)
175 setting_commit_ref_keywords: Terminy odnoszące (CVS)
175 setting_commit_fix_keywords: Terminy ustalające (CVS)
176 setting_commit_fix_keywords: Terminy ustalające (CVS)
176 setting_autologin: Auto logowanie
177 setting_autologin: Auto logowanie
177 setting_date_format: Format daty
178 setting_date_format: Format daty
178
179
179 label_user: Użytkownik
180 label_user: Użytkownik
180 label_user_plural: Użytkownicy
181 label_user_plural: Użytkownicy
181 label_user_new: Nowy użytkownik
182 label_user_new: Nowy użytkownik
182 label_project: Projekt
183 label_project: Projekt
183 label_project_new: Nowy projekt
184 label_project_new: Nowy projekt
184 label_project_plural: Projekty
185 label_project_plural: Projekty
185 label_project_all: Wszystkie projekty
186 label_project_all: Wszystkie projekty
186 label_project_latest: Ostatnie projekty
187 label_project_latest: Ostatnie projekty
187 label_issue: Zagadnienie
188 label_issue: Zagadnienie
188 label_issue_new: Nowe zagadnienie
189 label_issue_new: Nowe zagadnienie
189 label_issue_plural: Zagadnienia
190 label_issue_plural: Zagadnienia
190 label_issue_view_all: Zobacz wszystkie zagadnienia
191 label_issue_view_all: Zobacz wszystkie zagadnienia
191 label_document: Dokument
192 label_document: Dokument
192 label_document_new: Nowy dokument
193 label_document_new: Nowy dokument
193 label_document_plural: Dokumenty
194 label_document_plural: Dokumenty
194 label_role: Rola
195 label_role: Rola
195 label_role_plural: Role
196 label_role_plural: Role
196 label_role_new: Nowa rola
197 label_role_new: Nowa rola
197 label_role_and_permissions: Role i Uprawnienia
198 label_role_and_permissions: Role i Uprawnienia
198 label_member: Uczestnik
199 label_member: Uczestnik
199 label_member_new: Nowy uczestnik
200 label_member_new: Nowy uczestnik
200 label_member_plural: Uczestnicy
201 label_member_plural: Uczestnicy
201 label_tracker: Typ zagadnienia
202 label_tracker: Typ zagadnienia
202 label_tracker_plural: Typy zagadnień
203 label_tracker_plural: Typy zagadnień
203 label_tracker_new: Nowy typ zagadnienia
204 label_tracker_new: Nowy typ zagadnienia
204 label_workflow: Przepływ
205 label_workflow: Przepływ
205 label_issue_status: Status zagadnienia
206 label_issue_status: Status zagadnienia
206 label_issue_status_plural: Statusy zagadnień
207 label_issue_status_plural: Statusy zagadnień
207 label_issue_status_new: Nowy status
208 label_issue_status_new: Nowy status
208 label_issue_category: Kategoria zagadnienia
209 label_issue_category: Kategoria zagadnienia
209 label_issue_category_plural: Kategorie zagadnień
210 label_issue_category_plural: Kategorie zagadnień
210 label_issue_category_new: Nowa kategoria
211 label_issue_category_new: Nowa kategoria
211 label_custom_field: Dowolne pole
212 label_custom_field: Dowolne pole
212 label_custom_field_plural: Dowolne pola
213 label_custom_field_plural: Dowolne pola
213 label_custom_field_new: Nowe dowolne pole
214 label_custom_field_new: Nowe dowolne pole
214 label_enumerations: Wyliczenia
215 label_enumerations: Wyliczenia
215 label_enumeration_new: Nowa wartość
216 label_enumeration_new: Nowa wartość
216 label_information: Informacja
217 label_information: Informacja
217 label_information_plural: Informacje
218 label_information_plural: Informacje
218 label_please_login: Zaloguj się
219 label_please_login: Zaloguj się
219 label_register: Rejestracja
220 label_register: Rejestracja
220 label_password_lost: Zapomniane hasło
221 label_password_lost: Zapomniane hasło
221 label_home: Główna
222 label_home: Główna
222 label_my_page: Moja strona
223 label_my_page: Moja strona
223 label_my_account: Moje konto
224 label_my_account: Moje konto
224 label_my_projects: Moje projekty
225 label_my_projects: Moje projekty
225 label_administration: Administracja
226 label_administration: Administracja
226 label_login: Login
227 label_login: Login
227 label_logout: Wylogowanie
228 label_logout: Wylogowanie
228 label_help: Pomoc
229 label_help: Pomoc
229 label_reported_issues: Wprowadzone zagadnienia
230 label_reported_issues: Wprowadzone zagadnienia
230 label_assigned_to_me_issues: Zagadnienia przypisane do mnie
231 label_assigned_to_me_issues: Zagadnienia przypisane do mnie
231 label_last_login: Ostatnie połączenie
232 label_last_login: Ostatnie połączenie
232 label_last_updates: Ostatnia zmieniana
233 label_last_updates: Ostatnia zmieniana
233 label_last_updates_plural: %d ostatnie zmiany
234 label_last_updates_plural: %d ostatnie zmiany
234 label_registered_on: Zarejestrowany
235 label_registered_on: Zarejestrowany
235 label_activity: Aktywność
236 label_activity: Aktywność
236 label_new: Nowy
237 label_new: Nowy
237 label_logged_as: Zalogowany jako
238 label_logged_as: Zalogowany jako
238 label_environment: Środowisko
239 label_environment: Środowisko
239 label_authentication: Identyfikacja
240 label_authentication: Identyfikacja
240 label_auth_source: Tryb identyfikacji
241 label_auth_source: Tryb identyfikacji
241 label_auth_source_new: Nowy tryb identyfikacji
242 label_auth_source_new: Nowy tryb identyfikacji
242 label_auth_source_plural: Tryby identyfikacji
243 label_auth_source_plural: Tryby identyfikacji
243 label_subproject_plural: Podprojekty
244 label_subproject_plural: Podprojekty
244 label_min_max_length: Min - Maks długość
245 label_min_max_length: Min - Maks długość
245 label_list: Lista
246 label_list: Lista
246 label_date: Data
247 label_date: Data
247 label_integer: Liczba całkowita
248 label_integer: Liczba całkowita
248 label_boolean: Wartość logiczna
249 label_boolean: Wartość logiczna
249 label_string: Tekst
250 label_string: Tekst
250 label_text: Długi tekst
251 label_text: Długi tekst
251 label_attribute: Atrybut
252 label_attribute: Atrybut
252 label_attribute_plural: Atrybuty
253 label_attribute_plural: Atrybuty
253 label_download: %d Pobranie
254 label_download: %d Pobranie
254 label_download_plural: %d Pobrania
255 label_download_plural: %d Pobrania
255 label_no_data: Brak danych do pokazania
256 label_no_data: Brak danych do pokazania
256 label_change_status: Status zmian
257 label_change_status: Status zmian
257 label_history: Historia
258 label_history: Historia
258 label_attachment: Plik
259 label_attachment: Plik
259 label_attachment_new: Nowy plik
260 label_attachment_new: Nowy plik
260 label_attachment_delete: Skasuj plik
261 label_attachment_delete: Skasuj plik
261 label_attachment_plural: Pliki
262 label_attachment_plural: Pliki
262 label_report: Raport
263 label_report: Raport
263 label_report_plural: Raporty
264 label_report_plural: Raporty
264 label_news: Wiadomość
265 label_news: Wiadomość
265 label_news_new: Dodaj wiadomość
266 label_news_new: Dodaj wiadomość
266 label_news_plural: Wiadomości
267 label_news_plural: Wiadomości
267 label_news_latest: Ostatnie wiadomości
268 label_news_latest: Ostatnie wiadomości
268 label_news_view_all: Pokaż wszystkie wiadomości
269 label_news_view_all: Pokaż wszystkie wiadomości
269 label_change_log: Lista zmian
270 label_change_log: Lista zmian
270 label_settings: Ustawienia
271 label_settings: Ustawienia
271 label_overview: Przegląd
272 label_overview: Przegląd
272 label_version: Wersja
273 label_version: Wersja
273 label_version_new: Nowa wersja
274 label_version_new: Nowa wersja
274 label_version_plural: Wersje
275 label_version_plural: Wersje
275 label_confirmation: Potwierdzenie
276 label_confirmation: Potwierdzenie
276 label_export_to: Eksportuj do
277 label_export_to: Eksportuj do
277 label_read: Czytanie...
278 label_read: Czytanie...
278 label_public_projects: Projekty publiczne
279 label_public_projects: Projekty publiczne
279 label_open_issues: otwarte
280 label_open_issues: otwarte
280 label_open_issues_plural: otwarte
281 label_open_issues_plural: otwarte
281 label_closed_issues: zamknięte
282 label_closed_issues: zamknięte
282 label_closed_issues_plural: zamknięte
283 label_closed_issues_plural: zamknięte
283 label_total: Ogółem
284 label_total: Ogółem
284 label_permissions: Uprawnienia
285 label_permissions: Uprawnienia
285 label_current_status: Obecny status
286 label_current_status: Obecny status
286 label_new_statuses_allowed: Uprawnione nowe statusy
287 label_new_statuses_allowed: Uprawnione nowe statusy
287 label_all: wszystko
288 label_all: wszystko
288 label_none: brak
289 label_none: brak
289 label_next: Następne
290 label_next: Następne
290 label_previous: Poprzednie
291 label_previous: Poprzednie
291 label_used_by: Używane przez
292 label_used_by: Używane przez
292 label_details: Szczegóły
293 label_details: Szczegóły
293 label_add_note: Dodaj notatkę
294 label_add_note: Dodaj notatkę
294 label_per_page: Na stronę
295 label_per_page: Na stronę
295 label_calendar: Kalendarz
296 label_calendar: Kalendarz
296 label_months_from: miesiące od
297 label_months_from: miesiące od
297 label_gantt: Gantt
298 label_gantt: Gantt
298 label_internal: Wewnętrzny
299 label_internal: Wewnętrzny
299 label_last_changes: ostatnie %d zmian
300 label_last_changes: ostatnie %d zmian
300 label_change_view_all: Pokaż wszystkie zmiany
301 label_change_view_all: Pokaż wszystkie zmiany
301 label_personalize_page: Personalizuj tą stronę
302 label_personalize_page: Personalizuj tą stronę
302 label_comment: Komentarz
303 label_comment: Komentarz
303 label_comment_plural: Komentarze
304 label_comment_plural: Komentarze
304 label_comment_add: Dodaj komentarz
305 label_comment_add: Dodaj komentarz
305 label_comment_added: Komentarz dodany
306 label_comment_added: Komentarz dodany
306 label_comment_delete: Usuń komentarze
307 label_comment_delete: Usuń komentarze
307 label_query: Dowolne zapytanie
308 label_query: Dowolne zapytanie
308 label_query_plural: Dowolne zapytania
309 label_query_plural: Dowolne zapytania
309 label_query_new: Nowe zapytanie
310 label_query_new: Nowe zapytanie
310 label_filter_add: Dodaj filtr
311 label_filter_add: Dodaj filtr
311 label_filter_plural: Filtry
312 label_filter_plural: Filtry
312 label_equals: jest
313 label_equals: jest
313 label_not_equals: nie jest
314 label_not_equals: nie jest
314 label_in_less_than: w mniejszych od
315 label_in_less_than: w mniejszych od
315 label_in_more_than: w większych niż
316 label_in_more_than: w większych niż
316 label_in: w
317 label_in: w
317 label_today: dzisiaj
318 label_today: dzisiaj
318 label_less_than_ago: dni mniej
319 label_less_than_ago: dni mniej
319 label_more_than_ago: dni więcej
320 label_more_than_ago: dni więcej
320 label_ago: dni temu
321 label_ago: dni temu
321 label_contains: zawiera
322 label_contains: zawiera
322 label_not_contains: nie zawiera
323 label_not_contains: nie zawiera
323 label_day_plural: dni
324 label_day_plural: dni
324 label_repository: Repozytorium
325 label_repository: Repozytorium
325 label_browse: Przegląd
326 label_browse: Przegląd
326 label_modification: %d modyfikacja
327 label_modification: %d modyfikacja
327 label_modification_plural: %d modyfikacja
328 label_modification_plural: %d modyfikacja
328 label_revision: Zmiana
329 label_revision: Zmiana
329 label_revision_plural: Zmiany
330 label_revision_plural: Zmiany
330 label_added: dodane
331 label_added: dodane
331 label_modified: zmodufikowane
332 label_modified: zmodufikowane
332 label_deleted: usunięte
333 label_deleted: usunięte
333 label_latest_revision: Ostatnia zmiana
334 label_latest_revision: Ostatnia zmiana
334 label_latest_revision_plural: Ostatnie zmiany
335 label_latest_revision_plural: Ostatnie zmiany
335 label_view_revisions: Pokaż zmiany
336 label_view_revisions: Pokaż zmiany
336 label_max_size: Maksymalny rozmiar
337 label_max_size: Maksymalny rozmiar
337 label_on: 'z'
338 label_on: 'z'
338 label_sort_highest: Przesuń na górę
339 label_sort_highest: Przesuń na górę
339 label_sort_higher: Do góry
340 label_sort_higher: Do góry
340 label_sort_lower: Do dołu
341 label_sort_lower: Do dołu
341 label_sort_lowest: Przesuń na dół
342 label_sort_lowest: Przesuń na dół
342 label_roadmap: Mapa
343 label_roadmap: Mapa
343 label_roadmap_due_in: W czasie
344 label_roadmap_due_in: W czasie
344 label_roadmap_no_issues: Brak zagadnień do tej wersji
345 label_roadmap_no_issues: Brak zagadnień do tej wersji
345 label_search: Szukaj
346 label_search: Szukaj
346 label_result_plural: Rezultatów
347 label_result_plural: Rezultatów
347 label_all_words: Wszystkie słowa
348 label_all_words: Wszystkie słowa
348 label_wiki: Wiki
349 label_wiki: Wiki
349 label_wiki_edit: Edycja wiki
350 label_wiki_edit: Edycja wiki
350 label_wiki_edit_plural: Edycje wiki
351 label_wiki_edit_plural: Edycje wiki
351 label_wiki_page: Strona wiki
352 label_wiki_page: Strona wiki
352 label_wiki_page_plural: Strony wiki
353 label_wiki_page_plural: Strony wiki
353 label_index_by_title: Indeks
354 label_index_by_title: Indeks
354 label_index_by_date: Index by date
355 label_index_by_date: Index by date
355 label_current_version: Obecna wersja
356 label_current_version: Obecna wersja
356 label_preview: Podgląd
357 label_preview: Podgląd
357 label_feed_plural: Ilość RSS
358 label_feed_plural: Ilość RSS
358 label_changes_details: Szczegóły wszystkich zmian
359 label_changes_details: Szczegóły wszystkich zmian
359 label_issue_tracking: Śledzenie zagadnień
360 label_issue_tracking: Śledzenie zagadnień
360 label_spent_time: Spędzony czas
361 label_spent_time: Spędzony czas
361 label_f_hour: %.2f godzina
362 label_f_hour: %.2f godzina
362 label_f_hour_plural: %.2f godzin
363 label_f_hour_plural: %.2f godzin
363 label_time_tracking: Śledzenie czasu
364 label_time_tracking: Śledzenie czasu
364 label_change_plural: Zmiany
365 label_change_plural: Zmiany
365 label_statistics: Statystyki
366 label_statistics: Statystyki
366 label_commits_per_month: Wrzutek CVS w miesiącu
367 label_commits_per_month: Wrzutek CVS w miesiącu
367 label_commits_per_author: Wrzutek CVS przez autora
368 label_commits_per_author: Wrzutek CVS przez autora
368 label_view_diff: Pokaż różnice
369 label_view_diff: Pokaż różnice
369 label_diff_inline: w linii
370 label_diff_inline: w linii
370 label_diff_side_by_side: obok siebie
371 label_diff_side_by_side: obok siebie
371 label_options: Opcje
372 label_options: Opcje
372 label_copy_workflow_from: Kopiuj przepływ z
373 label_copy_workflow_from: Kopiuj przepływ z
373 label_permissions_report: Raport uprawnień
374 label_permissions_report: Raport uprawnień
374 label_watched_issues: Obserwowane zagadnienia
375 label_watched_issues: Obserwowane zagadnienia
375 label_related_issues: Powiązane zagadnienia
376 label_related_issues: Powiązane zagadnienia
376 label_applied_status: Stosowany status
377 label_applied_status: Stosowany status
377 label_loading: Ładowanie...
378 label_loading: Ładowanie...
378 label_relation_new: Nowe powiązanie
379 label_relation_new: Nowe powiązanie
379 label_relation_delete: Usuń powiązanie
380 label_relation_delete: Usuń powiązanie
380 label_relates_to: powiązane z
381 label_relates_to: powiązane z
381 label_duplicates: duplikaty
382 label_duplicates: duplikaty
382 label_blocks: blokady
383 label_blocks: blokady
383 label_blocked_by: zablokowane przez
384 label_blocked_by: zablokowane przez
384 label_precedes: poprzedza
385 label_precedes: poprzedza
385 label_follows: podąża
386 label_follows: podąża
386 label_end_to_start: koniec do początku
387 label_end_to_start: koniec do początku
387 label_end_to_end: koniec do końca
388 label_end_to_end: koniec do końca
388 label_start_to_start: początek do początku
389 label_start_to_start: początek do początku
389 label_start_to_end: początek do końca
390 label_start_to_end: początek do końca
390 label_stay_logged_in: Pozostań zalogowany
391 label_stay_logged_in: Pozostań zalogowany
391 label_disabled: zablokowany
392 label_disabled: zablokowany
392 label_show_completed_versions: Pokaż kompletne wersje
393 label_show_completed_versions: Pokaż kompletne wersje
393 label_me: ja
394 label_me: ja
394 label_board: Forum
395 label_board: Forum
395 label_board_new: Nowe forum
396 label_board_new: Nowe forum
396 label_board_plural: Fora
397 label_board_plural: Fora
397 label_topic_plural: Tematy
398 label_topic_plural: Tematy
398 label_message_plural: Wiadomości
399 label_message_plural: Wiadomości
399 label_message_last: Ostatnia wiadomość
400 label_message_last: Ostatnia wiadomość
400 label_message_new: Nowa wiadomość
401 label_message_new: Nowa wiadomość
401 label_reply_plural: Odpowiedzi
402 label_reply_plural: Odpowiedzi
402 label_send_information: Wyślij informację użytkownikowi
403 label_send_information: Wyślij informację użytkownikowi
403 label_year: Rok
404 label_year: Rok
404 label_month: Miesiąc
405 label_month: Miesiąc
405 label_week: Tydzień
406 label_week: Tydzień
406 label_date_from: Z
407 label_date_from: Z
407 label_date_to: Do
408 label_date_to: Do
408 label_language_based: Na podstawie języka
409 label_language_based: Na podstawie języka
409
410
410 button_login: Login
411 button_login: Login
411 button_submit: Wyślij
412 button_submit: Wyślij
412 button_save: Zapisz
413 button_save: Zapisz
413 button_check_all: Zaznacz wszystko
414 button_check_all: Zaznacz wszystko
414 button_uncheck_all: Odznacz wszystko
415 button_uncheck_all: Odznacz wszystko
415 button_delete: Usuń
416 button_delete: Usuń
416 button_create: Stwórz
417 button_create: Stwórz
417 button_test: Testuj
418 button_test: Testuj
418 button_edit: Edytuj
419 button_edit: Edytuj
419 button_add: Dodaj
420 button_add: Dodaj
420 button_change: Zmień
421 button_change: Zmień
421 button_apply: Ustaw
422 button_apply: Ustaw
422 button_clear: Wyczyść
423 button_clear: Wyczyść
423 button_lock: Zablokuj
424 button_lock: Zablokuj
424 button_unlock: Odblokuj
425 button_unlock: Odblokuj
425 button_download: Pobierz
426 button_download: Pobierz
426 button_list: Lista
427 button_list: Lista
427 button_view: Pokaż
428 button_view: Pokaż
428 button_move: Przenieś
429 button_move: Przenieś
429 button_back: Wstecz
430 button_back: Wstecz
430 button_cancel: Anuluj
431 button_cancel: Anuluj
431 button_activate: Aktywuj
432 button_activate: Aktywuj
432 button_sort: Sortuj
433 button_sort: Sortuj
433 button_log_time: Logowanie czasu
434 button_log_time: Logowanie czasu
434 button_rollback: Przywróc do tej wersji
435 button_rollback: Przywróc do tej wersji
435 button_watch: Obserwuj
436 button_watch: Obserwuj
436 button_unwatch: Nie obserwuj
437 button_unwatch: Nie obserwuj
437 button_reply: Odpowiedz
438 button_reply: Odpowiedz
438 button_archive: Archiwizuj
439 button_archive: Archiwizuj
439 button_unarchive: Przywróc z archiwum
440 button_unarchive: Przywróc z archiwum
440
441
441 status_active: aktywny
442 status_active: aktywny
442 status_registered: zarejestrowany
443 status_registered: zarejestrowany
443 status_locked: zablokowany
444 status_locked: zablokowany
444
445
445 text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony mailem.
446 text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony mailem.
446 text_regexp_info: np. ^[A-Z0-9]+$
447 text_regexp_info: np. ^[A-Z0-9]+$
447 text_min_max_length_info: 0 oznacza brak restrykcji
448 text_min_max_length_info: 0 oznacza brak restrykcji
448 text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane?
449 text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane?
449 text_workflow_edit: Zaznacz rolę i typ zagadnienia do edycji przepływu
450 text_workflow_edit: Zaznacz rolę i typ zagadnienia do edycji przepływu
450 text_are_you_sure: Jesteś pewien ?
451 text_are_you_sure: Jesteś pewien ?
451 text_journal_changed: zmienione %s do %s
452 text_journal_changed: zmienione %s do %s
452 text_journal_set_to: ustawione na %s
453 text_journal_set_to: ustawione na %s
453 text_journal_deleted: usunięte
454 text_journal_deleted: usunięte
454 text_tip_task_begin_day: zadanie zaczynające się dzisiaj
455 text_tip_task_begin_day: zadanie zaczynające się dzisiaj
455 text_tip_task_end_day: zadanie kończące się dzisiaj
456 text_tip_task_end_day: zadanie kończące się dzisiaj
456 text_tip_task_begin_end_day: zadanie zaczynające i kończące się dzisiaj
457 text_tip_task_begin_end_day: zadanie zaczynające i kończące się dzisiaj
457 text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.'
458 text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.'
458 text_caracters_maximum: %d znaków maksymalnie.
459 text_caracters_maximum: %d znaków maksymalnie.
459 text_length_between: Długość pomiędzy %d i %d znaków.
460 text_length_between: Długość pomiędzy %d i %d znaków.
460 text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego typu zagadnienia
461 text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego typu zagadnienia
461 text_unallowed_characters: Niedozwolone znaki
462 text_unallowed_characters: Niedozwolone znaki
462 text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
463 text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
463 text_issues_ref_in_commit_messages: Zagadnienia odnoszące i ustalające we wrzutkach CVS
464 text_issues_ref_in_commit_messages: Zagadnienia odnoszące i ustalające we wrzutkach CVS
464
465
465 default_role_manager: Kierownik
466 default_role_manager: Kierownik
466 default_role_developper: Programista
467 default_role_developper: Programista
467 default_role_reporter: Wprowadzajacy
468 default_role_reporter: Wprowadzajacy
468 default_tracker_bug: Błąd
469 default_tracker_bug: Błąd
469 default_tracker_feature: Cecha
470 default_tracker_feature: Cecha
470 default_tracker_support: Wsparcie
471 default_tracker_support: Wsparcie
471 default_issue_status_new: Nowy
472 default_issue_status_new: Nowy
472 default_issue_status_assigned: Przypisany
473 default_issue_status_assigned: Przypisany
473 default_issue_status_resolved: Rozwiązany
474 default_issue_status_resolved: Rozwiązany
474 default_issue_status_feedback: Odpowiedź
475 default_issue_status_feedback: Odpowiedź
475 default_issue_status_closed: Zamknięty
476 default_issue_status_closed: Zamknięty
476 default_issue_status_rejected: Odrzucony
477 default_issue_status_rejected: Odrzucony
477 default_doc_category_user: Dokumentacja użytkownika
478 default_doc_category_user: Dokumentacja użytkownika
478 default_doc_category_tech: Dokumentacja techniczna
479 default_doc_category_tech: Dokumentacja techniczna
479 default_priority_low: Niski
480 default_priority_low: Niski
480 default_priority_normal: Normalny
481 default_priority_normal: Normalny
481 default_priority_high: Wysoki
482 default_priority_high: Wysoki
482 default_priority_urgent: Pilny
483 default_priority_urgent: Pilny
483 default_priority_immediate: Natyczmiastowy
484 default_priority_immediate: Natyczmiastowy
484 default_activity_design: Projektowanie
485 default_activity_design: Projektowanie
485 default_activity_development: Rozwój
486 default_activity_development: Rozwój
486
487
487 enumeration_issue_priorities: Priorytety zagadnień
488 enumeration_issue_priorities: Priorytety zagadnień
488 enumeration_doc_categories: Kategorie dokumentów
489 enumeration_doc_categories: Kategorie dokumentów
489 enumeration_activities: Działania (śledzenie czasu)
490 enumeration_activities: Działania (śledzenie czasu)
490 button_rename: Zmień nazwę
491 button_rename: Zmień nazwę
491 text_issue_category_destroy_question: Zagadnienia (%d) są przypisane do tej kategorii. Co chcesz uczynić?
492 text_issue_category_destroy_question: Zagadnienia (%d) są przypisane do tej kategorii. Co chcesz uczynić?
492 label_feeds_access_key_created_on: Klucz dostępu RSS stworzony %s dni temu
493 label_feeds_access_key_created_on: Klucz dostępu RSS stworzony %s dni temu
493 setting_cross_project_issue_relations: Zezwól na powiązania zagadnień między projektami
494 setting_cross_project_issue_relations: Zezwól na powiązania zagadnień między projektami
494 label_roadmap_overdue: %s spóźnienia
495 label_roadmap_overdue: %s spóźnienia
495 label_module_plural: Moduły
496 label_module_plural: Moduły
496 label_this_week: ten tydzień
497 label_this_week: ten tydzień
497 label_jump_to_a_project: Skocz do projektu...
498 label_jump_to_a_project: Skocz do projektu...
498 field_assignable: Zagadnienia mogą być przypisane do tej roli
499 field_assignable: Zagadnienia mogą być przypisane do tej roli
499 label_sort_by: Sortuj po %s
500 label_sort_by: Sortuj po %s
500 text_issue_updated: Zagadnienie %s zostało zaktualizowane.
501 text_issue_updated: Zagadnienie %s zostało zaktualizowane.
501 notice_feeds_access_key_reseted: Twój klucz dostępu RSS został zrestetowany.
502 notice_feeds_access_key_reseted: Twój klucz dostępu RSS został zrestetowany.
502 field_redirect_existing_links: Przekierowanie istniejących odnośników
503 field_redirect_existing_links: Przekierowanie istniejących odnośników
503 text_issue_category_reassign_to: Przydziel zagadnienie do tej kategorii
504 text_issue_category_reassign_to: Przydziel zagadnienie do tej kategorii
504 notice_email_sent: Email został wysłany do %s
505 notice_email_sent: Email został wysłany do %s
505 text_issue_added: Zagadnienie %s zostało wprowadzone.
506 text_issue_added: Zagadnienie %s zostało wprowadzone.
506 text_wiki_destroy_confirmation: Jesteś pewien, że chcesz usunąć to wiki i całą jego zawartość ?
507 text_wiki_destroy_confirmation: Jesteś pewien, że chcesz usunąć to wiki i całą jego zawartość ?
507 notice_email_error: Wystąpił błąd w trakcie wysyłania maila (%s)
508 notice_email_error: Wystąpił błąd w trakcie wysyłania maila (%s)
508 label_updated_time: Zaktualizowane %s temu
509 label_updated_time: Zaktualizowane %s temu
509 text_issue_category_destroy_assignments: Usuń przydziały kategorii
510 text_issue_category_destroy_assignments: Usuń przydziały kategorii
510 label_send_test_email: Wyślij próbny email
511 label_send_test_email: Wyślij próbny email
511 button_reset: Resetuj
512 button_reset: Resetuj
512 label_added_time_by: Dodane przez %s %s temu
513 label_added_time_by: Dodane przez %s %s temu
513 field_estimated_hours: Szacowany czas
514 field_estimated_hours: Szacowany czas
514 label_file_plural: Pliki
515 label_file_plural: Pliki
515 label_changeset_plural: Zestawienia zmian
516 label_changeset_plural: Zestawienia zmian
516 field_column_names: Nazwy kolumn
517 field_column_names: Nazwy kolumn
517 label_default_columns: Domyślne kolumny
518 label_default_columns: Domyślne kolumny
518 setting_issue_list_default_columns: Domyślne kolumny wiświetlane na liście zagadnień
519 setting_issue_list_default_columns: Domyślne kolumny wiświetlane na liście zagadnień
519 setting_repositories_encodings: Kodowanie repozytoriów
520 setting_repositories_encodings: Kodowanie repozytoriów
520 notice_no_issue_selected: "Nie wybrano zagadnienia! Zaznacz zagadnienie, które chcesz edytować."
521 notice_no_issue_selected: "Nie wybrano zagadnienia! Zaznacz zagadnienie, które chcesz edytować."
521 label_bulk_edit_selected_issues: Zbiorowa edycja zagadnień
522 label_bulk_edit_selected_issues: Zbiorowa edycja zagadnień
522 label_no_change_option: (Bez zmian)
523 label_no_change_option: (Bez zmian)
523 notice_failed_to_save_issues: "Błąd podczas zapisu zagadnień %d z %d zaznaczonych: %s."
524 notice_failed_to_save_issues: "Błąd podczas zapisu zagadnień %d z %d zaznaczonych: %s."
524 label_theme: Temat
525 label_theme: Temat
525 label_default: Domyślne
526 label_default: Domyślne
526 label_search_titles_only: Przeszukuj tylko tytuły
527 label_search_titles_only: Przeszukuj tylko tytuły
527 label_nobody: nikt
528 label_nobody: nikt
528 button_change_password: Zmień hasło
529 button_change_password: Zmień hasło
529 text_user_mail_option: "W przypadku niezaznaczonych projektów, będziesz otrzymywał powiadomienia tylko na temat zagadnien, które obserwujesz, lub w których bierzesz udział (np. jesteś autorem lub adresatem)."
530 text_user_mail_option: "W przypadku niezaznaczonych projektów, będziesz otrzymywał powiadomienia tylko na temat zagadnien, które obserwujesz, lub w których bierzesz udział (np. jesteś autorem lub adresatem)."
530 label_user_mail_option_selected: "Tylko dla każdego zdarzenia w wybranych projektach..."
531 label_user_mail_option_selected: "Tylko dla każdego zdarzenia w wybranych projektach..."
531 label_user_mail_option_all: "Dla każdego zdarzenia w każdym moim projekcie"
532 label_user_mail_option_all: "Dla każdego zdarzenia w każdym moim projekcie"
532 label_user_mail_option_none: "Tylko to co obserwuje lub w czym biorę udział"
533 label_user_mail_option_none: "Tylko to co obserwuje lub w czym biorę udział"
533 setting_emails_footer: Stopka e-mail
534 setting_emails_footer: Stopka e-mail
534 label_float: Liczba rzeczywista
535 label_float: Liczba rzeczywista
535 button_copy: Kopia
536 button_copy: Kopia
536 mail_body_account_information_external: Możesz użyć twojego "%s" konta do zalogowania do Redmine.
537 mail_body_account_information_external: Możesz użyć twojego "%s" konta do zalogowania do Redmine.
537 mail_body_account_information: Twoje konto w Redmine
538 mail_body_account_information: Twoje konto w Redmine
538 setting_protocol: Protokoł
539 setting_protocol: Protokoł
539 label_user_mail_no_self_notified: "Nie chcę powiadomień o zmianach, które sam wprowadzam."
540 label_user_mail_no_self_notified: "Nie chcę powiadomień o zmianach, które sam wprowadzam."
540 setting_time_format: Format czasu
541 setting_time_format: Format czasu
541 label_registration_activation_by_email: aktywacja konta przez e-mail
542 label_registration_activation_by_email: aktywacja konta przez e-mail
542 mail_subject_account_activation_request: Zapytanie aktywacyjne konta Redmine
543 mail_subject_account_activation_request: Zapytanie aktywacyjne konta Redmine
543 mail_body_account_activation_request: 'Zarejestrowano nowego użytkownika: (%s). Konto oczekuje na twoje zatwierdzenie:'
544 mail_body_account_activation_request: 'Zarejestrowano nowego użytkownika: (%s). Konto oczekuje na twoje zatwierdzenie:'
544 label_registration_automatic_activation: automatyczna aktywacja kont
545 label_registration_automatic_activation: automatyczna aktywacja kont
545 label_registration_manual_activation: manualna aktywacja kont
546 label_registration_manual_activation: manualna aktywacja kont
546 notice_account_pending: "Twoje konto zostało utworzone i oczekuje na zatwierdzenie administratora."
547 notice_account_pending: "Twoje konto zostało utworzone i oczekuje na zatwierdzenie administratora."
547 field_time_zone: Strefa czasowa
548 field_time_zone: Strefa czasowa
548 text_caracters_minimum: Musi być nie krótsze niż %d znaków.
549 text_caracters_minimum: Musi być nie krótsze niż %d znaków.
549 setting_bcc_recipients: Odbiorcy kopii tajnej (kt/bcc)
550 setting_bcc_recipients: Odbiorcy kopii tajnej (kt/bcc)
550 button_annotate: Adnotuj
551 button_annotate: Adnotuj
551 label_issues_by: Zagadnienia wprowadzone przez %s
552 label_issues_by: Zagadnienia wprowadzone przez %s
552 field_searchable: Przeszukiwalne
553 field_searchable: Przeszukiwalne
553 label_display_per_page: 'Na stronę: %s'
554 label_display_per_page: 'Na stronę: %s'
554 setting_per_page_options: Opcje ilości obiektów na stronie
555 setting_per_page_options: Opcje ilości obiektów na stronie
555 label_age: Wiek
556 label_age: Wiek
556 notice_default_data_loaded: Domyślna konfiguracja została pomyślnie załadowana.
557 notice_default_data_loaded: Domyślna konfiguracja została pomyślnie załadowana.
557 text_load_default_configuration: Załaduj domyślną konfigurację
558 text_load_default_configuration: Załaduj domyślną konfigurację
558 text_no_configuration_data: "Role użytkowników, typy zagadnień, statusy zagadnień oraz przepływ pracy nie zostały jeszcze skonfigurowane.\nJest wysoce rekomendowane by załadować domyślną konfigurację. Po załadowaniu będzie możliwość edycji tych danych."
559 text_no_configuration_data: "Role użytkowników, typy zagadnień, statusy zagadnień oraz przepływ pracy nie zostały jeszcze skonfigurowane.\nJest wysoce rekomendowane by załadować domyślną konfigurację. Po załadowaniu będzie możliwość edycji tych danych."
559 error_can_t_load_default_data: "Domyślna konfiguracja nie może być załadowana: %s"
560 error_can_t_load_default_data: "Domyślna konfiguracja nie może być załadowana: %s"
560 button_update: Uaktualnij
561 button_update: Uaktualnij
561 label_change_properties: Zmień właściwości
562 label_change_properties: Zmień właściwości
562 label_general: Ogólne
563 label_general: Ogólne
563 label_repository_plural: Repozytoria
564 label_repository_plural: Repozytoria
564 label_associated_revisions: Associated revisions
565 label_associated_revisions: Associated revisions
@@ -1,564 +1,565
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dia
8 actionview_datehelper_time_in_words_day: 1 dia
9 actionview_datehelper_time_in_words_day_plural: %d dias
9 actionview_datehelper_time_in_words_day_plural: %d dias
10 actionview_datehelper_time_in_words_hour_about: sobre uma hora
10 actionview_datehelper_time_in_words_hour_about: sobre uma hora
11 actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas
12 actionview_datehelper_time_in_words_hour_about_single: sobre uma hora
12 actionview_datehelper_time_in_words_hour_about_single: sobre uma hora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos que um minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos que um minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: menos que um segundo
18 actionview_datehelper_time_in_words_second_less_than: menos que um segundo
19 actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos
19 actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos
20 actionview_instancetag_blank_option: Selecione
20 actionview_instancetag_blank_option: Selecione
21
21
22 activerecord_error_inclusion: nao esta incluido na lista
22 activerecord_error_inclusion: nao esta incluido na lista
23 activerecord_error_exclusion: esta reservado
23 activerecord_error_exclusion: esta reservado
24 activerecord_error_invalid: e invalido
24 activerecord_error_invalid: e invalido
25 activerecord_error_confirmation: confirmacao nao confere
25 activerecord_error_confirmation: confirmacao nao confere
26 activerecord_error_accepted: deve ser aceito
26 activerecord_error_accepted: deve ser aceito
27 activerecord_error_empty: nao pode ser vazio
27 activerecord_error_empty: nao pode ser vazio
28 activerecord_error_blank: nao pode estar em branco
28 activerecord_error_blank: nao pode estar em branco
29 activerecord_error_too_long: e muito longo
29 activerecord_error_too_long: e muito longo
30 activerecord_error_too_short: e muito comprido
30 activerecord_error_too_short: e muito comprido
31 activerecord_error_wrong_length: esta com o comprimento errado
31 activerecord_error_wrong_length: esta com o comprimento errado
32 activerecord_error_taken: ja esta examinado
32 activerecord_error_taken: ja esta examinado
33 activerecord_error_not_a_number: nao e um numero
33 activerecord_error_not_a_number: nao e um numero
34 activerecord_error_not_a_date: nao e uma data valida
34 activerecord_error_not_a_date: nao e uma data valida
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nao'
45 general_text_No: 'Nao'
46 general_text_Yes: 'Sim'
46 general_text_Yes: 'Sim'
47 general_text_no: 'nao'
47 general_text_no: 'nao'
48 general_text_yes: 'sim'
48 general_text_yes: 'sim'
49 general_lang_name: 'Portugues Brasileiro'
49 general_lang_name: 'Portugues Brasileiro'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
53 general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Conta foi alterada com sucesso.
56 notice_account_updated: Conta foi alterada com sucesso.
57 notice_account_invalid_creditentials: Usuario ou senha invalido.
57 notice_account_invalid_creditentials: Usuario ou senha invalido.
58 notice_account_password_updated: Senha foi alterada com sucesso.
58 notice_account_password_updated: Senha foi alterada com sucesso.
59 notice_account_wrong_password: Senha errada.
59 notice_account_wrong_password: Senha errada.
60 notice_account_register_done: Conta foi criada com sucesso.
60 notice_account_register_done: Conta foi criada com sucesso.
61 notice_account_unknown_email: Usuario desconhecido.
61 notice_account_unknown_email: Usuario desconhecido.
62 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
62 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
63 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
63 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
64 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
64 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
65 notice_successful_create: Criado com sucesso.
65 notice_successful_create: Criado com sucesso.
66 notice_successful_update: Alterado com sucesso.
66 notice_successful_update: Alterado com sucesso.
67 notice_successful_delete: Apagado com sucesso.
67 notice_successful_delete: Apagado com sucesso.
68 notice_successful_connection: Conectado com sucesso.
68 notice_successful_connection: Conectado com sucesso.
69 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
69 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
70 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
70 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
71 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
71 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
72 notice_not_authorized: You are not authorized to access this page.
72 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
76
77 mail_subject_lost_password: Sua senha do redMine.
77 mail_subject_lost_password: Sua senha do redMine.
78 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
78 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
79 mail_subject_register: Ativacao de conta do redMine.
79 mail_subject_register: Ativacao de conta do redMine.
80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
81
81
82 gui_validation_error: 1 erro
82 gui_validation_error: 1 erro
83 gui_validation_error_plural: %d erros
83 gui_validation_error_plural: %d erros
84
84
85 field_name: Nome
85 field_name: Nome
86 field_description: Descricao
86 field_description: Descricao
87 field_summary: Sumario
87 field_summary: Sumario
88 field_is_required: Obrigatorio
88 field_is_required: Obrigatorio
89 field_firstname: Primeiro nome
89 field_firstname: Primeiro nome
90 field_lastname: Ultimo nome
90 field_lastname: Ultimo nome
91 field_mail: Email
91 field_mail: Email
92 field_filename: Arquivo
92 field_filename: Arquivo
93 field_filesize: Tamanho
93 field_filesize: Tamanho
94 field_downloads: Downloads
94 field_downloads: Downloads
95 field_author: Autor
95 field_author: Autor
96 field_created_on: Criado
96 field_created_on: Criado
97 field_updated_on: Alterado
97 field_updated_on: Alterado
98 field_field_format: Formato
98 field_field_format: Formato
99 field_is_for_all: Para todos os projetos
99 field_is_for_all: Para todos os projetos
100 field_possible_values: Possiveis valores
100 field_possible_values: Possiveis valores
101 field_regexp: Expressao regular
101 field_regexp: Expressao regular
102 field_min_length: Tamanho minimo
102 field_min_length: Tamanho minimo
103 field_max_length: Tamanho maximo
103 field_max_length: Tamanho maximo
104 field_value: Valor
104 field_value: Valor
105 field_category: Categoria
105 field_category: Categoria
106 field_title: Titulo
106 field_title: Titulo
107 field_project: Projeto
107 field_project: Projeto
108 field_issue: Tarefa
108 field_issue: Tarefa
109 field_status: Status
109 field_status: Status
110 field_notes: Notas
110 field_notes: Notas
111 field_is_closed: Tarefa fechada
111 field_is_closed: Tarefa fechada
112 field_is_default: Status padrao
112 field_is_default: Status padrao
113 field_tracker: Tipo
113 field_tracker: Tipo
114 field_subject: Titulo
114 field_subject: Titulo
115 field_due_date: Data devida
115 field_due_date: Data devida
116 field_assigned_to: Atribuido para
116 field_assigned_to: Atribuido para
117 field_priority: Prioridade
117 field_priority: Prioridade
118 field_fixed_version: Versao corrigida
118 field_fixed_version: Versao corrigida
119 field_user: Usuario
119 field_user: Usuario
120 field_role: Regra
120 field_role: Regra
121 field_homepage: Pagina inicial
121 field_homepage: Pagina inicial
122 field_is_public: Publico
122 field_is_public: Publico
123 field_parent: Sub-projeto de
123 field_parent: Sub-projeto de
124 field_is_in_chlog: Tarefas mostradas no changelog
124 field_is_in_chlog: Tarefas mostradas no changelog
125 field_is_in_roadmap: Tarefas mostradas no roadmap
125 field_is_in_roadmap: Tarefas mostradas no roadmap
126 field_login: Login
126 field_login: Login
127 field_mail_notification: Notificacoes por email
127 field_mail_notification: Notificacoes por email
128 field_admin: Administrador
128 field_admin: Administrador
129 field_last_login_on: Ultima conexao
129 field_last_login_on: Ultima conexao
130 field_language: Lingua
130 field_language: Lingua
131 field_effective_date: Data
131 field_effective_date: Data
132 field_password: Senha
132 field_password: Senha
133 field_new_password: Nova senha
133 field_new_password: Nova senha
134 field_password_confirmation: Confirmacao
134 field_password_confirmation: Confirmacao
135 field_version: Versao
135 field_version: Versao
136 field_type: Tipo
136 field_type: Tipo
137 field_host: Servidor
137 field_host: Servidor
138 field_port: Porta
138 field_port: Porta
139 field_account: Conta
139 field_account: Conta
140 field_base_dn: Base DN
140 field_base_dn: Base DN
141 field_attr_login: Atributo login
141 field_attr_login: Atributo login
142 field_attr_firstname: Atributo primeiro nome
142 field_attr_firstname: Atributo primeiro nome
143 field_attr_lastname: Atributo ultimo nome
143 field_attr_lastname: Atributo ultimo nome
144 field_attr_mail: Atributo email
144 field_attr_mail: Atributo email
145 field_onthefly: Criacao de usuario on-the-fly
145 field_onthefly: Criacao de usuario on-the-fly
146 field_start_date: Inicio
146 field_start_date: Inicio
147 field_done_ratio: %% Terminado
147 field_done_ratio: %% Terminado
148 field_auth_source: Modo de autenticacao
148 field_auth_source: Modo de autenticacao
149 field_hide_mail: Esconder meu email
149 field_hide_mail: Esconder meu email
150 field_comments: Comentario
150 field_comments: Comentario
151 field_url: URL
151 field_url: URL
152 field_start_page: Pagina inicial
152 field_start_page: Pagina inicial
153 field_subproject: Sub-projeto
153 field_subproject: Sub-projeto
154 field_hours: Horas
154 field_hours: Horas
155 field_activity: Atividade
155 field_activity: Atividade
156 field_spent_on: Data
156 field_spent_on: Data
157 field_identifier: Identificador
157 field_identifier: Identificador
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 field_assignable: Issues can be assigned to this role
162 field_redirect_existing_links: Redirect existing links
162 field_redirect_existing_links: Redirect existing links
163 field_estimated_hours: Estimated time
163 field_estimated_hours: Estimated time
164 field_default_value: Padrao
164
165
165 setting_app_title: Titulo da aplicacao
166 setting_app_title: Titulo da aplicacao
166 setting_app_subtitle: Sub-titulo da aplicacao
167 setting_app_subtitle: Sub-titulo da aplicacao
167 setting_welcome_text: Texto de boa-vinda
168 setting_welcome_text: Texto de boa-vinda
168 setting_default_language: Lingua padrao
169 setting_default_language: Lingua padrao
169 setting_login_required: Autenticacao obrigatoria
170 setting_login_required: Autenticacao obrigatoria
170 setting_self_registration: Registro de si mesmo permitido
171 setting_self_registration: Registro de si mesmo permitido
171 setting_attachment_max_size: Tamanho maximo do anexo
172 setting_attachment_max_size: Tamanho maximo do anexo
172 setting_issues_export_limit: Limite de exportacao das tarefas
173 setting_issues_export_limit: Limite de exportacao das tarefas
173 setting_mail_from: Email enviado de
174 setting_mail_from: Email enviado de
174 setting_host_name: Servidor
175 setting_host_name: Servidor
175 setting_text_formatting: Formato do texto
176 setting_text_formatting: Formato do texto
176 setting_wiki_compression: Compactacao do historio do Wiki
177 setting_wiki_compression: Compactacao do historio do Wiki
177 setting_feeds_limit: Limite do Feed
178 setting_feeds_limit: Limite do Feed
178 setting_autofetch_changesets: Autofetch commits
179 setting_autofetch_changesets: Autofetch commits
179 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
180 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
180 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_fix_keywords: Fixing keywords
182 setting_commit_fix_keywords: Fixing keywords
182 setting_autologin: Autologin
183 setting_autologin: Autologin
183 setting_date_format: Date format
184 setting_date_format: Date format
184 setting_cross_project_issue_relations: Allow cross-project issue relations
185 setting_cross_project_issue_relations: Allow cross-project issue relations
185
186
186 label_user: Usuario
187 label_user: Usuario
187 label_user_plural: Usuarios
188 label_user_plural: Usuarios
188 label_user_new: Novo usuario
189 label_user_new: Novo usuario
189 label_project: Projeto
190 label_project: Projeto
190 label_project_new: Novo projeto
191 label_project_new: Novo projeto
191 label_project_plural: Projetos
192 label_project_plural: Projetos
192 label_project_all: All Projects
193 label_project_all: All Projects
193 label_project_latest: Ultimos projetos
194 label_project_latest: Ultimos projetos
194 label_issue: Tarefa
195 label_issue: Tarefa
195 label_issue_new: Nova tarefa
196 label_issue_new: Nova tarefa
196 label_issue_plural: Tarefas
197 label_issue_plural: Tarefas
197 label_issue_view_all: Ver todas as tarefas
198 label_issue_view_all: Ver todas as tarefas
198 label_document: Documento
199 label_document: Documento
199 label_document_new: Novo documento
200 label_document_new: Novo documento
200 label_document_plural: Documentos
201 label_document_plural: Documentos
201 label_role: Regra
202 label_role: Regra
202 label_role_plural: Regras
203 label_role_plural: Regras
203 label_role_new: Nova regra
204 label_role_new: Nova regra
204 label_role_and_permissions: Regras e permissoes
205 label_role_and_permissions: Regras e permissoes
205 label_member: Membro
206 label_member: Membro
206 label_member_new: Novo membro
207 label_member_new: Novo membro
207 label_member_plural: Membros
208 label_member_plural: Membros
208 label_tracker: Tipo
209 label_tracker: Tipo
209 label_tracker_plural: Tipos
210 label_tracker_plural: Tipos
210 label_tracker_new: Novo tipo
211 label_tracker_new: Novo tipo
211 label_workflow: Workflow
212 label_workflow: Workflow
212 label_issue_status: Status da tarefa
213 label_issue_status: Status da tarefa
213 label_issue_status_plural: Status das tarefas
214 label_issue_status_plural: Status das tarefas
214 label_issue_status_new: Novo status
215 label_issue_status_new: Novo status
215 label_issue_category: Categoria de tarefa
216 label_issue_category: Categoria de tarefa
216 label_issue_category_plural: Categorias de tarefa
217 label_issue_category_plural: Categorias de tarefa
217 label_issue_category_new: Nova categoria
218 label_issue_category_new: Nova categoria
218 label_custom_field: Campo personalizado
219 label_custom_field: Campo personalizado
219 label_custom_field_plural: Campos personalizado
220 label_custom_field_plural: Campos personalizado
220 label_custom_field_new: Novo campo personalizado
221 label_custom_field_new: Novo campo personalizado
221 label_enumerations: Enumeracao
222 label_enumerations: Enumeracao
222 label_enumeration_new: Novo valor
223 label_enumeration_new: Novo valor
223 label_information: Informacao
224 label_information: Informacao
224 label_information_plural: Informacoes
225 label_information_plural: Informacoes
225 label_please_login: Efetue login
226 label_please_login: Efetue login
226 label_register: Registre-se
227 label_register: Registre-se
227 label_password_lost: Perdi a senha
228 label_password_lost: Perdi a senha
228 label_home: Pagina inicial
229 label_home: Pagina inicial
229 label_my_page: Minha pagina
230 label_my_page: Minha pagina
230 label_my_account: Minha conta
231 label_my_account: Minha conta
231 label_my_projects: Meus projetos
232 label_my_projects: Meus projetos
232 label_administration: Administracao
233 label_administration: Administracao
233 label_login: Login
234 label_login: Login
234 label_logout: Logout
235 label_logout: Logout
235 label_help: Ajuda
236 label_help: Ajuda
236 label_reported_issues: Tarefas reportadas
237 label_reported_issues: Tarefas reportadas
237 label_assigned_to_me_issues: Tarefas atribuidas a mim
238 label_assigned_to_me_issues: Tarefas atribuidas a mim
238 label_last_login: Utima conexao
239 label_last_login: Utima conexao
239 label_last_updates: Ultima alteracao
240 label_last_updates: Ultima alteracao
240 label_last_updates_plural: %d Ultimas alteracoes
241 label_last_updates_plural: %d Ultimas alteracoes
241 label_registered_on: Registrado em
242 label_registered_on: Registrado em
242 label_activity: Atividade
243 label_activity: Atividade
243 label_new: Novo
244 label_new: Novo
244 label_logged_as: Logado como
245 label_logged_as: Logado como
245 label_environment: Ambiente
246 label_environment: Ambiente
246 label_authentication: Autenticacao
247 label_authentication: Autenticacao
247 label_auth_source: Modo de autenticacao
248 label_auth_source: Modo de autenticacao
248 label_auth_source_new: Novo modo de autenticacao
249 label_auth_source_new: Novo modo de autenticacao
249 label_auth_source_plural: Modos de autenticacao
250 label_auth_source_plural: Modos de autenticacao
250 label_subproject_plural: Sub-projetos
251 label_subproject_plural: Sub-projetos
251 label_min_max_length: Tamanho min-max
252 label_min_max_length: Tamanho min-max
252 label_list: Lista
253 label_list: Lista
253 label_date: Data
254 label_date: Data
254 label_integer: Inteiro
255 label_integer: Inteiro
255 label_boolean: Boleano
256 label_boolean: Boleano
256 label_string: Texto
257 label_string: Texto
257 label_text: Texto longo
258 label_text: Texto longo
258 label_attribute: Atributo
259 label_attribute: Atributo
259 label_attribute_plural: Atributos
260 label_attribute_plural: Atributos
260 label_download: %d Download
261 label_download: %d Download
261 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
262 label_no_data: Sem dados para mostrar
263 label_no_data: Sem dados para mostrar
263 label_change_status: Mudar status
264 label_change_status: Mudar status
264 label_history: Historico
265 label_history: Historico
265 label_attachment: Arquivo
266 label_attachment: Arquivo
266 label_attachment_new: Novo arquivo
267 label_attachment_new: Novo arquivo
267 label_attachment_delete: Apagar arquivo
268 label_attachment_delete: Apagar arquivo
268 label_attachment_plural: Arquivos
269 label_attachment_plural: Arquivos
269 label_report: Relatorio
270 label_report: Relatorio
270 label_report_plural: Relatorio
271 label_report_plural: Relatorio
271 label_news: Noticias
272 label_news: Noticias
272 label_news_new: Adicionar noticias
273 label_news_new: Adicionar noticias
273 label_news_plural: Noticias
274 label_news_plural: Noticias
274 label_news_latest: Ultimas noticias
275 label_news_latest: Ultimas noticias
275 label_news_view_all: Ver todas as noticias
276 label_news_view_all: Ver todas as noticias
276 label_change_log: Change log
277 label_change_log: Change log
277 label_settings: Ajustes
278 label_settings: Ajustes
278 label_overview: Visao geral
279 label_overview: Visao geral
279 label_version: Versao
280 label_version: Versao
280 label_version_new: Nova versao
281 label_version_new: Nova versao
281 label_version_plural: Versoes
282 label_version_plural: Versoes
282 label_confirmation: Confirmacao
283 label_confirmation: Confirmacao
283 label_export_to: Exportar para
284 label_export_to: Exportar para
284 label_read: Ler...
285 label_read: Ler...
285 label_public_projects: Projetos publicos
286 label_public_projects: Projetos publicos
286 label_open_issues: Aberto
287 label_open_issues: Aberto
287 label_open_issues_plural: Abertos
288 label_open_issues_plural: Abertos
288 label_closed_issues: Fechado
289 label_closed_issues: Fechado
289 label_closed_issues_plural: Fechados
290 label_closed_issues_plural: Fechados
290 label_total: Total
291 label_total: Total
291 label_permissions: Permissoes
292 label_permissions: Permissoes
292 label_current_status: Status atual
293 label_current_status: Status atual
293 label_new_statuses_allowed: Novo status permitido
294 label_new_statuses_allowed: Novo status permitido
294 label_all: todos
295 label_all: todos
295 label_none: nenhum
296 label_none: nenhum
296 label_next: Proximo
297 label_next: Proximo
297 label_previous: Anterior
298 label_previous: Anterior
298 label_used_by: Usado por
299 label_used_by: Usado por
299 label_details: Detalhes
300 label_details: Detalhes
300 label_add_note: Adicionar nota
301 label_add_note: Adicionar nota
301 label_per_page: Por pagina
302 label_per_page: Por pagina
302 label_calendar: Calendario
303 label_calendar: Calendario
303 label_months_from: Meses de
304 label_months_from: Meses de
304 label_gantt: Gantt
305 label_gantt: Gantt
305 label_internal: Interno
306 label_internal: Interno
306 label_last_changes: utlimas %d mudancas
307 label_last_changes: utlimas %d mudancas
307 label_change_view_all: Mostrar todas as mudancas
308 label_change_view_all: Mostrar todas as mudancas
308 label_personalize_page: Personalizar esta pagina
309 label_personalize_page: Personalizar esta pagina
309 label_comment: Comentario
310 label_comment: Comentario
310 label_comment_plural: Comentarios
311 label_comment_plural: Comentarios
311 label_comment_add: Adicionar comentario
312 label_comment_add: Adicionar comentario
312 label_comment_added: Comentario adicionado
313 label_comment_added: Comentario adicionado
313 label_comment_delete: Apagar comentario
314 label_comment_delete: Apagar comentario
314 label_query: Consulta personalizada
315 label_query: Consulta personalizada
315 label_query_plural: Consultas personalizadas
316 label_query_plural: Consultas personalizadas
316 label_query_new: Nova consulta
317 label_query_new: Nova consulta
317 label_filter_add: Adicionar filtro
318 label_filter_add: Adicionar filtro
318 label_filter_plural: Filtros
319 label_filter_plural: Filtros
319 label_equals: e
320 label_equals: e
320 label_not_equals: nao e
321 label_not_equals: nao e
321 label_in_less_than: e maior que
322 label_in_less_than: e maior que
322 label_in_more_than: e menor que
323 label_in_more_than: e menor que
323 label_in: em
324 label_in: em
324 label_today: hoje
325 label_today: hoje
325 label_this_week: this week
326 label_this_week: this week
326 label_less_than_ago: faz menos de
327 label_less_than_ago: faz menos de
327 label_more_than_ago: faz mais de
328 label_more_than_ago: faz mais de
328 label_ago: dias atras
329 label_ago: dias atras
329 label_contains: contem
330 label_contains: contem
330 label_not_contains: nao contem
331 label_not_contains: nao contem
331 label_day_plural: dias
332 label_day_plural: dias
332 label_repository: Repository
333 label_repository: Repository
333 label_browse: Browse
334 label_browse: Browse
334 label_modification: %d change
335 label_modification: %d change
335 label_modification_plural: %d changes
336 label_modification_plural: %d changes
336 label_revision: Revision
337 label_revision: Revision
337 label_revision_plural: Revisions
338 label_revision_plural: Revisions
338 label_added: added
339 label_added: added
339 label_modified: modified
340 label_modified: modified
340 label_deleted: deleted
341 label_deleted: deleted
341 label_latest_revision: Latest revision
342 label_latest_revision: Latest revision
342 label_latest_revision_plural: Latest revisions
343 label_latest_revision_plural: Latest revisions
343 label_view_revisions: View revisions
344 label_view_revisions: View revisions
344 label_max_size: Maximum size
345 label_max_size: Maximum size
345 label_on: 'em'
346 label_on: 'em'
346 label_sort_highest: Mover para o inicio
347 label_sort_highest: Mover para o inicio
347 label_sort_higher: Mover para cima
348 label_sort_higher: Mover para cima
348 label_sort_lower: Mover para baixo
349 label_sort_lower: Mover para baixo
349 label_sort_lowest: Mover para o fim
350 label_sort_lowest: Mover para o fim
350 label_roadmap: Roadmap
351 label_roadmap: Roadmap
351 label_roadmap_due_in: Due in
352 label_roadmap_due_in: Due in
352 label_roadmap_overdue: %s late
353 label_roadmap_overdue: %s late
353 label_roadmap_no_issues: Sem tarefas para essa versao
354 label_roadmap_no_issues: Sem tarefas para essa versao
354 label_search: Busca
355 label_search: Busca
355 label_result_plural: Resultados
356 label_result_plural: Resultados
356 label_all_words: Todas as palavras
357 label_all_words: Todas as palavras
357 label_wiki: Wiki
358 label_wiki: Wiki
358 label_wiki_edit: Wiki edit
359 label_wiki_edit: Wiki edit
359 label_wiki_edit_plural: Wiki edits
360 label_wiki_edit_plural: Wiki edits
360 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
361 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
362 label_index_by_title: Index by title
363 label_index_by_title: Index by title
363 label_index_by_date: Index by date
364 label_index_by_date: Index by date
364 label_current_version: Versao atual
365 label_current_version: Versao atual
365 label_preview: Previa
366 label_preview: Previa
366 label_feed_plural: Feeds
367 label_feed_plural: Feeds
367 label_changes_details: Detalhes de todas as mudancas
368 label_changes_details: Detalhes de todas as mudancas
368 label_issue_tracking: Tarefas
369 label_issue_tracking: Tarefas
369 label_spent_time: Tempo gasto
370 label_spent_time: Tempo gasto
370 label_f_hour: %.2f hora
371 label_f_hour: %.2f hora
371 label_f_hour_plural: %.2f horas
372 label_f_hour_plural: %.2f horas
372 label_time_tracking: Tempo trabalhado
373 label_time_tracking: Tempo trabalhado
373 label_change_plural: Mudancas
374 label_change_plural: Mudancas
374 label_statistics: Estatisticas
375 label_statistics: Estatisticas
375 label_commits_per_month: Commits por mes
376 label_commits_per_month: Commits por mes
376 label_commits_per_author: Commits por autor
377 label_commits_per_author: Commits por autor
377 label_view_diff: Ver diferencas
378 label_view_diff: Ver diferencas
378 label_diff_inline: inline
379 label_diff_inline: inline
379 label_diff_side_by_side: side by side
380 label_diff_side_by_side: side by side
380 label_options: Opcoes
381 label_options: Opcoes
381 label_copy_workflow_from: Copiar workflow de
382 label_copy_workflow_from: Copiar workflow de
382 label_permissions_report: Relatorio de permissoes
383 label_permissions_report: Relatorio de permissoes
383 label_watched_issues: Watched issues
384 label_watched_issues: Watched issues
384 label_related_issues: Related issues
385 label_related_issues: Related issues
385 label_applied_status: Applied status
386 label_applied_status: Applied status
386 label_loading: Loading...
387 label_loading: Loading...
387 label_relation_new: New relation
388 label_relation_new: New relation
388 label_relation_delete: Delete relation
389 label_relation_delete: Delete relation
389 label_relates_to: related to
390 label_relates_to: related to
390 label_duplicates: duplicates
391 label_duplicates: duplicates
391 label_blocks: blocks
392 label_blocks: blocks
392 label_blocked_by: blocked by
393 label_blocked_by: blocked by
393 label_precedes: precedes
394 label_precedes: precedes
394 label_follows: follows
395 label_follows: follows
395 label_end_to_start: end to start
396 label_end_to_start: end to start
396 label_end_to_end: end to end
397 label_end_to_end: end to end
397 label_start_to_start: start to start
398 label_start_to_start: start to start
398 label_start_to_end: start to end
399 label_start_to_end: start to end
399 label_stay_logged_in: Stay logged in
400 label_stay_logged_in: Stay logged in
400 label_disabled: disabled
401 label_disabled: disabled
401 label_show_completed_versions: Show completed versions
402 label_show_completed_versions: Show completed versions
402 label_me: me
403 label_me: me
403 label_board: Forum
404 label_board: Forum
404 label_board_new: New forum
405 label_board_new: New forum
405 label_board_plural: Forums
406 label_board_plural: Forums
406 label_topic_plural: Topics
407 label_topic_plural: Topics
407 label_message_plural: Messages
408 label_message_plural: Messages
408 label_message_last: Last message
409 label_message_last: Last message
409 label_message_new: New message
410 label_message_new: New message
410 label_reply_plural: Replies
411 label_reply_plural: Replies
411 label_send_information: Send account information to the user
412 label_send_information: Send account information to the user
412 label_year: Year
413 label_year: Year
413 label_month: Month
414 label_month: Month
414 label_week: Week
415 label_week: Week
415 label_date_from: From
416 label_date_from: From
416 label_date_to: To
417 label_date_to: To
417 label_language_based: Language based
418 label_language_based: Language based
418 label_sort_by: Sort by %s
419 label_sort_by: Sort by %s
419 label_send_test_email: Send a test email
420 label_send_test_email: Send a test email
420 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_module_plural: Modules
422 label_module_plural: Modules
422 label_added_time_by: Added by %s %s ago
423 label_added_time_by: Added by %s %s ago
423 label_updated_time: Updated %s ago
424 label_updated_time: Updated %s ago
424 label_jump_to_a_project: Jump to a project...
425 label_jump_to_a_project: Jump to a project...
425
426
426 button_login: Login
427 button_login: Login
427 button_submit: Enviar
428 button_submit: Enviar
428 button_save: Salvar
429 button_save: Salvar
429 button_check_all: Marcar todos
430 button_check_all: Marcar todos
430 button_uncheck_all: Desmarcar todos
431 button_uncheck_all: Desmarcar todos
431 button_delete: Apagar
432 button_delete: Apagar
432 button_create: Criar
433 button_create: Criar
433 button_test: Testar
434 button_test: Testar
434 button_edit: Editar
435 button_edit: Editar
435 button_add: Adicionar
436 button_add: Adicionar
436 button_change: Mudar
437 button_change: Mudar
437 button_apply: Aplicar
438 button_apply: Aplicar
438 button_clear: Limpar
439 button_clear: Limpar
439 button_lock: Bloquear
440 button_lock: Bloquear
440 button_unlock: Desbloquear
441 button_unlock: Desbloquear
441 button_download: Download
442 button_download: Download
442 button_list: Listar
443 button_list: Listar
443 button_view: Ver
444 button_view: Ver
444 button_move: Mover
445 button_move: Mover
445 button_back: Voltar
446 button_back: Voltar
446 button_cancel: Cancelar
447 button_cancel: Cancelar
447 button_activate: Ativar
448 button_activate: Ativar
448 button_sort: Ordenar
449 button_sort: Ordenar
449 button_log_time: Tempo de trabalho
450 button_log_time: Tempo de trabalho
450 button_rollback: Voltar para esta versao
451 button_rollback: Voltar para esta versao
451 button_watch: Watch
452 button_watch: Watch
452 button_unwatch: Unwatch
453 button_unwatch: Unwatch
453 button_reply: Reply
454 button_reply: Reply
454 button_archive: Archive
455 button_archive: Archive
455 button_unarchive: Unarchive
456 button_unarchive: Unarchive
456 button_reset: Reset
457 button_reset: Reset
457 button_rename: Rename
458 button_rename: Rename
458
459
459 status_active: ativo
460 status_active: ativo
460 status_registered: registrado
461 status_registered: registrado
461 status_locked: bloqueado
462 status_locked: bloqueado
462
463
463 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
464 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
464 text_regexp_info: eg. ^[A-Z0-9]+$
465 text_regexp_info: eg. ^[A-Z0-9]+$
465 text_min_max_length_info: 0 siginifica sem restricao
466 text_min_max_length_info: 0 siginifica sem restricao
466 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
467 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
467 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
468 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
468 text_are_you_sure: Voce tem certeza ?
469 text_are_you_sure: Voce tem certeza ?
469 text_journal_changed: alterado de %s para %s
470 text_journal_changed: alterado de %s para %s
470 text_journal_set_to: setar para %s
471 text_journal_set_to: setar para %s
471 text_journal_deleted: apagado
472 text_journal_deleted: apagado
472 text_tip_task_begin_day: tarefa comeca neste dia
473 text_tip_task_begin_day: tarefa comeca neste dia
473 text_tip_task_end_day: tarefa termina neste dia
474 text_tip_task_end_day: tarefa termina neste dia
474 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
475 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
475 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
476 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
476 text_caracters_maximum: %d maximo de caracteres
477 text_caracters_maximum: %d maximo de caracteres
477 text_length_between: Tamanho entre %d e %d caracteres.
478 text_length_between: Tamanho entre %d e %d caracteres.
478 text_tracker_no_workflow: Sem workflow definido para este tipo.
479 text_tracker_no_workflow: Sem workflow definido para este tipo.
479 text_unallowed_characters: Unallowed characters
480 text_unallowed_characters: Unallowed characters
480 text_comma_separated: Multiple values allowed (comma separated).
481 text_comma_separated: Multiple values allowed (comma separated).
481 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
482 text_issue_added: Tarefa %s foi incluída.
483 text_issue_added: Tarefa %s foi incluída.
483 text_issue_updated: Tarefa %s foi alterada.
484 text_issue_updated: Tarefa %s foi alterada.
484 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
488
489
489 default_role_manager: Analista de Negocio ou Gerente de Projeto
490 default_role_manager: Analista de Negocio ou Gerente de Projeto
490 default_role_developper: Desenvolvedor
491 default_role_developper: Desenvolvedor
491 default_role_reporter: Analista de Suporte
492 default_role_reporter: Analista de Suporte
492 default_tracker_bug: Bug
493 default_tracker_bug: Bug
493 default_tracker_feature: Implementacao
494 default_tracker_feature: Implementacao
494 default_tracker_support: Suporte
495 default_tracker_support: Suporte
495 default_issue_status_new: Novo
496 default_issue_status_new: Novo
496 default_issue_status_assigned: Atribuido
497 default_issue_status_assigned: Atribuido
497 default_issue_status_resolved: Resolvido
498 default_issue_status_resolved: Resolvido
498 default_issue_status_feedback: Feedback
499 default_issue_status_feedback: Feedback
499 default_issue_status_closed: Fechado
500 default_issue_status_closed: Fechado
500 default_issue_status_rejected: Rejeitado
501 default_issue_status_rejected: Rejeitado
501 default_doc_category_user: Documentacao do usuario
502 default_doc_category_user: Documentacao do usuario
502 default_doc_category_tech: Documentacao do tecnica
503 default_doc_category_tech: Documentacao do tecnica
503 default_priority_low: Baixo
504 default_priority_low: Baixo
504 default_priority_normal: Normal
505 default_priority_normal: Normal
505 default_priority_high: Alto
506 default_priority_high: Alto
506 default_priority_urgent: Urgente
507 default_priority_urgent: Urgente
507 default_priority_immediate: Imediato
508 default_priority_immediate: Imediato
508 default_activity_design: Design
509 default_activity_design: Design
509 default_activity_development: Desenvolvimento
510 default_activity_development: Desenvolvimento
510
511
511 enumeration_issue_priorities: Prioridade das tarefas
512 enumeration_issue_priorities: Prioridade das tarefas
512 enumeration_doc_categories: Categorias de documento
513 enumeration_doc_categories: Categorias de documento
513 enumeration_activities: Atividades (time tracking)
514 enumeration_activities: Atividades (time tracking)
514 label_file_plural: Files
515 label_file_plural: Files
515 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
516 field_column_names: Columns
517 field_column_names: Columns
517 label_default_columns: Default columns
518 label_default_columns: Default columns
518 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_repositories_encodings: Repositories encodings
520 setting_repositories_encodings: Repositories encodings
520 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_no_change_option: (No change)
523 label_no_change_option: (No change)
523 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 label_theme: Theme
525 label_theme: Theme
525 label_default: Default
526 label_default: Default
526 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
527 label_nobody: nobody
528 label_nobody: nobody
528 button_change_password: Change password
529 button_change_password: Change password
529 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 setting_emails_footer: Emails footer
534 setting_emails_footer: Emails footer
534 label_float: Float
535 label_float: Float
535 button_copy: Copy
536 button_copy: Copy
536 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information: Your Redmine account information
538 mail_body_account_information: Your Redmine account information
538 setting_protocol: Protocol
539 setting_protocol: Protocol
539 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 setting_time_format: Time format
541 setting_time_format: Time format
541 label_registration_activation_by_email: account activation by email
542 label_registration_activation_by_email: account activation by email
542 mail_subject_account_activation_request: Redmine account activation request
543 mail_subject_account_activation_request: Redmine account activation request
543 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 label_registration_automatic_activation: automatic account activation
545 label_registration_automatic_activation: automatic account activation
545 label_registration_manual_activation: manual account activation
546 label_registration_manual_activation: manual account activation
546 notice_account_pending: "Your account was created and is now pending administrator approval."
547 notice_account_pending: "Your account was created and is now pending administrator approval."
547 field_time_zone: Time zone
548 field_time_zone: Time zone
548 text_caracters_minimum: Must be at least %d characters long.
549 text_caracters_minimum: Must be at least %d characters long.
549 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 button_annotate: Annotate
551 button_annotate: Annotate
551 label_issues_by: Issues by %s
552 label_issues_by: Issues by %s
552 field_searchable: Searchable
553 field_searchable: Searchable
553 label_display_per_page: 'Per page: %s'
554 label_display_per_page: 'Per page: %s'
554 setting_per_page_options: Objects per page options
555 setting_per_page_options: Objects per page options
555 label_age: Age
556 label_age: Age
556 notice_default_data_loaded: Default configuration successfully loaded.
557 notice_default_data_loaded: Default configuration successfully loaded.
557 text_load_default_configuration: Load the default configuration
558 text_load_default_configuration: Load the default configuration
558 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 button_update: Update
561 button_update: Update
561 label_change_properties: Change properties
562 label_change_properties: Change properties
562 label_general: General
563 label_general: General
563 label_repository_plural: Repositories
564 label_repository_plural: Repositories
564 label_associated_revisions: Associated revisions
565 label_associated_revisions: Associated revisions
@@ -1,564 +1,565
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dia
8 actionview_datehelper_time_in_words_day: 1 dia
9 actionview_datehelper_time_in_words_day_plural: %d dias
9 actionview_datehelper_time_in_words_day_plural: %d dias
10 actionview_datehelper_time_in_words_hour_about: em torno de uma hora
10 actionview_datehelper_time_in_words_hour_about: em torno de uma hora
11 actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas
12 actionview_datehelper_time_in_words_hour_about_single: em torno de uma hora
12 actionview_datehelper_time_in_words_hour_about_single: em torno de uma hora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de um minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de um minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: menos de um segundo
18 actionview_datehelper_time_in_words_second_less_than: menos de um segundo
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 actionview_instancetag_blank_option: Selecione
20 actionview_instancetag_blank_option: Selecione
21
21
22 activerecord_error_inclusion: não existe na lista
22 activerecord_error_inclusion: não existe na lista
23 activerecord_error_exclusion: já existe na lista
23 activerecord_error_exclusion: já existe na lista
24 activerecord_error_invalid: é inválido
24 activerecord_error_invalid: é inválido
25 activerecord_error_confirmation: não confere com sua confirmação
25 activerecord_error_confirmation: não confere com sua confirmação
26 activerecord_error_accepted: deve ser aceito
26 activerecord_error_accepted: deve ser aceito
27 activerecord_error_empty: não pode ser vazio
27 activerecord_error_empty: não pode ser vazio
28 activerecord_error_blank: não pode estar em branco
28 activerecord_error_blank: não pode estar em branco
29 activerecord_error_too_long: é muito longo
29 activerecord_error_too_long: é muito longo
30 activerecord_error_too_short: é muito curto
30 activerecord_error_too_short: é muito curto
31 activerecord_error_wrong_length: possui o comprimento errado
31 activerecord_error_wrong_length: possui o comprimento errado
32 activerecord_error_taken: já foi usado em outro registro
32 activerecord_error_taken: já foi usado em outro registro
33 activerecord_error_not_a_number: não é um número
33 activerecord_error_not_a_number: não é um número
34 activerecord_error_not_a_date: não é uma data válida
34 activerecord_error_not_a_date: não é uma data válida
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 activerecord_error_not_same_project: não pertence ao mesmo projeto
36 activerecord_error_not_same_project: não pertence ao mesmo projeto
37 activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular
37 activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular
38
38
39 general_fmt_age: %d ano
39 general_fmt_age: %d ano
40 general_fmt_age_plural: %d anos
40 general_fmt_age_plural: %d anos
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Não'
45 general_text_No: 'Não'
46 general_text_Yes: 'Sim'
46 general_text_Yes: 'Sim'
47 general_text_no: 'não'
47 general_text_no: 'não'
48 general_text_yes: 'sim'
48 general_text_yes: 'sim'
49 general_lang_name: 'Português'
49 general_lang_name: 'Português'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo
53 general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Conta foi atualizada com sucesso.
56 notice_account_updated: Conta foi atualizada com sucesso.
57 notice_account_invalid_creditentials: Usuário ou senha inválidos.
57 notice_account_invalid_creditentials: Usuário ou senha inválidos.
58 notice_account_password_updated: Senha foi alterada com sucesso.
58 notice_account_password_updated: Senha foi alterada com sucesso.
59 notice_account_wrong_password: Senha errada.
59 notice_account_wrong_password: Senha errada.
60 notice_account_register_done: Conta foi criada com sucesso.
60 notice_account_register_done: Conta foi criada com sucesso.
61 notice_account_unknown_email: Usuário desconhecido.
61 notice_account_unknown_email: Usuário desconhecido.
62 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha.
62 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha.
63 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
63 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
64 notice_account_activated: Sua conta foi ativada. Você pode logar agora
64 notice_account_activated: Sua conta foi ativada. Você pode logar agora
65 notice_successful_create: Criado com sucesso.
65 notice_successful_create: Criado com sucesso.
66 notice_successful_update: Alterado com sucesso.
66 notice_successful_update: Alterado com sucesso.
67 notice_successful_delete: Apagado com sucesso.
67 notice_successful_delete: Apagado com sucesso.
68 notice_successful_connection: Conectado com sucesso.
68 notice_successful_connection: Conectado com sucesso.
69 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
69 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
70 notice_locking_conflict: Os dados foram atualizados por um outro usuário.
70 notice_locking_conflict: Os dados foram atualizados por um outro usuário.
71 notice_scm_error: A entrada e/ou a revisão não existem no repositório.
71 notice_scm_error: A entrada e/ou a revisão não existem no repositório.
72 notice_not_authorized: Você não está autorizado a acessar esta página.
72 notice_not_authorized: Você não está autorizado a acessar esta página.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
76
77 mail_subject_lost_password: Sua senha do redMine.
77 mail_subject_lost_password: Sua senha do redMine.
78 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
78 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
79 mail_subject_register: Ativação de conta do redMine.
79 mail_subject_register: Ativação de conta do redMine.
80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
81
81
82 gui_validation_error: 1 erro
82 gui_validation_error: 1 erro
83 gui_validation_error_plural: %d erros
83 gui_validation_error_plural: %d erros
84
84
85 field_name: Nome
85 field_name: Nome
86 field_description: Descrição
86 field_description: Descrição
87 field_summary: Sumário
87 field_summary: Sumário
88 field_is_required: Obrigatório
88 field_is_required: Obrigatório
89 field_firstname: Primeiro nome
89 field_firstname: Primeiro nome
90 field_lastname: Último nome
90 field_lastname: Último nome
91 field_mail: Email
91 field_mail: Email
92 field_filename: Arquivo
92 field_filename: Arquivo
93 field_filesize: Tamanho
93 field_filesize: Tamanho
94 field_downloads: Downloads
94 field_downloads: Downloads
95 field_author: Autor
95 field_author: Autor
96 field_created_on: Criado
96 field_created_on: Criado
97 field_updated_on: Alterado
97 field_updated_on: Alterado
98 field_field_format: Formato
98 field_field_format: Formato
99 field_is_for_all: Para todos os projetos
99 field_is_for_all: Para todos os projetos
100 field_possible_values: Possíveis valores
100 field_possible_values: Possíveis valores
101 field_regexp: Expressão regular
101 field_regexp: Expressão regular
102 field_min_length: Tamanho mínimo
102 field_min_length: Tamanho mínimo
103 field_max_length: Tamanho máximo
103 field_max_length: Tamanho máximo
104 field_value: Valor
104 field_value: Valor
105 field_category: Categoria
105 field_category: Categoria
106 field_title: Título
106 field_title: Título
107 field_project: Projeto
107 field_project: Projeto
108 field_issue: Tarefa
108 field_issue: Tarefa
109 field_status: Status
109 field_status: Status
110 field_notes: Notas
110 field_notes: Notas
111 field_is_closed: Tarefa fechada
111 field_is_closed: Tarefa fechada
112 field_is_default: Status padrão
112 field_is_default: Status padrão
113 field_tracker: Tipo
113 field_tracker: Tipo
114 field_subject: Assunto
114 field_subject: Assunto
115 field_due_date: Data final
115 field_due_date: Data final
116 field_assigned_to: Atribuído para
116 field_assigned_to: Atribuído para
117 field_priority: Prioridade
117 field_priority: Prioridade
118 field_fixed_version: Versão corrigida
118 field_fixed_version: Versão corrigida
119 field_user: Usuário
119 field_user: Usuário
120 field_role: Regra
120 field_role: Regra
121 field_homepage: Página inicial
121 field_homepage: Página inicial
122 field_is_public: Público
122 field_is_public: Público
123 field_parent: Sub-projeto de
123 field_parent: Sub-projeto de
124 field_is_in_chlog: Tarefas mostradas no changelog
124 field_is_in_chlog: Tarefas mostradas no changelog
125 field_is_in_roadmap: Tarefas mostradas no roadmap
125 field_is_in_roadmap: Tarefas mostradas no roadmap
126 field_login: Login
126 field_login: Login
127 field_mail_notification: Notificações por email
127 field_mail_notification: Notificações por email
128 field_admin: Administrador
128 field_admin: Administrador
129 field_last_login_on: Última conexão
129 field_last_login_on: Última conexão
130 field_language: Língua
130 field_language: Língua
131 field_effective_date: Data
131 field_effective_date: Data
132 field_password: Senha
132 field_password: Senha
133 field_new_password: Nova senha
133 field_new_password: Nova senha
134 field_password_confirmation: Confirmação
134 field_password_confirmation: Confirmação
135 field_version: Versão
135 field_version: Versão
136 field_type: Tipo
136 field_type: Tipo
137 field_host: Servidor
137 field_host: Servidor
138 field_port: Porta
138 field_port: Porta
139 field_account: Conta
139 field_account: Conta
140 field_base_dn: Base DN
140 field_base_dn: Base DN
141 field_attr_login: Atributo login
141 field_attr_login: Atributo login
142 field_attr_firstname: Atributo primeiro nome
142 field_attr_firstname: Atributo primeiro nome
143 field_attr_lastname: Atributo último nome
143 field_attr_lastname: Atributo último nome
144 field_attr_mail: Atributo email
144 field_attr_mail: Atributo email
145 field_onthefly: Criação de usuário sob-demanda
145 field_onthefly: Criação de usuário sob-demanda
146 field_start_date: Início
146 field_start_date: Início
147 field_done_ratio: %% Terminado
147 field_done_ratio: %% Terminado
148 field_auth_source: Modo de autenticação
148 field_auth_source: Modo de autenticação
149 field_hide_mail: Esconda meu email
149 field_hide_mail: Esconda meu email
150 field_comments: Comentário
150 field_comments: Comentário
151 field_url: URL
151 field_url: URL
152 field_start_page: Página inicial
152 field_start_page: Página inicial
153 field_subproject: Sub-projeto
153 field_subproject: Sub-projeto
154 field_hours: Horas
154 field_hours: Horas
155 field_activity: Atividade
155 field_activity: Atividade
156 field_spent_on: Data
156 field_spent_on: Data
157 field_identifier: Identificador
157 field_identifier: Identificador
158 field_is_filter: Usado como filtro
158 field_is_filter: Usado como filtro
159 field_issue_to_id: Tarefa relacionada
159 field_issue_to_id: Tarefa relacionada
160 field_delay: Atraso
160 field_delay: Atraso
161 field_assignable: Issues can be assigned to this role
161 field_assignable: Issues can be assigned to this role
162 field_redirect_existing_links: Redirect existing links
162 field_redirect_existing_links: Redirect existing links
163 field_estimated_hours: Estimated time
163 field_estimated_hours: Estimated time
164 field_default_value: Padrão
164
165
165 setting_app_title: Título da aplicação
166 setting_app_title: Título da aplicação
166 setting_app_subtitle: Sub-título da aplicação
167 setting_app_subtitle: Sub-título da aplicação
167 setting_welcome_text: Texto de boas-vindas
168 setting_welcome_text: Texto de boas-vindas
168 setting_default_language: Linguagem padrão
169 setting_default_language: Linguagem padrão
169 setting_login_required: Autenticação obrigatória
170 setting_login_required: Autenticação obrigatória
170 setting_self_registration: Registro permitido
171 setting_self_registration: Registro permitido
171 setting_attachment_max_size: Tamanho máximo do anexo
172 setting_attachment_max_size: Tamanho máximo do anexo
172 setting_issues_export_limit: Limite de exportação das tarefas
173 setting_issues_export_limit: Limite de exportação das tarefas
173 setting_mail_from: Email enviado de
174 setting_mail_from: Email enviado de
174 setting_host_name: Servidor
175 setting_host_name: Servidor
175 setting_text_formatting: Formato do texto
176 setting_text_formatting: Formato do texto
176 setting_wiki_compression: Compactação do histórico do Wiki
177 setting_wiki_compression: Compactação do histórico do Wiki
177 setting_feeds_limit: Limite do Feed
178 setting_feeds_limit: Limite do Feed
178 setting_autofetch_changesets: Buscar automaticamente commits
179 setting_autofetch_changesets: Buscar automaticamente commits
179 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
180 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
180 setting_commit_ref_keywords: Palavras-chave de referôncia
181 setting_commit_ref_keywords: Palavras-chave de referôncia
181 setting_commit_fix_keywords: Palavras-chave fixas
182 setting_commit_fix_keywords: Palavras-chave fixas
182 setting_autologin: Autologin
183 setting_autologin: Autologin
183 setting_date_format: Date format
184 setting_date_format: Date format
184 setting_cross_project_issue_relations: Allow cross-project issue relations
185 setting_cross_project_issue_relations: Allow cross-project issue relations
185
186
186 label_user: Usuário
187 label_user: Usuário
187 label_user_plural: Usuários
188 label_user_plural: Usuários
188 label_user_new: Novo usuário
189 label_user_new: Novo usuário
189 label_project: Projeto
190 label_project: Projeto
190 label_project_new: Novo projeto
191 label_project_new: Novo projeto
191 label_project_plural: Projetos
192 label_project_plural: Projetos
192 label_project_all: All Projects
193 label_project_all: All Projects
193 label_project_latest: Últimos projetos
194 label_project_latest: Últimos projetos
194 label_issue: Tarefa
195 label_issue: Tarefa
195 label_issue_new: Nova tarefa
196 label_issue_new: Nova tarefa
196 label_issue_plural: Tarefas
197 label_issue_plural: Tarefas
197 label_issue_view_all: Ver todas as tarefas
198 label_issue_view_all: Ver todas as tarefas
198 label_document: Documento
199 label_document: Documento
199 label_document_new: Novo documento
200 label_document_new: Novo documento
200 label_document_plural: Documentos
201 label_document_plural: Documentos
201 label_role: Regra
202 label_role: Regra
202 label_role_plural: Regras
203 label_role_plural: Regras
203 label_role_new: Nova regra
204 label_role_new: Nova regra
204 label_role_and_permissions: Regras e permissões
205 label_role_and_permissions: Regras e permissões
205 label_member: Membro
206 label_member: Membro
206 label_member_new: Novo membro
207 label_member_new: Novo membro
207 label_member_plural: Membros
208 label_member_plural: Membros
208 label_tracker: Tipo
209 label_tracker: Tipo
209 label_tracker_plural: Tipos
210 label_tracker_plural: Tipos
210 label_tracker_new: Novo tipo
211 label_tracker_new: Novo tipo
211 label_workflow: Workflow
212 label_workflow: Workflow
212 label_issue_status: Status da tarefa
213 label_issue_status: Status da tarefa
213 label_issue_status_plural: Status das tarefas
214 label_issue_status_plural: Status das tarefas
214 label_issue_status_new: Novo status
215 label_issue_status_new: Novo status
215 label_issue_category: Categoria da tarefa
216 label_issue_category: Categoria da tarefa
216 label_issue_category_plural: Categorias das tarefas
217 label_issue_category_plural: Categorias das tarefas
217 label_issue_category_new: Nova categoria
218 label_issue_category_new: Nova categoria
218 label_custom_field: Campo personalizado
219 label_custom_field: Campo personalizado
219 label_custom_field_plural: Campos personalizados
220 label_custom_field_plural: Campos personalizados
220 label_custom_field_new: Novo campo personalizado
221 label_custom_field_new: Novo campo personalizado
221 label_enumerations: Enumeração
222 label_enumerations: Enumeração
222 label_enumeration_new: Novo valor
223 label_enumeration_new: Novo valor
223 label_information: Informação
224 label_information: Informação
224 label_information_plural: Informações
225 label_information_plural: Informações
225 label_please_login: Efetue login
226 label_please_login: Efetue login
226 label_register: Registre-se
227 label_register: Registre-se
227 label_password_lost: Perdi a senha
228 label_password_lost: Perdi a senha
228 label_home: Página inicial
229 label_home: Página inicial
229 label_my_page: Minha página
230 label_my_page: Minha página
230 label_my_account: Minha conta
231 label_my_account: Minha conta
231 label_my_projects: Meus projetos
232 label_my_projects: Meus projetos
232 label_administration: Administração
233 label_administration: Administração
233 label_login: Login
234 label_login: Login
234 label_logout: Logout
235 label_logout: Logout
235 label_help: Ajuda
236 label_help: Ajuda
236 label_reported_issues: Tarefas reportadas
237 label_reported_issues: Tarefas reportadas
237 label_assigned_to_me_issues: Tarefas atribuídas à mim
238 label_assigned_to_me_issues: Tarefas atribuídas à mim
238 label_last_login: Útima conexão
239 label_last_login: Útima conexão
239 label_last_updates: Última alteração
240 label_last_updates: Última alteração
240 label_last_updates_plural: %d Últimas alterações
241 label_last_updates_plural: %d Últimas alterações
241 label_registered_on: Registrado em
242 label_registered_on: Registrado em
242 label_activity: Atividade
243 label_activity: Atividade
243 label_new: Novo
244 label_new: Novo
244 label_logged_as: Logado como
245 label_logged_as: Logado como
245 label_environment: Ambiente
246 label_environment: Ambiente
246 label_authentication: Autenticação
247 label_authentication: Autenticação
247 label_auth_source: Modo de autenticação
248 label_auth_source: Modo de autenticação
248 label_auth_source_new: Novo modo de autenticação
249 label_auth_source_new: Novo modo de autenticação
249 label_auth_source_plural: Modos de autenticação
250 label_auth_source_plural: Modos de autenticação
250 label_subproject_plural: Sub-projetos
251 label_subproject_plural: Sub-projetos
251 label_min_max_length: Tamanho min-max
252 label_min_max_length: Tamanho min-max
252 label_list: Lista
253 label_list: Lista
253 label_date: Data
254 label_date: Data
254 label_integer: Inteiro
255 label_integer: Inteiro
255 label_boolean: Booleano
256 label_boolean: Booleano
256 label_string: Texto
257 label_string: Texto
257 label_text: Texto longo
258 label_text: Texto longo
258 label_attribute: Atributo
259 label_attribute: Atributo
259 label_attribute_plural: Atributos
260 label_attribute_plural: Atributos
260 label_download: %d Download
261 label_download: %d Download
261 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
262 label_no_data: Sem dados para mostrar
263 label_no_data: Sem dados para mostrar
263 label_change_status: Mudar status
264 label_change_status: Mudar status
264 label_history: Histórico
265 label_history: Histórico
265 label_attachment: Arquivo
266 label_attachment: Arquivo
266 label_attachment_new: Novo arquivo
267 label_attachment_new: Novo arquivo
267 label_attachment_delete: Apagar arquivo
268 label_attachment_delete: Apagar arquivo
268 label_attachment_plural: Arquivos
269 label_attachment_plural: Arquivos
269 label_report: Relatório
270 label_report: Relatório
270 label_report_plural: Relatório
271 label_report_plural: Relatório
271 label_news: Notícias
272 label_news: Notícias
272 label_news_new: Adicionar notícias
273 label_news_new: Adicionar notícias
273 label_news_plural: Notícias
274 label_news_plural: Notícias
274 label_news_latest: Últimas notícias
275 label_news_latest: Últimas notícias
275 label_news_view_all: Ver todas as notícias
276 label_news_view_all: Ver todas as notícias
276 label_change_log: Log de mudanças
277 label_change_log: Log de mudanças
277 label_settings: Configurações
278 label_settings: Configurações
278 label_overview: Visão geral
279 label_overview: Visão geral
279 label_version: Versão
280 label_version: Versão
280 label_version_new: Nova versão
281 label_version_new: Nova versão
281 label_version_plural: Versões
282 label_version_plural: Versões
282 label_confirmation: Confirmação
283 label_confirmation: Confirmação
283 label_export_to: Exportar para
284 label_export_to: Exportar para
284 label_read: Ler...
285 label_read: Ler...
285 label_public_projects: Projetos públicos
286 label_public_projects: Projetos públicos
286 label_open_issues: Aberto
287 label_open_issues: Aberto
287 label_open_issues_plural: Abertos
288 label_open_issues_plural: Abertos
288 label_closed_issues: Fechado
289 label_closed_issues: Fechado
289 label_closed_issues_plural: Fechados
290 label_closed_issues_plural: Fechados
290 label_total: Total
291 label_total: Total
291 label_permissions: Permissões
292 label_permissions: Permissões
292 label_current_status: Status atual
293 label_current_status: Status atual
293 label_new_statuses_allowed: Novo status permitido
294 label_new_statuses_allowed: Novo status permitido
294 label_all: todos
295 label_all: todos
295 label_none: nenhum
296 label_none: nenhum
296 label_next: Próximo
297 label_next: Próximo
297 label_previous: Anterior
298 label_previous: Anterior
298 label_used_by: Usado por
299 label_used_by: Usado por
299 label_details: Detalhes
300 label_details: Detalhes
300 label_add_note: Adicionar nota
301 label_add_note: Adicionar nota
301 label_per_page: Por página
302 label_per_page: Por página
302 label_calendar: Calendário
303 label_calendar: Calendário
303 label_months_from: Meses de
304 label_months_from: Meses de
304 label_gantt: Gantt
305 label_gantt: Gantt
305 label_internal: Interno
306 label_internal: Interno
306 label_last_changes: últimas %d mudanças
307 label_last_changes: últimas %d mudanças
307 label_change_view_all: Mostrar todas as mudanças
308 label_change_view_all: Mostrar todas as mudanças
308 label_personalize_page: Personalizar esta página
309 label_personalize_page: Personalizar esta página
309 label_comment: Comentário
310 label_comment: Comentário
310 label_comment_plural: Comentários
311 label_comment_plural: Comentários
311 label_comment_add: Adicionar comentário
312 label_comment_add: Adicionar comentário
312 label_comment_added: Comentário adicionado
313 label_comment_added: Comentário adicionado
313 label_comment_delete: Apagar comentário
314 label_comment_delete: Apagar comentário
314 label_query: Consulta personalizada
315 label_query: Consulta personalizada
315 label_query_plural: Consultas personalizadas
316 label_query_plural: Consultas personalizadas
316 label_query_new: Nova consulta
317 label_query_new: Nova consulta
317 label_filter_add: Adicionar filtro
318 label_filter_add: Adicionar filtro
318 label_filter_plural: Filtros
319 label_filter_plural: Filtros
319 label_equals: é
320 label_equals: é
320 label_not_equals: não e
321 label_not_equals: não e
321 label_in_less_than: é maior que
322 label_in_less_than: é maior que
322 label_in_more_than: é menor que
323 label_in_more_than: é menor que
323 label_in: em
324 label_in: em
324 label_today: hoje
325 label_today: hoje
325 label_this_week: this week
326 label_this_week: this week
326 label_less_than_ago: faz menos de
327 label_less_than_ago: faz menos de
327 label_more_than_ago: faz mais de
328 label_more_than_ago: faz mais de
328 label_ago: dias atrás
329 label_ago: dias atrás
329 label_contains: contém
330 label_contains: contém
330 label_not_contains: não contém
331 label_not_contains: não contém
331 label_day_plural: dias
332 label_day_plural: dias
332 label_repository: Repositório
333 label_repository: Repositório
333 label_browse: Procurar
334 label_browse: Procurar
334 label_modification: %d mudança
335 label_modification: %d mudança
335 label_modification_plural: %d mudanças
336 label_modification_plural: %d mudanças
336 label_revision: Revisão
337 label_revision: Revisão
337 label_revision_plural: Revisões
338 label_revision_plural: Revisões
338 label_added: adicionado
339 label_added: adicionado
339 label_modified: modificado
340 label_modified: modificado
340 label_deleted: deletado
341 label_deleted: deletado
341 label_latest_revision: Última revisão
342 label_latest_revision: Última revisão
342 label_latest_revision_plural: Últimas revisões
343 label_latest_revision_plural: Últimas revisões
343 label_view_revisions: Ver revisões
344 label_view_revisions: Ver revisões
344 label_max_size: Tamanho máximo
345 label_max_size: Tamanho máximo
345 label_on: em
346 label_on: em
346 label_sort_highest: Mover para o início
347 label_sort_highest: Mover para o início
347 label_sort_higher: Mover para cima
348 label_sort_higher: Mover para cima
348 label_sort_lower: Mover para baixo
349 label_sort_lower: Mover para baixo
349 label_sort_lowest: Mover para o fim
350 label_sort_lowest: Mover para o fim
350 label_roadmap: Roadmap
351 label_roadmap: Roadmap
351 label_roadmap_due_in: Termina em
352 label_roadmap_due_in: Termina em
352 label_roadmap_overdue: %s late
353 label_roadmap_overdue: %s late
353 label_roadmap_no_issues: Sem tarefas para essa versão
354 label_roadmap_no_issues: Sem tarefas para essa versão
354 label_search: Busca
355 label_search: Busca
355 label_result_plural: Resultados
356 label_result_plural: Resultados
356 label_all_words: Todas as palavras
357 label_all_words: Todas as palavras
357 label_wiki: Wiki
358 label_wiki: Wiki
358 label_wiki_edit: Wiki edit
359 label_wiki_edit: Wiki edit
359 label_wiki_edit_plural: Wiki edits
360 label_wiki_edit_plural: Wiki edits
360 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
361 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
362 label_index_by_title: Index by title
363 label_index_by_title: Index by title
363 label_index_by_date: Index by date
364 label_index_by_date: Index by date
364 label_current_version: Versão atual
365 label_current_version: Versão atual
365 label_preview: Prévia
366 label_preview: Prévia
366 label_feed_plural: Feeds
367 label_feed_plural: Feeds
367 label_changes_details: Detalhes de todas as mudanças
368 label_changes_details: Detalhes de todas as mudanças
368 label_issue_tracking: Tarefas
369 label_issue_tracking: Tarefas
369 label_spent_time: Tempo gasto
370 label_spent_time: Tempo gasto
370 label_f_hour: %.2f hora
371 label_f_hour: %.2f hora
371 label_f_hour_plural: %.2f horas
372 label_f_hour_plural: %.2f horas
372 label_time_tracking: Tempo trabalhado
373 label_time_tracking: Tempo trabalhado
373 label_change_plural: Mudanças
374 label_change_plural: Mudanças
374 label_statistics: Estatísticas
375 label_statistics: Estatísticas
375 label_commits_per_month: Commits por mês
376 label_commits_per_month: Commits por mês
376 label_commits_per_author: Commits por autor
377 label_commits_per_author: Commits por autor
377 label_view_diff: Ver diferenças
378 label_view_diff: Ver diferenças
378 label_diff_inline: inline
379 label_diff_inline: inline
379 label_diff_side_by_side: lado a lado
380 label_diff_side_by_side: lado a lado
380 label_options: Opções
381 label_options: Opções
381 label_copy_workflow_from: Copiar workflow de
382 label_copy_workflow_from: Copiar workflow de
382 label_permissions_report: Relatório de permissões
383 label_permissions_report: Relatório de permissões
383 label_watched_issues: Tarefas observadas
384 label_watched_issues: Tarefas observadas
384 label_related_issues: tarefas relacionadas
385 label_related_issues: tarefas relacionadas
385 label_applied_status: Status aplicado
386 label_applied_status: Status aplicado
386 label_loading: Carregando...
387 label_loading: Carregando...
387 label_relation_new: Nova relação
388 label_relation_new: Nova relação
388 label_relation_delete: Deletar relação
389 label_relation_delete: Deletar relação
389 label_relates_to: relacionado à
390 label_relates_to: relacionado à
390 label_duplicates: duplicadas
391 label_duplicates: duplicadas
391 label_blocks: bloqueios
392 label_blocks: bloqueios
392 label_blocked_by: bloqueado por
393 label_blocked_by: bloqueado por
393 label_precedes: procede
394 label_precedes: procede
394 label_follows: segue
395 label_follows: segue
395 label_end_to_start: fim ao início
396 label_end_to_start: fim ao início
396 label_end_to_end: fim ao fim
397 label_end_to_end: fim ao fim
397 label_start_to_start: ínícia ao inícia
398 label_start_to_start: ínícia ao inícia
398 label_start_to_end: inícia ao fim
399 label_start_to_end: inícia ao fim
399 label_stay_logged_in: Rester connecté
400 label_stay_logged_in: Rester connecté
400 label_disabled: désactivé
401 label_disabled: désactivé
401 label_show_completed_versions: Voire les versions passées
402 label_show_completed_versions: Voire les versions passées
402 label_me: me
403 label_me: me
403 label_board: Forum
404 label_board: Forum
404 label_board_new: New forum
405 label_board_new: New forum
405 label_board_plural: Forums
406 label_board_plural: Forums
406 label_topic_plural: Topics
407 label_topic_plural: Topics
407 label_message_plural: Messages
408 label_message_plural: Messages
408 label_message_last: Last message
409 label_message_last: Last message
409 label_message_new: New message
410 label_message_new: New message
410 label_reply_plural: Replies
411 label_reply_plural: Replies
411 label_send_information: Send account information to the user
412 label_send_information: Send account information to the user
412 label_year: Year
413 label_year: Year
413 label_month: Month
414 label_month: Month
414 label_week: Week
415 label_week: Week
415 label_date_from: From
416 label_date_from: From
416 label_date_to: To
417 label_date_to: To
417 label_language_based: Language based
418 label_language_based: Language based
418 label_sort_by: Sort by %s
419 label_sort_by: Sort by %s
419 label_send_test_email: Send a test email
420 label_send_test_email: Send a test email
420 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_module_plural: Modules
422 label_module_plural: Modules
422 label_added_time_by: Added by %s %s ago
423 label_added_time_by: Added by %s %s ago
423 label_updated_time: Updated %s ago
424 label_updated_time: Updated %s ago
424 label_jump_to_a_project: Jump to a project...
425 label_jump_to_a_project: Jump to a project...
425
426
426 button_login: Login
427 button_login: Login
427 button_submit: Enviar
428 button_submit: Enviar
428 button_save: Salvar
429 button_save: Salvar
429 button_check_all: Marcar todos
430 button_check_all: Marcar todos
430 button_uncheck_all: Desmarcar todos
431 button_uncheck_all: Desmarcar todos
431 button_delete: Apagar
432 button_delete: Apagar
432 button_create: Criar
433 button_create: Criar
433 button_test: Testar
434 button_test: Testar
434 button_edit: Editar
435 button_edit: Editar
435 button_add: Adicionar
436 button_add: Adicionar
436 button_change: Mudar
437 button_change: Mudar
437 button_apply: Aplicar
438 button_apply: Aplicar
438 button_clear: Limpar
439 button_clear: Limpar
439 button_lock: Bloquear
440 button_lock: Bloquear
440 button_unlock: Desbloquear
441 button_unlock: Desbloquear
441 button_download: Download
442 button_download: Download
442 button_list: Listar
443 button_list: Listar
443 button_view: Ver
444 button_view: Ver
444 button_move: Mover
445 button_move: Mover
445 button_back: Voltar
446 button_back: Voltar
446 button_cancel: Cancelar
447 button_cancel: Cancelar
447 button_activate: Ativar
448 button_activate: Ativar
448 button_sort: Ordenar
449 button_sort: Ordenar
449 button_log_time: Tempo de trabalho
450 button_log_time: Tempo de trabalho
450 button_rollback: Voltar para esta versão
451 button_rollback: Voltar para esta versão
451 button_watch: Observar
452 button_watch: Observar
452 button_unwatch: Não observar
453 button_unwatch: Não observar
453 button_reply: Reply
454 button_reply: Reply
454 button_archive: Archive
455 button_archive: Archive
455 button_unarchive: Unarchive
456 button_unarchive: Unarchive
456 button_reset: Reset
457 button_reset: Reset
457 button_rename: Rename
458 button_rename: Rename
458
459
459 status_active: ativo
460 status_active: ativo
460 status_registered: registrado
461 status_registered: registrado
461 status_locked: bloqueado
462 status_locked: bloqueado
462
463
463 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
464 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
464 text_regexp_info: ex. ^[A-Z0-9]+$
465 text_regexp_info: ex. ^[A-Z0-9]+$
465 text_min_max_length_info: 0 siginifica sem restrição
466 text_min_max_length_info: 0 siginifica sem restrição
466 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
467 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
467 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
468 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
468 text_are_you_sure: Você tem certeza ?
469 text_are_you_sure: Você tem certeza ?
469 text_journal_changed: alterado de %s para %s
470 text_journal_changed: alterado de %s para %s
470 text_journal_set_to: alterar para %s
471 text_journal_set_to: alterar para %s
471 text_journal_deleted: apagado
472 text_journal_deleted: apagado
472 text_tip_task_begin_day: tarefa começa neste dia
473 text_tip_task_begin_day: tarefa começa neste dia
473 text_tip_task_end_day: tarefa termina neste dia
474 text_tip_task_end_day: tarefa termina neste dia
474 text_tip_task_begin_end_day: tarefa começa e termina neste dia
475 text_tip_task_begin_end_day: tarefa começa e termina neste dia
475 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.'
476 text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
476 text_caracters_maximum: %d móximo de caracteres
477 text_caracters_maximum: %d móximo de caracteres
477 text_length_between: Tamanho entre %d e %d caracteres.
478 text_length_between: Tamanho entre %d e %d caracteres.
478 text_tracker_no_workflow: Sem workflow definido para este tipo.
479 text_tracker_no_workflow: Sem workflow definido para este tipo.
479 text_unallowed_characters: Caracteres não permitidos
480 text_unallowed_characters: Caracteres não permitidos
480 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
481 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
481 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
482 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
482 text_issue_added: Tarefa %s foi incluída.
483 text_issue_added: Tarefa %s foi incluída.
483 text_issue_updated: Tarefa %s foi alterada.
484 text_issue_updated: Tarefa %s foi alterada.
484 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
488
489
489 default_role_manager: Analista de Negócio ou Gerente de Projeto
490 default_role_manager: Analista de Negócio ou Gerente de Projeto
490 default_role_developper: Desenvolvedor
491 default_role_developper: Desenvolvedor
491 default_role_reporter: Analista de Suporte
492 default_role_reporter: Analista de Suporte
492 default_tracker_bug: Bug
493 default_tracker_bug: Bug
493 default_tracker_feature: Implementaçõo
494 default_tracker_feature: Implementaçõo
494 default_tracker_support: Suporte
495 default_tracker_support: Suporte
495 default_issue_status_new: Novo
496 default_issue_status_new: Novo
496 default_issue_status_assigned: Atribuído
497 default_issue_status_assigned: Atribuído
497 default_issue_status_resolved: Resolvido
498 default_issue_status_resolved: Resolvido
498 default_issue_status_feedback: Feedback
499 default_issue_status_feedback: Feedback
499 default_issue_status_closed: Fechado
500 default_issue_status_closed: Fechado
500 default_issue_status_rejected: Rejeitado
501 default_issue_status_rejected: Rejeitado
501 default_doc_category_user: Documentação do usuário
502 default_doc_category_user: Documentação do usuário
502 default_doc_category_tech: Documentação técnica
503 default_doc_category_tech: Documentação técnica
503 default_priority_low: Baixo
504 default_priority_low: Baixo
504 default_priority_normal: Normal
505 default_priority_normal: Normal
505 default_priority_high: Alto
506 default_priority_high: Alto
506 default_priority_urgent: Urgente
507 default_priority_urgent: Urgente
507 default_priority_immediate: Imediato
508 default_priority_immediate: Imediato
508 default_activity_design: Design
509 default_activity_design: Design
509 default_activity_development: Desenvolvimento
510 default_activity_development: Desenvolvimento
510
511
511 enumeration_issue_priorities: Prioridade das tarefas
512 enumeration_issue_priorities: Prioridade das tarefas
512 enumeration_doc_categories: Categorias de documento
513 enumeration_doc_categories: Categorias de documento
513 enumeration_activities: Atividades (time tracking)
514 enumeration_activities: Atividades (time tracking)
514 label_file_plural: Files
515 label_file_plural: Files
515 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
516 field_column_names: Columns
517 field_column_names: Columns
517 label_default_columns: Default columns
518 label_default_columns: Default columns
518 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_repositories_encodings: Repositories encodings
520 setting_repositories_encodings: Repositories encodings
520 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_no_change_option: (No change)
523 label_no_change_option: (No change)
523 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 label_theme: Theme
525 label_theme: Theme
525 label_default: Default
526 label_default: Default
526 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
527 label_nobody: nobody
528 label_nobody: nobody
528 button_change_password: Change password
529 button_change_password: Change password
529 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 setting_emails_footer: Emails footer
534 setting_emails_footer: Emails footer
534 label_float: Float
535 label_float: Float
535 button_copy: Copy
536 button_copy: Copy
536 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information: Your Redmine account information
538 mail_body_account_information: Your Redmine account information
538 setting_protocol: Protocol
539 setting_protocol: Protocol
539 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 setting_time_format: Time format
541 setting_time_format: Time format
541 label_registration_activation_by_email: account activation by email
542 label_registration_activation_by_email: account activation by email
542 mail_subject_account_activation_request: Redmine account activation request
543 mail_subject_account_activation_request: Redmine account activation request
543 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 label_registration_automatic_activation: automatic account activation
545 label_registration_automatic_activation: automatic account activation
545 label_registration_manual_activation: manual account activation
546 label_registration_manual_activation: manual account activation
546 notice_account_pending: "Your account was created and is now pending administrator approval."
547 notice_account_pending: "Your account was created and is now pending administrator approval."
547 field_time_zone: Time zone
548 field_time_zone: Time zone
548 text_caracters_minimum: Must be at least %d characters long.
549 text_caracters_minimum: Must be at least %d characters long.
549 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 button_annotate: Annotate
551 button_annotate: Annotate
551 label_issues_by: Issues by %s
552 label_issues_by: Issues by %s
552 field_searchable: Searchable
553 field_searchable: Searchable
553 label_display_per_page: 'Per page: %s'
554 label_display_per_page: 'Per page: %s'
554 setting_per_page_options: Objects per page options
555 setting_per_page_options: Objects per page options
555 label_age: Age
556 label_age: Age
556 notice_default_data_loaded: Default configuration successfully loaded.
557 notice_default_data_loaded: Default configuration successfully loaded.
557 text_load_default_configuration: Load the default configuration
558 text_load_default_configuration: Load the default configuration
558 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 button_update: Update
561 button_update: Update
561 label_change_properties: Change properties
562 label_change_properties: Change properties
562 label_general: General
563 label_general: General
563 label_repository_plural: Repositories
564 label_repository_plural: Repositories
564 label_associated_revisions: Associated revisions
565 label_associated_revisions: Associated revisions
@@ -1,564 +1,565
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Ianuarie,Februarie,Martie,Aprilie,Mai,Iunie,Iulie,August,Septembrie,Octombrie,Noiembrie,Decembrie
4 actionview_datehelper_select_month_names: Ianuarie,Februarie,Martie,Aprilie,Mai,Iunie,Iulie,August,Septembrie,Octombrie,Noiembrie,Decembrie
5 actionview_datehelper_select_month_names_abbr: Ian,Feb,Mar,Apr,Mai,Jun,Jul,Aug,Sep,Oct,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Ian,Feb,Mar,Apr,Mai,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 zi
8 actionview_datehelper_time_in_words_day: 1 zi
9 actionview_datehelper_time_in_words_day_plural: %d zile
9 actionview_datehelper_time_in_words_day_plural: %d zile
10 actionview_datehelper_time_in_words_hour_about: aproximativ o ora
10 actionview_datehelper_time_in_words_hour_about: aproximativ o ora
11 actionview_datehelper_time_in_words_hour_about_plural: aproximativ %d ore
11 actionview_datehelper_time_in_words_hour_about_plural: aproximativ %d ore
12 actionview_datehelper_time_in_words_hour_about_single: aproximativ o ora
12 actionview_datehelper_time_in_words_hour_about_single: aproximativ o ora
13 actionview_datehelper_time_in_words_minute: 1 minut
13 actionview_datehelper_time_in_words_minute: 1 minut
14 actionview_datehelper_time_in_words_minute_half: 30 de secunde
14 actionview_datehelper_time_in_words_minute_half: 30 de secunde
15 actionview_datehelper_time_in_words_minute_less_than: mai putin de un minut
15 actionview_datehelper_time_in_words_minute_less_than: mai putin de un minut
16 actionview_datehelper_time_in_words_minute_plural: %d minute
16 actionview_datehelper_time_in_words_minute_plural: %d minute
17 actionview_datehelper_time_in_words_minute_single: 1 minut
17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 actionview_datehelper_time_in_words_second_less_than: mai putin de o secunda
18 actionview_datehelper_time_in_words_second_less_than: mai putin de o secunda
19 actionview_datehelper_time_in_words_second_less_than_plural: mai putin de %d secunde
19 actionview_datehelper_time_in_words_second_less_than_plural: mai putin de %d secunde
20 actionview_instancetag_blank_option: Va rog selectati
20 actionview_instancetag_blank_option: Va rog selectati
21
21
22 activerecord_error_inclusion: nu este inclus in lista
22 activerecord_error_inclusion: nu este inclus in lista
23 activerecord_error_exclusion: este rezervat
23 activerecord_error_exclusion: este rezervat
24 activerecord_error_invalid: este invalid
24 activerecord_error_invalid: este invalid
25 activerecord_error_confirmation: nu corespunde confirmarii
25 activerecord_error_confirmation: nu corespunde confirmarii
26 activerecord_error_accepted: trebuie acceptat
26 activerecord_error_accepted: trebuie acceptat
27 activerecord_error_empty: nu poate fi gol
27 activerecord_error_empty: nu poate fi gol
28 activerecord_error_blank: nu poate fi gol
28 activerecord_error_blank: nu poate fi gol
29 activerecord_error_too_long: este prea lung
29 activerecord_error_too_long: este prea lung
30 activerecord_error_too_short: este prea scurt
30 activerecord_error_too_short: este prea scurt
31 activerecord_error_wrong_length: are lungimea eronata
31 activerecord_error_wrong_length: are lungimea eronata
32 activerecord_error_taken: deja a fost luat/rezervat
32 activerecord_error_taken: deja a fost luat/rezervat
33 activerecord_error_not_a_number: nu este un numar
33 activerecord_error_not_a_number: nu este un numar
34 activerecord_error_not_a_date: nu este o data valida
34 activerecord_error_not_a_date: nu este o data valida
35 activerecord_error_greater_than_start_date: trebuie sa fie mai mare ca data de start
35 activerecord_error_greater_than_start_date: trebuie sa fie mai mare ca data de start
36 activerecord_error_not_same_project: nu apartine projectului respectiv
36 activerecord_error_not_same_project: nu apartine projectului respectiv
37 activerecord_error_circular_dependency: Aceasta relatie ar crea dependenta circulara
37 activerecord_error_circular_dependency: Aceasta relatie ar crea dependenta circulara
38
38
39 general_fmt_age: %d an
39 general_fmt_age: %d an
40 general_fmt_age_plural: %d ani
40 general_fmt_age_plural: %d ani
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nu'
45 general_text_No: 'Nu'
46 general_text_Yes: 'Da'
46 general_text_Yes: 'Da'
47 general_text_no: 'nu'
47 general_text_no: 'nu'
48 general_text_yes: 'da'
48 general_text_yes: 'da'
49 general_lang_name: 'Română'
49 general_lang_name: 'Română'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Luni,Marti,Miercuri,Joi,Vineri,Sambata,Duminica
53 general_day_names: Luni,Marti,Miercuri,Joi,Vineri,Sambata,Duminica
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Contul a fost creat cu succes.
56 notice_account_updated: Contul a fost creat cu succes.
57 notice_account_invalid_creditentials: Numele utilizator sau parola este invalida.
57 notice_account_invalid_creditentials: Numele utilizator sau parola este invalida.
58 notice_account_password_updated: Parola a fost modificata cu succes.
58 notice_account_password_updated: Parola a fost modificata cu succes.
59 notice_account_wrong_password: Parola gresita
59 notice_account_wrong_password: Parola gresita
60 notice_account_register_done: Contul a fost creat cu succes. Pentru activarea contului folositi linkul primit in e-mailul de confirmare.
60 notice_account_register_done: Contul a fost creat cu succes. Pentru activarea contului folositi linkul primit in e-mailul de confirmare.
61 notice_account_unknown_email: Utilizator inexistent.
61 notice_account_unknown_email: Utilizator inexistent.
62 notice_can_t_change_password: Acest cont foloseste un sistem de autenticare externa. Parola nu poate fi schimbata.
62 notice_can_t_change_password: Acest cont foloseste un sistem de autenticare externa. Parola nu poate fi schimbata.
63 notice_account_lost_email_sent: Un e-mail cu instructiuni de a seta noua parola a fost trimisa.
63 notice_account_lost_email_sent: Un e-mail cu instructiuni de a seta noua parola a fost trimisa.
64 notice_account_activated: Contul a fost activat. Acum puteti intra in cont.
64 notice_account_activated: Contul a fost activat. Acum puteti intra in cont.
65 notice_successful_create: Creat cu succes.
65 notice_successful_create: Creat cu succes.
66 notice_successful_update: Modificare cu succes.
66 notice_successful_update: Modificare cu succes.
67 notice_successful_delete: Stergere cu succes.
67 notice_successful_delete: Stergere cu succes.
68 notice_successful_connection: Conectare cu succes.
68 notice_successful_connection: Conectare cu succes.
69 notice_file_not_found: Pagina dorita nu exista sau nu mai este valabila.
69 notice_file_not_found: Pagina dorita nu exista sau nu mai este valabila.
70 notice_locking_conflict: Informatiile au fost modificate de un alt utilizator.
70 notice_locking_conflict: Informatiile au fost modificate de un alt utilizator.
71 notice_scm_error: Articolul sau reviziunea nu exista in stoc (Repository).
71 notice_scm_error: Articolul sau reviziunea nu exista in stoc (Repository).
72 notice_not_authorized: Nu aveti autorizatia sa accesati aceasta pagina.
72 notice_not_authorized: Nu aveti autorizatia sa accesati aceasta pagina.
73 notice_email_sent: Un e-mail a fost trimis la adresa %s
73 notice_email_sent: Un e-mail a fost trimis la adresa %s
74 notice_email_error: Eroare in trimiterea e-mailului (%s)
74 notice_email_error: Eroare in trimiterea e-mailului (%s)
75 notice_feeds_access_key_reseted: Parola de acces RSS a fost resetat.
75 notice_feeds_access_key_reseted: Parola de acces RSS a fost resetat.
76
76
77 mail_subject_lost_password: Your Redmine password
77 mail_subject_lost_password: Your Redmine password
78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
79 mail_subject_register: Redmine account activation
79 mail_subject_register: Redmine account activation
80 mail_body_register: 'To activate your Redmine account, click on the following link:'
80 mail_body_register: 'To activate your Redmine account, click on the following link:'
81
81
82 gui_validation_error: 1 eroare
82 gui_validation_error: 1 eroare
83 gui_validation_error_plural: %d erori
83 gui_validation_error_plural: %d erori
84
84
85 field_name: Nume
85 field_name: Nume
86 field_description: Descriere
86 field_description: Descriere
87 field_summary: Sumar
87 field_summary: Sumar
88 field_is_required: Obligatoriu
88 field_is_required: Obligatoriu
89 field_firstname: Nume
89 field_firstname: Nume
90 field_lastname: Prenume
90 field_lastname: Prenume
91 field_mail: Email
91 field_mail: Email
92 field_filename: Fisier
92 field_filename: Fisier
93 field_filesize: Marimea fisierului
93 field_filesize: Marimea fisierului
94 field_downloads: Download
94 field_downloads: Download
95 field_author: Autor
95 field_author: Autor
96 field_created_on: Creat
96 field_created_on: Creat
97 field_updated_on: Modificat
97 field_updated_on: Modificat
98 field_field_format: Format
98 field_field_format: Format
99 field_is_for_all: Pentru toate proiectele
99 field_is_for_all: Pentru toate proiectele
100 field_possible_values: Valori posibile
100 field_possible_values: Valori posibile
101 field_regexp: Expresie regulara
101 field_regexp: Expresie regulara
102 field_min_length: Lungime minima
102 field_min_length: Lungime minima
103 field_max_length: Lungime maxima
103 field_max_length: Lungime maxima
104 field_value: Valoare
104 field_value: Valoare
105 field_category: Categorie
105 field_category: Categorie
106 field_title: Titlu
106 field_title: Titlu
107 field_project: Proiect
107 field_project: Proiect
108 field_issue: Tichet
108 field_issue: Tichet
109 field_status: Statut
109 field_status: Statut
110 field_notes: Note
110 field_notes: Note
111 field_is_closed: Tichet rezolvat
111 field_is_closed: Tichet rezolvat
112 field_is_default: Statut de baza
112 field_is_default: Statut de baza
113 field_tracker: Tip tichet
113 field_tracker: Tip tichet
114 field_subject: Subiect
114 field_subject: Subiect
115 field_due_date: Data finalizarii
115 field_due_date: Data finalizarii
116 field_assigned_to: Atribuit pentru
116 field_assigned_to: Atribuit pentru
117 field_priority: Prioritate
117 field_priority: Prioritate
118 field_fixed_version: Versiune rezolvata
118 field_fixed_version: Versiune rezolvata
119 field_user: Utilizator
119 field_user: Utilizator
120 field_role: Rol
120 field_role: Rol
121 field_homepage: Pagina principala
121 field_homepage: Pagina principala
122 field_is_public: Public
122 field_is_public: Public
123 field_parent: Subproiect al
123 field_parent: Subproiect al
124 field_is_in_chlog: Tichetele sunt vizibile in changelog
124 field_is_in_chlog: Tichetele sunt vizibile in changelog
125 field_is_in_roadmap: Tichetele sunt vizibile in roadmap
125 field_is_in_roadmap: Tichetele sunt vizibile in roadmap
126 field_login: Autentificare
126 field_login: Autentificare
127 field_mail_notification: Notificari prin e-mail
127 field_mail_notification: Notificari prin e-mail
128 field_admin: Administrator
128 field_admin: Administrator
129 field_last_login_on: Ultima conectare
129 field_last_login_on: Ultima conectare
130 field_language: Limba
130 field_language: Limba
131 field_effective_date: Data
131 field_effective_date: Data
132 field_password: Parola
132 field_password: Parola
133 field_new_password: Parola noua
133 field_new_password: Parola noua
134 field_password_confirmation: Confirmare
134 field_password_confirmation: Confirmare
135 field_version: Versiune
135 field_version: Versiune
136 field_type: Tip
136 field_type: Tip
137 field_host: Host
137 field_host: Host
138 field_port: Port
138 field_port: Port
139 field_account: Cont
139 field_account: Cont
140 field_base_dn: Base DN
140 field_base_dn: Base DN
141 field_attr_login: Atribut autentificare
141 field_attr_login: Atribut autentificare
142 field_attr_firstname: Atribut nume
142 field_attr_firstname: Atribut nume
143 field_attr_lastname: Atribut prenume
143 field_attr_lastname: Atribut prenume
144 field_attr_mail: Atribut e-mail
144 field_attr_mail: Atribut e-mail
145 field_onthefly: Creare utilizator on-the-fly (rapid)
145 field_onthefly: Creare utilizator on-the-fly (rapid)
146 field_start_date: Start
146 field_start_date: Start
147 field_done_ratio: %% rezolvat
147 field_done_ratio: %% rezolvat
148 field_auth_source: Mod de autentificare
148 field_auth_source: Mod de autentificare
149 field_hide_mail: Ascunde adresa de e-mail
149 field_hide_mail: Ascunde adresa de e-mail
150 field_comments: Comentariu
150 field_comments: Comentariu
151 field_url: URL
151 field_url: URL
152 field_start_page: Pagina de start
152 field_start_page: Pagina de start
153 field_subproject: Subproiect
153 field_subproject: Subproiect
154 field_hours: Ore
154 field_hours: Ore
155 field_activity: Activitate
155 field_activity: Activitate
156 field_spent_on: Data
156 field_spent_on: Data
157 field_identifier: Identificator
157 field_identifier: Identificator
158 field_is_filter: Folosit ca un filtru
158 field_is_filter: Folosit ca un filtru
159 field_issue_to_id: Articole similare
159 field_issue_to_id: Articole similare
160 field_delay: Intarziere
160 field_delay: Intarziere
161 field_assignable: La acest rol se poate atribui tichete
161 field_assignable: La acest rol se poate atribui tichete
162 field_redirect_existing_links: Redirectare linkuri existente
162 field_redirect_existing_links: Redirectare linkuri existente
163 field_estimated_hours: Timpul estimat
163 field_estimated_hours: Timpul estimat
164 field_default_value: Default value
164
165
165 setting_app_title: Titlul aplicatiei
166 setting_app_title: Titlul aplicatiei
166 setting_app_subtitle: Subtitlul aplicatiei
167 setting_app_subtitle: Subtitlul aplicatiei
167 setting_welcome_text: Textul de intampinare
168 setting_welcome_text: Textul de intampinare
168 setting_default_language: Limbajul
169 setting_default_language: Limbajul
169 setting_login_required: Autentificare obligatorie
170 setting_login_required: Autentificare obligatorie
170 setting_self_registration: Inregistrarea utilizatorilor pe cont propriu este permisa
171 setting_self_registration: Inregistrarea utilizatorilor pe cont propriu este permisa
171 setting_attachment_max_size: Lungimea maxima al attachmentului
172 setting_attachment_max_size: Lungimea maxima al attachmentului
172 setting_issues_export_limit: Limita de exportare a tichetelor
173 setting_issues_export_limit: Limita de exportare a tichetelor
173 setting_mail_from: Adresa de e-mail al emitatorului
174 setting_mail_from: Adresa de e-mail al emitatorului
174 setting_host_name: Numele hostului
175 setting_host_name: Numele hostului
175 setting_text_formatting: Formatarea textului
176 setting_text_formatting: Formatarea textului
176 setting_wiki_compression: Compresie istoric wiki
177 setting_wiki_compression: Compresie istoric wiki
177 setting_feeds_limit: Limita continut feed
178 setting_feeds_limit: Limita continut feed
178 setting_autofetch_changesets: Autofetch commits
179 setting_autofetch_changesets: Autofetch commits
179 setting_sys_api_enabled: Setare WS pentru managementul stocului (repository)
180 setting_sys_api_enabled: Setare WS pentru managementul stocului (repository)
180 setting_commit_ref_keywords: Cuvinte cheie de referinta
181 setting_commit_ref_keywords: Cuvinte cheie de referinta
181 setting_commit_fix_keywords: Cuvinte cheie de rezolvare
182 setting_commit_fix_keywords: Cuvinte cheie de rezolvare
182 setting_autologin: Autentificare automata
183 setting_autologin: Autentificare automata
183 setting_date_format: Formatul datelor
184 setting_date_format: Formatul datelor
184 setting_cross_project_issue_relations: Tichetele pot avea relatii intre diferite proiecte
185 setting_cross_project_issue_relations: Tichetele pot avea relatii intre diferite proiecte
185
186
186 label_user: Utilizator
187 label_user: Utilizator
187 label_user_plural: Utilizatori
188 label_user_plural: Utilizatori
188 label_user_new: Utilizator nou
189 label_user_new: Utilizator nou
189 label_project: Proiect
190 label_project: Proiect
190 label_project_new: Proiect nou
191 label_project_new: Proiect nou
191 label_project_plural: Proiecte
192 label_project_plural: Proiecte
192 label_project_all: Toate proiectele
193 label_project_all: Toate proiectele
193 label_project_latest: Ultimele proiecte
194 label_project_latest: Ultimele proiecte
194 label_issue: Tichet
195 label_issue: Tichet
195 label_issue_new: Tichet nou
196 label_issue_new: Tichet nou
196 label_issue_plural: Tichete
197 label_issue_plural: Tichete
197 label_issue_view_all: Vizualizare toate tichetele
198 label_issue_view_all: Vizualizare toate tichetele
198 label_document: Document
199 label_document: Document
199 label_document_new: Document nou
200 label_document_new: Document nou
200 label_document_plural: Documente
201 label_document_plural: Documente
201 label_role: Rol
202 label_role: Rol
202 label_role_plural: Roluri
203 label_role_plural: Roluri
203 label_role_new: Rol nou
204 label_role_new: Rol nou
204 label_role_and_permissions: Roluri si permisiuni
205 label_role_and_permissions: Roluri si permisiuni
205 label_member: Membru
206 label_member: Membru
206 label_member_new: Membru nou
207 label_member_new: Membru nou
207 label_member_plural: Membrii
208 label_member_plural: Membrii
208 label_tracker: Tip tichet
209 label_tracker: Tip tichet
209 label_tracker_plural: Tipuri de tichete
210 label_tracker_plural: Tipuri de tichete
210 label_tracker_new: Tip tichet nou
211 label_tracker_new: Tip tichet nou
211 label_workflow: Workflow
212 label_workflow: Workflow
212 label_issue_status: Statut tichet
213 label_issue_status: Statut tichet
213 label_issue_status_plural: Statut tichete
214 label_issue_status_plural: Statut tichete
214 label_issue_status_new: Statut nou
215 label_issue_status_new: Statut nou
215 label_issue_category: Categorie tichet
216 label_issue_category: Categorie tichet
216 label_issue_category_plural: Categorii tichete
217 label_issue_category_plural: Categorii tichete
217 label_issue_category_new: Categorie noua
218 label_issue_category_new: Categorie noua
218 label_custom_field: Camp personalizat
219 label_custom_field: Camp personalizat
219 label_custom_field_plural: Campuri personalizate
220 label_custom_field_plural: Campuri personalizate
220 label_custom_field_new: Camp personalizat nou
221 label_custom_field_new: Camp personalizat nou
221 label_enumerations: Enumeratii
222 label_enumerations: Enumeratii
222 label_enumeration_new: Valoare noua
223 label_enumeration_new: Valoare noua
223 label_information: Informatie
224 label_information: Informatie
224 label_information_plural: Informatii
225 label_information_plural: Informatii
225 label_please_login: Va rugam sa va autentificati
226 label_please_login: Va rugam sa va autentificati
226 label_register: Inregistrare
227 label_register: Inregistrare
227 label_password_lost: Parola pierduta
228 label_password_lost: Parola pierduta
228 label_home: Prima pagina
229 label_home: Prima pagina
229 label_my_page: Pagina mea
230 label_my_page: Pagina mea
230 label_my_account: Contul meu
231 label_my_account: Contul meu
231 label_my_projects: Proiectele mele
232 label_my_projects: Proiectele mele
232 label_administration: Administrare
233 label_administration: Administrare
233 label_login: Autentificare
234 label_login: Autentificare
234 label_logout: Iesire din cont
235 label_logout: Iesire din cont
235 label_help: Ajutor
236 label_help: Ajutor
236 label_reported_issues: Tichete raportate
237 label_reported_issues: Tichete raportate
237 label_assigned_to_me_issues: Tichete atribuite pentru mine
238 label_assigned_to_me_issues: Tichete atribuite pentru mine
238 label_last_login: Ultima conectare
239 label_last_login: Ultima conectare
239 label_last_updates: Ultima modificare
240 label_last_updates: Ultima modificare
240 label_last_updates_plural: ultimele %d modificari
241 label_last_updates_plural: ultimele %d modificari
241 label_registered_on: Inregistrat la
242 label_registered_on: Inregistrat la
242 label_activity: Activitate
243 label_activity: Activitate
243 label_new: Nou
244 label_new: Nou
244 label_logged_as: Inregistrat ca
245 label_logged_as: Inregistrat ca
245 label_environment: Mediu
246 label_environment: Mediu
246 label_authentication: Autentificare
247 label_authentication: Autentificare
247 label_auth_source: Modul de autentificare
248 label_auth_source: Modul de autentificare
248 label_auth_source_new: Mod de autentificare noua
249 label_auth_source_new: Mod de autentificare noua
249 label_auth_source_plural: Moduri de autentificare
250 label_auth_source_plural: Moduri de autentificare
250 label_subproject_plural: Subproiecte
251 label_subproject_plural: Subproiecte
251 label_min_max_length: Lungime min-max
252 label_min_max_length: Lungime min-max
252 label_list: Lista
253 label_list: Lista
253 label_date: Data
254 label_date: Data
254 label_integer: Numar intreg
255 label_integer: Numar intreg
255 label_boolean: Variabila logica
256 label_boolean: Variabila logica
256 label_string: Text
257 label_string: Text
257 label_text: text lung
258 label_text: text lung
258 label_attribute: Atribut
259 label_attribute: Atribut
259 label_attribute_plural: Attribute
260 label_attribute_plural: Attribute
260 label_download: %d Download
261 label_download: %d Download
261 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
262 label_no_data: Nu exista date de vizualizat
263 label_no_data: Nu exista date de vizualizat
263 label_change_status: Schimbare statut
264 label_change_status: Schimbare statut
264 label_history: Istoric
265 label_history: Istoric
265 label_attachment: Fisier
266 label_attachment: Fisier
266 label_attachment_new: Fisier nou
267 label_attachment_new: Fisier nou
267 label_attachment_delete: Stergere fisier
268 label_attachment_delete: Stergere fisier
268 label_attachment_plural: Fisiere
269 label_attachment_plural: Fisiere
269 label_report: Raport
270 label_report: Raport
270 label_report_plural: Rapoarte
271 label_report_plural: Rapoarte
271 label_news: Stiri
272 label_news: Stiri
272 label_news_new: Adauga stiri
273 label_news_new: Adauga stiri
273 label_news_plural: Stiri
274 label_news_plural: Stiri
274 label_news_latest: Ultimele noutati
275 label_news_latest: Ultimele noutati
275 label_news_view_all: Vizualizare stiri
276 label_news_view_all: Vizualizare stiri
276 label_change_log: Change log
277 label_change_log: Change log
277 label_settings: Setari
278 label_settings: Setari
278 label_overview: Sumar
279 label_overview: Sumar
279 label_version: Versiune
280 label_version: Versiune
280 label_version_new: Versiune noua
281 label_version_new: Versiune noua
281 label_version_plural: Versiuni
282 label_version_plural: Versiuni
282 label_confirmation: Confirmare
283 label_confirmation: Confirmare
283 label_export_to: Exportare in
284 label_export_to: Exportare in
284 label_read: Citire...
285 label_read: Citire...
285 label_public_projects: Proiecte publice
286 label_public_projects: Proiecte publice
286 label_open_issues: deschis
287 label_open_issues: deschis
287 label_open_issues_plural: deschise
288 label_open_issues_plural: deschise
288 label_closed_issues: rezolvat
289 label_closed_issues: rezolvat
289 label_closed_issues_plural: rezolvate
290 label_closed_issues_plural: rezolvate
290 label_total: Total
291 label_total: Total
291 label_permissions: Permisiuni
292 label_permissions: Permisiuni
292 label_current_status: Statut curent
293 label_current_status: Statut curent
293 label_new_statuses_allowed: Drepturi de a schimba statutul in
294 label_new_statuses_allowed: Drepturi de a schimba statutul in
294 label_all: toate
295 label_all: toate
295 label_none: n/a
296 label_none: n/a
296 label_next: Urmator
297 label_next: Urmator
297 label_previous: Anterior
298 label_previous: Anterior
298 label_used_by: Folosit de
299 label_used_by: Folosit de
299 label_details: Detalii
300 label_details: Detalii
300 label_add_note: Adauga o nota
301 label_add_note: Adauga o nota
301 label_per_page: Per pagina
302 label_per_page: Per pagina
302 label_calendar: Calendar
303 label_calendar: Calendar
303 label_months_from: luni incepand cu
304 label_months_from: luni incepand cu
304 label_gantt: Gantt
305 label_gantt: Gantt
305 label_internal: Internal
306 label_internal: Internal
306 label_last_changes: ultimele %d modificari
307 label_last_changes: ultimele %d modificari
307 label_change_view_all: Vizualizare toate modificarile
308 label_change_view_all: Vizualizare toate modificarile
308 label_personalize_page: Personalizeaza aceasta pagina
309 label_personalize_page: Personalizeaza aceasta pagina
309 label_comment: Comentariu
310 label_comment: Comentariu
310 label_comment_plural: Comentarii
311 label_comment_plural: Comentarii
311 label_comment_add: Adauga un comentariu
312 label_comment_add: Adauga un comentariu
312 label_comment_added: Comentariu adaugat
313 label_comment_added: Comentariu adaugat
313 label_comment_delete: Stergere comentarii
314 label_comment_delete: Stergere comentarii
314 label_query: Raport personalizat
315 label_query: Raport personalizat
315 label_query_plural: Rapoarte personalizate
316 label_query_plural: Rapoarte personalizate
316 label_query_new: Raport nou
317 label_query_new: Raport nou
317 label_filter_add: Adauga filtru
318 label_filter_add: Adauga filtru
318 label_filter_plural: Filtre
319 label_filter_plural: Filtre
319 label_equals: egal cu
320 label_equals: egal cu
320 label_not_equals: nu este egal cu
321 label_not_equals: nu este egal cu
321 label_in_less_than: este mai putin decat
322 label_in_less_than: este mai putin decat
322 label_in_more_than: este mai mult ca
323 label_in_more_than: este mai mult ca
323 label_in: in
324 label_in: in
324 label_today: azi
325 label_today: azi
325 label_this_week: saptamana curenta
326 label_this_week: saptamana curenta
326 label_less_than_ago: recent
327 label_less_than_ago: recent
327 label_more_than_ago: mai multe zile
328 label_more_than_ago: mai multe zile
328 label_ago: in ultimele zile
329 label_ago: in ultimele zile
329 label_contains: contine
330 label_contains: contine
330 label_not_contains: nu contine
331 label_not_contains: nu contine
331 label_day_plural: zile
332 label_day_plural: zile
332 label_repository: Stoc (Repository)
333 label_repository: Stoc (Repository)
333 label_browse: Navigare
334 label_browse: Navigare
334 label_modification: %d modificare
335 label_modification: %d modificare
335 label_modification_plural: %d modificari
336 label_modification_plural: %d modificari
336 label_revision: Revizie
337 label_revision: Revizie
337 label_revision_plural: Revizii
338 label_revision_plural: Revizii
338 label_added: adaugat
339 label_added: adaugat
339 label_modified: modificat
340 label_modified: modificat
340 label_deleted: sters
341 label_deleted: sters
341 label_latest_revision: Ultima revizie
342 label_latest_revision: Ultima revizie
342 label_latest_revision_plural: Ultimele revizii
343 label_latest_revision_plural: Ultimele revizii
343 label_view_revisions: Vizualizare revizii
344 label_view_revisions: Vizualizare revizii
344 label_max_size: Marime maxima
345 label_max_size: Marime maxima
345 label_on: 'din'
346 label_on: 'din'
346 label_sort_highest: Muta prima
347 label_sort_highest: Muta prima
347 label_sort_higher: Muta sus
348 label_sort_higher: Muta sus
348 label_sort_lower: Mota jos
349 label_sort_lower: Mota jos
349 label_sort_lowest: Mota ultima
350 label_sort_lowest: Mota ultima
350 label_roadmap: Harta activitatiilor
351 label_roadmap: Harta activitatiilor
351 label_roadmap_due_in: Rezolvat in
352 label_roadmap_due_in: Rezolvat in
352 label_roadmap_overdue: %s intarziere
353 label_roadmap_overdue: %s intarziere
353 label_roadmap_no_issues: Nu sunt tichete pentru aceasta reviziune
354 label_roadmap_no_issues: Nu sunt tichete pentru aceasta reviziune
354 label_search: Cauta
355 label_search: Cauta
355 label_result_plural: Rezultate
356 label_result_plural: Rezultate
356 label_all_words: Toate cuvintele
357 label_all_words: Toate cuvintele
357 label_wiki: Wiki
358 label_wiki: Wiki
358 label_wiki_edit: Editare wiki
359 label_wiki_edit: Editare wiki
359 label_wiki_edit_plural: Editari wiki
360 label_wiki_edit_plural: Editari wiki
360 label_wiki_page: Pagina wiki
361 label_wiki_page: Pagina wiki
361 label_wiki_page_plural: Pagini wiki
362 label_wiki_page_plural: Pagini wiki
362 label_current_version: Versiunea curenta
363 label_current_version: Versiunea curenta
363 label_preview: Pre-vizualizare
364 label_preview: Pre-vizualizare
364 label_feed_plural: Feeduri
365 label_feed_plural: Feeduri
365 label_changes_details: Detaliile modificarilor
366 label_changes_details: Detaliile modificarilor
366 label_issue_tracking: Urmarire tichete
367 label_issue_tracking: Urmarire tichete
367 label_spent_time: Timp consumat
368 label_spent_time: Timp consumat
368 label_f_hour: %.2f ora
369 label_f_hour: %.2f ora
369 label_f_hour_plural: %.2f ore
370 label_f_hour_plural: %.2f ore
370 label_time_tracking: Urmarire timp
371 label_time_tracking: Urmarire timp
371 label_change_plural: Schimbari
372 label_change_plural: Schimbari
372 label_statistics: Statistici
373 label_statistics: Statistici
373 label_commits_per_month: Rezolvari lunare
374 label_commits_per_month: Rezolvari lunare
374 label_commits_per_author: Rezolvari
375 label_commits_per_author: Rezolvari
375 label_view_diff: Vizualizare diferente
376 label_view_diff: Vizualizare diferente
376 label_diff_inline: inline
377 label_diff_inline: inline
377 label_diff_side_by_side: side by side
378 label_diff_side_by_side: side by side
378 label_options: Optiuni
379 label_options: Optiuni
379 label_copy_workflow_from: Copiaza workflow de la
380 label_copy_workflow_from: Copiaza workflow de la
380 label_permissions_report: Raportul permisiunilor
381 label_permissions_report: Raportul permisiunilor
381 label_watched_issues: Tichete urmarite
382 label_watched_issues: Tichete urmarite
382 label_related_issues: Tichete similare
383 label_related_issues: Tichete similare
383 label_applied_status: Statut aplicat
384 label_applied_status: Statut aplicat
384 label_loading: Incarcare...
385 label_loading: Incarcare...
385 label_relation_new: Relatie noua
386 label_relation_new: Relatie noua
386 label_relation_delete: Stergere relatie
387 label_relation_delete: Stergere relatie
387 label_relates_to: relatat la
388 label_relates_to: relatat la
388 label_duplicates: duplicate
389 label_duplicates: duplicate
389 label_blocks: blocuri
390 label_blocks: blocuri
390 label_blocked_by: blocat de
391 label_blocked_by: blocat de
391 label_precedes: precedes
392 label_precedes: precedes
392 label_follows: follows
393 label_follows: follows
393 label_end_to_start: de la sfarsit la capat
394 label_end_to_start: de la sfarsit la capat
394 label_end_to_end: de la sfarsit la sfarsit
395 label_end_to_end: de la sfarsit la sfarsit
395 label_start_to_start: de la capat la capat
396 label_start_to_start: de la capat la capat
396 label_start_to_end: de la sfarsit la capat
397 label_start_to_end: de la sfarsit la capat
397 label_stay_logged_in: Ramane autenticat
398 label_stay_logged_in: Ramane autenticat
398 label_disabled: dezactivata
399 label_disabled: dezactivata
399 label_show_completed_versions: Vizualizare verziuni completate
400 label_show_completed_versions: Vizualizare verziuni completate
400 label_me: mine
401 label_me: mine
401 label_board: Forum
402 label_board: Forum
402 label_board_new: Forum nou
403 label_board_new: Forum nou
403 label_board_plural: Forumuri
404 label_board_plural: Forumuri
404 label_topic_plural: Subiecte
405 label_topic_plural: Subiecte
405 label_message_plural: Mesaje
406 label_message_plural: Mesaje
406 label_message_last: Ultimul mesaj
407 label_message_last: Ultimul mesaj
407 label_message_new: Mesaj nou
408 label_message_new: Mesaj nou
408 label_reply_plural: Raspunsuri
409 label_reply_plural: Raspunsuri
409 label_send_information: Trimite informatii despre cont pentru utilizator
410 label_send_information: Trimite informatii despre cont pentru utilizator
410 label_year: An
411 label_year: An
411 label_month: Luna
412 label_month: Luna
412 label_week: Saptamana
413 label_week: Saptamana
413 label_date_from: De la
414 label_date_from: De la
414 label_date_to: Pentru
415 label_date_to: Pentru
415 label_language_based: Bazat pe limbaj
416 label_language_based: Bazat pe limbaj
416 label_sort_by: Sortare dupa %s
417 label_sort_by: Sortare dupa %s
417 label_send_test_email: trimite un e-mail de test
418 label_send_test_email: trimite un e-mail de test
418 label_feeds_access_key_created_on: Parola de acces RSS creat cu %s mai devreme
419 label_feeds_access_key_created_on: Parola de acces RSS creat cu %s mai devreme
419 label_module_plural: Module
420 label_module_plural: Module
420 label_added_time_by: Adaugat de %s %s mai devreme
421 label_added_time_by: Adaugat de %s %s mai devreme
421 label_updated_time: Modificat %s mai devreme
422 label_updated_time: Modificat %s mai devreme
422 label_jump_to_a_project: Alege un proiect ...
423 label_jump_to_a_project: Alege un proiect ...
423
424
424 button_login: Autentificare
425 button_login: Autentificare
425 button_submit: Trimite
426 button_submit: Trimite
426 button_save: Salveaza
427 button_save: Salveaza
427 button_check_all: Bifeaza toate
428 button_check_all: Bifeaza toate
428 button_uncheck_all: Reseteaza toate
429 button_uncheck_all: Reseteaza toate
429 button_delete: Sterge
430 button_delete: Sterge
430 button_create: Creare
431 button_create: Creare
431 button_test: Test
432 button_test: Test
432 button_edit: Editare
433 button_edit: Editare
433 button_add: Adauga
434 button_add: Adauga
434 button_change: Modificare
435 button_change: Modificare
435 button_apply: Aplicare
436 button_apply: Aplicare
436 button_clear: Resetare
437 button_clear: Resetare
437 button_lock: Inchide
438 button_lock: Inchide
438 button_unlock: Deschide
439 button_unlock: Deschide
439 button_download: Download
440 button_download: Download
440 button_list: Listare
441 button_list: Listare
441 button_view: Vizualizare
442 button_view: Vizualizare
442 button_move: Mutare
443 button_move: Mutare
443 button_back: Inapoi
444 button_back: Inapoi
444 button_cancel: Anulare
445 button_cancel: Anulare
445 button_activate: Activare
446 button_activate: Activare
446 button_sort: Sortare
447 button_sort: Sortare
447 button_log_time: Log time
448 button_log_time: Log time
448 button_rollback: Inapoi la aceasta versiune
449 button_rollback: Inapoi la aceasta versiune
449 button_watch: Urmarie
450 button_watch: Urmarie
450 button_unwatch: Terminare urmarire
451 button_unwatch: Terminare urmarire
451 button_reply: Raspuns
452 button_reply: Raspuns
452 button_archive: Arhivare
453 button_archive: Arhivare
453 button_unarchive: Dezarhivare
454 button_unarchive: Dezarhivare
454 button_reset: Reset
455 button_reset: Reset
455 button_rename: Redenumire
456 button_rename: Redenumire
456
457
457 status_active: activ
458 status_active: activ
458 status_registered: inregistrat
459 status_registered: inregistrat
459 status_locked: inchis
460 status_locked: inchis
460
461
461 text_select_mail_notifications: Selectare actiuni pentru care se va trimite notificari prin e-mail.
462 text_select_mail_notifications: Selectare actiuni pentru care se va trimite notificari prin e-mail.
462 text_regexp_info: de exemplu ^[A-Z0-9]+$
463 text_regexp_info: de exemplu ^[A-Z0-9]+$
463 text_min_max_length_info: 0 inseamna fara restrictii
464 text_min_max_length_info: 0 inseamna fara restrictii
464 text_project_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest proiect si toate datele aferente ?
465 text_project_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest proiect si toate datele aferente ?
465 text_workflow_edit: Selecteaza un rol si un tip tichet pentru a edita acest workflow
466 text_workflow_edit: Selecteaza un rol si un tip tichet pentru a edita acest workflow
466 text_are_you_sure: Sunteti sigur ?
467 text_are_you_sure: Sunteti sigur ?
467 text_journal_changed: modificat de la %s la %s
468 text_journal_changed: modificat de la %s la %s
468 text_journal_set_to: setat la %s
469 text_journal_set_to: setat la %s
469 text_journal_deleted: sters
470 text_journal_deleted: sters
470 text_tip_task_begin_day: activitate care incepe azi
471 text_tip_task_begin_day: activitate care incepe azi
471 text_tip_task_end_day: activitate care se termina azi
472 text_tip_task_end_day: activitate care se termina azi
472 text_tip_task_begin_end_day: activitate care incepe si se termina azi
473 text_tip_task_begin_end_day: activitate care incepe si se termina azi
473 text_project_identifier_info: 'Se poate folosi caracterele a-z si cifrele.<br />Odata salvat identificatorul nu poate fi modificat.'
474 text_project_identifier_info: 'Se poate folosi caracterele a-z si cifrele.<br />Odata salvat identificatorul nu poate fi modificat.'
474 text_caracters_maximum: maximum %d caractere.
475 text_caracters_maximum: maximum %d caractere.
475 text_length_between: Lungimea intre %d si %d caractere.
476 text_length_between: Lungimea intre %d si %d caractere.
476 text_tracker_no_workflow: Nu este definit nici un workflow pentru acest tip de tichet
477 text_tracker_no_workflow: Nu este definit nici un workflow pentru acest tip de tichet
477 text_unallowed_characters: Caractere nepermise
478 text_unallowed_characters: Caractere nepermise
478 text_comma_separated: Se poate folosi valori multiple (separate de virgula).
479 text_comma_separated: Se poate folosi valori multiple (separate de virgula).
479 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
480 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
480 text_issue_added: Tichetul %s a fost raportat.
481 text_issue_added: Tichetul %s a fost raportat.
481 text_issue_updated: tichetul %s a fost modificat.
482 text_issue_updated: tichetul %s a fost modificat.
482 text_wiki_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest wiki si continutul ei ?
483 text_wiki_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest wiki si continutul ei ?
483 text_issue_category_destroy_question: Cateva tichete (%d) apartin acestei categorii. Cum vreti sa procedati ?
484 text_issue_category_destroy_question: Cateva tichete (%d) apartin acestei categorii. Cum vreti sa procedati ?
484 text_issue_category_destroy_assignments: Remove category assignments
485 text_issue_category_destroy_assignments: Remove category assignments
485 text_issue_category_reassign_to: Reassing issues to this category
486 text_issue_category_reassign_to: Reassing issues to this category
486
487
487 default_role_manager: Manager
488 default_role_manager: Manager
488 default_role_developper: Programator
489 default_role_developper: Programator
489 default_role_reporter: Creator rapoarte
490 default_role_reporter: Creator rapoarte
490 default_tracker_bug: Defect
491 default_tracker_bug: Defect
491 default_tracker_feature: Functionalitate
492 default_tracker_feature: Functionalitate
492 default_tracker_support: Suport
493 default_tracker_support: Suport
493 default_issue_status_new: Nou
494 default_issue_status_new: Nou
494 default_issue_status_assigned: Atribuit
495 default_issue_status_assigned: Atribuit
495 default_issue_status_resolved: Rezolvat
496 default_issue_status_resolved: Rezolvat
496 default_issue_status_feedback: Feedback
497 default_issue_status_feedback: Feedback
497 default_issue_status_closed: Rezolvat
498 default_issue_status_closed: Rezolvat
498 default_issue_status_rejected: Respins
499 default_issue_status_rejected: Respins
499 default_doc_category_user: Documentatie
500 default_doc_category_user: Documentatie
500 default_doc_category_tech: Documentatie tehnica
501 default_doc_category_tech: Documentatie tehnica
501 default_priority_low: Redusa
502 default_priority_low: Redusa
502 default_priority_normal: Normala
503 default_priority_normal: Normala
503 default_priority_high: Ridicata
504 default_priority_high: Ridicata
504 default_priority_urgent: Urgenta
505 default_priority_urgent: Urgenta
505 default_priority_immediate: Imediata
506 default_priority_immediate: Imediata
506 default_activity_design: Design
507 default_activity_design: Design
507 default_activity_development: Programare
508 default_activity_development: Programare
508
509
509 enumeration_issue_priorities: Prioritati tichet
510 enumeration_issue_priorities: Prioritati tichet
510 enumeration_doc_categories: Categorii documente
511 enumeration_doc_categories: Categorii documente
511 enumeration_activities: Activitati (urmarite in timp)
512 enumeration_activities: Activitati (urmarite in timp)
512 label_index_by_date: Index by date
513 label_index_by_date: Index by date
513 label_index_by_title: Index by title
514 label_index_by_title: Index by title
514 label_file_plural: Files
515 label_file_plural: Files
515 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
516 field_column_names: Columns
517 field_column_names: Columns
517 label_default_columns: Default columns
518 label_default_columns: Default columns
518 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_repositories_encodings: Repositories encodings
520 setting_repositories_encodings: Repositories encodings
520 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_no_change_option: (No change)
523 label_no_change_option: (No change)
523 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 label_theme: Theme
525 label_theme: Theme
525 label_default: Default
526 label_default: Default
526 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
527 label_nobody: nobody
528 label_nobody: nobody
528 button_change_password: Change password
529 button_change_password: Change password
529 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
530 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
531 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_all: "For any event on all my projects"
532 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
533 setting_emails_footer: Emails footer
534 setting_emails_footer: Emails footer
534 label_float: Float
535 label_float: Float
535 button_copy: Copy
536 button_copy: Copy
536 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
537 mail_body_account_information: Your Redmine account information
538 mail_body_account_information: Your Redmine account information
538 setting_protocol: Protocol
539 setting_protocol: Protocol
539 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
540 setting_time_format: Time format
541 setting_time_format: Time format
541 label_registration_activation_by_email: account activation by email
542 label_registration_activation_by_email: account activation by email
542 mail_subject_account_activation_request: Redmine account activation request
543 mail_subject_account_activation_request: Redmine account activation request
543 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
544 label_registration_automatic_activation: automatic account activation
545 label_registration_automatic_activation: automatic account activation
545 label_registration_manual_activation: manual account activation
546 label_registration_manual_activation: manual account activation
546 notice_account_pending: "Your account was created and is now pending administrator approval."
547 notice_account_pending: "Your account was created and is now pending administrator approval."
547 field_time_zone: Time zone
548 field_time_zone: Time zone
548 text_caracters_minimum: Must be at least %d characters long.
549 text_caracters_minimum: Must be at least %d characters long.
549 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
550 button_annotate: Annotate
551 button_annotate: Annotate
551 label_issues_by: Issues by %s
552 label_issues_by: Issues by %s
552 field_searchable: Searchable
553 field_searchable: Searchable
553 label_display_per_page: 'Per page: %s'
554 label_display_per_page: 'Per page: %s'
554 setting_per_page_options: Objects per page options
555 setting_per_page_options: Objects per page options
555 label_age: Age
556 label_age: Age
556 notice_default_data_loaded: Default configuration successfully loaded.
557 notice_default_data_loaded: Default configuration successfully loaded.
557 text_load_default_configuration: Load the default configuration
558 text_load_default_configuration: Load the default configuration
558 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
559 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
560 button_update: Update
561 button_update: Update
561 label_change_properties: Change properties
562 label_change_properties: Change properties
562 label_general: General
563 label_general: General
563 label_repository_plural: Repositories
564 label_repository_plural: Repositories
564 label_associated_revisions: Associated revisions
565 label_associated_revisions: Associated revisions
@@ -1,563 +1,564
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Январь,Февраль,Март,Апрель,Май,Июнь,Июль,Август,Сентябрь,Октябрь,Ноябрь,Декабрь
4 actionview_datehelper_select_month_names: Январь,Февраль,Март,Апрель,Май,Июнь,Июль,Август,Сентябрь,Октябрь,Ноябрь,Декабрь
5 actionview_datehelper_select_month_names_abbr: Янв,Фев,Мар,Апр,Май,Июн,Июл,Авг,Сен,Окт,Нояб,Дек
5 actionview_datehelper_select_month_names_abbr: Янв,Фев,Мар,Апр,Май,Июн,Июл,Авг,Сен,Окт,Нояб,Дек
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 день
8 actionview_datehelper_time_in_words_day: 1 день
9 actionview_datehelper_time_in_words_day_plural: %d дней(я)
9 actionview_datehelper_time_in_words_day_plural: %d дней(я)
10 actionview_datehelper_time_in_words_hour_about: около часа
10 actionview_datehelper_time_in_words_hour_about: около часа
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часов
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часов
12 actionview_datehelper_time_in_words_hour_about_single: около часа
12 actionview_datehelper_time_in_words_hour_about_single: около часа
13 actionview_datehelper_time_in_words_minute: 1 минута
13 actionview_datehelper_time_in_words_minute: 1 минута
14 actionview_datehelper_time_in_words_minute_half: полминуты
14 actionview_datehelper_time_in_words_minute_half: полминуты
15 actionview_datehelper_time_in_words_minute_less_than: менее минуты
15 actionview_datehelper_time_in_words_minute_less_than: менее минуты
16 actionview_datehelper_time_in_words_minute_plural: %d минут(ы)
16 actionview_datehelper_time_in_words_minute_plural: %d минут(ы)
17 actionview_datehelper_time_in_words_minute_single: 1 минута
17 actionview_datehelper_time_in_words_minute_single: 1 минута
18 actionview_datehelper_time_in_words_second_less_than: менее секунды
18 actionview_datehelper_time_in_words_second_less_than: менее секунды
19 actionview_datehelper_time_in_words_second_less_than_plural: менее %d секунд
19 actionview_datehelper_time_in_words_second_less_than_plural: менее %d секунд
20 actionview_instancetag_blank_option: Выберите
20 actionview_instancetag_blank_option: Выберите
21
21
22 activerecord_error_inclusion: нет в списке
22 activerecord_error_inclusion: нет в списке
23 activerecord_error_exclusion: зарезервировано
23 activerecord_error_exclusion: зарезервировано
24 activerecord_error_invalid: неверное значение
24 activerecord_error_invalid: неверное значение
25 activerecord_error_confirmation: ошибка в подтверждении
25 activerecord_error_confirmation: ошибка в подтверждении
26 activerecord_error_accepted: необходимо принять
26 activerecord_error_accepted: необходимо принять
27 activerecord_error_empty: необходимо заполнить
27 activerecord_error_empty: необходимо заполнить
28 activerecord_error_blank: необходимо заполнить
28 activerecord_error_blank: необходимо заполнить
29 activerecord_error_too_long: слишком длинное значение
29 activerecord_error_too_long: слишком длинное значение
30 activerecord_error_too_short: слишком короткое значение
30 activerecord_error_too_short: слишком короткое значение
31 activerecord_error_wrong_length: не соответствует длине
31 activerecord_error_wrong_length: не соответствует длине
32 activerecord_error_taken: уже используется
32 activerecord_error_taken: уже используется
33 activerecord_error_not_a_number: не является числом
33 activerecord_error_not_a_number: не является числом
34 activerecord_error_not_a_date: дата недействительна
34 activerecord_error_not_a_date: дата недействительна
35 activerecord_error_greater_than_start_date: должна быть позднее даты начала
35 activerecord_error_greater_than_start_date: должна быть позднее даты начала
36 activerecord_error_not_same_project: не относятся к одному проекту
36 activerecord_error_not_same_project: не относятся к одному проекту
37 activerecord_error_circular_dependency: Такая связь приведет к циклической зависимости
37 activerecord_error_circular_dependency: Такая связь приведет к циклической зависимости
38
38
39 general_fmt_age: %d г.
39 general_fmt_age: %d г.
40 general_fmt_age_plural: %d гг.
40 general_fmt_age_plural: %d гг.
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Нет'
45 general_text_No: 'Нет'
46 general_text_Yes: 'Да'
46 general_text_Yes: 'Да'
47 general_text_no: 'Нет'
47 general_text_no: 'Нет'
48 general_text_yes: 'Да'
48 general_text_yes: 'Да'
49 general_lang_name: 'Russian (Русский)'
49 general_lang_name: 'Russian (Русский)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: UTF-8
51 general_csv_encoding: UTF-8
52 general_pdf_encoding: UTF-8
52 general_pdf_encoding: UTF-8
53 general_day_names: Понедельник,Вторник,Среда,Четверг,Пятница,Суббота,Воскресенье
53 general_day_names: Понедельник,Вторник,Среда,Четверг,Пятница,Суббота,Воскресенье
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Учетная запись успешно обновлена.
56 notice_account_updated: Учетная запись успешно обновлена.
57 notice_account_invalid_creditentials: Неправильное имя пользователя или пароль
57 notice_account_invalid_creditentials: Неправильное имя пользователя или пароль
58 notice_account_password_updated: Пароль успешно обновлен.
58 notice_account_password_updated: Пароль успешно обновлен.
59 notice_account_wrong_password: Неверный пароль
59 notice_account_wrong_password: Неверный пароль
60 notice_account_register_done: Учетная запись успешно создана. Для активации Вашей учетной записи зайдите по ссылке, которая выслана вам по электронной почте.
60 notice_account_register_done: Учетная запись успешно создана. Для активации Вашей учетной записи зайдите по ссылке, которая выслана вам по электронной почте.
61 notice_account_unknown_email: Неизвестный пользователь.
61 notice_account_unknown_email: Неизвестный пользователь.
62 notice_can_t_change_password: Для данной учетной записи используется источник внешней аутентификации. Невозможно изменить пароль.
62 notice_can_t_change_password: Для данной учетной записи используется источник внешней аутентификации. Невозможно изменить пароль.
63 notice_account_lost_email_sent: Вам отправлено письмо с инструкциями по выбору нового пароля.
63 notice_account_lost_email_sent: Вам отправлено письмо с инструкциями по выбору нового пароля.
64 notice_account_activated: Ваша учетная запись активирована. Вы можете войти.
64 notice_account_activated: Ваша учетная запись активирована. Вы можете войти.
65 notice_successful_create: Создание успешно завершено.
65 notice_successful_create: Создание успешно завершено.
66 notice_successful_update: Обновление успешно завершено.
66 notice_successful_update: Обновление успешно завершено.
67 notice_successful_delete: Удаление успешно завершено.
67 notice_successful_delete: Удаление успешно завершено.
68 notice_successful_connection: Подключение успешно установлено.
68 notice_successful_connection: Подключение успешно установлено.
69 notice_file_not_found: Страница, на которую вы пытаетесь зайти, не существует или удалена.
69 notice_file_not_found: Страница, на которую вы пытаетесь зайти, не существует или удалена.
70 notice_locking_conflict: Информация обновлена другим пользователем.
70 notice_locking_conflict: Информация обновлена другим пользователем.
71 notice_scm_error: Записи и/или исправления нет в репозитории.
71 notice_scm_error: Записи и/или исправления нет в репозитории.
72 notice_not_authorized: У вас нет прав для посещения данной страницы.
72 notice_not_authorized: У вас нет прав для посещения данной страницы.
73 notice_email_sent: Отправлено письмо %s
73 notice_email_sent: Отправлено письмо %s
74 notice_email_error: Во время отправки письма произошла ошибка (%s)
74 notice_email_error: Во время отправки письма произошла ошибка (%s)
75 notice_feeds_access_key_reseted: Ваш ключ доступа RSS был перезапущен.
75 notice_feeds_access_key_reseted: Ваш ключ доступа RSS был перезапущен.
76 notice_failed_to_save_issues: "Не удалось сохранить %d пункт(ов)из %d выбранных: %s."
76 notice_failed_to_save_issues: "Не удалось сохранить %d пункт(ов)из %d выбранных: %s."
77 notice_no_issue_selected: "Не выбрано ни одной задачи! Пожалуйста, отметьте задачи, которые вы хотите отредактировать."
77 notice_no_issue_selected: "Не выбрано ни одной задачи! Пожалуйста, отметьте задачи, которые вы хотите отредактировать."
78
78
79 mail_subject_lost_password: Ваш Redmine пароль
79 mail_subject_lost_password: Ваш Redmine пароль
80 mail_body_lost_password: 'Для изменения Redmine пароля, зайдите по следующей ссылке:'
80 mail_body_lost_password: 'Для изменения Redmine пароля, зайдите по следующей ссылке:'
81 mail_subject_register: Активация учетной записи Redmine
81 mail_subject_register: Активация учетной записи Redmine
82 mail_body_register: 'Для активации учетной записи Redmine, зайдите по следующей ссылке:'
82 mail_body_register: 'Для активации учетной записи Redmine, зайдите по следующей ссылке:'
83 mail_body_account_information_external: Вы можете использовать вашу "%s" учетную запись для входа в Redmine.
83 mail_body_account_information_external: Вы можете использовать вашу "%s" учетную запись для входа в Redmine.
84 mail_body_account_information: Информация по Вашей учетной записи Redmine
84 mail_body_account_information: Информация по Вашей учетной записи Redmine
85
85
86 gui_validation_error: 1 ошибка
86 gui_validation_error: 1 ошибка
87 gui_validation_error_plural: %d ошибки(ок)
87 gui_validation_error_plural: %d ошибки(ок)
88
88
89 field_name: Имя
89 field_name: Имя
90 field_description: Описание
90 field_description: Описание
91 field_summary: Краткое описание
91 field_summary: Краткое описание
92 field_is_required: Необходимо
92 field_is_required: Необходимо
93 field_firstname: Имя
93 field_firstname: Имя
94 field_lastname: Фамилия
94 field_lastname: Фамилия
95 field_mail: Email
95 field_mail: Email
96 field_filename: Файл
96 field_filename: Файл
97 field_filesize: Размер
97 field_filesize: Размер
98 field_downloads: Загрузки
98 field_downloads: Загрузки
99 field_author: Автор
99 field_author: Автор
100 field_created_on: Создано
100 field_created_on: Создано
101 field_updated_on: Обновлено
101 field_updated_on: Обновлено
102 field_field_format: Формат
102 field_field_format: Формат
103 field_is_for_all: Для всех форматов
103 field_is_for_all: Для всех форматов
104 field_possible_values: Возможные значения
104 field_possible_values: Возможные значения
105 field_regexp: Регулярное выражение
105 field_regexp: Регулярное выражение
106 field_min_length: Минимальная длина
106 field_min_length: Минимальная длина
107 field_max_length: Максимальная длина
107 field_max_length: Максимальная длина
108 field_value: Значение
108 field_value: Значение
109 field_category: Категория
109 field_category: Категория
110 field_title: Название
110 field_title: Название
111 field_project: Проект
111 field_project: Проект
112 field_issue: Задача
112 field_issue: Задача
113 field_status: Статус
113 field_status: Статус
114 field_notes: Примечания
114 field_notes: Примечания
115 field_is_closed: Задача закрыта
115 field_is_closed: Задача закрыта
116 field_is_default: Значение по умолчанию
116 field_is_default: Значение по умолчанию
117 field_tracker: Трекер
117 field_tracker: Трекер
118 field_subject: Тема
118 field_subject: Тема
119 field_due_date: Дата выполнения
119 field_due_date: Дата выполнения
120 field_assigned_to: Назначена
120 field_assigned_to: Назначена
121 field_priority: Приоритет
121 field_priority: Приоритет
122 field_fixed_version: Фиксированная версия
122 field_fixed_version: Фиксированная версия
123 field_user: Пользователь
123 field_user: Пользователь
124 field_role: Роль
124 field_role: Роль
125 field_homepage: Стартовая страница
125 field_homepage: Стартовая страница
126 field_is_public: Публичный
126 field_is_public: Публичный
127 field_parent: Подпроект
127 field_parent: Подпроект
128 field_is_in_chlog: Задачи, отображаемые в журнале изменений
128 field_is_in_chlog: Задачи, отображаемые в журнале изменений
129 field_is_in_roadmap: Задачи, отображаемые в оперативном плане
129 field_is_in_roadmap: Задачи, отображаемые в оперативном плане
130 field_login: Вход
130 field_login: Вход
131 field_mail_notification: Уведомления по Email
131 field_mail_notification: Уведомления по Email
132 field_admin: Администратор
132 field_admin: Администратор
133 field_last_login_on: Последнее подключение
133 field_last_login_on: Последнее подключение
134 field_language: Язык
134 field_language: Язык
135 field_effective_date: Дата
135 field_effective_date: Дата
136 field_password: Пароль
136 field_password: Пароль
137 field_new_password: Новый пароль
137 field_new_password: Новый пароль
138 field_password_confirmation: Подтверждение
138 field_password_confirmation: Подтверждение
139 field_version: Версия
139 field_version: Версия
140 field_type: Тип
140 field_type: Тип
141 field_host: Компьютер
141 field_host: Компьютер
142 field_port: Порт
142 field_port: Порт
143 field_account: Учетная запись
143 field_account: Учетная запись
144 field_base_dn: Базовое отличительное имя
144 field_base_dn: Базовое отличительное имя
145 field_attr_login: Атрибут Регистрация
145 field_attr_login: Атрибут Регистрация
146 field_attr_firstname: Атрибут Имя
146 field_attr_firstname: Атрибут Имя
147 field_attr_lastname: Атрибут Фамилия
147 field_attr_lastname: Атрибут Фамилия
148 field_attr_mail: Атрибут Email
148 field_attr_mail: Атрибут Email
149 field_onthefly: Создание пользователя на лету
149 field_onthefly: Создание пользователя на лету
150 field_start_date: Начало
150 field_start_date: Начало
151 field_done_ratio: Готовность в %%
151 field_done_ratio: Готовность в %%
152 field_auth_source: Режим аутентификации
152 field_auth_source: Режим аутентификации
153 field_hide_mail: Скрывать мой email
153 field_hide_mail: Скрывать мой email
154 field_comments: Комментарий
154 field_comments: Комментарий
155 field_url: URL
155 field_url: URL
156 field_start_page: Стартовая страница
156 field_start_page: Стартовая страница
157 field_subproject: Подпроект
157 field_subproject: Подпроект
158 field_hours: Час(а)(ов)
158 field_hours: Час(а)(ов)
159 field_activity: Деятельность
159 field_activity: Деятельность
160 field_spent_on: Дата
160 field_spent_on: Дата
161 field_identifier: Ун. идентификатор
161 field_identifier: Ун. идентификатор
162 field_is_filter: Используется в качестве фильтра
162 field_is_filter: Используется в качестве фильтра
163 field_issue_to_id: Связанные задачи
163 field_issue_to_id: Связанные задачи
164 field_delay: Отложить
164 field_delay: Отложить
165 field_assignable: Задача может быть назначена этой роли
165 field_assignable: Задача может быть назначена этой роли
166 field_redirect_existing_links: Перенаправить существующие ссылки
166 field_redirect_existing_links: Перенаправить существующие ссылки
167 field_estimated_hours: Оцененное время
167 field_estimated_hours: Оцененное время
168 field_column_names: Колонки
168 field_column_names: Колонки
169 field_default_value: Default value
169
170
170 setting_app_title: Название приложения
171 setting_app_title: Название приложения
171 setting_app_subtitle: Подзаголовок приложения
172 setting_app_subtitle: Подзаголовок приложения
172 setting_welcome_text: Текст приветствия
173 setting_welcome_text: Текст приветствия
173 setting_default_language: Язык по умолчанию
174 setting_default_language: Язык по умолчанию
174 setting_login_required: Необходима аутентификация
175 setting_login_required: Необходима аутентификация
175 setting_self_registration: Возможна само-регистрация
176 setting_self_registration: Возможна само-регистрация
176 setting_attachment_max_size: Максимальный размер вложения
177 setting_attachment_max_size: Максимальный размер вложения
177 setting_issues_export_limit: Ограничение по экспортируемым задачам
178 setting_issues_export_limit: Ограничение по экспортируемым задачам
178 setting_mail_from: email адрес для передачи информации
179 setting_mail_from: email адрес для передачи информации
179 setting_host_name: Имя компьютера
180 setting_host_name: Имя компьютера
180 setting_text_formatting: Форматирование текста
181 setting_text_formatting: Форматирование текста
181 setting_wiki_compression: Сжатие истории Wiki
182 setting_wiki_compression: Сжатие истории Wiki
182 setting_feeds_limit: Ограничения вводимого содержания
183 setting_feeds_limit: Ограничения вводимого содержания
183 setting_autofetch_changesets: Автоматически следить за коммитами
184 setting_autofetch_changesets: Автоматически следить за коммитами
184 setting_sys_api_enabled: Разрешить WS для управления репозиторием
185 setting_sys_api_enabled: Разрешить WS для управления репозиторием
185 setting_commit_ref_keywords: Ключевые слова для поиска
186 setting_commit_ref_keywords: Ключевые слова для поиска
186 setting_commit_fix_keywords: Назначение ключевых слов
187 setting_commit_fix_keywords: Назначение ключевых слов
187 setting_autologin: Автоматический вход
188 setting_autologin: Автоматический вход
188 setting_date_format: Формат даты
189 setting_date_format: Формат даты
189 setting_time_format: Формат времени
190 setting_time_format: Формат времени
190 setting_cross_project_issue_relations: Разрешить пересечение задач по проектам
191 setting_cross_project_issue_relations: Разрешить пересечение задач по проектам
191 setting_issue_list_default_columns: Колонки, отображаемые в списке задач по умолчанию
192 setting_issue_list_default_columns: Колонки, отображаемые в списке задач по умолчанию
192 setting_repositories_encodings: Кодировки репозитория
193 setting_repositories_encodings: Кодировки репозитория
193 setting_emails_footer: Подстрочные примечания Emailов
194 setting_emails_footer: Подстрочные примечания Emailов
194 setting_protocol: Протокол
195 setting_protocol: Протокол
195
196
196 label_user: Пользователь
197 label_user: Пользователь
197 label_user_plural: Пользователи
198 label_user_plural: Пользователи
198 label_user_new: Новый пользователь
199 label_user_new: Новый пользователь
199 label_project: Проект
200 label_project: Проект
200 label_project_new: Новый проект
201 label_project_new: Новый проект
201 label_project_plural: Проекты
202 label_project_plural: Проекты
202 label_project_all: Все проекты
203 label_project_all: Все проекты
203 label_project_latest: Последние проекты
204 label_project_latest: Последние проекты
204 label_issue: Задача
205 label_issue: Задача
205 label_issue_new: Новая задача
206 label_issue_new: Новая задача
206 label_issue_plural: Задачи
207 label_issue_plural: Задачи
207 label_issue_view_all: Просмотреть все задачи
208 label_issue_view_all: Просмотреть все задачи
208 label_document: Документ
209 label_document: Документ
209 label_document_new: Новый документ
210 label_document_new: Новый документ
210 label_document_plural: Документы
211 label_document_plural: Документы
211 label_role: Роль
212 label_role: Роль
212 label_role_plural: Роли
213 label_role_plural: Роли
213 label_role_new: Новая роль
214 label_role_new: Новая роль
214 label_role_and_permissions: Роли и права доступа
215 label_role_and_permissions: Роли и права доступа
215 label_member: Участник
216 label_member: Участник
216 label_member_new: Новый участник
217 label_member_new: Новый участник
217 label_member_plural: Участники
218 label_member_plural: Участники
218 label_tracker: Трекер
219 label_tracker: Трекер
219 label_tracker_plural: Трекеры
220 label_tracker_plural: Трекеры
220 label_tracker_new: Новый трекер
221 label_tracker_new: Новый трекер
221 label_workflow: Последовательность действий
222 label_workflow: Последовательность действий
222 label_issue_status: Статус задачи
223 label_issue_status: Статус задачи
223 label_issue_status_plural: Статусы задачи
224 label_issue_status_plural: Статусы задачи
224 label_issue_status_new: Новый статус
225 label_issue_status_new: Новый статус
225 label_issue_category: Категория задачи
226 label_issue_category: Категория задачи
226 label_issue_category_plural: Категории задачи
227 label_issue_category_plural: Категории задачи
227 label_issue_category_new: Новая категория
228 label_issue_category_new: Новая категория
228 label_custom_field: Поле клиента
229 label_custom_field: Поле клиента
229 label_custom_field_plural: Поля клиента
230 label_custom_field_plural: Поля клиента
230 label_custom_field_new: Новое поле клиента
231 label_custom_field_new: Новое поле клиента
231 label_enumerations: Справочники
232 label_enumerations: Справочники
232 label_enumeration_new: Новое значение
233 label_enumeration_new: Новое значение
233 label_information: Информация
234 label_information: Информация
234 label_information_plural: Информация
235 label_information_plural: Информация
235 label_please_login: Пожалуйста, войдите.
236 label_please_login: Пожалуйста, войдите.
236 label_register: Зарегистрироваться
237 label_register: Зарегистрироваться
237 label_password_lost: Забыли пароль
238 label_password_lost: Забыли пароль
238 label_home: Домашняя страница
239 label_home: Домашняя страница
239 label_my_page: Моя страница
240 label_my_page: Моя страница
240 label_my_account: Моя учетная запись
241 label_my_account: Моя учетная запись
241 label_my_projects: Мои проекты
242 label_my_projects: Мои проекты
242 label_administration: Администрирование
243 label_administration: Администрирование
243 label_login: Войти
244 label_login: Войти
244 label_logout: Выйти
245 label_logout: Выйти
245 label_help: Помощь
246 label_help: Помощь
246 label_reported_issues: Созданые задачи
247 label_reported_issues: Созданые задачи
247 label_assigned_to_me_issues: Мои задачи
248 label_assigned_to_me_issues: Мои задачи
248 label_last_login: Последнее подключение
249 label_last_login: Последнее подключение
249 label_last_updates: Последнее обновление
250 label_last_updates: Последнее обновление
250 label_last_updates_plural: %d последние обновления
251 label_last_updates_plural: %d последние обновления
251 label_registered_on: Зарегистрирован(а)
252 label_registered_on: Зарегистрирован(а)
252 label_activity: Активность
253 label_activity: Активность
253 label_new: Новый
254 label_new: Новый
254 label_logged_as: Вошел как
255 label_logged_as: Вошел как
255 label_environment: Окружение
256 label_environment: Окружение
256 label_authentication: Аутентификация
257 label_authentication: Аутентификация
257 label_auth_source: Режим аутентификации
258 label_auth_source: Режим аутентификации
258 label_auth_source_new: Новый режим аутентификации
259 label_auth_source_new: Новый режим аутентификации
259 label_auth_source_plural: Режимы аутентификации
260 label_auth_source_plural: Режимы аутентификации
260 label_subproject_plural: Подпроекты
261 label_subproject_plural: Подпроекты
261 label_min_max_length: Min - Максимальная длина
262 label_min_max_length: Min - Максимальная длина
262 label_list: Список
263 label_list: Список
263 label_date: Дата
264 label_date: Дата
264 label_integer: Целый
265 label_integer: Целый
265 label_float: Свободный
266 label_float: Свободный
266 label_boolean: Логический
267 label_boolean: Логический
267 label_string: Текст
268 label_string: Текст
268 label_text: Длинный текст
269 label_text: Длинный текст
269 label_attribute: Атрибут
270 label_attribute: Атрибут
270 label_attribute_plural: атрибуты
271 label_attribute_plural: атрибуты
271 label_download: %d Загружено
272 label_download: %d Загружено
272 label_download_plural: %d Загрузок
273 label_download_plural: %d Загрузок
273 label_no_data: Нет данных для отображения
274 label_no_data: Нет данных для отображения
274 label_change_status: Изменить статус
275 label_change_status: Изменить статус
275 label_history: История
276 label_history: История
276 label_attachment: Файл
277 label_attachment: Файл
277 label_attachment_new: Новый файл
278 label_attachment_new: Новый файл
278 label_attachment_delete: Удалить файл
279 label_attachment_delete: Удалить файл
279 label_attachment_plural: Файлы
280 label_attachment_plural: Файлы
280 label_report: Отчет
281 label_report: Отчет
281 label_report_plural: Отчеты
282 label_report_plural: Отчеты
282 label_news: Новости
283 label_news: Новости
283 label_news_new: Добавить новость
284 label_news_new: Добавить новость
284 label_news_plural: Новости
285 label_news_plural: Новости
285 label_news_latest: Последние новости
286 label_news_latest: Последние новости
286 label_news_view_all: Посмотреть все новости
287 label_news_view_all: Посмотреть все новости
287 label_change_log: Журнал изменений
288 label_change_log: Журнал изменений
288 label_settings: Настройки
289 label_settings: Настройки
289 label_overview: Просмотр
290 label_overview: Просмотр
290 label_version: Версия
291 label_version: Версия
291 label_version_new: Новая версия
292 label_version_new: Новая версия
292 label_version_plural: Версии
293 label_version_plural: Версии
293 label_confirmation: Подтверждение
294 label_confirmation: Подтверждение
294 label_export_to: Экспортировать в
295 label_export_to: Экспортировать в
295 label_read: Чтение...
296 label_read: Чтение...
296 label_public_projects: Общие проекты
297 label_public_projects: Общие проекты
297 label_open_issues: открытый
298 label_open_issues: открытый
298 label_open_issues_plural: открытые
299 label_open_issues_plural: открытые
299 label_closed_issues: закрытый
300 label_closed_issues: закрытый
300 label_closed_issues_plural: закрытые
301 label_closed_issues_plural: закрытые
301 label_total: Всего
302 label_total: Всего
302 label_permissions: Права доступа
303 label_permissions: Права доступа
303 label_current_status: Текущий статус
304 label_current_status: Текущий статус
304 label_new_statuses_allowed: Разрешены новые статусы
305 label_new_statuses_allowed: Разрешены новые статусы
305 label_all: Все
306 label_all: Все
306 label_none: Никому
307 label_none: Никому
307 label_nobody: Никто
308 label_nobody: Никто
308 label_next: Следующий
309 label_next: Следующий
309 label_previous: Предыдущий
310 label_previous: Предыдущий
310 label_used_by: Используется
311 label_used_by: Используется
311 label_details: Подробности
312 label_details: Подробности
312 label_add_note: Добавить замечание
313 label_add_note: Добавить замечание
313 label_per_page: На страницу
314 label_per_page: На страницу
314 label_calendar: Календарь
315 label_calendar: Календарь
315 label_months_from: месяцев(ца) с
316 label_months_from: месяцев(ца) с
316 label_gantt: Диаграмма Гантта
317 label_gantt: Диаграмма Гантта
317 label_internal: Внутренний
318 label_internal: Внутренний
318 label_last_changes: менее %d изменений
319 label_last_changes: менее %d изменений
319 label_change_view_all: Просмотреть все изменения
320 label_change_view_all: Просмотреть все изменения
320 label_personalize_page: Персонализировать данную страницу
321 label_personalize_page: Персонализировать данную страницу
321 label_comment: Комментировать
322 label_comment: Комментировать
322 label_comment_plural: Комментарии
323 label_comment_plural: Комментарии
323 label_comment_add: Оставить комментарий
324 label_comment_add: Оставить комментарий
324 label_comment_added: Добавленный комментарий
325 label_comment_added: Добавленный комментарий
325 label_comment_delete: Удалить комментарии
326 label_comment_delete: Удалить комментарии
326 label_query: Запрос клиента
327 label_query: Запрос клиента
327 label_query_plural: Запросы клиентов
328 label_query_plural: Запросы клиентов
328 label_query_new: Новый запрос
329 label_query_new: Новый запрос
329 label_filter_add: Добавить фильтр
330 label_filter_add: Добавить фильтр
330 label_filter_plural: Фильтры
331 label_filter_plural: Фильтры
331 label_equals: есть
332 label_equals: есть
332 label_not_equals: нет
333 label_not_equals: нет
333 label_in_less_than: менее чем
334 label_in_less_than: менее чем
334 label_in_more_than: более чем
335 label_in_more_than: более чем
335 label_in: в
336 label_in: в
336 label_today: сегодня
337 label_today: сегодня
337 label_this_week: на этой неделе
338 label_this_week: на этой неделе
338 label_less_than_ago: менее чем дней(я) назад
339 label_less_than_ago: менее чем дней(я) назад
339 label_more_than_ago: более чем дней(я) назад
340 label_more_than_ago: более чем дней(я) назад
340 label_ago: дней(я) назад
341 label_ago: дней(я) назад
341 label_contains: содержит
342 label_contains: содержит
342 label_not_contains: не содержит
343 label_not_contains: не содержит
343 label_day_plural: дней(я)
344 label_day_plural: дней(я)
344 label_repository: Репозиторий
345 label_repository: Репозиторий
345 label_browse: Искать
346 label_browse: Искать
346 label_modification: %d изменение
347 label_modification: %d изменение
347 label_modification_plural: %d изменений
348 label_modification_plural: %d изменений
348 label_revision: Версия
349 label_revision: Версия
349 label_revision_plural: Версии
350 label_revision_plural: Версии
350 label_added: добавлено
351 label_added: добавлено
351 label_modified: изменено
352 label_modified: изменено
352 label_deleted: удалено
353 label_deleted: удалено
353 label_latest_revision: Последняя версия
354 label_latest_revision: Последняя версия
354 label_latest_revision_plural: Последние версии
355 label_latest_revision_plural: Последние версии
355 label_view_revisions: Просмотреть версии
356 label_view_revisions: Просмотреть версии
356 label_max_size: Максимальный размер
357 label_max_size: Максимальный размер
357 label_on: 'из'
358 label_on: 'из'
358 label_sort_highest: В начало
359 label_sort_highest: В начало
359 label_sort_higher: Вверх
360 label_sort_higher: Вверх
360 label_sort_lower: Вниз
361 label_sort_lower: Вниз
361 label_sort_lowest: В конец
362 label_sort_lowest: В конец
362 label_roadmap: Оперативный план
363 label_roadmap: Оперативный план
363 label_roadmap_due_in: Вовремя
364 label_roadmap_due_in: Вовремя
364 label_roadmap_overdue: %s опоздание
365 label_roadmap_overdue: %s опоздание
365 label_roadmap_no_issues: Нет задач для данной версии
366 label_roadmap_no_issues: Нет задач для данной версии
366 label_search: Поиск
367 label_search: Поиск
367 label_result_plural: Результаты
368 label_result_plural: Результаты
368 label_all_words: Все слова
369 label_all_words: Все слова
369 label_wiki: Wiki
370 label_wiki: Wiki
370 label_wiki_edit: Редактирование Wiki
371 label_wiki_edit: Редактирование Wiki
371 label_wiki_edit_plural: Редактирования Wiki
372 label_wiki_edit_plural: Редактирования Wiki
372 label_wiki_page: Страница Wiki
373 label_wiki_page: Страница Wiki
373 label_wiki_page_plural: Страницы Wiki
374 label_wiki_page_plural: Страницы Wiki
374 label_index_by_title: Индекс по названию
375 label_index_by_title: Индекс по названию
375 label_index_by_date: Индекс по дате
376 label_index_by_date: Индекс по дате
376 label_current_version: Текущая версия
377 label_current_version: Текущая версия
377 label_preview: Предварительный просмотр
378 label_preview: Предварительный просмотр
378 label_feed_plural: Вводы
379 label_feed_plural: Вводы
379 label_changes_details: Подробности по всем изменениям
380 label_changes_details: Подробности по всем изменениям
380 label_issue_tracking: Ситуация по задачам
381 label_issue_tracking: Ситуация по задачам
381 label_spent_time: Затраченное время
382 label_spent_time: Затраченное время
382 label_f_hour: %.2f час
383 label_f_hour: %.2f час
383 label_f_hour_plural: %.2f часов(а)
384 label_f_hour_plural: %.2f часов(а)
384 label_time_tracking: Учет времени
385 label_time_tracking: Учет времени
385 label_change_plural: Изменения
386 label_change_plural: Изменения
386 label_statistics: Статистика
387 label_statistics: Статистика
387 label_commits_per_month: Коммиты на месяц
388 label_commits_per_month: Коммиты на месяц
388 label_commits_per_author: Коммиты на пользователя
389 label_commits_per_author: Коммиты на пользователя
389 label_view_diff: Просмотреть отличия
390 label_view_diff: Просмотреть отличия
390 label_diff_inline: подключенный
391 label_diff_inline: подключенный
391 label_diff_side_by_side: рядом
392 label_diff_side_by_side: рядом
392 label_options: Опции
393 label_options: Опции
393 label_copy_workflow_from: Скопировать последовательность действий из
394 label_copy_workflow_from: Скопировать последовательность действий из
394 label_permissions_report: Отчет о правах доступа
395 label_permissions_report: Отчет о правах доступа
395 label_watched_issues: Просмотренные задачи
396 label_watched_issues: Просмотренные задачи
396 label_related_issues: Связанные задачи
397 label_related_issues: Связанные задачи
397 label_applied_status: Применимый статус
398 label_applied_status: Применимый статус
398 label_loading: Загрузка...
399 label_loading: Загрузка...
399 label_relation_new: Новое отношение
400 label_relation_new: Новое отношение
400 label_relation_delete: Удалить связь
401 label_relation_delete: Удалить связь
401 label_relates_to: связана с
402 label_relates_to: связана с
402 label_duplicates: дублицирует
403 label_duplicates: дублицирует
403 label_blocks: блокирует
404 label_blocks: блокирует
404 label_blocked_by: заблокировано
405 label_blocked_by: заблокировано
405 label_precedes: предшествует
406 label_precedes: предшествует
406 label_follows: следующий
407 label_follows: следующий
407 label_end_to_start: с конца к началу
408 label_end_to_start: с конца к началу
408 label_end_to_end: с конца к концу
409 label_end_to_end: с конца к концу
409 label_start_to_start: с начала к началу
410 label_start_to_start: с начала к началу
410 label_start_to_end: с начала к концу
411 label_start_to_end: с начала к концу
411 label_stay_logged_in: Оставаться в системе
412 label_stay_logged_in: Оставаться в системе
412 label_disabled: отключен
413 label_disabled: отключен
413 label_show_completed_versions: Показать завершенную версию
414 label_show_completed_versions: Показать завершенную версию
414 label_me: Я
415 label_me: Я
415 label_board: Форум
416 label_board: Форум
416 label_board_new: Новый форум
417 label_board_new: Новый форум
417 label_board_plural: Форумы
418 label_board_plural: Форумы
418 label_topic_plural: Темы
419 label_topic_plural: Темы
419 label_message_plural: Сообщения
420 label_message_plural: Сообщения
420 label_message_last: Последнее сообщение
421 label_message_last: Последнее сообщение
421 label_message_new: Новое сообщение
422 label_message_new: Новое сообщение
422 label_reply_plural: Ответы
423 label_reply_plural: Ответы
423 label_send_information: Отправить пользователю информацию по учетной записи
424 label_send_information: Отправить пользователю информацию по учетной записи
424 label_year: Год
425 label_year: Год
425 label_month: Месяц
426 label_month: Месяц
426 label_week: Неделя
427 label_week: Неделя
427 label_date_from: От
428 label_date_from: От
428 label_date_to: Кому
429 label_date_to: Кому
429 label_language_based: На основе языка
430 label_language_based: На основе языка
430 label_sort_by: Сортировать по %s
431 label_sort_by: Сортировать по %s
431 label_send_test_email: Послать email для проверки
432 label_send_test_email: Послать email для проверки
432 label_feeds_access_key_created_on: Ключ доступа RSS создан %s назад
433 label_feeds_access_key_created_on: Ключ доступа RSS создан %s назад
433 label_module_plural: Модули
434 label_module_plural: Модули
434 label_added_time_by: Добавлен %s %s назад
435 label_added_time_by: Добавлен %s %s назад
435 label_updated_time: Обновлен %s назад
436 label_updated_time: Обновлен %s назад
436 label_jump_to_a_project: Перейти к проекту...
437 label_jump_to_a_project: Перейти к проекту...
437 label_file_plural: Файлы
438 label_file_plural: Файлы
438 label_changeset_plural: Наборы изменений
439 label_changeset_plural: Наборы изменений
439 label_default_columns: Колонки по умолчанию
440 label_default_columns: Колонки по умолчанию
440 label_no_change_option: (Нет изменений)
441 label_no_change_option: (Нет изменений)
441 label_bulk_edit_selected_issues: Редактировать все выбранные вопросы
442 label_bulk_edit_selected_issues: Редактировать все выбранные вопросы
442 label_theme: Тема
443 label_theme: Тема
443 label_default: По умолчанию
444 label_default: По умолчанию
444 label_search_titles_only: Искать только в названиях
445 label_search_titles_only: Искать только в названиях
445 label_user_mail_option_all: "Для всех событий во всех моих проектах"
446 label_user_mail_option_all: "Для всех событий во всех моих проектах"
446 label_user_mail_option_selected: "Для всех событий только в выбранном проекте..."
447 label_user_mail_option_selected: "Для всех событий только в выбранном проекте..."
447 label_user_mail_option_none: "Только для того, что я просматриваю или в чем я участвую"
448 label_user_mail_option_none: "Только для того, что я просматриваю или в чем я участвую"
448 label_user_mail_no_self_notified: "Не извещать об изменениях которые я сделал сам"
449 label_user_mail_no_self_notified: "Не извещать об изменениях которые я сделал сам"
449
450
450 button_login: Вход
451 button_login: Вход
451 button_submit: Принять
452 button_submit: Принять
452 button_save: Сохранить
453 button_save: Сохранить
453 button_check_all: Отметить все
454 button_check_all: Отметить все
454 button_uncheck_all: Очистить
455 button_uncheck_all: Очистить
455 button_delete: Удалить
456 button_delete: Удалить
456 button_create: Создать
457 button_create: Создать
457 button_test: Проверить
458 button_test: Проверить
458 button_edit: Редактировать
459 button_edit: Редактировать
459 button_add: Добавить
460 button_add: Добавить
460 button_change: Изменить
461 button_change: Изменить
461 button_apply: Применить
462 button_apply: Применить
462 button_clear: Очистить
463 button_clear: Очистить
463 button_lock: Заблокировать
464 button_lock: Заблокировать
464 button_unlock: Открыть
465 button_unlock: Открыть
465 button_download: Загрузить
466 button_download: Загрузить
466 button_list: Список
467 button_list: Список
467 button_view: Просмотреть
468 button_view: Просмотреть
468 button_move: Переместить
469 button_move: Переместить
469 button_back: Назад
470 button_back: Назад
470 button_cancel: Отмена
471 button_cancel: Отмена
471 button_activate: Активировать
472 button_activate: Активировать
472 button_sort: Сортировать
473 button_sort: Сортировать
473 button_log_time: Время в системе
474 button_log_time: Время в системе
474 button_rollback: Вернуться к данной версии
475 button_rollback: Вернуться к данной версии
475 button_watch: Смотреть
476 button_watch: Смотреть
476 button_unwatch: Не смотреть
477 button_unwatch: Не смотреть
477 button_reply: Ответить
478 button_reply: Ответить
478 button_archive: Архивировать
479 button_archive: Архивировать
479 button_unarchive: Разархивировать
480 button_unarchive: Разархивировать
480 button_reset: Перезапустить
481 button_reset: Перезапустить
481 button_rename: Переименовать
482 button_rename: Переименовать
482 button_change_password: Изменить пароль
483 button_change_password: Изменить пароль
483 button_copy: Копировать
484 button_copy: Копировать
484
485
485 status_active: Активен
486 status_active: Активен
486 status_registered: Зарегистрирован
487 status_registered: Зарегистрирован
487 status_locked: Закрыт
488 status_locked: Закрыт
488
489
489 text_select_mail_notifications: Выберите действия, на которые будет отсылаться уведомление на электронную почту.
490 text_select_mail_notifications: Выберите действия, на которые будет отсылаться уведомление на электронную почту.
490 text_regexp_info: eg. ^[A-Z0-9]+$
491 text_regexp_info: eg. ^[A-Z0-9]+$
491 text_min_max_length_info: 0 означает отсутствие запретов
492 text_min_max_length_info: 0 означает отсутствие запретов
492 text_project_destroy_confirmation: Вы настаиваете на удалении данного проекта и всей относящейся к нему информации?
493 text_project_destroy_confirmation: Вы настаиваете на удалении данного проекта и всей относящейся к нему информации?
493 text_workflow_edit: Выберите роль и трекер для редактирования последовательности состояний
494 text_workflow_edit: Выберите роль и трекер для редактирования последовательности состояний
494 text_are_you_sure: Подтвердите
495 text_are_you_sure: Подтвердите
495 text_journal_changed: параметр изменился с %s на %s
496 text_journal_changed: параметр изменился с %s на %s
496 text_journal_set_to: параметр изменился на %s
497 text_journal_set_to: параметр изменился на %s
497 text_journal_deleted: удалено
498 text_journal_deleted: удалено
498 text_tip_task_begin_day: дата начала задачи
499 text_tip_task_begin_day: дата начала задачи
499 text_tip_task_end_day: дата завершения задачи
500 text_tip_task_end_day: дата завершения задачи
500 text_tip_task_begin_end_day: начало задачи и окончание ее в этот день
501 text_tip_task_begin_end_day: начало задачи и окончание ее в этот день
501 text_project_identifier_info: 'Строчные буквы (a-z), допустимы цифры и дефис.<br />Сохраненный идентификатор не может быть изменен.'
502 text_project_identifier_info: 'Строчные буквы (a-z), допустимы цифры и дефис.<br />Сохраненный идентификатор не может быть изменен.'
502 text_caracters_maximum: %d символов(а) максимум.
503 text_caracters_maximum: %d символов(а) максимум.
503 text_length_between: Длина между %d и %d символов.
504 text_length_between: Длина между %d и %d символов.
504 text_tracker_no_workflow: Для этого трекера последовательность действий не определена
505 text_tracker_no_workflow: Для этого трекера последовательность действий не определена
505 text_unallowed_characters: Запрещенные символы
506 text_unallowed_characters: Запрещенные символы
506 text_comma_separated: Допустимы несколько значений (разделенные запятой).
507 text_comma_separated: Допустимы несколько значений (разделенные запятой).
507 text_issues_ref_in_commit_messages: Сопоставление и изменение статуса задач исходя из текста сообщений
508 text_issues_ref_in_commit_messages: Сопоставление и изменение статуса задач исходя из текста сообщений
508 text_issue_added: О вопросе %s был создает отчет.
509 text_issue_added: О вопросе %s был создает отчет.
509 text_issue_updated: Вопрос %s был обновлен.
510 text_issue_updated: Вопрос %s был обновлен.
510 text_wiki_destroy_confirmation: Вы уверены, что хотите удалить данную вики и все содержание?
511 text_wiki_destroy_confirmation: Вы уверены, что хотите удалить данную вики и все содержание?
511 text_issue_category_destroy_question: Несколько задач (%d) назначено в данную категорию. Что вы хотите предпринять?
512 text_issue_category_destroy_question: Несколько задач (%d) назначено в данную категорию. Что вы хотите предпринять?
512 text_issue_category_destroy_assignments: Удалить назначения категории
513 text_issue_category_destroy_assignments: Удалить назначения категории
513 text_issue_category_reassign_to: Переназначить задачи для данной категории
514 text_issue_category_reassign_to: Переназначить задачи для данной категории
514 text_user_mail_option: "Для невыбранных проектов, вы будете получать уведомления только о том что просматриваете или в чем участвуете (например, вопросы автором которых вы являетесь или которые вам назначенАы)."
515 text_user_mail_option: "Для невыбранных проектов, вы будете получать уведомления только о том что просматриваете или в чем участвуете (например, вопросы автором которых вы являетесь или которые вам назначенАы)."
515
516
516 default_role_manager: Менеджер
517 default_role_manager: Менеджер
517 default_role_developper: Разработчик
518 default_role_developper: Разработчик
518 default_role_reporter: Генератор отчетов
519 default_role_reporter: Генератор отчетов
519 default_tracker_bug: Bug Ошибка
520 default_tracker_bug: Bug Ошибка
520 default_tracker_feature: Характеристика
521 default_tracker_feature: Характеристика
521 default_tracker_support: Поддержка
522 default_tracker_support: Поддержка
522 default_issue_status_new: Новый
523 default_issue_status_new: Новый
523 default_issue_status_assigned: Назначен
524 default_issue_status_assigned: Назначен
524 default_issue_status_resolved: Заблокирован
525 default_issue_status_resolved: Заблокирован
525 default_issue_status_feedback: Обратная связь
526 default_issue_status_feedback: Обратная связь
526 default_issue_status_closed: Закрыт
527 default_issue_status_closed: Закрыт
527 default_issue_status_rejected: Отказ
528 default_issue_status_rejected: Отказ
528 default_doc_category_user: Документация пользователя
529 default_doc_category_user: Документация пользователя
529 default_doc_category_tech: Техническая документация
530 default_doc_category_tech: Техническая документация
530 default_priority_low: Низкий
531 default_priority_low: Низкий
531 default_priority_normal: Нормальный
532 default_priority_normal: Нормальный
532 default_priority_high: Высокий
533 default_priority_high: Высокий
533 default_priority_urgent: Срочный
534 default_priority_urgent: Срочный
534 default_priority_immediate: Немедленный
535 default_priority_immediate: Немедленный
535 default_activity_design: Проектирование
536 default_activity_design: Проектирование
536 default_activity_development: Разработка
537 default_activity_development: Разработка
537 enumeration_issue_priorities: Приоритеты задач
538 enumeration_issue_priorities: Приоритеты задач
538 enumeration_doc_categories: Категории документов
539 enumeration_doc_categories: Категории документов
539 enumeration_activities: Действия (учет времени)
540 enumeration_activities: Действия (учет времени)
540 label_registration_activation_by_email: активация аккаунтов по email
541 label_registration_activation_by_email: активация аккаунтов по email
541 mail_subject_account_activation_request: Запрос на активацию пользователя в системе Redmine
542 mail_subject_account_activation_request: Запрос на активацию пользователя в системе Redmine
542 mail_body_account_activation_request: 'Новый пользователь (%s) зарегистирован. Аккаунт ожидает вашего утверждения:'
543 mail_body_account_activation_request: 'Новый пользователь (%s) зарегистирован. Аккаунт ожидает вашего утверждения:'
543 label_registration_automatic_activation: автоматическая активация аккаунтов
544 label_registration_automatic_activation: автоматическая активация аккаунтов
544 label_registration_manual_activation: активировать аккаунты вручную
545 label_registration_manual_activation: активировать аккаунты вручную
545 notice_account_pending: "Ваш аккаунт уже создан и ожидает подтверждения администратора."
546 notice_account_pending: "Ваш аккаунт уже создан и ожидает подтверждения администратора."
546 field_time_zone: Часовой пояс
547 field_time_zone: Часовой пояс
547 text_caracters_minimum: Должно быть не менее %d знаков.
548 text_caracters_minimum: Должно быть не менее %d знаков.
548 setting_bcc_recipients: Использовать скрытые списки (bcc)
549 setting_bcc_recipients: Использовать скрытые списки (bcc)
549 button_annotate: Авторство
550 button_annotate: Авторство
550 label_issues_by: Сортировать по %s
551 label_issues_by: Сортировать по %s
551 field_searchable: Доступно для поиска
552 field_searchable: Доступно для поиска
552 label_display_per_page: 'На страницу: %s'
553 label_display_per_page: 'На страницу: %s'
553 setting_per_page_options: Кол-во строк на страницу
554 setting_per_page_options: Кол-во строк на страницу
554 label_age: Возраст
555 label_age: Возраст
555 notice_default_data_loaded: Была загружена конфигурация по-умолчанию.
556 notice_default_data_loaded: Была загружена конфигурация по-умолчанию.
556 text_load_default_configuration: Загрузить конфигурацию по-умолчанию
557 text_load_default_configuration: Загрузить конфигурацию по-умолчанию
557 text_no_configuration_data: "Роли, трекеры, статусы задач и оперативный план не были сконфигурированны.\nНастоятельно рекомендуется загрузить конфигурацию по-умолчанию. Вы сможете её изменить потом."
558 text_no_configuration_data: "Роли, трекеры, статусы задач и оперативный план не были сконфигурированны.\nНастоятельно рекомендуется загрузить конфигурацию по-умолчанию. Вы сможете её изменить потом."
558 error_can_t_load_default_data: "Конфигурация по умолчанию не была загружена: %s"
559 error_can_t_load_default_data: "Конфигурация по умолчанию не была загружена: %s"
559 button_update: Обновить
560 button_update: Обновить
560 label_change_properties: Изменить свойства
561 label_change_properties: Изменить свойства
561 label_general: Общее
562 label_general: Общее
562 label_repository_plural: Репозитории
563 label_repository_plural: Репозитории
563 label_associated_revisions: Associated revisions
564 label_associated_revisions: Associated revisions
@@ -1,565 +1,566
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,Mart,April,Maj,Jun,Jul,Avgust,Septembar,Oktobar,Novembar,Decembar
4 actionview_datehelper_select_month_names: Januar,Februar,Mart,April,Maj,Jun,Jul,Avgust,Septembar,Oktobar,Novembar,Decembar
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Avg,Sep,Okt,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Avg,Sep,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dan
8 actionview_datehelper_time_in_words_day: 1 dan
9 actionview_datehelper_time_in_words_day_plural: %d dana
9 actionview_datehelper_time_in_words_day_plural: %d dana
10 actionview_datehelper_time_in_words_hour_about: oko sat vremena
10 actionview_datehelper_time_in_words_hour_about: oko sat vremena
11 actionview_datehelper_time_in_words_hour_about_plural: oko %d sati
11 actionview_datehelper_time_in_words_hour_about_plural: oko %d sati
12 actionview_datehelper_time_in_words_hour_about_single: oko sat vremena
12 actionview_datehelper_time_in_words_hour_about_single: oko sat vremena
13 actionview_datehelper_time_in_words_minute: 1 minut
13 actionview_datehelper_time_in_words_minute: 1 minut
14 actionview_datehelper_time_in_words_minute_half: pola minuta
14 actionview_datehelper_time_in_words_minute_half: pola minuta
15 actionview_datehelper_time_in_words_minute_less_than: manje od minut
15 actionview_datehelper_time_in_words_minute_less_than: manje od minut
16 actionview_datehelper_time_in_words_minute_plural: %d minuta
16 actionview_datehelper_time_in_words_minute_plural: %d minuta
17 actionview_datehelper_time_in_words_minute_single: 1 minut
17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 actionview_datehelper_time_in_words_second_less_than: manje od sekunde
18 actionview_datehelper_time_in_words_second_less_than: manje od sekunde
19 actionview_datehelper_time_in_words_second_less_than_plural: manje od %d sekundi
19 actionview_datehelper_time_in_words_second_less_than_plural: manje od %d sekundi
20 actionview_instancetag_blank_option: Molim izaberite
20 actionview_instancetag_blank_option: Molim izaberite
21
21
22 activerecord_error_inclusion: nije uključen u listu
22 activerecord_error_inclusion: nije uključen u listu
23 activerecord_error_exclusion: je rezervisan
23 activerecord_error_exclusion: je rezervisan
24 activerecord_error_invalid: je pogrešan
24 activerecord_error_invalid: je pogrešan
25 activerecord_error_confirmation: Ne slaže se sa potvrdom
25 activerecord_error_confirmation: Ne slaže se sa potvrdom
26 activerecord_error_accepted: mora biti prihvaćen
26 activerecord_error_accepted: mora biti prihvaćen
27 activerecord_error_empty: ne sme biti prazan
27 activerecord_error_empty: ne sme biti prazan
28 activerecord_error_blank: ne sme biti prazno
28 activerecord_error_blank: ne sme biti prazno
29 activerecord_error_too_long: je suvise dugačko
29 activerecord_error_too_long: je suvise dugačko
30 activerecord_error_too_short: je suvise kratko
30 activerecord_error_too_short: je suvise kratko
31 activerecord_error_wrong_length: je pogrešne dužine
31 activerecord_error_wrong_length: je pogrešne dužine
32 activerecord_error_taken: je već zauzeto
32 activerecord_error_taken: je već zauzeto
33 activerecord_error_not_a_number: nije broj
33 activerecord_error_not_a_number: nije broj
34 activerecord_error_not_a_date: nije datum
34 activerecord_error_not_a_date: nije datum
35 activerecord_error_greater_than_start_date: mora biti veći od početnog datuma
35 activerecord_error_greater_than_start_date: mora biti veći od početnog datuma
36 activerecord_error_not_same_project: ne pripada istom projektu
36 activerecord_error_not_same_project: ne pripada istom projektu
37 activerecord_error_circular_dependency: Ova relacija bi kreirala kružnu zavisnost
37 activerecord_error_circular_dependency: Ova relacija bi kreirala kružnu zavisnost
38
38
39 general_fmt_age: %d g
39 general_fmt_age: %d g
40 general_fmt_age_plural: %d god.
40 general_fmt_age_plural: %d god.
41 general_fmt_date: %%m/%%d/%%G
41 general_fmt_date: %%m/%%d/%%G
42 general_fmt_datetime: %%m/%%d/%%G %%H:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%G %%H:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Ne'
45 general_text_No: 'Ne'
46 general_text_Yes: 'Da'
46 general_text_Yes: 'Da'
47 general_text_no: 'ne'
47 general_text_no: 'ne'
48 general_text_yes: 'da'
48 general_text_yes: 'da'
49 general_lang_name: 'Srpski'
49 general_lang_name: 'Srpski'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Ponedeljak, Utorak, Sreda, četvrtak, Petak, Subota, Nedelja
53 general_day_names: Ponedeljak, Utorak, Sreda, četvrtak, Petak, Subota, Nedelja
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Nalog je uspešno izmenjen.
56 notice_account_updated: Nalog je uspešno izmenjen.
57 notice_account_invalid_creditentials: Pogrešan korisnik ili lozinka
57 notice_account_invalid_creditentials: Pogrešan korisnik ili lozinka
58 notice_account_password_updated: Lozinka je uspešno izmenjena.
58 notice_account_password_updated: Lozinka je uspešno izmenjena.
59 notice_account_wrong_password: Pogrešna lozinka
59 notice_account_wrong_password: Pogrešna lozinka
60 notice_account_register_done: Nalog je uspešno kreiran. Da bi ste aktivirali vaš nalog kliknite na link koji vam je poslat.
60 notice_account_register_done: Nalog je uspešno kreiran. Da bi ste aktivirali vaš nalog kliknite na link koji vam je poslat.
61 notice_account_unknown_email: Nepoznati korisnik.
61 notice_account_unknown_email: Nepoznati korisnik.
62 notice_can_t_change_password: Ovaj nalog koristi eksterni izvor prijavljivanja. Ne mogu da promenim šifru.
62 notice_can_t_change_password: Ovaj nalog koristi eksterni izvor prijavljivanja. Ne mogu da promenim šifru.
63 notice_account_lost_email_sent: Email sa uputstvima o izboru nove šifre je poslat na vašu adresu.
63 notice_account_lost_email_sent: Email sa uputstvima o izboru nove šifre je poslat na vašu adresu.
64 notice_account_activated: Vaš nalog je aktiviran. Možete se ulogovati.
64 notice_account_activated: Vaš nalog je aktiviran. Možete se ulogovati.
65 notice_successful_create: Uspešna kreacija.
65 notice_successful_create: Uspešna kreacija.
66 notice_successful_update: Uspešna izmena.
66 notice_successful_update: Uspešna izmena.
67 notice_successful_delete: Uspešno brisanje.
67 notice_successful_delete: Uspešno brisanje.
68 notice_successful_connection: Uspešna konekcija.
68 notice_successful_connection: Uspešna konekcija.
69 notice_file_not_found: Stranica kojoj pokušavate da pristupite ne postoji ili je uklonjena.
69 notice_file_not_found: Stranica kojoj pokušavate da pristupite ne postoji ili je uklonjena.
70 notice_locking_conflict: Podaci su izmenjeni od strane drugog korisnika.
70 notice_locking_conflict: Podaci su izmenjeni od strane drugog korisnika.
71 notice_scm_error: Unos i/ili revizija ne postoji u spremištu.
71 notice_scm_error: Unos i/ili revizija ne postoji u spremištu.
72 notice_not_authorized: Niste ovlašćeni da pristupite ovoj stranici.
72 notice_not_authorized: Niste ovlašćeni da pristupite ovoj stranici.
73 notice_email_sent: Email je poslat %s
73 notice_email_sent: Email je poslat %s
74 notice_email_error: Došlo je do greške pri slanju maila (%s)
74 notice_email_error: Došlo je do greške pri slanju maila (%s)
75 notice_feeds_access_key_reseted: Vaš RSS pristup je resetovan.
75 notice_feeds_access_key_reseted: Vaš RSS pristup je resetovan.
76 notice_failed_to_save_issues: "Neuspešno snimanje %d kartica na %d izabrano: %s."
76 notice_failed_to_save_issues: "Neuspešno snimanje %d kartica na %d izabrano: %s."
77 notice_no_issue_selected: "Nijedna kartica nije izabrana! Molim, izaberite kartice koje želite za editujete."
77 notice_no_issue_selected: "Nijedna kartica nije izabrana! Molim, izaberite kartice koje želite za editujete."
78
78
79 mail_subject_lost_password: Vaša redMine lozinka
79 mail_subject_lost_password: Vaša redMine lozinka
80 mail_body_lost_password: 'Da biste izmenili vašu Redmine lozinku, kliknite na sledeći link:'
80 mail_body_lost_password: 'Da biste izmenili vašu Redmine lozinku, kliknite na sledeći link:'
81 mail_subject_register: aktivacija redMine naloga
81 mail_subject_register: aktivacija redMine naloga
82 mail_body_register: 'Da biste aktivirali vaš Redmine nalog, kliknite na sledeći link:'
82 mail_body_register: 'Da biste aktivirali vaš Redmine nalog, kliknite na sledeći link:'
83 mail_body_account_information_external: Mozete koristiti vas "%s" nalog da bi ste se prikljucili na Redmine.
83 mail_body_account_information_external: Mozete koristiti vas "%s" nalog da bi ste se prikljucili na Redmine.
84 mail_body_account_information: Informacije o vasem Redmine nalogu
84 mail_body_account_information: Informacije o vasem Redmine nalogu
85
85
86 gui_validation_error: 1 greška
86 gui_validation_error: 1 greška
87 gui_validation_error_plural: %d grešaka
87 gui_validation_error_plural: %d grešaka
88
88
89 field_name: Ime
89 field_name: Ime
90 field_description: Opis
90 field_description: Opis
91 field_summary: Sažetak
91 field_summary: Sažetak
92 field_is_required: Zahtevano
92 field_is_required: Zahtevano
93 field_firstname: Ime
93 field_firstname: Ime
94 field_lastname: Prezime
94 field_lastname: Prezime
95 field_mail: Email
95 field_mail: Email
96 field_filename: File
96 field_filename: File
97 field_filesize: Veličina
97 field_filesize: Veličina
98 field_downloads: Downloads
98 field_downloads: Downloads
99 field_author: Autor
99 field_author: Autor
100 field_created_on: Kreirano
100 field_created_on: Kreirano
101 field_updated_on: Izmenjeno
101 field_updated_on: Izmenjeno
102 field_field_format: Format
102 field_field_format: Format
103 field_is_for_all: Za sve projekte
103 field_is_for_all: Za sve projekte
104 field_possible_values: Moguće vrednosti
104 field_possible_values: Moguće vrednosti
105 field_regexp: Regularni izraz
105 field_regexp: Regularni izraz
106 field_min_length: Minimalna dužina
106 field_min_length: Minimalna dužina
107 field_max_length: Maximalna dužina
107 field_max_length: Maximalna dužina
108 field_value: Vrednost
108 field_value: Vrednost
109 field_category: Kategorija
109 field_category: Kategorija
110 field_title: Naslov
110 field_title: Naslov
111 field_project: Projekat
111 field_project: Projekat
112 field_issue: Kartica
112 field_issue: Kartica
113 field_status: Status
113 field_status: Status
114 field_notes: Beleške
114 field_notes: Beleške
115 field_is_closed: Greška zatvorena
115 field_is_closed: Greška zatvorena
116 field_is_default: Podrazumevana vrednost
116 field_is_default: Podrazumevana vrednost
117 field_tracker: Tracker
117 field_tracker: Tracker
118 field_subject: Subjekat
118 field_subject: Subjekat
119 field_due_date: Do datuma
119 field_due_date: Do datuma
120 field_assigned_to: Dodeljeno
120 field_assigned_to: Dodeljeno
121 field_priority: Prioritet
121 field_priority: Prioritet
122 field_fixed_version: Ispravljena verzija
122 field_fixed_version: Ispravljena verzija
123 field_user: Korisnik
123 field_user: Korisnik
124 field_role: Uloga
124 field_role: Uloga
125 field_homepage: Homepage
125 field_homepage: Homepage
126 field_is_public: Javni
126 field_is_public: Javni
127 field_parent: Podprojekat od
127 field_parent: Podprojekat od
128 field_is_in_chlog: Kartice se prikazuju u changelog-u
128 field_is_in_chlog: Kartice se prikazuju u changelog-u
129 field_is_in_roadmap: Kartice se prikazuju u roadmap-u
129 field_is_in_roadmap: Kartice se prikazuju u roadmap-u
130 field_login: Login
130 field_login: Login
131 field_mail_notification: Obaveštavanje putem mail-a
131 field_mail_notification: Obaveštavanje putem mail-a
132 field_admin: Administrator
132 field_admin: Administrator
133 field_last_login_on: Poslednja konekcija
133 field_last_login_on: Poslednja konekcija
134 field_language: Jezik
134 field_language: Jezik
135 field_effective_date: Datum
135 field_effective_date: Datum
136 field_password: Lozinka
136 field_password: Lozinka
137 field_new_password: Nova lozinka
137 field_new_password: Nova lozinka
138 field_password_confirmation: Potvrda
138 field_password_confirmation: Potvrda
139 field_version: Verzija
139 field_version: Verzija
140 field_type: Tip
140 field_type: Tip
141 field_host: Host
141 field_host: Host
142 field_port: Port
142 field_port: Port
143 field_account: Nalog
143 field_account: Nalog
144 field_base_dn: Bazni DN
144 field_base_dn: Bazni DN
145 field_attr_login: Login atribut
145 field_attr_login: Login atribut
146 field_attr_firstname: Atribut imena
146 field_attr_firstname: Atribut imena
147 field_attr_lastname: Atribut prezimena
147 field_attr_lastname: Atribut prezimena
148 field_attr_mail: Atribut email-a
148 field_attr_mail: Atribut email-a
149 field_onthefly: Kreacija naloga "On-the-fly"
149 field_onthefly: Kreacija naloga "On-the-fly"
150 field_start_date: Start
150 field_start_date: Start
151 field_done_ratio: %% Završeno
151 field_done_ratio: %% Završeno
152 field_auth_source: Vrsta prijavljivanja
152 field_auth_source: Vrsta prijavljivanja
153 field_hide_mail: Sakrij moju email adresu
153 field_hide_mail: Sakrij moju email adresu
154 field_comments: Komentar
154 field_comments: Komentar
155 field_url: URL
155 field_url: URL
156 field_start_page: Početna strana
156 field_start_page: Početna strana
157 field_subproject: Podprojekat
157 field_subproject: Podprojekat
158 field_hours: Sati
158 field_hours: Sati
159 field_activity: Aktivnost
159 field_activity: Aktivnost
160 field_spent_on: Datum
160 field_spent_on: Datum
161 field_identifier: Identifikator
161 field_identifier: Identifikator
162 field_is_filter: Korišćen kao filter
162 field_is_filter: Korišćen kao filter
163 field_issue_to_id: Povezano sa karticom
163 field_issue_to_id: Povezano sa karticom
164 field_delay: Odloženo
164 field_delay: Odloženo
165 field_assignable: Kartice mogu biti dodeljene ovoj ulozi
165 field_assignable: Kartice mogu biti dodeljene ovoj ulozi
166 field_redirect_existing_links: Redirekcija postojećih linkova
166 field_redirect_existing_links: Redirekcija postojećih linkova
167 field_estimated_hours: Procenjeno vreme
167 field_estimated_hours: Procenjeno vreme
168 field_column_names: Kolone
168 field_column_names: Kolone
169 field_default_value: Default value
169
170
170 setting_app_title: Naziv aplikacije
171 setting_app_title: Naziv aplikacije
171 setting_app_subtitle: Podnaslov aplikacije
172 setting_app_subtitle: Podnaslov aplikacije
172 setting_welcome_text: Tekst dobrodošlice
173 setting_welcome_text: Tekst dobrodošlice
173 setting_default_language: Podrazumevani jezik
174 setting_default_language: Podrazumevani jezik
174 setting_login_required: Prijavljivanje obaveyno
175 setting_login_required: Prijavljivanje obaveyno
175 setting_self_registration: Samoregistracija je dozvoljena
176 setting_self_registration: Samoregistracija je dozvoljena
176 setting_attachment_max_size: Maksimalna velicina Attachment-a
177 setting_attachment_max_size: Maksimalna velicina Attachment-a
177 setting_issues_export_limit: Max broj kartica u exportu
178 setting_issues_export_limit: Max broj kartica u exportu
178 setting_mail_from: Izvorna email adresa
179 setting_mail_from: Izvorna email adresa
179 setting_host_name: Naziv host-a
180 setting_host_name: Naziv host-a
180 setting_text_formatting: Formatiranje teksta
181 setting_text_formatting: Formatiranje teksta
181 setting_wiki_compression: Kompresija wiki history-a
182 setting_wiki_compression: Kompresija wiki history-a
182 setting_feeds_limit: Feed content limit
183 setting_feeds_limit: Feed content limit
183 setting_autofetch_changesets: Autofetch commits
184 setting_autofetch_changesets: Autofetch commits
184 setting_sys_api_enabled: Ukljuci WS za menadžment spremišta
185 setting_sys_api_enabled: Ukljuci WS za menadžment spremišta
185 setting_commit_ref_keywords: Referentne ključne reči
186 setting_commit_ref_keywords: Referentne ključne reči
186 setting_commit_fix_keywords: Fiksne ključne reči
187 setting_commit_fix_keywords: Fiksne ključne reči
187 setting_autologin: Autologin
188 setting_autologin: Autologin
188 setting_date_format: Format datuma
189 setting_date_format: Format datuma
189 setting_cross_project_issue_relations: Dozvoli relacije kartica između različitih projekata
190 setting_cross_project_issue_relations: Dozvoli relacije kartica između različitih projekata
190 setting_issue_list_default_columns: Podrazumevana kolona se prikazuje na listi kartica
191 setting_issue_list_default_columns: Podrazumevana kolona se prikazuje na listi kartica
191 setting_repositories_encodings: Kodna stranica spremišta
192 setting_repositories_encodings: Kodna stranica spremišta
192 setting_emails_footer: Zaglavlje emaila
193 setting_emails_footer: Zaglavlje emaila
193
194
194 label_user: Korisnik
195 label_user: Korisnik
195 label_user_plural: Korisnici
196 label_user_plural: Korisnici
196 label_user_new: Novi korisnik
197 label_user_new: Novi korisnik
197 label_project: Projekat
198 label_project: Projekat
198 label_project_new: Novi projekat
199 label_project_new: Novi projekat
199 label_project_plural: Projekti
200 label_project_plural: Projekti
200 label_project_all: Svi Projekti
201 label_project_all: Svi Projekti
201 label_project_latest: Poslednji projekat
202 label_project_latest: Poslednji projekat
202 label_issue: Kartica
203 label_issue: Kartica
203 label_issue_new: Nova kartica
204 label_issue_new: Nova kartica
204 label_issue_plural: Kartice
205 label_issue_plural: Kartice
205 label_issue_view_all: Pregled svih kartica
206 label_issue_view_all: Pregled svih kartica
206 label_document: Dokumenat
207 label_document: Dokumenat
207 label_document_new: Novi dokumenat
208 label_document_new: Novi dokumenat
208 label_document_plural: Dokumenti
209 label_document_plural: Dokumenti
209 label_role: Uloga
210 label_role: Uloga
210 label_role_plural: Uloge
211 label_role_plural: Uloge
211 label_role_new: Nova uloga
212 label_role_new: Nova uloga
212 label_role_and_permissions: Uloge i prava
213 label_role_and_permissions: Uloge i prava
213 label_member: Član
214 label_member: Član
214 label_member_new: Novi član
215 label_member_new: Novi član
215 label_member_plural: Članovi
216 label_member_plural: Članovi
216 label_tracker: Tracker
217 label_tracker: Tracker
217 label_tracker_plural: Trackers
218 label_tracker_plural: Trackers
218 label_tracker_new: Novi tracker
219 label_tracker_new: Novi tracker
219 label_workflow: Tok rada
220 label_workflow: Tok rada
220 label_issue_status: Status kartice
221 label_issue_status: Status kartice
221 label_issue_status_plural: Statusi kartica
222 label_issue_status_plural: Statusi kartica
222 label_issue_status_new: Novi status
223 label_issue_status_new: Novi status
223 label_issue_category: Kategorij kartice
224 label_issue_category: Kategorij kartice
224 label_issue_category_plural: Kategorije kartica
225 label_issue_category_plural: Kategorije kartica
225 label_issue_category_new: Nova kategorija
226 label_issue_category_new: Nova kategorija
226 label_custom_field: Korisnički definisano polje
227 label_custom_field: Korisnički definisano polje
227 label_custom_field_plural: Korisnički definisana polja
228 label_custom_field_plural: Korisnički definisana polja
228 label_custom_field_new: Novo korisnički definisano polje
229 label_custom_field_new: Novo korisnički definisano polje
229 label_enumerations: Enumeracije
230 label_enumerations: Enumeracije
230 label_enumeration_new: Nova vrednost
231 label_enumeration_new: Nova vrednost
231 label_information: Informacija
232 label_information: Informacija
232 label_information_plural: Informacije
233 label_information_plural: Informacije
233 label_please_login: Molim ulogujte se
234 label_please_login: Molim ulogujte se
234 label_register: Registracija
235 label_register: Registracija
235 label_password_lost: Izgubljena lozinka
236 label_password_lost: Izgubljena lozinka
236 label_home: Home
237 label_home: Home
237 label_my_page: Moja Stranica
238 label_my_page: Moja Stranica
238 label_my_account: Moj nalog
239 label_my_account: Moj nalog
239 label_my_projects: Moji projekti
240 label_my_projects: Moji projekti
240 label_administration: Administracija
241 label_administration: Administracija
241 label_login: Login
242 label_login: Login
242 label_logout: Logout
243 label_logout: Logout
243 label_help: Pomoć
244 label_help: Pomoć
244 label_reported_issues: Prijavljene kartice
245 label_reported_issues: Prijavljene kartice
245 label_assigned_to_me_issues: Kartice meni dodeljene
246 label_assigned_to_me_issues: Kartice meni dodeljene
246 label_last_login: Poslednja konekcija
247 label_last_login: Poslednja konekcija
247 label_last_updates: Poslednje izmene
248 label_last_updates: Poslednje izmene
248 label_last_updates_plural: %d poslednje izmenjene
249 label_last_updates_plural: %d poslednje izmenjene
249 label_registered_on: Registrovano
250 label_registered_on: Registrovano
250 label_activity: Aktivnost
251 label_activity: Aktivnost
251 label_new: Novo
252 label_new: Novo
252 label_logged_as: Prijavljen kao
253 label_logged_as: Prijavljen kao
253 label_environment: Environment
254 label_environment: Environment
254 label_authentication: Prijavljivanje
255 label_authentication: Prijavljivanje
255 label_auth_source: Način prijavljivanja
256 label_auth_source: Način prijavljivanja
256 label_auth_source_new: Novi način prijavljivanja
257 label_auth_source_new: Novi način prijavljivanja
257 label_auth_source_plural: Načini prijavljivanja
258 label_auth_source_plural: Načini prijavljivanja
258 label_subproject_plural: Podprojekti
259 label_subproject_plural: Podprojekti
259 label_min_max_length: Min - Max velicina
260 label_min_max_length: Min - Max velicina
260 label_list: Liste
261 label_list: Liste
261 label_date: Datum
262 label_date: Datum
262 label_integer: Integer
263 label_integer: Integer
263 label_boolean: Boolean
264 label_boolean: Boolean
264 label_string: Text
265 label_string: Text
265 label_text: Long text
266 label_text: Long text
266 label_attribute: Atribut
267 label_attribute: Atribut
267 label_attribute_plural: Atributi
268 label_attribute_plural: Atributi
268 label_download: %d Download
269 label_download: %d Download
269 label_download_plural: %d Downloads
270 label_download_plural: %d Downloads
270 label_no_data: Nema podataka za prikaz
271 label_no_data: Nema podataka za prikaz
271 label_change_status: Izmena statusa
272 label_change_status: Izmena statusa
272 label_history: Istorija
273 label_history: Istorija
273 label_attachment: Fajl
274 label_attachment: Fajl
274 label_attachment_new: Novi fajl
275 label_attachment_new: Novi fajl
275 label_attachment_delete: Brisanje fajla
276 label_attachment_delete: Brisanje fajla
276 label_attachment_plural: Fajlovi
277 label_attachment_plural: Fajlovi
277 label_report: Izveštaj
278 label_report: Izveštaj
278 label_report_plural: Izveštaji
279 label_report_plural: Izveštaji
279 label_news: Novosti
280 label_news: Novosti
280 label_news_new: Dodaj novosti
281 label_news_new: Dodaj novosti
281 label_news_plural: Novosti
282 label_news_plural: Novosti
282 label_news_latest: Poslednje novosti
283 label_news_latest: Poslednje novosti
283 label_news_view_all: Pregled svih novosti
284 label_news_view_all: Pregled svih novosti
284 label_change_log: Change log
285 label_change_log: Change log
285 label_settings: Podešavanja
286 label_settings: Podešavanja
286 label_overview: Overview
287 label_overview: Overview
287 label_version: Verzija
288 label_version: Verzija
288 label_version_new: Nova verzija
289 label_version_new: Nova verzija
289 label_version_plural: Verzije
290 label_version_plural: Verzije
290 label_confirmation: Potvrda
291 label_confirmation: Potvrda
291 label_export_to: Izvoz u
292 label_export_to: Izvoz u
292 label_read: Čitaj...
293 label_read: Čitaj...
293 label_public_projects: Javni projekti
294 label_public_projects: Javni projekti
294 label_open_issues: Otvoren
295 label_open_issues: Otvoren
295 label_open_issues_plural: Otvoreni
296 label_open_issues_plural: Otvoreni
296 label_closed_issues: Zatvoreni
297 label_closed_issues: Zatvoreni
297 label_closed_issues_plural: Zatvoreni
298 label_closed_issues_plural: Zatvoreni
298 label_total: Ukupno
299 label_total: Ukupno
299 label_permissions: Dozvole
300 label_permissions: Dozvole
300 label_current_status: Trenutni status
301 label_current_status: Trenutni status
301 label_new_statuses_allowed: Novi status je dozvoljen
302 label_new_statuses_allowed: Novi status je dozvoljen
302 label_all: Sve
303 label_all: Sve
303 label_none: nijedan
304 label_none: nijedan
304 label_nobody: niko
305 label_nobody: niko
305
306
306 label_next: Naredni
307 label_next: Naredni
307 label_previous: Prethodni
308 label_previous: Prethodni
308 label_used_by: Korišćen od
309 label_used_by: Korišćen od
309 label_details: Detalji
310 label_details: Detalji
310 label_add_note: Dodaj belešku
311 label_add_note: Dodaj belešku
311 label_per_page: Po stranici
312 label_per_page: Po stranici
312 label_calendar: Kalendar
313 label_calendar: Kalendar
313 label_months_from: Meseci od
314 label_months_from: Meseci od
314 label_gantt: Gantt
315 label_gantt: Gantt
315 label_internal: Interno
316 label_internal: Interno
316 label_last_changes: Poslednjih %d izmena
317 label_last_changes: Poslednjih %d izmena
317 label_change_view_all: Prikaz svih izmena
318 label_change_view_all: Prikaz svih izmena
318 label_personalize_page: Personalizuj ovu stranicu
319 label_personalize_page: Personalizuj ovu stranicu
319 label_comment: Komentar
320 label_comment: Komentar
320 label_comment_plural: Komentari
321 label_comment_plural: Komentari
321 label_comment_add: Dodaj komentar
322 label_comment_add: Dodaj komentar
322 label_comment_added: Komentar dodat
323 label_comment_added: Komentar dodat
323 label_comment_delete: Brisanje komentara
324 label_comment_delete: Brisanje komentara
324 label_query: Korisnički upit
325 label_query: Korisnički upit
325 label_query_plural: Korisnički upiti
326 label_query_plural: Korisnički upiti
326 label_query_new: Novi upit
327 label_query_new: Novi upit
327 label_filter_add: Dodaj filter
328 label_filter_add: Dodaj filter
328 label_filter_plural: Filter
329 label_filter_plural: Filter
329 label_equals: je
330 label_equals: je
330 label_not_equals: nije
331 label_not_equals: nije
331 label_in_less_than: je manji od
332 label_in_less_than: je manji od
332 label_in_more_than: je veci od
333 label_in_more_than: je veci od
333 label_in: u
334 label_in: u
334 label_today: danas
335 label_today: danas
335 label_this_week: ove nedelje
336 label_this_week: ove nedelje
336 label_less_than_ago: manje nego dana
337 label_less_than_ago: manje nego dana
337 label_more_than_ago: više nego dana
338 label_more_than_ago: više nego dana
338 label_ago: pre dana
339 label_ago: pre dana
339 label_contains: Sadrži
340 label_contains: Sadrži
340 label_not_contains: ne sadrži
341 label_not_contains: ne sadrži
341 label_day_plural: dana
342 label_day_plural: dana
342 label_repository: Spremište
343 label_repository: Spremište
343 label_browse: Pregled
344 label_browse: Pregled
344 label_modification: %d izmena
345 label_modification: %d izmena
345 label_modification_plural: %d izmena
346 label_modification_plural: %d izmena
346 label_revision: Revizija
347 label_revision: Revizija
347 label_revision_plural: Revizije
348 label_revision_plural: Revizije
348 label_added: dodato
349 label_added: dodato
349 label_modified: modifikovano
350 label_modified: modifikovano
350 label_deleted: izmenjeno
351 label_deleted: izmenjeno
351 label_latest_revision: Poslednja revizija
352 label_latest_revision: Poslednja revizija
352 label_latest_revision_plural: Poslednje revizije
353 label_latest_revision_plural: Poslednje revizije
353 label_view_revisions: Pregled revizija
354 label_view_revisions: Pregled revizija
354 label_max_size: Maksimalna veličina
355 label_max_size: Maksimalna veličina
355 label_on: 'uključeno'
356 label_on: 'uključeno'
356 label_sort_highest: Premesti na vrh
357 label_sort_highest: Premesti na vrh
357 label_sort_higher: premesti na gore
358 label_sort_higher: premesti na gore
358 label_sort_lower: Premesti na dole
359 label_sort_lower: Premesti na dole
359 label_sort_lowest: Premesti na dno
360 label_sort_lowest: Premesti na dno
360 label_roadmap: Roadmap
361 label_roadmap: Roadmap
361 label_roadmap_due_in: Završava se za
362 label_roadmap_due_in: Završava se za
362 label_roadmap_overdue: %s kasni
363 label_roadmap_overdue: %s kasni
363 label_roadmap_no_issues: Nema kartica za ovu verziju
364 label_roadmap_no_issues: Nema kartica za ovu verziju
364 label_search: Traži
365 label_search: Traži
365 label_result_plural: Rezultati
366 label_result_plural: Rezultati
366 label_all_words: Sve reči
367 label_all_words: Sve reči
367 label_wiki: Wiki
368 label_wiki: Wiki
368 label_wiki_edit: Wiki izmena
369 label_wiki_edit: Wiki izmena
369 label_wiki_edit_plural: Wiki izmene
370 label_wiki_edit_plural: Wiki izmene
370 label_wiki_page: Wiki stranica
371 label_wiki_page: Wiki stranica
371 label_wiki_page_plural: Wiki stranice
372 label_wiki_page_plural: Wiki stranice
372 label_index_by_title: Indeks po naslovima
373 label_index_by_title: Indeks po naslovima
373 label_index_by_date: Indeks po datumu
374 label_index_by_date: Indeks po datumu
374 label_current_version: Trenutna verzija
375 label_current_version: Trenutna verzija
375 label_preview: Brzi pregled
376 label_preview: Brzi pregled
376 label_feed_plural: Feeds
377 label_feed_plural: Feeds
377 label_changes_details: Detalji svih izmena
378 label_changes_details: Detalji svih izmena
378 label_issue_tracking: Praćenje kartica
379 label_issue_tracking: Praćenje kartica
379 label_spent_time: Potrošeno vremena
380 label_spent_time: Potrošeno vremena
380 label_f_hour: %.2f časa
381 label_f_hour: %.2f časa
381 label_f_hour_plural: %.2f časova
382 label_f_hour_plural: %.2f časova
382 label_time_tracking: Praćenje vremena
383 label_time_tracking: Praćenje vremena
383 label_change_plural: Izmene
384 label_change_plural: Izmene
384 label_statistics: Statistika
385 label_statistics: Statistika
385 label_commits_per_month: Commit-a po mesecu
386 label_commits_per_month: Commit-a po mesecu
386 label_commits_per_author: Commit-a po autoru
387 label_commits_per_author: Commit-a po autoru
387 label_view_diff: Pregled razlika
388 label_view_diff: Pregled razlika
388 label_diff_inline: uvučeno
389 label_diff_inline: uvučeno
389 label_diff_side_by_side: paralelno
390 label_diff_side_by_side: paralelno
390 label_options: Opcije
391 label_options: Opcije
391 label_copy_workflow_from: Kopiraj tok rada od
392 label_copy_workflow_from: Kopiraj tok rada od
392 label_permissions_report: Izveštaj o dozvolama
393 label_permissions_report: Izveštaj o dozvolama
393 label_watched_issues: Praćene kartice
394 label_watched_issues: Praćene kartice
394 label_related_issues: Kartice u vezi
395 label_related_issues: Kartice u vezi
395 label_applied_status: Primenjen status
396 label_applied_status: Primenjen status
396 label_loading: Učitavam...
397 label_loading: Učitavam...
397 label_relation_new: Nova relacija
398 label_relation_new: Nova relacija
398 label_relation_delete: Brisanje relacije
399 label_relation_delete: Brisanje relacije
399 label_relates_to: u relaciji sa
400 label_relates_to: u relaciji sa
400 label_duplicates: Duplira
401 label_duplicates: Duplira
401 label_blocks: blokira
402 label_blocks: blokira
402 label_blocked_by: blokiran od strane
403 label_blocked_by: blokiran od strane
403 label_precedes: prethodi
404 label_precedes: prethodi
404 label_follows: sledi
405 label_follows: sledi
405 label_end_to_start: od kraja do početka
406 label_end_to_start: od kraja do početka
406 label_end_to_end: od kraja do kraja
407 label_end_to_end: od kraja do kraja
407 label_start_to_start: od početka do pocetka
408 label_start_to_start: od početka do pocetka
408 label_start_to_end: od početka do kraja
409 label_start_to_end: od početka do kraja
409 label_stay_logged_in: Ostani ulogovan
410 label_stay_logged_in: Ostani ulogovan
410 label_disabled: Isključen
411 label_disabled: Isključen
411 label_show_completed_versions: Prikaži završene verzije
412 label_show_completed_versions: Prikaži završene verzije
412 label_me: ja
413 label_me: ja
413 label_board: Forum
414 label_board: Forum
414 label_board_new: Novi forum
415 label_board_new: Novi forum
415 label_board_plural: Forumi
416 label_board_plural: Forumi
416 label_topic_plural: Teme
417 label_topic_plural: Teme
417 label_message_plural: Poruke
418 label_message_plural: Poruke
418 label_message_last: Poslednja poruka
419 label_message_last: Poslednja poruka
419 label_message_new: Nova poruka
420 label_message_new: Nova poruka
420 label_reply_plural: Odgovori
421 label_reply_plural: Odgovori
421 label_send_information: Pošalji informaciju o nalogu korisniku
422 label_send_information: Pošalji informaciju o nalogu korisniku
422 label_year: Godina
423 label_year: Godina
423 label_month: Mesec
424 label_month: Mesec
424 label_week: Nedelja
425 label_week: Nedelja
425 label_date_from: Od
426 label_date_from: Od
426 label_date_to: Do
427 label_date_to: Do
427 label_language_based: Bazirano na jeziku
428 label_language_based: Bazirano na jeziku
428 label_sort_by: Sortiraj po %s
429 label_sort_by: Sortiraj po %s
429 label_send_test_email: Pošalji probni email
430 label_send_test_email: Pošalji probni email
430 label_feeds_access_key_created_on: RSS ključ za pristup je kreiran pre %s
431 label_feeds_access_key_created_on: RSS ključ za pristup je kreiran pre %s
431 label_module_plural: Modulovi
432 label_module_plural: Modulovi
432 label_added_time_by: Dodato pre %s %s
433 label_added_time_by: Dodato pre %s %s
433 label_updated_time: Izmenjeno pre %s
434 label_updated_time: Izmenjeno pre %s
434 label_jump_to_a_project: Prebaci se na projekat...
435 label_jump_to_a_project: Prebaci se na projekat...
435 label_file_plural: Fajlovi
436 label_file_plural: Fajlovi
436 label_changeset_plural: Skupovi izmena
437 label_changeset_plural: Skupovi izmena
437 label_default_columns: Podrazumevane kolone
438 label_default_columns: Podrazumevane kolone
438 label_no_change_option: (Bez izmena)
439 label_no_change_option: (Bez izmena)
439 label_bulk_edit_selected_issues: Zajednička izmena izabranih kartica
440 label_bulk_edit_selected_issues: Zajednička izmena izabranih kartica
440 label_theme: Tema
441 label_theme: Tema
441 label_default: Podrazumevana
442 label_default: Podrazumevana
442 label_search_titles_only: Pretraga samo naslova
443 label_search_titles_only: Pretraga samo naslova
443 label_user_mail_option_all: "Za bilo koji događaj na svim mojim projektima"
444 label_user_mail_option_all: "Za bilo koji događaj na svim mojim projektima"
444 label_user_mail_option_selected: "Za bilo koji događaj za samo izabrane projekte..."
445 label_user_mail_option_selected: "Za bilo koji događaj za samo izabrane projekte..."
445 label_user_mail_option_none: "Samo za stvari koje pratim ili u kojima učestvujem"
446 label_user_mail_option_none: "Samo za stvari koje pratim ili u kojima učestvujem"
446
447
447 button_login: Login
448 button_login: Login
448 button_submit: Pošalji
449 button_submit: Pošalji
449 button_save: Snimi
450 button_save: Snimi
450 button_check_all: Označi sve
451 button_check_all: Označi sve
451 button_uncheck_all: Isključi sve
452 button_uncheck_all: Isključi sve
452 button_delete: Briši
453 button_delete: Briši
453 button_create: Kreiraj
454 button_create: Kreiraj
454 button_test: Testiraj
455 button_test: Testiraj
455 button_edit: Izmene
456 button_edit: Izmene
456 button_add: Dodavanje
457 button_add: Dodavanje
457 button_change: Izmena
458 button_change: Izmena
458 button_apply: Primena
459 button_apply: Primena
459 button_clear: Brisanje
460 button_clear: Brisanje
460 button_lock: Zaključavanje
461 button_lock: Zaključavanje
461 button_unlock: Odključavanje
462 button_unlock: Odključavanje
462 button_download: Download
463 button_download: Download
463 button_list: Lista
464 button_list: Lista
464 button_view: Pregled
465 button_view: Pregled
465 button_move: Premeštanje
466 button_move: Premeštanje
466 button_back: Nazad
467 button_back: Nazad
467 button_cancel: Odustajanje
468 button_cancel: Odustajanje
468 button_activate: Aktiviraj
469 button_activate: Aktiviraj
469 button_sort: Sortiranje
470 button_sort: Sortiranje
470 button_log_time: Log time
471 button_log_time: Log time
471 button_rollback: Izvrši rollback na ovu verziju
472 button_rollback: Izvrši rollback na ovu verziju
472 button_watch: Praćenje
473 button_watch: Praćenje
473 button_unwatch: Prekid praćenja
474 button_unwatch: Prekid praćenja
474 button_reply: Odgovor
475 button_reply: Odgovor
475 button_archive: Arhiviranje
476 button_archive: Arhiviranje
476 button_unarchive: Dearhiviranje
477 button_unarchive: Dearhiviranje
477 button_reset: Reset
478 button_reset: Reset
478 button_rename: Promena imena
479 button_rename: Promena imena
479 button_change_password: Izmena lozinke
480 button_change_password: Izmena lozinke
480
481
481 status_active: aktivan
482 status_active: aktivan
482 status_registered: registrovan
483 status_registered: registrovan
483 status_locked: zaključan
484 status_locked: zaključan
484
485
485 text_select_mail_notifications: Izbor akcija za koje će biti poslato obaveštenje mailom.
486 text_select_mail_notifications: Izbor akcija za koje će biti poslato obaveštenje mailom.
486 text_regexp_info: eg. ^[A-Z0-9]+$
487 text_regexp_info: eg. ^[A-Z0-9]+$
487 text_min_max_length_info: 0 znači bez restrikcija
488 text_min_max_length_info: 0 znači bez restrikcija
488 text_project_destroy_confirmation: Da li ste sigurni da želite da izbrišete ovaj projekat i sve njegove podatke?
489 text_project_destroy_confirmation: Da li ste sigurni da želite da izbrišete ovaj projekat i sve njegove podatke?
489 text_workflow_edit: Select a role and a tracker to edit the workflow
490 text_workflow_edit: Select a role and a tracker to edit the workflow
490 text_are_you_sure: Da li ste sigurni ?
491 text_are_you_sure: Da li ste sigurni ?
491 text_journal_changed: izmenjen iz %s u %s
492 text_journal_changed: izmenjen iz %s u %s
492 text_journal_set_to: postavi na %s
493 text_journal_set_to: postavi na %s
493 text_journal_deleted: izbrisano
494 text_journal_deleted: izbrisano
494 text_tip_task_begin_day: Zadaci koji počinju ovog dana
495 text_tip_task_begin_day: Zadaci koji počinju ovog dana
495 text_tip_task_end_day: zadaci koji se završavaju ovog dana
496 text_tip_task_end_day: zadaci koji se završavaju ovog dana
496 text_tip_task_begin_end_day: Zadaci koji počinju i završavaju se ovog dana
497 text_tip_task_begin_end_day: Zadaci koji počinju i završavaju se ovog dana
497 text_project_identifier_info: 'mala slova (a-z), brojevi i crtice su dozvoljeni.<br />Jednom snimljen identifikator se ne može menjati'
498 text_project_identifier_info: 'mala slova (a-z), brojevi i crtice su dozvoljeni.<br />Jednom snimljen identifikator se ne može menjati'
498 text_caracters_maximum: %d karaktera maksimalno.
499 text_caracters_maximum: %d karaktera maksimalno.
499 text_length_between: Dužina izmedu %d i %d karaktera.
500 text_length_between: Dužina izmedu %d i %d karaktera.
500 text_tracker_no_workflow: Tok rada nije definisan za ovaj tracker
501 text_tracker_no_workflow: Tok rada nije definisan za ovaj tracker
501 text_unallowed_characters: Nedozvoljeni karakteri
502 text_unallowed_characters: Nedozvoljeni karakteri
502 text_comma_separated: Višestruke vrednosti su dozvoljene (razdvojene zarezom).
503 text_comma_separated: Višestruke vrednosti su dozvoljene (razdvojene zarezom).
503 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
504 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
504 text_issue_added: Kartica %s je prijavljena.
505 text_issue_added: Kartica %s je prijavljena.
505 text_issue_updated: Kartica %s je izmenjena.
506 text_issue_updated: Kartica %s je izmenjena.
506 text_wiki_destroy_confirmation: Da li ste sigurni da želite da izbrišete ovaj wiki i svu njegovu sadržinu ?
507 text_wiki_destroy_confirmation: Da li ste sigurni da želite da izbrišete ovaj wiki i svu njegovu sadržinu ?
507 text_issue_category_destroy_question: Neke kartice (%d) su dodeljene ovoj kategoriji. Šta želite da uradite ?
508 text_issue_category_destroy_question: Neke kartice (%d) su dodeljene ovoj kategoriji. Šta želite da uradite ?
508 text_issue_category_destroy_assignments: Ukloni dodeljivanje kategorija
509 text_issue_category_destroy_assignments: Ukloni dodeljivanje kategorija
509 text_issue_category_reassign_to: Ponovo dodeli kartice ovoj kategoriji
510 text_issue_category_reassign_to: Ponovo dodeli kartice ovoj kategoriji
510 text_user_mail_option: "Za neizabrane projekte, primaćete obaveštenja samo o stvarima koje pratite ili u kojima učestvujete (npr. kartice koje ste vi kreirali ili koje su vama dodeljene)."
511 text_user_mail_option: "Za neizabrane projekte, primaćete obaveštenja samo o stvarima koje pratite ili u kojima učestvujete (npr. kartice koje ste vi kreirali ili koje su vama dodeljene)."
511
512
512 default_role_manager: Menadžer
513 default_role_manager: Menadžer
513 default_role_developper: Developer
514 default_role_developper: Developer
514 default_role_reporter: Reporter
515 default_role_reporter: Reporter
515 default_tracker_bug: Greška
516 default_tracker_bug: Greška
516 default_tracker_feature: Nova osobina
517 default_tracker_feature: Nova osobina
517 default_tracker_support: Podrška
518 default_tracker_support: Podrška
518 default_issue_status_new: Novo
519 default_issue_status_new: Novo
519 default_issue_status_assigned: Dodeljeno
520 default_issue_status_assigned: Dodeljeno
520 default_issue_status_resolved: Rešeno
521 default_issue_status_resolved: Rešeno
521 default_issue_status_feedback: Povratna informacija
522 default_issue_status_feedback: Povratna informacija
522 default_issue_status_closed: Zatvoreno
523 default_issue_status_closed: Zatvoreno
523 default_issue_status_rejected: Odbačeno
524 default_issue_status_rejected: Odbačeno
524 default_doc_category_user: Korisnička dokumentacija
525 default_doc_category_user: Korisnička dokumentacija
525 default_doc_category_tech: Tehnička dokumentacija
526 default_doc_category_tech: Tehnička dokumentacija
526 default_priority_low: Nizak
527 default_priority_low: Nizak
527 default_priority_normal: Normalan
528 default_priority_normal: Normalan
528 default_priority_high: Visok
529 default_priority_high: Visok
529 default_priority_urgent: Hitan
530 default_priority_urgent: Hitan
530 default_priority_immediate: Odmah
531 default_priority_immediate: Odmah
531 default_activity_design: Dizajn
532 default_activity_design: Dizajn
532 default_activity_development: Razvoj
533 default_activity_development: Razvoj
533
534
534 enumeration_issue_priorities: Prioriteti kartica
535 enumeration_issue_priorities: Prioriteti kartica
535 enumeration_doc_categories: Kategorija dokumenata
536 enumeration_doc_categories: Kategorija dokumenata
536 enumeration_activities: Aktivnosti (praćenje vremena))
537 enumeration_activities: Aktivnosti (praćenje vremena))
537 label_float: Float
538 label_float: Float
538 button_copy: Copy
539 button_copy: Copy
539 setting_protocol: Protocol
540 setting_protocol: Protocol
540 label_user_mail_no_self_notified: "Ne želim da budem obaveštavan o izmenama koje sam pravim"
541 label_user_mail_no_self_notified: "Ne želim da budem obaveštavan o izmenama koje sam pravim"
541 setting_time_format: Format vremena
542 setting_time_format: Format vremena
542 label_registration_activation_by_email: aktivacija naloga putem email-a
543 label_registration_activation_by_email: aktivacija naloga putem email-a
543 mail_subject_account_activation_request: Redmine zahtev za aktivacijom naloga
544 mail_subject_account_activation_request: Redmine zahtev za aktivacijom naloga
544 mail_body_account_activation_request: 'Novi korisnik (%s) se registrovao. Njegov nalog čeka vaše odobrenje:'
545 mail_body_account_activation_request: 'Novi korisnik (%s) se registrovao. Njegov nalog čeka vaše odobrenje:'
545 label_registration_automatic_activation: automatska aktivacija naloga
546 label_registration_automatic_activation: automatska aktivacija naloga
546 label_registration_manual_activation: ručna aktivacija naloga
547 label_registration_manual_activation: ručna aktivacija naloga
547 notice_account_pending: "Vaš nalog je kreiran i čeka odobrenje administratora."
548 notice_account_pending: "Vaš nalog je kreiran i čeka odobrenje administratora."
548 field_time_zone: Vremenska zona
549 field_time_zone: Vremenska zona
549 text_caracters_minimum: Mora biti minimum %d karaktera dugačka.
550 text_caracters_minimum: Mora biti minimum %d karaktera dugačka.
550 setting_bcc_recipients: '"Blind carbon copy" primaoci (bcc)'
551 setting_bcc_recipients: '"Blind carbon copy" primaoci (bcc)'
551 button_annotate: Annotate
552 button_annotate: Annotate
552 label_issues_by: Kartice od %s
553 label_issues_by: Kartice od %s
553 field_searchable: Searchable
554 field_searchable: Searchable
554 label_display_per_page: 'Po stranici: %s'
555 label_display_per_page: 'Po stranici: %s'
555 setting_per_page_options: Objekata po stranici opcija
556 setting_per_page_options: Objekata po stranici opcija
556 label_age: Starost
557 label_age: Starost
557 notice_default_data_loaded: Default configuration successfully loaded.
558 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
559 text_load_default_configuration: Load the default configuration
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
560 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
561 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
561 button_update: Update
562 button_update: Update
562 label_change_properties: Change properties
563 label_change_properties: Change properties
563 label_general: General
564 label_general: General
564 label_repository_plural: Repositories
565 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
566 label_associated_revisions: Associated revisions
@@ -1,565 +1,566
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December
4 actionview_datehelper_select_month_names: Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dagar
9 actionview_datehelper_time_in_words_day_plural: %d dagar
10 actionview_datehelper_time_in_words_hour_about: cirka en timme
10 actionview_datehelper_time_in_words_hour_about: cirka en timme
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar
12 actionview_datehelper_time_in_words_hour_about_single: cirka en timme
12 actionview_datehelper_time_in_words_hour_about_single: cirka en timme
13 actionview_datehelper_time_in_words_minute: 1 minut
13 actionview_datehelper_time_in_words_minute: 1 minut
14 actionview_datehelper_time_in_words_minute_half: en halv minute
14 actionview_datehelper_time_in_words_minute_half: en halv minute
15 actionview_datehelper_time_in_words_minute_less_than: mindre än en minut
15 actionview_datehelper_time_in_words_minute_less_than: mindre än en minut
16 actionview_datehelper_time_in_words_minute_plural: %d minuter
16 actionview_datehelper_time_in_words_minute_plural: %d minuter
17 actionview_datehelper_time_in_words_minute_single: 1 minut
17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 actionview_datehelper_time_in_words_second_less_than: mindre än en sekund
18 actionview_datehelper_time_in_words_second_less_than: mindre än en sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder
20 actionview_instancetag_blank_option: Var god välj
20 actionview_instancetag_blank_option: Var god välj
21
21
22 activerecord_error_inclusion: finns inte i listan
22 activerecord_error_inclusion: finns inte i listan
23 activerecord_error_exclusion: är reserverad
23 activerecord_error_exclusion: är reserverad
24 activerecord_error_invalid: är ogiltig
24 activerecord_error_invalid: är ogiltig
25 activerecord_error_confirmation: överränsstämmer inte med bekräftelsen
25 activerecord_error_confirmation: överränsstämmer inte med bekräftelsen
26 activerecord_error_accepted: måste accepteras
26 activerecord_error_accepted: måste accepteras
27 activerecord_error_empty: får inte vara tom
27 activerecord_error_empty: får inte vara tom
28 activerecord_error_blank: får inte vara tom
28 activerecord_error_blank: får inte vara tom
29 activerecord_error_too_long: är för lång
29 activerecord_error_too_long: är för lång
30 activerecord_error_too_short: är för kort
30 activerecord_error_too_short: är för kort
31 activerecord_error_wrong_length: har fel längd
31 activerecord_error_wrong_length: har fel längd
32 activerecord_error_taken: har redan blivit tagen
32 activerecord_error_taken: har redan blivit tagen
33 activerecord_error_not_a_number: är inte ett nummer
33 activerecord_error_not_a_number: är inte ett nummer
34 activerecord_error_not_a_date: är inte ett korrekt datum
34 activerecord_error_not_a_date: är inte ett korrekt datum
35 activerecord_error_greater_than_start_date: måste vara senare än startdatumet
35 activerecord_error_greater_than_start_date: måste vara senare än startdatumet
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d år
39 general_fmt_age: %d år
40 general_fmt_age_plural: %d år
40 general_fmt_age_plural: %d år
41 general_fmt_date: %%Y-%%m-%%d
41 general_fmt_date: %%Y-%%m-%%d
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nej'
45 general_text_No: 'Nej'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nej'
47 general_text_no: 'nej'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Svenska'
49 general_lang_name: 'Svenska'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag
53 general_day_names: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Kontot har uppdaterats
56 notice_account_updated: Kontot har uppdaterats
57 notice_account_invalid_creditentials: Fel användarnamn eller lösenord
57 notice_account_invalid_creditentials: Fel användarnamn eller lösenord
58 notice_account_password_updated: Lösenordet har uppdaterats
58 notice_account_password_updated: Lösenordet har uppdaterats
59 notice_account_wrong_password: Fel lösenord
59 notice_account_wrong_password: Fel lösenord
60 notice_account_register_done: Kontot har skapats.
60 notice_account_register_done: Kontot har skapats.
61 notice_account_unknown_email: Okäns användare.
61 notice_account_unknown_email: Okäns användare.
62 notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord.
62 notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord.
63 notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig.
63 notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig.
64 notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in.
64 notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in.
65 notice_successful_create: Lyckat skapande.
65 notice_successful_create: Lyckat skapande.
66 notice_successful_update: Lyckad uppdatering.
66 notice_successful_update: Lyckad uppdatering.
67 notice_successful_delete: Lyckad borttagning.
67 notice_successful_delete: Lyckad borttagning.
68 notice_successful_connection: Lyckad uppkoppling.
68 notice_successful_connection: Lyckad uppkoppling.
69 notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen.
69 notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen.
70 notice_locking_conflict: Data har uppdaterats av en annan användare.
70 notice_locking_conflict: Data har uppdaterats av en annan användare.
71 notice_scm_error: Inlägg och/eller revision finns inte i repositoriet.
71 notice_scm_error: Inlägg och/eller revision finns inte i repositoriet.
72 notice_not_authorized: You are not authorized to access this page.
72 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
76
77 mail_subject_lost_password: Ditt redMine lösenord
77 mail_subject_lost_password: Ditt redMine lösenord
78 mail_body_lost_password: 'För att ändra lösenord, följ denna länk:'
78 mail_body_lost_password: 'För att ändra lösenord, följ denna länk:'
79 mail_subject_register: redMine kontoaktivering
79 mail_subject_register: redMine kontoaktivering
80 mail_body_register: 'För att aktivera ditt Redmine-konto, använd följande länk.'
80 mail_body_register: 'För att aktivera ditt Redmine-konto, använd följande länk.'
81
81
82 gui_validation_error: 1 fel
82 gui_validation_error: 1 fel
83 gui_validation_error_plural: %d fel
83 gui_validation_error_plural: %d fel
84
84
85 field_name: Namn
85 field_name: Namn
86 field_description: Beskrivning
86 field_description: Beskrivning
87 field_summary: Sammanfattning
87 field_summary: Sammanfattning
88 field_is_required: Obligatorisk
88 field_is_required: Obligatorisk
89 field_firstname: Förnamn
89 field_firstname: Förnamn
90 field_lastname: Efternamn
90 field_lastname: Efternamn
91 field_mail: Email
91 field_mail: Email
92 field_filename: Fil
92 field_filename: Fil
93 field_filesize: Storlek
93 field_filesize: Storlek
94 field_downloads: Nerladdningar
94 field_downloads: Nerladdningar
95 field_author: Författare
95 field_author: Författare
96 field_created_on: Skapad
96 field_created_on: Skapad
97 field_updated_on: Uppdaterad
97 field_updated_on: Uppdaterad
98 field_field_format: Format
98 field_field_format: Format
99 field_is_for_all: För alla projekt
99 field_is_for_all: För alla projekt
100 field_possible_values: Möjliga värden
100 field_possible_values: Möjliga värden
101 field_regexp: Regular expression
101 field_regexp: Regular expression
102 field_min_length: Minimilängd
102 field_min_length: Minimilängd
103 field_max_length: Maximumlängd
103 field_max_length: Maximumlängd
104 field_value: Värde
104 field_value: Värde
105 field_category: Kategori
105 field_category: Kategori
106 field_title: Titel
106 field_title: Titel
107 field_project: Projekt
107 field_project: Projekt
108 field_issue: Brist
108 field_issue: Brist
109 field_status: Status
109 field_status: Status
110 field_notes: Anteckningar
110 field_notes: Anteckningar
111 field_is_closed: Brist stängd
111 field_is_closed: Brist stängd
112 field_is_default: Defaultstatus
112 field_is_default: Defaultstatus
113 field_tracker: Tracker
113 field_tracker: Tracker
114 field_subject: Rubrik
114 field_subject: Rubrik
115 field_due_date: Färdigdatum
115 field_due_date: Färdigdatum
116 field_assigned_to: Tilldelad
116 field_assigned_to: Tilldelad
117 field_priority: Prioritet
117 field_priority: Prioritet
118 field_fixed_version: Fixed version
118 field_fixed_version: Fixed version
119 field_user: Användare
119 field_user: Användare
120 field_role: Roll
120 field_role: Roll
121 field_homepage: Hemsida
121 field_homepage: Hemsida
122 field_is_public: Offentlig
122 field_is_public: Offentlig
123 field_parent: Delprojekt av
123 field_parent: Delprojekt av
124 field_is_in_chlog: Brister visade i ändringslogg
124 field_is_in_chlog: Brister visade i ändringslogg
125 field_is_in_roadmap: Bsiter visade i roadmap
125 field_is_in_roadmap: Bsiter visade i roadmap
126 field_login: Inloggning
126 field_login: Inloggning
127 field_mail_notification: Emailnotifieringar
127 field_mail_notification: Emailnotifieringar
128 field_admin: Administratör
128 field_admin: Administratör
129 field_last_login_on: Senaste inloggning
129 field_last_login_on: Senaste inloggning
130 field_language: Språk
130 field_language: Språk
131 field_effective_date: Datum
131 field_effective_date: Datum
132 field_password: Lösenord
132 field_password: Lösenord
133 field_new_password: Nytt lösenord
133 field_new_password: Nytt lösenord
134 field_password_confirmation: Bekräfta
134 field_password_confirmation: Bekräfta
135 field_version: Version
135 field_version: Version
136 field_type: Typ
136 field_type: Typ
137 field_host: Värddator
137 field_host: Värddator
138 field_port: Port
138 field_port: Port
139 field_account: Konto
139 field_account: Konto
140 field_base_dn: Bas DN
140 field_base_dn: Bas DN
141 field_attr_login: Inloggningsattribut
141 field_attr_login: Inloggningsattribut
142 field_attr_firstname: Förnamnattribut
142 field_attr_firstname: Förnamnattribut
143 field_attr_lastname: Efternamnattribut
143 field_attr_lastname: Efternamnattribut
144 field_attr_mail: Emailattribut
144 field_attr_mail: Emailattribut
145 field_onthefly: On-the-fly användarskapning
145 field_onthefly: On-the-fly användarskapning
146 field_start_date: Start
146 field_start_date: Start
147 field_done_ratio: %% Done
147 field_done_ratio: %% Done
148 field_auth_source: Authentikeringsläge
148 field_auth_source: Authentikeringsläge
149 field_hide_mail: Dölj min emailadress
149 field_hide_mail: Dölj min emailadress
150 field_comment: Kommentar
150 field_comment: Kommentar
151 field_url: URL
151 field_url: URL
152 field_start_page: Startsida
152 field_start_page: Startsida
153 field_subproject: Delprojekt
153 field_subproject: Delprojekt
154 field_hours: Timmar
154 field_hours: Timmar
155 field_activity: Aktivitet
155 field_activity: Aktivitet
156 field_spent_on: Datum
156 field_spent_on: Datum
157 field_identifier: Identifierare
157 field_identifier: Identifierare
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 field_assignable: Issues can be assigned to this role
162 field_redirect_existing_links: Redirect existing links
162 field_redirect_existing_links: Redirect existing links
163 field_estimated_hours: Estimated time
163 field_estimated_hours: Estimated time
164 field_default_value: Default value
164
165
165 setting_app_title: Applikationstitel
166 setting_app_title: Applikationstitel
166 setting_app_subtitle: Applicationsunderrubrik
167 setting_app_subtitle: Applicationsunderrubrik
167 setting_welcome_text: Välkommentext
168 setting_welcome_text: Välkommentext
168 setting_default_language: Default språk
169 setting_default_language: Default språk
169 setting_login_required: Authent. obligatoriskt
170 setting_login_required: Authent. obligatoriskt
170 setting_self_registration: Självregistrering påslaget
171 setting_self_registration: Självregistrering påslaget
171 setting_attachment_max_size: Bifogad maxstorlek
172 setting_attachment_max_size: Bifogad maxstorlek
172 setting_issues_export_limit: Brist exportgräns
173 setting_issues_export_limit: Brist exportgräns
173 setting_mail_from: Emailavsändare
174 setting_mail_from: Emailavsändare
174 setting_host_name: Värddatornamn
175 setting_host_name: Värddatornamn
175 setting_text_formatting: Textformattering
176 setting_text_formatting: Textformattering
176 setting_wiki_compression: Wiki historiekomprimering
177 setting_wiki_compression: Wiki historiekomprimering
177 setting_feeds_limit: Feed innehållsgräns
178 setting_feeds_limit: Feed innehållsgräns
178 setting_autofetch_changesets: Automatisk hämtning av commits
179 setting_autofetch_changesets: Automatisk hämtning av commits
179 setting_sys_api_enabled: Aktivera WS för repository management
180 setting_sys_api_enabled: Aktivera WS för repository management
180 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_fix_keywords: Fixing keywords
182 setting_commit_fix_keywords: Fixing keywords
182 setting_autologin: Autologin
183 setting_autologin: Autologin
183 setting_date_format: Date format
184 setting_date_format: Date format
184 setting_cross_project_issue_relations: Allow cross-project issue relations
185 setting_cross_project_issue_relations: Allow cross-project issue relations
185
186
186 label_user: Användare
187 label_user: Användare
187 label_user_plural: Användare
188 label_user_plural: Användare
188 label_user_new: Ny användare
189 label_user_new: Ny användare
189 label_project: Projekt
190 label_project: Projekt
190 label_project_new: Nytt projekt
191 label_project_new: Nytt projekt
191 label_project_plural: Projekt
192 label_project_plural: Projekt
192 label_project_all: All Projects
193 label_project_all: All Projects
193 label_project_latest: Senaste projekt
194 label_project_latest: Senaste projekt
194 label_issue: Brist
195 label_issue: Brist
195 label_issue_new: Ny brist
196 label_issue_new: Ny brist
196 label_issue_plural: Brister
197 label_issue_plural: Brister
197 label_issue_view_all: Visa alla brister
198 label_issue_view_all: Visa alla brister
198 label_document: Dokument
199 label_document: Dokument
199 label_document_new: Nytt dokument
200 label_document_new: Nytt dokument
200 label_document_plural: Dokument
201 label_document_plural: Dokument
201 label_role: Roll
202 label_role: Roll
202 label_role_plural: Roller
203 label_role_plural: Roller
203 label_role_new: Ny roll
204 label_role_new: Ny roll
204 label_role_and_permissions: Roller och rättigheter
205 label_role_and_permissions: Roller och rättigheter
205 label_member: Medlem
206 label_member: Medlem
206 label_member_new: Ny medlem
207 label_member_new: Ny medlem
207 label_member_plural: Medlemmar
208 label_member_plural: Medlemmar
208 label_tracker: Tracker
209 label_tracker: Tracker
209 label_tracker_plural: Trackers
210 label_tracker_plural: Trackers
210 label_tracker_new: Ny tracker
211 label_tracker_new: Ny tracker
211 label_workflow: Workflow
212 label_workflow: Workflow
212 label_issue_status: Briststatus
213 label_issue_status: Briststatus
213 label_issue_status_plural: Briststatusar
214 label_issue_status_plural: Briststatusar
214 label_issue_status_new: Ny status
215 label_issue_status_new: Ny status
215 label_issue_category: Bristkategori
216 label_issue_category: Bristkategori
216 label_issue_category_plural: Bristkategorier
217 label_issue_category_plural: Bristkategorier
217 label_issue_category_new: Ny kategori
218 label_issue_category_new: Ny kategori
218 label_custom_field: Användardefinerat fält
219 label_custom_field: Användardefinerat fält
219 label_custom_field_plural: Användardefinerade fält
220 label_custom_field_plural: Användardefinerade fält
220 label_custom_field_new: Nytt Användardefinerat fält
221 label_custom_field_new: Nytt Användardefinerat fält
221 label_enumerations: Uppräkningar
222 label_enumerations: Uppräkningar
222 label_enumeration_new: Nytt värde
223 label_enumeration_new: Nytt värde
223 label_information: Information
224 label_information: Information
224 label_information_plural: Information
225 label_information_plural: Information
225 label_please_login: Var god logga in
226 label_please_login: Var god logga in
226 label_register: Registrera
227 label_register: Registrera
227 label_password_lost: Glömt lösenord
228 label_password_lost: Glömt lösenord
228 label_home: Hem
229 label_home: Hem
229 label_my_page: Min sida
230 label_my_page: Min sida
230 label_my_account: Mitt konto
231 label_my_account: Mitt konto
231 label_my_projects: Mina projekt
232 label_my_projects: Mina projekt
232 label_administration: Administration
233 label_administration: Administration
233 label_login: Logga in
234 label_login: Logga in
234 label_logout: Logga ut
235 label_logout: Logga ut
235 label_help: Hjälp
236 label_help: Hjälp
236 label_reported_issues: Rapporterade brister
237 label_reported_issues: Rapporterade brister
237 label_assigned_to_me_issues: Brister tilldelade mig
238 label_assigned_to_me_issues: Brister tilldelade mig
238 label_last_login: Senaste inloggning
239 label_last_login: Senaste inloggning
239 label_last_updates: Senast uppdaterad
240 label_last_updates: Senast uppdaterad
240 label_last_updates_plural: %d senaste uppdateringarna
241 label_last_updates_plural: %d senaste uppdateringarna
241 label_registered_on: Registrerad
242 label_registered_on: Registrerad
242 label_activity: Aktivitet
243 label_activity: Aktivitet
243 label_new: Ny
244 label_new: Ny
244 label_logged_as: Loggad som
245 label_logged_as: Loggad som
245 label_environment: Miljö
246 label_environment: Miljö
246 label_authentication: Authentikering
247 label_authentication: Authentikering
247 label_auth_source: Authentikeringsläge
248 label_auth_source: Authentikeringsläge
248 label_auth_source_new: Nytt authentikeringsläge
249 label_auth_source_new: Nytt authentikeringsläge
249 label_auth_source_plural: Authentikeringslägen
250 label_auth_source_plural: Authentikeringslägen
250 label_subproject_plural: Delprojekt
251 label_subproject_plural: Delprojekt
251 label_min_max_length: Min - Max längd
252 label_min_max_length: Min - Max längd
252 label_list: Lista
253 label_list: Lista
253 label_date: Datum
254 label_date: Datum
254 label_integer: Heltal
255 label_integer: Heltal
255 label_boolean: Boolean
256 label_boolean: Boolean
256 label_string: Text
257 label_string: Text
257 label_text: Long text
258 label_text: Long text
258 label_attribute: Attribut
259 label_attribute: Attribut
259 label_attribute_plural: Attribut
260 label_attribute_plural: Attribut
260 label_download: %d Nerladdning
261 label_download: %d Nerladdning
261 label_download_plural: %d Nerladdningar
262 label_download_plural: %d Nerladdningar
262 label_no_data: Ingen data att visa
263 label_no_data: Ingen data att visa
263 label_change_status: Ändra status
264 label_change_status: Ändra status
264 label_history: Historia
265 label_history: Historia
265 label_attachment: Fil
266 label_attachment: Fil
266 label_attachment_new: Ny fil
267 label_attachment_new: Ny fil
267 label_attachment_delete: Ta bort fil
268 label_attachment_delete: Ta bort fil
268 label_attachment_plural: Filer
269 label_attachment_plural: Filer
269 label_report: Rapport
270 label_report: Rapport
270 label_report_plural: Rapporter
271 label_report_plural: Rapporter
271 label_news: Nyhet
272 label_news: Nyhet
272 label_news_new: Lägg till nyhet
273 label_news_new: Lägg till nyhet
273 label_news_plural: Nyheter
274 label_news_plural: Nyheter
274 label_news_latest: Senaste neheten
275 label_news_latest: Senaste neheten
275 label_news_view_all: Visa alla nyheter
276 label_news_view_all: Visa alla nyheter
276 label_change_log: Ändringslogg
277 label_change_log: Ändringslogg
277 label_settings: Inställningar
278 label_settings: Inställningar
278 label_overview: Överblick
279 label_overview: Överblick
279 label_version: Version
280 label_version: Version
280 label_version_new: Ny version
281 label_version_new: Ny version
281 label_version_plural: Versioner
282 label_version_plural: Versioner
282 label_confirmation: Bekräftelse
283 label_confirmation: Bekräftelse
283 label_export_to: Exportera till
284 label_export_to: Exportera till
284 label_read: Läs...
285 label_read: Läs...
285 label_public_projects: Offentligt projekt
286 label_public_projects: Offentligt projekt
286 label_open_issues: öppen
287 label_open_issues: öppen
287 label_open_issues_plural: öppna
288 label_open_issues_plural: öppna
288 label_closed_issues: stängd
289 label_closed_issues: stängd
289 label_closed_issues_plural: stängda
290 label_closed_issues_plural: stängda
290 label_total: Total
291 label_total: Total
291 label_permissions: Rättigheter
292 label_permissions: Rättigheter
292 label_current_status: Nuvarande status
293 label_current_status: Nuvarande status
293 label_new_statuses_allowed: Nya statusar tillåtna
294 label_new_statuses_allowed: Nya statusar tillåtna
294 label_all: alla
295 label_all: alla
295 label_none: inga
296 label_none: inga
296 label_next: Nästa
297 label_next: Nästa
297 label_previous: Föregående
298 label_previous: Föregående
298 label_used_by: Använd av
299 label_used_by: Använd av
299 label_details: Detaljer
300 label_details: Detaljer
300 label_add_note: Lägg till anteckning
301 label_add_note: Lägg till anteckning
301 label_per_page: Per sida
302 label_per_page: Per sida
302 label_calendar: Kalender
303 label_calendar: Kalender
303 label_months_from: månader från
304 label_months_from: månader från
304 label_gantt: Gantt
305 label_gantt: Gantt
305 label_internal: Intern
306 label_internal: Intern
306 label_last_changes: senaste %d ändringar
307 label_last_changes: senaste %d ändringar
307 label_change_view_all: Visa alla ändringar
308 label_change_view_all: Visa alla ändringar
308 label_personalize_page: Anpassa denna sida
309 label_personalize_page: Anpassa denna sida
309 label_comment: Kommentar
310 label_comment: Kommentar
310 label_comment_plural: Kommentarer
311 label_comment_plural: Kommentarer
311 label_comment_add: Lägg till kommentar
312 label_comment_add: Lägg till kommentar
312 label_comment_added: Kommentar tillagd
313 label_comment_added: Kommentar tillagd
313 label_comment_delete: Ta bort kommentar
314 label_comment_delete: Ta bort kommentar
314 label_query: Användardefinerad fråga
315 label_query: Användardefinerad fråga
315 label_query_plural: Användardefinerade frågor
316 label_query_plural: Användardefinerade frågor
316 label_query_new: Ny fråga
317 label_query_new: Ny fråga
317 label_filter_add: Lägg till filter
318 label_filter_add: Lägg till filter
318 label_filter_plural: Filter
319 label_filter_plural: Filter
319 label_equals: är
320 label_equals: är
320 label_not_equals: är inte
321 label_not_equals: är inte
321 label_in_less_than: i mindre än
322 label_in_less_than: i mindre än
322 label_in_more_than: i mer än
323 label_in_more_than: i mer än
323 label_in: i
324 label_in: i
324 label_today: idag
325 label_today: idag
325 label_this_week: this week
326 label_this_week: this week
326 label_less_than_ago: mindre än dagar sedan
327 label_less_than_ago: mindre än dagar sedan
327 label_more_than_ago: mer än dagar sedan
328 label_more_than_ago: mer än dagar sedan
328 label_ago: dagar sedan
329 label_ago: dagar sedan
329 label_contains: innehåller
330 label_contains: innehåller
330 label_not_contains: innehåller inte
331 label_not_contains: innehåller inte
331 label_day_plural: dagar
332 label_day_plural: dagar
332 label_repository: Repositorie
333 label_repository: Repositorie
333 label_browse: Bläddra
334 label_browse: Bläddra
334 label_modification: %d ändring
335 label_modification: %d ändring
335 label_modification_plural: %d ändringar
336 label_modification_plural: %d ändringar
336 label_revision: Revision
337 label_revision: Revision
337 label_revision_plural: Revisioner
338 label_revision_plural: Revisioner
338 label_added: tillagd
339 label_added: tillagd
339 label_modified: modifierad
340 label_modified: modifierad
340 label_deleted: borttagen
341 label_deleted: borttagen
341 label_latest_revision: Senaste revisionen
342 label_latest_revision: Senaste revisionen
342 label_latest_revision_plural: Senaste revisionerna
343 label_latest_revision_plural: Senaste revisionerna
343 label_view_revisions: Visa revisioner
344 label_view_revisions: Visa revisioner
344 label_max_size: Maximumstorlek
345 label_max_size: Maximumstorlek
345 label_on: 'på'
346 label_on: 'på'
346 label_sort_highest: Flytta till top
347 label_sort_highest: Flytta till top
347 label_sort_higher: Flytta up
348 label_sort_higher: Flytta up
348 label_sort_lower: Flytta ner
349 label_sort_lower: Flytta ner
349 label_sort_lowest: Flytta till botten
350 label_sort_lowest: Flytta till botten
350 label_roadmap: Roadmap
351 label_roadmap: Roadmap
351 label_roadmap_due_in: Färdig om
352 label_roadmap_due_in: Färdig om
352 label_roadmap_overdue: %s late
353 label_roadmap_overdue: %s late
353 label_roadmap_no_issues: Inga brister för denna version
354 label_roadmap_no_issues: Inga brister för denna version
354 label_search: Sök
355 label_search: Sök
355 label_result_plural: Resultat
356 label_result_plural: Resultat
356 label_all_words: Alla ord
357 label_all_words: Alla ord
357 label_wiki: Wiki
358 label_wiki: Wiki
358 label_wiki_edit: Wiki editera
359 label_wiki_edit: Wiki editera
359 label_wiki_edit_plural: Wiki editeringar
360 label_wiki_edit_plural: Wiki editeringar
360 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
361 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
362 label_index_by_title: Index by title
363 label_index_by_title: Index by title
363 label_index_by_date: Index by date
364 label_index_by_date: Index by date
364 label_current_version: Nuvarande version
365 label_current_version: Nuvarande version
365 label_preview: Preview
366 label_preview: Preview
366 label_feed_plural: Feeder
367 label_feed_plural: Feeder
367 label_changes_details: Detaljer om alla ändringar
368 label_changes_details: Detaljer om alla ändringar
368 label_issue_tracking: Bristspårning
369 label_issue_tracking: Bristspårning
369 label_spent_time: Spenderad tid
370 label_spent_time: Spenderad tid
370 label_f_hour: %.2f timmar
371 label_f_hour: %.2f timmar
371 label_f_hour_plural: %.2f timmar
372 label_f_hour_plural: %.2f timmar
372 label_time_tracking: Tidsspårning
373 label_time_tracking: Tidsspårning
373 label_change_plural: Ändringar
374 label_change_plural: Ändringar
374 label_statistics: Statistik
375 label_statistics: Statistik
375 label_commits_per_month: Commit per månad
376 label_commits_per_month: Commit per månad
376 label_commits_per_author: Commit per författare
377 label_commits_per_author: Commit per författare
377 label_view_diff: Visa skillnader
378 label_view_diff: Visa skillnader
378 label_diff_inline: inline
379 label_diff_inline: inline
379 label_diff_side_by_side: sida vid sida
380 label_diff_side_by_side: sida vid sida
380 label_options: Inställningar
381 label_options: Inställningar
381 label_copy_workflow_from: Kopiera workflow från
382 label_copy_workflow_from: Kopiera workflow från
382 label_permissions_report: Rättighetsrapport
383 label_permissions_report: Rättighetsrapport
383 label_watched_issues: Watched issues
384 label_watched_issues: Watched issues
384 label_related_issues: Related issues
385 label_related_issues: Related issues
385 label_applied_status: Applied status
386 label_applied_status: Applied status
386 label_loading: Loading...
387 label_loading: Loading...
387 label_relation_new: New relation
388 label_relation_new: New relation
388 label_relation_delete: Delete relation
389 label_relation_delete: Delete relation
389 label_relates_to: related to
390 label_relates_to: related to
390 label_duplicates: duplicates
391 label_duplicates: duplicates
391 label_blocks: blocks
392 label_blocks: blocks
392 label_blocked_by: blocked by
393 label_blocked_by: blocked by
393 label_precedes: precedes
394 label_precedes: precedes
394 label_follows: follows
395 label_follows: follows
395 label_end_to_start: end to start
396 label_end_to_start: end to start
396 label_end_to_end: end to end
397 label_end_to_end: end to end
397 label_start_to_start: start to start
398 label_start_to_start: start to start
398 label_start_to_end: start to end
399 label_start_to_end: start to end
399 label_stay_logged_in: Stay logged in
400 label_stay_logged_in: Stay logged in
400 label_disabled: disabled
401 label_disabled: disabled
401 label_show_completed_versions: Show completed versions
402 label_show_completed_versions: Show completed versions
402 label_me: me
403 label_me: me
403 label_board: Forum
404 label_board: Forum
404 label_board_new: New forum
405 label_board_new: New forum
405 label_board_plural: Forums
406 label_board_plural: Forums
406 label_topic_plural: Topics
407 label_topic_plural: Topics
407 label_message_plural: Messages
408 label_message_plural: Messages
408 label_message_last: Last message
409 label_message_last: Last message
409 label_message_new: New message
410 label_message_new: New message
410 label_reply_plural: Replies
411 label_reply_plural: Replies
411 label_send_information: Send account information to the user
412 label_send_information: Send account information to the user
412 label_year: Year
413 label_year: Year
413 label_month: Month
414 label_month: Month
414 label_week: Week
415 label_week: Week
415 label_date_from: From
416 label_date_from: From
416 label_date_to: To
417 label_date_to: To
417 label_language_based: Language based
418 label_language_based: Language based
418 label_sort_by: Sort by %s
419 label_sort_by: Sort by %s
419 label_send_test_email: Send a test email
420 label_send_test_email: Send a test email
420 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_module_plural: Modules
422 label_module_plural: Modules
422 label_added_time_by: Added by %s %s ago
423 label_added_time_by: Added by %s %s ago
423 label_updated_time: Updated %s ago
424 label_updated_time: Updated %s ago
424 label_jump_to_a_project: Jump to a project...
425 label_jump_to_a_project: Jump to a project...
425
426
426 button_login: Logga in
427 button_login: Logga in
427 button_submit: Skicka
428 button_submit: Skicka
428 button_save: Spara
429 button_save: Spara
429 button_check_all: Markera alla
430 button_check_all: Markera alla
430 button_uncheck_all: Avmarkera alla
431 button_uncheck_all: Avmarkera alla
431 button_delete: Ta bort
432 button_delete: Ta bort
432 button_create: Skapa
433 button_create: Skapa
433 button_test: Testa
434 button_test: Testa
434 button_edit: Editera
435 button_edit: Editera
435 button_add: Lägg till
436 button_add: Lägg till
436 button_change: Ändra
437 button_change: Ändra
437 button_apply: Värkställ
438 button_apply: Värkställ
438 button_clear: Rensa
439 button_clear: Rensa
439 button_lock: Lås
440 button_lock: Lås
440 button_unlock: Lås upp
441 button_unlock: Lås upp
441 button_download: Ladda ner
442 button_download: Ladda ner
442 button_list: Lista
443 button_list: Lista
443 button_view: Visa
444 button_view: Visa
444 button_move: Flytta
445 button_move: Flytta
445 button_back: Tillbaka
446 button_back: Tillbaka
446 button_cancel: Avbryt
447 button_cancel: Avbryt
447 button_activate: Aktivera
448 button_activate: Aktivera
448 button_sort: Sortera
449 button_sort: Sortera
449 button_log_time: Logga tid
450 button_log_time: Logga tid
450 button_rollback: Rulla tillbaka till denna version
451 button_rollback: Rulla tillbaka till denna version
451 button_watch: Watch
452 button_watch: Watch
452 button_unwatch: Unwatch
453 button_unwatch: Unwatch
453 button_reply: Reply
454 button_reply: Reply
454 button_archive: Archive
455 button_archive: Archive
455 button_unarchive: Unarchive
456 button_unarchive: Unarchive
456 button_reset: Reset
457 button_reset: Reset
457 button_rename: Rename
458 button_rename: Rename
458
459
459 status_active: activ
460 status_active: activ
460 status_registered: registrerad
461 status_registered: registrerad
461 status_locked: låst
462 status_locked: låst
462
463
463 text_select_mail_notifications: Väl action för vilka email ska skickas.
464 text_select_mail_notifications: Väl action för vilka email ska skickas.
464 text_regexp_info: eg. ^[A-Z0-9]+$
465 text_regexp_info: eg. ^[A-Z0-9]+$
465 text_min_max_length_info: 0 betyder ingen gräns
466 text_min_max_length_info: 0 betyder ingen gräns
466 text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data?
467 text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data?
467 text_workflow_edit: Väl en roll och en tracker för att editera workflow.
468 text_workflow_edit: Väl en roll och en tracker för att editera workflow.
468 text_are_you_sure: Är du säker?
469 text_are_you_sure: Är du säker?
469 text_journal_changed: ändrad från %s till %s
470 text_journal_changed: ändrad från %s till %s
470 text_journal_set_to: satt till %s
471 text_journal_set_to: satt till %s
471 text_journal_deleted: borttagen
472 text_journal_deleted: borttagen
472 text_tip_task_begin_day: arbetsuppgift börjar denna dag
473 text_tip_task_begin_day: arbetsuppgift börjar denna dag
473 text_tip_task_end_day: arbetsuppgift slutar denna dag
474 text_tip_task_end_day: arbetsuppgift slutar denna dag
474 text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag
475 text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag
475 text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.'
476 text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.'
476 text_caracters_maximum: %d tecken maximum.
477 text_caracters_maximum: %d tecken maximum.
477 text_length_between: Längd mellan %d och %d tecken.
478 text_length_between: Längd mellan %d och %d tecken.
478 text_tracker_no_workflow: Inget workflow definerat för denna tracker
479 text_tracker_no_workflow: Inget workflow definerat för denna tracker
479 text_unallowed_characters: Unallowed characters
480 text_unallowed_characters: Unallowed characters
480 text_comma_separated: Multiple values allowed (comma separated).
481 text_comma_separated: Multiple values allowed (comma separated).
481 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
482 text_issue_added: Brist %s har rapporterats.
483 text_issue_added: Brist %s har rapporterats.
483 text_issue_updated: Brist %s har uppdaterats.
484 text_issue_updated: Brist %s har uppdaterats.
484 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
488
489
489 default_role_manager: Förvaltare
490 default_role_manager: Förvaltare
490 default_role_developper: Utvecklare
491 default_role_developper: Utvecklare
491 default_role_reporter: Rapporterare
492 default_role_reporter: Rapporterare
492 default_tracker_bug: Bugg
493 default_tracker_bug: Bugg
493 default_tracker_feature: Finess
494 default_tracker_feature: Finess
494 default_tracker_support: Support
495 default_tracker_support: Support
495 default_issue_status_new: Ny
496 default_issue_status_new: Ny
496 default_issue_status_assigned: Tilldelad
497 default_issue_status_assigned: Tilldelad
497 default_issue_status_resolved: Löst
498 default_issue_status_resolved: Löst
498 default_issue_status_feedback: Feedback
499 default_issue_status_feedback: Feedback
499 default_issue_status_closed: Stängd
500 default_issue_status_closed: Stängd
500 default_issue_status_rejected: Avslagen
501 default_issue_status_rejected: Avslagen
501 default_doc_category_user: Användardokumentation
502 default_doc_category_user: Användardokumentation
502 default_doc_category_tech: Teknisk dokumentation
503 default_doc_category_tech: Teknisk dokumentation
503 default_priority_low: Låg
504 default_priority_low: Låg
504 default_priority_normal: Normal
505 default_priority_normal: Normal
505 default_priority_high: Hög
506 default_priority_high: Hög
506 default_priority_urgent: Bråttom
507 default_priority_urgent: Bråttom
507 default_priority_immediate: Omedelbar
508 default_priority_immediate: Omedelbar
508 default_activity_design: Design
509 default_activity_design: Design
509 default_activity_development: Utveckling
510 default_activity_development: Utveckling
510
511
511 enumeration_issue_priorities: Bristprioriteringar
512 enumeration_issue_priorities: Bristprioriteringar
512 enumeration_doc_categories: Dokumentkategorier
513 enumeration_doc_categories: Dokumentkategorier
513 enumeration_activities: Aktiviteter (tidsspårning)
514 enumeration_activities: Aktiviteter (tidsspårning)
514 field_comments: Comment
515 field_comments: Comment
515 label_file_plural: Files
516 label_file_plural: Files
516 label_changeset_plural: Changesets
517 label_changeset_plural: Changesets
517 field_column_names: Columns
518 field_column_names: Columns
518 label_default_columns: Default columns
519 label_default_columns: Default columns
519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_repositories_encodings: Repositories encodings
521 setting_repositories_encodings: Repositories encodings
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
524 label_no_change_option: (No change)
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 label_theme: Theme
526 label_theme: Theme
526 label_default: Default
527 label_default: Default
527 label_search_titles_only: Search titles only
528 label_search_titles_only: Search titles only
528 label_nobody: nobody
529 label_nobody: nobody
529 button_change_password: Change password
530 button_change_password: Change password
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
534 label_user_mail_option_none: "Only for things I watch or I'm involved in"
534 setting_emails_footer: Emails footer
535 setting_emails_footer: Emails footer
535 label_float: Float
536 label_float: Float
536 button_copy: Copy
537 button_copy: Copy
537 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
538 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
538 mail_body_account_information: Your Redmine account information
539 mail_body_account_information: Your Redmine account information
539 setting_protocol: Protocol
540 setting_protocol: Protocol
540 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
541 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
541 setting_time_format: Time format
542 setting_time_format: Time format
542 label_registration_activation_by_email: account activation by email
543 label_registration_activation_by_email: account activation by email
543 mail_subject_account_activation_request: Redmine account activation request
544 mail_subject_account_activation_request: Redmine account activation request
544 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
545 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
545 label_registration_automatic_activation: automatic account activation
546 label_registration_automatic_activation: automatic account activation
546 label_registration_manual_activation: manual account activation
547 label_registration_manual_activation: manual account activation
547 notice_account_pending: "Your account was created and is now pending administrator approval."
548 notice_account_pending: "Your account was created and is now pending administrator approval."
548 field_time_zone: Time zone
549 field_time_zone: Time zone
549 text_caracters_minimum: Must be at least %d characters long.
550 text_caracters_minimum: Must be at least %d characters long.
550 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 setting_bcc_recipients: Blind carbon copy recipients (bcc)
551 button_annotate: Annotate
552 button_annotate: Annotate
552 label_issues_by: Issues by %s
553 label_issues_by: Issues by %s
553 field_searchable: Searchable
554 field_searchable: Searchable
554 label_display_per_page: 'Per page: %s'
555 label_display_per_page: 'Per page: %s'
555 setting_per_page_options: Objects per page options
556 setting_per_page_options: Objects per page options
556 label_age: Age
557 label_age: Age
557 notice_default_data_loaded: Default configuration successfully loaded.
558 notice_default_data_loaded: Default configuration successfully loaded.
558 text_load_default_configuration: Load the default configuration
559 text_load_default_configuration: Load the default configuration
559 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
560 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
560 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
561 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
561 button_update: Update
562 button_update: Update
562 label_change_properties: Change properties
563 label_change_properties: Change properties
563 label_general: General
564 label_general: General
564 label_repository_plural: Repositories
565 label_repository_plural: Repositories
565 label_associated_revisions: Associated revisions
566 label_associated_revisions: Associated revisions
@@ -1,565 +1,566
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月
4 actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月
5 actionview_datehelper_select_month_names_abbr: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月
5 actionview_datehelper_select_month_names_abbr: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 天
8 actionview_datehelper_time_in_words_day: 1 天
9 actionview_datehelper_time_in_words_day_plural: %d 天
9 actionview_datehelper_time_in_words_day_plural: %d 天
10 actionview_datehelper_time_in_words_hour_about: 約 1 小時
10 actionview_datehelper_time_in_words_hour_about: 約 1 小時
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: 約 1 小時
12 actionview_datehelper_time_in_words_hour_about_single: 約 1 小時
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: 小於 1 分鐘
15 actionview_datehelper_time_in_words_minute_less_than: 小於 1 分鐘
16 actionview_datehelper_time_in_words_minute_plural: %d 分鐘
16 actionview_datehelper_time_in_words_minute_plural: %d 分鐘
17 actionview_datehelper_time_in_words_minute_single: 1 分鐘
17 actionview_datehelper_time_in_words_minute_single: 1 分鐘
18 actionview_datehelper_time_in_words_second_less_than: 小於 1 秒
18 actionview_datehelper_time_in_words_second_less_than: 小於 1 秒
19 actionview_datehelper_time_in_words_second_less_than_plural: 小於 %d 秒
19 actionview_datehelper_time_in_words_second_less_than_plural: 小於 %d 秒
20 actionview_instancetag_blank_option: 請選擇
20 actionview_instancetag_blank_option: 請選擇
21
21
22 activerecord_error_inclusion: 必須被包含
22 activerecord_error_inclusion: 必須被包含
23 activerecord_error_exclusion: 必須被排除
23 activerecord_error_exclusion: 必須被排除
24 activerecord_error_invalid: 不正確
24 activerecord_error_invalid: 不正確
25 activerecord_error_confirmation: 與確認欄位不相符
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: is not a number
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: 日期格式不正確
34 activerecord_error_not_a_date: 日期格式不正確
35 activerecord_error_greater_than_start_date: 必須在起始日期之後
35 activerecord_error_greater_than_start_date: 必須在起始日期之後
36 activerecord_error_not_same_project: 不屬於同一個專案
36 activerecord_error_not_same_project: 不屬於同一個專案
37 activerecord_error_circular_dependency: 這個關聯會導致環狀相依
37 activerecord_error_circular_dependency: 這個關聯會導致環狀相依
38
38
39 general_fmt_age: %d 年
39 general_fmt_age: %d 年
40 general_fmt_age_plural: %d 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: 'Traditional Chinese (繁體中文)'
49 general_lang_name: 'Traditional Chinese (繁體中文)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: Big5
51 general_csv_encoding: Big5
52 general_pdf_encoding: Big5
52 general_pdf_encoding: Big5
53 general_day_names: 星期一,星期二,星期三,星期四,星期五,星期六,星期日
53 general_day_names: 星期一,星期二,星期三,星期四,星期五,星期六,星期日
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: 帳戶更新資訊已儲存
56 notice_account_updated: 帳戶更新資訊已儲存
57 notice_account_invalid_creditentials: 帳戶或密碼不正確
57 notice_account_invalid_creditentials: 帳戶或密碼不正確
58 notice_account_password_updated: 帳戶新密碼已儲存
58 notice_account_password_updated: 帳戶新密碼已儲存
59 notice_account_wrong_password: 密碼不正確
59 notice_account_wrong_password: 密碼不正確
60 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
60 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
61 notice_account_unknown_email: Unknown user.
61 notice_account_unknown_email: Unknown user.
62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
63 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
64 notice_account_activated: Your account has been activated. You can now log in.
64 notice_account_activated: Your account has been activated. You can now log in.
65 notice_successful_create: 建立成功
65 notice_successful_create: 建立成功
66 notice_successful_update: 更新成功
66 notice_successful_update: 更新成功
67 notice_successful_delete: 刪除成功
67 notice_successful_delete: 刪除成功
68 notice_successful_connection: Successful connection.
68 notice_successful_connection: Successful connection.
69 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
69 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
70 notice_locking_conflict: Data have been updated by another user.
70 notice_locking_conflict: Data have been updated by another user.
71 notice_scm_error: SCM 儲存庫中找不到這個專案或版本。
71 notice_scm_error: SCM 儲存庫中找不到這個專案或版本。
72 notice_not_authorized: 你未被授權存取此頁面。
72 notice_not_authorized: 你未被授權存取此頁面。
73 notice_email_sent: 郵件已經成功寄送至以下收件者: %s
73 notice_email_sent: 郵件已經成功寄送至以下收件者: %s
74 notice_email_error: 寄送郵件的過程中發生錯誤 (%s)
74 notice_email_error: 寄送郵件的過程中發生錯誤 (%s)
75 notice_feeds_access_key_reseted: 您的 RSS 存取鍵已被重新設定。
75 notice_feeds_access_key_reseted: 您的 RSS 存取鍵已被重新設定。
76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
77 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
77 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
78 notice_account_pending: "您的帳號已經建立,正在等待管理員的審核。"
78 notice_account_pending: "您的帳號已經建立,正在等待管理員的審核。"
79 notice_default_data_loaded: Default configuration successfully loaded.
79 notice_default_data_loaded: Default configuration successfully loaded.
80
80
81 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
81 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
82
82
83 mail_subject_lost_password: 您的 Redmine 網站密碼
83 mail_subject_lost_password: 您的 Redmine 網站密碼
84 mail_body_lost_password: '欲變更您的 Redmine 網站密碼, 請點選以下鏈結:'
84 mail_body_lost_password: '欲變更您的 Redmine 網站密碼, 請點選以下鏈結:'
85 mail_subject_register: 啟用您的 Redmine 帳號
85 mail_subject_register: 啟用您的 Redmine 帳號
86 mail_body_register: '欲啟用您的 Redmine 帳號, 請點選以下鏈結:'
86 mail_body_register: '欲啟用您的 Redmine 帳號, 請點選以下鏈結:'
87 mail_body_account_information_external: 您可以使用 "%s" 帳號登入 Redmine 網站。
87 mail_body_account_information_external: 您可以使用 "%s" 帳號登入 Redmine 網站。
88 mail_body_account_information: 您的 Redmine 帳號資訊
88 mail_body_account_information: 您的 Redmine 帳號資訊
89 mail_subject_account_activation_request: Redmine 帳號啟用需求通知
89 mail_subject_account_activation_request: Redmine 帳號啟用需求通知
90 mail_body_account_activation_request: '有位新用戶 (%s) 已經完成註冊,正等候您的審核:'
90 mail_body_account_activation_request: '有位新用戶 (%s) 已經完成註冊,正等候您的審核:'
91
91
92 gui_validation_error: 1 個錯誤
92 gui_validation_error: 1 個錯誤
93 gui_validation_error_plural: %d 個錯誤
93 gui_validation_error_plural: %d 個錯誤
94
94
95 field_name: 名稱
95 field_name: 名稱
96 field_description: 概述
96 field_description: 概述
97 field_summary: 摘要
97 field_summary: 摘要
98 field_is_required: 必填
98 field_is_required: 必填
99 field_firstname: 名字
99 field_firstname: 名字
100 field_lastname: 姓氏
100 field_lastname: 姓氏
101 field_mail: 電子郵件
101 field_mail: 電子郵件
102 field_filename: 檔案名稱
102 field_filename: 檔案名稱
103 field_filesize: 大小
103 field_filesize: 大小
104 field_downloads: 下載次數
104 field_downloads: 下載次數
105 field_author: 作者
105 field_author: 作者
106 field_created_on: 建立日期
106 field_created_on: 建立日期
107 field_updated_on: 更新
107 field_updated_on: 更新
108 field_field_format: 格式
108 field_field_format: 格式
109 field_is_for_all: 給所有專案
109 field_is_for_all: 給所有專案
110 field_possible_values: Possible values
110 field_possible_values: Possible values
111 field_regexp: 正規表示式
111 field_regexp: 正規表示式
112 field_min_length: 最小長度
112 field_min_length: 最小長度
113 field_max_length: 最大長度
113 field_max_length: 最大長度
114 field_value:
114 field_value:
115 field_category: 分類
115 field_category: 分類
116 field_title: 標題
116 field_title: 標題
117 field_project: 專案
117 field_project: 專案
118 field_issue: 項目
118 field_issue: 項目
119 field_status: 狀態
119 field_status: 狀態
120 field_notes: 筆記
120 field_notes: 筆記
121 field_is_closed: 項目結束
121 field_is_closed: 項目結束
122 field_is_default: 預設值
122 field_is_default: 預設值
123 field_tracker: 追蹤標籤
123 field_tracker: 追蹤標籤
124 field_subject: 主旨
124 field_subject: 主旨
125 field_due_date: 完成日期
125 field_due_date: 完成日期
126 field_assigned_to: 分派給
126 field_assigned_to: 分派給
127 field_priority: 重要性
127 field_priority: 重要性
128 field_fixed_version: 版本
128 field_fixed_version: 版本
129 field_user: 用戶
129 field_user: 用戶
130 field_role: 角色
130 field_role: 角色
131 field_homepage: 網站首頁
131 field_homepage: 網站首頁
132 field_is_public: 公開
132 field_is_public: 公開
133 field_parent: 父專案
133 field_parent: 父專案
134 field_is_in_chlog: Issues displayed in changelog
134 field_is_in_chlog: Issues displayed in changelog
135 field_is_in_roadmap: Issues displayed in roadmap
135 field_is_in_roadmap: Issues displayed in roadmap
136 field_login: 帳戶名稱
136 field_login: 帳戶名稱
137 field_mail_notification: 電子郵件提醒選項
137 field_mail_notification: 電子郵件提醒選項
138 field_admin: 管理者
138 field_admin: 管理者
139 field_last_login_on: 最近連線日期
139 field_last_login_on: 最近連線日期
140 field_language: 語系
140 field_language: 語系
141 field_effective_date: 日期
141 field_effective_date: 日期
142 field_password: 目前密碼
142 field_password: 目前密碼
143 field_new_password: 新密碼
143 field_new_password: 新密碼
144 field_password_confirmation: 確認新密碼
144 field_password_confirmation: 確認新密碼
145 field_version: 版本
145 field_version: 版本
146 field_type: Type
146 field_type: Type
147 field_host: Host
147 field_host: Host
148 field_port: 連接埠
148 field_port: 連接埠
149 field_account: 帳戶
149 field_account: 帳戶
150 field_base_dn: Base DN
150 field_base_dn: Base DN
151 field_attr_login: 登入屬性
151 field_attr_login: 登入屬性
152 field_attr_firstname: 名字屬性
152 field_attr_firstname: 名字屬性
153 field_attr_lastname: Lastname attribute
153 field_attr_lastname: Lastname attribute
154 field_attr_mail: Email attribute
154 field_attr_mail: Email attribute
155 field_onthefly: On-the-fly user creation
155 field_onthefly: On-the-fly user creation
156 field_start_date: 開始日期
156 field_start_date: 開始日期
157 field_done_ratio: 完成百分比
157 field_done_ratio: 完成百分比
158 field_auth_source: 認證模式
158 field_auth_source: 認證模式
159 field_hide_mail: 隱藏我的電子郵件
159 field_hide_mail: 隱藏我的電子郵件
160 field_comments: 註解
160 field_comments: 註解
161 field_url: URL
161 field_url: URL
162 field_start_page: 首頁
162 field_start_page: 首頁
163 field_subproject: 子專案
163 field_subproject: 子專案
164 field_hours: 小時
164 field_hours: 小時
165 field_activity: 活動
165 field_activity: 活動
166 field_spent_on: 日期
166 field_spent_on: 日期
167 field_identifier: 代碼
167 field_identifier: 代碼
168 field_is_filter: Used as a filter
168 field_is_filter: Used as a filter
169 field_issue_to_id: Related issue
169 field_issue_to_id: Related issue
170 field_delay: 逾期
170 field_delay: 逾期
171 field_assignable: 項目可被分派至此角色
171 field_assignable: 項目可被分派至此角色
172 field_redirect_existing_links: Redirect existing links
172 field_redirect_existing_links: Redirect existing links
173 field_estimated_hours: 預估工時
173 field_estimated_hours: 預估工時
174 field_column_names: Columns
174 field_column_names: Columns
175 field_time_zone: 時區
175 field_time_zone: 時區
176 field_searchable: 可用做搜尋條件
176 field_searchable: 可用做搜尋條件
177 field_default_value: Default value
177
178
178 setting_app_title: 標題
179 setting_app_title: 標題
179 setting_app_subtitle: 副標題
180 setting_app_subtitle: 副標題
180 setting_welcome_text: 歡迎詞
181 setting_welcome_text: 歡迎詞
181 setting_default_language: 預設語系
182 setting_default_language: 預設語系
182 setting_login_required: 需要驗證
183 setting_login_required: 需要驗證
183 setting_self_registration: 註冊選項
184 setting_self_registration: 註冊選項
184 setting_attachment_max_size: 附件大小限制
185 setting_attachment_max_size: 附件大小限制
185 setting_issues_export_limit: 項目匯出限制
186 setting_issues_export_limit: 項目匯出限制
186 setting_mail_from: 寄件者電子郵件
187 setting_mail_from: 寄件者電子郵件
187 setting_bcc_recipients: 使用密件副本 (BCC)
188 setting_bcc_recipients: 使用密件副本 (BCC)
188 setting_host_name: 主機名稱
189 setting_host_name: 主機名稱
189 setting_text_formatting: 文字格式
190 setting_text_formatting: 文字格式
190 setting_wiki_compression: 壓縮 Wiki 歷史文章
191 setting_wiki_compression: 壓縮 Wiki 歷史文章
191 setting_feeds_limit: Feed content limit
192 setting_feeds_limit: Feed content limit
192 setting_autofetch_changesets: Autofetch commits
193 setting_autofetch_changesets: Autofetch commits
193 setting_sys_api_enabled: Enable WS for repository management
194 setting_sys_api_enabled: Enable WS for repository management
194 setting_commit_ref_keywords: Referencing keywords
195 setting_commit_ref_keywords: Referencing keywords
195 setting_commit_fix_keywords: Fixing keywords
196 setting_commit_fix_keywords: Fixing keywords
196 setting_autologin: 自動登入
197 setting_autologin: 自動登入
197 setting_date_format: 日期格式
198 setting_date_format: 日期格式
198 setting_time_format: 時間格式
199 setting_time_format: 時間格式
199 setting_cross_project_issue_relations: 允許關聯至其它專案的項目
200 setting_cross_project_issue_relations: 允許關聯至其它專案的項目
200 setting_issue_list_default_columns: 預設顯示於項目清單的欄位
201 setting_issue_list_default_columns: 預設顯示於項目清單的欄位
201 setting_repositories_encodings: Repositories encodings
202 setting_repositories_encodings: Repositories encodings
202 setting_emails_footer: 電子郵件附帶說明
203 setting_emails_footer: 電子郵件附帶說明
203 setting_protocol: 協定
204 setting_protocol: 協定
204 setting_per_page_options: 每頁顯示個數選項
205 setting_per_page_options: 每頁顯示個數選項
205
206
206 label_user: 用戶
207 label_user: 用戶
207 label_user_plural: 用戶清單
208 label_user_plural: 用戶清單
208 label_user_new: 建立新的帳戶
209 label_user_new: 建立新的帳戶
209 label_project: 專案
210 label_project: 專案
210 label_project_new: 建立新的專案
211 label_project_new: 建立新的專案
211 label_project_plural: 專案清單
212 label_project_plural: 專案清單
212 label_project_all: 全部的專案
213 label_project_all: 全部的專案
213 label_project_latest: 最近的專案
214 label_project_latest: 最近的專案
214 label_issue: 項目
215 label_issue: 項目
215 label_issue_new: 建立新的項目
216 label_issue_new: 建立新的項目
216 label_issue_plural: 項目清單
217 label_issue_plural: 項目清單
217 label_issue_view_all: 檢視所有項目
218 label_issue_view_all: 檢視所有項目
218 label_issues_by: 項目按 %s 分組顯示
219 label_issues_by: 項目按 %s 分組顯示
219 label_document: 文件
220 label_document: 文件
220 label_document_new: 建立新的文件
221 label_document_new: 建立新的文件
221 label_document_plural: 文件
222 label_document_plural: 文件
222 label_role: 角色
223 label_role: 角色
223 label_role_plural: 角色
224 label_role_plural: 角色
224 label_role_new: 建立新角色
225 label_role_new: 建立新角色
225 label_role_and_permissions: 角色與權限
226 label_role_and_permissions: 角色與權限
226 label_member: 成員
227 label_member: 成員
227 label_member_new: 建立新的成員
228 label_member_new: 建立新的成員
228 label_member_plural: 成員
229 label_member_plural: 成員
229 label_tracker: 追蹤標籤
230 label_tracker: 追蹤標籤
230 label_tracker_plural: 追蹤標籤清單
231 label_tracker_plural: 追蹤標籤清單
231 label_tracker_new: 建立新的追蹤標籤
232 label_tracker_new: 建立新的追蹤標籤
232 label_workflow: 流程
233 label_workflow: 流程
233 label_issue_status: 項目狀態
234 label_issue_status: 項目狀態
234 label_issue_status_plural: 項目狀態清單
235 label_issue_status_plural: 項目狀態清單
235 label_issue_status_new: 建立新的狀態
236 label_issue_status_new: 建立新的狀態
236 label_issue_category: 項目分類
237 label_issue_category: 項目分類
237 label_issue_category_plural: 項目分類清單
238 label_issue_category_plural: 項目分類清單
238 label_issue_category_new: 建立新的分類
239 label_issue_category_new: 建立新的分類
239 label_custom_field: 自訂欄位
240 label_custom_field: 自訂欄位
240 label_custom_field_plural: 自訂欄位清單
241 label_custom_field_plural: 自訂欄位清單
241 label_custom_field_new: 建立新的自訂欄位
242 label_custom_field_new: 建立新的自訂欄位
242 label_enumerations: 列舉值清單
243 label_enumerations: 列舉值清單
243 label_enumeration_new: 建立新的列舉值
244 label_enumeration_new: 建立新的列舉值
244 label_information: 資訊
245 label_information: 資訊
245 label_information_plural: 資訊
246 label_information_plural: 資訊
246 label_please_login: 請先登入
247 label_please_login: 請先登入
247 label_register: 註冊
248 label_register: 註冊
248 label_password_lost: 遺失密碼
249 label_password_lost: 遺失密碼
249 label_home: 網站首頁
250 label_home: 網站首頁
250 label_my_page: 帳戶首頁
251 label_my_page: 帳戶首頁
251 label_my_account: 我的帳戶
252 label_my_account: 我的帳戶
252 label_my_projects: 我的專案
253 label_my_projects: 我的專案
253 label_administration: 網站管理
254 label_administration: 網站管理
254 label_login: 登入
255 label_login: 登入
255 label_logout: 登出
256 label_logout: 登出
256 label_help: 說明
257 label_help: 說明
257 label_reported_issues: 我通報的項目
258 label_reported_issues: 我通報的項目
258 label_assigned_to_me_issues: 分派給我的項目
259 label_assigned_to_me_issues: 分派給我的項目
259 label_last_login: 最近一次連線
260 label_last_login: 最近一次連線
260 label_last_updates: 最近更新
261 label_last_updates: 最近更新
261 label_last_updates_plural: %d 個最近更新
262 label_last_updates_plural: %d 個最近更新
262 label_registered_on: 註冊於
263 label_registered_on: 註冊於
263 label_activity: 活動
264 label_activity: 活動
264 label_new: 建立新的...
265 label_new: 建立新的...
265 label_logged_as: 目前登入
266 label_logged_as: 目前登入
266 label_environment: 環境
267 label_environment: 環境
267 label_authentication: 認證
268 label_authentication: 認證
268 label_auth_source: 認證模式
269 label_auth_source: 認證模式
269 label_auth_source_new: 建立新認證模式
270 label_auth_source_new: 建立新認證模式
270 label_auth_source_plural: 認證模式清單
271 label_auth_source_plural: 認證模式清單
271 label_subproject_plural: 子專案
272 label_subproject_plural: 子專案
272 label_min_max_length: 最小 - 最大 長度
273 label_min_max_length: 最小 - 最大 長度
273 label_list: 清單
274 label_list: 清單
274 label_date: 日期
275 label_date: 日期
275 label_integer: 整數
276 label_integer: 整數
276 label_float: 福點數
277 label_float: 福點數
277 label_boolean: 布林
278 label_boolean: 布林
278 label_string: 文字
279 label_string: 文字
279 label_text: 長文字
280 label_text: 長文字
280 label_attribute: 屬性
281 label_attribute: 屬性
281 label_attribute_plural: 屬性
282 label_attribute_plural: 屬性
282 label_download: %d 個下載
283 label_download: %d 個下載
283 label_download_plural: %d 個下載
284 label_download_plural: %d 個下載
284 label_no_data: 沒有任何資料可供顯示
285 label_no_data: 沒有任何資料可供顯示
285 label_change_status: 變更狀態
286 label_change_status: 變更狀態
286 label_history: 歷史
287 label_history: 歷史
287 label_attachment: 檔案
288 label_attachment: 檔案
288 label_attachment_new: 建立新的檔案
289 label_attachment_new: 建立新的檔案
289 label_attachment_delete: 刪除檔案
290 label_attachment_delete: 刪除檔案
290 label_attachment_plural: 檔案
291 label_attachment_plural: 檔案
291 label_report: 報告
292 label_report: 報告
292 label_report_plural: 報告
293 label_report_plural: 報告
293 label_news: 新聞
294 label_news: 新聞
294 label_news_new: 建立新的新聞
295 label_news_new: 建立新的新聞
295 label_news_plural: 新聞
296 label_news_plural: 新聞
296 label_news_latest: 最近新聞
297 label_news_latest: 最近新聞
297 label_news_view_all: 檢視所有新聞
298 label_news_view_all: 檢視所有新聞
298 label_change_log: 變更記錄
299 label_change_log: 變更記錄
299 label_settings: 設定
300 label_settings: 設定
300 label_overview: 概觀
301 label_overview: 概觀
301 label_version: 版本
302 label_version: 版本
302 label_version_new: 建立新的版本
303 label_version_new: 建立新的版本
303 label_version_plural: 版本
304 label_version_plural: 版本
304 label_confirmation: 確認
305 label_confirmation: 確認
305 label_export_to: 匯出至
306 label_export_to: 匯出至
306 label_read: Read...
307 label_read: Read...
307 label_public_projects: 公開專案
308 label_public_projects: 公開專案
308 label_open_issues: 進行中
309 label_open_issues: 進行中
309 label_open_issues_plural: 進行中
310 label_open_issues_plural: 進行中
310 label_closed_issues: 已結束
311 label_closed_issues: 已結束
311 label_closed_issues_plural: 已結束
312 label_closed_issues_plural: 已結束
312 label_total: 總計
313 label_total: 總計
313 label_permissions: 權限
314 label_permissions: 權限
314 label_current_status: 目前狀態
315 label_current_status: 目前狀態
315 label_new_statuses_allowed: New statuses allowed
316 label_new_statuses_allowed: New statuses allowed
316 label_all: 全部
317 label_all: 全部
317 label_none: 空值
318 label_none: 空值
318 label_nobody: nobody
319 label_nobody: nobody
319 label_next: 下一頁
320 label_next: 下一頁
320 label_previous: 上一頁
321 label_previous: 上一頁
321 label_used_by: Used by
322 label_used_by: Used by
322 label_details: 明細
323 label_details: 明細
323 label_add_note: 加入一個新筆記
324 label_add_note: 加入一個新筆記
324 label_per_page: 每頁
325 label_per_page: 每頁
325 label_calendar: 日曆
326 label_calendar: 日曆
326 label_months_from: 個月, 開始月份
327 label_months_from: 個月, 開始月份
327 label_gantt: 甘特圖
328 label_gantt: 甘特圖
328 label_internal: Internal
329 label_internal: Internal
329 label_last_changes: 最近 %d 個變更
330 label_last_changes: 最近 %d 個變更
330 label_change_view_all: 檢視所有變更
331 label_change_view_all: 檢視所有變更
331 label_personalize_page: 自訂版面
332 label_personalize_page: 自訂版面
332 label_comment: 註解
333 label_comment: 註解
333 label_comment_plural: 註解
334 label_comment_plural: 註解
334 label_comment_add: 加入新註解
335 label_comment_add: 加入新註解
335 label_comment_added: 新註解已加入
336 label_comment_added: 新註解已加入
336 label_comment_delete: 刪除註解
337 label_comment_delete: 刪除註解
337 label_query: 自訂查詢
338 label_query: 自訂查詢
338 label_query_plural: 自訂查詢
339 label_query_plural: 自訂查詢
339 label_query_new: 建立新的查詢
340 label_query_new: 建立新的查詢
340 label_filter_add: 加入新篩選條件
341 label_filter_add: 加入新篩選條件
341 label_filter_plural: 篩選條件
342 label_filter_plural: 篩選條件
342 label_equals: 等於
343 label_equals: 等於
343 label_not_equals: 不等於
344 label_not_equals: 不等於
344 label_in_less_than: 在小於
345 label_in_less_than: 在小於
345 label_in_more_than: 在大於
346 label_in_more_than: 在大於
346 label_in:
347 label_in:
347 label_today: 今天
348 label_today: 今天
348 label_this_week: 本週
349 label_this_week: 本週
349 label_less_than_ago: 小於幾天之前
350 label_less_than_ago: 小於幾天之前
350 label_more_than_ago: 大於幾天之前
351 label_more_than_ago: 大於幾天之前
351 label_ago: 天以前
352 label_ago: 天以前
352 label_contains: 包含
353 label_contains: 包含
353 label_not_contains: 不包含
354 label_not_contains: 不包含
354 label_day_plural:
355 label_day_plural:
355 label_repository: 版本控管
356 label_repository: 版本控管
356 label_repository_plural: 版本控管
357 label_repository_plural: 版本控管
357 label_browse: 瀏覽
358 label_browse: 瀏覽
358 label_modification: %d 變更
359 label_modification: %d 變更
359 label_modification_plural: %d 變更
360 label_modification_plural: %d 變更
360 label_revision: 版次
361 label_revision: 版次
361 label_revision_plural: 版次清單
362 label_revision_plural: 版次清單
362 label_added: 已新增
363 label_added: 已新增
363 label_modified: 已修改
364 label_modified: 已修改
364 label_deleted: 已刪除
365 label_deleted: 已刪除
365 label_latest_revision: 最新版次
366 label_latest_revision: 最新版次
366 label_latest_revision_plural: 最近版次清單
367 label_latest_revision_plural: 最近版次清單
367 label_view_revisions: 檢視版次清單
368 label_view_revisions: 檢視版次清單
368 label_max_size: 最大長度
369 label_max_size: 最大長度
369 label_on: 總共
370 label_on: 總共
370 label_sort_highest: 移動至開頭
371 label_sort_highest: 移動至開頭
371 label_sort_higher: 往上移動
372 label_sort_higher: 往上移動
372 label_sort_lower: 往下移動
373 label_sort_lower: 往下移動
373 label_sort_lowest: 移動至結尾
374 label_sort_lowest: 移動至結尾
374 label_roadmap: 版本藍圖
375 label_roadmap: 版本藍圖
375 label_roadmap_due_in: 倒數天數:
376 label_roadmap_due_in: 倒數天數:
376 label_roadmap_overdue: %s 逾期
377 label_roadmap_overdue: %s 逾期
377 label_roadmap_no_issues: 此版本尚未包含任何項目
378 label_roadmap_no_issues: 此版本尚未包含任何項目
378 label_search: 搜尋
379 label_search: 搜尋
379 label_result_plural: 結果
380 label_result_plural: 結果
380 label_all_words: All words
381 label_all_words: All words
381 label_wiki: Wiki
382 label_wiki: Wiki
382 label_wiki_edit: Wiki 編輯
383 label_wiki_edit: Wiki 編輯
383 label_wiki_edit_plural: Wiki 編輯
384 label_wiki_edit_plural: Wiki 編輯
384 label_wiki_page: Wiki 網頁
385 label_wiki_page: Wiki 網頁
385 label_wiki_page_plural: Wiki 網頁
386 label_wiki_page_plural: Wiki 網頁
386 label_index_by_title: 依標題索引
387 label_index_by_title: 依標題索引
387 label_index_by_date: 依日期索引
388 label_index_by_date: 依日期索引
388 label_current_version: 現行版本
389 label_current_version: 現行版本
389 label_preview: 預覽
390 label_preview: 預覽
390 label_feed_plural: Feeds
391 label_feed_plural: Feeds
391 label_changes_details: 所有變更的明細
392 label_changes_details: 所有變更的明細
392 label_issue_tracking: 項目追蹤
393 label_issue_tracking: 項目追蹤
393 label_spent_time: 耗用時間
394 label_spent_time: 耗用時間
394 label_f_hour: %.2f 小時
395 label_f_hour: %.2f 小時
395 label_f_hour_plural: %.2f 小時
396 label_f_hour_plural: %.2f 小時
396 label_time_tracking: Time tracking
397 label_time_tracking: Time tracking
397 label_change_plural: 變更
398 label_change_plural: 變更
398 label_statistics: Statistics
399 label_statistics: Statistics
399 label_commits_per_month: Commits per month
400 label_commits_per_month: Commits per month
400 label_commits_per_author: Commits per author
401 label_commits_per_author: Commits per author
401 label_view_diff: View differences
402 label_view_diff: View differences
402 label_diff_inline: inline
403 label_diff_inline: inline
403 label_diff_side_by_side: side by side
404 label_diff_side_by_side: side by side
404 label_options: 選項清單
405 label_options: 選項清單
405 label_copy_workflow_from: Copy workflow from
406 label_copy_workflow_from: Copy workflow from
406 label_permissions_report: 權限報表
407 label_permissions_report: 權限報表
407 label_watched_issues: 觀察中的項目清單
408 label_watched_issues: 觀察中的項目清單
408 label_related_issues: 相關的項目清單
409 label_related_issues: 相關的項目清單
409 label_applied_status: 已套用狀態
410 label_applied_status: 已套用狀態
410 label_loading: 載入中...
411 label_loading: 載入中...
411 label_relation_new: 建立新關聯
412 label_relation_new: 建立新關聯
412 label_relation_delete: 刪除關聯
413 label_relation_delete: 刪除關聯
413 label_relates_to: 關聯至
414 label_relates_to: 關聯至
414 label_duplicates: 已重複
415 label_duplicates: 已重複
415 label_blocks: 阻擋
416 label_blocks: 阻擋
416 label_blocked_by: 被阻擋
417 label_blocked_by: 被阻擋
417 label_precedes: 優先於
418 label_precedes: 優先於
418 label_follows: 跟隨於
419 label_follows: 跟隨於
419 label_end_to_start: end to start
420 label_end_to_start: end to start
420 label_end_to_end: end to end
421 label_end_to_end: end to end
421 label_start_to_start: start to start
422 label_start_to_start: start to start
422 label_start_to_end: start to end
423 label_start_to_end: start to end
423 label_stay_logged_in: Stay logged in
424 label_stay_logged_in: Stay logged in
424 label_disabled: 關閉
425 label_disabled: 關閉
425 label_show_completed_versions: 顯示已完成的版本
426 label_show_completed_versions: 顯示已完成的版本
426 label_me: 我自己
427 label_me: 我自己
427 label_board: 論壇
428 label_board: 論壇
428 label_board_new: 建立新論壇
429 label_board_new: 建立新論壇
429 label_board_plural: 論壇
430 label_board_plural: 論壇
430 label_topic_plural: 討論主題
431 label_topic_plural: 討論主題
431 label_message_plural: 訊息
432 label_message_plural: 訊息
432 label_message_last: 上一封訊息
433 label_message_last: 上一封訊息
433 label_message_new: 建立新的訊息
434 label_message_new: 建立新的訊息
434 label_reply_plural: 回應
435 label_reply_plural: 回應
435 label_send_information: 寄送帳戶資訊電子郵件給用戶
436 label_send_information: 寄送帳戶資訊電子郵件給用戶
436 label_year:
437 label_year:
437 label_month:
438 label_month:
438 label_week:
439 label_week:
439 label_date_from: 開始
440 label_date_from: 開始
440 label_date_to: 結束
441 label_date_to: 結束
441 label_language_based: 依用戶之語系決定
442 label_language_based: 依用戶之語系決定
442 label_sort_by: 按 %s 排序
443 label_sort_by: 按 %s 排序
443 label_send_test_email: 寄送測試郵件
444 label_send_test_email: 寄送測試郵件
444 label_feeds_access_key_created_on: RSS 存取鍵建立於 %s 之前
445 label_feeds_access_key_created_on: RSS 存取鍵建立於 %s 之前
445 label_module_plural: 模組
446 label_module_plural: 模組
446 label_added_time_by: 是由 %s 於 %s 前加入
447 label_added_time_by: 是由 %s 於 %s 前加入
447 label_updated_time: 於 %s 前更新
448 label_updated_time: 於 %s 前更新
448 label_jump_to_a_project: 選擇欲前往的專案...
449 label_jump_to_a_project: 選擇欲前往的專案...
449 label_file_plural: 檔案清單
450 label_file_plural: 檔案清單
450 label_changeset_plural: 變更集清單
451 label_changeset_plural: 變更集清單
451 label_default_columns: 預設欄位清單
452 label_default_columns: 預設欄位清單
452 label_no_change_option: (維持不變)
453 label_no_change_option: (維持不變)
453 label_bulk_edit_selected_issues: 編輯選定的項目
454 label_bulk_edit_selected_issues: 編輯選定的項目
454 label_theme: 畫面主題
455 label_theme: 畫面主題
455 label_default: 預設
456 label_default: 預設
456 label_search_titles_only: 僅搜尋標題
457 label_search_titles_only: 僅搜尋標題
457 label_user_mail_option_all: "提醒與我的專案有關的所有事件"
458 label_user_mail_option_all: "提醒與我的專案有關的所有事件"
458 label_user_mail_option_selected: "只停醒我所選擇專案中的事件..."
459 label_user_mail_option_selected: "只停醒我所選擇專案中的事件..."
459 label_user_mail_option_none: "只提醒我觀察中或參與中的事件"
460 label_user_mail_option_none: "只提醒我觀察中或參與中的事件"
460 label_user_mail_no_self_notified: "不提醒我自己所做的變更"
461 label_user_mail_no_self_notified: "不提醒我自己所做的變更"
461 label_registration_activation_by_email: 透過電子郵件啟用帳戶
462 label_registration_activation_by_email: 透過電子郵件啟用帳戶
462 label_registration_manual_activation: 手動啟用帳戶
463 label_registration_manual_activation: 手動啟用帳戶
463 label_registration_automatic_activation: 自動啟用帳戶
464 label_registration_automatic_activation: 自動啟用帳戶
464 label_display_per_page: '每頁顯示: %s 個'
465 label_display_per_page: '每頁顯示: %s 個'
465 label_age: Age
466 label_age: Age
466 label_change_properties: Change properties
467 label_change_properties: Change properties
467 label_general: 一般
468 label_general: 一般
468
469
469 button_login: 登入
470 button_login: 登入
470 button_submit: 送出
471 button_submit: 送出
471 button_save: 儲存
472 button_save: 儲存
472 button_check_all: 全選
473 button_check_all: 全選
473 button_uncheck_all: 全不選
474 button_uncheck_all: 全不選
474 button_delete: 刪除
475 button_delete: 刪除
475 button_create: 建立
476 button_create: 建立
476 button_test: 測試
477 button_test: 測試
477 button_edit: 編輯
478 button_edit: 編輯
478 button_add: 新增
479 button_add: 新增
479 button_change: 修改
480 button_change: 修改
480 button_apply: 套用
481 button_apply: 套用
481 button_clear: 清除
482 button_clear: 清除
482 button_lock: 鎖定
483 button_lock: 鎖定
483 button_unlock: 解除鎖定
484 button_unlock: 解除鎖定
484 button_download: 下載
485 button_download: 下載
485 button_list: List
486 button_list: List
486 button_view: 檢視
487 button_view: 檢視
487 button_move: 移動
488 button_move: 移動
488 button_back: Back
489 button_back: Back
489 button_cancel: 取消
490 button_cancel: 取消
490 button_activate: 啟用
491 button_activate: 啟用
491 button_sort: 排序
492 button_sort: 排序
492 button_log_time: 記錄時間
493 button_log_time: 記錄時間
493 button_rollback: 還原至此版本
494 button_rollback: 還原至此版本
494 button_watch: 觀察
495 button_watch: 觀察
495 button_unwatch: 取消觀察
496 button_unwatch: 取消觀察
496 button_reply: 回應
497 button_reply: 回應
497 button_archive: 歸檔
498 button_archive: 歸檔
498 button_unarchive: 取消歸檔
499 button_unarchive: 取消歸檔
499 button_reset: 回復
500 button_reset: 回復
500 button_rename: 重新命名
501 button_rename: 重新命名
501 button_change_password: 變更密碼
502 button_change_password: 變更密碼
502 button_copy: 複製
503 button_copy: 複製
503 button_annotate: 加注
504 button_annotate: 加注
504 button_update: 更新
505 button_update: 更新
505
506
506 status_active: 活動中
507 status_active: 活動中
507 status_registered: 註冊完成
508 status_registered: 註冊完成
508 status_locked: 鎖定中
509 status_locked: 鎖定中
509
510
510 text_select_mail_notifications: 選擇欲寄送提醒通知郵件之動作
511 text_select_mail_notifications: 選擇欲寄送提醒通知郵件之動作
511 text_regexp_info: eg. ^[A-Z0-9]+$
512 text_regexp_info: eg. ^[A-Z0-9]+$
512 text_min_max_length_info: 0 means no restriction
513 text_min_max_length_info: 0 means no restriction
513 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
514 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
514 text_workflow_edit: Select a role and a tracker to edit the workflow
515 text_workflow_edit: Select a role and a tracker to edit the workflow
515 text_are_you_sure: 確定執行?
516 text_are_you_sure: 確定執行?
516 text_journal_changed: 從 %s 變更為 %s
517 text_journal_changed: 從 %s 變更為 %s
517 text_journal_set_to: 設定為 %s
518 text_journal_set_to: 設定為 %s
518 text_journal_deleted: deleted
519 text_journal_deleted: deleted
519 text_tip_task_begin_day: task beginning this day
520 text_tip_task_begin_day: task beginning this day
520 text_tip_task_end_day: task ending this day
521 text_tip_task_end_day: task ending this day
521 text_tip_task_begin_end_day: task beginning and ending this day
522 text_tip_task_begin_end_day: task beginning and ending this day
522 text_project_identifier_info: '只允許小寫英文字母(a-z)、阿拉伯數字與連字符號(-)。<br />儲存後,代碼不可再被更改。'
523 text_project_identifier_info: '只允許小寫英文字母(a-z)、阿拉伯數字與連字符號(-)。<br />儲存後,代碼不可再被更改。'
523 text_caracters_maximum: 最多 %d 個字元.
524 text_caracters_maximum: 最多 %d 個字元.
524 text_caracters_minimum: 長度必須大於 %d 個字元.
525 text_caracters_minimum: 長度必須大於 %d 個字元.
525 text_length_between: 長度必須介於 %d 至 %d 個字元之間.
526 text_length_between: 長度必須介於 %d 至 %d 個字元之間.
526 text_tracker_no_workflow: No workflow defined for this tracker
527 text_tracker_no_workflow: No workflow defined for this tracker
527 text_unallowed_characters: Unallowed characters
528 text_unallowed_characters: Unallowed characters
528 text_comma_separated: 可輸入多個值 (以逗號分隔).
529 text_comma_separated: 可輸入多個值 (以逗號分隔).
529 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
530 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
530 text_issue_added: 已通報 %s 個項目
531 text_issue_added: 已通報 %s 個項目
531 text_issue_updated: 已更新 %s 個項目
532 text_issue_updated: 已更新 %s 個項目
532 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
533 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
533 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
534 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
534 text_issue_category_destroy_assignments: Remove category assignments
535 text_issue_category_destroy_assignments: Remove category assignments
535 text_issue_category_reassign_to: Reassign issues to this category
536 text_issue_category_reassign_to: Reassign issues to this category
536 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
537 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
537 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
538 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
538 text_load_default_configuration: Load the default configuration
539 text_load_default_configuration: Load the default configuration
539
540
540 default_role_manager: 管理人員
541 default_role_manager: 管理人員
541 default_role_developper: 開發人員
542 default_role_developper: 開發人員
542 default_role_reporter: 報告人員
543 default_role_reporter: 報告人員
543 default_tracker_bug: 臭蟲
544 default_tracker_bug: 臭蟲
544 default_tracker_feature: 功能
545 default_tracker_feature: 功能
545 default_tracker_support: 支援
546 default_tracker_support: 支援
546 default_issue_status_new: 新建立
547 default_issue_status_new: 新建立
547 default_issue_status_assigned: 已指派
548 default_issue_status_assigned: 已指派
548 default_issue_status_resolved: 已解決
549 default_issue_status_resolved: 已解決
549 default_issue_status_feedback: 已回應
550 default_issue_status_feedback: 已回應
550 default_issue_status_closed: 已結束
551 default_issue_status_closed: 已結束
551 default_issue_status_rejected: 已拒絕
552 default_issue_status_rejected: 已拒絕
552 default_doc_category_user: 使用手冊
553 default_doc_category_user: 使用手冊
553 default_doc_category_tech: 技術文件
554 default_doc_category_tech: 技術文件
554 default_priority_low:
555 default_priority_low:
555 default_priority_normal: 正常
556 default_priority_normal: 正常
556 default_priority_high:
557 default_priority_high:
557 default_priority_urgent:
558 default_priority_urgent:
558 default_priority_immediate:
559 default_priority_immediate:
559 default_activity_design: 設計
560 default_activity_design: 設計
560 default_activity_development: 開發
561 default_activity_development: 開發
561
562
562 enumeration_issue_priorities: 項目重要性
563 enumeration_issue_priorities: 項目重要性
563 enumeration_doc_categories: 文件分類
564 enumeration_doc_categories: 文件分類
564 enumeration_activities: 活動 (time tracking)
565 enumeration_activities: 活動 (time tracking)
565 label_associated_revisions: Associated revisions
566 label_associated_revisions: Associated revisions
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
General Comments 0
You need to be logged in to leave comments. Login now